dedicated_hsm_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a dedicated_hsm_outbound_network_dependencies_endpoints
resource.
Overview
Name | dedicated_hsm_outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.hardware_security_modules.dedicated_hsm_outbound_network_dependencies_endpoints |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
category | string | The category of endpoints accessed by the dedicated hsm service, e.g. azure-resource-management, apiserver, etc. |
endpoints | array | The endpoints that dedicated hsm service connects to |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , name , subscriptionId | Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified dedicated hsm resource. The operation returns properties of each egress endpoint. |
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 |
---|---|---|
name | string | Name of the dedicated Hsm |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified dedicated hsm resource. The operation returns properties of each egress endpoint.
SELECT
category,
endpoints
FROM azure.hardware_security_modules.dedicated_hsm_outbound_network_dependencies_endpoints
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;