prefix_list_global_rulestacks
Creates, updates, deletes, gets or lists a prefix_list_global_rulestacks
resource.
Overview
Name | prefix_list_global_rulestacks |
Type | Resource |
Id | azure_isv.paloalto.prefix_list_global_rulestacks |
Fields
- vw_prefix_list_global_rulestacks
- prefix_list_global_rulestacks
Name | Datatype | Description |
---|---|---|
name | text | field from the properties object |
description | text | field from the properties object |
audit_comment | text | field from the properties object |
etag | text | field from the properties object |
globalRulestackName | text | field from the properties object |
prefix_list | text | field from the properties object |
provisioning_state | text | field from the properties object |
system_data | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | prefix entry |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | globalRulestackName, name | Get a PrefixListGlobalRulestackResource |
list | SELECT | globalRulestackName | List PrefixListGlobalRulestackResource resources by Tenant |
create_or_update | INSERT | globalRulestackName, name, data__properties | Create a PrefixListGlobalRulestackResource |
delete | DELETE | globalRulestackName, name | Delete a PrefixListGlobalRulestackResource |
SELECT
examples
List PrefixListGlobalRulestackResource resources by Tenant
- vw_prefix_list_global_rulestacks
- prefix_list_global_rulestacks
SELECT
name,
description,
audit_comment,
etag,
globalRulestackName,
prefix_list,
provisioning_state,
system_data
FROM azure_isv.paloalto.vw_prefix_list_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}';
SELECT
properties,
systemData
FROM azure_isv.paloalto.prefix_list_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new prefix_list_global_rulestacks
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_isv.paloalto.prefix_list_global_rulestacks (
globalRulestackName,
name,
data__properties,
properties
)
SELECT
'{{ globalRulestackName }}',
'{{ name }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: description
value: string
- name: prefixList
value:
- string
- name: etag
value: string
- name: auditComment
value: string
- name: provisioningState
value: []
- 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
DELETE
example
Deletes the specified prefix_list_global_rulestacks
resource.
/*+ delete */
DELETE FROM azure_isv.paloalto.prefix_list_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}'
AND name = '{{ name }}';