pulp_ansible_client 0.5.8 → 0.5.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1e6c92fe66a5b858f6b2be24926242bcad6168292da85fb55508353692e2f6f
4
- data.tar.gz: 6522aea75b1393d579e4de0f61aa01e8a4b5572010dabf5a10ce5016b1ebbf90
3
+ metadata.gz: 82af90e5925d94716157c99180583f88933806972e2b4294a445eb0a4b66d502
4
+ data.tar.gz: 7d49ebb052dfc0c265225aa2a6fb4d1c2cd245a328c97e8b931caf806d3a07be
5
5
  SHA512:
6
- metadata.gz: 915aaa5ff5275025f299446077f468e3ea5a3e886446628dbcae8e743c4ca5f1d4c80dd97cb009602d83991198c61b52c95f22ba9415eb960f53635ab9a05f7d
7
- data.tar.gz: 82bd288b215bc9a2080902e981f24ced59015ae36c307cfe8c5e806227aa413acafb4118d46ebd9baa71a7336ef3880a26676896322bf61039971bedf5ce26fd
6
+ metadata.gz: fe02bdb5949479172e9d741fd1c9ca2eaed5e2110c6fa9cd303b449a65d325289bac571f3dc21c17642a92aaa7b7333843c6250f01dfe31a552399e812d646a0
7
+ data.tar.gz: e14b849d4b87025a62d4aca329ff48f70de8b3161bd4e4ce34ad219ec702b2be7e17ab5f12ac59a7f1425b6bc2ccbb2c902515d4ce32e667a292ac3404c74977
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 0.5.8
10
+ - Package version: 0.5.9
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_ansible_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_ansible_client-0.5.8.gem
27
+ gem install ./pulp_ansible_client-0.5.9.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_ansible_client-0.5.8.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_ansible_client-0.5.9.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_ansible_client', '~> 0.5.8'
36
+ gem 'pulp_ansible_client', '~> 0.5.9'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content |
8
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **artifact** | **String** | Artifact file representing the physical content |
9
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
10
10
  **md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
11
11
  **sha1** | **String** | The SHA-1 checksum if available. | [optional] [readonly]
@@ -34,8 +34,8 @@ Name | Type | Description | Notes
34
34
  ```ruby
35
35
  require 'PulpAnsibleClient'
36
36
 
37
- instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(artifact: null,
38
- pulp_href: null,
37
+ instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_href: null,
38
+ artifact: null,
39
39
  pulp_created: null,
40
40
  md5: null,
41
41
  sha1: null,
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content |
8
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **artifact** | **String** | Artifact file representing the physical content |
9
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
10
10
  **version** | **String** | |
11
11
  **name** | **String** | |
@@ -16,8 +16,8 @@ Name | Type | Description | Notes
16
16
  ```ruby
17
17
  require 'PulpAnsibleClient'
18
18
 
19
- instance = PulpAnsibleClient::AnsibleRoleResponse.new(artifact: null,
20
- pulp_href: null,
19
+ instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_href: null,
20
+ artifact: null,
21
21
  pulp_created: null,
22
22
  version: null,
23
23
  name: null,
@@ -254,16 +254,16 @@ module PulpAnsibleClient
254
254
  invalid_properties.push('invalid value for "name", name cannot be nil.')
255
255
  end
256
256
 
257
- if @name.to_s.length > 32
258
- invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 32.')
257
+ if @name.to_s.length > 64
258
+ invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 64.')
259
259
  end
260
260
 
261
261
  if @namespace.nil?
262
262
  invalid_properties.push('invalid value for "namespace", namespace cannot be nil.')
263
263
  end
264
264
 
265
- if @namespace.to_s.length > 32
266
- invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to 32.')
265
+ if @namespace.to_s.length > 64
266
+ invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to 64.')
267
267
  end
268
268
 
269
269
  if @repository.nil?
@@ -278,8 +278,8 @@ module PulpAnsibleClient
278
278
  invalid_properties.push('invalid value for "version", version cannot be nil.')
279
279
  end
280
280
 
281
- if @version.to_s.length > 32
282
- invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to 32.')
281
+ if @version.to_s.length > 128
282
+ invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to 128.')
283
283
  end
284
284
 
285
285
  invalid_properties
@@ -303,13 +303,13 @@ module PulpAnsibleClient
303
303
  return false if @issues.to_s.length > 2000
304
304
  return false if @license.nil?
305
305
  return false if @name.nil?
306
- return false if @name.to_s.length > 32
306
+ return false if @name.to_s.length > 64
307
307
  return false if @namespace.nil?
308
- return false if @namespace.to_s.length > 32
308
+ return false if @namespace.to_s.length > 64
309
309
  return false if @repository.nil?
310
310
  return false if @repository.to_s.length > 2000
311
311
  return false if @version.nil?
312
- return false if @version.to_s.length > 32
312
+ return false if @version.to_s.length > 128
313
313
  true
314
314
  end
315
315
 
@@ -362,8 +362,8 @@ module PulpAnsibleClient
362
362
  fail ArgumentError, 'name cannot be nil'
363
363
  end
364
364
 
365
- if name.to_s.length > 32
366
- fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 32.'
365
+ if name.to_s.length > 64
366
+ fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 64.'
367
367
  end
368
368
 
369
369
  @name = name
@@ -376,8 +376,8 @@ module PulpAnsibleClient
376
376
  fail ArgumentError, 'namespace cannot be nil'
377
377
  end
378
378
 
379
- if namespace.to_s.length > 32
380
- fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to 32.'
379
+ if namespace.to_s.length > 64
380
+ fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to 64.'
381
381
  end
382
382
 
383
383
  @namespace = namespace
@@ -404,8 +404,8 @@ module PulpAnsibleClient
404
404
  fail ArgumentError, 'version cannot be nil'
405
405
  end
406
406
 
407
- if version.to_s.length > 32
408
- fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to 32.'
407
+ if version.to_s.length > 128
408
+ fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to 128.'
409
409
  end
410
410
 
411
411
  @version = version
@@ -15,11 +15,11 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersionResponse
18
+ attr_accessor :pulp_href
19
+
18
20
  # Artifact file representing the physical content
19
21
  attr_accessor :artifact
20
22
 
21
- attr_accessor :pulp_href
22
-
23
23
  # Timestamp of creation.
24
24
  attr_accessor :pulp_created
25
25
 
@@ -88,8 +88,8 @@ module PulpAnsibleClient
88
88
  # Attribute mapping from ruby-style variable name to JSON key.
89
89
  def self.attribute_map
90
90
  {
91
- :'artifact' => :'artifact',
92
91
  :'pulp_href' => :'pulp_href',
92
+ :'artifact' => :'artifact',
93
93
  :'pulp_created' => :'pulp_created',
94
94
  :'md5' => :'md5',
95
95
  :'sha1' => :'sha1',
@@ -118,8 +118,8 @@ module PulpAnsibleClient
118
118
  # Attribute type mapping.
119
119
  def self.openapi_types
120
120
  {
121
- :'artifact' => :'String',
122
121
  :'pulp_href' => :'String',
122
+ :'artifact' => :'String',
123
123
  :'pulp_created' => :'DateTime',
124
124
  :'md5' => :'String',
125
125
  :'sha1' => :'String',
@@ -166,14 +166,14 @@ module PulpAnsibleClient
166
166
  h[k.to_sym] = v
167
167
  }
168
168
 
169
- if attributes.key?(:'artifact')
170
- self.artifact = attributes[:'artifact']
171
- end
172
-
173
169
  if attributes.key?(:'pulp_href')
174
170
  self.pulp_href = attributes[:'pulp_href']
175
171
  end
176
172
 
173
+ if attributes.key?(:'artifact')
174
+ self.artifact = attributes[:'artifact']
175
+ end
176
+
177
177
  if attributes.key?(:'pulp_created')
178
178
  self.pulp_created = attributes[:'pulp_created']
179
179
  end
@@ -335,16 +335,16 @@ module PulpAnsibleClient
335
335
  invalid_properties.push('invalid value for "name", name cannot be nil.')
336
336
  end
337
337
 
338
- if @name.to_s.length > 32
339
- invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 32.')
338
+ if @name.to_s.length > 64
339
+ invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 64.')
340
340
  end
341
341
 
342
342
  if @namespace.nil?
343
343
  invalid_properties.push('invalid value for "namespace", namespace cannot be nil.')
344
344
  end
345
345
 
346
- if @namespace.to_s.length > 32
347
- invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to 32.')
346
+ if @namespace.to_s.length > 64
347
+ invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to 64.')
348
348
  end
349
349
 
350
350
  if @repository.nil?
@@ -359,8 +359,8 @@ module PulpAnsibleClient
359
359
  invalid_properties.push('invalid value for "version", version cannot be nil.')
360
360
  end
361
361
 
362
- if @version.to_s.length > 32
363
- invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to 32.')
362
+ if @version.to_s.length > 128
363
+ invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to 128.')
364
364
  end
365
365
 
366
366
  invalid_properties
@@ -384,13 +384,13 @@ module PulpAnsibleClient
384
384
  return false if @issues.to_s.length > 2000
385
385
  return false if @license.nil?
386
386
  return false if @name.nil?
387
- return false if @name.to_s.length > 32
387
+ return false if @name.to_s.length > 64
388
388
  return false if @namespace.nil?
389
- return false if @namespace.to_s.length > 32
389
+ return false if @namespace.to_s.length > 64
390
390
  return false if @repository.nil?
391
391
  return false if @repository.to_s.length > 2000
392
392
  return false if @version.nil?
393
- return false if @version.to_s.length > 32
393
+ return false if @version.to_s.length > 128
394
394
  true
395
395
  end
396
396
 
@@ -443,8 +443,8 @@ module PulpAnsibleClient
443
443
  fail ArgumentError, 'name cannot be nil'
444
444
  end
445
445
 
446
- if name.to_s.length > 32
447
- fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 32.'
446
+ if name.to_s.length > 64
447
+ fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 64.'
448
448
  end
449
449
 
450
450
  @name = name
@@ -457,8 +457,8 @@ module PulpAnsibleClient
457
457
  fail ArgumentError, 'namespace cannot be nil'
458
458
  end
459
459
 
460
- if namespace.to_s.length > 32
461
- fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to 32.'
460
+ if namespace.to_s.length > 64
461
+ fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to 64.'
462
462
  end
463
463
 
464
464
  @namespace = namespace
@@ -485,8 +485,8 @@ module PulpAnsibleClient
485
485
  fail ArgumentError, 'version cannot be nil'
486
486
  end
487
487
 
488
- if version.to_s.length > 32
489
- fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to 32.'
488
+ if version.to_s.length > 128
489
+ fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to 128.'
490
490
  end
491
491
 
492
492
  @version = version
@@ -497,8 +497,8 @@ module PulpAnsibleClient
497
497
  def ==(o)
498
498
  return true if self.equal?(o)
499
499
  self.class == o.class &&
500
- artifact == o.artifact &&
501
500
  pulp_href == o.pulp_href &&
501
+ artifact == o.artifact &&
502
502
  pulp_created == o.pulp_created &&
503
503
  md5 == o.md5 &&
504
504
  sha1 == o.sha1 &&
@@ -532,7 +532,7 @@ module PulpAnsibleClient
532
532
  # Calculates hash code according to all attributes.
533
533
  # @return [Integer] Hash code
534
534
  def hash
535
- [artifact, pulp_href, pulp_created, md5, sha1, sha224, sha256, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, documentation, homepage, issues, license, name, namespace, repository, tags, version].hash
535
+ [pulp_href, artifact, pulp_created, md5, sha1, sha224, sha256, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, documentation, homepage, issues, license, name, namespace, repository, tags, version].hash
536
536
  end
537
537
 
538
538
  # Builds the object from hash
@@ -15,11 +15,11 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Role versions.
17
17
  class AnsibleRoleResponse
18
+ attr_accessor :pulp_href
19
+
18
20
  # Artifact file representing the physical content
19
21
  attr_accessor :artifact
20
22
 
21
- attr_accessor :pulp_href
22
-
23
23
  # Timestamp of creation.
24
24
  attr_accessor :pulp_created
25
25
 
@@ -32,8 +32,8 @@ module PulpAnsibleClient
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'artifact' => :'artifact',
36
35
  :'pulp_href' => :'pulp_href',
36
+ :'artifact' => :'artifact',
37
37
  :'pulp_created' => :'pulp_created',
38
38
  :'version' => :'version',
39
39
  :'name' => :'name',
@@ -44,8 +44,8 @@ module PulpAnsibleClient
44
44
  # Attribute type mapping.
45
45
  def self.openapi_types
46
46
  {
47
- :'artifact' => :'String',
48
47
  :'pulp_href' => :'String',
48
+ :'artifact' => :'String',
49
49
  :'pulp_created' => :'DateTime',
50
50
  :'version' => :'String',
51
51
  :'name' => :'String',
@@ -74,14 +74,14 @@ module PulpAnsibleClient
74
74
  h[k.to_sym] = v
75
75
  }
76
76
 
77
- if attributes.key?(:'artifact')
78
- self.artifact = attributes[:'artifact']
79
- end
80
-
81
77
  if attributes.key?(:'pulp_href')
82
78
  self.pulp_href = attributes[:'pulp_href']
83
79
  end
84
80
 
81
+ if attributes.key?(:'artifact')
82
+ self.artifact = attributes[:'artifact']
83
+ end
84
+
85
85
  if attributes.key?(:'pulp_created')
86
86
  self.pulp_created = attributes[:'pulp_created']
87
87
  end
@@ -137,8 +137,8 @@ module PulpAnsibleClient
137
137
  def ==(o)
138
138
  return true if self.equal?(o)
139
139
  self.class == o.class &&
140
- artifact == o.artifact &&
141
140
  pulp_href == o.pulp_href &&
141
+ artifact == o.artifact &&
142
142
  pulp_created == o.pulp_created &&
143
143
  version == o.version &&
144
144
  name == o.name &&
@@ -154,7 +154,7 @@ module PulpAnsibleClient
154
154
  # Calculates hash code according to all attributes.
155
155
  # @return [Integer] Hash code
156
156
  def hash
157
- [artifact, pulp_href, pulp_created, version, name, namespace].hash
157
+ [pulp_href, artifact, pulp_created, version, name, namespace].hash
158
158
  end
159
159
 
160
160
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.5.8'
14
+ VERSION = '0.5.9'
15
15
  end
@@ -32,13 +32,13 @@ describe 'AnsibleCollectionVersionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
35
+ describe 'test attribute "pulp_href"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_href"' do
41
+ describe 'test attribute "artifact"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
@@ -32,13 +32,13 @@ describe 'AnsibleRoleResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleRoleResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
35
+ describe 'test attribute "pulp_href"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_href"' do
41
+ describe 'test attribute "artifact"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_ansible_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.8
4
+ version: 0.5.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-08 00:00:00.000000000 Z
11
+ date: 2021-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -346,92 +346,92 @@ required_rubygems_version: !ruby/object:Gem::Requirement
346
346
  - !ruby/object:Gem::Version
347
347
  version: '0'
348
348
  requirements: []
349
- rubygems_version: 3.0.3
349
+ rubygems_version: 3.0.3.1
350
350
  signing_key:
351
351
  specification_version: 4
352
352
  summary: Pulp 3 API Ruby Gem
353
353
  test_files:
354
+ - spec/api/repositories_ansible_versions_api_spec.rb
355
+ - spec/api/pulp_ansible_tags_api_spec.rb
356
+ - spec/api/pulp_ansible_api_api_spec.rb
357
+ - spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
354
358
  - spec/api/distributions_ansible_api_spec.rb
355
- - spec/api/api_collections_api_spec.rb
359
+ - spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb
360
+ - spec/api/versions_api_spec.rb
356
361
  - spec/api/ansible_collections_api_spec.rb
357
- - spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
358
- - spec/api/pulp_ansible_api_api_spec.rb
359
- - spec/api/remotes_collection_api_spec.rb
360
- - spec/api/collection_import_api_spec.rb
361
- - spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
362
362
  - spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
363
- - spec/api/repositories_ansible_versions_api_spec.rb
363
+ - spec/api/content_collection_versions_api_spec.rb
364
+ - spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
364
365
  - spec/api/ansible_copy_api_spec.rb
365
- - spec/api/repositories_ansible_api_spec.rb
366
- - spec/api/content_roles_api_spec.rb
366
+ - spec/api/api_roles_api_spec.rb
367
+ - spec/api/collection_import_api_spec.rb
367
368
  - spec/api/galaxy_detail_api_spec.rb
368
- - spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb
369
- - spec/api/content_collection_versions_api_spec.rb
370
- - spec/api/remotes_role_api_spec.rb
371
- - spec/api/pulp_ansible_tags_api_spec.rb
369
+ - spec/api/remotes_collection_api_spec.rb
370
+ - spec/api/content_roles_api_spec.rb
371
+ - spec/api/api_collections_api_spec.rb
372
+ - spec/api/repositories_ansible_api_spec.rb
372
373
  - spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
373
- - spec/api/api_roles_api_spec.rb
374
- - spec/api/versions_api_spec.rb
374
+ - spec/api/remotes_role_api_spec.rb
375
375
  - spec/api_client_spec.rb
376
376
  - spec/configuration_spec.rb
377
- - spec/models/repository_version_spec.rb
378
- - spec/models/repository_version_response_spec.rb
379
- - spec/models/async_operation_response_spec.rb
380
- - spec/models/galaxy_collection_response_spec.rb
381
- - spec/models/paginated_collection_response_list_spec.rb
382
- - spec/models/paginated_galaxy_role_response_list_spec.rb
383
- - spec/models/collection_namespace_response_spec.rb
384
- - spec/models/ansible_collection_version_response_spec.rb
377
+ - spec/models/ansible_tag_response_spec.rb
378
+ - spec/models/ansible_role_spec.rb
379
+ - spec/models/galaxy_collection_spec.rb
380
+ - spec/models/patchedansible_collection_remote_spec.rb
381
+ - spec/models/ansible_role_response_spec.rb
382
+ - spec/models/paginated_collection_version_response_list_spec.rb
383
+ - spec/models/ansible_ansible_distribution_spec.rb
384
+ - spec/models/ansible_collection_remote_response_spec.rb
385
+ - spec/models/content_summary_spec.rb
386
+ - spec/models/ansible_role_remote_spec.rb
385
387
  - spec/models/patchedansible_ansible_distribution_spec.rb
386
- - spec/models/galaxy_role_version_response_spec.rb
387
- - spec/models/ansible_ansible_repository_spec.rb
388
388
  - spec/models/copy_spec.rb
389
+ - spec/models/collection_version_response_spec.rb
390
+ - spec/models/paginated_collection_response_list_links_spec.rb
391
+ - spec/models/paginated_galaxy_collection_version_response_list_spec.rb
392
+ - spec/models/galaxy_role_version_response_spec.rb
393
+ - spec/models/ansible_ansible_repository_response_spec.rb
389
394
  - spec/models/content_summary_response_spec.rb
390
- - spec/models/paginated_repository_version_response_list_spec.rb
391
- - spec/models/content_summary_spec.rb
392
- - spec/models/patchedansible_role_remote_spec.rb
393
- - spec/models/paginatedansible_collection_remote_response_list_spec.rb
394
395
  - spec/models/patched_collection_spec.rb
395
- - spec/models/policy_enum_spec.rb
396
+ - spec/models/collection_one_shot_spec.rb
397
+ - spec/models/ansible_collection_remote_spec.rb
398
+ - spec/models/ansible_ansible_repository_spec.rb
396
399
  - spec/models/ansible_collection_version_spec.rb
400
+ - spec/models/repository_add_remove_content_spec.rb
401
+ - spec/models/galaxy_collection_response_spec.rb
402
+ - spec/models/tag_response_spec.rb
397
403
  - spec/models/paginatedansible_collection_response_list_spec.rb
398
- - spec/models/ansible_ansible_distribution_response_spec.rb
399
- - spec/models/paginatedansible_collection_version_response_list_spec.rb
400
- - spec/models/ansible_ansible_distribution_spec.rb
404
+ - spec/models/ansible_collection_version_response_spec.rb
405
+ - spec/models/patchedansible_role_remote_spec.rb
406
+ - spec/models/collection_response_spec.rb
407
+ - spec/models/repository_version_spec.rb
401
408
  - spec/models/collection_import_detail_response_spec.rb
402
- - spec/models/paginated_galaxy_role_version_response_list_spec.rb
403
- - spec/models/collection_one_shot_spec.rb
404
- - spec/models/paginated_galaxy_collection_version_response_list_spec.rb
405
- - spec/models/galaxy_collection_version_response_spec.rb
406
- - spec/models/ansible_role_remote_spec.rb
407
- - spec/models/paginatedansible_ansible_repository_response_list_spec.rb
408
- - spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
409
- - spec/models/ansible_role_spec.rb
409
+ - spec/models/artifact_ref_response_spec.rb
410
410
  - spec/models/collection_version_docs_response_spec.rb
411
- - spec/models/paginated_collection_response_list_meta_spec.rb
412
- - spec/models/paginated_collection_response_list_links_spec.rb
411
+ - spec/models/paginated_repository_version_response_list_spec.rb
412
+ - spec/models/ansible_role_remote_response_spec.rb
413
+ - spec/models/paginatedansible_collection_version_response_list_spec.rb
414
+ - spec/models/repository_sync_url_spec.rb
415
+ - spec/models/paginated_tag_response_list_spec.rb
416
+ - spec/models/repository_version_response_spec.rb
417
+ - spec/models/paginatedansible_collection_remote_response_list_spec.rb
418
+ - spec/models/collection_namespace_response_spec.rb
413
419
  - spec/models/paginatedansible_role_response_list_spec.rb
420
+ - spec/models/patchedansible_ansible_repository_spec.rb
421
+ - spec/models/paginated_collection_response_list_spec.rb
414
422
  - spec/models/paginated_galaxy_collection_response_list_spec.rb
415
- - spec/models/ansible_collection_remote_response_spec.rb
416
- - spec/models/artifact_ref_response_spec.rb
417
- - spec/models/ansible_collection_remote_spec.rb
418
- - spec/models/ansible_collection_response_spec.rb
419
- - spec/models/paginated_tag_response_list_spec.rb
423
+ - spec/models/paginated_galaxy_role_version_response_list_spec.rb
424
+ - spec/models/policy_enum_spec.rb
425
+ - spec/models/paginated_collection_response_list_meta_spec.rb
426
+ - spec/models/galaxy_role_response_spec.rb
427
+ - spec/models/paginated_galaxy_role_response_list_spec.rb
428
+ - spec/models/paginatedansible_ansible_repository_response_list_spec.rb
420
429
  - spec/models/collection_metadata_response_spec.rb
421
- - spec/models/tag_response_spec.rb
430
+ - spec/models/ansible_collection_response_spec.rb
431
+ - spec/models/ansible_ansible_distribution_response_spec.rb
432
+ - spec/models/galaxy_collection_version_response_spec.rb
422
433
  - spec/models/paginatedansible_role_remote_response_list_spec.rb
423
- - spec/models/patchedansible_collection_remote_spec.rb
424
- - spec/models/repository_add_remove_content_spec.rb
425
- - spec/models/ansible_ansible_repository_response_spec.rb
426
- - spec/models/collection_response_spec.rb
427
- - spec/models/collection_version_response_spec.rb
428
- - spec/models/paginated_collection_version_response_list_spec.rb
434
+ - spec/models/async_operation_response_spec.rb
429
435
  - spec/models/collection_ref_response_spec.rb
430
- - spec/models/galaxy_collection_spec.rb
431
- - spec/models/repository_sync_url_spec.rb
432
- - spec/models/ansible_tag_response_spec.rb
433
- - spec/models/galaxy_role_response_spec.rb
434
- - spec/models/patchedansible_ansible_repository_spec.rb
435
- - spec/models/ansible_role_response_spec.rb
436
- - spec/models/ansible_role_remote_response_spec.rb
436
+ - spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
437
437
  - spec/spec_helper.rb