stackit-cdn 1.2.0__tar.gz → 1.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/PKG-INFO +1 -1
  2. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/pyproject.toml +1 -1
  3. stackit_cdn-1.3.0/src/stackit/cdn/__init__.py +163 -0
  4. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/api/default_api.py +53 -53
  5. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/api_client.py +18 -5
  6. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/configuration.py +33 -11
  7. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/exceptions.py +20 -1
  8. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/__init__.py +1 -3
  9. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/config.py +5 -5
  10. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/config_patch.py +5 -5
  11. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/create_distribution_payload.py +2 -2
  12. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/create_distribution_response.py +2 -2
  13. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/custom_domain.py +2 -2
  14. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/delete_custom_domain_response.py +2 -2
  15. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/delete_distribution_response.py +2 -2
  16. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/distribution.py +2 -2
  17. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/distribution_logs_record.py +2 -2
  18. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/distribution_statistics_record.py +2 -2
  19. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/distribution_statistics_record_entry.py +2 -2
  20. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/distribution_statistics_record_regions.py +2 -2
  21. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/domain.py +2 -2
  22. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/domain_status.py +1 -1
  23. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/error_details.py +2 -2
  24. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/find_cache_paths_response.py +2 -2
  25. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/find_cache_paths_response_entry.py +2 -2
  26. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/generic_json_response.py +2 -2
  27. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/get_cache_info_response.py +2 -2
  28. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/get_cache_info_response_history_entry.py +2 -2
  29. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/get_custom_domain_response.py +3 -3
  30. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/get_distribution_response.py +2 -2
  31. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/get_logs_response.py +2 -2
  32. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/get_statistics_response.py +2 -2
  33. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/http_backend.py +2 -2
  34. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/http_backend_patch.py +2 -2
  35. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/list_distributions_response.py +2 -2
  36. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/optimizer.py +2 -2
  37. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/optimizer_patch.py +2 -2
  38. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/patch_distribution_payload.py +2 -2
  39. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/patch_distribution_response.py +2 -2
  40. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/purge_cache_payload.py +2 -2
  41. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/put_custom_domain_payload.py +2 -2
  42. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/put_custom_domain_response.py +3 -3
  43. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/region.py +1 -1
  44. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/models/status_error.py +2 -2
  45. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/rest.py +2 -2
  46. stackit_cdn-1.2.0/src/stackit/cdn/__init__.py +0 -83
  47. stackit_cdn-1.2.0/src/stackit/cdn/models/config_backend.py +0 -136
  48. stackit_cdn-1.2.0/src/stackit/cdn/models/config_patch_backend.py +0 -136
  49. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/README.md +0 -0
  50. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/api/__init__.py +0 -0
  51. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/api_response.py +0 -0
  52. {stackit_cdn-1.2.0 → stackit_cdn-1.3.0}/src/stackit/cdn/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stackit-cdn
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: CDN API
5
5
  Author: STACKIT Developer Tools
6
6
  Author-email: developer-tools@stackit.cloud
@@ -3,7 +3,7 @@ name = "stackit-cdn"
3
3
 
4
4
  [tool.poetry]
5
5
  name = "stackit-cdn"
6
- version = "v1.2.0"
6
+ version = "v1.3.0"
7
7
  authors = [
8
8
  "STACKIT Developer Tools <developer-tools@stackit.cloud>",
9
9
  ]
@@ -0,0 +1,163 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ CDN API
7
+
8
+ API used to create and manage your CDN distributions.
9
+
10
+ The version of the OpenAPI document: 1beta.0.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "DefaultApi",
22
+ "ApiResponse",
23
+ "ApiClient",
24
+ "HostConfiguration",
25
+ "OpenApiException",
26
+ "ApiTypeError",
27
+ "ApiValueError",
28
+ "ApiKeyError",
29
+ "ApiAttributeError",
30
+ "ApiException",
31
+ "Config",
32
+ "ConfigPatch",
33
+ "CreateDistributionPayload",
34
+ "CreateDistributionResponse",
35
+ "CustomDomain",
36
+ "DeleteCustomDomainResponse",
37
+ "DeleteDistributionResponse",
38
+ "Distribution",
39
+ "DistributionLogsRecord",
40
+ "DistributionStatisticsRecord",
41
+ "DistributionStatisticsRecordEntry",
42
+ "DistributionStatisticsRecordRegions",
43
+ "Domain",
44
+ "DomainStatus",
45
+ "ErrorDetails",
46
+ "FindCachePathsResponse",
47
+ "FindCachePathsResponseEntry",
48
+ "GenericJSONResponse",
49
+ "GetCacheInfoResponse",
50
+ "GetCacheInfoResponseHistoryEntry",
51
+ "GetCustomDomainResponse",
52
+ "GetDistributionResponse",
53
+ "GetLogsResponse",
54
+ "GetStatisticsResponse",
55
+ "HttpBackend",
56
+ "HttpBackendPatch",
57
+ "ListDistributionsResponse",
58
+ "Optimizer",
59
+ "OptimizerPatch",
60
+ "PatchDistributionPayload",
61
+ "PatchDistributionResponse",
62
+ "PurgeCachePayload",
63
+ "PutCustomDomainPayload",
64
+ "PutCustomDomainResponse",
65
+ "Region",
66
+ "StatusError",
67
+ ]
68
+
69
+ # import apis into sdk package
70
+ from stackit.cdn.api.default_api import DefaultApi as DefaultApi
71
+ from stackit.cdn.api_client import ApiClient as ApiClient
72
+
73
+ # import ApiClient
74
+ from stackit.cdn.api_response import ApiResponse as ApiResponse
75
+ from stackit.cdn.configuration import HostConfiguration as HostConfiguration
76
+ from stackit.cdn.exceptions import ApiAttributeError as ApiAttributeError
77
+ from stackit.cdn.exceptions import ApiException as ApiException
78
+ from stackit.cdn.exceptions import ApiKeyError as ApiKeyError
79
+ from stackit.cdn.exceptions import ApiTypeError as ApiTypeError
80
+ from stackit.cdn.exceptions import ApiValueError as ApiValueError
81
+ from stackit.cdn.exceptions import OpenApiException as OpenApiException
82
+
83
+ # import models into sdk package
84
+ from stackit.cdn.models.config import Config as Config
85
+ from stackit.cdn.models.config_patch import ConfigPatch as ConfigPatch
86
+ from stackit.cdn.models.create_distribution_payload import (
87
+ CreateDistributionPayload as CreateDistributionPayload,
88
+ )
89
+ from stackit.cdn.models.create_distribution_response import (
90
+ CreateDistributionResponse as CreateDistributionResponse,
91
+ )
92
+ from stackit.cdn.models.custom_domain import CustomDomain as CustomDomain
93
+ from stackit.cdn.models.delete_custom_domain_response import (
94
+ DeleteCustomDomainResponse as DeleteCustomDomainResponse,
95
+ )
96
+ from stackit.cdn.models.delete_distribution_response import (
97
+ DeleteDistributionResponse as DeleteDistributionResponse,
98
+ )
99
+ from stackit.cdn.models.distribution import Distribution as Distribution
100
+ from stackit.cdn.models.distribution_logs_record import (
101
+ DistributionLogsRecord as DistributionLogsRecord,
102
+ )
103
+ from stackit.cdn.models.distribution_statistics_record import (
104
+ DistributionStatisticsRecord as DistributionStatisticsRecord,
105
+ )
106
+ from stackit.cdn.models.distribution_statistics_record_entry import (
107
+ DistributionStatisticsRecordEntry as DistributionStatisticsRecordEntry,
108
+ )
109
+ from stackit.cdn.models.distribution_statistics_record_regions import (
110
+ DistributionStatisticsRecordRegions as DistributionStatisticsRecordRegions,
111
+ )
112
+ from stackit.cdn.models.domain import Domain as Domain
113
+ from stackit.cdn.models.domain_status import DomainStatus as DomainStatus
114
+ from stackit.cdn.models.error_details import ErrorDetails as ErrorDetails
115
+ from stackit.cdn.models.find_cache_paths_response import (
116
+ FindCachePathsResponse as FindCachePathsResponse,
117
+ )
118
+ from stackit.cdn.models.find_cache_paths_response_entry import (
119
+ FindCachePathsResponseEntry as FindCachePathsResponseEntry,
120
+ )
121
+ from stackit.cdn.models.generic_json_response import (
122
+ GenericJSONResponse as GenericJSONResponse,
123
+ )
124
+ from stackit.cdn.models.get_cache_info_response import (
125
+ GetCacheInfoResponse as GetCacheInfoResponse,
126
+ )
127
+ from stackit.cdn.models.get_cache_info_response_history_entry import (
128
+ GetCacheInfoResponseHistoryEntry as GetCacheInfoResponseHistoryEntry,
129
+ )
130
+ from stackit.cdn.models.get_custom_domain_response import (
131
+ GetCustomDomainResponse as GetCustomDomainResponse,
132
+ )
133
+ from stackit.cdn.models.get_distribution_response import (
134
+ GetDistributionResponse as GetDistributionResponse,
135
+ )
136
+ from stackit.cdn.models.get_logs_response import GetLogsResponse as GetLogsResponse
137
+ from stackit.cdn.models.get_statistics_response import (
138
+ GetStatisticsResponse as GetStatisticsResponse,
139
+ )
140
+ from stackit.cdn.models.http_backend import HttpBackend as HttpBackend
141
+ from stackit.cdn.models.http_backend_patch import HttpBackendPatch as HttpBackendPatch
142
+ from stackit.cdn.models.list_distributions_response import (
143
+ ListDistributionsResponse as ListDistributionsResponse,
144
+ )
145
+ from stackit.cdn.models.optimizer import Optimizer as Optimizer
146
+ from stackit.cdn.models.optimizer_patch import OptimizerPatch as OptimizerPatch
147
+ from stackit.cdn.models.patch_distribution_payload import (
148
+ PatchDistributionPayload as PatchDistributionPayload,
149
+ )
150
+ from stackit.cdn.models.patch_distribution_response import (
151
+ PatchDistributionResponse as PatchDistributionResponse,
152
+ )
153
+ from stackit.cdn.models.purge_cache_payload import (
154
+ PurgeCachePayload as PurgeCachePayload,
155
+ )
156
+ from stackit.cdn.models.put_custom_domain_payload import (
157
+ PutCustomDomainPayload as PutCustomDomainPayload,
158
+ )
159
+ from stackit.cdn.models.put_custom_domain_response import (
160
+ PutCustomDomainResponse as PutCustomDomainResponse,
161
+ )
162
+ from stackit.cdn.models.region import Region as Region
163
+ from stackit.cdn.models.status_error import StatusError as StatusError
@@ -9,7 +9,7 @@
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
12
- """ # noqa: E501 docstring might be too long
12
+ """ # noqa: E501
13
13
 
14
14
  from datetime import datetime
15
15
  from typing import Any, Dict, List, Optional, Tuple, Union
@@ -101,7 +101,7 @@ class DefaultApi:
101
101
  in the spec for a single request.
102
102
  :type _host_index: int, optional
103
103
  :return: Returns the result object.
104
- """ # noqa: E501 docstring might be too long
104
+ """ # noqa: E501
105
105
 
106
106
  _param = self._create_distribution_serialize(
107
107
  project_id=project_id,
@@ -169,7 +169,7 @@ class DefaultApi:
169
169
  in the spec for a single request.
170
170
  :type _host_index: int, optional
171
171
  :return: Returns the result object.
172
- """ # noqa: E501 docstring might be too long
172
+ """ # noqa: E501
173
173
 
174
174
  _param = self._create_distribution_serialize(
175
175
  project_id=project_id,
@@ -237,7 +237,7 @@ class DefaultApi:
237
237
  in the spec for a single request.
238
238
  :type _host_index: int, optional
239
239
  :return: Returns the result object.
240
- """ # noqa: E501 docstring might be too long
240
+ """ # noqa: E501
241
241
 
242
242
  _param = self._create_distribution_serialize(
243
243
  project_id=project_id,
@@ -276,7 +276,7 @@ class DefaultApi:
276
276
  _query_params: List[Tuple[str, str]] = []
277
277
  _header_params: Dict[str, Optional[str]] = _headers or {}
278
278
  _form_params: List[Tuple[str, str]] = []
279
- _files: Dict[str, Union[str, bytes]] = {}
279
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
280
280
  _body_params: Optional[bytes] = None
281
281
 
282
282
  # process the path parameters
@@ -368,7 +368,7 @@ class DefaultApi:
368
368
  in the spec for a single request.
369
369
  :type _host_index: int, optional
370
370
  :return: Returns the result object.
371
- """ # noqa: E501 docstring might be too long
371
+ """ # noqa: E501
372
372
 
373
373
  _param = self._delete_custom_domain_serialize(
374
374
  project_id=project_id,
@@ -443,7 +443,7 @@ class DefaultApi:
443
443
  in the spec for a single request.
444
444
  :type _host_index: int, optional
445
445
  :return: Returns the result object.
446
- """ # noqa: E501 docstring might be too long
446
+ """ # noqa: E501
447
447
 
448
448
  _param = self._delete_custom_domain_serialize(
449
449
  project_id=project_id,
@@ -518,7 +518,7 @@ class DefaultApi:
518
518
  in the spec for a single request.
519
519
  :type _host_index: int, optional
520
520
  :return: Returns the result object.
521
- """ # noqa: E501 docstring might be too long
521
+ """ # noqa: E501
522
522
 
523
523
  _param = self._delete_custom_domain_serialize(
524
524
  project_id=project_id,
@@ -560,7 +560,7 @@ class DefaultApi:
560
560
  _query_params: List[Tuple[str, str]] = []
561
561
  _header_params: Dict[str, Optional[str]] = _headers or {}
562
562
  _form_params: List[Tuple[str, str]] = []
563
- _files: Dict[str, Union[str, bytes]] = {}
563
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
564
564
  _body_params: Optional[bytes] = None
565
565
 
566
566
  # process the path parameters
@@ -652,7 +652,7 @@ class DefaultApi:
652
652
  in the spec for a single request.
653
653
  :type _host_index: int, optional
654
654
  :return: Returns the result object.
655
- """ # noqa: E501 docstring might be too long
655
+ """ # noqa: E501
656
656
 
657
657
  _param = self._delete_distribution_serialize(
658
658
  project_id=project_id,
@@ -728,7 +728,7 @@ class DefaultApi:
728
728
  in the spec for a single request.
729
729
  :type _host_index: int, optional
730
730
  :return: Returns the result object.
731
- """ # noqa: E501 docstring might be too long
731
+ """ # noqa: E501
732
732
 
733
733
  _param = self._delete_distribution_serialize(
734
734
  project_id=project_id,
@@ -804,7 +804,7 @@ class DefaultApi:
804
804
  in the spec for a single request.
805
805
  :type _host_index: int, optional
806
806
  :return: Returns the result object.
807
- """ # noqa: E501 docstring might be too long
807
+ """ # noqa: E501
808
808
 
809
809
  _param = self._delete_distribution_serialize(
810
810
  project_id=project_id,
@@ -844,7 +844,7 @@ class DefaultApi:
844
844
  _query_params: List[Tuple[str, str]] = []
845
845
  _header_params: Dict[str, Optional[str]] = _headers or {}
846
846
  _form_params: List[Tuple[str, str]] = []
847
- _files: Dict[str, Union[str, bytes]] = {}
847
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
848
848
  _body_params: Optional[bytes] = None
849
849
 
850
850
  # process the path parameters
@@ -929,7 +929,7 @@ class DefaultApi:
929
929
  in the spec for a single request.
930
930
  :type _host_index: int, optional
931
931
  :return: Returns the result object.
932
- """ # noqa: E501 docstring might be too long
932
+ """ # noqa: E501
933
933
 
934
934
  _param = self._find_cache_paths_serialize(
935
935
  project_id=project_id,
@@ -1000,7 +1000,7 @@ class DefaultApi:
1000
1000
  in the spec for a single request.
1001
1001
  :type _host_index: int, optional
1002
1002
  :return: Returns the result object.
1003
- """ # noqa: E501 docstring might be too long
1003
+ """ # noqa: E501
1004
1004
 
1005
1005
  _param = self._find_cache_paths_serialize(
1006
1006
  project_id=project_id,
@@ -1071,7 +1071,7 @@ class DefaultApi:
1071
1071
  in the spec for a single request.
1072
1072
  :type _host_index: int, optional
1073
1073
  :return: Returns the result object.
1074
- """ # noqa: E501 docstring might be too long
1074
+ """ # noqa: E501
1075
1075
 
1076
1076
  _param = self._find_cache_paths_serialize(
1077
1077
  project_id=project_id,
@@ -1111,7 +1111,7 @@ class DefaultApi:
1111
1111
  _query_params: List[Tuple[str, str]] = []
1112
1112
  _header_params: Dict[str, Optional[str]] = _headers or {}
1113
1113
  _form_params: List[Tuple[str, str]] = []
1114
- _files: Dict[str, Union[str, bytes]] = {}
1114
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
1115
1115
  _body_params: Optional[bytes] = None
1116
1116
 
1117
1117
  # process the path parameters
@@ -1196,7 +1196,7 @@ class DefaultApi:
1196
1196
  in the spec for a single request.
1197
1197
  :type _host_index: int, optional
1198
1198
  :return: Returns the result object.
1199
- """ # noqa: E501 docstring might be too long
1199
+ """ # noqa: E501
1200
1200
 
1201
1201
  _param = self._get_cache_info_serialize(
1202
1202
  project_id=project_id,
@@ -1267,7 +1267,7 @@ class DefaultApi:
1267
1267
  in the spec for a single request.
1268
1268
  :type _host_index: int, optional
1269
1269
  :return: Returns the result object.
1270
- """ # noqa: E501 docstring might be too long
1270
+ """ # noqa: E501
1271
1271
 
1272
1272
  _param = self._get_cache_info_serialize(
1273
1273
  project_id=project_id,
@@ -1338,7 +1338,7 @@ class DefaultApi:
1338
1338
  in the spec for a single request.
1339
1339
  :type _host_index: int, optional
1340
1340
  :return: Returns the result object.
1341
- """ # noqa: E501 docstring might be too long
1341
+ """ # noqa: E501
1342
1342
 
1343
1343
  _param = self._get_cache_info_serialize(
1344
1344
  project_id=project_id,
@@ -1378,7 +1378,7 @@ class DefaultApi:
1378
1378
  _query_params: List[Tuple[str, str]] = []
1379
1379
  _header_params: Dict[str, Optional[str]] = _headers or {}
1380
1380
  _form_params: List[Tuple[str, str]] = []
1381
- _files: Dict[str, Union[str, bytes]] = {}
1381
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
1382
1382
  _body_params: Optional[bytes] = None
1383
1383
 
1384
1384
  # process the path parameters
@@ -1463,7 +1463,7 @@ class DefaultApi:
1463
1463
  in the spec for a single request.
1464
1464
  :type _host_index: int, optional
1465
1465
  :return: Returns the result object.
1466
- """ # noqa: E501 docstring might be too long
1466
+ """ # noqa: E501
1467
1467
 
1468
1468
  _param = self._get_custom_domain_serialize(
1469
1469
  project_id=project_id,
@@ -1535,7 +1535,7 @@ class DefaultApi:
1535
1535
  in the spec for a single request.
1536
1536
  :type _host_index: int, optional
1537
1537
  :return: Returns the result object.
1538
- """ # noqa: E501 docstring might be too long
1538
+ """ # noqa: E501
1539
1539
 
1540
1540
  _param = self._get_custom_domain_serialize(
1541
1541
  project_id=project_id,
@@ -1607,7 +1607,7 @@ class DefaultApi:
1607
1607
  in the spec for a single request.
1608
1608
  :type _host_index: int, optional
1609
1609
  :return: Returns the result object.
1610
- """ # noqa: E501 docstring might be too long
1610
+ """ # noqa: E501
1611
1611
 
1612
1612
  _param = self._get_custom_domain_serialize(
1613
1613
  project_id=project_id,
@@ -1648,7 +1648,7 @@ class DefaultApi:
1648
1648
  _query_params: List[Tuple[str, str]] = []
1649
1649
  _header_params: Dict[str, Optional[str]] = _headers or {}
1650
1650
  _form_params: List[Tuple[str, str]] = []
1651
- _files: Dict[str, Union[str, bytes]] = {}
1651
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
1652
1652
  _body_params: Optional[bytes] = None
1653
1653
 
1654
1654
  # process the path parameters
@@ -1728,7 +1728,7 @@ class DefaultApi:
1728
1728
  in the spec for a single request.
1729
1729
  :type _host_index: int, optional
1730
1730
  :return: Returns the result object.
1731
- """ # noqa: E501 docstring might be too long
1731
+ """ # noqa: E501
1732
1732
 
1733
1733
  _param = self._get_distribution_serialize(
1734
1734
  project_id=project_id,
@@ -1796,7 +1796,7 @@ class DefaultApi:
1796
1796
  in the spec for a single request.
1797
1797
  :type _host_index: int, optional
1798
1798
  :return: Returns the result object.
1799
- """ # noqa: E501 docstring might be too long
1799
+ """ # noqa: E501
1800
1800
 
1801
1801
  _param = self._get_distribution_serialize(
1802
1802
  project_id=project_id,
@@ -1864,7 +1864,7 @@ class DefaultApi:
1864
1864
  in the spec for a single request.
1865
1865
  :type _host_index: int, optional
1866
1866
  :return: Returns the result object.
1867
- """ # noqa: E501 docstring might be too long
1867
+ """ # noqa: E501
1868
1868
 
1869
1869
  _param = self._get_distribution_serialize(
1870
1870
  project_id=project_id,
@@ -1903,7 +1903,7 @@ class DefaultApi:
1903
1903
  _query_params: List[Tuple[str, str]] = []
1904
1904
  _header_params: Dict[str, Optional[str]] = _headers or {}
1905
1905
  _form_params: List[Tuple[str, str]] = []
1906
- _files: Dict[str, Union[str, bytes]] = {}
1906
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
1907
1907
  _body_params: Optional[bytes] = None
1908
1908
 
1909
1909
  # process the path parameters
@@ -2020,7 +2020,7 @@ class DefaultApi:
2020
2020
  in the spec for a single request.
2021
2021
  :type _host_index: int, optional
2022
2022
  :return: Returns the result object.
2023
- """ # noqa: E501 docstring might be too long
2023
+ """ # noqa: E501
2024
2024
 
2025
2025
  _param = self._get_logs_serialize(
2026
2026
  project_id=project_id,
@@ -2132,7 +2132,7 @@ class DefaultApi:
2132
2132
  in the spec for a single request.
2133
2133
  :type _host_index: int, optional
2134
2134
  :return: Returns the result object.
2135
- """ # noqa: E501 docstring might be too long
2135
+ """ # noqa: E501
2136
2136
 
2137
2137
  _param = self._get_logs_serialize(
2138
2138
  project_id=project_id,
@@ -2244,7 +2244,7 @@ class DefaultApi:
2244
2244
  in the spec for a single request.
2245
2245
  :type _host_index: int, optional
2246
2246
  :return: Returns the result object.
2247
- """ # noqa: E501 docstring might be too long
2247
+ """ # noqa: E501
2248
2248
 
2249
2249
  _param = self._get_logs_serialize(
2250
2250
  project_id=project_id,
@@ -2294,7 +2294,7 @@ class DefaultApi:
2294
2294
  _query_params: List[Tuple[str, str]] = []
2295
2295
  _header_params: Dict[str, Optional[str]] = _headers or {}
2296
2296
  _form_params: List[Tuple[str, str]] = []
2297
- _files: Dict[str, Union[str, bytes]] = {}
2297
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
2298
2298
  _body_params: Optional[bytes] = None
2299
2299
 
2300
2300
  # process the path parameters
@@ -2421,7 +2421,7 @@ class DefaultApi:
2421
2421
  in the spec for a single request.
2422
2422
  :type _host_index: int, optional
2423
2423
  :return: Returns the result object.
2424
- """ # noqa: E501 docstring might be too long
2424
+ """ # noqa: E501
2425
2425
 
2426
2426
  _param = self._get_statistics_serialize(
2427
2427
  project_id=project_id,
@@ -2512,7 +2512,7 @@ class DefaultApi:
2512
2512
  in the spec for a single request.
2513
2513
  :type _host_index: int, optional
2514
2514
  :return: Returns the result object.
2515
- """ # noqa: E501 docstring might be too long
2515
+ """ # noqa: E501
2516
2516
 
2517
2517
  _param = self._get_statistics_serialize(
2518
2518
  project_id=project_id,
@@ -2603,7 +2603,7 @@ class DefaultApi:
2603
2603
  in the spec for a single request.
2604
2604
  :type _host_index: int, optional
2605
2605
  :return: Returns the result object.
2606
- """ # noqa: E501 docstring might be too long
2606
+ """ # noqa: E501
2607
2607
 
2608
2608
  _param = self._get_statistics_serialize(
2609
2609
  project_id=project_id,
@@ -2647,7 +2647,7 @@ class DefaultApi:
2647
2647
  _query_params: List[Tuple[str, str]] = []
2648
2648
  _header_params: Dict[str, Optional[str]] = _headers or {}
2649
2649
  _form_params: List[Tuple[str, str]] = []
2650
- _files: Dict[str, Union[str, bytes]] = {}
2650
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
2651
2651
  _body_params: Optional[bytes] = None
2652
2652
 
2653
2653
  # process the path parameters
@@ -2765,7 +2765,7 @@ class DefaultApi:
2765
2765
  in the spec for a single request.
2766
2766
  :type _host_index: int, optional
2767
2767
  :return: Returns the result object.
2768
- """ # noqa: E501 docstring might be too long
2768
+ """ # noqa: E501
2769
2769
 
2770
2770
  _param = self._list_distributions_serialize(
2771
2771
  project_id=project_id,
@@ -2859,7 +2859,7 @@ class DefaultApi:
2859
2859
  in the spec for a single request.
2860
2860
  :type _host_index: int, optional
2861
2861
  :return: Returns the result object.
2862
- """ # noqa: E501 docstring might be too long
2862
+ """ # noqa: E501
2863
2863
 
2864
2864
  _param = self._list_distributions_serialize(
2865
2865
  project_id=project_id,
@@ -2953,7 +2953,7 @@ class DefaultApi:
2953
2953
  in the spec for a single request.
2954
2954
  :type _host_index: int, optional
2955
2955
  :return: Returns the result object.
2956
- """ # noqa: E501 docstring might be too long
2956
+ """ # noqa: E501
2957
2957
 
2958
2958
  _param = self._list_distributions_serialize(
2959
2959
  project_id=project_id,
@@ -2997,7 +2997,7 @@ class DefaultApi:
2997
2997
  _query_params: List[Tuple[str, str]] = []
2998
2998
  _header_params: Dict[str, Optional[str]] = _headers or {}
2999
2999
  _form_params: List[Tuple[str, str]] = []
3000
- _files: Dict[str, Union[str, bytes]] = {}
3000
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
3001
3001
  _body_params: Optional[bytes] = None
3002
3002
 
3003
3003
  # process the path parameters
@@ -3092,7 +3092,7 @@ class DefaultApi:
3092
3092
  in the spec for a single request.
3093
3093
  :type _host_index: int, optional
3094
3094
  :return: Returns the result object.
3095
- """ # noqa: E501 docstring might be too long
3095
+ """ # noqa: E501
3096
3096
 
3097
3097
  _param = self._patch_distribution_serialize(
3098
3098
  project_id=project_id,
@@ -3163,7 +3163,7 @@ class DefaultApi:
3163
3163
  in the spec for a single request.
3164
3164
  :type _host_index: int, optional
3165
3165
  :return: Returns the result object.
3166
- """ # noqa: E501 docstring might be too long
3166
+ """ # noqa: E501
3167
3167
 
3168
3168
  _param = self._patch_distribution_serialize(
3169
3169
  project_id=project_id,
@@ -3234,7 +3234,7 @@ class DefaultApi:
3234
3234
  in the spec for a single request.
3235
3235
  :type _host_index: int, optional
3236
3236
  :return: Returns the result object.
3237
- """ # noqa: E501 docstring might be too long
3237
+ """ # noqa: E501
3238
3238
 
3239
3239
  _param = self._patch_distribution_serialize(
3240
3240
  project_id=project_id,
@@ -3274,7 +3274,7 @@ class DefaultApi:
3274
3274
  _query_params: List[Tuple[str, str]] = []
3275
3275
  _header_params: Dict[str, Optional[str]] = _headers or {}
3276
3276
  _form_params: List[Tuple[str, str]] = []
3277
- _files: Dict[str, Union[str, bytes]] = {}
3277
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
3278
3278
  _body_params: Optional[bytes] = None
3279
3279
 
3280
3280
  # process the path parameters
@@ -3365,7 +3365,7 @@ class DefaultApi:
3365
3365
  in the spec for a single request.
3366
3366
  :type _host_index: int, optional
3367
3367
  :return: Returns the result object.
3368
- """ # noqa: E501 docstring might be too long
3368
+ """ # noqa: E501
3369
3369
 
3370
3370
  _param = self._purge_cache_serialize(
3371
3371
  project_id=project_id,
@@ -3436,7 +3436,7 @@ class DefaultApi:
3436
3436
  in the spec for a single request.
3437
3437
  :type _host_index: int, optional
3438
3438
  :return: Returns the result object.
3439
- """ # noqa: E501 docstring might be too long
3439
+ """ # noqa: E501
3440
3440
 
3441
3441
  _param = self._purge_cache_serialize(
3442
3442
  project_id=project_id,
@@ -3507,7 +3507,7 @@ class DefaultApi:
3507
3507
  in the spec for a single request.
3508
3508
  :type _host_index: int, optional
3509
3509
  :return: Returns the result object.
3510
- """ # noqa: E501 docstring might be too long
3510
+ """ # noqa: E501
3511
3511
 
3512
3512
  _param = self._purge_cache_serialize(
3513
3513
  project_id=project_id,
@@ -3547,7 +3547,7 @@ class DefaultApi:
3547
3547
  _query_params: List[Tuple[str, str]] = []
3548
3548
  _header_params: Dict[str, Optional[str]] = _headers or {}
3549
3549
  _form_params: List[Tuple[str, str]] = []
3550
- _files: Dict[str, Union[str, bytes]] = {}
3550
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
3551
3551
  _body_params: Optional[bytes] = None
3552
3552
 
3553
3553
  # process the path parameters
@@ -3641,7 +3641,7 @@ class DefaultApi:
3641
3641
  in the spec for a single request.
3642
3642
  :type _host_index: int, optional
3643
3643
  :return: Returns the result object.
3644
- """ # noqa: E501 docstring might be too long
3644
+ """ # noqa: E501
3645
3645
 
3646
3646
  _param = self._put_custom_domain_serialize(
3647
3647
  project_id=project_id,
@@ -3716,7 +3716,7 @@ class DefaultApi:
3716
3716
  in the spec for a single request.
3717
3717
  :type _host_index: int, optional
3718
3718
  :return: Returns the result object.
3719
- """ # noqa: E501 docstring might be too long
3719
+ """ # noqa: E501
3720
3720
 
3721
3721
  _param = self._put_custom_domain_serialize(
3722
3722
  project_id=project_id,
@@ -3791,7 +3791,7 @@ class DefaultApi:
3791
3791
  in the spec for a single request.
3792
3792
  :type _host_index: int, optional
3793
3793
  :return: Returns the result object.
3794
- """ # noqa: E501 docstring might be too long
3794
+ """ # noqa: E501
3795
3795
 
3796
3796
  _param = self._put_custom_domain_serialize(
3797
3797
  project_id=project_id,
@@ -3833,7 +3833,7 @@ class DefaultApi:
3833
3833
  _query_params: List[Tuple[str, str]] = []
3834
3834
  _header_params: Dict[str, Optional[str]] = _headers or {}
3835
3835
  _form_params: List[Tuple[str, str]] = []
3836
- _files: Dict[str, Union[str, bytes]] = {}
3836
+ _files: Dict[str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]] = {}
3837
3837
  _body_params: Optional[bytes] = None
3838
3838
 
3839
3839
  # process the path parameters