global_rulestacks
Creates, updates, deletes, gets or lists a global_rulestacks
resource.
Overview
Name | global_rulestacks |
Type | Resource |
Id | azure_isv.paloalto.global_rulestacks |
Fields
- vw_global_rulestacks
- global_rulestacks
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
associated_subscriptions | text | field from the properties object |
default_mode | text | field from the properties object |
globalRulestackName | text | field from the properties object |
identity | text | The properties of the managed service identities assigned to this resource. |
location | text | Global Location |
min_app_id_version | text | field from the properties object |
pan_etag | text | field from the properties object |
pan_location | text | field from the properties object |
provisioning_state | text | field from the properties object |
scope | text | field from the properties object |
security_services | text | field from the properties object |
system_data | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
identity | object | The properties of the managed service identities assigned to this resource. |
location | string | Global Location |
properties | object | PAN Rulestack Describe Object |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | globalRulestackName | Get a GlobalRulestackResource |
list | SELECT |
| List GlobalRulestackResource resources by Tenant |
create_or_update | INSERT | globalRulestackName, data__location, data__properties | Create a GlobalRulestackResource |
delete | DELETE | globalRulestackName | Delete a GlobalRulestackResource |
update | UPDATE | globalRulestackName | Update a GlobalRulestackResource |
commit | EXEC | globalRulestackName | Commit rulestack configuration |
revert | EXEC | globalRulestackName | Revert rulestack configuration |
SELECT
examples
List GlobalRulestackResource resources by Tenant
- vw_global_rulestacks
- global_rulestacks
SELECT
description,
associated_subscriptions,
default_mode,
globalRulestackName,
identity,
location,
min_app_id_version,
pan_etag,
pan_location,
provisioning_state,
scope,
security_services,
system_data
FROM azure_isv.paloalto.vw_global_rulestacks
;
SELECT
identity,
location,
properties,
systemData
FROM azure_isv.paloalto.global_rulestacks
;
INSERT
example
Use the following StackQL query and manifest file to create a new global_rulestacks
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_isv.paloalto.global_rulestacks (
globalRulestackName,
data__location,
data__properties,
properties,
location,
identity
)
SELECT
'{{ globalRulestackName }}',
'{{ data__location }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ identity }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: panEtag
value: string
- name: panLocation
value: string
- name: scope
value: []
- name: associatedSubscriptions
value:
- string
- name: description
value: string
- name: defaultMode
value: []
- name: minAppIdVersion
value: string
- name: provisioningState
value: []
- name: securityServices
value:
- name: vulnerabilityProfile
value: string
- name: antiSpywareProfile
value: string
- name: antiVirusProfile
value: string
- name: urlFilteringProfile
value: string
- name: fileBlockingProfile
value: string
- name: dnsSubscription
value: string
- name: outboundUnTrustCertificate
value: string
- name: outboundTrustCertificate
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
- name: location
value: string
- name: identity
value:
- name: tenantId
value: string
- name: principalId
value: string
- name: type
value: []
- name: userAssignedIdentities
value: object
UPDATE
example
Updates a global_rulestacks
resource.
/*+ update */
UPDATE azure_isv.paloalto.global_rulestacks
SET
location = '{{ location }}',
identity = '{{ identity }}',
properties = '{{ properties }}'
WHERE
globalRulestackName = '{{ globalRulestackName }}';
DELETE
example
Deletes the specified global_rulestacks
resource.
/*+ delete */
DELETE FROM azure_isv.paloalto.global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}';