-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathconfiguration.py
631 lines (562 loc) · 24.2 KB
/
configuration.py
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
# 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.
import copy
import logging
import os
import urllib3 # type: ignore
from http import client as http_client
from datadog_api_client.exceptions import ApiValueError
JSON_SCHEMA_VALIDATION_KEYWORDS = {
"multipleOf",
"maximum",
"exclusiveMaximum",
"minimum",
"exclusiveMinimum",
"maxLength",
"minLength",
"pattern",
"maxItems",
"minItems",
}
class _UnstableOperations:
def __init__(self, values):
self.values = values
def get(self, key, default=None):
if key in self:
return self[key]
return default
def __getitem__(self, key):
if key in self.values:
return self.values[key]
for version in ("v1", "v2"):
version_key = f"{version}.{key}"
if version_key in self.values:
return self.values[version_key]
raise KeyError(f"Unknown unstable operation {key}")
def __setitem__(self, key, value):
if key in self.values:
self.values[key] = value
for version in ("v1", "v2"):
version_key = f"{version}.{key}"
if version_key in self.values:
self.values[version_key] = value
break
else:
raise KeyError(f"Unknown unstable operation {key}")
def __contains__(self, key):
if key in self.values:
return True
for version in ("v1", "v2"):
version_key = f"{version}.{key}"
if version_key in self.values:
return True
return False
class Configuration:
"""
:param host: Base url.
:param api_key: Dict to store API key(s).
Each entry in the dict specifies an API key.
The dict key is the name of the security scheme in the OAS specification.
The dict value is the API key secret.
:param api_key_prefix: Dict to store API prefix (e.g. Bearer).
The dict key is the name of the security scheme in the OAS specification.
The dict value is an API key prefix when generating the auth data.
:param username: Username for HTTP basic authentication.
:param password: Password for HTTP basic authentication.
:param discard_unknown_keys: Boolean value indicating whether to discard
unknown properties. A server may send a response that includes additional
properties that are not known by the client in the following scenarios:
1. The OpenAPI document is incomplete, i.e. it does not match the server
implementation.
2. The client was generated using an older version of the OpenAPI document
and the server has been upgraded since then.
If a schema in the OpenAPI document defines the additionalProperties
attribute, then all undeclared properties received by the server are injected
into the additional properties map. In that case, there are undeclared
properties, and nothing to discard.
:param disabled_client_side_validations: Comma-separated list of
JSON schema validation keywords to disable JSON schema structural validation
rules. The following keywords may be specified: multipleOf, maximum,
exclusiveMaximum, minimum, exclusiveMinimum, maxLength, minLength, pattern,
maxItems, minItems.
By default, the validation is performed for data generated locally by the client
and data received from the server, independent of any validation performed by
the server side. If the input data does not satisfy the JSON schema validation
rules specified in the OpenAPI document, an exception is raised.
If disabled_client_side_validations is set, structural validation is
disabled. This can be useful to troubleshoot data validation problem, such as
when the OpenAPI document validation rules do not match the actual API data
received by the server.
:type disabled_client_side_validations: str
:param server_index: Index to servers configuration.
:param server_variables: Mapping with string values to replace variables in
templated server configuration. The validation of enums is performed for
variables with defined enum values before.
:param server_operation_index: Mapping from operation ID to an index to
server configuration.
:param server_operation_variables: Mapping from operation ID to a mapping with
string values to replace variables in templated server configuration.
The validation of enums is performed for variables with defined enum values before.
:param ssl_ca_cert: The path to a file of concatenated CA certificates
in PEM format.
:param compress: Boolean indicating whether encoded responses are accepted or not.
:type compress: bool
:param return_http_data_only: Response data without head status
code and headers. Default is True.
:type return_http_data_only: bool
:param preload_content: If False, the urllib3.HTTPResponse object
will be returned without reading/decoding response data.
Default is True.
:type preload_content: bool
:param request_timeout: Timeout setting for this request. If one
number is provided, it will be total request timeout. It can also be a
pair (tuple) of (connection, read) timeouts. Default is None.
:type request_timeout: float/tuple
:param check_input_type: Specifies if type checking should be done on
the data sent to the server. Default is True.
:type check_input_type: bool
:param check_return_type: Specifies if type checking should be done
on the data received from the server. Default is True.
:type check_return_type: bool
:param spec_property_naming: Whether names in properties are expected to respect the spec or use snake case.
:type spec_property_naming: bool
:param enable_retry: If set, the client will retry requests on backend errors (5xx status codes), and 429.
On 429 if will use the returned headers to wait until the next requests, otherwise it will retry using
the backoff factor.
:type enable_retry: bool
:param retry_backoff_factor: Factor used to space out retried requests on backend errors.
:type retry_backoff_factor: float
:param max_retries: The maximum number of times a single request can be retried.
:type max_retries: int
"""
def __init__(
self,
host=None,
api_key=None,
api_key_prefix=None,
access_token=None,
username=None,
password=None,
discard_unknown_keys=True,
disabled_client_side_validations="",
server_index=None,
server_variables=None,
server_operation_index=None,
server_operation_variables=None,
ssl_ca_cert=None,
compress=True,
return_http_data_only=True,
preload_content=True,
request_timeout=None,
check_input_type=True,
check_return_type=True,
spec_property_naming=False,
enable_retry=False,
retry_backoff_factor=2,
max_retries=3,
):
"""Constructor."""
self._base_path = "https://api.datadoghq.com" if host is None else host
self.server_index = 0 if server_index is None and host is None else server_index
self.server_operation_index = server_operation_index or {}
self.server_variables = server_variables or {}
self.server_operation_variables = server_operation_variables or {}
self.temp_folder_path = None
# Authentication Settings
self.access_token = access_token
self.api_key = {}
if api_key:
self.api_key = api_key
self.api_key_prefix = {}
if api_key_prefix:
self.api_key_prefix = api_key_prefix
self.refresh_api_key_hook = None
self.username = username
self.password = password
self.discard_unknown_keys = discard_unknown_keys
self.disabled_client_side_validations = disabled_client_side_validations
self.logger = {}
self.logger["package_logger"] = logging.getLogger("datadog_api_client")
self.logger["urllib3_logger"] = logging.getLogger("urllib3")
self.logger_format = "%(asctime)s %(levelname)s %(message)s"
self.logger_stream_handler = None
self.logger_file_handler = None
self.logger_file = None
self.debug = False
self.verify_ssl = True
self.ssl_ca_cert = ssl_ca_cert
self.cert_file = None
self.key_file = None
self.assert_hostname = None
self.proxy = None
self.proxy_headers = None
self.safe_chars_for_path_param = ""
# Enable client side validation
self.client_side_validation = True
# Options to pass down to the underlying urllib3 socket
self.socket_options = None
# Will translate to a Accept-Encoding header
self.compress = compress
self.return_http_data_only = return_http_data_only
self.preload_content = preload_content
self.request_timeout = request_timeout
self.check_input_type = check_input_type
self.check_return_type = check_return_type
self.spec_property_naming = spec_property_naming
# Options for http retry
self.enable_retry = enable_retry
self.retry_backoff_factor = retry_backoff_factor
self.max_retries = max_retries
# Keep track of unstable operations
self.unstable_operations = _UnstableOperations(
{
"v2.create_open_api": False,
"v2.delete_open_api": False,
"v2.get_open_api": False,
"v2.list_apis": False,
"v2.update_open_api": False,
"v2.create_app": False,
"v2.delete_app": False,
"v2.delete_apps": False,
"v2.deploy_app": False,
"v2.disable_app": False,
"v2.get_app": False,
"v2.list_apps": False,
"v2.update_app": False,
"v2.cancel_historical_job": False,
"v2.convert_job_result_to_signal": False,
"v2.create_custom_framework": False,
"v2.delete_historical_job": False,
"v2.get_finding": False,
"v2.get_historical_job": False,
"v2.list_findings": False,
"v2.list_historical_jobs": False,
"v2.list_vulnerabilities": False,
"v2.list_vulnerable_assets": False,
"v2.mute_findings": False,
"v2.run_historical_job": False,
"v2.update_custom_framework": False,
"v2.get_active_billing_dimensions": False,
"v2.get_billing_dimension_mapping": False,
"v2.get_monthly_cost_attribution": False,
"v2.cancel_data_deletion_request": False,
"v2.create_data_deletion_request": False,
"v2.get_data_deletion_requests": False,
"v2.create_dora_deployment": False,
"v2.create_dora_incident": False,
"v2.create_incident": False,
"v2.create_incident_integration": False,
"v2.create_incident_todo": False,
"v2.create_incident_type": False,
"v2.delete_incident": False,
"v2.delete_incident_integration": False,
"v2.delete_incident_todo": False,
"v2.delete_incident_type": False,
"v2.get_incident": False,
"v2.get_incident_integration": False,
"v2.get_incident_todo": False,
"v2.get_incident_type": False,
"v2.list_incident_attachments": False,
"v2.list_incident_integrations": False,
"v2.list_incidents": False,
"v2.list_incident_todos": False,
"v2.list_incident_types": False,
"v2.search_incidents": False,
"v2.update_incident": False,
"v2.update_incident_attachments": False,
"v2.update_incident_integration": False,
"v2.update_incident_todo": False,
"v2.update_incident_type": False,
"v2.create_aws_account": False,
"v2.create_new_aws_external_id": False,
"v2.delete_aws_account": False,
"v2.get_aws_account": False,
"v2.list_aws_accounts": False,
"v2.list_aws_namespaces": False,
"v2.update_aws_account": False,
"v2.list_aws_logs_services": False,
"v2.create_scorecard_outcomes_batch": False,
"v2.create_scorecard_rule": False,
"v2.delete_scorecard_rule": False,
"v2.list_scorecard_outcomes": False,
"v2.list_scorecard_rules": False,
"v2.update_scorecard_rule": False,
"v2.create_incident_service": False,
"v2.delete_incident_service": False,
"v2.get_incident_service": False,
"v2.list_incident_services": False,
"v2.update_incident_service": False,
"v2.create_slo_report_job": False,
"v2.get_slo_report": False,
"v2.get_slo_report_job_status": False,
"v2.create_incident_team": False,
"v2.delete_incident_team": False,
"v2.get_incident_team": False,
"v2.list_incident_teams": False,
"v2.update_incident_team": False,
}
)
# Load default values from environment
if "DD_SITE" in os.environ:
self.server_variables["site"] = os.environ["DD_SITE"]
if "DD_API_KEY" in os.environ and not self.api_key.get("apiKeyAuth"):
self.api_key["apiKeyAuth"] = os.environ["DD_API_KEY"]
if "DD_APP_KEY" in os.environ and not self.api_key.get("appKeyAuth"):
self.api_key["appKeyAuth"] = os.environ["DD_APP_KEY"]
def __deepcopy__(self, memo):
cls = self.__class__
result = cls.__new__(cls)
memo[id(self)] = result
for k, v in self.__dict__.items():
if k not in ("logger", "logger_file_handler"):
setattr(result, k, copy.deepcopy(v, memo))
# Shallow copy of loggers
result.logger = copy.copy(self.logger)
# Use setters to configure loggers
result.logger_file = self.logger_file
result.debug = self.debug
return result
def __setattr__(self, name, value):
object.__setattr__(self, name, value)
if name == "disabled_client_side_validations":
s = set(filter(None, value.split(",")))
for v in s:
if v not in JSON_SCHEMA_VALIDATION_KEYWORDS:
raise ApiValueError("Invalid keyword: '{0}''".format(v))
self._disabled_client_side_validations = s
@property
def logger_file(self):
"""The logger file.
If the logger_file is None, then add stream handler and remove file
handler. Otherwise, add file handler and remove stream handler.
:return: The logger_file path.
:rtype: str
"""
return self._logger_file
@logger_file.setter
def logger_file(self, value):
"""The logger file.
If the logger_file is None, then add stream handler and remove file
handler. Otherwise, add file handler and remove stream handler.
:param value: The logger_file path.
:type value: str
"""
self._logger_file = value
if self._logger_file:
# If set logging file,
# then add file handler and remove stream handler.
self.logger_file_handler = logging.FileHandler(self._logger_file)
self.logger_file_handler.setFormatter(self.logger_formatter)
for _, logger in self.logger.items():
logger.addHandler(self.logger_file_handler)
@property
def debug(self):
"""Debug status.
:return: The debug status, True or False.
:rtype: bool
"""
return self._debug
@debug.setter
def debug(self, value):
"""Debug status.
:param value: The debug status, True or False.
:type value: bool
"""
self._debug = value
if self._debug:
# if debug status is True, turn on debug logging
for _, logger in self.logger.items():
logger.setLevel(logging.DEBUG)
# turn on http_client debug
http_client.HTTPConnection.debuglevel = 1
else:
# if debug status is False, turn off debug logging,
# setting log level to default `logging.WARNING`
for _, logger in self.logger.items():
logger.setLevel(logging.WARNING)
# turn off http_client debug
http_client.HTTPConnection.debuglevel = 0
@property
def logger_format(self):
"""The logger format.
The logger_formatter will be updated when sets logger_format.
:return: The format string.
:rtype: str
"""
return self._logger_format
@logger_format.setter
def logger_format(self, value):
"""The logger format.
The logger_formatter will be updated when sets logger_format.
:param value: The format string.
:type value: str
"""
self._logger_format = value
self.logger_formatter = logging.Formatter(self._logger_format)
@property
def retry_backoff_factor(self):
"""Retry backoff factor.
:return: The backoff factor, float
:rtype: float
"""
return self._retry_backoff_factor
@retry_backoff_factor.setter
def retry_backoff_factor(self, value):
"""Retry backoff factor.
:param value: The backoff factor used to calculate intervals between retry attempts
:type value: float
"""
if value < 2:
raise ValueError("Retry backoff factor cannot be smaller than 2")
self._retry_backoff_factor = value
def get_api_key_with_prefix(self, identifier, alias=None):
"""Gets API key (with prefix if set).
:param identifier: The identifier of apiKey.
:param alias: The alternative identifier of apiKey.
:return: The token for api key authentication.
"""
if self.refresh_api_key_hook is not None:
self.refresh_api_key_hook(self)
key = self.api_key.get(identifier, self.api_key.get(alias) if alias is not None else None)
if key:
prefix = self.api_key_prefix.get(identifier)
if prefix:
return "%s %s" % (prefix, key)
return key
def get_basic_auth_token(self):
"""Gets HTTP basic authentication header (string).
:return: The token for basic HTTP authentication.
"""
username = ""
if self.username is not None:
username = self.username
password = ""
if self.password is not None:
password = self.password
return urllib3.util.make_headers(basic_auth=username + ":" + password).get("authorization")
def get_host_settings(self):
"""Gets an array of host settings
:return: An array of host settings
"""
return [
{
"url": "https://{subdomain}.{site}",
"description": "No description provided",
"variables": {
"site": {
"description": "The regional site for Datadog customers.",
"default_value": "datadoghq.com",
"enum_values": [
"datadoghq.com",
"us3.datadoghq.com",
"us5.datadoghq.com",
"ap1.datadoghq.com",
"datadoghq.eu",
"ddog-gov.com",
],
},
"subdomain": {
"description": "The subdomain where the API is deployed.",
"default_value": "api",
},
},
},
{
"url": "{protocol}://{name}",
"description": "No description provided",
"variables": {
"name": {
"description": "Full site DNS name.",
"default_value": "api.datadoghq.com",
},
"protocol": {
"description": "The protocol for accessing the API.",
"default_value": "https",
},
},
},
{
"url": "https://{subdomain}.{site}",
"description": "No description provided",
"variables": {
"site": {
"description": "Any Datadog deployment.",
"default_value": "datadoghq.com",
},
"subdomain": {
"description": "The subdomain where the API is deployed.",
"default_value": "api",
},
},
},
]
def get_host_from_settings(self, index, variables=None, servers=None):
"""Gets host URL based on the index and variables.
:param index: Array index of the host settings.
:param variables: Hash of variable and the corresponding value.
:param servers: An array of host settings or None.
:return: URL based on host settings.
"""
if index is None:
return self._base_path
variables = {} if variables is None else variables
servers = self.get_host_settings() if servers is None else servers
try:
server = servers[index]
except IndexError:
raise ValueError(
"Invalid index {} when selecting the host settings. " "Must be less than {}".format(index, len(servers))
)
url = server["url"]
# go through variables and replace placeholders
for variable_name, variable in server.get("variables", {}).items():
used_value = variables.get(variable_name, variable["default_value"])
if "enum_values" in variable and used_value not in variable["enum_values"]:
raise ValueError(
"The variable `{}` in the host URL has invalid value " "{}. Must be {}.".format(
variable_name, variables[variable_name], variable["enum_values"]
)
)
url = url.replace(f"{{{variable_name}}}", used_value)
return url
@property
def host(self):
"""Return generated host."""
return self.get_host_from_settings(self.server_index, variables=self.server_variables)
@host.setter
def host(self, value):
"""Fix base path."""
self._base_path = value
self.server_index = None
def auth_settings(self):
"""Gets Auth Settings dict for api client.
:return: The Auth Settings information dict.
"""
auth = {}
if self.access_token is not None:
auth["AuthZ"] = {
"type": "oauth2",
"in": "header",
"key": "Authorization",
"value": "Bearer " + self.access_token,
}
if "apiKeyAuth" in self.api_key:
auth["apiKeyAuth"] = {
"type": "api_key",
"in": "header",
"key": "DD-API-KEY",
"value": self.get_api_key_with_prefix(
"apiKeyAuth",
),
}
if "appKeyAuth" in self.api_key:
auth["appKeyAuth"] = {
"type": "api_key",
"in": "header",
"key": "DD-APPLICATION-KEY",
"value": self.get_api_key_with_prefix(
"appKeyAuth",
),
}
return auth