Skip to main content

prefix_list_local_rulestacks

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

Overview

Nameprefix_list_local_rulestacks
TypeResource
Idazure_isv.paloalto.prefix_list_local_rulestacks

Fields

NameDatatypeDescription
nametextfield from the properties object
descriptiontextfield from the properties object
audit_commenttextfield from the properties object
etagtextfield from the properties object
localRulestackNametextfield from the properties object
prefix_listtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocalRulestackName, name, resourceGroupName, subscriptionIdGet a PrefixListResource
list_by_local_rulestacksSELECTlocalRulestackName, resourceGroupName, subscriptionIdList PrefixListResource resources by LocalRulestacks
create_or_updateINSERTlocalRulestackName, name, resourceGroupName, subscriptionId, data__propertiesCreate a PrefixListResource
deleteDELETElocalRulestackName, name, resourceGroupName, subscriptionIdDelete a PrefixListResource

SELECT examples

List PrefixListResource resources by LocalRulestacks

SELECT
name,
description,
audit_comment,
etag,
localRulestackName,
prefix_list,
provisioning_state,
resourceGroupName,
subscriptionId,
system_data
FROM azure_isv.paloalto.vw_prefix_list_local_rulestacks
WHERE localRulestackName = '{{ localRulestackName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

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

/*+ create */
INSERT INTO azure_isv.paloalto.prefix_list_local_rulestacks (
localRulestackName,
name,
resourceGroupName,
subscriptionId,
data__properties,
properties
)
SELECT
'{{ localRulestackName }}',
'{{ name }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}'
;

DELETE example

Deletes the specified prefix_list_local_rulestacks resource.

/*+ delete */
DELETE FROM azure_isv.paloalto.prefix_list_local_rulestacks
WHERE localRulestackName = '{{ localRulestackName }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';