Skip to main content

aad_metadatas

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

Overview

Nameaad_metadatas
TypeResource
Idazure.service_fabric_dataplane.aad_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
metadataobjectAzure Active Directory metadata used for secured connection to cluster.
typestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_aad_metadataselectendpointtimeoutGets 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.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme). (default: )
timeoutinteger (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

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 }}'
;