Skip to main content

dedicated_hsm_outbound_network_dependencies_endpoints

Creates, updates, deletes, gets or lists a dedicated_hsm_outbound_network_dependencies_endpoints resource.

Overview

Namededicated_hsm_outbound_network_dependencies_endpoints
TypeResource
Idazure.hardware_security_modules.dedicated_hsm_outbound_network_dependencies_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
categorystringThe category of endpoints accessed by the dedicated hsm service, e.g. azure-resource-management, apiserver, etc.
endpointsarrayThe endpoints that dedicated hsm service connects to

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, name, subscriptionIdGets 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.

NameDatatypeDescription
namestringName of the dedicated Hsm
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;