pulp_ansible_client 0.20.9 → 0.20.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionVersion.md +5 -5
  4. data/docs/AnsibleCollectionVersionResponse.md +3 -3
  5. data/docs/AnsibleGitRemote.md +28 -28
  6. data/docs/AnsibleGitRemoteResponse.md +26 -26
  7. data/docs/AnsibleRole.md +3 -3
  8. data/docs/AnsibleRoleResponse.md +4 -4
  9. data/docs/ContentCollectionVersionsApi.md +4 -4
  10. data/docs/PatchedansibleGitRemote.md +28 -28
  11. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +6 -6
  12. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +20 -20
  13. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +20 -20
  14. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +21 -21
  15. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
  16. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +241 -241
  17. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +150 -150
  18. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  19. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +20 -20
  20. data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +20 -20
  21. data/lib/pulp_ansible_client/models/ansible_role_response.rb +14 -14
  22. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +20 -20
  23. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +237 -237
  24. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +20 -20
  25. data/lib/pulp_ansible_client/version.rb +1 -1
  26. data/spec/api/content_collection_versions_api_spec.rb +2 -2
  27. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  28. data/spec/models/ansible_collection_version_spec.rb +4 -4
  29. data/spec/models/ansible_git_remote_response_spec.rb +18 -18
  30. data/spec/models/ansible_git_remote_spec.rb +18 -18
  31. data/spec/models/ansible_role_response_spec.rb +2 -2
  32. data/spec/models/ansible_role_spec.rb +2 -2
  33. data/spec/models/patchedansible_git_remote_spec.rb +18 -18
  34. metadata +140 -140
@@ -15,60 +15,60 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemoteResponse
18
- # Timestamp of creation.
19
- attr_accessor :pulp_created
18
+ # Total number of simultaneous connections. If not set then the default value will be used.
19
+ attr_accessor :download_concurrency
20
+
21
+ # The proxy URL. Format: scheme://host:port
22
+ attr_accessor :proxy_url
20
23
 
21
24
  attr_accessor :pulp_href
22
25
 
23
- # 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.
24
- attr_accessor :sock_read_timeout
26
+ # 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.
27
+ attr_accessor :sock_connect_timeout
25
28
 
26
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
27
- attr_accessor :total_timeout
29
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
30
+ attr_accessor :ca_cert
28
31
 
29
32
  attr_accessor :pulp_labels
30
33
 
31
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
32
- attr_accessor :connect_timeout
34
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
35
+ attr_accessor :total_timeout
36
+
37
+ # Timestamp of the most recent update of the remote.
38
+ attr_accessor :pulp_last_updated
33
39
 
34
40
  # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
35
41
  attr_accessor :max_retries
36
42
 
37
- # The proxy URL. Format: scheme://host:port
38
- attr_accessor :proxy_url
39
-
40
- # Timestamp of the most recent update of the remote.
41
- attr_accessor :pulp_last_updated
43
+ # Limits requests per second for each concurrent downloader
44
+ attr_accessor :rate_limit
42
45
 
43
- # A PEM encoded client certificate used for authentication.
44
- attr_accessor :client_cert
46
+ # 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.
47
+ attr_accessor :sock_read_timeout
45
48
 
46
49
  # A unique name for this remote.
47
50
  attr_accessor :name
48
51
 
49
- # If True, TLS peer validation must be performed.
50
- attr_accessor :tls_validation
51
-
52
- # Limits requests per second for each concurrent downloader
53
- attr_accessor :rate_limit
54
-
55
52
  # Headers for aiohttp.Clientsession
56
53
  attr_accessor :headers
57
54
 
58
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
59
- attr_accessor :ca_cert
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
60
57
 
61
- # 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.
62
- attr_accessor :sock_connect_timeout
58
+ # The URL of an external content source.
59
+ attr_accessor :url
60
+
61
+ # If True, TLS peer validation must be performed.
62
+ attr_accessor :tls_validation
63
63
 
64
64
  # List of hidden (write only) fields
65
65
  attr_accessor :hidden_fields
66
66
 
67
- # The URL of an external content source.
68
- attr_accessor :url
67
+ # A PEM encoded client certificate used for authentication.
68
+ attr_accessor :client_cert
69
69
 
70
- # Total number of simultaneous connections. If not set then the default value will be used.
71
- attr_accessor :download_concurrency
70
+ # Timestamp of creation.
71
+ attr_accessor :pulp_created
72
72
 
73
73
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
74
74
  attr_accessor :metadata_only
@@ -79,25 +79,25 @@ module PulpAnsibleClient
79
79
  # Attribute mapping from ruby-style variable name to JSON key.
80
80
  def self.attribute_map
81
81
  {
82
- :'pulp_created' => :'pulp_created',
82
+ :'download_concurrency' => :'download_concurrency',
83
+ :'proxy_url' => :'proxy_url',
83
84
  :'pulp_href' => :'pulp_href',
84
- :'sock_read_timeout' => :'sock_read_timeout',
85
- :'total_timeout' => :'total_timeout',
85
+ :'sock_connect_timeout' => :'sock_connect_timeout',
86
+ :'ca_cert' => :'ca_cert',
86
87
  :'pulp_labels' => :'pulp_labels',
87
- :'connect_timeout' => :'connect_timeout',
88
- :'max_retries' => :'max_retries',
89
- :'proxy_url' => :'proxy_url',
88
+ :'total_timeout' => :'total_timeout',
90
89
  :'pulp_last_updated' => :'pulp_last_updated',
91
- :'client_cert' => :'client_cert',
92
- :'name' => :'name',
93
- :'tls_validation' => :'tls_validation',
90
+ :'max_retries' => :'max_retries',
94
91
  :'rate_limit' => :'rate_limit',
92
+ :'sock_read_timeout' => :'sock_read_timeout',
93
+ :'name' => :'name',
95
94
  :'headers' => :'headers',
96
- :'ca_cert' => :'ca_cert',
97
- :'sock_connect_timeout' => :'sock_connect_timeout',
98
- :'hidden_fields' => :'hidden_fields',
95
+ :'connect_timeout' => :'connect_timeout',
99
96
  :'url' => :'url',
100
- :'download_concurrency' => :'download_concurrency',
97
+ :'tls_validation' => :'tls_validation',
98
+ :'hidden_fields' => :'hidden_fields',
99
+ :'client_cert' => :'client_cert',
100
+ :'pulp_created' => :'pulp_created',
101
101
  :'metadata_only' => :'metadata_only',
102
102
  :'git_ref' => :'git_ref'
103
103
  }
@@ -106,25 +106,25 @@ module PulpAnsibleClient
106
106
  # Attribute type mapping.
107
107
  def self.openapi_types
108
108
  {
109
- :'pulp_created' => :'DateTime',
109
+ :'download_concurrency' => :'Integer',
110
+ :'proxy_url' => :'String',
110
111
  :'pulp_href' => :'String',
111
- :'sock_read_timeout' => :'Float',
112
- :'total_timeout' => :'Float',
112
+ :'sock_connect_timeout' => :'Float',
113
+ :'ca_cert' => :'String',
113
114
  :'pulp_labels' => :'Hash<String, String>',
114
- :'connect_timeout' => :'Float',
115
- :'max_retries' => :'Integer',
116
- :'proxy_url' => :'String',
115
+ :'total_timeout' => :'Float',
117
116
  :'pulp_last_updated' => :'DateTime',
118
- :'client_cert' => :'String',
119
- :'name' => :'String',
120
- :'tls_validation' => :'Boolean',
117
+ :'max_retries' => :'Integer',
121
118
  :'rate_limit' => :'Integer',
119
+ :'sock_read_timeout' => :'Float',
120
+ :'name' => :'String',
122
121
  :'headers' => :'Array<Object>',
123
- :'ca_cert' => :'String',
124
- :'sock_connect_timeout' => :'Float',
125
- :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
122
+ :'connect_timeout' => :'Float',
126
123
  :'url' => :'String',
127
- :'download_concurrency' => :'Integer',
124
+ :'tls_validation' => :'Boolean',
125
+ :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
126
+ :'client_cert' => :'String',
127
+ :'pulp_created' => :'DateTime',
128
128
  :'metadata_only' => :'Boolean',
129
129
  :'git_ref' => :'String'
130
130
  }
@@ -133,16 +133,16 @@ module PulpAnsibleClient
133
133
  # List of attributes with nullable: true
134
134
  def self.openapi_nullable
135
135
  Set.new([
136
- :'sock_read_timeout',
136
+ :'download_concurrency',
137
+ :'proxy_url',
138
+ :'sock_connect_timeout',
139
+ :'ca_cert',
137
140
  :'total_timeout',
138
- :'connect_timeout',
139
141
  :'max_retries',
140
- :'proxy_url',
141
- :'client_cert',
142
142
  :'rate_limit',
143
- :'ca_cert',
144
- :'sock_connect_timeout',
145
- :'download_concurrency',
143
+ :'sock_read_timeout',
144
+ :'connect_timeout',
145
+ :'client_cert',
146
146
  ])
147
147
  end
148
148
 
@@ -161,20 +161,24 @@ module PulpAnsibleClient
161
161
  h[k.to_sym] = v
162
162
  }
163
163
 
164
- if attributes.key?(:'pulp_created')
165
- self.pulp_created = attributes[:'pulp_created']
164
+ if attributes.key?(:'download_concurrency')
165
+ self.download_concurrency = attributes[:'download_concurrency']
166
+ end
167
+
168
+ if attributes.key?(:'proxy_url')
169
+ self.proxy_url = attributes[:'proxy_url']
166
170
  end
167
171
 
168
172
  if attributes.key?(:'pulp_href')
169
173
  self.pulp_href = attributes[:'pulp_href']
170
174
  end
171
175
 
172
- if attributes.key?(:'sock_read_timeout')
173
- self.sock_read_timeout = attributes[:'sock_read_timeout']
176
+ if attributes.key?(:'sock_connect_timeout')
177
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
174
178
  end
175
179
 
176
- if attributes.key?(:'total_timeout')
177
- self.total_timeout = attributes[:'total_timeout']
180
+ if attributes.key?(:'ca_cert')
181
+ self.ca_cert = attributes[:'ca_cert']
178
182
  end
179
183
 
180
184
  if attributes.key?(:'pulp_labels')
@@ -183,36 +187,28 @@ module PulpAnsibleClient
183
187
  end
184
188
  end
185
189
 
186
- if attributes.key?(:'connect_timeout')
187
- self.connect_timeout = attributes[:'connect_timeout']
188
- end
189
-
190
- if attributes.key?(:'max_retries')
191
- self.max_retries = attributes[:'max_retries']
192
- end
193
-
194
- if attributes.key?(:'proxy_url')
195
- self.proxy_url = attributes[:'proxy_url']
190
+ if attributes.key?(:'total_timeout')
191
+ self.total_timeout = attributes[:'total_timeout']
196
192
  end
197
193
 
198
194
  if attributes.key?(:'pulp_last_updated')
199
195
  self.pulp_last_updated = attributes[:'pulp_last_updated']
200
196
  end
201
197
 
202
- if attributes.key?(:'client_cert')
203
- self.client_cert = attributes[:'client_cert']
198
+ if attributes.key?(:'max_retries')
199
+ self.max_retries = attributes[:'max_retries']
204
200
  end
205
201
 
206
- if attributes.key?(:'name')
207
- self.name = attributes[:'name']
202
+ if attributes.key?(:'rate_limit')
203
+ self.rate_limit = attributes[:'rate_limit']
208
204
  end
209
205
 
210
- if attributes.key?(:'tls_validation')
211
- self.tls_validation = attributes[:'tls_validation']
206
+ if attributes.key?(:'sock_read_timeout')
207
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
212
208
  end
213
209
 
214
- if attributes.key?(:'rate_limit')
215
- self.rate_limit = attributes[:'rate_limit']
210
+ if attributes.key?(:'name')
211
+ self.name = attributes[:'name']
216
212
  end
217
213
 
218
214
  if attributes.key?(:'headers')
@@ -221,12 +217,16 @@ module PulpAnsibleClient
221
217
  end
222
218
  end
223
219
 
224
- if attributes.key?(:'ca_cert')
225
- self.ca_cert = attributes[:'ca_cert']
220
+ if attributes.key?(:'connect_timeout')
221
+ self.connect_timeout = attributes[:'connect_timeout']
226
222
  end
227
223
 
228
- if attributes.key?(:'sock_connect_timeout')
229
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
224
+ if attributes.key?(:'url')
225
+ self.url = attributes[:'url']
226
+ end
227
+
228
+ if attributes.key?(:'tls_validation')
229
+ self.tls_validation = attributes[:'tls_validation']
230
230
  end
231
231
 
232
232
  if attributes.key?(:'hidden_fields')
@@ -235,12 +235,12 @@ module PulpAnsibleClient
235
235
  end
236
236
  end
237
237
 
238
- if attributes.key?(:'url')
239
- self.url = attributes[:'url']
238
+ if attributes.key?(:'client_cert')
239
+ self.client_cert = attributes[:'client_cert']
240
240
  end
241
241
 
242
- if attributes.key?(:'download_concurrency')
243
- self.download_concurrency = attributes[:'download_concurrency']
242
+ if attributes.key?(:'pulp_created')
243
+ self.pulp_created = attributes[:'pulp_created']
244
244
  end
245
245
 
246
246
  if attributes.key?(:'metadata_only')
@@ -256,98 +256,98 @@ module PulpAnsibleClient
256
256
  # @return Array for valid properties with the reasons
257
257
  def list_invalid_properties
258
258
  invalid_properties = Array.new
259
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0
260
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
259
+ if !@download_concurrency.nil? && @download_concurrency < 1
260
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
261
261
  end
262
262
 
263
- if !@total_timeout.nil? && @total_timeout < 0
264
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
263
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
264
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
265
265
  end
266
266
 
267
- if !@connect_timeout.nil? && @connect_timeout < 0
268
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
267
+ if !@total_timeout.nil? && @total_timeout < 0.0
268
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
269
+ end
270
+
271
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
272
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
269
273
  end
270
274
 
271
275
  if @name.nil?
272
276
  invalid_properties.push('invalid value for "name", name cannot be nil.')
273
277
  end
274
278
 
275
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
276
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
279
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
280
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
277
281
  end
278
282
 
279
283
  if @url.nil?
280
284
  invalid_properties.push('invalid value for "url", url cannot be nil.')
281
285
  end
282
286
 
283
- if !@download_concurrency.nil? && @download_concurrency < 1
284
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
285
- end
286
-
287
287
  invalid_properties
288
288
  end
289
289
 
290
290
  # Check to see if the all the properties in the model are valid
291
291
  # @return true if the model is valid
292
292
  def valid?
293
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
294
- return false if !@total_timeout.nil? && @total_timeout < 0
295
- return false if !@connect_timeout.nil? && @connect_timeout < 0
293
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
294
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
295
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
296
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
296
297
  return false if @name.nil?
297
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
298
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
298
299
  return false if @url.nil?
299
- return false if !@download_concurrency.nil? && @download_concurrency < 1
300
300
  true
301
301
  end
302
302
 
303
303
  # Custom attribute writer method with validation
304
- # @param [Object] sock_read_timeout Value to be assigned
305
- def sock_read_timeout=(sock_read_timeout)
306
- if !sock_read_timeout.nil? && sock_read_timeout < 0
307
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
304
+ # @param [Object] download_concurrency Value to be assigned
305
+ def download_concurrency=(download_concurrency)
306
+ if !download_concurrency.nil? && download_concurrency < 1
307
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
308
308
  end
309
309
 
310
- @sock_read_timeout = sock_read_timeout
310
+ @download_concurrency = download_concurrency
311
311
  end
312
312
 
313
313
  # Custom attribute writer method with validation
314
- # @param [Object] total_timeout Value to be assigned
315
- def total_timeout=(total_timeout)
316
- if !total_timeout.nil? && total_timeout < 0
317
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
314
+ # @param [Object] sock_connect_timeout Value to be assigned
315
+ def sock_connect_timeout=(sock_connect_timeout)
316
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
317
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
318
318
  end
319
319
 
320
- @total_timeout = total_timeout
320
+ @sock_connect_timeout = sock_connect_timeout
321
321
  end
322
322
 
323
323
  # Custom attribute writer method with validation
324
- # @param [Object] connect_timeout Value to be assigned
325
- def connect_timeout=(connect_timeout)
326
- if !connect_timeout.nil? && connect_timeout < 0
327
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
324
+ # @param [Object] total_timeout Value to be assigned
325
+ def total_timeout=(total_timeout)
326
+ if !total_timeout.nil? && total_timeout < 0.0
327
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
328
328
  end
329
329
 
330
- @connect_timeout = connect_timeout
330
+ @total_timeout = total_timeout
331
331
  end
332
332
 
333
333
  # Custom attribute writer method with validation
334
- # @param [Object] sock_connect_timeout Value to be assigned
335
- def sock_connect_timeout=(sock_connect_timeout)
336
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0
337
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
334
+ # @param [Object] sock_read_timeout Value to be assigned
335
+ def sock_read_timeout=(sock_read_timeout)
336
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
337
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
338
338
  end
339
339
 
340
- @sock_connect_timeout = sock_connect_timeout
340
+ @sock_read_timeout = sock_read_timeout
341
341
  end
342
342
 
343
343
  # Custom attribute writer method with validation
344
- # @param [Object] download_concurrency Value to be assigned
345
- def download_concurrency=(download_concurrency)
346
- if !download_concurrency.nil? && download_concurrency < 1
347
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
344
+ # @param [Object] connect_timeout Value to be assigned
345
+ def connect_timeout=(connect_timeout)
346
+ if !connect_timeout.nil? && connect_timeout < 0.0
347
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
348
348
  end
349
349
 
350
- @download_concurrency = download_concurrency
350
+ @connect_timeout = connect_timeout
351
351
  end
352
352
 
353
353
  # Checks equality by comparing each attribute.
@@ -355,25 +355,25 @@ module PulpAnsibleClient
355
355
  def ==(o)
356
356
  return true if self.equal?(o)
357
357
  self.class == o.class &&
358
- pulp_created == o.pulp_created &&
358
+ download_concurrency == o.download_concurrency &&
359
+ proxy_url == o.proxy_url &&
359
360
  pulp_href == o.pulp_href &&
360
- sock_read_timeout == o.sock_read_timeout &&
361
- total_timeout == o.total_timeout &&
361
+ sock_connect_timeout == o.sock_connect_timeout &&
362
+ ca_cert == o.ca_cert &&
362
363
  pulp_labels == o.pulp_labels &&
363
- connect_timeout == o.connect_timeout &&
364
- max_retries == o.max_retries &&
365
- proxy_url == o.proxy_url &&
364
+ total_timeout == o.total_timeout &&
366
365
  pulp_last_updated == o.pulp_last_updated &&
367
- client_cert == o.client_cert &&
368
- name == o.name &&
369
- tls_validation == o.tls_validation &&
366
+ max_retries == o.max_retries &&
370
367
  rate_limit == o.rate_limit &&
368
+ sock_read_timeout == o.sock_read_timeout &&
369
+ name == o.name &&
371
370
  headers == o.headers &&
372
- ca_cert == o.ca_cert &&
373
- sock_connect_timeout == o.sock_connect_timeout &&
374
- hidden_fields == o.hidden_fields &&
371
+ connect_timeout == o.connect_timeout &&
375
372
  url == o.url &&
376
- download_concurrency == o.download_concurrency &&
373
+ tls_validation == o.tls_validation &&
374
+ hidden_fields == o.hidden_fields &&
375
+ client_cert == o.client_cert &&
376
+ pulp_created == o.pulp_created &&
377
377
  metadata_only == o.metadata_only &&
378
378
  git_ref == o.git_ref
379
379
  end
@@ -387,7 +387,7 @@ module PulpAnsibleClient
387
387
  # Calculates hash code according to all attributes.
388
388
  # @return [Integer] Hash code
389
389
  def hash
390
- [pulp_created, pulp_href, sock_read_timeout, total_timeout, pulp_labels, connect_timeout, max_retries, proxy_url, pulp_last_updated, client_cert, name, tls_validation, rate_limit, headers, ca_cert, sock_connect_timeout, hidden_fields, url, download_concurrency, metadata_only, git_ref].hash
390
+ [download_concurrency, proxy_url, pulp_href, sock_connect_timeout, ca_cert, pulp_labels, total_timeout, pulp_last_updated, max_retries, rate_limit, sock_read_timeout, name, headers, connect_timeout, url, tls_validation, hidden_fields, client_cert, pulp_created, metadata_only, git_ref].hash
391
391
  end
392
392
 
393
393
  # Builds the object from hash
@@ -15,12 +15,12 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Role versions.
17
17
  class AnsibleRole
18
- # Artifact file representing the physical content
19
- attr_accessor :artifact
20
-
21
18
  # A URI of a repository the new content unit should be associated with.
22
19
  attr_accessor :repository
23
20
 
21
+ # Artifact file representing the physical content
22
+ attr_accessor :artifact
23
+
24
24
  attr_accessor :version
25
25
 
26
26
  attr_accessor :name
@@ -30,8 +30,8 @@ module PulpAnsibleClient
30
30
  # Attribute mapping from ruby-style variable name to JSON key.
31
31
  def self.attribute_map
32
32
  {
33
- :'artifact' => :'artifact',
34
33
  :'repository' => :'repository',
34
+ :'artifact' => :'artifact',
35
35
  :'version' => :'version',
36
36
  :'name' => :'name',
37
37
  :'namespace' => :'namespace'
@@ -41,8 +41,8 @@ module PulpAnsibleClient
41
41
  # Attribute type mapping.
42
42
  def self.openapi_types
43
43
  {
44
- :'artifact' => :'String',
45
44
  :'repository' => :'String',
45
+ :'artifact' => :'String',
46
46
  :'version' => :'String',
47
47
  :'name' => :'String',
48
48
  :'namespace' => :'String'
@@ -70,14 +70,14 @@ module PulpAnsibleClient
70
70
  h[k.to_sym] = v
71
71
  }
72
72
 
73
- if attributes.key?(:'artifact')
74
- self.artifact = attributes[:'artifact']
75
- end
76
-
77
73
  if attributes.key?(:'repository')
78
74
  self.repository = attributes[:'repository']
79
75
  end
80
76
 
77
+ if attributes.key?(:'artifact')
78
+ self.artifact = attributes[:'artifact']
79
+ end
80
+
81
81
  if attributes.key?(:'version')
82
82
  self.version = attributes[:'version']
83
83
  end
@@ -186,8 +186,8 @@ module PulpAnsibleClient
186
186
  def ==(o)
187
187
  return true if self.equal?(o)
188
188
  self.class == o.class &&
189
- artifact == o.artifact &&
190
189
  repository == o.repository &&
190
+ artifact == o.artifact &&
191
191
  version == o.version &&
192
192
  name == o.name &&
193
193
  namespace == o.namespace
@@ -202,7 +202,7 @@ module PulpAnsibleClient
202
202
  # Calculates hash code according to all attributes.
203
203
  # @return [Integer] Hash code
204
204
  def hash
205
- [artifact, repository, version, name, namespace].hash
205
+ [repository, artifact, version, name, namespace].hash
206
206
  end
207
207
 
208
208
  # 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
316
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
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.')
317
317
  end
318
318
 
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.')
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.')
321
321
  end
322
322
 
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.')
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.')
325
325
  end
326
326
 
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.')
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.')
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
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
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
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
479
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
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.'
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
489
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
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.'
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
499
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
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.'
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
509
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
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.'
510
510
  end
511
511
 
512
512
  @sock_read_timeout = sock_read_timeout