aad_properties
Creates, updates, deletes, gets or lists an aad_properties resource.
Overview
| Name | aad_properties |
| Type | Resource |
| Id | azure.recovery_services_backup_passive_stamp.aad_properties |
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. |
audience | string | :vartype audience: str |
authority | string | :vartype authority: str |
eTag | string | Optional ETag. |
location | string | Resource location. |
servicePrincipalClientId | string | :vartype service_principal_client_id: str |
servicePrincipalObjectId | string | :vartype service_principal_object_id: str |
tags | object | Resource tags. |
tenantId | string | :vartype tenant_id: str |
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 | azure_region, subscription_id | $filter | Fetches 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.
| Name | Datatype | Description |
|---|---|---|
azure_region | string | Azure region to hit Api. Required. |
subscription_id | string | |
$filter | string | OData filter options. Default value is None. |
SELECT examples
- get
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 }}'
;