Skip to content

Commit 86c0760

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4795f554 of spec repo
1 parent 37c9248 commit 86c0760

File tree

9 files changed

+2154
-134
lines changed

9 files changed

+2154
-134
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-07-28 20:03:51.199914",
8-
"spec_repo_commit": "df31e444"
7+
"regenerated": "2025-07-30 14:33:28.805841",
8+
"spec_repo_commit": "4795f554"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-28 20:04:01.267678",
13-
"spec_repo_commit": "df31e444"
12+
"regenerated": "2025-07-30 14:33:39.139333",
13+
"spec_repo_commit": "4795f554"
1414
}
1515
}
1616
}

config/_default/menus/api.en.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5892,6 +5892,18 @@ menu:
58925892
- UpdatePriority
58935893
unstable: []
58945894
order: 5
5895+
- name: Update case attributes
5896+
url: '#update-case-attributes'
5897+
identifier: case-management-update-case-attributes
5898+
parent: case-management
5899+
generated: true
5900+
params:
5901+
versions:
5902+
- v2
5903+
operationids:
5904+
- UpdateAttributes
5905+
unstable: []
5906+
order: 10
58955907
- name: Assign case
58965908
url: '#assign-case'
58975909
identifier: case-management-assign-case

content/en/api/v2/case-management/examples.json

Lines changed: 166 additions & 9 deletions
Large diffs are not rendered by default.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"attributes": {
5+
"env": [
6+
"test"
7+
],
8+
"service": [
9+
"web-store",
10+
"web-api"
11+
],
12+
"team": [
13+
"engineer"
14+
]
15+
}
16+
},
17+
"type": "case"
18+
}
19+
}

data/api/v2/CodeExamples.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,13 @@
275275
"description": "Unassign case returns \"OK\" response"
276276
}
277277
],
278+
"UpdateAttributes": [
279+
{
280+
"group": "case_management",
281+
"suffix": "",
282+
"description": "Update case attributes returns \"OK\" response"
283+
}
284+
],
278285
"UpdatePriority": [
279286
{
280287
"group": "case_management",

data/api/v2/full_spec.yaml

Lines changed: 78 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6946,14 +6946,16 @@ components:
69466946
- data
69476947
type: object
69486948
CaseAttributes:
6949-
description: Case attributes
6949+
description: Case resource attributes
69506950
properties:
69516951
archived_at:
69526952
description: Timestamp of when the case was archived
69536953
format: date-time
69546954
nullable: true
69556955
readOnly: true
69566956
type: string
6957+
attributes:
6958+
$ref: '#/components/schemas/CaseObjectAttributes'
69576959
closed_at:
69586960
description: Timestamp of when the case was closed
69596961
format: date-time
@@ -7058,6 +7060,13 @@ components:
70587060
required:
70597061
- data
70607062
type: object
7063+
CaseObjectAttributes:
7064+
additionalProperties:
7065+
items:
7066+
type: string
7067+
type: array
7068+
description: The definition of `CaseObjectAttributes` object.
7069+
type: object
70617070
CasePriority:
70627071
default: NOT_DEFINED
70637072
description: Case priority
@@ -7153,6 +7162,33 @@ components:
71537162
type: string
71547163
x-enum-varnames:
71557164
- STANDARD
7165+
CaseUpdateAttributes:
7166+
description: Case update attributes
7167+
properties:
7168+
attributes:
7169+
$ref: '#/components/schemas/CaseUpdateAttributesAttributes'
7170+
type:
7171+
$ref: '#/components/schemas/CaseResourceType'
7172+
required:
7173+
- attributes
7174+
- type
7175+
type: object
7176+
CaseUpdateAttributesAttributes:
7177+
description: Case update attributes attributes
7178+
properties:
7179+
attributes:
7180+
$ref: '#/components/schemas/CaseObjectAttributes'
7181+
required:
7182+
- attributes
7183+
type: object
7184+
CaseUpdateAttributesRequest:
7185+
description: Case update attributes request
7186+
properties:
7187+
data:
7188+
$ref: '#/components/schemas/CaseUpdateAttributes'
7189+
required:
7190+
- data
7191+
type: object
71567192
CaseUpdatePriority:
71577193
description: Case priority status
71587194
properties:
@@ -46608,6 +46644,47 @@ paths:
4660846644
x-menu-order: 6
4660946645
x-undo:
4661046646
type: idempotent
46647+
/api/v2/cases/{case_id}/attributes:
46648+
post:
46649+
description: Update case attributes
46650+
operationId: UpdateAttributes
46651+
parameters:
46652+
- $ref: '#/components/parameters/CaseIDPathParameter'
46653+
requestBody:
46654+
content:
46655+
application/json:
46656+
schema:
46657+
$ref: '#/components/schemas/CaseUpdateAttributesRequest'
46658+
description: Case attributes update payload
46659+
required: true
46660+
responses:
46661+
'200':
46662+
content:
46663+
application/json:
46664+
schema:
46665+
$ref: '#/components/schemas/CaseResponse'
46666+
description: OK
46667+
'400':
46668+
$ref: '#/components/responses/BadRequestResponse'
46669+
'401':
46670+
$ref: '#/components/responses/UnauthorizedResponse'
46671+
'403':
46672+
$ref: '#/components/responses/ForbiddenResponse'
46673+
'404':
46674+
$ref: '#/components/responses/NotFoundResponse'
46675+
'429':
46676+
$ref: '#/components/responses/TooManyRequestsResponse'
46677+
security:
46678+
- apiKeyAuth: []
46679+
appKeyAuth: []
46680+
- AuthZ:
46681+
- cases_write
46682+
summary: Update case attributes
46683+
tags:
46684+
- Case Management
46685+
x-menu-order: 10
46686+
x-undo:
46687+
type: idempotent
4661146688
/api/v2/cases/{case_id}/priority:
4661246689
post:
4661346690
description: Update case priority

0 commit comments

Comments
 (0)