pulp_ansible_client 0.9.1 → 0.9.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89af3377c92dbb756896fba5a43865e37b8da1ba7dbecb082dba6757ab529286
4
- data.tar.gz: 07de78cadd6df9741ae6f437e1a0d33fea2d31845b798bf25cd0ce02714c844d
3
+ metadata.gz: 410eedd409c84df67f9bd0d8398c787cd8b310510794bd8a6f08b3e875e40a4d
4
+ data.tar.gz: 341a7fda48dfeb831b3cb2018e320ca20efee724f3a8c68a82e86c145841ad16
5
5
  SHA512:
6
- metadata.gz: f253098eee1bfe2263c10f3464de3a4dcee41d9db797ca7484a2b59ec8d0059f77c316db29e6d9b86f0226b0596cf1b40d5e674370fbda4ee32fe2026e307363
7
- data.tar.gz: dd542faa1e96650a3bdde8bfbfaf7e62f6f8d63e11687a5567ba6b693ec1912d89b3116ad7c1a264a2de28536a541e4d0fa5d80fe3e1c06919c277b158b28995
6
+ metadata.gz: a7ae3695d0fa71a768da39ebb0e320cc77c4643a3d8a7d826e75cbf392473d3d666fe248634b1fe7bf4a62474a9c8922a755771fd5949278b175db4ecbd8ff8b
7
+ data.tar.gz: eb0917960e387c166c70e195ca4a1556bcd9436220fba040df2ba7d3137bacff233ed1b949a737e2f95e9b1f8bdfe59b7821e57daf00ee64b9b532000313e9ed
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.9.1
10
+ - Package version: 0.9.2
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.9.1.gem
27
+ gem install ./pulp_ansible_client-0.9.2.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_ansible_client-0.9.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_ansible_client-0.9.2.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.9.1'
36
+ gem 'pulp_ansible_client', '~> 0.9.2'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content |
8
7
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
8
  **pulp_href** | **String** | | [optional] [readonly]
9
+ **artifact** | **String** | Artifact file representing the physical content |
10
10
  **md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
11
11
  **sha1** | **String** | The SHA-1 checksum if available. | [optional] [readonly]
12
12
  **sha224** | **String** | The SHA-224 checksum if available. | [optional] [readonly]
@@ -37,9 +37,9 @@ Name | Type | Description | Notes
37
37
  ```ruby
38
38
  require 'PulpAnsibleClient'
39
39
 
40
- instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(artifact: null,
41
- pulp_created: null,
40
+ instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_created: null,
42
41
  pulp_href: null,
42
+ artifact: null,
43
43
  md5: null,
44
44
  sha1: null,
45
45
  sha224: null,
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content |
8
7
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
8
  **pulp_href** | **String** | | [optional] [readonly]
9
+ **artifact** | **String** | Artifact file representing the physical content |
10
10
  **version** | **String** | |
11
11
  **name** | **String** | |
12
12
  **namespace** | **String** | |
@@ -16,9 +16,9 @@ Name | Type | Description | Notes
16
16
  ```ruby
17
17
  require 'PulpAnsibleClient'
18
18
 
19
- instance = PulpAnsibleClient::AnsibleRoleResponse.new(artifact: null,
20
- pulp_created: null,
19
+ instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_created: null,
21
20
  pulp_href: null,
21
+ artifact: null,
22
22
  version: null,
23
23
  name: null,
24
24
  namespace: null)
@@ -15,14 +15,14 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersionResponse
18
- # Artifact file representing the physical content
19
- attr_accessor :artifact
20
-
21
18
  # Timestamp of creation.
22
19
  attr_accessor :pulp_created
23
20
 
24
21
  attr_accessor :pulp_href
25
22
 
23
+ # Artifact file representing the physical content
24
+ attr_accessor :artifact
25
+
26
26
  # The MD5 checksum if available.
27
27
  attr_accessor :md5
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
- :'artifact' => :'artifact',
101
100
  :'pulp_created' => :'pulp_created',
102
101
  :'pulp_href' => :'pulp_href',
102
+ :'artifact' => :'artifact',
103
103
  :'md5' => :'md5',
104
104
  :'sha1' => :'sha1',
105
105
  :'sha224' => :'sha224',
@@ -130,9 +130,9 @@ module PulpAnsibleClient
130
130
  # Attribute type mapping.
131
131
  def self.openapi_types
132
132
  {
133
- :'artifact' => :'String',
134
133
  :'pulp_created' => :'DateTime',
135
134
  :'pulp_href' => :'String',
135
+ :'artifact' => :'String',
136
136
  :'md5' => :'String',
137
137
  :'sha1' => :'String',
138
138
  :'sha224' => :'String',
@@ -182,10 +182,6 @@ module PulpAnsibleClient
182
182
  h[k.to_sym] = v
183
183
  }
184
184
 
185
- if attributes.key?(:'artifact')
186
- self.artifact = attributes[:'artifact']
187
- end
188
-
189
185
  if attributes.key?(:'pulp_created')
190
186
  self.pulp_created = attributes[:'pulp_created']
191
187
  end
@@ -194,6 +190,10 @@ module PulpAnsibleClient
194
190
  self.pulp_href = attributes[:'pulp_href']
195
191
  end
196
192
 
193
+ if attributes.key?(:'artifact')
194
+ self.artifact = attributes[:'artifact']
195
+ end
196
+
197
197
  if attributes.key?(:'md5')
198
198
  self.md5 = attributes[:'md5']
199
199
  end
@@ -550,9 +550,9 @@ module PulpAnsibleClient
550
550
  def ==(o)
551
551
  return true if self.equal?(o)
552
552
  self.class == o.class &&
553
- artifact == o.artifact &&
554
553
  pulp_created == o.pulp_created &&
555
554
  pulp_href == o.pulp_href &&
555
+ artifact == o.artifact &&
556
556
  md5 == o.md5 &&
557
557
  sha1 == o.sha1 &&
558
558
  sha224 == o.sha224 &&
@@ -588,7 +588,7 @@ module PulpAnsibleClient
588
588
  # Calculates hash code according to all attributes.
589
589
  # @return [Integer] Hash code
590
590
  def hash
591
- [artifact, pulp_created, pulp_href, md5, sha1, sha224, sha256, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, repository, tags, version, requires_ansible].hash
591
+ [pulp_created, pulp_href, artifact, md5, sha1, sha224, sha256, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, repository, tags, version, requires_ansible].hash
592
592
  end
593
593
 
594
594
  # Builds the object from hash
@@ -15,14 +15,14 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Role versions.
17
17
  class AnsibleRoleResponse
18
- # Artifact file representing the physical content
19
- attr_accessor :artifact
20
-
21
18
  # Timestamp of creation.
22
19
  attr_accessor :pulp_created
23
20
 
24
21
  attr_accessor :pulp_href
25
22
 
23
+ # Artifact file representing the physical content
24
+ attr_accessor :artifact
25
+
26
26
  attr_accessor :version
27
27
 
28
28
  attr_accessor :name
@@ -32,9 +32,9 @@ 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_created' => :'pulp_created',
37
36
  :'pulp_href' => :'pulp_href',
37
+ :'artifact' => :'artifact',
38
38
  :'version' => :'version',
39
39
  :'name' => :'name',
40
40
  :'namespace' => :'namespace'
@@ -44,9 +44,9 @@ module PulpAnsibleClient
44
44
  # Attribute type mapping.
45
45
  def self.openapi_types
46
46
  {
47
- :'artifact' => :'String',
48
47
  :'pulp_created' => :'DateTime',
49
48
  :'pulp_href' => :'String',
49
+ :'artifact' => :'String',
50
50
  :'version' => :'String',
51
51
  :'name' => :'String',
52
52
  :'namespace' => :'String'
@@ -74,10 +74,6 @@ 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_created')
82
78
  self.pulp_created = attributes[:'pulp_created']
83
79
  end
@@ -86,6 +82,10 @@ module PulpAnsibleClient
86
82
  self.pulp_href = attributes[:'pulp_href']
87
83
  end
88
84
 
85
+ if attributes.key?(:'artifact')
86
+ self.artifact = attributes[:'artifact']
87
+ end
88
+
89
89
  if attributes.key?(:'version')
90
90
  self.version = attributes[:'version']
91
91
  end
@@ -137,9 +137,9 @@ 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_created == o.pulp_created &&
142
141
  pulp_href == o.pulp_href &&
142
+ artifact == o.artifact &&
143
143
  version == o.version &&
144
144
  name == o.name &&
145
145
  namespace == o.namespace
@@ -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_created, pulp_href, version, name, namespace].hash
157
+ [pulp_created, pulp_href, artifact, version, name, namespace].hash
158
158
  end
159
159
 
160
160
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.9.1'
14
+ VERSION = '0.9.2'
15
15
  end
@@ -32,19 +32,19 @@ 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_created"' 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_created"' do
41
+ describe 'test attribute "pulp_href"' 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
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_href"' do
47
+ describe 'test attribute "artifact"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
@@ -32,19 +32,19 @@ 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_created"' 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_created"' do
41
+ describe 'test attribute "pulp_href"' 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
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_href"' do
47
+ describe 'test attribute "artifact"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  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.9.1
4
+ version: 0.9.2
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-08-25 00:00:00.000000000 Z
11
+ date: 2021-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -363,91 +363,91 @@ signing_key:
363
363
  specification_version: 4
364
364
  summary: Pulp 3 API Ruby Gem
365
365
  test_files:
366
- - spec/api/repositories_ansible_api_spec.rb
367
- - spec/api/api_collections_api_spec.rb
368
- - spec/api/content_roles_api_spec.rb
369
- - spec/api/pulp_ansible_api_api_spec.rb
366
+ - spec/api/galaxy_detail_api_spec.rb
370
367
  - spec/api/versions_api_spec.rb
371
- - spec/api/pulp_ansible_api_v3_api_spec.rb
372
- - spec/api/remotes_collection_api_spec.rb
373
- - spec/api/pulp_ansible_api_v3_collection_versions_all_api_spec.rb
374
- - spec/api/remotes_role_api_spec.rb
368
+ - spec/api/pulp_ansible_api_v2_collections_versions_api_spec.rb
369
+ - spec/api/pulp_ansible_tags_api_spec.rb
370
+ - spec/api/repositories_ansible_versions_api_spec.rb
375
371
  - spec/api/pulp_ansible_api_v3_collections_versions_docs_blob_api_spec.rb
376
- - spec/api/pulp_ansible_api_v3_collections_api_spec.rb
372
+ - spec/api/api_collections_api_spec.rb
373
+ - spec/api/ansible_collections_api_spec.rb
374
+ - spec/api/pulp_ansible_api_api_spec.rb
377
375
  - spec/api/pulp_ansible_api_v3_collections_all_api_spec.rb
378
- - spec/api/content_collection_versions_api_spec.rb
379
376
  - spec/api/ansible_copy_api_spec.rb
380
377
  - spec/api/api_roles_api_spec.rb
381
- - spec/api/galaxy_detail_api_spec.rb
382
- - spec/api/ansible_collections_api_spec.rb
383
- - spec/api/collection_import_api_spec.rb
384
- - spec/api/pulp_ansible_artifacts_collections_v3_api_spec.rb
385
- - spec/api/distributions_ansible_api_spec.rb
386
- - spec/api/pulp_ansible_tags_api_spec.rb
387
- - spec/api/repositories_ansible_versions_api_spec.rb
378
+ - spec/api/content_collection_versions_api_spec.rb
379
+ - spec/api/repositories_ansible_api_spec.rb
380
+ - spec/api/pulp_ansible_api_v3_collections_api_spec.rb
381
+ - spec/api/remotes_role_api_spec.rb
388
382
  - spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb
389
- - spec/api/pulp_ansible_api_v2_collections_versions_api_spec.rb
383
+ - spec/api/distributions_ansible_api_spec.rb
384
+ - spec/api/pulp_ansible_artifacts_collections_v3_api_spec.rb
385
+ - spec/api/content_roles_api_spec.rb
386
+ - spec/api/collection_import_api_spec.rb
387
+ - spec/api/pulp_ansible_api_v3_api_spec.rb
388
+ - spec/api/remotes_collection_api_spec.rb
389
+ - spec/api/pulp_ansible_api_v3_collection_versions_all_api_spec.rb
390
390
  - spec/api_client_spec.rb
391
391
  - spec/configuration_spec.rb
392
- - spec/models/ansible_role_response_spec.rb
393
- - spec/models/collection_ref_response_spec.rb
394
- - spec/models/ansible_ansible_distribution_spec.rb
395
- - spec/models/paginatedansible_ansible_repository_response_list_spec.rb
396
- - spec/models/ansible_collection_version_spec.rb
392
+ - spec/models/tag_response_spec.rb
393
+ - spec/models/ansible_role_remote_response_spec.rb
394
+ - spec/models/paginatedansible_collection_version_response_list_spec.rb
395
+ - spec/models/paginated_collection_response_list_meta_spec.rb
396
+ - spec/models/paginated_galaxy_collection_version_response_list_spec.rb
397
+ - spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
397
398
  - spec/models/paginated_galaxy_role_response_list_spec.rb
398
- - spec/models/copy_spec.rb
399
- - spec/models/ansible_ansible_repository_spec.rb
400
- - spec/models/paginatedansible_role_remote_response_list_spec.rb
401
- - spec/models/collection_namespace_response_spec.rb
402
- - spec/models/repo_metadata_response_spec.rb
403
- - spec/models/collection_version_docs_response_spec.rb
404
- - spec/models/galaxy_role_response_spec.rb
405
- - spec/models/galaxy_role_version_response_spec.rb
406
- - spec/models/galaxy_collection_spec.rb
407
- - spec/models/repository_version_spec.rb
408
- - spec/models/paginated_collection_version_response_list_spec.rb
409
- - spec/models/patchedansible_role_remote_spec.rb
410
- - spec/models/ansible_ansible_distribution_response_spec.rb
411
399
  - spec/models/collection_one_shot_spec.rb
412
- - spec/models/policy_enum_spec.rb
413
- - spec/models/paginated_galaxy_collection_response_list_spec.rb
414
- - spec/models/repository_version_response_spec.rb
415
- - spec/models/ansible_collection_remote_spec.rb
416
- - spec/models/collection_response_spec.rb
417
- - spec/models/paginated_galaxy_role_version_response_list_spec.rb
418
- - spec/models/paginatedansible_collection_remote_response_list_spec.rb
419
- - spec/models/collection_import_detail_response_spec.rb
420
- - spec/models/content_summary_response_spec.rb
421
- - spec/models/ansible_role_spec.rb
422
- - spec/models/async_operation_response_spec.rb
400
+ - spec/models/paginated_tag_response_list_spec.rb
401
+ - spec/models/ansible_collection_remote_response_spec.rb
402
+ - spec/models/paginatedansible_ansible_repository_response_list_spec.rb
403
+ - spec/models/ansible_role_remote_spec.rb
404
+ - spec/models/collection_metadata_response_spec.rb
405
+ - spec/models/patchedansible_ansible_distribution_spec.rb
406
+ - spec/models/ansible_ansible_distribution_response_spec.rb
407
+ - spec/models/collection_namespace_response_spec.rb
423
408
  - spec/models/galaxy_collection_response_spec.rb
424
- - spec/models/tag_response_spec.rb
409
+ - spec/models/ansible_ansible_distribution_spec.rb
410
+ - spec/models/async_operation_response_spec.rb
411
+ - spec/models/repository_version_response_spec.rb
425
412
  - spec/models/paginated_repository_version_response_list_spec.rb
426
- - spec/models/paginatedansible_collection_version_response_list_spec.rb
427
- - spec/models/patchedansible_ansible_distribution_spec.rb
428
- - spec/models/collection_version_response_spec.rb
429
- - spec/models/collection_metadata_response_spec.rb
430
- - spec/models/ansible_collection_response_spec.rb
431
- - spec/models/paginatedansible_role_response_list_spec.rb
432
- - spec/models/ansible_repository_sync_url_spec.rb
433
- - spec/models/artifact_ref_response_spec.rb
434
- - spec/models/ansible_collection_remote_response_spec.rb
435
- - spec/models/ansible_role_remote_response_spec.rb
436
- - spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
437
413
  - spec/models/content_summary_spec.rb
438
- - spec/models/paginated_tag_response_list_spec.rb
439
- - spec/models/patchedansible_collection_remote_spec.rb
440
- - spec/models/patchedansible_ansible_repository_spec.rb
414
+ - spec/models/repo_metadata_response_spec.rb
415
+ - spec/models/ansible_collection_remote_spec.rb
416
+ - spec/models/content_summary_response_spec.rb
417
+ - spec/models/paginatedansible_role_remote_response_list_spec.rb
441
418
  - spec/models/paginated_collection_response_list_spec.rb
442
- - spec/models/ansible_ansible_repository_response_spec.rb
443
- - spec/models/ansible_role_remote_spec.rb
444
- - spec/models/ansible_collection_version_response_spec.rb
419
+ - spec/models/patchedansible_ansible_repository_spec.rb
420
+ - spec/models/galaxy_collection_spec.rb
445
421
  - spec/models/galaxy_collection_version_response_spec.rb
422
+ - spec/models/paginatedansible_collection_remote_response_list_spec.rb
423
+ - spec/models/paginated_galaxy_role_version_response_list_spec.rb
424
+ - spec/models/paginatedansible_collection_response_list_spec.rb
425
+ - spec/models/artifact_ref_response_spec.rb
426
+ - spec/models/galaxy_role_version_response_spec.rb
427
+ - spec/models/collection_response_spec.rb
428
+ - spec/models/ansible_collection_response_spec.rb
429
+ - spec/models/copy_spec.rb
430
+ - spec/models/ansible_role_response_spec.rb
431
+ - spec/models/collection_version_response_spec.rb
432
+ - spec/models/collection_import_detail_response_spec.rb
446
433
  - spec/models/ansible_tag_response_spec.rb
447
- - spec/models/repository_add_remove_content_spec.rb
448
- - spec/models/paginated_collection_response_list_meta_spec.rb
434
+ - spec/models/collection_version_docs_response_spec.rb
435
+ - spec/models/patchedansible_role_remote_spec.rb
436
+ - spec/models/paginated_galaxy_collection_response_list_spec.rb
437
+ - spec/models/galaxy_role_response_spec.rb
438
+ - spec/models/repository_version_spec.rb
439
+ - spec/models/ansible_ansible_repository_response_spec.rb
449
440
  - spec/models/unpaginated_collection_version_response_spec.rb
441
+ - spec/models/ansible_ansible_repository_spec.rb
442
+ - spec/models/paginatedansible_role_response_list_spec.rb
443
+ - spec/models/ansible_collection_version_response_spec.rb
444
+ - spec/models/ansible_collection_version_spec.rb
445
+ - spec/models/patchedansible_collection_remote_spec.rb
446
+ - spec/models/collection_ref_response_spec.rb
447
+ - spec/models/policy_enum_spec.rb
448
+ - spec/models/ansible_repository_sync_url_spec.rb
450
449
  - spec/models/paginated_collection_response_list_links_spec.rb
451
- - spec/models/paginatedansible_collection_response_list_spec.rb
452
- - spec/models/paginated_galaxy_collection_version_response_list_spec.rb
450
+ - spec/models/paginated_collection_version_response_list_spec.rb
451
+ - spec/models/repository_add_remove_content_spec.rb
452
+ - spec/models/ansible_role_spec.rb
453
453
  - spec/spec_helper.rb