vw_commitment_plans_plans
Creates, updates, deletes, gets or lists a vw_commitment_plans_plans
resource.
Overview
Name | vw_commitment_plans_plans |
Type | View |
Id | azure.cognitive_services.vw_commitment_plans_plans |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
systemData as system_data,
etag as etag,
kind as kind,
sku as sku,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.commitmentPlanGuid') as "commitment_plan_guid",
JSON_EXTRACT(properties, '$.hostingModel') as "hosting_model",
JSON_EXTRACT(properties, '$.planType') as "plan_type",
JSON_EXTRACT(properties, '$.current') as "current",
JSON_EXTRACT(properties, '$.autoRenew') as "auto_renew",
JSON_EXTRACT(properties, '$.next') as "next",
JSON_EXTRACT(properties, '$.last') as "last",
JSON_EXTRACT(properties, '$.provisioningIssues') as "provisioning_issues",
subscriptionId,
resourceGroupName,
commitmentPlanName
FROM azure.cognitive_services.commitment_plans_plans
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND commitmentPlanName = 'replace-me';
SELECT
location as location,
systemData as system_data,
etag as etag,
kind as kind,
sku as sku,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.commitmentPlanGuid') as "commitment_plan_guid",
json_extract_path_text(properties, '$.hostingModel') as "hosting_model",
json_extract_path_text(properties, '$.planType') as "plan_type",
json_extract_path_text(properties, '$.current') as "current",
json_extract_path_text(properties, '$.autoRenew') as "auto_renew",
json_extract_path_text(properties, '$.next') as "next",
json_extract_path_text(properties, '$.last') as "last",
json_extract_path_text(properties, '$.provisioningIssues') as "provisioning_issues",
subscriptionId,
resourceGroupName,
commitmentPlanName
FROM azure.cognitive_services.commitment_plans_plans
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND commitmentPlanName = 'replace-me';