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
@@ -309,20 +309,20 @@ module PulpAnsibleClient
309
309
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
310
310
  end
311
311
 
312
- if !@total_timeout.nil? && @total_timeout < 0
313
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
312
+ if !@total_timeout.nil? && @total_timeout < 0.0
313
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
314
314
  end
315
315
 
316
- if !@connect_timeout.nil? && @connect_timeout < 0
317
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
316
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
317
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
318
318
  end
319
319
 
320
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
321
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
320
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
321
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
322
322
  end
323
323
 
324
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0
325
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
324
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
325
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
326
326
  end
327
327
 
328
328
  if !@auth_url.nil? && @auth_url.to_s.length > 255
@@ -338,10 +338,10 @@ module PulpAnsibleClient
338
338
  return false if @name.nil?
339
339
  return false if @url.nil?
340
340
  return false if !@download_concurrency.nil? && @download_concurrency < 1
341
- return false if !@total_timeout.nil? && @total_timeout < 0
342
- return false if !@connect_timeout.nil? && @connect_timeout < 0
343
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
344
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
341
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
342
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
343
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
344
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
345
345
  return false if !@auth_url.nil? && @auth_url.to_s.length > 255
346
346
  true
347
347
  end
@@ -359,8 +359,8 @@ module PulpAnsibleClient
359
359
  # Custom attribute writer method with validation
360
360
  # @param [Object] total_timeout Value to be assigned
361
361
  def total_timeout=(total_timeout)
362
- if !total_timeout.nil? && total_timeout < 0
363
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
362
+ if !total_timeout.nil? && total_timeout < 0.0
363
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
364
364
  end
365
365
 
366
366
  @total_timeout = total_timeout
@@ -369,8 +369,8 @@ module PulpAnsibleClient
369
369
  # Custom attribute writer method with validation
370
370
  # @param [Object] connect_timeout Value to be assigned
371
371
  def connect_timeout=(connect_timeout)
372
- if !connect_timeout.nil? && connect_timeout < 0
373
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
372
+ if !connect_timeout.nil? && connect_timeout < 0.0
373
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
374
374
  end
375
375
 
376
376
  @connect_timeout = connect_timeout
@@ -379,8 +379,8 @@ module PulpAnsibleClient
379
379
  # Custom attribute writer method with validation
380
380
  # @param [Object] sock_connect_timeout Value to be assigned
381
381
  def sock_connect_timeout=(sock_connect_timeout)
382
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0
383
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
382
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
383
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
384
384
  end
385
385
 
386
386
  @sock_connect_timeout = sock_connect_timeout
@@ -389,8 +389,8 @@ module PulpAnsibleClient
389
389
  # Custom attribute writer method with validation
390
390
  # @param [Object] sock_read_timeout Value to be assigned
391
391
  def sock_read_timeout=(sock_read_timeout)
392
- if !sock_read_timeout.nil? && sock_read_timeout < 0
393
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
392
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
393
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
394
394
  end
395
395
 
396
396
  @sock_read_timeout = sock_read_timeout
@@ -15,18 +15,18 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersion
18
- # An uploaded file that may be turned into the artifact of the content unit.
19
- attr_accessor :file
20
-
21
- # An uncommitted upload that may be turned into the artifact of the content unit.
22
- attr_accessor :upload
23
-
24
18
  # A URI of a repository the new content unit should be associated with.
25
19
  attr_accessor :repository
26
20
 
27
21
  # Artifact file representing the physical content
28
22
  attr_accessor :artifact
29
23
 
24
+ # An uncommitted upload that may be turned into the artifact of the content unit.
25
+ attr_accessor :upload
26
+
27
+ # An uploaded file that may be turned into the artifact of the content unit.
28
+ attr_accessor :file
29
+
30
30
  # The name of the collection.
31
31
  attr_accessor :expected_name
32
32
 
@@ -39,10 +39,10 @@ module PulpAnsibleClient
39
39
  # Attribute mapping from ruby-style variable name to JSON key.
40
40
  def self.attribute_map
41
41
  {
42
- :'file' => :'file',
43
- :'upload' => :'upload',
44
42
  :'repository' => :'repository',
45
43
  :'artifact' => :'artifact',
44
+ :'upload' => :'upload',
45
+ :'file' => :'file',
46
46
  :'expected_name' => :'expected_name',
47
47
  :'expected_namespace' => :'expected_namespace',
48
48
  :'expected_version' => :'expected_version'
@@ -52,10 +52,10 @@ module PulpAnsibleClient
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'file' => :'File',
56
- :'upload' => :'String',
57
55
  :'repository' => :'String',
58
56
  :'artifact' => :'String',
57
+ :'upload' => :'String',
58
+ :'file' => :'File',
59
59
  :'expected_name' => :'String',
60
60
  :'expected_namespace' => :'String',
61
61
  :'expected_version' => :'String'
@@ -83,14 +83,6 @@ module PulpAnsibleClient
83
83
  h[k.to_sym] = v
84
84
  }
85
85
 
86
- if attributes.key?(:'file')
87
- self.file = attributes[:'file']
88
- end
89
-
90
- if attributes.key?(:'upload')
91
- self.upload = attributes[:'upload']
92
- end
93
-
94
86
  if attributes.key?(:'repository')
95
87
  self.repository = attributes[:'repository']
96
88
  end
@@ -99,6 +91,14 @@ module PulpAnsibleClient
99
91
  self.artifact = attributes[:'artifact']
100
92
  end
101
93
 
94
+ if attributes.key?(:'upload')
95
+ self.upload = attributes[:'upload']
96
+ end
97
+
98
+ if attributes.key?(:'file')
99
+ self.file = attributes[:'file']
100
+ end
101
+
102
102
  if attributes.key?(:'expected_name')
103
103
  self.expected_name = attributes[:'expected_name']
104
104
  end
@@ -202,10 +202,10 @@ module PulpAnsibleClient
202
202
  def ==(o)
203
203
  return true if self.equal?(o)
204
204
  self.class == o.class &&
205
- file == o.file &&
206
- upload == o.upload &&
207
205
  repository == o.repository &&
208
206
  artifact == o.artifact &&
207
+ upload == o.upload &&
208
+ file == o.file &&
209
209
  expected_name == o.expected_name &&
210
210
  expected_namespace == o.expected_namespace &&
211
211
  expected_version == o.expected_version
@@ -220,7 +220,7 @@ module PulpAnsibleClient
220
220
  # Calculates hash code according to all attributes.
221
221
  # @return [Integer] Hash code
222
222
  def hash
223
- [file, upload, repository, artifact, expected_name, expected_namespace, expected_version].hash
223
+ [repository, artifact, upload, file, expected_name, expected_namespace, expected_version].hash
224
224
  end
225
225
 
226
226
  # Builds the object from hash
@@ -15,14 +15,14 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersionResponse
18
- # Timestamp of creation.
19
- attr_accessor :pulp_created
20
-
21
18
  attr_accessor :pulp_href
22
19
 
23
20
  # Artifact file representing the physical content
24
21
  attr_accessor :artifact
25
22
 
23
+ # Timestamp of creation.
24
+ attr_accessor :pulp_created
25
+
26
26
  # The SHA-256 checksum if available.
27
27
  attr_accessor :sha256
28
28
 
@@ -97,9 +97,9 @@ module PulpAnsibleClient
97
97
  # Attribute mapping from ruby-style variable name to JSON key.
98
98
  def self.attribute_map
99
99
  {
100
- :'pulp_created' => :'pulp_created',
101
100
  :'pulp_href' => :'pulp_href',
102
101
  :'artifact' => :'artifact',
102
+ :'pulp_created' => :'pulp_created',
103
103
  :'sha256' => :'sha256',
104
104
  :'md5' => :'md5',
105
105
  :'sha1' => :'sha1',
@@ -130,9 +130,9 @@ module PulpAnsibleClient
130
130
  # Attribute type mapping.
131
131
  def self.openapi_types
132
132
  {
133
- :'pulp_created' => :'DateTime',
134
133
  :'pulp_href' => :'String',
135
134
  :'artifact' => :'String',
135
+ :'pulp_created' => :'DateTime',
136
136
  :'sha256' => :'String',
137
137
  :'md5' => :'String',
138
138
  :'sha1' => :'String',
@@ -182,10 +182,6 @@ module PulpAnsibleClient
182
182
  h[k.to_sym] = v
183
183
  }
184
184
 
185
- if attributes.key?(:'pulp_created')
186
- self.pulp_created = attributes[:'pulp_created']
187
- end
188
-
189
185
  if attributes.key?(:'pulp_href')
190
186
  self.pulp_href = attributes[:'pulp_href']
191
187
  end
@@ -194,6 +190,10 @@ module PulpAnsibleClient
194
190
  self.artifact = attributes[:'artifact']
195
191
  end
196
192
 
193
+ if attributes.key?(:'pulp_created')
194
+ self.pulp_created = attributes[:'pulp_created']
195
+ end
196
+
197
197
  if attributes.key?(:'sha256')
198
198
  self.sha256 = attributes[:'sha256']
199
199
  end
@@ -435,9 +435,9 @@ module PulpAnsibleClient
435
435
  def ==(o)
436
436
  return true if self.equal?(o)
437
437
  self.class == o.class &&
438
- pulp_created == o.pulp_created &&
439
438
  pulp_href == o.pulp_href &&
440
439
  artifact == o.artifact &&
440
+ pulp_created == o.pulp_created &&
441
441
  sha256 == o.sha256 &&
442
442
  md5 == o.md5 &&
443
443
  sha1 == o.sha1 &&
@@ -473,7 +473,7 @@ module PulpAnsibleClient
473
473
  # Calculates hash code according to all attributes.
474
474
  # @return [Integer] Hash code
475
475
  def hash
476
- [pulp_created, pulp_href, artifact, sha256, md5, sha1, sha224, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, origin_repository, tags, version, requires_ansible].hash
476
+ [pulp_href, artifact, pulp_created, sha256, md5, sha1, sha224, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, origin_repository, tags, version, requires_ansible].hash
477
477
  end
478
478
 
479
479
  # Builds the object from hash