pulp_ansible_client 0.18.1 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -7
  3. data/docs/AnsibleAnsibleRepositoryResponse.md +1 -1
  4. data/docs/AnsibleCollectionRemoteResponse.md +1 -1
  5. data/docs/AnsibleCollectionVersion.md +5 -5
  6. data/docs/AnsibleCollectionVersionResponse.md +3 -3
  7. data/docs/AnsibleGitRemote.md +26 -26
  8. data/docs/AnsibleGitRemoteResponse.md +26 -26
  9. data/docs/AnsibleRole.md +3 -3
  10. data/docs/AnsibleRoleResponse.md +3 -3
  11. data/docs/CollectionNamespaceResponse.md +1 -1
  12. data/docs/CollectionResponse.md +5 -3
  13. data/docs/CollectionVersionListResponse.md +1 -1
  14. data/docs/CollectionVersionResponse.md +2 -2
  15. data/docs/CollectionVersionSignatureResponse.md +23 -0
  16. data/docs/ContentCollectionVersionsApi.md +6 -6
  17. data/docs/PatchedCollection.md +17 -0
  18. data/docs/PatchedansibleGitRemote.md +26 -26
  19. data/docs/PulpAnsibleApiV3CollectionsApi.md +4 -4
  20. data/docs/PulpAnsibleApiV3CollectionsVersionsApi.md +2 -2
  21. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexApi.md +4 -4
  22. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -2
  23. data/docs/PulpAnsibleDefaultApiV3CollectionsApi.md +4 -4
  24. data/docs/PulpAnsibleDefaultApiV3CollectionsVersionsApi.md +2 -2
  25. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexApi.md +4 -4
  26. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -2
  27. data/docs/UnpaginatedCollectionVersionResponse.md +2 -2
  28. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +9 -9
  29. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_api.rb +9 -9
  30. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb +3 -3
  31. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_api.rb +9 -9
  32. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -3
  33. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_api.rb +9 -9
  34. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb +3 -3
  35. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_api.rb +9 -9
  36. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -3
  37. data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +1 -1
  38. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +1 -1
  39. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +18 -18
  40. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
  41. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +242 -242
  42. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +144 -144
  43. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  44. data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
  45. data/lib/pulp_ansible_client/models/collection_namespace_response.rb +1 -0
  46. data/lib/pulp_ansible_client/models/collection_response.rb +19 -6
  47. data/lib/pulp_ansible_client/models/collection_version_list_response.rb +24 -0
  48. data/lib/pulp_ansible_client/models/collection_version_response.rb +33 -2
  49. data/lib/pulp_ansible_client/models/{task.rb → collection_version_signature_response.rb} +49 -56
  50. data/lib/pulp_ansible_client/models/{progress_report_response.rb → patched_collection.rb} +11 -63
  51. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +229 -229
  52. data/lib/pulp_ansible_client/models/unpaginated_collection_version_response.rb +33 -2
  53. data/lib/pulp_ansible_client/version.rb +1 -1
  54. data/lib/pulp_ansible_client.rb +2 -3
  55. data/spec/api/content_collection_versions_api_spec.rb +3 -3
  56. data/spec/api/pulp_ansible_api_v3_collections_api_spec.rb +1 -1
  57. data/spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb +1 -1
  58. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_api_spec.rb +1 -1
  59. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -1
  60. data/spec/api/pulp_ansible_default_api_v3_collections_api_spec.rb +1 -1
  61. data/spec/api/pulp_ansible_default_api_v3_collections_versions_api_spec.rb +1 -1
  62. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_api_spec.rb +1 -1
  63. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -1
  64. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  65. data/spec/models/ansible_collection_version_spec.rb +3 -3
  66. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  67. data/spec/models/ansible_git_remote_spec.rb +19 -19
  68. data/spec/models/ansible_role_response_spec.rb +3 -3
  69. data/spec/models/ansible_role_spec.rb +2 -2
  70. data/spec/models/collection_response_spec.rb +6 -0
  71. data/spec/models/{progress_report_response_spec.rb → collection_version_signature_response_spec.rb} +10 -22
  72. data/spec/models/{task_spec.rb → patched_collection_spec.rb} +7 -13
  73. data/spec/models/patchedansible_git_remote_spec.rb +19 -19
  74. metadata +10 -14
  75. data/docs/ProgressReportResponse.md +0 -27
  76. data/docs/Task.md +0 -19
  77. data/docs/TaskResponse.md +0 -47
  78. data/lib/pulp_ansible_client/models/task_response.rb +0 -376
  79. data/spec/models/task_response_spec.rb +0 -131
@@ -15,8 +15,23 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemote
18
- # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
19
- attr_accessor :sock_read_timeout
18
+ # Limits requests per second for each concurrent downloader
19
+ attr_accessor :rate_limit
20
+
21
+ # Total number of simultaneous connections. If not set then the default value will be used.
22
+ attr_accessor :download_concurrency
23
+
24
+ # A unique name for this remote.
25
+ attr_accessor :name
26
+
27
+ # The proxy URL. Format: scheme://host:port
28
+ attr_accessor :proxy_url
29
+
30
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
31
+ attr_accessor :max_retries
32
+
33
+ # The URL of an external content source.
34
+ attr_accessor :url
20
35
 
21
36
  # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
22
37
  attr_accessor :sock_connect_timeout
@@ -24,55 +39,40 @@ module PulpAnsibleClient
24
39
  # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
25
40
  attr_accessor :connect_timeout
26
41
 
42
+ # A PEM encoded private key used for authentication.
43
+ attr_accessor :client_key
44
+
45
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
46
+ attr_accessor :total_timeout
47
+
27
48
  # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
28
49
  attr_accessor :ca_cert
29
50
 
30
- # The proxy URL. Format: scheme://host:port
31
- attr_accessor :proxy_url
51
+ attr_accessor :pulp_labels
32
52
 
33
- # If True, TLS peer validation must be performed.
34
- attr_accessor :tls_validation
53
+ # Headers for aiohttp.Clientsession
54
+ attr_accessor :headers
55
+
56
+ # A PEM encoded client certificate used for authentication.
57
+ attr_accessor :client_cert
35
58
 
36
59
  # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
37
60
  attr_accessor :proxy_password
38
61
 
39
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
40
- attr_accessor :total_timeout
41
-
42
- attr_accessor :pulp_labels
43
-
44
62
  # The username to be used for authentication when syncing.
45
63
  attr_accessor :username
46
64
 
47
- # The URL of an external content source.
48
- attr_accessor :url
49
-
50
65
  # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
51
66
  attr_accessor :password
52
67
 
53
- # A PEM encoded private key used for authentication.
54
- attr_accessor :client_key
55
-
56
- # Total number of simultaneous connections. If not set then the default value will be used.
57
- attr_accessor :download_concurrency
58
-
59
- # A unique name for this remote.
60
- attr_accessor :name
61
-
62
- # A PEM encoded client certificate used for authentication.
63
- attr_accessor :client_cert
64
-
65
- # Limits requests per second for each concurrent downloader
66
- attr_accessor :rate_limit
67
-
68
68
  # The username to authenticte to the proxy.
69
69
  attr_accessor :proxy_username
70
70
 
71
- # Headers for aiohttp.Clientsession
72
- attr_accessor :headers
71
+ # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
72
+ attr_accessor :sock_read_timeout
73
73
 
74
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
75
- attr_accessor :max_retries
74
+ # If True, TLS peer validation must be performed.
75
+ attr_accessor :tls_validation
76
76
 
77
77
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
78
78
  attr_accessor :metadata_only
@@ -83,26 +83,26 @@ module PulpAnsibleClient
83
83
  # Attribute mapping from ruby-style variable name to JSON key.
84
84
  def self.attribute_map
85
85
  {
86
- :'sock_read_timeout' => :'sock_read_timeout',
86
+ :'rate_limit' => :'rate_limit',
87
+ :'download_concurrency' => :'download_concurrency',
88
+ :'name' => :'name',
89
+ :'proxy_url' => :'proxy_url',
90
+ :'max_retries' => :'max_retries',
91
+ :'url' => :'url',
87
92
  :'sock_connect_timeout' => :'sock_connect_timeout',
88
93
  :'connect_timeout' => :'connect_timeout',
89
- :'ca_cert' => :'ca_cert',
90
- :'proxy_url' => :'proxy_url',
91
- :'tls_validation' => :'tls_validation',
92
- :'proxy_password' => :'proxy_password',
94
+ :'client_key' => :'client_key',
93
95
  :'total_timeout' => :'total_timeout',
96
+ :'ca_cert' => :'ca_cert',
94
97
  :'pulp_labels' => :'pulp_labels',
98
+ :'headers' => :'headers',
99
+ :'client_cert' => :'client_cert',
100
+ :'proxy_password' => :'proxy_password',
95
101
  :'username' => :'username',
96
- :'url' => :'url',
97
102
  :'password' => :'password',
98
- :'client_key' => :'client_key',
99
- :'download_concurrency' => :'download_concurrency',
100
- :'name' => :'name',
101
- :'client_cert' => :'client_cert',
102
- :'rate_limit' => :'rate_limit',
103
103
  :'proxy_username' => :'proxy_username',
104
- :'headers' => :'headers',
105
- :'max_retries' => :'max_retries',
104
+ :'sock_read_timeout' => :'sock_read_timeout',
105
+ :'tls_validation' => :'tls_validation',
106
106
  :'metadata_only' => :'metadata_only',
107
107
  :'git_ref' => :'git_ref'
108
108
  }
@@ -111,26 +111,26 @@ module PulpAnsibleClient
111
111
  # Attribute type mapping.
112
112
  def self.openapi_types
113
113
  {
114
- :'sock_read_timeout' => :'Float',
114
+ :'rate_limit' => :'Integer',
115
+ :'download_concurrency' => :'Integer',
116
+ :'name' => :'String',
117
+ :'proxy_url' => :'String',
118
+ :'max_retries' => :'Integer',
119
+ :'url' => :'String',
115
120
  :'sock_connect_timeout' => :'Float',
116
121
  :'connect_timeout' => :'Float',
117
- :'ca_cert' => :'String',
118
- :'proxy_url' => :'String',
119
- :'tls_validation' => :'Boolean',
120
- :'proxy_password' => :'String',
122
+ :'client_key' => :'String',
121
123
  :'total_timeout' => :'Float',
124
+ :'ca_cert' => :'String',
122
125
  :'pulp_labels' => :'Hash<String, String>',
126
+ :'headers' => :'Array<Object>',
127
+ :'client_cert' => :'String',
128
+ :'proxy_password' => :'String',
123
129
  :'username' => :'String',
124
- :'url' => :'String',
125
130
  :'password' => :'String',
126
- :'client_key' => :'String',
127
- :'download_concurrency' => :'Integer',
128
- :'name' => :'String',
129
- :'client_cert' => :'String',
130
- :'rate_limit' => :'Integer',
131
131
  :'proxy_username' => :'String',
132
- :'headers' => :'Array<Object>',
133
- :'max_retries' => :'Integer',
132
+ :'sock_read_timeout' => :'Float',
133
+ :'tls_validation' => :'Boolean',
134
134
  :'metadata_only' => :'Boolean',
135
135
  :'git_ref' => :'String'
136
136
  }
@@ -139,21 +139,21 @@ module PulpAnsibleClient
139
139
  # List of attributes with nullable: true
140
140
  def self.openapi_nullable
141
141
  Set.new([
142
- :'sock_read_timeout',
142
+ :'rate_limit',
143
+ :'download_concurrency',
144
+ :'proxy_url',
145
+ :'max_retries',
143
146
  :'sock_connect_timeout',
144
147
  :'connect_timeout',
148
+ :'client_key',
149
+ :'total_timeout',
145
150
  :'ca_cert',
146
- :'proxy_url',
151
+ :'client_cert',
147
152
  :'proxy_password',
148
- :'total_timeout',
149
153
  :'username',
150
154
  :'password',
151
- :'client_key',
152
- :'download_concurrency',
153
- :'client_cert',
154
- :'rate_limit',
155
155
  :'proxy_username',
156
- :'max_retries',
156
+ :'sock_read_timeout',
157
157
  ])
158
158
  end
159
159
 
@@ -172,88 +172,88 @@ module PulpAnsibleClient
172
172
  h[k.to_sym] = v
173
173
  }
174
174
 
175
- if attributes.key?(:'sock_read_timeout')
176
- self.sock_read_timeout = attributes[:'sock_read_timeout']
177
- end
178
-
179
- if attributes.key?(:'sock_connect_timeout')
180
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
175
+ if attributes.key?(:'rate_limit')
176
+ self.rate_limit = attributes[:'rate_limit']
181
177
  end
182
178
 
183
- if attributes.key?(:'connect_timeout')
184
- self.connect_timeout = attributes[:'connect_timeout']
179
+ if attributes.key?(:'download_concurrency')
180
+ self.download_concurrency = attributes[:'download_concurrency']
185
181
  end
186
182
 
187
- if attributes.key?(:'ca_cert')
188
- self.ca_cert = attributes[:'ca_cert']
183
+ if attributes.key?(:'name')
184
+ self.name = attributes[:'name']
189
185
  end
190
186
 
191
187
  if attributes.key?(:'proxy_url')
192
188
  self.proxy_url = attributes[:'proxy_url']
193
189
  end
194
190
 
195
- if attributes.key?(:'tls_validation')
196
- self.tls_validation = attributes[:'tls_validation']
197
- end
198
-
199
- if attributes.key?(:'proxy_password')
200
- self.proxy_password = attributes[:'proxy_password']
191
+ if attributes.key?(:'max_retries')
192
+ self.max_retries = attributes[:'max_retries']
201
193
  end
202
194
 
203
- if attributes.key?(:'total_timeout')
204
- self.total_timeout = attributes[:'total_timeout']
195
+ if attributes.key?(:'url')
196
+ self.url = attributes[:'url']
205
197
  end
206
198
 
207
- if attributes.key?(:'pulp_labels')
208
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
209
- self.pulp_labels = value
210
- end
199
+ if attributes.key?(:'sock_connect_timeout')
200
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
211
201
  end
212
202
 
213
- if attributes.key?(:'username')
214
- self.username = attributes[:'username']
203
+ if attributes.key?(:'connect_timeout')
204
+ self.connect_timeout = attributes[:'connect_timeout']
215
205
  end
216
206
 
217
- if attributes.key?(:'url')
218
- self.url = attributes[:'url']
207
+ if attributes.key?(:'client_key')
208
+ self.client_key = attributes[:'client_key']
219
209
  end
220
210
 
221
- if attributes.key?(:'password')
222
- self.password = attributes[:'password']
211
+ if attributes.key?(:'total_timeout')
212
+ self.total_timeout = attributes[:'total_timeout']
223
213
  end
224
214
 
225
- if attributes.key?(:'client_key')
226
- self.client_key = attributes[:'client_key']
215
+ if attributes.key?(:'ca_cert')
216
+ self.ca_cert = attributes[:'ca_cert']
227
217
  end
228
218
 
229
- if attributes.key?(:'download_concurrency')
230
- self.download_concurrency = attributes[:'download_concurrency']
219
+ if attributes.key?(:'pulp_labels')
220
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
221
+ self.pulp_labels = value
222
+ end
231
223
  end
232
224
 
233
- if attributes.key?(:'name')
234
- self.name = attributes[:'name']
225
+ if attributes.key?(:'headers')
226
+ if (value = attributes[:'headers']).is_a?(Array)
227
+ self.headers = value
228
+ end
235
229
  end
236
230
 
237
231
  if attributes.key?(:'client_cert')
238
232
  self.client_cert = attributes[:'client_cert']
239
233
  end
240
234
 
241
- if attributes.key?(:'rate_limit')
242
- self.rate_limit = attributes[:'rate_limit']
235
+ if attributes.key?(:'proxy_password')
236
+ self.proxy_password = attributes[:'proxy_password']
237
+ end
238
+
239
+ if attributes.key?(:'username')
240
+ self.username = attributes[:'username']
241
+ end
242
+
243
+ if attributes.key?(:'password')
244
+ self.password = attributes[:'password']
243
245
  end
244
246
 
245
247
  if attributes.key?(:'proxy_username')
246
248
  self.proxy_username = attributes[:'proxy_username']
247
249
  end
248
250
 
249
- if attributes.key?(:'headers')
250
- if (value = attributes[:'headers']).is_a?(Array)
251
- self.headers = value
252
- end
251
+ if attributes.key?(:'sock_read_timeout')
252
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
253
253
  end
254
254
 
255
- if attributes.key?(:'max_retries')
256
- self.max_retries = attributes[:'max_retries']
255
+ if attributes.key?(:'tls_validation')
256
+ self.tls_validation = attributes[:'tls_validation']
257
257
  end
258
258
 
259
259
  if attributes.key?(:'metadata_only')
@@ -269,38 +269,22 @@ module PulpAnsibleClient
269
269
  # @return Array for valid properties with the reasons
270
270
  def list_invalid_properties
271
271
  invalid_properties = Array.new
272
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
273
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
274
- end
275
-
276
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
277
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
272
+ if !@download_concurrency.nil? && @download_concurrency < 1
273
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
278
274
  end
279
275
 
280
- if !@connect_timeout.nil? && @connect_timeout < 0.0
281
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
276
+ if @name.nil?
277
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
282
278
  end
283
279
 
284
- if !@ca_cert.nil? && @ca_cert.to_s.length < 1
285
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
280
+ if @name.to_s.length < 1
281
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
286
282
  end
287
283
 
288
284
  if !@proxy_url.nil? && @proxy_url.to_s.length < 1
289
285
  invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
290
286
  end
291
287
 
292
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
293
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
294
- end
295
-
296
- if !@total_timeout.nil? && @total_timeout < 0.0
297
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
298
- end
299
-
300
- if !@username.nil? && @username.to_s.length < 1
301
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
302
- end
303
-
304
288
  if @url.nil?
305
289
  invalid_properties.push('invalid value for "url", url cannot be nil.')
306
290
  end
@@ -309,34 +293,50 @@ module PulpAnsibleClient
309
293
  invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
310
294
  end
311
295
 
312
- if !@password.nil? && @password.to_s.length < 1
313
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
296
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
297
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
314
298
  end
315
299
 
316
- if !@client_key.nil? && @client_key.to_s.length < 1
317
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
300
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
301
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
318
302
  end
319
303
 
320
- if !@download_concurrency.nil? && @download_concurrency < 1
321
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
304
+ if !@client_key.nil? && @client_key.to_s.length < 1
305
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
322
306
  end
323
307
 
324
- if @name.nil?
325
- invalid_properties.push('invalid value for "name", name cannot be nil.')
308
+ if !@total_timeout.nil? && @total_timeout < 0.0
309
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
326
310
  end
327
311
 
328
- if @name.to_s.length < 1
329
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
312
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
313
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
330
314
  end
331
315
 
332
316
  if !@client_cert.nil? && @client_cert.to_s.length < 1
333
317
  invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
334
318
  end
335
319
 
320
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
321
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
322
+ end
323
+
324
+ if !@username.nil? && @username.to_s.length < 1
325
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
326
+ end
327
+
328
+ if !@password.nil? && @password.to_s.length < 1
329
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
330
+ end
331
+
336
332
  if !@proxy_username.nil? && @proxy_username.to_s.length < 1
337
333
  invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
338
334
  end
339
335
 
336
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
337
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
338
+ end
339
+
340
340
  if !@git_ref.nil? && @git_ref.to_s.length < 1
341
341
  invalid_properties.push('invalid value for "git_ref", the character length must be great than or equal to 1.')
342
342
  end
@@ -347,65 +347,49 @@ module PulpAnsibleClient
347
347
  # Check to see if the all the properties in the model are valid
348
348
  # @return true if the model is valid
349
349
  def valid?
350
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
350
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
351
+ return false if @name.nil?
352
+ return false if @name.to_s.length < 1
353
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
354
+ return false if @url.nil?
355
+ return false if @url.to_s.length < 1
351
356
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
352
357
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
358
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
359
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
353
360
  return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
354
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
361
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
355
362
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
356
- return false if !@total_timeout.nil? && @total_timeout < 0.0
357
363
  return false if !@username.nil? && @username.to_s.length < 1
358
- return false if @url.nil?
359
- return false if @url.to_s.length < 1
360
364
  return false if !@password.nil? && @password.to_s.length < 1
361
- return false if !@client_key.nil? && @client_key.to_s.length < 1
362
- return false if !@download_concurrency.nil? && @download_concurrency < 1
363
- return false if @name.nil?
364
- return false if @name.to_s.length < 1
365
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
366
365
  return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
366
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
367
367
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
368
368
  true
369
369
  end
370
370
 
371
371
  # Custom attribute writer method with validation
372
- # @param [Object] sock_read_timeout Value to be assigned
373
- def sock_read_timeout=(sock_read_timeout)
374
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
375
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
376
- end
377
-
378
- @sock_read_timeout = sock_read_timeout
379
- end
380
-
381
- # Custom attribute writer method with validation
382
- # @param [Object] sock_connect_timeout Value to be assigned
383
- def sock_connect_timeout=(sock_connect_timeout)
384
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
385
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
372
+ # @param [Object] download_concurrency Value to be assigned
373
+ def download_concurrency=(download_concurrency)
374
+ if !download_concurrency.nil? && download_concurrency < 1
375
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
386
376
  end
387
377
 
388
- @sock_connect_timeout = sock_connect_timeout
378
+ @download_concurrency = download_concurrency
389
379
  end
390
380
 
391
381
  # Custom attribute writer method with validation
392
- # @param [Object] connect_timeout Value to be assigned
393
- def connect_timeout=(connect_timeout)
394
- if !connect_timeout.nil? && connect_timeout < 0.0
395
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
382
+ # @param [Object] name Value to be assigned
383
+ def name=(name)
384
+ if name.nil?
385
+ fail ArgumentError, 'name cannot be nil'
396
386
  end
397
387
 
398
- @connect_timeout = connect_timeout
399
- end
400
-
401
- # Custom attribute writer method with validation
402
- # @param [Object] ca_cert Value to be assigned
403
- def ca_cert=(ca_cert)
404
- if !ca_cert.nil? && ca_cert.to_s.length < 1
405
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
388
+ if name.to_s.length < 1
389
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
406
390
  end
407
391
 
408
- @ca_cert = ca_cert
392
+ @name = name
409
393
  end
410
394
 
411
395
  # Custom attribute writer method with validation
@@ -418,36 +402,6 @@ module PulpAnsibleClient
418
402
  @proxy_url = proxy_url
419
403
  end
420
404
 
421
- # Custom attribute writer method with validation
422
- # @param [Object] proxy_password Value to be assigned
423
- def proxy_password=(proxy_password)
424
- if !proxy_password.nil? && proxy_password.to_s.length < 1
425
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
426
- end
427
-
428
- @proxy_password = proxy_password
429
- end
430
-
431
- # Custom attribute writer method with validation
432
- # @param [Object] total_timeout Value to be assigned
433
- def total_timeout=(total_timeout)
434
- if !total_timeout.nil? && total_timeout < 0.0
435
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
436
- end
437
-
438
- @total_timeout = total_timeout
439
- end
440
-
441
- # Custom attribute writer method with validation
442
- # @param [Object] username Value to be assigned
443
- def username=(username)
444
- if !username.nil? && username.to_s.length < 1
445
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
446
- end
447
-
448
- @username = username
449
- end
450
-
451
405
  # Custom attribute writer method with validation
452
406
  # @param [Object] url Value to be assigned
453
407
  def url=(url)
@@ -463,13 +417,23 @@ module PulpAnsibleClient
463
417
  end
464
418
 
465
419
  # Custom attribute writer method with validation
466
- # @param [Object] password Value to be assigned
467
- def password=(password)
468
- if !password.nil? && password.to_s.length < 1
469
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
420
+ # @param [Object] sock_connect_timeout Value to be assigned
421
+ def sock_connect_timeout=(sock_connect_timeout)
422
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
423
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
470
424
  end
471
425
 
472
- @password = password
426
+ @sock_connect_timeout = sock_connect_timeout
427
+ end
428
+
429
+ # Custom attribute writer method with validation
430
+ # @param [Object] connect_timeout Value to be assigned
431
+ def connect_timeout=(connect_timeout)
432
+ if !connect_timeout.nil? && connect_timeout < 0.0
433
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
434
+ end
435
+
436
+ @connect_timeout = connect_timeout
473
437
  end
474
438
 
475
439
  # Custom attribute writer method with validation
@@ -483,27 +447,23 @@ module PulpAnsibleClient
483
447
  end
484
448
 
485
449
  # Custom attribute writer method with validation
486
- # @param [Object] download_concurrency Value to be assigned
487
- def download_concurrency=(download_concurrency)
488
- if !download_concurrency.nil? && download_concurrency < 1
489
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
450
+ # @param [Object] total_timeout Value to be assigned
451
+ def total_timeout=(total_timeout)
452
+ if !total_timeout.nil? && total_timeout < 0.0
453
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
490
454
  end
491
455
 
492
- @download_concurrency = download_concurrency
456
+ @total_timeout = total_timeout
493
457
  end
494
458
 
495
459
  # Custom attribute writer method with validation
496
- # @param [Object] name Value to be assigned
497
- def name=(name)
498
- if name.nil?
499
- fail ArgumentError, 'name cannot be nil'
500
- end
501
-
502
- if name.to_s.length < 1
503
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
460
+ # @param [Object] ca_cert Value to be assigned
461
+ def ca_cert=(ca_cert)
462
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
463
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
504
464
  end
505
465
 
506
- @name = name
466
+ @ca_cert = ca_cert
507
467
  end
508
468
 
509
469
  # Custom attribute writer method with validation
@@ -516,6 +476,36 @@ module PulpAnsibleClient
516
476
  @client_cert = client_cert
517
477
  end
518
478
 
479
+ # Custom attribute writer method with validation
480
+ # @param [Object] proxy_password Value to be assigned
481
+ def proxy_password=(proxy_password)
482
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
483
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
484
+ end
485
+
486
+ @proxy_password = proxy_password
487
+ end
488
+
489
+ # Custom attribute writer method with validation
490
+ # @param [Object] username Value to be assigned
491
+ def username=(username)
492
+ if !username.nil? && username.to_s.length < 1
493
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
494
+ end
495
+
496
+ @username = username
497
+ end
498
+
499
+ # Custom attribute writer method with validation
500
+ # @param [Object] password Value to be assigned
501
+ def password=(password)
502
+ if !password.nil? && password.to_s.length < 1
503
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
504
+ end
505
+
506
+ @password = password
507
+ end
508
+
519
509
  # Custom attribute writer method with validation
520
510
  # @param [Object] proxy_username Value to be assigned
521
511
  def proxy_username=(proxy_username)
@@ -526,6 +516,16 @@ module PulpAnsibleClient
526
516
  @proxy_username = proxy_username
527
517
  end
528
518
 
519
+ # Custom attribute writer method with validation
520
+ # @param [Object] sock_read_timeout Value to be assigned
521
+ def sock_read_timeout=(sock_read_timeout)
522
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
523
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
524
+ end
525
+
526
+ @sock_read_timeout = sock_read_timeout
527
+ end
528
+
529
529
  # Custom attribute writer method with validation
530
530
  # @param [Object] git_ref Value to be assigned
531
531
  def git_ref=(git_ref)
@@ -541,26 +541,26 @@ module PulpAnsibleClient
541
541
  def ==(o)
542
542
  return true if self.equal?(o)
543
543
  self.class == o.class &&
544
- sock_read_timeout == o.sock_read_timeout &&
544
+ rate_limit == o.rate_limit &&
545
+ download_concurrency == o.download_concurrency &&
546
+ name == o.name &&
547
+ proxy_url == o.proxy_url &&
548
+ max_retries == o.max_retries &&
549
+ url == o.url &&
545
550
  sock_connect_timeout == o.sock_connect_timeout &&
546
551
  connect_timeout == o.connect_timeout &&
547
- ca_cert == o.ca_cert &&
548
- proxy_url == o.proxy_url &&
549
- tls_validation == o.tls_validation &&
550
- proxy_password == o.proxy_password &&
552
+ client_key == o.client_key &&
551
553
  total_timeout == o.total_timeout &&
554
+ ca_cert == o.ca_cert &&
552
555
  pulp_labels == o.pulp_labels &&
556
+ headers == o.headers &&
557
+ client_cert == o.client_cert &&
558
+ proxy_password == o.proxy_password &&
553
559
  username == o.username &&
554
- url == o.url &&
555
560
  password == o.password &&
556
- client_key == o.client_key &&
557
- download_concurrency == o.download_concurrency &&
558
- name == o.name &&
559
- client_cert == o.client_cert &&
560
- rate_limit == o.rate_limit &&
561
561
  proxy_username == o.proxy_username &&
562
- headers == o.headers &&
563
- max_retries == o.max_retries &&
562
+ sock_read_timeout == o.sock_read_timeout &&
563
+ tls_validation == o.tls_validation &&
564
564
  metadata_only == o.metadata_only &&
565
565
  git_ref == o.git_ref
566
566
  end
@@ -574,7 +574,7 @@ module PulpAnsibleClient
574
574
  # Calculates hash code according to all attributes.
575
575
  # @return [Integer] Hash code
576
576
  def hash
577
- [sock_read_timeout, sock_connect_timeout, connect_timeout, ca_cert, proxy_url, tls_validation, proxy_password, total_timeout, pulp_labels, username, url, password, client_key, download_concurrency, name, client_cert, rate_limit, proxy_username, headers, max_retries, metadata_only, git_ref].hash
577
+ [rate_limit, download_concurrency, name, proxy_url, max_retries, url, sock_connect_timeout, connect_timeout, client_key, total_timeout, ca_cert, pulp_labels, headers, client_cert, proxy_password, username, password, proxy_username, sock_read_timeout, tls_validation, metadata_only, git_ref].hash
578
578
  end
579
579
 
580
580
  # Builds the object from hash