services_test_keys
Creates, updates, deletes, gets or lists a services_test_keys
resource.
Overview
Name | services_test_keys |
Type | Resource |
Id | azure.spring_apps.services_test_keys |
Fields
Name | Datatype | Description |
---|---|---|
enabled | boolean | Indicates whether the test endpoint feature enabled or not |
primaryKey | string | Primary key |
primaryTestEndpoint | string | Primary test endpoint |
secondaryKey | string | Secondary key |
secondaryTestEndpoint | string | Secondary test endpoint |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, serviceName, subscriptionId | List test keys for a Service. |
SELECT
examples
List test keys for a Service.
SELECT
enabled,
primaryKey,
primaryTestEndpoint,
secondaryKey,
secondaryTestEndpoint
FROM azure.spring_apps.services_test_keys
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';