endpoints_credentials
Creates, updates, deletes, gets or lists an endpoints_credentials
resource.
Overview
Name | endpoints_credentials |
Type | Resource |
Id | azure.hybrid_connectivity.endpoints_credentials |
Fields
The following fields are returned by SELECT
queries:
- list
Endpoint access credentials
Name | Datatype | Description |
---|---|---|
relay | object | Azure relay hybrid connection access properties |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceUri , endpointName | expiresin | Gets the endpoint access credentials to the resource. |
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 |
---|---|---|
endpointName | string | The endpoint name. |
resourceUri | string | The fully qualified Azure Resource manager identifier of the resource to be connected. |
expiresin | integer (int64) | The is how long the endpoint access token is valid (in seconds). |
SELECT
examples
- list
Gets the endpoint access credentials to the resource.
SELECT
relay
FROM azure.hybrid_connectivity.endpoints_credentials
WHERE resourceUri = '{{ resourceUri }}' -- required
AND endpointName = '{{ endpointName }}' -- required
AND expiresin = '{{ expiresin }}'
;