Skip to main content

public_keys

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

Overview

Namepublic_keys
TypeResource
Idazure.hybrid_data_manager.public_keys

Fields

NameDatatypeDescription
idtextId of the object.
nametextName of the object.
dataManagerNametextfield from the properties object
data_service_level1_keytextfield from the properties object
data_service_level2_keytextfield from the properties object
publicKeyNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the object.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdataManagerName, publicKeyName, resourceGroupName, subscriptionIdThis method gets the public keys.
list_by_data_managerSELECTdataManagerName, resourceGroupName, subscriptionIdThis method gets the list view of public keys, however it will only have one element.

SELECT examples

This method gets the list view of public keys, however it will only have one element.

SELECT
id,
name,
dataManagerName,
data_service_level1_key,
data_service_level2_key,
publicKeyName,
resourceGroupName,
subscriptionId,
type
FROM azure.hybrid_data_manager.vw_public_keys
WHERE dataManagerName = '{{ dataManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';