From 16c902d5d0268a70cfc916dc81ccaaf8e7ede96d Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 22 Sep 2026 18:54:55 +0000 Subject: [PATCH] Regenerate client from commit 4b5e808 of spec repo --- .generator/schemas/v2/openapi.yaml | 13 ++++++++++++- packages/datadog-api-client-v2/apis/IncidentsApi.ts | 3 +++ .../models/FullAPIKeyAttributes.ts | 8 ++++++++ .../models/PartialAPIKeyAttributes.ts | 8 ++++++++ 4 files changed, 31 insertions(+), 1 deletion(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index daf2244ff59b..25bd6ef2838c 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -44920,6 +44920,9 @@ components: description: Name of the API key. example: "API Key for submitting metrics" type: string + private_action_runner_enroll_enabled: + description: Whether the API key can enroll a Private Action Runner. + type: boolean remote_config_read_enabled: description: The remote config read enabled status. type: boolean @@ -84281,6 +84284,9 @@ components: description: Name of the API key. example: "API Key for submitting metrics" type: string + private_action_runner_enroll_enabled: + description: Whether the API key can enroll a Private Action Runner. + type: boolean remote_config_read_enabled: description: The remote config read enabled status. type: boolean @@ -164173,7 +164179,12 @@ paths: If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/). /api/v2/incidents/{incident_id}/cases/page: post: - description: Create a page from an incident using the Cases service. + deprecated: true + description: |- + Create a page from an incident using the Cases service. + + **Deprecated**: This endpoint is deprecated. Use + [Create an on-call page from an incident](#create-an-on-call-page-from-an-incident) instead. operationId: CreatePageFromIncident parameters: - $ref: "#/components/parameters/IncidentIDPathParameter" diff --git a/packages/datadog-api-client-v2/apis/IncidentsApi.ts b/packages/datadog-api-client-v2/apis/IncidentsApi.ts index c95e16ad79cd..b67169e11402 100644 --- a/packages/datadog-api-client-v2/apis/IncidentsApi.ts +++ b/packages/datadog-api-client-v2/apis/IncidentsApi.ts @@ -13313,6 +13313,9 @@ export class IncidentsApi { /** * Create a page from an incident using the Cases service. + * + * **Deprecated**: This endpoint is deprecated. Use + * [Create an on-call page from an incident](#create-an-on-call-page-from-an-incident) instead. * @param param The request object */ public createPageFromIncident( diff --git a/packages/datadog-api-client-v2/models/FullAPIKeyAttributes.ts b/packages/datadog-api-client-v2/models/FullAPIKeyAttributes.ts index 7655a0c99b0a..8026df9c2820 100644 --- a/packages/datadog-api-client-v2/models/FullAPIKeyAttributes.ts +++ b/packages/datadog-api-client-v2/models/FullAPIKeyAttributes.ts @@ -38,6 +38,10 @@ export class FullAPIKeyAttributes { * Name of the API key. */ "name"?: string; + /** + * Whether the API key can enroll a Private Action Runner. + */ + "privateActionRunnerEnrollEnabled"?: boolean; /** * The remote config read enabled status. */ @@ -90,6 +94,10 @@ export class FullAPIKeyAttributes { baseName: "name", type: "string", }, + privateActionRunnerEnrollEnabled: { + baseName: "private_action_runner_enroll_enabled", + type: "boolean", + }, remoteConfigReadEnabled: { baseName: "remote_config_read_enabled", type: "boolean", diff --git a/packages/datadog-api-client-v2/models/PartialAPIKeyAttributes.ts b/packages/datadog-api-client-v2/models/PartialAPIKeyAttributes.ts index 281b820b6588..c49e0c228e05 100644 --- a/packages/datadog-api-client-v2/models/PartialAPIKeyAttributes.ts +++ b/packages/datadog-api-client-v2/models/PartialAPIKeyAttributes.ts @@ -34,6 +34,10 @@ export class PartialAPIKeyAttributes { * Name of the API key. */ "name"?: string; + /** + * Whether the API key can enroll a Private Action Runner. + */ + "privateActionRunnerEnrollEnabled"?: boolean; /** * The remote config read enabled status. */ @@ -80,6 +84,10 @@ export class PartialAPIKeyAttributes { baseName: "name", type: "string", }, + privateActionRunnerEnrollEnabled: { + baseName: "private_action_runner_enroll_enabled", + type: "boolean", + }, remoteConfigReadEnabled: { baseName: "remote_config_read_enabled", type: "boolean",