prefix_list_local_rulestacks
Creates, updates, deletes, gets or lists a prefix_list_local_rulestacks
resource.
Overview
Name | prefix_list_local_rulestacks |
Type | Resource |
Id | azure_isv.paloalto.prefix_list_local_rulestacks |
Fields
- vw_prefix_list_local_rulestacks
- prefix_list_local_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 |
localRulestackName | text | field from the properties object |
prefix_list | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | 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 | localRulestackName, name, resourceGroupName, subscriptionId | Get a PrefixListResource |
list_by_local_rulestacks | SELECT | localRulestackName, resourceGroupName, subscriptionId | List PrefixListResource resources by LocalRulestacks |
create_or_update | INSERT | localRulestackName, name, resourceGroupName, subscriptionId, data__properties | Create a PrefixListResource |
delete | DELETE | localRulestackName, name, resourceGroupName, subscriptionId | Delete a PrefixListResource |
SELECT
examples
List PrefixListResource resources by LocalRulestacks
- vw_prefix_list_local_rulestacks
- prefix_list_local_rulestacks
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 }}';
SELECT
properties,
systemData
FROM azure_isv.paloalto.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.
- All Properties
- Manifest
/*+ 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 }}'
;
- 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_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 }}';