Skip to main content

aad_properties

Creates, updates, deletes, gets or lists an aad_properties resource.

Overview

Nameaad_properties
TypeResource
Idazure.recovery_services_backup_passive_stamp.aad_properties

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.
audiencestring:vartype audience: str
authoritystring:vartype authority: str
eTagstringOptional ETag.
locationstringResource location.
servicePrincipalClientIdstring:vartype service_principal_client_id: str
servicePrincipalObjectIdstring:vartype service_principal_object_id: str
tagsobjectResource tags.
tenantIdstring:vartype tenant_id: str
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
getselectazure_region, subscription_id$filterFetches the AAD properties from target region BCM stamp. Fetches the AAD properties from target region BCM stamp.

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
azure_regionstringAzure region to hit Api. Required.
subscription_idstring
$filterstringOData filter options. Default value is None.

SELECT examples

Fetches the AAD properties from target region BCM stamp. Fetches the AAD properties from target region BCM stamp.

SELECT
id,
name,
audience,
authority,
eTag,
location,
servicePrincipalClientId,
servicePrincipalObjectId,
tags,
tenantId,
type
FROM azure.recovery_services_backup_passive_stamp.aad_properties
WHERE azure_region = '{{ azure_region }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
;