Datadog · Schema

APIKeyUpdateAttributes

Attributes used to update an API Key.

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
category string The APIKeyUpdateAttributes category.
name string Name of the API key.
remote_config_read_enabled boolean The APIKeyUpdateAttributes remote_config_read_enabled.
View JSON Schema on GitHub

JSON Schema

datadog-api-api-key-update-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-api-api-key-update-attributes-schema.json",
  "title": "APIKeyUpdateAttributes",
  "description": "Attributes used to update an API Key.",
  "type": "object",
  "properties": {
    "category": {
      "description": "The APIKeyUpdateAttributes category.",
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "description": "Name of the API key.",
      "example": "API Key for submitting metrics",
      "type": "string"
    },
    "remote_config_read_enabled": {
      "description": "The APIKeyUpdateAttributes remote_config_read_enabled.",
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "name"
  ]
}