global_rulestack_app_ids
Creates, updates, deletes, gets or lists a global_rulestack_app_ids
resource.
Overview
Name | global_rulestack_app_ids |
Type | Resource |
Id | azure_isv.paloalto.global_rulestack_app_ids |
Fields
The following fields are returned by SELECT
queries:
- list
The request has succeeded.
Name | Datatype | Description |
---|
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | globalRulestackName | appIdVersion , appPrefix , skip , top | List of AppIds for GlobalRulestack ApiVersion |
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 |
---|---|---|
globalRulestackName | string | GlobalRulestack resource name |
appIdVersion | string | |
appPrefix | string | |
skip | string | |
top | integer (int32) |
SELECT
examples
- list
List of AppIds for GlobalRulestack ApiVersion
SELECT
*
FROM azure_isv.paloalto.global_rulestack_app_ids
WHERE globalRulestackName = '{{ globalRulestackName }}' -- required
AND appIdVersion = '{{ appIdVersion }}'
AND appPrefix = '{{ appPrefix }}'
AND skip = '{{ skip }}'
AND top = '{{ top }}'
;