vw_product_packages
Creates, updates, deletes, gets or lists a vw_product_packages
resource.
Overview
Name | vw_product_packages |
Type | View |
Id | azure_stack.deployment_admin.vw_product_packages |
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, '$.fileContainerId') as "file_container_id",
JSON_EXTRACT(properties, '$.isDeployable') as "is_deployable",
JSON_EXTRACT(properties, '$.isUpdatable') as "is_updatable",
JSON_EXTRACT(properties, '$.productDeploymentId') as "product_deployment_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
packageId
FROM azure_stack.deployment_admin.product_packages
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.fileContainerId') as "file_container_id",
json_extract_path_text(properties, '$.isDeployable') as "is_deployable",
json_extract_path_text(properties, '$.isUpdatable') as "is_updatable",
json_extract_path_text(properties, '$.productDeploymentId') as "product_deployment_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
packageId
FROM azure_stack.deployment_admin.product_packages
WHERE subscriptionId = 'replace-me';