-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathci_visibility_pipelines_api.py
More file actions
348 lines (299 loc) · 13.8 KB
/
ci_visibility_pipelines_api.py
File metadata and controls
348 lines (299 loc) · 13.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
# 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 (
datetime,
set_attribute_from_path,
get_attribute_from_path,
UnsetType,
unset,
)
from datadog_api_client.v2.model.ci_app_create_pipeline_event_request import CIAppCreatePipelineEventRequest
from datadog_api_client.v2.model.ci_app_pipelines_analytics_aggregate_response import (
CIAppPipelinesAnalyticsAggregateResponse,
)
from datadog_api_client.v2.model.ci_app_pipelines_aggregate_request import CIAppPipelinesAggregateRequest
from datadog_api_client.v2.model.ci_app_pipeline_events_response import CIAppPipelineEventsResponse
from datadog_api_client.v2.model.ci_app_sort import CIAppSort
from datadog_api_client.v2.model.ci_app_pipeline_event import CIAppPipelineEvent
from datadog_api_client.v2.model.ci_app_pipeline_events_request import CIAppPipelineEventsRequest
class CIVisibilityPipelinesApi:
"""
Search or aggregate your CI Visibility pipeline events and send them to your Datadog site over HTTP. See the `CI Pipeline Visibility in Datadog page <https://docs.datadoghq.com/continuous_integration/pipelines/>`_ for more information.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient(Configuration())
self.api_client = api_client
self._aggregate_ci_app_pipeline_events_endpoint = _Endpoint(
settings={
"response_type": (CIAppPipelinesAnalyticsAggregateResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/ci/pipelines/analytics/aggregate",
"operation_id": "aggregate_ci_app_pipeline_events",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (CIAppPipelinesAggregateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._create_ci_app_pipeline_event_endpoint = _Endpoint(
settings={
"response_type": (dict,),
"auth": ["apiKeyAuth"],
"endpoint_path": "/api/v2/ci/pipeline",
"operation_id": "create_ci_app_pipeline_event",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (CIAppCreatePipelineEventRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._list_ci_app_pipeline_events_endpoint = _Endpoint(
settings={
"response_type": (CIAppPipelineEventsResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/ci/pipelines/events",
"operation_id": "list_ci_app_pipeline_events",
"http_method": "GET",
"version": "v2",
},
params_map={
"filter_query": {
"openapi_types": (str,),
"attribute": "filter[query]",
"location": "query",
},
"filter_from": {
"openapi_types": (datetime,),
"attribute": "filter[from]",
"location": "query",
},
"filter_to": {
"openapi_types": (datetime,),
"attribute": "filter[to]",
"location": "query",
},
"sort": {
"openapi_types": (CIAppSort,),
"attribute": "sort",
"location": "query",
},
"page_cursor": {
"openapi_types": (str,),
"attribute": "page[cursor]",
"location": "query",
},
"page_limit": {
"validation": {
"inclusive_maximum": 1000,
},
"openapi_types": (int,),
"attribute": "page[limit]",
"location": "query",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._search_ci_app_pipeline_events_endpoint = _Endpoint(
settings={
"response_type": (CIAppPipelineEventsResponse,),
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
"endpoint_path": "/api/v2/ci/pipelines/events/search",
"operation_id": "search_ci_app_pipeline_events",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"openapi_types": (CIAppPipelineEventsRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
def aggregate_ci_app_pipeline_events(
self,
body: CIAppPipelinesAggregateRequest,
) -> CIAppPipelinesAnalyticsAggregateResponse:
"""Aggregate pipelines events.
Use this API endpoint to aggregate CI Visibility pipeline events into buckets of computed metrics and timeseries.
:type body: CIAppPipelinesAggregateRequest
:rtype: CIAppPipelinesAnalyticsAggregateResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._aggregate_ci_app_pipeline_events_endpoint.call_with_http_info(**kwargs)
def create_ci_app_pipeline_event(
self,
body: CIAppCreatePipelineEventRequest,
) -> dict:
"""Send pipeline event.
Send your pipeline event to your Datadog platform over HTTP. For details about how pipeline executions are modeled and what execution types we support, see `Pipeline Data Model And Execution Types <https://docs.datadoghq.com/continuous_integration/guides/pipeline_data_model/>`_.
Multiple events can be sent in an array (up to 1000).
Pipeline events can be submitted with a timestamp that is up to 18 hours in the past.
:type body: CIAppCreatePipelineEventRequest
:rtype: dict
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._create_ci_app_pipeline_event_endpoint.call_with_http_info(**kwargs)
def list_ci_app_pipeline_events(
self,
*,
filter_query: Union[str, UnsetType] = unset,
filter_from: Union[datetime, UnsetType] = unset,
filter_to: Union[datetime, UnsetType] = unset,
sort: Union[CIAppSort, UnsetType] = unset,
page_cursor: Union[str, UnsetType] = unset,
page_limit: Union[int, UnsetType] = unset,
) -> CIAppPipelineEventsResponse:
"""Get a list of pipelines events.
List endpoint returns CI Visibility pipeline events that match a `search query <https://docs.datadoghq.com/continuous_integration/explorer/search_syntax/>`_.
`Results are paginated similarly to logs <https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination>`_.
Use this endpoint to see your latest pipeline events.
:param filter_query: Search query following log syntax.
:type filter_query: str, optional
:param filter_from: Minimum timestamp for requested events.
:type filter_from: datetime, optional
:param filter_to: Maximum timestamp for requested events.
:type filter_to: datetime, optional
:param sort: Order of events in results.
:type sort: CIAppSort, optional
:param page_cursor: List following results with a cursor provided in the previous query.
:type page_cursor: str, optional
:param page_limit: Maximum number of events in the response.
:type page_limit: int, optional
:rtype: CIAppPipelineEventsResponse
"""
kwargs: Dict[str, Any] = {}
if filter_query is not unset:
kwargs["filter_query"] = filter_query
if filter_from is not unset:
kwargs["filter_from"] = filter_from
if filter_to is not unset:
kwargs["filter_to"] = filter_to
if sort is not unset:
kwargs["sort"] = sort
if page_cursor is not unset:
kwargs["page_cursor"] = page_cursor
if page_limit is not unset:
kwargs["page_limit"] = page_limit
return self._list_ci_app_pipeline_events_endpoint.call_with_http_info(**kwargs)
def list_ci_app_pipeline_events_with_pagination(
self,
*,
filter_query: Union[str, UnsetType] = unset,
filter_from: Union[datetime, UnsetType] = unset,
filter_to: Union[datetime, UnsetType] = unset,
sort: Union[CIAppSort, UnsetType] = unset,
page_cursor: Union[str, UnsetType] = unset,
page_limit: Union[int, UnsetType] = unset,
) -> collections.abc.Iterable[CIAppPipelineEvent]:
"""Get a list of pipelines events.
Provide a paginated version of :meth:`list_ci_app_pipeline_events`, returning all items.
:param filter_query: Search query following log syntax.
:type filter_query: str, optional
:param filter_from: Minimum timestamp for requested events.
:type filter_from: datetime, optional
:param filter_to: Maximum timestamp for requested events.
:type filter_to: datetime, optional
:param sort: Order of events in results.
:type sort: CIAppSort, optional
:param page_cursor: List following results with a cursor provided in the previous query.
:type page_cursor: str, optional
:param page_limit: Maximum number of events in the response.
:type page_limit: int, optional
:return: A generator of paginated results.
:rtype: collections.abc.Iterable[CIAppPipelineEvent]
"""
kwargs: Dict[str, Any] = {}
if filter_query is not unset:
kwargs["filter_query"] = filter_query
if filter_from is not unset:
kwargs["filter_from"] = filter_from
if filter_to is not unset:
kwargs["filter_to"] = filter_to
if sort is not unset:
kwargs["sort"] = sort
if page_cursor is not unset:
kwargs["page_cursor"] = page_cursor
if page_limit is not unset:
kwargs["page_limit"] = page_limit
local_page_size = get_attribute_from_path(kwargs, "page_limit", 10)
endpoint = self._list_ci_app_pipeline_events_endpoint
set_attribute_from_path(kwargs, "page_limit", local_page_size, endpoint.params_map)
pagination = {
"limit_value": local_page_size,
"results_path": "data",
"cursor_param": "page_cursor",
"cursor_path": "meta.page.after",
"endpoint": endpoint,
"kwargs": kwargs,
}
return endpoint.call_with_http_info_paginated(pagination)
def search_ci_app_pipeline_events(
self,
*,
body: Union[CIAppPipelineEventsRequest, UnsetType] = unset,
) -> CIAppPipelineEventsResponse:
"""Search pipelines events.
List endpoint returns CI Visibility pipeline events that match a `search query <https://docs.datadoghq.com/continuous_integration/explorer/search_syntax/>`_.
`Results are paginated similarly to logs <https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination>`_.
Use this endpoint to build complex events filtering and search.
:type body: CIAppPipelineEventsRequest, optional
:rtype: CIAppPipelineEventsResponse
"""
kwargs: Dict[str, Any] = {}
if body is not unset:
kwargs["body"] = body
return self._search_ci_app_pipeline_events_endpoint.call_with_http_info(**kwargs)
def search_ci_app_pipeline_events_with_pagination(
self,
*,
body: Union[CIAppPipelineEventsRequest, UnsetType] = unset,
) -> collections.abc.Iterable[CIAppPipelineEvent]:
"""Search pipelines events.
Provide a paginated version of :meth:`search_ci_app_pipeline_events`, returning all items.
:type body: CIAppPipelineEventsRequest, optional
:return: A generator of paginated results.
:rtype: collections.abc.Iterable[CIAppPipelineEvent]
"""
kwargs: Dict[str, Any] = {}
if body is not unset:
kwargs["body"] = body
local_page_size = get_attribute_from_path(kwargs, "body.page.limit", 10)
endpoint = self._search_ci_app_pipeline_events_endpoint
set_attribute_from_path(kwargs, "body.page.limit", local_page_size, endpoint.params_map)
pagination = {
"limit_value": local_page_size,
"results_path": "data",
"cursor_param": "body.page.cursor",
"cursor_path": "meta.page.after",
"endpoint": endpoint,
"kwargs": kwargs,
}
return endpoint.call_with_http_info_paginated(pagination)