policy_fragment_references
Creates, updates, deletes, gets or lists a policy_fragment_references
resource.
Overview
Name | policy_fragment_references |
Type | Resource |
Id | azure.api_management.policy_fragment_references |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | id, resourceGroupName, serviceName, subscriptionId | Lists policy resources that reference the policy fragment. |
SELECT
examples
Lists policy resources that reference the policy fragment.
SELECT
id,
name,
systemData,
type
FROM azure.api_management.policy_fragment_references
WHERE id = '{{ id }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';