vw_cloud_manifest_files
Creates, updates, deletes, gets or lists a vw_cloud_manifest_files
resource.
Overview
Name | vw_cloud_manifest_files |
Type | View |
Id | azure_stack.azure_stack.vw_cloud_manifest_files |
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,
etag as etag,
JSON_EXTRACT(properties, '$.deploymentData') as "deployment_data",
JSON_EXTRACT(properties, '$.signature') as "signature",
verificationVersion
FROM azure_stack.azure_stack.cloud_manifest_files
WHERE verificationVersion = 'replace-me';
SELECT
id as id,
name as name,
type as type,
etag as etag,
json_extract_path_text(properties, '$.deploymentData') as "deployment_data",
json_extract_path_text(properties, '$.signature') as "signature",
verificationVersion
FROM azure_stack.azure_stack.cloud_manifest_files
WHERE verificationVersion = 'replace-me';