vw_hybrid_use_benefits
Creates, updates, deletes, gets or lists a vw_hybrid_use_benefits
resource.
Overview
Name | vw_hybrid_use_benefits |
Type | View |
Id | azure.software_plan.vw_hybrid_use_benefits |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
sku as sku,
etag as etag,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
JSON_EXTRACT(properties, '$.lastUpdatedDate') as "last_updated_date",
scope,
planId
FROM azure.software_plan.hybrid_use_benefits
WHERE scope = 'replace-me';
SELECT
id as id,
name as name,
type as type,
sku as sku,
etag as etag,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.createdDate') as "created_date",
json_extract_path_text(properties, '$.lastUpdatedDate') as "last_updated_date",
scope,
planId
FROM azure.software_plan.hybrid_use_benefits
WHERE scope = 'replace-me';