pulp_maven_client 0.2.0 → 0.3.0

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 (162) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/build/lib/pulpcore/__init__.py +2 -0
  4. data/build/lib/pulpcore/client/__init__.py +2 -0
  5. data/build/lib/pulpcore/client/pulp_maven/__init__.py +58 -0
  6. data/build/lib/pulpcore/client/pulp_maven/api/__init__.py +10 -0
  7. data/build/lib/pulpcore/client/pulp_maven/api/content_artifact_api.py +445 -0
  8. data/build/lib/pulpcore/client/pulp_maven/api/distributions_maven_api.py +830 -0
  9. data/build/lib/pulpcore/client/pulp_maven/api/remotes_maven_api.py +840 -0
  10. data/build/lib/pulpcore/client/pulp_maven/api/repositories_maven_api.py +809 -0
  11. data/build/lib/pulpcore/client/pulp_maven/api/repositories_maven_versions_api.py +614 -0
  12. data/build/lib/pulpcore/client/pulp_maven/api_client.py +667 -0
  13. data/build/lib/pulpcore/client/pulp_maven/configuration.py +427 -0
  14. data/build/lib/pulpcore/client/pulp_maven/exceptions.py +121 -0
  15. data/build/lib/pulpcore/client/pulp_maven/models/__init__.py +39 -0
  16. data/build/lib/pulpcore/client/pulp_maven/models/async_operation_response.py +124 -0
  17. data/build/lib/pulpcore/client/pulp_maven/models/content_summary.py +176 -0
  18. data/build/lib/pulpcore/client/pulp_maven/models/content_summary_response.py +176 -0
  19. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_artifact.py +153 -0
  20. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_artifact_response.py +290 -0
  21. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_distribution.py +260 -0
  22. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_distribution_response.py +342 -0
  23. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_remote.py +657 -0
  24. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_remote_response.py +604 -0
  25. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_repository.py +202 -0
  26. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_repository_response.py +308 -0
  27. data/build/lib/pulpcore/client/pulp_maven/models/paginated_repository_version_response_list.py +197 -0
  28. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_artifact_response_list.py +197 -0
  29. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_distribution_response_list.py +197 -0
  30. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_remote_response_list.py +197 -0
  31. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_repository_response_list.py +197 -0
  32. data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_distribution.py +258 -0
  33. data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_remote.py +655 -0
  34. data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_repository.py +201 -0
  35. data/build/lib/pulpcore/client/pulp_maven/models/policy_enum.py +101 -0
  36. data/build/lib/pulpcore/client/pulp_maven/models/repository_version.py +123 -0
  37. data/build/lib/pulpcore/client/pulp_maven/models/repository_version_response.py +231 -0
  38. data/build/lib/pulpcore/client/pulp_maven/rest.py +292 -0
  39. data/dist/pulp_maven-client-0.3.0.tar.gz +0 -0
  40. data/dist/pulp_maven_client-0.3.0-py3-none-any.whl +0 -0
  41. data/docs/ContentArtifactApi.md +14 -14
  42. data/docs/ContentSummary.md +3 -3
  43. data/docs/ContentSummaryResponse.md +3 -3
  44. data/docs/DistributionsMavenApi.md +20 -12
  45. data/docs/MavenMavenDistribution.md +4 -0
  46. data/docs/MavenMavenDistributionResponse.md +4 -0
  47. data/docs/MavenMavenRemote.md +12 -2
  48. data/docs/MavenMavenRemoteResponse.md +8 -8
  49. data/docs/MavenMavenRepository.md +3 -1
  50. data/docs/MavenMavenRepositoryResponse.md +2 -0
  51. data/docs/PatchedmavenMavenDistribution.md +4 -0
  52. data/docs/PatchedmavenMavenRemote.md +12 -2
  53. data/docs/PatchedmavenMavenRepository.md +3 -1
  54. data/docs/RemotesMavenApi.md +24 -16
  55. data/docs/RepositoriesMavenApi.md +12 -4
  56. data/docs/RepositoriesMavenVersionsApi.md +28 -28
  57. data/lib/pulp_maven_client/api/content_artifact_api.rb +14 -14
  58. data/lib/pulp_maven_client/api/distributions_maven_api.rb +26 -14
  59. data/lib/pulp_maven_client/api/remotes_maven_api.rb +30 -18
  60. data/lib/pulp_maven_client/api/repositories_maven_api.rb +17 -5
  61. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +30 -30
  62. data/lib/pulp_maven_client/models/content_summary.rb +12 -6
  63. data/lib/pulp_maven_client/models/content_summary_response.rb +12 -6
  64. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +21 -1
  65. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +21 -1
  66. data/lib/pulp_maven_client/models/maven_maven_remote.rb +60 -6
  67. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +35 -36
  68. data/lib/pulp_maven_client/models/maven_maven_repository.rb +10 -1
  69. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +10 -1
  70. data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +21 -1
  71. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +60 -6
  72. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +10 -1
  73. data/lib/pulp_maven_client/version.rb +1 -1
  74. data/pulp_maven_client.egg-info/PKG-INFO +15 -0
  75. data/pulp_maven_client.egg-info/SOURCES.txt +71 -0
  76. data/pulp_maven_client.egg-info/dependency_links.txt +1 -0
  77. data/pulp_maven_client.egg-info/requires.txt +4 -0
  78. data/pulp_maven_client.egg-info/top_level.txt +1 -0
  79. data/pulpcore/__init__.py +2 -0
  80. data/pulpcore/client/__init__.py +2 -0
  81. data/pulpcore/client/pulp_maven/__init__.py +58 -0
  82. data/pulpcore/client/pulp_maven/api/__init__.py +10 -0
  83. data/pulpcore/client/pulp_maven/api/content_artifact_api.py +445 -0
  84. data/pulpcore/client/pulp_maven/api/distributions_maven_api.py +830 -0
  85. data/pulpcore/client/pulp_maven/api/remotes_maven_api.py +840 -0
  86. data/pulpcore/client/pulp_maven/api/repositories_maven_api.py +809 -0
  87. data/pulpcore/client/pulp_maven/api/repositories_maven_versions_api.py +614 -0
  88. data/pulpcore/client/pulp_maven/api_client.py +667 -0
  89. data/pulpcore/client/pulp_maven/configuration.py +427 -0
  90. data/pulpcore/client/pulp_maven/exceptions.py +121 -0
  91. data/pulpcore/client/pulp_maven/models/__init__.py +39 -0
  92. data/pulpcore/client/pulp_maven/models/async_operation_response.py +124 -0
  93. data/pulpcore/client/pulp_maven/models/content_summary.py +176 -0
  94. data/pulpcore/client/pulp_maven/models/content_summary_response.py +176 -0
  95. data/pulpcore/client/pulp_maven/models/maven_maven_artifact.py +153 -0
  96. data/pulpcore/client/pulp_maven/models/maven_maven_artifact_response.py +290 -0
  97. data/pulpcore/client/pulp_maven/models/maven_maven_distribution.py +260 -0
  98. data/pulpcore/client/pulp_maven/models/maven_maven_distribution_response.py +342 -0
  99. data/pulpcore/client/pulp_maven/models/maven_maven_remote.py +657 -0
  100. data/pulpcore/client/pulp_maven/models/maven_maven_remote_response.py +604 -0
  101. data/pulpcore/client/pulp_maven/models/maven_maven_repository.py +202 -0
  102. data/pulpcore/client/pulp_maven/models/maven_maven_repository_response.py +308 -0
  103. data/pulpcore/client/pulp_maven/models/paginated_repository_version_response_list.py +197 -0
  104. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_artifact_response_list.py +197 -0
  105. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_distribution_response_list.py +197 -0
  106. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_remote_response_list.py +197 -0
  107. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_repository_response_list.py +197 -0
  108. data/pulpcore/client/pulp_maven/models/patchedmaven_maven_distribution.py +258 -0
  109. data/pulpcore/client/pulp_maven/models/patchedmaven_maven_remote.py +655 -0
  110. data/pulpcore/client/pulp_maven/models/patchedmaven_maven_repository.py +201 -0
  111. data/pulpcore/client/pulp_maven/models/policy_enum.py +101 -0
  112. data/pulpcore/client/pulp_maven/models/repository_version.py +123 -0
  113. data/pulpcore/client/pulp_maven/models/repository_version_response.py +231 -0
  114. data/pulpcore/client/pulp_maven/rest.py +292 -0
  115. data/requirements.txt +6 -0
  116. data/setup.cfg +2 -0
  117. data/setup.py +42 -0
  118. data/spec/api/content_artifact_api_spec.rb +7 -7
  119. data/spec/api/distributions_maven_api_spec.rb +10 -6
  120. data/spec/api/remotes_maven_api_spec.rb +12 -8
  121. data/spec/api/repositories_maven_api_spec.rb +6 -2
  122. data/spec/api/repositories_maven_versions_api_spec.rb +14 -14
  123. data/spec/models/maven_maven_distribution_response_spec.rb +12 -0
  124. data/spec/models/maven_maven_distribution_spec.rb +12 -0
  125. data/spec/models/maven_maven_remote_response_spec.rb +12 -12
  126. data/spec/models/maven_maven_remote_spec.rb +30 -0
  127. data/spec/models/maven_maven_repository_response_spec.rb +6 -0
  128. data/spec/models/maven_maven_repository_spec.rb +6 -0
  129. data/spec/models/patchedmaven_maven_distribution_spec.rb +12 -0
  130. data/spec/models/patchedmaven_maven_remote_spec.rb +30 -0
  131. data/spec/models/patchedmaven_maven_repository_spec.rb +6 -0
  132. data/test/__init__.py +0 -0
  133. data/test/test_async_operation_response.py +54 -0
  134. data/test/test_content_artifact_api.py +55 -0
  135. data/test/test_content_summary.py +70 -0
  136. data/test/test_content_summary_response.py +70 -0
  137. data/test/test_distributions_maven_api.py +76 -0
  138. data/test/test_maven_maven_artifact.py +56 -0
  139. data/test/test_maven_maven_artifact_response.py +60 -0
  140. data/test/test_maven_maven_distribution.py +60 -0
  141. data/test/test_maven_maven_distribution_response.py +63 -0
  142. data/test/test_maven_maven_remote.py +76 -0
  143. data/test/test_maven_maven_remote_response.py +74 -0
  144. data/test/test_maven_maven_repository.py +57 -0
  145. data/test/test_maven_maven_repository_response.py +61 -0
  146. data/test/test_paginated_repository_version_response_list.py +63 -0
  147. data/test/test_paginatedmaven_maven_artifact_response_list.py +65 -0
  148. data/test/test_paginatedmaven_maven_distribution_response_list.py +67 -0
  149. data/test/test_paginatedmaven_maven_remote_response_list.py +78 -0
  150. data/test/test_paginatedmaven_maven_repository_response_list.py +66 -0
  151. data/test/test_patchedmaven_maven_distribution.py +58 -0
  152. data/test/test_patchedmaven_maven_remote.py +74 -0
  153. data/test/test_patchedmaven_maven_repository.py +56 -0
  154. data/test/test_policy_enum.py +52 -0
  155. data/test/test_remotes_maven_api.py +76 -0
  156. data/test/test_repositories_maven_api.py +76 -0
  157. data/test/test_repositories_maven_versions_api.py +61 -0
  158. data/test/test_repository_version.py +53 -0
  159. data/test/test_repository_version_response.py +57 -0
  160. data/test-requirements.txt +3 -0
  161. data/tox.ini +9 -0
  162. metadata +133 -21
@@ -0,0 +1,840 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
7
+
8
+ The version of the OpenAPI document: v3
9
+ Contact: pulp-list@redhat.com
10
+ Generated by: https://openapi-generator.tech
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import re # noqa: F401
17
+
18
+ # python 2 and python 3 compatibility library
19
+ import six
20
+
21
+ from pulpcore.client.pulp_maven.api_client import ApiClient
22
+ from pulpcore.client.pulp_maven.exceptions import ( # noqa: F401
23
+ ApiTypeError,
24
+ ApiValueError
25
+ )
26
+
27
+
28
+ class RemotesMavenApi(object):
29
+ """NOTE: This class is auto generated by OpenAPI Generator
30
+ Ref: https://openapi-generator.tech
31
+
32
+ Do not edit the class manually.
33
+ """
34
+
35
+ def __init__(self, api_client=None):
36
+ if api_client is None:
37
+ api_client = ApiClient()
38
+ self.api_client = api_client
39
+
40
+ def create(self, maven_maven_remote, **kwargs): # noqa: E501
41
+ """Create a maven remote # noqa: E501
42
+
43
+ A ViewSet for MavenRemote. # noqa: E501
44
+ This method makes a synchronous HTTP request by default. To make an
45
+ asynchronous HTTP request, please pass async_req=True
46
+ >>> thread = api.create(maven_maven_remote, async_req=True)
47
+ >>> result = thread.get()
48
+
49
+ :param async_req bool: execute request asynchronously
50
+ :param MavenMavenRemote maven_maven_remote: (required)
51
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
52
+ be returned without reading/decoding response
53
+ data. Default is True.
54
+ :param _request_timeout: timeout setting for this request. If one
55
+ number provided, it will be total request
56
+ timeout. It can also be a pair (tuple) of
57
+ (connection, read) timeouts.
58
+ :return: MavenMavenRemoteResponse
59
+ If the method is called asynchronously,
60
+ returns the request thread.
61
+ """
62
+ kwargs['_return_http_data_only'] = True
63
+ return self.create_with_http_info(maven_maven_remote, **kwargs) # noqa: E501
64
+
65
+ def create_with_http_info(self, maven_maven_remote, **kwargs): # noqa: E501
66
+ """Create a maven remote # noqa: E501
67
+
68
+ A ViewSet for MavenRemote. # noqa: E501
69
+ This method makes a synchronous HTTP request by default. To make an
70
+ asynchronous HTTP request, please pass async_req=True
71
+ >>> thread = api.create_with_http_info(maven_maven_remote, async_req=True)
72
+ >>> result = thread.get()
73
+
74
+ :param async_req bool: execute request asynchronously
75
+ :param MavenMavenRemote maven_maven_remote: (required)
76
+ :param _return_http_data_only: response data without head status code
77
+ and headers
78
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
79
+ be returned without reading/decoding response
80
+ data. Default is True.
81
+ :param _request_timeout: timeout setting for this request. If one
82
+ number provided, it will be total request
83
+ timeout. It can also be a pair (tuple) of
84
+ (connection, read) timeouts.
85
+ :return: tuple(MavenMavenRemoteResponse, status_code(int), headers(HTTPHeaderDict))
86
+ If the method is called asynchronously,
87
+ returns the request thread.
88
+ """
89
+
90
+ local_var_params = locals()
91
+
92
+ all_params = [
93
+ 'maven_maven_remote'
94
+ ]
95
+ all_params.extend(
96
+ [
97
+ 'async_req',
98
+ '_return_http_data_only',
99
+ '_preload_content',
100
+ '_request_timeout'
101
+ ]
102
+ )
103
+
104
+ for key, val in six.iteritems(local_var_params['kwargs']):
105
+ if key not in all_params:
106
+ raise ApiTypeError(
107
+ "Got an unexpected keyword argument '%s'"
108
+ " to method create" % key
109
+ )
110
+ local_var_params[key] = val
111
+ del local_var_params['kwargs']
112
+ # verify the required parameter 'maven_maven_remote' is set
113
+ if self.api_client.client_side_validation and ('maven_maven_remote' not in local_var_params or # noqa: E501
114
+ local_var_params['maven_maven_remote'] is None): # noqa: E501
115
+ raise ApiValueError("Missing the required parameter `maven_maven_remote` when calling `create`") # noqa: E501
116
+
117
+ collection_formats = {}
118
+
119
+ path_params = {}
120
+
121
+ query_params = []
122
+
123
+ header_params = {}
124
+
125
+ form_params = []
126
+ local_var_files = {}
127
+
128
+ body_params = None
129
+ if 'maven_maven_remote' in local_var_params:
130
+ body_params = local_var_params['maven_maven_remote']
131
+ # HTTP header `Accept`
132
+ header_params['Accept'] = self.api_client.select_header_accept(
133
+ ['application/json']) # noqa: E501
134
+
135
+ # HTTP header `Content-Type`
136
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
137
+ ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data']) # noqa: E501
138
+
139
+ # Authentication setting
140
+ auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
141
+
142
+ return self.api_client.call_api(
143
+ '/pulp/api/v3/remotes/maven/maven/', 'POST',
144
+ path_params,
145
+ query_params,
146
+ header_params,
147
+ body=body_params,
148
+ post_params=form_params,
149
+ files=local_var_files,
150
+ response_type='MavenMavenRemoteResponse', # noqa: E501
151
+ auth_settings=auth_settings,
152
+ async_req=local_var_params.get('async_req'),
153
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
154
+ _preload_content=local_var_params.get('_preload_content', True),
155
+ _request_timeout=local_var_params.get('_request_timeout'),
156
+ collection_formats=collection_formats)
157
+
158
+ def delete(self, maven_maven_remote_href, **kwargs): # noqa: E501
159
+ """Delete a maven remote # noqa: E501
160
+
161
+ Trigger an asynchronous delete task # noqa: E501
162
+ This method makes a synchronous HTTP request by default. To make an
163
+ asynchronous HTTP request, please pass async_req=True
164
+ >>> thread = api.delete(maven_maven_remote_href, async_req=True)
165
+ >>> result = thread.get()
166
+
167
+ :param async_req bool: execute request asynchronously
168
+ :param str maven_maven_remote_href: (required)
169
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
170
+ be returned without reading/decoding response
171
+ data. Default is True.
172
+ :param _request_timeout: timeout setting for this request. If one
173
+ number provided, it will be total request
174
+ timeout. It can also be a pair (tuple) of
175
+ (connection, read) timeouts.
176
+ :return: AsyncOperationResponse
177
+ If the method is called asynchronously,
178
+ returns the request thread.
179
+ """
180
+ kwargs['_return_http_data_only'] = True
181
+ return self.delete_with_http_info(maven_maven_remote_href, **kwargs) # noqa: E501
182
+
183
+ def delete_with_http_info(self, maven_maven_remote_href, **kwargs): # noqa: E501
184
+ """Delete a maven remote # noqa: E501
185
+
186
+ Trigger an asynchronous delete task # noqa: E501
187
+ This method makes a synchronous HTTP request by default. To make an
188
+ asynchronous HTTP request, please pass async_req=True
189
+ >>> thread = api.delete_with_http_info(maven_maven_remote_href, async_req=True)
190
+ >>> result = thread.get()
191
+
192
+ :param async_req bool: execute request asynchronously
193
+ :param str maven_maven_remote_href: (required)
194
+ :param _return_http_data_only: response data without head status code
195
+ and headers
196
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
197
+ be returned without reading/decoding response
198
+ data. Default is True.
199
+ :param _request_timeout: timeout setting for this request. If one
200
+ number provided, it will be total request
201
+ timeout. It can also be a pair (tuple) of
202
+ (connection, read) timeouts.
203
+ :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict))
204
+ If the method is called asynchronously,
205
+ returns the request thread.
206
+ """
207
+
208
+ local_var_params = locals()
209
+
210
+ all_params = [
211
+ 'maven_maven_remote_href'
212
+ ]
213
+ all_params.extend(
214
+ [
215
+ 'async_req',
216
+ '_return_http_data_only',
217
+ '_preload_content',
218
+ '_request_timeout'
219
+ ]
220
+ )
221
+
222
+ for key, val in six.iteritems(local_var_params['kwargs']):
223
+ if key not in all_params:
224
+ raise ApiTypeError(
225
+ "Got an unexpected keyword argument '%s'"
226
+ " to method delete" % key
227
+ )
228
+ local_var_params[key] = val
229
+ del local_var_params['kwargs']
230
+ # verify the required parameter 'maven_maven_remote_href' is set
231
+ if self.api_client.client_side_validation and ('maven_maven_remote_href' not in local_var_params or # noqa: E501
232
+ local_var_params['maven_maven_remote_href'] is None): # noqa: E501
233
+ raise ApiValueError("Missing the required parameter `maven_maven_remote_href` when calling `delete`") # noqa: E501
234
+
235
+ collection_formats = {}
236
+
237
+ path_params = {}
238
+ if 'maven_maven_remote_href' in local_var_params:
239
+ path_params['maven_maven_remote_href'] = local_var_params['maven_maven_remote_href'] # noqa: E501
240
+
241
+ query_params = []
242
+
243
+ header_params = {}
244
+
245
+ form_params = []
246
+ local_var_files = {}
247
+
248
+ body_params = None
249
+ # HTTP header `Accept`
250
+ header_params['Accept'] = self.api_client.select_header_accept(
251
+ ['application/json']) # noqa: E501
252
+
253
+ # Authentication setting
254
+ auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
255
+
256
+ return self.api_client.call_api(
257
+ '{maven_maven_remote_href}', 'DELETE',
258
+ path_params,
259
+ query_params,
260
+ header_params,
261
+ body=body_params,
262
+ post_params=form_params,
263
+ files=local_var_files,
264
+ response_type='AsyncOperationResponse', # noqa: E501
265
+ auth_settings=auth_settings,
266
+ async_req=local_var_params.get('async_req'),
267
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
268
+ _preload_content=local_var_params.get('_preload_content', True),
269
+ _request_timeout=local_var_params.get('_request_timeout'),
270
+ collection_formats=collection_formats)
271
+
272
+ def list(self, **kwargs): # noqa: E501
273
+ """List maven remotes # noqa: E501
274
+
275
+ A ViewSet for MavenRemote. # noqa: E501
276
+ This method makes a synchronous HTTP request by default. To make an
277
+ asynchronous HTTP request, please pass async_req=True
278
+ >>> thread = api.list(async_req=True)
279
+ >>> result = thread.get()
280
+
281
+ :param async_req bool: execute request asynchronously
282
+ :param int limit: Number of results to return per page.
283
+ :param str name:
284
+ :param str name__contains: Filter results where name contains value
285
+ :param str name__icontains: Filter results where name contains value
286
+ :param list[str] name__in: Filter results where name is in a comma-separated list of values
287
+ :param str name__startswith: Filter results where name starts with value
288
+ :param int offset: The initial index from which to return the results.
289
+ :param str ordering: Which field to use when ordering the results.
290
+ :param str pulp_label_select: Filter labels by search string
291
+ :param datetime pulp_last_updated: ISO 8601 formatted dates are supported
292
+ :param datetime pulp_last_updated__gt: Filter results where pulp_last_updated is greater than value
293
+ :param datetime pulp_last_updated__gte: Filter results where pulp_last_updated is greater than or equal to value
294
+ :param datetime pulp_last_updated__lt: Filter results where pulp_last_updated is less than value
295
+ :param datetime pulp_last_updated__lte: Filter results where pulp_last_updated is less than or equal to value
296
+ :param list[datetime] pulp_last_updated__range: Filter results where pulp_last_updated is between two comma separated values
297
+ :param str fields: A list of fields to include in the response.
298
+ :param str exclude_fields: A list of fields to exclude from the response.
299
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
300
+ be returned without reading/decoding response
301
+ data. Default is True.
302
+ :param _request_timeout: timeout setting for this request. If one
303
+ number provided, it will be total request
304
+ timeout. It can also be a pair (tuple) of
305
+ (connection, read) timeouts.
306
+ :return: PaginatedmavenMavenRemoteResponseList
307
+ If the method is called asynchronously,
308
+ returns the request thread.
309
+ """
310
+ kwargs['_return_http_data_only'] = True
311
+ return self.list_with_http_info(**kwargs) # noqa: E501
312
+
313
+ def list_with_http_info(self, **kwargs): # noqa: E501
314
+ """List maven remotes # noqa: E501
315
+
316
+ A ViewSet for MavenRemote. # noqa: E501
317
+ This method makes a synchronous HTTP request by default. To make an
318
+ asynchronous HTTP request, please pass async_req=True
319
+ >>> thread = api.list_with_http_info(async_req=True)
320
+ >>> result = thread.get()
321
+
322
+ :param async_req bool: execute request asynchronously
323
+ :param int limit: Number of results to return per page.
324
+ :param str name:
325
+ :param str name__contains: Filter results where name contains value
326
+ :param str name__icontains: Filter results where name contains value
327
+ :param list[str] name__in: Filter results where name is in a comma-separated list of values
328
+ :param str name__startswith: Filter results where name starts with value
329
+ :param int offset: The initial index from which to return the results.
330
+ :param str ordering: Which field to use when ordering the results.
331
+ :param str pulp_label_select: Filter labels by search string
332
+ :param datetime pulp_last_updated: ISO 8601 formatted dates are supported
333
+ :param datetime pulp_last_updated__gt: Filter results where pulp_last_updated is greater than value
334
+ :param datetime pulp_last_updated__gte: Filter results where pulp_last_updated is greater than or equal to value
335
+ :param datetime pulp_last_updated__lt: Filter results where pulp_last_updated is less than value
336
+ :param datetime pulp_last_updated__lte: Filter results where pulp_last_updated is less than or equal to value
337
+ :param list[datetime] pulp_last_updated__range: Filter results where pulp_last_updated is between two comma separated values
338
+ :param str fields: A list of fields to include in the response.
339
+ :param str exclude_fields: A list of fields to exclude from the response.
340
+ :param _return_http_data_only: response data without head status code
341
+ and headers
342
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
343
+ be returned without reading/decoding response
344
+ data. Default is True.
345
+ :param _request_timeout: timeout setting for this request. If one
346
+ number provided, it will be total request
347
+ timeout. It can also be a pair (tuple) of
348
+ (connection, read) timeouts.
349
+ :return: tuple(PaginatedmavenMavenRemoteResponseList, status_code(int), headers(HTTPHeaderDict))
350
+ If the method is called asynchronously,
351
+ returns the request thread.
352
+ """
353
+
354
+ local_var_params = locals()
355
+
356
+ all_params = [
357
+ 'limit',
358
+ 'name',
359
+ 'name__contains',
360
+ 'name__icontains',
361
+ 'name__in',
362
+ 'name__startswith',
363
+ 'offset',
364
+ 'ordering',
365
+ 'pulp_label_select',
366
+ 'pulp_last_updated',
367
+ 'pulp_last_updated__gt',
368
+ 'pulp_last_updated__gte',
369
+ 'pulp_last_updated__lt',
370
+ 'pulp_last_updated__lte',
371
+ 'pulp_last_updated__range',
372
+ 'fields',
373
+ 'exclude_fields'
374
+ ]
375
+ all_params.extend(
376
+ [
377
+ 'async_req',
378
+ '_return_http_data_only',
379
+ '_preload_content',
380
+ '_request_timeout'
381
+ ]
382
+ )
383
+
384
+ for key, val in six.iteritems(local_var_params['kwargs']):
385
+ if key not in all_params:
386
+ raise ApiTypeError(
387
+ "Got an unexpected keyword argument '%s'"
388
+ " to method list" % key
389
+ )
390
+ local_var_params[key] = val
391
+ del local_var_params['kwargs']
392
+
393
+ collection_formats = {}
394
+
395
+ path_params = {}
396
+
397
+ query_params = []
398
+ if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501
399
+ query_params.append(('limit', local_var_params['limit'])) # noqa: E501
400
+ if 'name' in local_var_params and local_var_params['name'] is not None: # noqa: E501
401
+ query_params.append(('name', local_var_params['name'])) # noqa: E501
402
+ if 'name__contains' in local_var_params and local_var_params['name__contains'] is not None: # noqa: E501
403
+ query_params.append(('name__contains', local_var_params['name__contains'])) # noqa: E501
404
+ if 'name__icontains' in local_var_params and local_var_params['name__icontains'] is not None: # noqa: E501
405
+ query_params.append(('name__icontains', local_var_params['name__icontains'])) # noqa: E501
406
+ if 'name__in' in local_var_params and local_var_params['name__in'] is not None: # noqa: E501
407
+ query_params.append(('name__in', local_var_params['name__in'])) # noqa: E501
408
+ collection_formats['name__in'] = 'csv' # noqa: E501
409
+ if 'name__startswith' in local_var_params and local_var_params['name__startswith'] is not None: # noqa: E501
410
+ query_params.append(('name__startswith', local_var_params['name__startswith'])) # noqa: E501
411
+ if 'offset' in local_var_params and local_var_params['offset'] is not None: # noqa: E501
412
+ query_params.append(('offset', local_var_params['offset'])) # noqa: E501
413
+ if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
414
+ query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
415
+ if 'pulp_label_select' in local_var_params and local_var_params['pulp_label_select'] is not None: # noqa: E501
416
+ query_params.append(('pulp_label_select', local_var_params['pulp_label_select'])) # noqa: E501
417
+ if 'pulp_last_updated' in local_var_params and local_var_params['pulp_last_updated'] is not None: # noqa: E501
418
+ query_params.append(('pulp_last_updated', local_var_params['pulp_last_updated'])) # noqa: E501
419
+ if 'pulp_last_updated__gt' in local_var_params and local_var_params['pulp_last_updated__gt'] is not None: # noqa: E501
420
+ query_params.append(('pulp_last_updated__gt', local_var_params['pulp_last_updated__gt'])) # noqa: E501
421
+ if 'pulp_last_updated__gte' in local_var_params and local_var_params['pulp_last_updated__gte'] is not None: # noqa: E501
422
+ query_params.append(('pulp_last_updated__gte', local_var_params['pulp_last_updated__gte'])) # noqa: E501
423
+ if 'pulp_last_updated__lt' in local_var_params and local_var_params['pulp_last_updated__lt'] is not None: # noqa: E501
424
+ query_params.append(('pulp_last_updated__lt', local_var_params['pulp_last_updated__lt'])) # noqa: E501
425
+ if 'pulp_last_updated__lte' in local_var_params and local_var_params['pulp_last_updated__lte'] is not None: # noqa: E501
426
+ query_params.append(('pulp_last_updated__lte', local_var_params['pulp_last_updated__lte'])) # noqa: E501
427
+ if 'pulp_last_updated__range' in local_var_params and local_var_params['pulp_last_updated__range'] is not None: # noqa: E501
428
+ query_params.append(('pulp_last_updated__range', local_var_params['pulp_last_updated__range'])) # noqa: E501
429
+ collection_formats['pulp_last_updated__range'] = 'csv' # noqa: E501
430
+ if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501
431
+ query_params.append(('fields', local_var_params['fields'])) # noqa: E501
432
+ if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501
433
+ query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501
434
+
435
+ header_params = {}
436
+
437
+ form_params = []
438
+ local_var_files = {}
439
+
440
+ body_params = None
441
+ # HTTP header `Accept`
442
+ header_params['Accept'] = self.api_client.select_header_accept(
443
+ ['application/json']) # noqa: E501
444
+
445
+ # Authentication setting
446
+ auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
447
+
448
+ return self.api_client.call_api(
449
+ '/pulp/api/v3/remotes/maven/maven/', 'GET',
450
+ path_params,
451
+ query_params,
452
+ header_params,
453
+ body=body_params,
454
+ post_params=form_params,
455
+ files=local_var_files,
456
+ response_type='PaginatedmavenMavenRemoteResponseList', # noqa: E501
457
+ auth_settings=auth_settings,
458
+ async_req=local_var_params.get('async_req'),
459
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
460
+ _preload_content=local_var_params.get('_preload_content', True),
461
+ _request_timeout=local_var_params.get('_request_timeout'),
462
+ collection_formats=collection_formats)
463
+
464
+ def partial_update(self, maven_maven_remote_href, patchedmaven_maven_remote, **kwargs): # noqa: E501
465
+ """Update a maven remote # noqa: E501
466
+
467
+ Trigger an asynchronous partial update task # noqa: E501
468
+ This method makes a synchronous HTTP request by default. To make an
469
+ asynchronous HTTP request, please pass async_req=True
470
+ >>> thread = api.partial_update(maven_maven_remote_href, patchedmaven_maven_remote, async_req=True)
471
+ >>> result = thread.get()
472
+
473
+ :param async_req bool: execute request asynchronously
474
+ :param str maven_maven_remote_href: (required)
475
+ :param PatchedmavenMavenRemote patchedmaven_maven_remote: (required)
476
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
477
+ be returned without reading/decoding response
478
+ data. Default is True.
479
+ :param _request_timeout: timeout setting for this request. If one
480
+ number provided, it will be total request
481
+ timeout. It can also be a pair (tuple) of
482
+ (connection, read) timeouts.
483
+ :return: AsyncOperationResponse
484
+ If the method is called asynchronously,
485
+ returns the request thread.
486
+ """
487
+ kwargs['_return_http_data_only'] = True
488
+ return self.partial_update_with_http_info(maven_maven_remote_href, patchedmaven_maven_remote, **kwargs) # noqa: E501
489
+
490
+ def partial_update_with_http_info(self, maven_maven_remote_href, patchedmaven_maven_remote, **kwargs): # noqa: E501
491
+ """Update a maven remote # noqa: E501
492
+
493
+ Trigger an asynchronous partial update task # noqa: E501
494
+ This method makes a synchronous HTTP request by default. To make an
495
+ asynchronous HTTP request, please pass async_req=True
496
+ >>> thread = api.partial_update_with_http_info(maven_maven_remote_href, patchedmaven_maven_remote, async_req=True)
497
+ >>> result = thread.get()
498
+
499
+ :param async_req bool: execute request asynchronously
500
+ :param str maven_maven_remote_href: (required)
501
+ :param PatchedmavenMavenRemote patchedmaven_maven_remote: (required)
502
+ :param _return_http_data_only: response data without head status code
503
+ and headers
504
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
505
+ be returned without reading/decoding response
506
+ data. Default is True.
507
+ :param _request_timeout: timeout setting for this request. If one
508
+ number provided, it will be total request
509
+ timeout. It can also be a pair (tuple) of
510
+ (connection, read) timeouts.
511
+ :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict))
512
+ If the method is called asynchronously,
513
+ returns the request thread.
514
+ """
515
+
516
+ local_var_params = locals()
517
+
518
+ all_params = [
519
+ 'maven_maven_remote_href',
520
+ 'patchedmaven_maven_remote'
521
+ ]
522
+ all_params.extend(
523
+ [
524
+ 'async_req',
525
+ '_return_http_data_only',
526
+ '_preload_content',
527
+ '_request_timeout'
528
+ ]
529
+ )
530
+
531
+ for key, val in six.iteritems(local_var_params['kwargs']):
532
+ if key not in all_params:
533
+ raise ApiTypeError(
534
+ "Got an unexpected keyword argument '%s'"
535
+ " to method partial_update" % key
536
+ )
537
+ local_var_params[key] = val
538
+ del local_var_params['kwargs']
539
+ # verify the required parameter 'maven_maven_remote_href' is set
540
+ if self.api_client.client_side_validation and ('maven_maven_remote_href' not in local_var_params or # noqa: E501
541
+ local_var_params['maven_maven_remote_href'] is None): # noqa: E501
542
+ raise ApiValueError("Missing the required parameter `maven_maven_remote_href` when calling `partial_update`") # noqa: E501
543
+ # verify the required parameter 'patchedmaven_maven_remote' is set
544
+ if self.api_client.client_side_validation and ('patchedmaven_maven_remote' not in local_var_params or # noqa: E501
545
+ local_var_params['patchedmaven_maven_remote'] is None): # noqa: E501
546
+ raise ApiValueError("Missing the required parameter `patchedmaven_maven_remote` when calling `partial_update`") # noqa: E501
547
+
548
+ collection_formats = {}
549
+
550
+ path_params = {}
551
+ if 'maven_maven_remote_href' in local_var_params:
552
+ path_params['maven_maven_remote_href'] = local_var_params['maven_maven_remote_href'] # noqa: E501
553
+
554
+ query_params = []
555
+
556
+ header_params = {}
557
+
558
+ form_params = []
559
+ local_var_files = {}
560
+
561
+ body_params = None
562
+ if 'patchedmaven_maven_remote' in local_var_params:
563
+ body_params = local_var_params['patchedmaven_maven_remote']
564
+ # HTTP header `Accept`
565
+ header_params['Accept'] = self.api_client.select_header_accept(
566
+ ['application/json']) # noqa: E501
567
+
568
+ # HTTP header `Content-Type`
569
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
570
+ ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data']) # noqa: E501
571
+
572
+ # Authentication setting
573
+ auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
574
+
575
+ return self.api_client.call_api(
576
+ '{maven_maven_remote_href}', 'PATCH',
577
+ path_params,
578
+ query_params,
579
+ header_params,
580
+ body=body_params,
581
+ post_params=form_params,
582
+ files=local_var_files,
583
+ response_type='AsyncOperationResponse', # noqa: E501
584
+ auth_settings=auth_settings,
585
+ async_req=local_var_params.get('async_req'),
586
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
587
+ _preload_content=local_var_params.get('_preload_content', True),
588
+ _request_timeout=local_var_params.get('_request_timeout'),
589
+ collection_formats=collection_formats)
590
+
591
+ def read(self, maven_maven_remote_href, **kwargs): # noqa: E501
592
+ """Inspect a maven remote # noqa: E501
593
+
594
+ A ViewSet for MavenRemote. # noqa: E501
595
+ This method makes a synchronous HTTP request by default. To make an
596
+ asynchronous HTTP request, please pass async_req=True
597
+ >>> thread = api.read(maven_maven_remote_href, async_req=True)
598
+ >>> result = thread.get()
599
+
600
+ :param async_req bool: execute request asynchronously
601
+ :param str maven_maven_remote_href: (required)
602
+ :param str fields: A list of fields to include in the response.
603
+ :param str exclude_fields: A list of fields to exclude from the response.
604
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
605
+ be returned without reading/decoding response
606
+ data. Default is True.
607
+ :param _request_timeout: timeout setting for this request. If one
608
+ number provided, it will be total request
609
+ timeout. It can also be a pair (tuple) of
610
+ (connection, read) timeouts.
611
+ :return: MavenMavenRemoteResponse
612
+ If the method is called asynchronously,
613
+ returns the request thread.
614
+ """
615
+ kwargs['_return_http_data_only'] = True
616
+ return self.read_with_http_info(maven_maven_remote_href, **kwargs) # noqa: E501
617
+
618
+ def read_with_http_info(self, maven_maven_remote_href, **kwargs): # noqa: E501
619
+ """Inspect a maven remote # noqa: E501
620
+
621
+ A ViewSet for MavenRemote. # noqa: E501
622
+ This method makes a synchronous HTTP request by default. To make an
623
+ asynchronous HTTP request, please pass async_req=True
624
+ >>> thread = api.read_with_http_info(maven_maven_remote_href, async_req=True)
625
+ >>> result = thread.get()
626
+
627
+ :param async_req bool: execute request asynchronously
628
+ :param str maven_maven_remote_href: (required)
629
+ :param str fields: A list of fields to include in the response.
630
+ :param str exclude_fields: A list of fields to exclude from the response.
631
+ :param _return_http_data_only: response data without head status code
632
+ and headers
633
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
634
+ be returned without reading/decoding response
635
+ data. Default is True.
636
+ :param _request_timeout: timeout setting for this request. If one
637
+ number provided, it will be total request
638
+ timeout. It can also be a pair (tuple) of
639
+ (connection, read) timeouts.
640
+ :return: tuple(MavenMavenRemoteResponse, status_code(int), headers(HTTPHeaderDict))
641
+ If the method is called asynchronously,
642
+ returns the request thread.
643
+ """
644
+
645
+ local_var_params = locals()
646
+
647
+ all_params = [
648
+ 'maven_maven_remote_href',
649
+ 'fields',
650
+ 'exclude_fields'
651
+ ]
652
+ all_params.extend(
653
+ [
654
+ 'async_req',
655
+ '_return_http_data_only',
656
+ '_preload_content',
657
+ '_request_timeout'
658
+ ]
659
+ )
660
+
661
+ for key, val in six.iteritems(local_var_params['kwargs']):
662
+ if key not in all_params:
663
+ raise ApiTypeError(
664
+ "Got an unexpected keyword argument '%s'"
665
+ " to method read" % key
666
+ )
667
+ local_var_params[key] = val
668
+ del local_var_params['kwargs']
669
+ # verify the required parameter 'maven_maven_remote_href' is set
670
+ if self.api_client.client_side_validation and ('maven_maven_remote_href' not in local_var_params or # noqa: E501
671
+ local_var_params['maven_maven_remote_href'] is None): # noqa: E501
672
+ raise ApiValueError("Missing the required parameter `maven_maven_remote_href` when calling `read`") # noqa: E501
673
+
674
+ collection_formats = {}
675
+
676
+ path_params = {}
677
+ if 'maven_maven_remote_href' in local_var_params:
678
+ path_params['maven_maven_remote_href'] = local_var_params['maven_maven_remote_href'] # noqa: E501
679
+
680
+ query_params = []
681
+ if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501
682
+ query_params.append(('fields', local_var_params['fields'])) # noqa: E501
683
+ if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501
684
+ query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501
685
+
686
+ header_params = {}
687
+
688
+ form_params = []
689
+ local_var_files = {}
690
+
691
+ body_params = None
692
+ # HTTP header `Accept`
693
+ header_params['Accept'] = self.api_client.select_header_accept(
694
+ ['application/json']) # noqa: E501
695
+
696
+ # Authentication setting
697
+ auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
698
+
699
+ return self.api_client.call_api(
700
+ '{maven_maven_remote_href}', 'GET',
701
+ path_params,
702
+ query_params,
703
+ header_params,
704
+ body=body_params,
705
+ post_params=form_params,
706
+ files=local_var_files,
707
+ response_type='MavenMavenRemoteResponse', # noqa: E501
708
+ auth_settings=auth_settings,
709
+ async_req=local_var_params.get('async_req'),
710
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
711
+ _preload_content=local_var_params.get('_preload_content', True),
712
+ _request_timeout=local_var_params.get('_request_timeout'),
713
+ collection_formats=collection_formats)
714
+
715
+ def update(self, maven_maven_remote_href, maven_maven_remote, **kwargs): # noqa: E501
716
+ """Update a maven remote # noqa: E501
717
+
718
+ Trigger an asynchronous update task # noqa: E501
719
+ This method makes a synchronous HTTP request by default. To make an
720
+ asynchronous HTTP request, please pass async_req=True
721
+ >>> thread = api.update(maven_maven_remote_href, maven_maven_remote, async_req=True)
722
+ >>> result = thread.get()
723
+
724
+ :param async_req bool: execute request asynchronously
725
+ :param str maven_maven_remote_href: (required)
726
+ :param MavenMavenRemote maven_maven_remote: (required)
727
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
728
+ be returned without reading/decoding response
729
+ data. Default is True.
730
+ :param _request_timeout: timeout setting for this request. If one
731
+ number provided, it will be total request
732
+ timeout. It can also be a pair (tuple) of
733
+ (connection, read) timeouts.
734
+ :return: AsyncOperationResponse
735
+ If the method is called asynchronously,
736
+ returns the request thread.
737
+ """
738
+ kwargs['_return_http_data_only'] = True
739
+ return self.update_with_http_info(maven_maven_remote_href, maven_maven_remote, **kwargs) # noqa: E501
740
+
741
+ def update_with_http_info(self, maven_maven_remote_href, maven_maven_remote, **kwargs): # noqa: E501
742
+ """Update a maven remote # noqa: E501
743
+
744
+ Trigger an asynchronous update task # noqa: E501
745
+ This method makes a synchronous HTTP request by default. To make an
746
+ asynchronous HTTP request, please pass async_req=True
747
+ >>> thread = api.update_with_http_info(maven_maven_remote_href, maven_maven_remote, async_req=True)
748
+ >>> result = thread.get()
749
+
750
+ :param async_req bool: execute request asynchronously
751
+ :param str maven_maven_remote_href: (required)
752
+ :param MavenMavenRemote maven_maven_remote: (required)
753
+ :param _return_http_data_only: response data without head status code
754
+ and headers
755
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
756
+ be returned without reading/decoding response
757
+ data. Default is True.
758
+ :param _request_timeout: timeout setting for this request. If one
759
+ number provided, it will be total request
760
+ timeout. It can also be a pair (tuple) of
761
+ (connection, read) timeouts.
762
+ :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict))
763
+ If the method is called asynchronously,
764
+ returns the request thread.
765
+ """
766
+
767
+ local_var_params = locals()
768
+
769
+ all_params = [
770
+ 'maven_maven_remote_href',
771
+ 'maven_maven_remote'
772
+ ]
773
+ all_params.extend(
774
+ [
775
+ 'async_req',
776
+ '_return_http_data_only',
777
+ '_preload_content',
778
+ '_request_timeout'
779
+ ]
780
+ )
781
+
782
+ for key, val in six.iteritems(local_var_params['kwargs']):
783
+ if key not in all_params:
784
+ raise ApiTypeError(
785
+ "Got an unexpected keyword argument '%s'"
786
+ " to method update" % key
787
+ )
788
+ local_var_params[key] = val
789
+ del local_var_params['kwargs']
790
+ # verify the required parameter 'maven_maven_remote_href' is set
791
+ if self.api_client.client_side_validation and ('maven_maven_remote_href' not in local_var_params or # noqa: E501
792
+ local_var_params['maven_maven_remote_href'] is None): # noqa: E501
793
+ raise ApiValueError("Missing the required parameter `maven_maven_remote_href` when calling `update`") # noqa: E501
794
+ # verify the required parameter 'maven_maven_remote' is set
795
+ if self.api_client.client_side_validation and ('maven_maven_remote' not in local_var_params or # noqa: E501
796
+ local_var_params['maven_maven_remote'] is None): # noqa: E501
797
+ raise ApiValueError("Missing the required parameter `maven_maven_remote` when calling `update`") # noqa: E501
798
+
799
+ collection_formats = {}
800
+
801
+ path_params = {}
802
+ if 'maven_maven_remote_href' in local_var_params:
803
+ path_params['maven_maven_remote_href'] = local_var_params['maven_maven_remote_href'] # noqa: E501
804
+
805
+ query_params = []
806
+
807
+ header_params = {}
808
+
809
+ form_params = []
810
+ local_var_files = {}
811
+
812
+ body_params = None
813
+ if 'maven_maven_remote' in local_var_params:
814
+ body_params = local_var_params['maven_maven_remote']
815
+ # HTTP header `Accept`
816
+ header_params['Accept'] = self.api_client.select_header_accept(
817
+ ['application/json']) # noqa: E501
818
+
819
+ # HTTP header `Content-Type`
820
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
821
+ ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data']) # noqa: E501
822
+
823
+ # Authentication setting
824
+ auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
825
+
826
+ return self.api_client.call_api(
827
+ '{maven_maven_remote_href}', 'PUT',
828
+ path_params,
829
+ query_params,
830
+ header_params,
831
+ body=body_params,
832
+ post_params=form_params,
833
+ files=local_var_files,
834
+ response_type='AsyncOperationResponse', # noqa: E501
835
+ auth_settings=auth_settings,
836
+ async_req=local_var_params.get('async_req'),
837
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
838
+ _preload_content=local_var_params.get('_preload_content', True),
839
+ _request_timeout=local_var_params.get('_request_timeout'),
840
+ collection_formats=collection_formats)