Skip to main content

fqdn_list_global_rulestacks

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

Overview

Namefqdn_list_global_rulestacks
TypeResource
Idazure_isv.paloalto.fqdn_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
fqdn_listtextfield from the properties object
globalRulestackNametextfield from the properties object
provisioning_statetextfield from the properties object
system_datatextfield from the properties object

Methods

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

SELECT examples

List FqdnListGlobalRulestackResource resources by Tenant

SELECT
name,
description,
audit_comment,
etag,
fqdn_list,
globalRulestackName,
provisioning_state,
system_data
FROM azure_isv.paloalto.vw_fqdn_list_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}';

INSERT example

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

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

DELETE example

Deletes the specified fqdn_list_global_rulestacks resource.

/*+ delete */
DELETE FROM azure_isv.paloalto.fqdn_list_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}'
AND name = '{{ name }}';