Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions services/incidents/src/v2/IncidentsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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",
Expand Down
Loading