vw_artifact_stores
Creates, updates, deletes, gets or lists a vw_artifact_stores
resource.
Overview
Name | vw_artifact_stores |
Type | View |
Id | azure.hybrid_network.vw_artifact_stores |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.storeType') as "store_type",
JSON_EXTRACT(properties, '$.backingResourcePublicNetworkAccess') as "backing_resource_public_network_access",
JSON_EXTRACT(properties, '$.replicationStrategy') as "replication_strategy",
JSON_EXTRACT(properties, '$.managedResourceGroupConfiguration') as "managed_resource_group_configuration",
JSON_EXTRACT(properties, '$.storageResourceId') as "storage_resource_id",
subscriptionId,
resourceGroupName,
publisherName,
artifactStoreName
FROM azure.hybrid_network.artifact_stores
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND publisherName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.storeType') as "store_type",
json_extract_path_text(properties, '$.backingResourcePublicNetworkAccess') as "backing_resource_public_network_access",
json_extract_path_text(properties, '$.replicationStrategy') as "replication_strategy",
json_extract_path_text(properties, '$.managedResourceGroupConfiguration') as "managed_resource_group_configuration",
json_extract_path_text(properties, '$.storageResourceId') as "storage_resource_id",
subscriptionId,
resourceGroupName,
publisherName,
artifactStoreName
FROM azure.hybrid_network.artifact_stores
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND publisherName = 'replace-me';