endpoints_managed_proxy_details
Creates, updates, deletes, gets or lists an endpoints_managed_proxy_details
resource.
Overview
Name | endpoints_managed_proxy_details |
Type | Resource |
Id | azure.hybrid_connectivity.endpoints_managed_proxy_details |
Fields
The following fields are returned by SELECT
queries:
- list
Managed Proxy
Name | Datatype | Description |
---|---|---|
expiresOn | integer (int64) | The expiration time of short lived proxy name in unix epoch. |
proxy | string | The short lived proxy name. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceUri , endpointName | Fetches 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.
Name | Datatype | Description |
---|---|---|
endpointName | string | The endpoint name. |
resourceUri | string | The fully qualified Azure Resource manager identifier of the resource to be connected. |
SELECT
examples
- list
Fetches the managed proxy details
SELECT
expiresOn,
proxy
FROM azure.hybrid_connectivity.endpoints_managed_proxy_details
WHERE resourceUri = '{{ resourceUri }}' -- required
AND endpointName = '{{ endpointName }}' -- required
;