vw_global_rulestacks
Creates, updates, deletes, gets or lists a vw_global_rulestacks
resource.
Overview
Name | vw_global_rulestacks |
Type | View |
Id | azure_isv.paloalto.vw_global_rulestacks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
systemData as system_data,
identity as identity,
JSON_EXTRACT(properties, '$.panEtag') as "pan_etag",
JSON_EXTRACT(properties, '$.panLocation') as "pan_location",
JSON_EXTRACT(properties, '$.scope') as "scope",
JSON_EXTRACT(properties, '$.associatedSubscriptions') as "associated_subscriptions",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.defaultMode') as "default_mode",
JSON_EXTRACT(properties, '$.minAppIdVersion') as "min_app_id_version",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.securityServices') as "security_services",
globalRulestackName
FROM azure_isv.paloalto.global_rulestacks
WHERE globalRulestackName = 'replace-me';
SELECT
location as location,
systemData as system_data,
identity as identity,
json_extract_path_text(properties, '$.panEtag') as "pan_etag",
json_extract_path_text(properties, '$.panLocation') as "pan_location",
json_extract_path_text(properties, '$.scope') as "scope",
json_extract_path_text(properties, '$.associatedSubscriptions') as "associated_subscriptions",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.defaultMode') as "default_mode",
json_extract_path_text(properties, '$.minAppIdVersion') as "min_app_id_version",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.securityServices') as "security_services",
globalRulestackName
FROM azure_isv.paloalto.global_rulestacks
WHERE globalRulestackName = 'replace-me';