Skip to main content

resource_guards_resources_in_subscriptions

Creates, updates, deletes, gets or lists a resource_guards_resources_in_subscriptions resource.

Overview

Nameresource_guards_resources_in_subscriptions
TypeResource
Idazure.data_protection.resource_guards_resources_in_subscriptions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
eTagstringOptional ETag.
locationstringResource location.
propertiesobjectResourceGuardResource properties
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectResource tags.
typestringResource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId

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.

NameDatatypeDescription
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
id,
name,
eTag,
location,
properties,
systemData,
tags,
type
FROM azure.data_protection.resource_guards_resources_in_subscriptions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;