-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathcase_management_api.py
More file actions
738 lines (644 loc) · 23.8 KB
/
case_management_api.py
File metadata and controls
738 lines (644 loc) · 23.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019-Present Datadog, Inc.
from __future__ import annotations
import collections
from typing import Any, Dict, Union
from datadog_api_client.api_client import ApiClient, Endpoint as _Endpoint
from datadog_api_client.configuration import Configuration
from datadog_api_client.model_utils import (
set_attribute_from_path,
get_attribute_from_path,
UnsetType,
unset,
)
from datadog_api_client.v2.model.cases_response import CasesResponse
from datadog_api_client.v2.model.case_sortable_field import CaseSortableField
from datadog_api_client.v2.model.case import Case
from datadog_api_client.v2.model.case_response import CaseResponse
from datadog_api_client.v2.model.case_create_request import CaseCreateRequest
from datadog_api_client.v2.model.projects_response import ProjectsResponse
from datadog_api_client.v2.model.project_response import ProjectResponse
from datadog_api_client.v2.model.project_create_request import ProjectCreateRequest
from datadog_api_client.v2.model.case_empty_request import CaseEmptyRequest
from datadog_api_client.v2.model.case_assign_request import CaseAssignRequest
from datadog_api_client.v2.model.case_update_attributes_request import CaseUpdateAttributesRequest
from datadog_api_client.v2.model.case_update_priority_request import CaseUpdatePriorityRequest
from datadog_api_client.v2.model.case_update_status_request import CaseUpdateStatusRequest
class CaseManagementApi:
"""
View and manage cases and projects within Case Management. See the `Case Management page <https://docs.datadoghq.com/service_management/case_management/>`_ for more information.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient(Configuration())
self.api_client = api_client
self._archive_case_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/archive",
"operation_id": "archive_case",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseEmptyRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._assign_case_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/assign",
"operation_id": "assign_case",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseAssignRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._create_case_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases",
"operation_id": "create_case",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (CaseCreateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._create_project_endpoint = _Endpoint(
settings={
"response_type": (ProjectResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/projects",
"operation_id": "create_project",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (ProjectCreateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._delete_project_endpoint = _Endpoint(
settings={
"response_type": None,
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/projects/{project_id}",
"operation_id": "delete_project",
"http_method": "DELETE",
"version": "v2",
},
params_map={
"project_id": {
"required": True,
"openapi_types": (str,),
"attribute": "project_id",
"location": "path",
},
},
headers_map={
"accept": ["*/*"],
},
api_client=api_client,
)
self._get_case_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}",
"operation_id": "get_case",
"http_method": "GET",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._get_project_endpoint = _Endpoint(
settings={
"response_type": (ProjectResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/projects/{project_id}",
"operation_id": "get_project",
"http_method": "GET",
"version": "v2",
},
params_map={
"project_id": {
"required": True,
"openapi_types": (str,),
"attribute": "project_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._get_projects_endpoint = _Endpoint(
settings={
"response_type": (ProjectsResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/projects",
"operation_id": "get_projects",
"http_method": "GET",
"version": "v2",
},
params_map={},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._search_cases_endpoint = _Endpoint(
settings={
"response_type": (CasesResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases",
"operation_id": "search_cases",
"http_method": "GET",
"version": "v2",
},
params_map={
"page_size": {
"openapi_types": (int,),
"attribute": "page[size]",
"location": "query",
},
"page_number": {
"openapi_types": (int,),
"attribute": "page[number]",
"location": "query",
},
"sort_field": {
"openapi_types": (CaseSortableField,),
"attribute": "sort[field]",
"location": "query",
},
"filter": {
"openapi_types": (str,),
"attribute": "filter",
"location": "query",
},
"sort_asc": {
"openapi_types": (bool,),
"attribute": "sort[asc]",
"location": "query",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._unarchive_case_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/unarchive",
"operation_id": "unarchive_case",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseEmptyRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._unassign_case_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/unassign",
"operation_id": "unassign_case",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseEmptyRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._update_attributes_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/attributes",
"operation_id": "update_attributes",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseUpdateAttributesRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._update_priority_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/priority",
"operation_id": "update_priority",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseUpdatePriorityRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._update_status_endpoint = _Endpoint(
settings={
"response_type": (CaseResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/cases/{case_id}/status",
"operation_id": "update_status",
"http_method": "POST",
"version": "v2",
},
params_map={
"case_id": {
"required": True,
"openapi_types": (str,),
"attribute": "case_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (CaseUpdateStatusRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
def archive_case(
self,
case_id: str,
body: CaseEmptyRequest,
) -> CaseResponse:
"""Archive case.
Archive case
:param case_id: Case's UUID or key
:type case_id: str
:param body: Archive case payload
:type body: CaseEmptyRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._archive_case_endpoint.call_with_http_info(**kwargs)
def assign_case(
self,
case_id: str,
body: CaseAssignRequest,
) -> CaseResponse:
"""Assign case.
Assign case to a user
:param case_id: Case's UUID or key
:type case_id: str
:param body: Assign case payload
:type body: CaseAssignRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._assign_case_endpoint.call_with_http_info(**kwargs)
def create_case(
self,
body: CaseCreateRequest,
) -> CaseResponse:
"""Create a case.
Create a Case
:param body: Case payload
:type body: CaseCreateRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._create_case_endpoint.call_with_http_info(**kwargs)
def create_project(
self,
body: ProjectCreateRequest,
) -> ProjectResponse:
"""Create a project.
Create a project.
:param body: Project payload
:type body: ProjectCreateRequest
:rtype: ProjectResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._create_project_endpoint.call_with_http_info(**kwargs)
def delete_project(
self,
project_id: str,
) -> None:
"""Remove a project.
Remove a project using the project's ``id``.
:param project_id: Project UUID
:type project_id: str
:rtype: None
"""
kwargs: Dict[str, Any] = {}
kwargs["project_id"] = project_id
return self._delete_project_endpoint.call_with_http_info(**kwargs)
def get_case(
self,
case_id: str,
) -> CaseResponse:
"""Get the details of a case.
Get the details of case by ``case_id``
:param case_id: Case's UUID or key
:type case_id: str
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
return self._get_case_endpoint.call_with_http_info(**kwargs)
def get_project(
self,
project_id: str,
) -> ProjectResponse:
"""Get the details of a project.
Get the details of a project by ``project_id``.
:param project_id: Project UUID
:type project_id: str
:rtype: ProjectResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["project_id"] = project_id
return self._get_project_endpoint.call_with_http_info(**kwargs)
def get_projects(
self,
) -> ProjectsResponse:
"""Get all projects.
Get all projects.
:rtype: ProjectsResponse
"""
kwargs: Dict[str, Any] = {}
return self._get_projects_endpoint.call_with_http_info(**kwargs)
def search_cases(
self,
*,
page_size: Union[int, UnsetType] = unset,
page_number: Union[int, UnsetType] = unset,
sort_field: Union[CaseSortableField, UnsetType] = unset,
filter: Union[str, UnsetType] = unset,
sort_asc: Union[bool, UnsetType] = unset,
) -> CasesResponse:
"""Search cases.
Search cases.
:param page_size: Size for a given page. The maximum allowed value is 100. Test change to trigger client generation.
:type page_size: int, optional
:param page_number: Specific page number to return.
:type page_number: int, optional
:param sort_field: Specify which field to sort
:type sort_field: CaseSortableField, optional
:param filter: Search query
:type filter: str, optional
:param sort_asc: Specify if order is ascending or not
:type sort_asc: bool, optional
:rtype: CasesResponse
"""
kwargs: Dict[str, Any] = {}
if page_size is not unset:
kwargs["page_size"] = page_size
if page_number is not unset:
kwargs["page_number"] = page_number
if sort_field is not unset:
kwargs["sort_field"] = sort_field
if filter is not unset:
kwargs["filter"] = filter
if sort_asc is not unset:
kwargs["sort_asc"] = sort_asc
return self._search_cases_endpoint.call_with_http_info(**kwargs)
def search_cases_with_pagination(
self,
*,
page_size: Union[int, UnsetType] = unset,
page_number: Union[int, UnsetType] = unset,
sort_field: Union[CaseSortableField, UnsetType] = unset,
filter: Union[str, UnsetType] = unset,
sort_asc: Union[bool, UnsetType] = unset,
) -> collections.abc.Iterable[Case]:
"""Search cases.
Provide a paginated version of :meth:`search_cases`, returning all items.
:param page_size: Size for a given page. The maximum allowed value is 100. Test change to trigger client generation.
:type page_size: int, optional
:param page_number: Specific page number to return.
:type page_number: int, optional
:param sort_field: Specify which field to sort
:type sort_field: CaseSortableField, optional
:param filter: Search query
:type filter: str, optional
:param sort_asc: Specify if order is ascending or not
:type sort_asc: bool, optional
:return: A generator of paginated results.
:rtype: collections.abc.Iterable[Case]
"""
kwargs: Dict[str, Any] = {}
if page_size is not unset:
kwargs["page_size"] = page_size
if page_number is not unset:
kwargs["page_number"] = page_number
if sort_field is not unset:
kwargs["sort_field"] = sort_field
if filter is not unset:
kwargs["filter"] = filter
if sort_asc is not unset:
kwargs["sort_asc"] = sort_asc
local_page_size = get_attribute_from_path(kwargs, "page_size", 10)
endpoint = self._search_cases_endpoint
set_attribute_from_path(kwargs, "page_size", local_page_size, endpoint.params_map)
pagination = {
"limit_value": local_page_size,
"results_path": "data",
"page_param": "page_number",
"endpoint": endpoint,
"kwargs": kwargs,
}
return endpoint.call_with_http_info_paginated(pagination)
def unarchive_case(
self,
case_id: str,
body: CaseEmptyRequest,
) -> CaseResponse:
"""Unarchive case.
Unarchive case
:param case_id: Case's UUID or key
:type case_id: str
:param body: Unarchive case payload
:type body: CaseEmptyRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._unarchive_case_endpoint.call_with_http_info(**kwargs)
def unassign_case(
self,
case_id: str,
body: CaseEmptyRequest,
) -> CaseResponse:
"""Unassign case.
Unassign case
:param case_id: Case's UUID or key
:type case_id: str
:param body: Unassign case payload
:type body: CaseEmptyRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._unassign_case_endpoint.call_with_http_info(**kwargs)
def update_attributes(
self,
case_id: str,
body: CaseUpdateAttributesRequest,
) -> CaseResponse:
"""Update case attributes.
Update case attributes
:param case_id: Case's UUID or key
:type case_id: str
:param body: Case attributes update payload
:type body: CaseUpdateAttributesRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._update_attributes_endpoint.call_with_http_info(**kwargs)
def update_priority(
self,
case_id: str,
body: CaseUpdatePriorityRequest,
) -> CaseResponse:
"""Update case priority.
Update case priority
:param case_id: Case's UUID or key
:type case_id: str
:param body: Case priority update payload
:type body: CaseUpdatePriorityRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._update_priority_endpoint.call_with_http_info(**kwargs)
def update_status(
self,
case_id: str,
body: CaseUpdateStatusRequest,
) -> CaseResponse:
"""Update case status.
Update case status
:param case_id: Case's UUID or key
:type case_id: str
:param body: Case status update payload
:type body: CaseUpdateStatusRequest
:rtype: CaseResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["case_id"] = case_id
kwargs["body"] = body
return self._update_status_endpoint.call_with_http_info(**kwargs)