Skip to main content

prefix_list_global_rulestacks

Creates, updates, deletes, gets or lists a prefix_list_global_rulestacks resource.

Overview

Nameprefix_list_global_rulestacks
TypeResource
Idazure_isv.paloalto.prefix_list_global_rulestacks

Fields

NameDatatypeDescription
nametextfield from the properties object
descriptiontextfield from the properties object
audit_commenttextfield from the properties object
etagtextfield from the properties object
globalRulestackNametextfield from the properties object
prefix_listtextfield from the properties object
provisioning_statetextfield from the properties object
system_datatextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTglobalRulestackName, nameGet a PrefixListGlobalRulestackResource
listSELECTglobalRulestackNameList PrefixListGlobalRulestackResource resources by Tenant
create_or_updateINSERTglobalRulestackName, name, data__propertiesCreate a PrefixListGlobalRulestackResource
deleteDELETEglobalRulestackName, nameDelete a PrefixListGlobalRulestackResource

SELECT examples

List PrefixListGlobalRulestackResource resources by Tenant

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 }}';

INSERT example

Use the following StackQL query and manifest file to create a new prefix_list_global_rulestacks resource.

/*+ create */
INSERT INTO azure_isv.paloalto.prefix_list_global_rulestacks (
globalRulestackName,
name,
data__properties,
properties
)
SELECT
'{{ globalRulestackName }}',
'{{ name }}',
'{{ data__properties }}',
'{{ properties }}'
;

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 }}';