fqdn_list_global_rulestack
Creates, updates, deletes, gets or lists a fqdn_list_global_rulestack resource.
Overview
| Name | fqdn_list_global_rulestack |
| Type | Resource |
| Id | azure_isv.paloaltonetworksngfw.fqdn_list_global_rulestack |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
auditComment | string | comment for this object. |
description | string | fqdn object description. |
etag | string | etag info. |
fqdnList | array | fqdn list. Required. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
auditComment | string | comment for this object. |
description | string | fqdn object description. |
etag | string | etag info. |
fqdnList | array | fqdn list. Required. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | global_rulestack_name, name | Get a FqdnListGlobalRulestackResource. | |
list | select | global_rulestack_name | List FqdnListGlobalRulestackResource resources by Tenant. | |
create_or_update | insert | global_rulestack_name, name, properties | Create a FqdnListGlobalRulestackResource. | |
create_or_update | replace | global_rulestack_name, name, properties | Create a FqdnListGlobalRulestackResource. | |
delete | delete | global_rulestack_name, name | Delete a FqdnListGlobalRulestackResource. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
global_rulestack_name | string | GlobalRulestack resource name. Required. |
name | string | fqdn list name. Required. |
SELECT examples
- get
- list
Get a FqdnListGlobalRulestackResource.
SELECT
id,
name,
auditComment,
description,
etag,
fqdnList,
provisioningState,
systemData,
type
FROM azure_isv.paloaltonetworksngfw.fqdn_list_global_rulestack
WHERE global_rulestack_name = '{{ global_rulestack_name }}' -- required
AND name = '{{ name }}' -- required
;
List FqdnListGlobalRulestackResource resources by Tenant.
SELECT
id,
name,
auditComment,
description,
etag,
fqdnList,
provisioningState,
systemData,
type
FROM azure_isv.paloaltonetworksngfw.fqdn_list_global_rulestack
WHERE global_rulestack_name = '{{ global_rulestack_name }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Create a FqdnListGlobalRulestackResource.
INSERT INTO azure_isv.paloaltonetworksngfw.fqdn_list_global_rulestack (
properties,
global_rulestack_name,
name
)
SELECT
'{{ properties }}' /* required */,
'{{ global_rulestack_name }}',
'{{ name }}'
RETURNING
id,
name,
properties,
systemData,
type
;
# Description fields are for documentation purposes
- name: fqdn_list_global_rulestack
props:
- name: global_rulestack_name
value: "{{ global_rulestack_name }}"
description: Required parameter for the fqdn_list_global_rulestack resource.
- name: name
value: "{{ name }}"
description: Required parameter for the fqdn_list_global_rulestack resource.
- name: properties
value:
description: "{{ description }}"
fqdnList:
- "{{ fqdnList }}"
etag: "{{ etag }}"
auditComment: "{{ auditComment }}"
REPLACE examples
- create_or_update
Create a FqdnListGlobalRulestackResource.
REPLACE azure_isv.paloaltonetworksngfw.fqdn_list_global_rulestack
SET
properties = '{{ properties }}'
WHERE
global_rulestack_name = '{{ global_rulestack_name }}' --required
AND name = '{{ name }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
properties,
systemData,
type;
DELETE examples
- delete
Delete a FqdnListGlobalRulestackResource.
DELETE FROM azure_isv.paloaltonetworksngfw.fqdn_list_global_rulestack
WHERE global_rulestack_name = '{{ global_rulestack_name }}' --required
AND name = '{{ name }}' --required
;