Skip to content

Commit 7a10aba

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 6b39c9a of spec repo
1 parent 0b5317e commit 7a10aba

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
@@ -35103,6 +35103,15 @@ components:
3510335103
IssuesSearchRequestDataAttributes:
3510435104
description: Object describing a search issue request.
3510535105
properties:
35106+
assignee_ids:
35107+
description: Filter issues by assignee IDs. Multiple values are combined with OR logic.
35108+
example:
35109+
- "00000000-0000-0000-0000-000000000001"
35110+
items:
35111+
format: uuid
35112+
type: string
35113+
maxItems: 50
35114+
type: array
3510635115
from:
3510735116
description: Start date (inclusive) of the query in milliseconds since the Unix epoch.
3510835117
example: 1671612804000
@@ -35116,6 +35125,15 @@ components:
3511635125
description: Search query following the event search syntax.
3511735126
example: "service:orders-* AND @language:go"
3511835127
type: string
35128+
team_ids:
35129+
description: Filter issues by team IDs. Multiple values are combined with OR logic.
35130+
example:
35131+
- "00000000-0000-0000-0000-000000000002"
35132+
items:
35133+
format: uuid
35134+
type: string
35135+
maxItems: 50
35136+
type: array
3511935137
to:
3512035138
description: End date (exclusive) of the query in milliseconds since the Unix epoch.
3512135139
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)