Skip to content

Commit 35bf523

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit c1a389d of spec repo
1 parent c6b7c93 commit 35bf523

File tree

447 files changed

+4563
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

447 files changed

+4563
-163
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 1220 additions & 64 deletions
Large diffs are not rendered by default.

packages/datadog-api-client-v2/apis/CaseManagementApi.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3788,7 +3788,7 @@ export interface CaseManagementApiCreateCaseServiceNowTicketRequest {
37883788

37893789
export interface CaseManagementApiCreateProjectRequest {
37903790
/**
3791-
* Project payload
3791+
* Project payload.
37923792
* @type ProjectCreateRequest
37933793
*/
37943794
body: ProjectCreateRequest;
@@ -3835,7 +3835,7 @@ export interface CaseManagementApiDeleteCaseCustomAttributeRequest {
38353835

38363836
export interface CaseManagementApiDeleteProjectRequest {
38373837
/**
3838-
* Project UUID
3838+
* Project UUID.
38393839
* @type string
38403840
*/
38413841
projectId: string;
@@ -3864,7 +3864,7 @@ export interface CaseManagementApiGetCaseRequest {
38643864

38653865
export interface CaseManagementApiGetProjectRequest {
38663866
/**
3867-
* Project UUID
3867+
* Project UUID.
38683868
* @type string
38693869
*/
38703870
projectId: string;
@@ -4051,12 +4051,12 @@ export interface CaseManagementApiUpdatePriorityRequest {
40514051

40524052
export interface CaseManagementApiUpdateProjectRequest {
40534053
/**
4054-
* Project UUID
4054+
* Project UUID.
40554055
* @type string
40564056
*/
40574057
projectId: string;
40584058
/**
4059-
* Project payload
4059+
* Project payload.
40604060
* @type ProjectUpdateRequest
40614061
*/
40624062
body: ProjectUpdateRequest;

packages/datadog-api-client-v2/models/AnyValueItem.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
import { UnparsedObject } from "../../datadog-api-client-common/util";
88

9+
/**
10+
* A single item in an array of arbitrary values, which can be a string, number, object, or boolean.
11+
*/
12+
913
export type AnyValueItem =
1014
| string
1115
| number

packages/datadog-api-client-v2/models/Argument.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
88

9+
/**
10+
* A named argument for a custom static analysis rule.
11+
*/
912
export class Argument {
1013
/**
1114
* Base64-encoded argument description

packages/datadog-api-client-v2/models/AssignSeatsUserRequest.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ import { AssignSeatsUserRequestData } from "./AssignSeatsUserRequestData";
77

88
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
99

10+
/**
11+
* The request body for assigning seats to users for a product code.
12+
*/
1013
export class AssignSeatsUserRequest {
14+
/**
15+
* The request data object containing attributes for assigning seats to users.
16+
*/
1117
"data"?: AssignSeatsUserRequestData;
1218

1319
/**

packages/datadog-api-client-v2/models/AssignSeatsUserRequestData.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ import { SeatAssignmentsDataType } from "./SeatAssignmentsDataType";
88

99
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010

11+
/**
12+
* The request data object containing attributes for assigning seats to users.
13+
*/
1114
export class AssignSeatsUserRequestData {
15+
/**
16+
* Attributes specifying the product and users to whom seats will be assigned.
17+
*/
1218
"attributes": AssignSeatsUserRequestDataAttributes;
1319
/**
1420
* The ID of the assign seats user request.

packages/datadog-api-client-v2/models/AssignSeatsUserRequestDataAttributes.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
88

9+
/**
10+
* Attributes specifying the product and users to whom seats will be assigned.
11+
*/
912
export class AssignSeatsUserRequestDataAttributes {
1013
/**
1114
* The product code for which to assign seats.

packages/datadog-api-client-v2/models/AssignSeatsUserResponse.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ import { AssignSeatsUserResponseData } from "./AssignSeatsUserResponseData";
77

88
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
99

10+
/**
11+
* The response body returned after successfully assigning seats to users.
12+
*/
1013
export class AssignSeatsUserResponse {
14+
/**
15+
* The response data object containing attributes of the seat assignment result.
16+
*/
1117
"data"?: AssignSeatsUserResponseData;
1218

1319
/**

packages/datadog-api-client-v2/models/AssignSeatsUserResponseData.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ import { SeatAssignmentsDataType } from "./SeatAssignmentsDataType";
88

99
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010

11+
/**
12+
* The response data object containing attributes of the seat assignment result.
13+
*/
1114
export class AssignSeatsUserResponseData {
15+
/**
16+
* Attributes of the assign seats response, including the list of users assigned and the product code.
17+
*/
1218
"attributes"?: AssignSeatsUserResponseDataAttributes;
1319
/**
1420
* The ID of the assign seats user response.

packages/datadog-api-client-v2/models/AssignSeatsUserResponseDataAttributes.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
88

9+
/**
10+
* Attributes of the assign seats response, including the list of users assigned and the product code.
11+
*/
912
export class AssignSeatsUserResponseDataAttributes {
1013
/**
1114
* The list of user IDs to which the seats were assigned.

0 commit comments

Comments
 (0)