Skip to main content

service_members_credentials

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

Overview

Nameservice_members_credentials
TypeResource
Idazure.ad_hybrid_health_service.service_members_credentials

Fields

The following fields are returned by SELECT queries:

The list of service member credentials.

NameDatatypeDescription
credentialDataarrayThe credential data.
identifierstringThe credential identifier.
typestringThe type of credential.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, serviceMemberId$filterGets the credentials of the server which is needed by the agent to connect to Azure Active Directory Connect Health Service.

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
serviceMemberIdstring (uuid)The server Id.
serviceNamestringThe name of the service.
$filterstringThe property filter to apply.

SELECT examples

Gets the credentials of the server which is needed by the agent to connect to Azure Active Directory Connect Health Service.

SELECT
credentialData,
identifier,
type
FROM azure.ad_hybrid_health_service.service_members_credentials
WHERE serviceName = '{{ serviceName }}' -- required
AND serviceMemberId = '{{ serviceMemberId }}' -- required
AND $filter = '{{ $filter }}'
;