File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -35379,6 +35379,15 @@ components:
3537935379 IssuesSearchRequestDataAttributes:
3538035380 description: Object describing a search issue request.
3538135381 properties:
35382+ assignee_ids:
35383+ description: Filter issues by assignee IDs. Multiple values are combined with OR logic.
35384+ example:
35385+ - "00000000-0000-0000-0000-000000000001"
35386+ items:
35387+ format: uuid
35388+ type: string
35389+ maxItems: 50
35390+ type: array
3538235391 from:
3538335392 description: Start date (inclusive) of the query in milliseconds since the Unix epoch.
3538435393 example: 1671612804000
@@ -35392,6 +35401,15 @@ components:
3539235401 description: Search query following the event search syntax.
3539335402 example: "service:orders-* AND @language:go"
3539435403 type: string
35404+ team_ids:
35405+ description: Filter issues by team IDs. Multiple values are combined with OR logic.
35406+ example:
35407+ - "00000000-0000-0000-0000-000000000002"
35408+ items:
35409+ format: uuid
35410+ type: string
35411+ maxItems: 50
35412+ type: array
3539535413 to:
3539635414 description: End date (exclusive) of the query in milliseconds since the Unix epoch.
3539735415 example: 1671620004000
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1313 * Object describing a search issue request.
1414 */
1515export 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" ,
You can’t perform that action at this time.
0 commit comments