services_keys
Creates, updates, deletes, gets or lists a services_keys
resource.
Overview
Name | services_keys |
Type | Resource |
Id | azure.communication.services_keys |
Fields
Name | Datatype | Description |
---|---|---|
primaryConnectionString | string | CommunicationService connection string constructed via the primaryKey |
primaryKey | string | The primary access key. |
secondaryConnectionString | string | CommunicationService connection string constructed via the secondaryKey |
secondaryKey | string | The secondary access key. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | communicationServiceName, resourceGroupName, subscriptionId | Get the access keys of the CommunicationService resource. |
SELECT
examples
Get the access keys of the CommunicationService resource.
SELECT
primaryConnectionString,
primaryKey,
secondaryConnectionString,
secondaryKey
FROM azure.communication.services_keys
WHERE communicationServiceName = '{{ communicationServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';