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,657 @@
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
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from pulpcore.client.pulp_maven.configuration import Configuration
20
+
21
+
22
+ class MavenMavenRemote(object):
23
+ """NOTE: This class is auto generated by OpenAPI Generator.
24
+ Ref: https://openapi-generator.tech
25
+
26
+ Do not edit the class manually.
27
+ """
28
+
29
+ """
30
+ Attributes:
31
+ openapi_types (dict): The key is attribute name
32
+ and the value is attribute type.
33
+ attribute_map (dict): The key is attribute name
34
+ and the value is json key in definition.
35
+ """
36
+ openapi_types = {
37
+ 'name': 'str',
38
+ 'url': 'str',
39
+ 'ca_cert': 'str',
40
+ 'client_cert': 'str',
41
+ 'client_key': 'str',
42
+ 'tls_validation': 'bool',
43
+ 'proxy_url': 'str',
44
+ 'proxy_username': 'str',
45
+ 'proxy_password': 'str',
46
+ 'username': 'str',
47
+ 'password': 'str',
48
+ 'pulp_labels': 'object',
49
+ 'download_concurrency': 'int',
50
+ 'policy': 'PolicyEnum',
51
+ 'total_timeout': 'float',
52
+ 'connect_timeout': 'float',
53
+ 'sock_connect_timeout': 'float',
54
+ 'sock_read_timeout': 'float',
55
+ 'headers': 'list[object]',
56
+ 'rate_limit': 'int'
57
+ }
58
+
59
+ attribute_map = {
60
+ 'name': 'name',
61
+ 'url': 'url',
62
+ 'ca_cert': 'ca_cert',
63
+ 'client_cert': 'client_cert',
64
+ 'client_key': 'client_key',
65
+ 'tls_validation': 'tls_validation',
66
+ 'proxy_url': 'proxy_url',
67
+ 'proxy_username': 'proxy_username',
68
+ 'proxy_password': 'proxy_password',
69
+ 'username': 'username',
70
+ 'password': 'password',
71
+ 'pulp_labels': 'pulp_labels',
72
+ 'download_concurrency': 'download_concurrency',
73
+ 'policy': 'policy',
74
+ 'total_timeout': 'total_timeout',
75
+ 'connect_timeout': 'connect_timeout',
76
+ 'sock_connect_timeout': 'sock_connect_timeout',
77
+ 'sock_read_timeout': 'sock_read_timeout',
78
+ 'headers': 'headers',
79
+ 'rate_limit': 'rate_limit'
80
+ }
81
+
82
+ def __init__(self, name=None, url=None, ca_cert=None, client_cert=None, client_key=None, tls_validation=None, proxy_url=None, proxy_username=None, proxy_password=None, username=None, password=None, pulp_labels=None, download_concurrency=None, policy=None, total_timeout=None, connect_timeout=None, sock_connect_timeout=None, sock_read_timeout=None, headers=None, rate_limit=None, local_vars_configuration=None): # noqa: E501
83
+ """MavenMavenRemote - a model defined in OpenAPI""" # noqa: E501
84
+ if local_vars_configuration is None:
85
+ local_vars_configuration = Configuration()
86
+ self.local_vars_configuration = local_vars_configuration
87
+
88
+ self._name = None
89
+ self._url = None
90
+ self._ca_cert = None
91
+ self._client_cert = None
92
+ self._client_key = None
93
+ self._tls_validation = None
94
+ self._proxy_url = None
95
+ self._proxy_username = None
96
+ self._proxy_password = None
97
+ self._username = None
98
+ self._password = None
99
+ self._pulp_labels = None
100
+ self._download_concurrency = None
101
+ self._policy = None
102
+ self._total_timeout = None
103
+ self._connect_timeout = None
104
+ self._sock_connect_timeout = None
105
+ self._sock_read_timeout = None
106
+ self._headers = None
107
+ self._rate_limit = None
108
+ self.discriminator = None
109
+
110
+ self.name = name
111
+ self.url = url
112
+ self.ca_cert = ca_cert
113
+ self.client_cert = client_cert
114
+ self.client_key = client_key
115
+ if tls_validation is not None:
116
+ self.tls_validation = tls_validation
117
+ self.proxy_url = proxy_url
118
+ self.proxy_username = proxy_username
119
+ self.proxy_password = proxy_password
120
+ self.username = username
121
+ self.password = password
122
+ if pulp_labels is not None:
123
+ self.pulp_labels = pulp_labels
124
+ if download_concurrency is not None:
125
+ self.download_concurrency = download_concurrency
126
+ if policy is not None:
127
+ self.policy = policy
128
+ self.total_timeout = total_timeout
129
+ self.connect_timeout = connect_timeout
130
+ self.sock_connect_timeout = sock_connect_timeout
131
+ self.sock_read_timeout = sock_read_timeout
132
+ if headers is not None:
133
+ self.headers = headers
134
+ self.rate_limit = rate_limit
135
+
136
+ @property
137
+ def name(self):
138
+ """Gets the name of this MavenMavenRemote. # noqa: E501
139
+
140
+ A unique name for this remote. # noqa: E501
141
+
142
+ :return: The name of this MavenMavenRemote. # noqa: E501
143
+ :rtype: str
144
+ """
145
+ return self._name
146
+
147
+ @name.setter
148
+ def name(self, name):
149
+ """Sets the name of this MavenMavenRemote.
150
+
151
+ A unique name for this remote. # noqa: E501
152
+
153
+ :param name: The name of this MavenMavenRemote. # noqa: E501
154
+ :type: str
155
+ """
156
+ if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
157
+ raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
158
+
159
+ self._name = name
160
+
161
+ @property
162
+ def url(self):
163
+ """Gets the url of this MavenMavenRemote. # noqa: E501
164
+
165
+ The URL of an external content source. # noqa: E501
166
+
167
+ :return: The url of this MavenMavenRemote. # noqa: E501
168
+ :rtype: str
169
+ """
170
+ return self._url
171
+
172
+ @url.setter
173
+ def url(self, url):
174
+ """Sets the url of this MavenMavenRemote.
175
+
176
+ The URL of an external content source. # noqa: E501
177
+
178
+ :param url: The url of this MavenMavenRemote. # noqa: E501
179
+ :type: str
180
+ """
181
+ if self.local_vars_configuration.client_side_validation and url is None: # noqa: E501
182
+ raise ValueError("Invalid value for `url`, must not be `None`") # noqa: E501
183
+
184
+ self._url = url
185
+
186
+ @property
187
+ def ca_cert(self):
188
+ """Gets the ca_cert of this MavenMavenRemote. # noqa: E501
189
+
190
+ A PEM encoded CA certificate used to validate the server certificate presented by the remote server. # noqa: E501
191
+
192
+ :return: The ca_cert of this MavenMavenRemote. # noqa: E501
193
+ :rtype: str
194
+ """
195
+ return self._ca_cert
196
+
197
+ @ca_cert.setter
198
+ def ca_cert(self, ca_cert):
199
+ """Sets the ca_cert of this MavenMavenRemote.
200
+
201
+ A PEM encoded CA certificate used to validate the server certificate presented by the remote server. # noqa: E501
202
+
203
+ :param ca_cert: The ca_cert of this MavenMavenRemote. # noqa: E501
204
+ :type: str
205
+ """
206
+
207
+ self._ca_cert = ca_cert
208
+
209
+ @property
210
+ def client_cert(self):
211
+ """Gets the client_cert of this MavenMavenRemote. # noqa: E501
212
+
213
+ A PEM encoded client certificate used for authentication. # noqa: E501
214
+
215
+ :return: The client_cert of this MavenMavenRemote. # noqa: E501
216
+ :rtype: str
217
+ """
218
+ return self._client_cert
219
+
220
+ @client_cert.setter
221
+ def client_cert(self, client_cert):
222
+ """Sets the client_cert of this MavenMavenRemote.
223
+
224
+ A PEM encoded client certificate used for authentication. # noqa: E501
225
+
226
+ :param client_cert: The client_cert of this MavenMavenRemote. # noqa: E501
227
+ :type: str
228
+ """
229
+
230
+ self._client_cert = client_cert
231
+
232
+ @property
233
+ def client_key(self):
234
+ """Gets the client_key of this MavenMavenRemote. # noqa: E501
235
+
236
+ A PEM encoded private key used for authentication. # noqa: E501
237
+
238
+ :return: The client_key of this MavenMavenRemote. # noqa: E501
239
+ :rtype: str
240
+ """
241
+ return self._client_key
242
+
243
+ @client_key.setter
244
+ def client_key(self, client_key):
245
+ """Sets the client_key of this MavenMavenRemote.
246
+
247
+ A PEM encoded private key used for authentication. # noqa: E501
248
+
249
+ :param client_key: The client_key of this MavenMavenRemote. # noqa: E501
250
+ :type: str
251
+ """
252
+
253
+ self._client_key = client_key
254
+
255
+ @property
256
+ def tls_validation(self):
257
+ """Gets the tls_validation of this MavenMavenRemote. # noqa: E501
258
+
259
+ If True, TLS peer validation must be performed. # noqa: E501
260
+
261
+ :return: The tls_validation of this MavenMavenRemote. # noqa: E501
262
+ :rtype: bool
263
+ """
264
+ return self._tls_validation
265
+
266
+ @tls_validation.setter
267
+ def tls_validation(self, tls_validation):
268
+ """Sets the tls_validation of this MavenMavenRemote.
269
+
270
+ If True, TLS peer validation must be performed. # noqa: E501
271
+
272
+ :param tls_validation: The tls_validation of this MavenMavenRemote. # noqa: E501
273
+ :type: bool
274
+ """
275
+
276
+ self._tls_validation = tls_validation
277
+
278
+ @property
279
+ def proxy_url(self):
280
+ """Gets the proxy_url of this MavenMavenRemote. # noqa: E501
281
+
282
+ The proxy URL. Format: scheme://host:port # noqa: E501
283
+
284
+ :return: The proxy_url of this MavenMavenRemote. # noqa: E501
285
+ :rtype: str
286
+ """
287
+ return self._proxy_url
288
+
289
+ @proxy_url.setter
290
+ def proxy_url(self, proxy_url):
291
+ """Sets the proxy_url of this MavenMavenRemote.
292
+
293
+ The proxy URL. Format: scheme://host:port # noqa: E501
294
+
295
+ :param proxy_url: The proxy_url of this MavenMavenRemote. # noqa: E501
296
+ :type: str
297
+ """
298
+
299
+ self._proxy_url = proxy_url
300
+
301
+ @property
302
+ def proxy_username(self):
303
+ """Gets the proxy_username of this MavenMavenRemote. # noqa: E501
304
+
305
+ The username to authenticte to the proxy. # noqa: E501
306
+
307
+ :return: The proxy_username of this MavenMavenRemote. # noqa: E501
308
+ :rtype: str
309
+ """
310
+ return self._proxy_username
311
+
312
+ @proxy_username.setter
313
+ def proxy_username(self, proxy_username):
314
+ """Sets the proxy_username of this MavenMavenRemote.
315
+
316
+ The username to authenticte to the proxy. # noqa: E501
317
+
318
+ :param proxy_username: The proxy_username of this MavenMavenRemote. # noqa: E501
319
+ :type: str
320
+ """
321
+
322
+ self._proxy_username = proxy_username
323
+
324
+ @property
325
+ def proxy_password(self):
326
+ """Gets the proxy_password of this MavenMavenRemote. # noqa: E501
327
+
328
+ The password to authenticte to the proxy. # noqa: E501
329
+
330
+ :return: The proxy_password of this MavenMavenRemote. # noqa: E501
331
+ :rtype: str
332
+ """
333
+ return self._proxy_password
334
+
335
+ @proxy_password.setter
336
+ def proxy_password(self, proxy_password):
337
+ """Sets the proxy_password of this MavenMavenRemote.
338
+
339
+ The password to authenticte to the proxy. # noqa: E501
340
+
341
+ :param proxy_password: The proxy_password of this MavenMavenRemote. # noqa: E501
342
+ :type: str
343
+ """
344
+
345
+ self._proxy_password = proxy_password
346
+
347
+ @property
348
+ def username(self):
349
+ """Gets the username of this MavenMavenRemote. # noqa: E501
350
+
351
+ The username to be used for authentication when syncing. # noqa: E501
352
+
353
+ :return: The username of this MavenMavenRemote. # noqa: E501
354
+ :rtype: str
355
+ """
356
+ return self._username
357
+
358
+ @username.setter
359
+ def username(self, username):
360
+ """Sets the username of this MavenMavenRemote.
361
+
362
+ The username to be used for authentication when syncing. # noqa: E501
363
+
364
+ :param username: The username of this MavenMavenRemote. # noqa: E501
365
+ :type: str
366
+ """
367
+
368
+ self._username = username
369
+
370
+ @property
371
+ def password(self):
372
+ """Gets the password of this MavenMavenRemote. # noqa: E501
373
+
374
+ The password to be used for authentication when syncing. # noqa: E501
375
+
376
+ :return: The password of this MavenMavenRemote. # noqa: E501
377
+ :rtype: str
378
+ """
379
+ return self._password
380
+
381
+ @password.setter
382
+ def password(self, password):
383
+ """Sets the password of this MavenMavenRemote.
384
+
385
+ The password to be used for authentication when syncing. # noqa: E501
386
+
387
+ :param password: The password of this MavenMavenRemote. # noqa: E501
388
+ :type: str
389
+ """
390
+
391
+ self._password = password
392
+
393
+ @property
394
+ def pulp_labels(self):
395
+ """Gets the pulp_labels of this MavenMavenRemote. # noqa: E501
396
+
397
+
398
+ :return: The pulp_labels of this MavenMavenRemote. # noqa: E501
399
+ :rtype: object
400
+ """
401
+ return self._pulp_labels
402
+
403
+ @pulp_labels.setter
404
+ def pulp_labels(self, pulp_labels):
405
+ """Sets the pulp_labels of this MavenMavenRemote.
406
+
407
+
408
+ :param pulp_labels: The pulp_labels of this MavenMavenRemote. # noqa: E501
409
+ :type: object
410
+ """
411
+
412
+ self._pulp_labels = pulp_labels
413
+
414
+ @property
415
+ def download_concurrency(self):
416
+ """Gets the download_concurrency of this MavenMavenRemote. # noqa: E501
417
+
418
+ Total number of simultaneous connections. # noqa: E501
419
+
420
+ :return: The download_concurrency of this MavenMavenRemote. # noqa: E501
421
+ :rtype: int
422
+ """
423
+ return self._download_concurrency
424
+
425
+ @download_concurrency.setter
426
+ def download_concurrency(self, download_concurrency):
427
+ """Sets the download_concurrency of this MavenMavenRemote.
428
+
429
+ Total number of simultaneous connections. # noqa: E501
430
+
431
+ :param download_concurrency: The download_concurrency of this MavenMavenRemote. # noqa: E501
432
+ :type: int
433
+ """
434
+ if (self.local_vars_configuration.client_side_validation and
435
+ download_concurrency is not None and download_concurrency < 1): # noqa: E501
436
+ raise ValueError("Invalid value for `download_concurrency`, must be a value greater than or equal to `1`") # noqa: E501
437
+
438
+ self._download_concurrency = download_concurrency
439
+
440
+ @property
441
+ def policy(self):
442
+ """Gets the policy of this MavenMavenRemote. # noqa: E501
443
+
444
+ The policy to use when downloading content. # noqa: E501
445
+
446
+ :return: The policy of this MavenMavenRemote. # noqa: E501
447
+ :rtype: PolicyEnum
448
+ """
449
+ return self._policy
450
+
451
+ @policy.setter
452
+ def policy(self, policy):
453
+ """Sets the policy of this MavenMavenRemote.
454
+
455
+ The policy to use when downloading content. # noqa: E501
456
+
457
+ :param policy: The policy of this MavenMavenRemote. # noqa: E501
458
+ :type: PolicyEnum
459
+ """
460
+
461
+ self._policy = policy
462
+
463
+ @property
464
+ def total_timeout(self):
465
+ """Gets the total_timeout of this MavenMavenRemote. # noqa: E501
466
+
467
+ aiohttp.ClientTimeout.total (q.v.) for download-connections. # noqa: E501
468
+
469
+ :return: The total_timeout of this MavenMavenRemote. # noqa: E501
470
+ :rtype: float
471
+ """
472
+ return self._total_timeout
473
+
474
+ @total_timeout.setter
475
+ def total_timeout(self, total_timeout):
476
+ """Sets the total_timeout of this MavenMavenRemote.
477
+
478
+ aiohttp.ClientTimeout.total (q.v.) for download-connections. # noqa: E501
479
+
480
+ :param total_timeout: The total_timeout of this MavenMavenRemote. # noqa: E501
481
+ :type: float
482
+ """
483
+ if (self.local_vars_configuration.client_side_validation and
484
+ total_timeout is not None and total_timeout < 0.0): # noqa: E501
485
+ raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
486
+
487
+ self._total_timeout = total_timeout
488
+
489
+ @property
490
+ def connect_timeout(self):
491
+ """Gets the connect_timeout of this MavenMavenRemote. # noqa: E501
492
+
493
+ aiohttp.ClientTimeout.connect (q.v.) for download-connections. # noqa: E501
494
+
495
+ :return: The connect_timeout of this MavenMavenRemote. # noqa: E501
496
+ :rtype: float
497
+ """
498
+ return self._connect_timeout
499
+
500
+ @connect_timeout.setter
501
+ def connect_timeout(self, connect_timeout):
502
+ """Sets the connect_timeout of this MavenMavenRemote.
503
+
504
+ aiohttp.ClientTimeout.connect (q.v.) for download-connections. # noqa: E501
505
+
506
+ :param connect_timeout: The connect_timeout of this MavenMavenRemote. # noqa: E501
507
+ :type: float
508
+ """
509
+ if (self.local_vars_configuration.client_side_validation and
510
+ connect_timeout is not None and connect_timeout < 0.0): # noqa: E501
511
+ raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
512
+
513
+ self._connect_timeout = connect_timeout
514
+
515
+ @property
516
+ def sock_connect_timeout(self):
517
+ """Gets the sock_connect_timeout of this MavenMavenRemote. # noqa: E501
518
+
519
+ aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. # noqa: E501
520
+
521
+ :return: The sock_connect_timeout of this MavenMavenRemote. # noqa: E501
522
+ :rtype: float
523
+ """
524
+ return self._sock_connect_timeout
525
+
526
+ @sock_connect_timeout.setter
527
+ def sock_connect_timeout(self, sock_connect_timeout):
528
+ """Sets the sock_connect_timeout of this MavenMavenRemote.
529
+
530
+ aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. # noqa: E501
531
+
532
+ :param sock_connect_timeout: The sock_connect_timeout of this MavenMavenRemote. # noqa: E501
533
+ :type: float
534
+ """
535
+ if (self.local_vars_configuration.client_side_validation and
536
+ sock_connect_timeout is not None and sock_connect_timeout < 0.0): # noqa: E501
537
+ raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
538
+
539
+ self._sock_connect_timeout = sock_connect_timeout
540
+
541
+ @property
542
+ def sock_read_timeout(self):
543
+ """Gets the sock_read_timeout of this MavenMavenRemote. # noqa: E501
544
+
545
+ aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. # noqa: E501
546
+
547
+ :return: The sock_read_timeout of this MavenMavenRemote. # noqa: E501
548
+ :rtype: float
549
+ """
550
+ return self._sock_read_timeout
551
+
552
+ @sock_read_timeout.setter
553
+ def sock_read_timeout(self, sock_read_timeout):
554
+ """Sets the sock_read_timeout of this MavenMavenRemote.
555
+
556
+ aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. # noqa: E501
557
+
558
+ :param sock_read_timeout: The sock_read_timeout of this MavenMavenRemote. # noqa: E501
559
+ :type: float
560
+ """
561
+ if (self.local_vars_configuration.client_side_validation and
562
+ sock_read_timeout is not None and sock_read_timeout < 0.0): # noqa: E501
563
+ raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
564
+
565
+ self._sock_read_timeout = sock_read_timeout
566
+
567
+ @property
568
+ def headers(self):
569
+ """Gets the headers of this MavenMavenRemote. # noqa: E501
570
+
571
+ Headers for aiohttp.Clientsession # noqa: E501
572
+
573
+ :return: The headers of this MavenMavenRemote. # noqa: E501
574
+ :rtype: list[object]
575
+ """
576
+ return self._headers
577
+
578
+ @headers.setter
579
+ def headers(self, headers):
580
+ """Sets the headers of this MavenMavenRemote.
581
+
582
+ Headers for aiohttp.Clientsession # noqa: E501
583
+
584
+ :param headers: The headers of this MavenMavenRemote. # noqa: E501
585
+ :type: list[object]
586
+ """
587
+
588
+ self._headers = headers
589
+
590
+ @property
591
+ def rate_limit(self):
592
+ """Gets the rate_limit of this MavenMavenRemote. # noqa: E501
593
+
594
+ Limits total download rate in requests per second # noqa: E501
595
+
596
+ :return: The rate_limit of this MavenMavenRemote. # noqa: E501
597
+ :rtype: int
598
+ """
599
+ return self._rate_limit
600
+
601
+ @rate_limit.setter
602
+ def rate_limit(self, rate_limit):
603
+ """Sets the rate_limit of this MavenMavenRemote.
604
+
605
+ Limits total download rate in requests per second # noqa: E501
606
+
607
+ :param rate_limit: The rate_limit of this MavenMavenRemote. # noqa: E501
608
+ :type: int
609
+ """
610
+
611
+ self._rate_limit = rate_limit
612
+
613
+ def to_dict(self):
614
+ """Returns the model properties as a dict"""
615
+ result = {}
616
+
617
+ for attr, _ in six.iteritems(self.openapi_types):
618
+ value = getattr(self, attr)
619
+ if isinstance(value, list):
620
+ result[attr] = list(map(
621
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
622
+ value
623
+ ))
624
+ elif hasattr(value, "to_dict"):
625
+ result[attr] = value.to_dict()
626
+ elif isinstance(value, dict):
627
+ result[attr] = dict(map(
628
+ lambda item: (item[0], item[1].to_dict())
629
+ if hasattr(item[1], "to_dict") else item,
630
+ value.items()
631
+ ))
632
+ else:
633
+ result[attr] = value
634
+
635
+ return result
636
+
637
+ def to_str(self):
638
+ """Returns the string representation of the model"""
639
+ return pprint.pformat(self.to_dict())
640
+
641
+ def __repr__(self):
642
+ """For `print` and `pprint`"""
643
+ return self.to_str()
644
+
645
+ def __eq__(self, other):
646
+ """Returns true if both objects are equal"""
647
+ if not isinstance(other, MavenMavenRemote):
648
+ return False
649
+
650
+ return self.to_dict() == other.to_dict()
651
+
652
+ def __ne__(self, other):
653
+ """Returns true if both objects are not equal"""
654
+ if not isinstance(other, MavenMavenRemote):
655
+ return True
656
+
657
+ return self.to_dict() != other.to_dict()