service_members_credentials
Creates, updates, deletes, gets or lists a service_members_credentials
resource.
Overview
Name | service_members_credentials |
Type | Resource |
Id | azure.ad_hybrid_health_service.service_members_credentials |
Fields
The following fields are returned by SELECT
queries:
- list
The list of service member credentials.
Name | Datatype | Description |
---|---|---|
credentialData | array | The credential data. |
identifier | string | The credential identifier. |
type | string | The type of credential. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , serviceMemberId | $filter | Gets 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.
Name | Datatype | Description |
---|---|---|
serviceMemberId | string (uuid) | The server Id. |
serviceName | string | The name of the service. |
$filter | string | The property filter to apply. |
SELECT
examples
- list
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 }}'
;