public_keys
Creates, updates, deletes, gets or lists a public_keys
resource.
Overview
Name | public_keys |
Type | Resource |
Id | azure.hybrid_data_manager.public_keys |
Fields
- vw_public_keys
- public_keys
Name | Datatype | Description |
---|---|---|
id | text | Id of the object. |
name | text | Name of the object. |
dataManagerName | text | field from the properties object |
data_service_level1_key | text | field from the properties object |
data_service_level2_key | text | field from the properties object |
publicKeyName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of the object. |
Name | Datatype | Description |
---|---|---|
id | string | Id of the object. |
name | string | Name of the object. |
properties | object | PublicKey Properties |
type | string | Type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dataManagerName, publicKeyName, resourceGroupName, subscriptionId | This method gets the public keys. |
list_by_data_manager | SELECT | dataManagerName, resourceGroupName, subscriptionId | This 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.
- vw_public_keys
- public_keys
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.hybrid_data_manager.public_keys
WHERE dataManagerName = '{{ dataManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';