-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathworkflow_automation_api.py
More file actions
409 lines (358 loc) · 16.6 KB
/
workflow_automation_api.py
File metadata and controls
409 lines (358 loc) · 16.6 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
# 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
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 (
UnsetType,
unset,
)
from datadog_api_client.v2.model.create_workflow_response import CreateWorkflowResponse
from datadog_api_client.v2.model.create_workflow_request import CreateWorkflowRequest
from datadog_api_client.v2.model.get_workflow_response import GetWorkflowResponse
from datadog_api_client.v2.model.update_workflow_response import UpdateWorkflowResponse
from datadog_api_client.v2.model.update_workflow_request import UpdateWorkflowRequest
from datadog_api_client.v2.model.workflow_list_instances_response import WorkflowListInstancesResponse
from datadog_api_client.v2.model.workflow_instance_create_response import WorkflowInstanceCreateResponse
from datadog_api_client.v2.model.workflow_instance_create_request import WorkflowInstanceCreateRequest
from datadog_api_client.v2.model.worklflow_get_instance_response import WorklflowGetInstanceResponse
from datadog_api_client.v2.model.worklflow_cancel_instance_response import WorklflowCancelInstanceResponse
class WorkflowAutomationApi:
"""
Datadog Workflow Automation allows you to automate your end-to-end processes by connecting Datadog with the rest of your tech stack. Build workflows to auto-remediate your alerts, streamline your incident and security processes, and reduce manual toil. Workflow Automation supports over 1,000+ OOTB actions, including AWS, JIRA, ServiceNow, GitHub, and OpenAI. Learn more in our Workflow Automation docs `here <https://docs.datadoghq.com/service_management/workflows/>`_.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient(Configuration())
self.api_client = api_client
self._cancel_workflow_instance_endpoint = _Endpoint(
settings={
"response_type": (WorklflowCancelInstanceResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/workflows/{workflow_id}/instances/{instance_id}/cancel",
"operation_id": "cancel_workflow_instance",
"http_method": "PUT",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
"instance_id": {
"required": True,
"openapi_types": (str,),
"attribute": "instance_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._create_workflow_endpoint = _Endpoint(
settings={
"response_type": (CreateWorkflowResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/workflows",
"operation_id": "create_workflow",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (CreateWorkflowRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._create_workflow_instance_endpoint = _Endpoint(
settings={
"response_type": (WorkflowInstanceCreateResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/workflows/{workflow_id}/instances",
"operation_id": "create_workflow_instance",
"http_method": "POST",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (WorkflowInstanceCreateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._delete_workflow_endpoint = _Endpoint(
settings={
"response_type": None,
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/workflows/{workflow_id}",
"operation_id": "delete_workflow",
"http_method": "DELETE",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
},
headers_map={
"accept": ["*/*"],
},
api_client=api_client,
)
self._get_workflow_endpoint = _Endpoint(
settings={
"response_type": (GetWorkflowResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/workflows/{workflow_id}",
"operation_id": "get_workflow",
"http_method": "GET",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._get_workflow_instance_endpoint = _Endpoint(
settings={
"response_type": (WorklflowGetInstanceResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/workflows/{workflow_id}/instances/{instance_id}",
"operation_id": "get_workflow_instance",
"http_method": "GET",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
"instance_id": {
"required": True,
"openapi_types": (str,),
"attribute": "instance_id",
"location": "path",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._list_workflow_instances_endpoint = _Endpoint(
settings={
"response_type": (WorkflowListInstancesResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/workflows/{workflow_id}/instances",
"operation_id": "list_workflow_instances",
"http_method": "GET",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
"page_size": {
"openapi_types": (int,),
"attribute": "page[size]",
"location": "query",
},
"page_number": {
"openapi_types": (int,),
"attribute": "page[number]",
"location": "query",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._update_workflow_endpoint = _Endpoint(
settings={
"response_type": (UpdateWorkflowResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/workflows/{workflow_id}",
"operation_id": "update_workflow",
"http_method": "PATCH",
"version": "v2",
},
params_map={
"workflow_id": {
"required": True,
"openapi_types": (str,),
"attribute": "workflow_id",
"location": "path",
},
"body": {
"required": True,
"openapi_types": (UpdateWorkflowRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
def cancel_workflow_instance(
self,
workflow_id: str,
instance_id: str,
) -> WorklflowCancelInstanceResponse:
"""Cancel a workflow instance.
Cancels a specific execution of a given workflow. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
:param instance_id: The ID of the workflow instance.
:type instance_id: str
:rtype: WorklflowCancelInstanceResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
kwargs["instance_id"] = instance_id
return self._cancel_workflow_instance_endpoint.call_with_http_info(**kwargs)
def create_workflow(
self,
body: CreateWorkflowRequest,
) -> CreateWorkflowResponse:
"""Create a Workflow.
Create a new workflow, returning the workflow ID. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:type body: CreateWorkflowRequest
:rtype: CreateWorkflowResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._create_workflow_endpoint.call_with_http_info(**kwargs)
def create_workflow_instance(
self,
workflow_id: str,
body: WorkflowInstanceCreateRequest,
) -> WorkflowInstanceCreateResponse:
"""Execute a workflow.
Execute the given workflow. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
:type body: WorkflowInstanceCreateRequest
:rtype: WorkflowInstanceCreateResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
kwargs["body"] = body
return self._create_workflow_instance_endpoint.call_with_http_info(**kwargs)
def delete_workflow(
self,
workflow_id: str,
) -> None:
"""Delete an existing Workflow.
Delete a workflow by ID. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
:rtype: None
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
return self._delete_workflow_endpoint.call_with_http_info(**kwargs)
def get_workflow(
self,
workflow_id: str,
) -> GetWorkflowResponse:
"""Get an existing Workflow.
Get a workflow by ID. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
:rtype: GetWorkflowResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
return self._get_workflow_endpoint.call_with_http_info(**kwargs)
def get_workflow_instance(
self,
workflow_id: str,
instance_id: str,
) -> WorklflowGetInstanceResponse:
"""Get a workflow instance.
Get a specific execution of a given workflow. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
:param instance_id: The ID of the workflow instance.
:type instance_id: str
:rtype: WorklflowGetInstanceResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
kwargs["instance_id"] = instance_id
return self._get_workflow_instance_endpoint.call_with_http_info(**kwargs)
def list_workflow_instances(
self,
workflow_id: str,
*,
page_size: Union[int, UnsetType] = unset,
page_number: Union[int, UnsetType] = unset,
) -> WorkflowListInstancesResponse:
"""List workflow instances.
List all instances of a given workflow. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
: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
:rtype: WorkflowListInstancesResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
if page_size is not unset:
kwargs["page_size"] = page_size
if page_number is not unset:
kwargs["page_number"] = page_number
return self._list_workflow_instances_endpoint.call_with_http_info(**kwargs)
def update_workflow(
self,
workflow_id: str,
body: UpdateWorkflowRequest,
) -> UpdateWorkflowResponse:
"""Update an existing Workflow.
Update a workflow by ID. This API requires a `registered application key <https://docs.datadoghq.com/api/latest/action-connection/#register-a-new-app-key>`_. Alternatively, you can configure these permissions `in the UI <https://docs.datadoghq.com/account_management/api-app-keys/#actions-api-access>`_.
:param workflow_id: The ID of the workflow.
:type workflow_id: str
:type body: UpdateWorkflowRequest
:rtype: UpdateWorkflowResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["workflow_id"] = workflow_id
kwargs["body"] = body
return self._update_workflow_endpoint.call_with_http_info(**kwargs)