aad_metadatas
Creates, updates, deletes, gets or lists an aad_metadatas resource.
Overview
| Name | aad_metadatas |
| Type | Resource |
| Id | azure.service_fabric_dataplane.aad_metadatas |
Fields
The following fields are returned by SELECT queries:
- get_aad_metadata
| Name | Datatype | Description |
|---|---|---|
metadata | object | Azure Active Directory metadata used for secured connection to cluster. |
type | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_aad_metadata | select | endpoint | timeout | Gets the Azure Active Directory metadata used for secured connection to cluster. Gets the Azure Active Directory metadata used for secured connection to cluster. This API is not supposed to be called separately. It provides information needed to set up an Azure Active Directory secured connection with a Service Fabric cluster. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
SELECT examples
- get_aad_metadata
Gets the Azure Active Directory metadata used for secured connection to cluster. Gets the Azure Active Directory metadata used for secured connection to cluster. This API is not supposed to be called separately. It provides information needed to set up an Azure Active Directory secured connection with a Service Fabric cluster.
SELECT
metadata,
type
FROM azure.service_fabric_dataplane.aad_metadatas
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;