pulp_ansible_client 0.5.2 → 0.5.7
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 +4 -4
- data/README.md +7 -4
- data/docs/AnsibleCollectionRemote.md +8 -0
- data/docs/AnsibleCollectionRemoteResponse.md +8 -0
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleRoleRemote.md +9 -1
- data/docs/AnsibleRoleRemoteResponse.md +9 -1
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/ArtifactRefResponse.md +21 -0
- data/docs/CollectionResponse.md +2 -2
- data/docs/CollectionVersionResponse.md +1 -1
- data/docs/PaginatedCollectionResponseList.md +2 -2
- data/docs/PaginatedCollectionResponseListLinks.md +23 -0
- data/docs/PaginatedCollectionResponseListMeta.md +17 -0
- data/docs/PaginatedCollectionVersionResponseList.md +2 -2
- data/docs/PatchedansibleCollectionRemote.md +8 -0
- data/docs/PatchedansibleRoleRemote.md +9 -1
- data/docs/RepositoriesAnsibleVersionsApi.md +2 -2
- data/lib/pulp_ansible_client.rb +3 -0
- data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +4 -4
- data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +105 -1
- data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +105 -1
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_role_remote.rb +108 -4
- data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +108 -4
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
- data/lib/pulp_ansible_client/models/artifact_ref_response.rb +240 -0
- data/lib/pulp_ansible_client/models/collection_response.rb +2 -2
- data/lib/pulp_ansible_client/models/collection_version_response.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_collection_response_list.rb +2 -2
- data/lib/pulp_ansible_client/models/paginated_collection_response_list_links.rb +237 -0
- data/lib/pulp_ansible_client/models/paginated_collection_response_list_meta.rb +206 -0
- data/lib/pulp_ansible_client/models/paginated_collection_version_response_list.rb +2 -2
- data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +105 -1
- data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +108 -4
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/api/repositories_ansible_versions_api_spec.rb +2 -2
- data/spec/models/ansible_collection_remote_response_spec.rb +24 -0
- data/spec/models/ansible_collection_remote_spec.rb +24 -0
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_role_remote_response_spec.rb +24 -0
- data/spec/models/ansible_role_remote_spec.rb +24 -0
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/artifact_ref_response_spec.rb +53 -0
- data/spec/models/paginated_collection_response_list_links_spec.rb +59 -0
- data/spec/models/paginated_collection_response_list_meta_spec.rb +41 -0
- data/spec/models/patchedansible_collection_remote_spec.rb +24 -0
- data/spec/models/patchedansible_role_remote_spec.rb +24 -0
- metadata +74 -62
@@ -34,7 +34,7 @@ describe 'RepositoriesAnsibleVersionsApi' do
|
|
34
34
|
|
35
35
|
# unit tests for delete
|
36
36
|
# Delete a repository version
|
37
|
-
# Trigger an asynchronous task to delete a
|
37
|
+
# Trigger an asynchronous task to delete a repository version.
|
38
38
|
# @param ansible_ansible_repository_version_href
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
40
|
# @return [AsyncOperationResponse]
|
@@ -90,7 +90,7 @@ describe 'RepositoriesAnsibleVersionsApi' do
|
|
90
90
|
end
|
91
91
|
|
92
92
|
# unit tests for repair
|
93
|
-
# Trigger an asynchronous task to repair a
|
93
|
+
# Trigger an asynchronous task to repair a repository version.
|
94
94
|
# @param ansible_ansible_repository_version_href
|
95
95
|
# @param repository_version
|
96
96
|
# @param [Hash] opts the optional parameters
|
@@ -116,6 +116,30 @@ describe 'AnsibleCollectionRemoteResponse' do
|
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
+
describe 'test attribute "total_timeout"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
describe 'test attribute "connect_timeout"' do
|
126
|
+
it 'should work' do
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
describe 'test attribute "sock_connect_timeout"' do
|
132
|
+
it 'should work' do
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
describe 'test attribute "sock_read_timeout"' do
|
138
|
+
it 'should work' do
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
119
143
|
describe 'test attribute "requirements_file"' do
|
120
144
|
it 'should work' do
|
121
145
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -98,6 +98,30 @@ describe 'AnsibleCollectionRemote' do
|
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
+
describe 'test attribute "total_timeout"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe 'test attribute "connect_timeout"' do
|
108
|
+
it 'should work' do
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
describe 'test attribute "sock_connect_timeout"' do
|
114
|
+
it 'should work' do
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'test attribute "sock_read_timeout"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
101
125
|
describe 'test attribute "requirements_file"' do
|
102
126
|
it 'should work' do
|
103
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -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 "
|
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 "
|
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
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_created"' 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
|
@@ -116,4 +116,28 @@ describe 'AnsibleRoleRemoteResponse' do
|
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
+
describe 'test attribute "total_timeout"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
describe 'test attribute "connect_timeout"' do
|
126
|
+
it 'should work' do
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
describe 'test attribute "sock_connect_timeout"' do
|
132
|
+
it 'should work' do
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
describe 'test attribute "sock_read_timeout"' do
|
138
|
+
it 'should work' do
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
119
143
|
end
|
@@ -98,4 +98,28 @@ describe 'AnsibleRoleRemote' do
|
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
+
describe 'test attribute "total_timeout"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe 'test attribute "connect_timeout"' do
|
108
|
+
it 'should work' do
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
describe 'test attribute "sock_connect_timeout"' do
|
114
|
+
it 'should work' do
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'test attribute "sock_read_timeout"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
101
125
|
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 "
|
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 "
|
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
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_created"' 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
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpAnsibleClient::ArtifactRefResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ArtifactRefResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpAnsibleClient::ArtifactRefResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ArtifactRefResponse' do
|
31
|
+
it 'should create an instance of ArtifactRefResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpAnsibleClient::ArtifactRefResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "filename"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "sha256"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "size"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpAnsibleClient::PaginatedCollectionResponseListLinks
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PaginatedCollectionResponseListLinks' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpAnsibleClient::PaginatedCollectionResponseListLinks.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PaginatedCollectionResponseListLinks' do
|
31
|
+
it 'should create an instance of PaginatedCollectionResponseListLinks' do
|
32
|
+
expect(@instance).to be_instance_of(PulpAnsibleClient::PaginatedCollectionResponseListLinks)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "first"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "previous"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "_next"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "last"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpAnsibleClient::PaginatedCollectionResponseListMeta
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PaginatedCollectionResponseListMeta' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpAnsibleClient::PaginatedCollectionResponseListMeta.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PaginatedCollectionResponseListMeta' do
|
31
|
+
it 'should create an instance of PaginatedCollectionResponseListMeta' do
|
32
|
+
expect(@instance).to be_instance_of(PulpAnsibleClient::PaginatedCollectionResponseListMeta)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "count"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -98,6 +98,30 @@ describe 'PatchedansibleCollectionRemote' do
|
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
+
describe 'test attribute "total_timeout"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe 'test attribute "connect_timeout"' do
|
108
|
+
it 'should work' do
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
describe 'test attribute "sock_connect_timeout"' do
|
114
|
+
it 'should work' do
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'test attribute "sock_read_timeout"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
101
125
|
describe 'test attribute "requirements_file"' do
|
102
126
|
it 'should work' do
|
103
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -98,4 +98,28 @@ describe 'PatchedansibleRoleRemote' do
|
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
+
describe 'test attribute "total_timeout"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe 'test attribute "connect_timeout"' do
|
108
|
+
it 'should work' do
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
describe 'test attribute "sock_connect_timeout"' do
|
114
|
+
it 'should work' do
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'test attribute "sock_read_timeout"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
101
125
|
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.
|
4
|
+
version: 0.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- docs/AnsibleTagResponse.md
|
93
93
|
- docs/ApiCollectionsApi.md
|
94
94
|
- docs/ApiRolesApi.md
|
95
|
+
- docs/ArtifactRefResponse.md
|
95
96
|
- docs/AsyncOperationResponse.md
|
96
97
|
- docs/CollectionImportApi.md
|
97
98
|
- docs/CollectionImportDetailResponse.md
|
@@ -115,6 +116,8 @@ files:
|
|
115
116
|
- docs/GalaxyRoleResponse.md
|
116
117
|
- docs/GalaxyRoleVersionResponse.md
|
117
118
|
- docs/PaginatedCollectionResponseList.md
|
119
|
+
- docs/PaginatedCollectionResponseListLinks.md
|
120
|
+
- docs/PaginatedCollectionResponseListMeta.md
|
118
121
|
- docs/PaginatedCollectionVersionResponseList.md
|
119
122
|
- docs/PaginatedGalaxyCollectionResponseList.md
|
120
123
|
- docs/PaginatedGalaxyCollectionVersionResponseList.md
|
@@ -192,6 +195,7 @@ files:
|
|
192
195
|
- lib/pulp_ansible_client/models/ansible_role_remote_response.rb
|
193
196
|
- lib/pulp_ansible_client/models/ansible_role_response.rb
|
194
197
|
- lib/pulp_ansible_client/models/ansible_tag_response.rb
|
198
|
+
- lib/pulp_ansible_client/models/artifact_ref_response.rb
|
195
199
|
- lib/pulp_ansible_client/models/async_operation_response.rb
|
196
200
|
- lib/pulp_ansible_client/models/collection_import_detail_response.rb
|
197
201
|
- lib/pulp_ansible_client/models/collection_metadata_response.rb
|
@@ -210,6 +214,8 @@ files:
|
|
210
214
|
- lib/pulp_ansible_client/models/galaxy_role_response.rb
|
211
215
|
- lib/pulp_ansible_client/models/galaxy_role_version_response.rb
|
212
216
|
- lib/pulp_ansible_client/models/paginated_collection_response_list.rb
|
217
|
+
- lib/pulp_ansible_client/models/paginated_collection_response_list_links.rb
|
218
|
+
- lib/pulp_ansible_client/models/paginated_collection_response_list_meta.rb
|
213
219
|
- lib/pulp_ansible_client/models/paginated_collection_version_response_list.rb
|
214
220
|
- lib/pulp_ansible_client/models/paginated_galaxy_collection_response_list.rb
|
215
221
|
- lib/pulp_ansible_client/models/paginated_galaxy_collection_version_response_list.rb
|
@@ -274,6 +280,7 @@ files:
|
|
274
280
|
- spec/models/ansible_role_response_spec.rb
|
275
281
|
- spec/models/ansible_role_spec.rb
|
276
282
|
- spec/models/ansible_tag_response_spec.rb
|
283
|
+
- spec/models/artifact_ref_response_spec.rb
|
277
284
|
- spec/models/async_operation_response_spec.rb
|
278
285
|
- spec/models/collection_import_detail_response_spec.rb
|
279
286
|
- spec/models/collection_metadata_response_spec.rb
|
@@ -291,6 +298,8 @@ files:
|
|
291
298
|
- spec/models/galaxy_collection_version_response_spec.rb
|
292
299
|
- spec/models/galaxy_role_response_spec.rb
|
293
300
|
- spec/models/galaxy_role_version_response_spec.rb
|
301
|
+
- spec/models/paginated_collection_response_list_links_spec.rb
|
302
|
+
- spec/models/paginated_collection_response_list_meta_spec.rb
|
294
303
|
- spec/models/paginated_collection_response_list_spec.rb
|
295
304
|
- spec/models/paginated_collection_version_response_list_spec.rb
|
296
305
|
- spec/models/paginated_galaxy_collection_response_list_spec.rb
|
@@ -337,89 +346,92 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
337
346
|
- !ruby/object:Gem::Version
|
338
347
|
version: '0'
|
339
348
|
requirements: []
|
340
|
-
rubygems_version: 3.0.
|
349
|
+
rubygems_version: 3.0.3
|
341
350
|
signing_key:
|
342
351
|
specification_version: 4
|
343
352
|
summary: Pulp 3 API Ruby Gem
|
344
353
|
test_files:
|
345
|
-
- spec/api/
|
346
|
-
- spec/api/
|
347
|
-
- spec/api/repositories_ansible_versions_api_spec.rb
|
354
|
+
- spec/api/distributions_ansible_api_spec.rb
|
355
|
+
- spec/api/api_collections_api_spec.rb
|
348
356
|
- spec/api/ansible_collections_api_spec.rb
|
349
|
-
- spec/api/
|
350
|
-
- spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
|
351
|
-
- spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
|
357
|
+
- spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
|
352
358
|
- spec/api/pulp_ansible_api_api_spec.rb
|
353
|
-
- spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb
|
354
|
-
- spec/api/content_roles_api_spec.rb
|
355
|
-
- spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
|
356
359
|
- spec/api/remotes_collection_api_spec.rb
|
357
|
-
- spec/api/api_collections_api_spec.rb
|
358
|
-
- spec/api/content_collection_versions_api_spec.rb
|
359
|
-
- spec/api/ansible_copy_api_spec.rb
|
360
|
-
- spec/api/remotes_role_api_spec.rb
|
361
360
|
- spec/api/collection_import_api_spec.rb
|
361
|
+
- spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
|
362
|
+
- spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
|
363
|
+
- spec/api/repositories_ansible_versions_api_spec.rb
|
364
|
+
- spec/api/ansible_copy_api_spec.rb
|
362
365
|
- spec/api/repositories_ansible_api_spec.rb
|
366
|
+
- spec/api/content_roles_api_spec.rb
|
363
367
|
- spec/api/galaxy_detail_api_spec.rb
|
364
|
-
- spec/api/
|
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
|
372
|
+
- spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
|
365
373
|
- spec/api/api_roles_api_spec.rb
|
374
|
+
- spec/api/versions_api_spec.rb
|
366
375
|
- spec/api_client_spec.rb
|
367
376
|
- spec/configuration_spec.rb
|
368
|
-
- spec/models/
|
369
|
-
- spec/models/
|
370
|
-
- spec/models/
|
371
|
-
- spec/models/
|
372
|
-
- spec/models/
|
373
|
-
- spec/models/
|
374
|
-
- spec/models/
|
375
|
-
- spec/models/
|
376
|
-
- spec/models/collection_import_detail_response_spec.rb
|
377
|
-
- spec/models/ansible_role_response_spec.rb
|
378
|
-
- spec/models/ansible_ansible_repository_response_spec.rb
|
379
|
-
- spec/models/collection_response_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
|
380
385
|
- spec/models/patchedansible_ansible_distribution_spec.rb
|
381
|
-
- spec/models/tag_response_spec.rb
|
382
386
|
- spec/models/galaxy_role_version_response_spec.rb
|
383
|
-
- spec/models/ansible_tag_response_spec.rb
|
384
|
-
- spec/models/paginatedansible_ansible_repository_response_list_spec.rb
|
385
|
-
- spec/models/ansible_collection_remote_response_spec.rb
|
386
|
-
- spec/models/ansible_ansible_distribution_spec.rb
|
387
|
-
- spec/models/paginatedansible_role_remote_response_list_spec.rb
|
388
|
-
- spec/models/galaxy_collection_spec.rb
|
389
|
-
- spec/models/paginated_galaxy_collection_version_response_list_spec.rb
|
390
|
-
- spec/models/ansible_role_spec.rb
|
391
|
-
- spec/models/collection_version_docs_response_spec.rb
|
392
|
-
- spec/models/paginated_collection_response_list_spec.rb
|
393
|
-
- spec/models/paginated_collection_version_response_list_spec.rb
|
394
|
-
- spec/models/collection_ref_response_spec.rb
|
395
|
-
- spec/models/patched_collection_spec.rb
|
396
|
-
- spec/models/paginated_galaxy_role_version_response_list_spec.rb
|
397
|
-
- spec/models/ansible_collection_remote_spec.rb
|
398
|
-
- spec/models/collection_version_response_spec.rb
|
399
|
-
- spec/models/patchedansible_role_remote_spec.rb
|
400
387
|
- spec/models/ansible_ansible_repository_spec.rb
|
401
|
-
- spec/models/
|
402
|
-
- spec/models/
|
403
|
-
- spec/models/
|
404
|
-
- spec/models/
|
388
|
+
- spec/models/copy_spec.rb
|
389
|
+
- 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
|
+
- spec/models/patched_collection_spec.rb
|
405
395
|
- spec/models/policy_enum_spec.rb
|
406
396
|
- spec/models/ansible_collection_version_spec.rb
|
407
|
-
- spec/models/copy_spec.rb
|
408
397
|
- spec/models/paginatedansible_collection_response_list_spec.rb
|
409
|
-
- spec/models/
|
410
|
-
- spec/models/
|
411
|
-
- spec/models/
|
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
|
401
|
+
- spec/models/collection_import_detail_response_spec.rb
|
402
|
+
- spec/models/paginated_galaxy_role_version_response_list_spec.rb
|
412
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
|
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
|
413
|
+
- spec/models/paginatedansible_role_response_list_spec.rb
|
414
|
+
- 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
|
413
418
|
- spec/models/ansible_collection_response_spec.rb
|
414
|
-
- spec/models/
|
419
|
+
- spec/models/paginated_tag_response_list_spec.rb
|
415
420
|
- spec/models/collection_metadata_response_spec.rb
|
416
|
-
- spec/models/
|
417
|
-
- spec/models/
|
421
|
+
- spec/models/tag_response_spec.rb
|
422
|
+
- spec/models/paginatedansible_role_remote_response_list_spec.rb
|
418
423
|
- spec/models/patchedansible_collection_remote_spec.rb
|
419
|
-
- spec/models/
|
420
|
-
- spec/models/
|
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
|
429
|
+
- spec/models/collection_ref_response_spec.rb
|
430
|
+
- spec/models/galaxy_collection_spec.rb
|
421
431
|
- spec/models/repository_sync_url_spec.rb
|
432
|
+
- spec/models/ansible_tag_response_spec.rb
|
433
|
+
- spec/models/galaxy_role_response_spec.rb
|
422
434
|
- spec/models/patchedansible_ansible_repository_spec.rb
|
423
|
-
- spec/models/
|
424
|
-
- spec/models/
|
435
|
+
- spec/models/ansible_role_response_spec.rb
|
436
|
+
- spec/models/ansible_role_remote_response_spec.rb
|
425
437
|
- spec/spec_helper.rb
|