crc-pulp-python-client 20250819.1__py3-none-any.whl

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.

Potentially problematic release.


This version of crc-pulp-python-client might be problematic. Click here for more details.

Files changed (120) hide show
  1. crc-pulp_python-client/__init__.py +2 -0
  2. crc-pulp_python-client/api/__init__.py +14 -0
  3. crc-pulp_python-client/api/api_pypi_api.py +370 -0
  4. crc-pulp_python-client/api/api_pypi_legacy_api.py +393 -0
  5. crc-pulp_python-client/api/api_pypi_simple_api.py +1045 -0
  6. crc-pulp_python-client/api/content_packages_api.py +2594 -0
  7. crc-pulp_python-client/api/distributions_pypi_api.py +4186 -0
  8. crc-pulp_python-client/api/publications_pypi_api.py +2881 -0
  9. crc-pulp_python-client/api/pypi_metadata_api.py +385 -0
  10. crc-pulp_python-client/api/remotes_python_api.py +4552 -0
  11. crc-pulp_python-client/api/repositories_python_api.py +4856 -0
  12. crc-pulp_python-client/api/repositories_python_versions_api.py +1670 -0
  13. crc-pulp_python-client/api_client.py +798 -0
  14. crc-pulp_python-client/api_response.py +21 -0
  15. crc-pulp_python-client/configuration.py +628 -0
  16. crc-pulp_python-client/exceptions.py +200 -0
  17. crc-pulp_python-client/models/__init__.py +56 -0
  18. crc-pulp_python-client/models/async_operation_response.py +88 -0
  19. crc-pulp_python-client/models/content_summary_response.py +92 -0
  20. crc-pulp_python-client/models/exclude_platforms_enum.py +40 -0
  21. crc-pulp_python-client/models/my_permissions_response.py +88 -0
  22. crc-pulp_python-client/models/nested_role.py +93 -0
  23. crc-pulp_python-client/models/nested_role_response.py +92 -0
  24. crc-pulp_python-client/models/object_roles_response.py +96 -0
  25. crc-pulp_python-client/models/package_metadata_response.py +109 -0
  26. crc-pulp_python-client/models/package_types_enum.py +44 -0
  27. crc-pulp_python-client/models/package_upload_task_response.py +103 -0
  28. crc-pulp_python-client/models/paginated_repository_version_response_list.py +112 -0
  29. crc-pulp_python-client/models/paginatedpython_python_distribution_response_list.py +112 -0
  30. crc-pulp_python-client/models/paginatedpython_python_package_content_response_list.py +112 -0
  31. crc-pulp_python-client/models/paginatedpython_python_publication_response_list.py +112 -0
  32. crc-pulp_python-client/models/paginatedpython_python_remote_response_list.py +112 -0
  33. crc-pulp_python-client/models/paginatedpython_python_repository_response_list.py +112 -0
  34. crc-pulp_python-client/models/patchedpython_python_distribution.py +125 -0
  35. crc-pulp_python-client/models/patchedpython_python_remote.py +219 -0
  36. crc-pulp_python-client/models/patchedpython_python_repository.py +114 -0
  37. crc-pulp_python-client/models/policy_enum.py +39 -0
  38. crc-pulp_python-client/models/python_python_distribution.py +125 -0
  39. crc-pulp_python-client/models/python_python_distribution_response.py +149 -0
  40. crc-pulp_python-client/models/python_python_package_content_response.py +201 -0
  41. crc-pulp_python-client/models/python_python_publication.py +90 -0
  42. crc-pulp_python-client/models/python_python_publication_response.py +111 -0
  43. crc-pulp_python-client/models/python_python_remote.py +219 -0
  44. crc-pulp_python-client/models/python_python_remote_response.py +213 -0
  45. crc-pulp_python-client/models/python_python_remote_response_hidden_fields_inner.py +90 -0
  46. crc-pulp_python-client/models/python_python_repository.py +114 -0
  47. crc-pulp_python-client/models/python_python_repository_response.py +139 -0
  48. crc-pulp_python-client/models/repair.py +88 -0
  49. crc-pulp_python-client/models/repository_add_remove_content.py +93 -0
  50. crc-pulp_python-client/models/repository_sync_url.py +90 -0
  51. crc-pulp_python-client/models/repository_version_response.py +121 -0
  52. crc-pulp_python-client/models/set_label.py +103 -0
  53. crc-pulp_python-client/models/set_label_response.py +103 -0
  54. crc-pulp_python-client/models/summary_response.py +92 -0
  55. crc-pulp_python-client/models/unset_label.py +96 -0
  56. crc-pulp_python-client/models/unset_label_response.py +100 -0
  57. crc-pulp_python-client/py.typed +0 -0
  58. crc-pulp_python-client/rest.py +258 -0
  59. crc_pulp_python_client-20250819.1.dist-info/METADATA +25 -0
  60. crc_pulp_python_client-20250819.1.dist-info/RECORD +120 -0
  61. crc_pulp_python_client-20250819.1.dist-info/WHEEL +5 -0
  62. crc_pulp_python_client-20250819.1.dist-info/top_level.txt +2 -0
  63. services-pulp_python-client/__init__.py +2 -0
  64. services-pulp_python-client/api/__init__.py +14 -0
  65. services-pulp_python-client/api/api_pypi_api.py +370 -0
  66. services-pulp_python-client/api/api_pypi_legacy_api.py +393 -0
  67. services-pulp_python-client/api/api_pypi_simple_api.py +1045 -0
  68. services-pulp_python-client/api/content_packages_api.py +2594 -0
  69. services-pulp_python-client/api/distributions_pypi_api.py +4186 -0
  70. services-pulp_python-client/api/publications_pypi_api.py +2881 -0
  71. services-pulp_python-client/api/pypi_metadata_api.py +385 -0
  72. services-pulp_python-client/api/remotes_python_api.py +4552 -0
  73. services-pulp_python-client/api/repositories_python_api.py +4856 -0
  74. services-pulp_python-client/api/repositories_python_versions_api.py +1670 -0
  75. services-pulp_python-client/api_client.py +798 -0
  76. services-pulp_python-client/api_response.py +21 -0
  77. services-pulp_python-client/configuration.py +628 -0
  78. services-pulp_python-client/exceptions.py +200 -0
  79. services-pulp_python-client/models/__init__.py +56 -0
  80. services-pulp_python-client/models/async_operation_response.py +88 -0
  81. services-pulp_python-client/models/content_summary_response.py +92 -0
  82. services-pulp_python-client/models/exclude_platforms_enum.py +40 -0
  83. services-pulp_python-client/models/my_permissions_response.py +88 -0
  84. services-pulp_python-client/models/nested_role.py +93 -0
  85. services-pulp_python-client/models/nested_role_response.py +92 -0
  86. services-pulp_python-client/models/object_roles_response.py +96 -0
  87. services-pulp_python-client/models/package_metadata_response.py +109 -0
  88. services-pulp_python-client/models/package_types_enum.py +44 -0
  89. services-pulp_python-client/models/package_upload_task_response.py +103 -0
  90. services-pulp_python-client/models/paginated_repository_version_response_list.py +112 -0
  91. services-pulp_python-client/models/paginatedpython_python_distribution_response_list.py +112 -0
  92. services-pulp_python-client/models/paginatedpython_python_package_content_response_list.py +112 -0
  93. services-pulp_python-client/models/paginatedpython_python_publication_response_list.py +112 -0
  94. services-pulp_python-client/models/paginatedpython_python_remote_response_list.py +112 -0
  95. services-pulp_python-client/models/paginatedpython_python_repository_response_list.py +112 -0
  96. services-pulp_python-client/models/patchedpython_python_distribution.py +125 -0
  97. services-pulp_python-client/models/patchedpython_python_remote.py +219 -0
  98. services-pulp_python-client/models/patchedpython_python_repository.py +114 -0
  99. services-pulp_python-client/models/policy_enum.py +39 -0
  100. services-pulp_python-client/models/python_python_distribution.py +125 -0
  101. services-pulp_python-client/models/python_python_distribution_response.py +149 -0
  102. services-pulp_python-client/models/python_python_package_content_response.py +201 -0
  103. services-pulp_python-client/models/python_python_publication.py +90 -0
  104. services-pulp_python-client/models/python_python_publication_response.py +111 -0
  105. services-pulp_python-client/models/python_python_remote.py +219 -0
  106. services-pulp_python-client/models/python_python_remote_response.py +213 -0
  107. services-pulp_python-client/models/python_python_remote_response_hidden_fields_inner.py +90 -0
  108. services-pulp_python-client/models/python_python_repository.py +114 -0
  109. services-pulp_python-client/models/python_python_repository_response.py +139 -0
  110. services-pulp_python-client/models/repair.py +88 -0
  111. services-pulp_python-client/models/repository_add_remove_content.py +93 -0
  112. services-pulp_python-client/models/repository_sync_url.py +90 -0
  113. services-pulp_python-client/models/repository_version_response.py +121 -0
  114. services-pulp_python-client/models/set_label.py +103 -0
  115. services-pulp_python-client/models/set_label_response.py +103 -0
  116. services-pulp_python-client/models/summary_response.py +92 -0
  117. services-pulp_python-client/models/unset_label.py +96 -0
  118. services-pulp_python-client/models/unset_label_response.py +100 -0
  119. services-pulp_python-client/py.typed +0 -0
  120. services-pulp_python-client/rest.py +258 -0
@@ -0,0 +1,2 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
@@ -0,0 +1,14 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from crc-pulp_python-client.api.api_pypi_api import ApiPypiApi
5
+ from crc-pulp_python-client.api.api_pypi_legacy_api import ApiPypiLegacyApi
6
+ from crc-pulp_python-client.api.api_pypi_simple_api import ApiPypiSimpleApi
7
+ from crc-pulp_python-client.api.content_packages_api import ContentPackagesApi
8
+ from crc-pulp_python-client.api.distributions_pypi_api import DistributionsPypiApi
9
+ from crc-pulp_python-client.api.publications_pypi_api import PublicationsPypiApi
10
+ from crc-pulp_python-client.api.pypi_metadata_api import PypiMetadataApi
11
+ from crc-pulp_python-client.api.remotes_python_api import RemotesPythonApi
12
+ from crc-pulp_python-client.api.repositories_python_api import RepositoriesPythonApi
13
+ from crc-pulp_python-client.api.repositories_python_versions_api import RepositoriesPythonVersionsApi
14
+
@@ -0,0 +1,370 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ Fetch, Upload, Organize, and Distribute Software Packages
7
+
8
+ The version of the OpenAPI document: v3
9
+ Contact: pulp-list@redhat.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+ import warnings
16
+ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
17
+ from typing import Any, Dict, List, Optional, Tuple, Union
18
+ from typing_extensions import Annotated
19
+
20
+ from pydantic import Field, StrictStr
21
+ from typing import List, Optional
22
+ from typing_extensions import Annotated
23
+ from crc-pulp_python-client.models.summary_response import SummaryResponse
24
+
25
+ from crc-pulp_python-client.api_client import ApiClient, RequestSerialized
26
+ from crc-pulp_python-client.api_response import ApiResponse
27
+ from crc-pulp_python-client.rest import RESTResponseType
28
+
29
+
30
+ class ApiPypiApi:
31
+ """NOTE: This class is auto generated by OpenAPI Generator
32
+ Ref: https://openapi-generator.tech
33
+
34
+ Do not edit the class manually.
35
+ """
36
+
37
+ def __init__(self, api_client=None) -> None:
38
+ if api_client is None:
39
+ api_client = ApiClient.get_default()
40
+ self.api_client = api_client
41
+
42
+
43
+ @validate_call
44
+ def read(
45
+ self,
46
+ path: StrictStr,
47
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
48
+ fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
49
+ exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
50
+ pulp_domain: StrictStr = "default",
51
+ _request_timeout: Union[
52
+ None,
53
+ Annotated[StrictFloat, Field(gt=0)],
54
+ Tuple[
55
+ Annotated[StrictFloat, Field(gt=0)],
56
+ Annotated[StrictFloat, Field(gt=0)]
57
+ ]
58
+ ] = None,
59
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
60
+ _content_type: Optional[StrictStr] = None,
61
+ _headers: Optional[Dict[StrictStr, Any]] = None,
62
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
63
+ ) -> SummaryResponse:
64
+ """Get index summary
65
+
66
+ Gets package summary stats of index.
67
+
68
+ :param path: (required)
69
+ :type path: str
70
+ :param pulp_domain: (required)
71
+ :type pulp_domain: str
72
+ :param x_task_diagnostics: List of profilers to use on tasks.
73
+ :type x_task_diagnostics: List[str]
74
+ :param fields: A list of fields to include in the response.
75
+ :type fields: List[str]
76
+ :param exclude_fields: A list of fields to exclude from the response.
77
+ :type exclude_fields: List[str]
78
+ :param _request_timeout: timeout setting for this request. If one
79
+ number provided, it will be total request
80
+ timeout. It can also be a pair (tuple) of
81
+ (connection, read) timeouts.
82
+ :type _request_timeout: int, tuple(int, int), optional
83
+ :param _request_auth: set to override the auth_settings for an a single
84
+ request; this effectively ignores the
85
+ authentication in the spec for a single request.
86
+ :type _request_auth: dict, optional
87
+ :param _content_type: force content-type for the request.
88
+ :type _content_type: str, Optional
89
+ :param _headers: set to override the headers for a single
90
+ request; this effectively ignores the headers
91
+ in the spec for a single request.
92
+ :type _headers: dict, optional
93
+ :param _host_index: set to override the host_index for a single
94
+ request; this effectively ignores the host_index
95
+ in the spec for a single request.
96
+ :type _host_index: int, optional
97
+ :return: Returns the result object.
98
+ """ # noqa: E501
99
+
100
+ _param = self._read_serialize(
101
+ path=path,
102
+ pulp_domain=pulp_domain,
103
+ x_task_diagnostics=x_task_diagnostics,
104
+ fields=fields,
105
+ exclude_fields=exclude_fields,
106
+ _request_auth=_request_auth,
107
+ _content_type=_content_type,
108
+ _headers=_headers,
109
+ _host_index=_host_index
110
+ )
111
+
112
+ _response_types_map: Dict[str, Optional[str]] = {
113
+ '200': "SummaryResponse",
114
+ }
115
+ response_data = self.api_client.call_api(
116
+ *_param,
117
+ _request_timeout=_request_timeout
118
+ )
119
+ response_data.read()
120
+ return self.api_client.response_deserialize(
121
+ response_data=response_data,
122
+ response_types_map=_response_types_map,
123
+ ).data
124
+
125
+
126
+ @validate_call
127
+ def read_with_http_info(
128
+ self,
129
+ path: StrictStr,
130
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
131
+ fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
132
+ exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
133
+ pulp_domain: StrictStr = "default",
134
+ _request_timeout: Union[
135
+ None,
136
+ Annotated[StrictFloat, Field(gt=0)],
137
+ Tuple[
138
+ Annotated[StrictFloat, Field(gt=0)],
139
+ Annotated[StrictFloat, Field(gt=0)]
140
+ ]
141
+ ] = None,
142
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
143
+ _content_type: Optional[StrictStr] = None,
144
+ _headers: Optional[Dict[StrictStr, Any]] = None,
145
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
146
+ ) -> ApiResponse[SummaryResponse]:
147
+ """Get index summary
148
+
149
+ Gets package summary stats of index.
150
+
151
+ :param path: (required)
152
+ :type path: str
153
+ :param pulp_domain: (required)
154
+ :type pulp_domain: str
155
+ :param x_task_diagnostics: List of profilers to use on tasks.
156
+ :type x_task_diagnostics: List[str]
157
+ :param fields: A list of fields to include in the response.
158
+ :type fields: List[str]
159
+ :param exclude_fields: A list of fields to exclude from the response.
160
+ :type exclude_fields: List[str]
161
+ :param _request_timeout: timeout setting for this request. If one
162
+ number provided, it will be total request
163
+ timeout. It can also be a pair (tuple) of
164
+ (connection, read) timeouts.
165
+ :type _request_timeout: int, tuple(int, int), optional
166
+ :param _request_auth: set to override the auth_settings for an a single
167
+ request; this effectively ignores the
168
+ authentication in the spec for a single request.
169
+ :type _request_auth: dict, optional
170
+ :param _content_type: force content-type for the request.
171
+ :type _content_type: str, Optional
172
+ :param _headers: set to override the headers for a single
173
+ request; this effectively ignores the headers
174
+ in the spec for a single request.
175
+ :type _headers: dict, optional
176
+ :param _host_index: set to override the host_index for a single
177
+ request; this effectively ignores the host_index
178
+ in the spec for a single request.
179
+ :type _host_index: int, optional
180
+ :return: Returns the result object.
181
+ """ # noqa: E501
182
+
183
+ _param = self._read_serialize(
184
+ path=path,
185
+ pulp_domain=pulp_domain,
186
+ x_task_diagnostics=x_task_diagnostics,
187
+ fields=fields,
188
+ exclude_fields=exclude_fields,
189
+ _request_auth=_request_auth,
190
+ _content_type=_content_type,
191
+ _headers=_headers,
192
+ _host_index=_host_index
193
+ )
194
+
195
+ _response_types_map: Dict[str, Optional[str]] = {
196
+ '200': "SummaryResponse",
197
+ }
198
+ response_data = self.api_client.call_api(
199
+ *_param,
200
+ _request_timeout=_request_timeout
201
+ )
202
+ response_data.read()
203
+ return self.api_client.response_deserialize(
204
+ response_data=response_data,
205
+ response_types_map=_response_types_map,
206
+ )
207
+
208
+
209
+ @validate_call
210
+ def read_without_preload_content(
211
+ self,
212
+ path: StrictStr,
213
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
214
+ fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
215
+ exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
216
+ pulp_domain: StrictStr = "default",
217
+ _request_timeout: Union[
218
+ None,
219
+ Annotated[StrictFloat, Field(gt=0)],
220
+ Tuple[
221
+ Annotated[StrictFloat, Field(gt=0)],
222
+ Annotated[StrictFloat, Field(gt=0)]
223
+ ]
224
+ ] = None,
225
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
226
+ _content_type: Optional[StrictStr] = None,
227
+ _headers: Optional[Dict[StrictStr, Any]] = None,
228
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
229
+ ) -> RESTResponseType:
230
+ """Get index summary
231
+
232
+ Gets package summary stats of index.
233
+
234
+ :param path: (required)
235
+ :type path: str
236
+ :param pulp_domain: (required)
237
+ :type pulp_domain: str
238
+ :param x_task_diagnostics: List of profilers to use on tasks.
239
+ :type x_task_diagnostics: List[str]
240
+ :param fields: A list of fields to include in the response.
241
+ :type fields: List[str]
242
+ :param exclude_fields: A list of fields to exclude from the response.
243
+ :type exclude_fields: List[str]
244
+ :param _request_timeout: timeout setting for this request. If one
245
+ number provided, it will be total request
246
+ timeout. It can also be a pair (tuple) of
247
+ (connection, read) timeouts.
248
+ :type _request_timeout: int, tuple(int, int), optional
249
+ :param _request_auth: set to override the auth_settings for an a single
250
+ request; this effectively ignores the
251
+ authentication in the spec for a single request.
252
+ :type _request_auth: dict, optional
253
+ :param _content_type: force content-type for the request.
254
+ :type _content_type: str, Optional
255
+ :param _headers: set to override the headers for a single
256
+ request; this effectively ignores the headers
257
+ in the spec for a single request.
258
+ :type _headers: dict, optional
259
+ :param _host_index: set to override the host_index for a single
260
+ request; this effectively ignores the host_index
261
+ in the spec for a single request.
262
+ :type _host_index: int, optional
263
+ :return: Returns the result object.
264
+ """ # noqa: E501
265
+
266
+ _param = self._read_serialize(
267
+ path=path,
268
+ pulp_domain=pulp_domain,
269
+ x_task_diagnostics=x_task_diagnostics,
270
+ fields=fields,
271
+ exclude_fields=exclude_fields,
272
+ _request_auth=_request_auth,
273
+ _content_type=_content_type,
274
+ _headers=_headers,
275
+ _host_index=_host_index
276
+ )
277
+
278
+ _response_types_map: Dict[str, Optional[str]] = {
279
+ '200': "SummaryResponse",
280
+ }
281
+ response_data = self.api_client.call_api(
282
+ *_param,
283
+ _request_timeout=_request_timeout
284
+ )
285
+ return response_data.response
286
+
287
+
288
+ def _read_serialize(
289
+ self,
290
+ path,
291
+ pulp_domain,
292
+ x_task_diagnostics,
293
+ fields,
294
+ exclude_fields,
295
+ _request_auth,
296
+ _content_type,
297
+ _headers,
298
+ _host_index,
299
+ ) -> RequestSerialized:
300
+
301
+ _host = None
302
+
303
+ _collection_formats: Dict[str, str] = {
304
+ 'X-Task-Diagnostics': 'csv',
305
+ 'fields': 'multi',
306
+ 'exclude_fields': 'multi',
307
+ }
308
+
309
+ _path_params: Dict[str, str] = {}
310
+ _query_params: List[Tuple[str, str]] = []
311
+ _header_params: Dict[str, Optional[str]] = _headers or {}
312
+ _form_params: List[Tuple[str, str]] = []
313
+ _files: Dict[
314
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
315
+ ] = {}
316
+ _body_params: Optional[bytes] = None
317
+
318
+ # process the path parameters
319
+ if path is not None:
320
+ _path_params['path'] = path
321
+ if pulp_domain is not None:
322
+ _path_params['pulp_domain'] = pulp_domain
323
+ # process the query parameters
324
+ if fields is not None:
325
+
326
+ _query_params.append(('fields', fields))
327
+
328
+ if exclude_fields is not None:
329
+
330
+ _query_params.append(('exclude_fields', exclude_fields))
331
+
332
+ # process the header parameters
333
+ if x_task_diagnostics is not None:
334
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
335
+ # process the form parameters
336
+ # process the body parameter
337
+
338
+
339
+ # set the HTTP header `Accept`
340
+ if 'Accept' not in _header_params:
341
+ _header_params['Accept'] = self.api_client.select_header_accept(
342
+ [
343
+ 'application/json'
344
+ ]
345
+ )
346
+
347
+
348
+ # authentication setting
349
+ _auth_settings: List[str] = [
350
+ 'json_header_remote_authentication',
351
+ 'basicAuth',
352
+ 'cookieAuth'
353
+ ]
354
+
355
+ return self.api_client.param_serialize(
356
+ method='GET',
357
+ resource_path='/api/pulp/pypi/{pulp_domain}/{path}/',
358
+ path_params=_path_params,
359
+ query_params=_query_params,
360
+ header_params=_header_params,
361
+ body=_body_params,
362
+ post_params=_form_params,
363
+ files=_files,
364
+ auth_settings=_auth_settings,
365
+ collection_formats=_collection_formats,
366
+ _host=_host,
367
+ _request_auth=_request_auth
368
+ )
369
+
370
+