vw_business_process_versions
Creates, updates, deletes, gets or lists a vw_business_process_versions
resource.
Overview
Name | vw_business_process_versions |
Type | View |
Id | azure.integration_environment.vw_business_process_versions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.tableName') as "table_name",
JSON_EXTRACT(properties, '$.trackingDataStoreReferenceName') as "tracking_data_store_reference_name",
JSON_EXTRACT(properties, '$.identifier') as "identifier",
JSON_EXTRACT(properties, '$.businessProcessStages') as "business_process_stages",
JSON_EXTRACT(properties, '$.businessProcessMapping') as "business_process_mapping",
subscriptionId,
resourceGroupName,
spaceName,
applicationName,
businessProcessName,
businessProcessVersion
FROM azure.integration_environment.business_process_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND spaceName = 'replace-me' AND applicationName = 'replace-me' AND businessProcessName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.tableName') as "table_name",
json_extract_path_text(properties, '$.trackingDataStoreReferenceName') as "tracking_data_store_reference_name",
json_extract_path_text(properties, '$.identifier') as "identifier",
json_extract_path_text(properties, '$.businessProcessStages') as "business_process_stages",
json_extract_path_text(properties, '$.businessProcessMapping') as "business_process_mapping",
subscriptionId,
resourceGroupName,
spaceName,
applicationName,
businessProcessName,
businessProcessVersion
FROM azure.integration_environment.business_process_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND spaceName = 'replace-me' AND applicationName = 'replace-me' AND businessProcessName = 'replace-me';