Skip to main content

monitors_api_keys

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

Overview

Namemonitors_api_keys
TypeResource
Idazure_isv.datadog.monitors_api_keys

Fields

NameDatatypeDescription
namestringThe name of the API key.
createdstringThe time of creation of the API key.
createdBystringThe user that created the API key.
keystringThe value of the API key.

Methods

NameAccessible byRequired ParamsDescription
listSELECTmonitorName, resourceGroupName, subscriptionId

SELECT examples

SELECT
name,
created,
createdBy,
key
FROM azure_isv.datadog.monitors_api_keys
WHERE monitorName = '{{ monitorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';