pulp_maven_client 0.3.0 → 0.3.3

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