vw_features
Creates, updates, deletes, gets or lists a vw_features
resource.
Overview
Name | vw_features |
Type | View |
Id | azure_stack.compute_admin.vw_features |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.featureName') as "feature_name",
JSON_EXTRACT(properties, '$.globalFeatureSettings') as "global_feature_settings",
JSON_EXTRACT(properties, '$.enabledTenantSubscriptionIds') as "enabled_tenant_subscription_ids",
subscriptionId,
location,
featureName
FROM azure_stack.compute_admin.features
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.featureName') as "feature_name",
json_extract_path_text(properties, '$.globalFeatureSettings') as "global_feature_settings",
json_extract_path_text(properties, '$.enabledTenantSubscriptionIds') as "enabled_tenant_subscription_ids",
subscriptionId,
location,
featureName
FROM azure_stack.compute_admin.features
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';