vw_export_pipelines
Creates, updates, deletes, gets or lists a vw_export_pipelines
resource.
Overview
Name | vw_export_pipelines |
Type | View |
Id | azure.container_registry.vw_export_pipelines |
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,
systemData as system_data,
identity as identity,
JSON_EXTRACT(properties, '$.target') as "target",
JSON_EXTRACT(properties, '$.options') as "options",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
exportPipelineName
FROM azure.container_registry.export_pipelines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
identity as identity,
json_extract_path_text(properties, '$.target') as "target",
json_extract_path_text(properties, '$.options') as "options",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
exportPipelineName
FROM azure.container_registry.export_pipelines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';