pulp_ansible_client 0.22.9 → 0.23.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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleAnsibleDistribution.md +3 -5
  4. data/docs/AnsibleAnsibleDistributionResponse.md +4 -12
  5. data/docs/AnsibleCollectionVersion.md +7 -7
  6. data/docs/AnsibleCollectionVersionResponse.md +4 -4
  7. data/docs/AnsibleGitRemote.md +28 -28
  8. data/docs/AnsibleGitRemoteResponse.md +28 -28
  9. data/docs/AnsibleRoleResponse.md +4 -4
  10. data/docs/ContentCollectionVersionsApi.md +8 -10
  11. data/docs/PatchedansibleAnsibleDistribution.md +3 -5
  12. data/docs/PatchedansibleGitRemote.md +28 -28
  13. data/docs/PulpAnsibleApiV3CollectionsVersionsApi.md +2 -4
  14. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -4
  15. data/docs/PulpAnsibleDefaultApiV3CollectionsVersionsApi.md +2 -4
  16. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -4
  17. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -15
  18. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb +3 -6
  19. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -6
  20. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
  21. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb +3 -6
  22. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -6
  23. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
  24. data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +16 -28
  25. data/lib/pulp_ansible_client/models/ansible_ansible_distribution_response.rb +20 -62
  26. data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata.rb +3 -3
  27. data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata_response.rb +3 -3
  28. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +20 -20
  29. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +20 -20
  30. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +28 -28
  31. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +21 -21
  32. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +250 -250
  33. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +167 -167
  34. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +20 -20
  35. data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +20 -20
  36. data/lib/pulp_ansible_client/models/ansible_role_response.rb +17 -17
  37. data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +16 -28
  38. data/lib/pulp_ansible_client/models/patchedansible_ansible_namespace_metadata.rb +3 -3
  39. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +20 -20
  40. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +238 -238
  41. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +20 -20
  42. data/lib/pulp_ansible_client/version.rb +1 -1
  43. data/spec/api/content_collection_versions_api_spec.rb +4 -5
  44. data/spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb +1 -2
  45. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -2
  46. data/spec/api/pulp_ansible_default_api_v3_collections_versions_api_spec.rb +1 -2
  47. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -2
  48. data/spec/models/ansible_ansible_distribution_response_spec.rb +4 -28
  49. data/spec/models/ansible_ansible_distribution_spec.rb +4 -10
  50. data/spec/models/ansible_collection_version_response_spec.rb +4 -4
  51. data/spec/models/ansible_collection_version_spec.rb +5 -5
  52. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  53. data/spec/models/ansible_git_remote_spec.rb +19 -19
  54. data/spec/models/ansible_role_response_spec.rb +3 -3
  55. data/spec/models/patchedansible_ansible_distribution_spec.rb +4 -10
  56. data/spec/models/patchedansible_git_remote_spec.rb +19 -19
  57. metadata +133 -133
@@ -15,63 +15,63 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemoteResponse
18
- # A PEM encoded client certificate used for authentication.
19
- attr_accessor :client_cert
20
-
21
- # Total number of simultaneous connections. If not set then the default value will be used.
22
- attr_accessor :download_concurrency
23
-
24
- # The URL of an external content source.
25
- attr_accessor :url
26
-
27
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
28
- attr_accessor :ca_cert
29
-
30
- # The proxy URL. Format: scheme://host:port
31
- attr_accessor :proxy_url
32
-
33
- attr_accessor :pulp_labels
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
34
20
 
35
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
36
- attr_accessor :connect_timeout
21
+ # The Pulp Resource Name (PRN).
22
+ attr_accessor :prn
37
23
 
38
24
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
39
25
  attr_accessor :total_timeout
40
26
 
41
- # Limits requests per second for each concurrent downloader
42
- attr_accessor :rate_limit
27
+ # The URL of an external content source.
28
+ attr_accessor :url
43
29
 
44
30
  # 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.
45
31
  attr_accessor :sock_connect_timeout
46
32
 
47
- # If True, TLS peer validation must be performed.
48
- attr_accessor :tls_validation
33
+ # A unique name for this remote.
34
+ attr_accessor :name
49
35
 
50
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
51
- attr_accessor :max_retries
36
+ attr_accessor :pulp_labels
52
37
 
53
- # The Pulp Resource Name (PRN).
54
- attr_accessor :prn
38
+ attr_accessor :pulp_href
55
39
 
56
- # Timestamp of the most recent update of the remote.
57
- attr_accessor :pulp_last_updated
40
+ # Limits requests per second for each concurrent downloader
41
+ attr_accessor :rate_limit
58
42
 
59
43
  # Timestamp of creation.
60
44
  attr_accessor :pulp_created
61
45
 
62
- # 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.
63
- attr_accessor :sock_read_timeout
64
-
65
46
  # Headers for aiohttp.Clientsession
66
47
  attr_accessor :headers
67
48
 
49
+ # Total number of simultaneous connections. If not set then the default value will be used.
50
+ attr_accessor :download_concurrency
51
+
68
52
  # List of hidden (write only) fields
69
53
  attr_accessor :hidden_fields
70
54
 
71
- attr_accessor :pulp_href
55
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
56
+ attr_accessor :connect_timeout
72
57
 
73
- # A unique name for this remote.
74
- attr_accessor :name
58
+ # The proxy URL. Format: scheme://host:port
59
+ attr_accessor :proxy_url
60
+
61
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
62
+ attr_accessor :ca_cert
63
+
64
+ # If True, TLS peer validation must be performed.
65
+ attr_accessor :tls_validation
66
+
67
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
68
+ attr_accessor :max_retries
69
+
70
+ # A PEM encoded client certificate used for authentication.
71
+ attr_accessor :client_cert
72
+
73
+ # Timestamp of the most recent update of the remote.
74
+ attr_accessor :pulp_last_updated
75
75
 
76
76
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
77
77
  attr_accessor :metadata_only
@@ -82,26 +82,26 @@ module PulpAnsibleClient
82
82
  # Attribute mapping from ruby-style variable name to JSON key.
83
83
  def self.attribute_map
84
84
  {
85
- :'client_cert' => :'client_cert',
86
- :'download_concurrency' => :'download_concurrency',
85
+ :'sock_read_timeout' => :'sock_read_timeout',
86
+ :'prn' => :'prn',
87
+ :'total_timeout' => :'total_timeout',
87
88
  :'url' => :'url',
88
- :'ca_cert' => :'ca_cert',
89
- :'proxy_url' => :'proxy_url',
89
+ :'sock_connect_timeout' => :'sock_connect_timeout',
90
+ :'name' => :'name',
90
91
  :'pulp_labels' => :'pulp_labels',
91
- :'connect_timeout' => :'connect_timeout',
92
- :'total_timeout' => :'total_timeout',
92
+ :'pulp_href' => :'pulp_href',
93
93
  :'rate_limit' => :'rate_limit',
94
- :'sock_connect_timeout' => :'sock_connect_timeout',
95
- :'tls_validation' => :'tls_validation',
96
- :'max_retries' => :'max_retries',
97
- :'prn' => :'prn',
98
- :'pulp_last_updated' => :'pulp_last_updated',
99
94
  :'pulp_created' => :'pulp_created',
100
- :'sock_read_timeout' => :'sock_read_timeout',
101
95
  :'headers' => :'headers',
96
+ :'download_concurrency' => :'download_concurrency',
102
97
  :'hidden_fields' => :'hidden_fields',
103
- :'pulp_href' => :'pulp_href',
104
- :'name' => :'name',
98
+ :'connect_timeout' => :'connect_timeout',
99
+ :'proxy_url' => :'proxy_url',
100
+ :'ca_cert' => :'ca_cert',
101
+ :'tls_validation' => :'tls_validation',
102
+ :'max_retries' => :'max_retries',
103
+ :'client_cert' => :'client_cert',
104
+ :'pulp_last_updated' => :'pulp_last_updated',
105
105
  :'metadata_only' => :'metadata_only',
106
106
  :'git_ref' => :'git_ref'
107
107
  }
@@ -110,26 +110,26 @@ module PulpAnsibleClient
110
110
  # Attribute type mapping.
111
111
  def self.openapi_types
112
112
  {
113
- :'client_cert' => :'String',
114
- :'download_concurrency' => :'Integer',
113
+ :'sock_read_timeout' => :'Float',
114
+ :'prn' => :'String',
115
+ :'total_timeout' => :'Float',
115
116
  :'url' => :'String',
116
- :'ca_cert' => :'String',
117
- :'proxy_url' => :'String',
117
+ :'sock_connect_timeout' => :'Float',
118
+ :'name' => :'String',
118
119
  :'pulp_labels' => :'Hash<String, String>',
119
- :'connect_timeout' => :'Float',
120
- :'total_timeout' => :'Float',
120
+ :'pulp_href' => :'String',
121
121
  :'rate_limit' => :'Integer',
122
- :'sock_connect_timeout' => :'Float',
123
- :'tls_validation' => :'Boolean',
124
- :'max_retries' => :'Integer',
125
- :'prn' => :'String',
126
- :'pulp_last_updated' => :'DateTime',
127
122
  :'pulp_created' => :'DateTime',
128
- :'sock_read_timeout' => :'Float',
129
123
  :'headers' => :'Array<Object>',
124
+ :'download_concurrency' => :'Integer',
130
125
  :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
131
- :'pulp_href' => :'String',
132
- :'name' => :'String',
126
+ :'connect_timeout' => :'Float',
127
+ :'proxy_url' => :'String',
128
+ :'ca_cert' => :'String',
129
+ :'tls_validation' => :'Boolean',
130
+ :'max_retries' => :'Integer',
131
+ :'client_cert' => :'String',
132
+ :'pulp_last_updated' => :'DateTime',
133
133
  :'metadata_only' => :'Boolean',
134
134
  :'git_ref' => :'String'
135
135
  }
@@ -138,16 +138,16 @@ module PulpAnsibleClient
138
138
  # List of attributes with nullable: true
139
139
  def self.openapi_nullable
140
140
  Set.new([
141
- :'client_cert',
142
- :'download_concurrency',
143
- :'ca_cert',
144
- :'proxy_url',
145
- :'connect_timeout',
141
+ :'sock_read_timeout',
146
142
  :'total_timeout',
147
- :'rate_limit',
148
143
  :'sock_connect_timeout',
144
+ :'rate_limit',
145
+ :'download_concurrency',
146
+ :'connect_timeout',
147
+ :'proxy_url',
148
+ :'ca_cert',
149
149
  :'max_retries',
150
- :'sock_read_timeout',
150
+ :'client_cert',
151
151
  ])
152
152
  end
153
153
 
@@ -166,24 +166,28 @@ module PulpAnsibleClient
166
166
  h[k.to_sym] = v
167
167
  }
168
168
 
169
- if attributes.key?(:'client_cert')
170
- self.client_cert = attributes[:'client_cert']
169
+ if attributes.key?(:'sock_read_timeout')
170
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
171
171
  end
172
172
 
173
- if attributes.key?(:'download_concurrency')
174
- self.download_concurrency = attributes[:'download_concurrency']
173
+ if attributes.key?(:'prn')
174
+ self.prn = attributes[:'prn']
175
+ end
176
+
177
+ if attributes.key?(:'total_timeout')
178
+ self.total_timeout = attributes[:'total_timeout']
175
179
  end
176
180
 
177
181
  if attributes.key?(:'url')
178
182
  self.url = attributes[:'url']
179
183
  end
180
184
 
181
- if attributes.key?(:'ca_cert')
182
- self.ca_cert = attributes[:'ca_cert']
185
+ if attributes.key?(:'sock_connect_timeout')
186
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
183
187
  end
184
188
 
185
- if attributes.key?(:'proxy_url')
186
- self.proxy_url = attributes[:'proxy_url']
189
+ if attributes.key?(:'name')
190
+ self.name = attributes[:'name']
187
191
  end
188
192
 
189
193
  if attributes.key?(:'pulp_labels')
@@ -192,64 +196,60 @@ module PulpAnsibleClient
192
196
  end
193
197
  end
194
198
 
195
- if attributes.key?(:'connect_timeout')
196
- self.connect_timeout = attributes[:'connect_timeout']
197
- end
198
-
199
- if attributes.key?(:'total_timeout')
200
- self.total_timeout = attributes[:'total_timeout']
199
+ if attributes.key?(:'pulp_href')
200
+ self.pulp_href = attributes[:'pulp_href']
201
201
  end
202
202
 
203
203
  if attributes.key?(:'rate_limit')
204
204
  self.rate_limit = attributes[:'rate_limit']
205
205
  end
206
206
 
207
- if attributes.key?(:'sock_connect_timeout')
208
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
207
+ if attributes.key?(:'pulp_created')
208
+ self.pulp_created = attributes[:'pulp_created']
209
209
  end
210
210
 
211
- if attributes.key?(:'tls_validation')
212
- self.tls_validation = attributes[:'tls_validation']
211
+ if attributes.key?(:'headers')
212
+ if (value = attributes[:'headers']).is_a?(Array)
213
+ self.headers = value
214
+ end
213
215
  end
214
216
 
215
- if attributes.key?(:'max_retries')
216
- self.max_retries = attributes[:'max_retries']
217
+ if attributes.key?(:'download_concurrency')
218
+ self.download_concurrency = attributes[:'download_concurrency']
217
219
  end
218
220
 
219
- if attributes.key?(:'prn')
220
- self.prn = attributes[:'prn']
221
+ if attributes.key?(:'hidden_fields')
222
+ if (value = attributes[:'hidden_fields']).is_a?(Array)
223
+ self.hidden_fields = value
224
+ end
221
225
  end
222
226
 
223
- if attributes.key?(:'pulp_last_updated')
224
- self.pulp_last_updated = attributes[:'pulp_last_updated']
227
+ if attributes.key?(:'connect_timeout')
228
+ self.connect_timeout = attributes[:'connect_timeout']
225
229
  end
226
230
 
227
- if attributes.key?(:'pulp_created')
228
- self.pulp_created = attributes[:'pulp_created']
231
+ if attributes.key?(:'proxy_url')
232
+ self.proxy_url = attributes[:'proxy_url']
229
233
  end
230
234
 
231
- if attributes.key?(:'sock_read_timeout')
232
- self.sock_read_timeout = attributes[:'sock_read_timeout']
235
+ if attributes.key?(:'ca_cert')
236
+ self.ca_cert = attributes[:'ca_cert']
233
237
  end
234
238
 
235
- if attributes.key?(:'headers')
236
- if (value = attributes[:'headers']).is_a?(Array)
237
- self.headers = value
238
- end
239
+ if attributes.key?(:'tls_validation')
240
+ self.tls_validation = attributes[:'tls_validation']
239
241
  end
240
242
 
241
- if attributes.key?(:'hidden_fields')
242
- if (value = attributes[:'hidden_fields']).is_a?(Array)
243
- self.hidden_fields = value
244
- end
243
+ if attributes.key?(:'max_retries')
244
+ self.max_retries = attributes[:'max_retries']
245
245
  end
246
246
 
247
- if attributes.key?(:'pulp_href')
248
- self.pulp_href = attributes[:'pulp_href']
247
+ if attributes.key?(:'client_cert')
248
+ self.client_cert = attributes[:'client_cert']
249
249
  end
250
250
 
251
- if attributes.key?(:'name')
252
- self.name = attributes[:'name']
251
+ if attributes.key?(:'pulp_last_updated')
252
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
253
253
  end
254
254
 
255
255
  if attributes.key?(:'metadata_only')
@@ -265,32 +265,32 @@ module PulpAnsibleClient
265
265
  # @return Array for valid properties with the reasons
266
266
  def list_invalid_properties
267
267
  invalid_properties = Array.new
268
- if !@download_concurrency.nil? && @download_concurrency < 1
269
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
268
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0
269
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
270
+ end
271
+
272
+ if !@total_timeout.nil? && @total_timeout < 0
273
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
270
274
  end
271
275
 
272
276
  if @url.nil?
273
277
  invalid_properties.push('invalid value for "url", url cannot be nil.')
274
278
  end
275
279
 
276
- if !@connect_timeout.nil? && @connect_timeout < 0.0
277
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
280
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
281
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
278
282
  end
279
283
 
280
- if !@total_timeout.nil? && @total_timeout < 0.0
281
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
284
+ if @name.nil?
285
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
282
286
  end
283
287
 
284
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
285
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
288
+ if !@download_concurrency.nil? && @download_concurrency < 1
289
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
286
290
  end
287
291
 
288
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
289
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
290
- end
291
-
292
- if @name.nil?
293
- invalid_properties.push('invalid value for "name", name cannot be nil.')
292
+ if !@connect_timeout.nil? && @connect_timeout < 0
293
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
294
294
  end
295
295
 
296
296
  invalid_properties
@@ -299,41 +299,31 @@ module PulpAnsibleClient
299
299
  # Check to see if the all the properties in the model are valid
300
300
  # @return true if the model is valid
301
301
  def valid?
302
- return false if !@download_concurrency.nil? && @download_concurrency < 1
302
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
303
+ return false if !@total_timeout.nil? && @total_timeout < 0
303
304
  return false if @url.nil?
304
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
305
- return false if !@total_timeout.nil? && @total_timeout < 0.0
306
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
307
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
305
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
308
306
  return false if @name.nil?
307
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
308
+ return false if !@connect_timeout.nil? && @connect_timeout < 0
309
309
  true
310
310
  end
311
311
 
312
312
  # Custom attribute writer method with validation
313
- # @param [Object] download_concurrency Value to be assigned
314
- def download_concurrency=(download_concurrency)
315
- if !download_concurrency.nil? && download_concurrency < 1
316
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
317
- end
318
-
319
- @download_concurrency = download_concurrency
320
- end
321
-
322
- # Custom attribute writer method with validation
323
- # @param [Object] connect_timeout Value to be assigned
324
- def connect_timeout=(connect_timeout)
325
- if !connect_timeout.nil? && connect_timeout < 0.0
326
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
313
+ # @param [Object] sock_read_timeout Value to be assigned
314
+ def sock_read_timeout=(sock_read_timeout)
315
+ if !sock_read_timeout.nil? && sock_read_timeout < 0
316
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
327
317
  end
328
318
 
329
- @connect_timeout = connect_timeout
319
+ @sock_read_timeout = sock_read_timeout
330
320
  end
331
321
 
332
322
  # Custom attribute writer method with validation
333
323
  # @param [Object] total_timeout Value to be assigned
334
324
  def total_timeout=(total_timeout)
335
- if !total_timeout.nil? && total_timeout < 0.0
336
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
325
+ if !total_timeout.nil? && total_timeout < 0
326
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
337
327
  end
338
328
 
339
329
  @total_timeout = total_timeout
@@ -342,21 +332,31 @@ module PulpAnsibleClient
342
332
  # Custom attribute writer method with validation
343
333
  # @param [Object] sock_connect_timeout Value to be assigned
344
334
  def sock_connect_timeout=(sock_connect_timeout)
345
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
346
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
335
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0
336
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
347
337
  end
348
338
 
349
339
  @sock_connect_timeout = sock_connect_timeout
350
340
  end
351
341
 
352
342
  # Custom attribute writer method with validation
353
- # @param [Object] sock_read_timeout Value to be assigned
354
- def sock_read_timeout=(sock_read_timeout)
355
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
356
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
343
+ # @param [Object] download_concurrency Value to be assigned
344
+ def download_concurrency=(download_concurrency)
345
+ if !download_concurrency.nil? && download_concurrency < 1
346
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
357
347
  end
358
348
 
359
- @sock_read_timeout = sock_read_timeout
349
+ @download_concurrency = download_concurrency
350
+ end
351
+
352
+ # Custom attribute writer method with validation
353
+ # @param [Object] connect_timeout Value to be assigned
354
+ def connect_timeout=(connect_timeout)
355
+ if !connect_timeout.nil? && connect_timeout < 0
356
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
357
+ end
358
+
359
+ @connect_timeout = connect_timeout
360
360
  end
361
361
 
362
362
  # Checks equality by comparing each attribute.
@@ -364,26 +364,26 @@ module PulpAnsibleClient
364
364
  def ==(o)
365
365
  return true if self.equal?(o)
366
366
  self.class == o.class &&
367
- client_cert == o.client_cert &&
368
- download_concurrency == o.download_concurrency &&
367
+ sock_read_timeout == o.sock_read_timeout &&
368
+ prn == o.prn &&
369
+ total_timeout == o.total_timeout &&
369
370
  url == o.url &&
370
- ca_cert == o.ca_cert &&
371
- proxy_url == o.proxy_url &&
371
+ sock_connect_timeout == o.sock_connect_timeout &&
372
+ name == o.name &&
372
373
  pulp_labels == o.pulp_labels &&
373
- connect_timeout == o.connect_timeout &&
374
- total_timeout == o.total_timeout &&
374
+ pulp_href == o.pulp_href &&
375
375
  rate_limit == o.rate_limit &&
376
- sock_connect_timeout == o.sock_connect_timeout &&
377
- tls_validation == o.tls_validation &&
378
- max_retries == o.max_retries &&
379
- prn == o.prn &&
380
- pulp_last_updated == o.pulp_last_updated &&
381
376
  pulp_created == o.pulp_created &&
382
- sock_read_timeout == o.sock_read_timeout &&
383
377
  headers == o.headers &&
378
+ download_concurrency == o.download_concurrency &&
384
379
  hidden_fields == o.hidden_fields &&
385
- pulp_href == o.pulp_href &&
386
- name == o.name &&
380
+ connect_timeout == o.connect_timeout &&
381
+ proxy_url == o.proxy_url &&
382
+ ca_cert == o.ca_cert &&
383
+ tls_validation == o.tls_validation &&
384
+ max_retries == o.max_retries &&
385
+ client_cert == o.client_cert &&
386
+ pulp_last_updated == o.pulp_last_updated &&
387
387
  metadata_only == o.metadata_only &&
388
388
  git_ref == o.git_ref
389
389
  end
@@ -397,7 +397,7 @@ module PulpAnsibleClient
397
397
  # Calculates hash code according to all attributes.
398
398
  # @return [Integer] Hash code
399
399
  def hash
400
- [client_cert, download_concurrency, url, ca_cert, proxy_url, pulp_labels, connect_timeout, total_timeout, rate_limit, sock_connect_timeout, tls_validation, max_retries, prn, pulp_last_updated, pulp_created, sock_read_timeout, headers, hidden_fields, pulp_href, name, metadata_only, git_ref].hash
400
+ [sock_read_timeout, prn, total_timeout, url, sock_connect_timeout, name, pulp_labels, pulp_href, rate_limit, pulp_created, headers, download_concurrency, hidden_fields, connect_timeout, proxy_url, ca_cert, tls_validation, max_retries, client_cert, pulp_last_updated, metadata_only, git_ref].hash
401
401
  end
402
402
 
403
403
  # Builds the object from hash
@@ -312,20 +312,20 @@ module PulpAnsibleClient
312
312
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
313
313
  end
314
314
 
315
- if !@total_timeout.nil? && @total_timeout < 0.0
316
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
315
+ if !@total_timeout.nil? && @total_timeout < 0
316
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
317
317
  end
318
318
 
319
- if !@connect_timeout.nil? && @connect_timeout < 0.0
320
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
319
+ if !@connect_timeout.nil? && @connect_timeout < 0
320
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
321
321
  end
322
322
 
323
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
324
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
323
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
324
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
325
325
  end
326
326
 
327
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
328
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
327
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0
328
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
329
329
  end
330
330
 
331
331
  invalid_properties
@@ -347,10 +347,10 @@ module PulpAnsibleClient
347
347
  return false if !@username.nil? && @username.to_s.length < 1
348
348
  return false if !@password.nil? && @password.to_s.length < 1
349
349
  return false if !@download_concurrency.nil? && @download_concurrency < 1
350
- return false if !@total_timeout.nil? && @total_timeout < 0.0
351
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
352
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
353
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
350
+ return false if !@total_timeout.nil? && @total_timeout < 0
351
+ return false if !@connect_timeout.nil? && @connect_timeout < 0
352
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
353
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
354
354
  true
355
355
  end
356
356
 
@@ -475,8 +475,8 @@ module PulpAnsibleClient
475
475
  # Custom attribute writer method with validation
476
476
  # @param [Object] total_timeout Value to be assigned
477
477
  def total_timeout=(total_timeout)
478
- if !total_timeout.nil? && total_timeout < 0.0
479
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
478
+ if !total_timeout.nil? && total_timeout < 0
479
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
480
480
  end
481
481
 
482
482
  @total_timeout = total_timeout
@@ -485,8 +485,8 @@ module PulpAnsibleClient
485
485
  # Custom attribute writer method with validation
486
486
  # @param [Object] connect_timeout Value to be assigned
487
487
  def connect_timeout=(connect_timeout)
488
- if !connect_timeout.nil? && connect_timeout < 0.0
489
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
488
+ if !connect_timeout.nil? && connect_timeout < 0
489
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
490
490
  end
491
491
 
492
492
  @connect_timeout = connect_timeout
@@ -495,8 +495,8 @@ module PulpAnsibleClient
495
495
  # Custom attribute writer method with validation
496
496
  # @param [Object] sock_connect_timeout Value to be assigned
497
497
  def sock_connect_timeout=(sock_connect_timeout)
498
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
499
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
498
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0
499
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
500
500
  end
501
501
 
502
502
  @sock_connect_timeout = sock_connect_timeout
@@ -505,8 +505,8 @@ module PulpAnsibleClient
505
505
  # Custom attribute writer method with validation
506
506
  # @param [Object] sock_read_timeout Value to be assigned
507
507
  def sock_read_timeout=(sock_read_timeout)
508
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
509
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
508
+ if !sock_read_timeout.nil? && sock_read_timeout < 0
509
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
510
510
  end
511
511
 
512
512
  @sock_read_timeout = sock_read_timeout