vw_activations
Creates, updates, deletes, gets or lists a vw_activations
resource.
Overview
Name | vw_activations |
Type | View |
Id | azure_stack.azure_bridge_admin.vw_activations |
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,
tags as tags,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.azureRegistrationResourceIdentifier') as "azure_registration_resource_identifier",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.expiration') as "expiration",
JSON_EXTRACT(properties, '$.marketplaceSyndicationEnabled') as "marketplace_syndication_enabled",
JSON_EXTRACT(properties, '$.usageReportingEnabled') as "usage_reporting_enabled",
subscriptionId,
resourceGroupName,
activationName
FROM azure_stack.azure_bridge_admin.activations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.azureRegistrationResourceIdentifier') as "azure_registration_resource_identifier",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.expiration') as "expiration",
json_extract_path_text(properties, '$.marketplaceSyndicationEnabled') as "marketplace_syndication_enabled",
json_extract_path_text(properties, '$.usageReportingEnabled') as "usage_reporting_enabled",
subscriptionId,
resourceGroupName,
activationName
FROM azure_stack.azure_bridge_admin.activations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';