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/services/incidents/src/v2/IncidentsApi.ts b/services/incidents/src/v2/IncidentsApi.ts index 98f33334429b..8b880bb145d9 100644 --- a/services/incidents/src/v2/IncidentsApi.ts +++ b/services/incidents/src/v2/IncidentsApi.ts @@ -14039,6 +14039,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/services/key_management/src/v2/models/FullAPIKeyAttributes.ts b/services/key_management/src/v2/models/FullAPIKeyAttributes.ts index 2f3549c7e116..ddc609968c84 100644 --- a/services/key_management/src/v2/models/FullAPIKeyAttributes.ts +++ b/services/key_management/src/v2/models/FullAPIKeyAttributes.ts @@ -32,6 +32,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. */ @@ -82,6 +86,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/services/key_management/src/v2/models/PartialAPIKeyAttributes.ts b/services/key_management/src/v2/models/PartialAPIKeyAttributes.ts index 41c2f34f0783..1d611ac3cb6d 100644 --- a/services/key_management/src/v2/models/PartialAPIKeyAttributes.ts +++ b/services/key_management/src/v2/models/PartialAPIKeyAttributes.ts @@ -28,6 +28,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. */ @@ -72,6 +76,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",