Skip to main content

fqdn_list_local_rulestacks

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

Overview

Namefqdn_list_local_rulestacks
TypeResource
Idazure_isv.paloalto.fqdn_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
fqdn_listtextfield from the properties object
localRulestackNametextfield 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 FqdnListLocalRulestackResource
list_by_local_rulestacksSELECTlocalRulestackName, resourceGroupName, subscriptionIdList FqdnListLocalRulestackResource resources by LocalRulestacks
create_or_updateINSERTlocalRulestackName, name, resourceGroupName, subscriptionId, data__propertiesCreate a FqdnListLocalRulestackResource
deleteDELETElocalRulestackName, name, resourceGroupName, subscriptionIdDelete a FqdnListLocalRulestackResource

SELECT examples

List FqdnListLocalRulestackResource resources by LocalRulestacks

SELECT
name,
description,
audit_comment,
etag,
fqdn_list,
localRulestackName,
provisioning_state,
resourceGroupName,
subscriptionId,
system_data
FROM azure_isv.paloalto.vw_fqdn_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 fqdn_list_local_rulestacks resource.

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

DELETE example

Deletes the specified fqdn_list_local_rulestacks resource.

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