vw_document_processors
Creates, updates, deletes, gets or lists a vw_document_processors
resource.
Overview
Name | vw_document_processors |
Type | View |
Id | azure_extras.syntex.vw_document_processors |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.spoTenantUrl') as "spo_tenant_url",
JSON_EXTRACT(properties, '$.spoTenantId') as "spo_tenant_id",
subscriptionId,
resourceGroupName,
processorName
FROM azure_extras.syntex.document_processors
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.spoTenantUrl') as "spo_tenant_url",
json_extract_path_text(properties, '$.spoTenantId') as "spo_tenant_id",
subscriptionId,
resourceGroupName,
processorName
FROM azure_extras.syntex.document_processors
WHERE subscriptionId = 'replace-me';