resource_guards_resources_in_subscriptions
Creates, updates, deletes, gets or lists a resource_guards_resources_in_subscriptions
resource.
Overview
Name | resource_guards_resources_in_subscriptions |
Type | Resource |
Id | azure.data_protection.resource_guards_resources_in_subscriptions |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
eTag | string | Optional ETag. |
location | string | Resource location. |
properties | object | ResourceGuardResource properties |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags. |
type | string | Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId |
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 |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
OK
SELECT
id,
name,
eTag,
location,
properties,
systemData,
tags,
type
FROM azure.data_protection.resource_guards_resources_in_subscriptions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;