Skip to content

Commit f89db97

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 105c69b of spec repo
1 parent 7671ca8 commit f89db97

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35984,6 +35984,15 @@ components:
3598435984
IssuesSearchRequestDataAttributes:
3598535985
description: Object describing a search issue request.
3598635986
properties:
35987+
assignee_ids:
35988+
description: Filter issues by assignee IDs. Multiple values are combined with OR logic.
35989+
example:
35990+
- "00000000-0000-0000-0000-000000000001"
35991+
items:
35992+
format: uuid
35993+
type: string
35994+
maxItems: 50
35995+
type: array
3598735996
from:
3598835997
description: Start date (inclusive) of the query in milliseconds since the Unix epoch.
3598935998
example: 1671612804000
@@ -35997,6 +36006,15 @@ components:
3599736006
description: Search query following the event search syntax.
3599836007
example: "service:orders-* AND @language:go"
3599936008
type: string
36009+
team_ids:
36010+
description: Filter issues by team IDs. Multiple values are combined with OR logic.
36011+
example:
36012+
- "00000000-0000-0000-0000-000000000002"
36013+
items:
36014+
format: uuid
36015+
type: string
36016+
maxItems: 50
36017+
type: array
3600036018
to:
3600136019
description: End date (exclusive) of the query in milliseconds since the Unix epoch.
3600236020
example: 1671620004000

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1313
* Object describing a search issue request.
1414
*/
1515
export class IssuesSearchRequestDataAttributes {
16+
/**
17+
* Filter issues by assignee IDs. Multiple values are combined with OR logic.
18+
*/
19+
"assigneeIds"?: Array<string>;
1620
/**
1721
* Start date (inclusive) of the query in milliseconds since the Unix epoch.
1822
*/
@@ -29,6 +33,10 @@ export class IssuesSearchRequestDataAttributes {
2933
* Search query following the event search syntax.
3034
*/
3135
"query": string;
36+
/**
37+
* Filter issues by team IDs. Multiple values are combined with OR logic.
38+
*/
39+
"teamIds"?: Array<string>;
3240
/**
3341
* End date (exclusive) of the query in milliseconds since the Unix epoch.
3442
*/
@@ -54,6 +62,10 @@ export class IssuesSearchRequestDataAttributes {
5462
* @ignore
5563
*/
5664
static readonly attributeTypeMap: AttributeTypeMap = {
65+
assigneeIds: {
66+
baseName: "assignee_ids",
67+
type: "Array<string>",
68+
},
5769
from: {
5870
baseName: "from",
5971
type: "number",
@@ -73,6 +85,10 @@ export class IssuesSearchRequestDataAttributes {
7385
type: "string",
7486
required: true,
7587
},
88+
teamIds: {
89+
baseName: "team_ids",
90+
type: "Array<string>",
91+
},
7692
to: {
7793
baseName: "to",
7894
type: "number",

0 commit comments

Comments
 (0)