Skip to main content

endpoints_credentials

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

Overview

Nameendpoints_credentials
TypeResource
Idazure.hybrid_connectivity.endpoints_credentials

Fields

The following fields are returned by SELECT queries:

Endpoint access credentials

NameDatatypeDescription
relayobjectAzure relay hybrid connection access properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceUri, endpointNameexpiresinGets 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.

NameDatatypeDescription
endpointNamestringThe endpoint name.
resourceUristringThe fully qualified Azure Resource manager identifier of the resource to be connected.
expiresininteger (int64)The is how long the endpoint access token is valid (in seconds).

SELECT examples

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