Skip to main content

endpoints_managed_proxy_details

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

Overview

Nameendpoints_managed_proxy_details
TypeResource
Idazure.hybrid_connectivity.endpoints_managed_proxy_details

Fields

The following fields are returned by SELECT queries:

Managed Proxy

NameDatatypeDescription
expiresOninteger (int64)The expiration time of short lived proxy name in unix epoch.
proxystringThe short lived proxy name.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceUri, endpointNameFetches the managed proxy details

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.

SELECT examples

Fetches the managed proxy details

SELECT
expiresOn,
proxy
FROM azure.hybrid_connectivity.endpoints_managed_proxy_details
WHERE resourceUri = '{{ resourceUri }}' -- required
AND endpointName = '{{ endpointName }}' -- required
;