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