Skip to main content

check_ekm_connections

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

Overview

Namecheck_ekm_connections
TypeResource
Idazure.key_vault_administration.check_ekm_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
proxy_namestringThe name of the proxy product and its version. Required.
api_versionstringThe highest version of proxy interface API supported by the EKM Proxy. Required.
ekm_productstringThe name of the EKM product and its version. Required.
ekm_vendorstringThe name of the EKM vendor. Required.
proxy_vendorstringThe name of the proxy vendor. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
check_ekm_connectionselectvault_base_urlChecks the connectivity and authentication with the EKM proxy. The External Key Manager (EKM) Check operation checks the connectivity and authentication with the EKM proxy. This operation requires ekm/read permission.

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
vault_base_urlstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client vaultBaseUrl parameter. (default: )

SELECT examples

Checks the connectivity and authentication with the EKM proxy. The External Key Manager (EKM) Check operation checks the connectivity and authentication with the EKM proxy. This operation requires ekm/read permission.

SELECT
proxy_name,
api_version,
ekm_product,
ekm_vendor,
proxy_vendor
FROM azure.key_vault_administration.check_ekm_connections
WHERE vault_base_url = '{{ vault_base_url }}' -- required
;