pulp_ostree_client 2.2.1 → 2.3.0
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 +23 -4
- data/docs/ContentCommitsApi.md +2 -0
- data/docs/ContentConfigsApi.md +2 -0
- data/docs/ContentContentApi.md +56 -0
- data/docs/ContentObjectsApi.md +2 -0
- data/docs/ContentRefsApi.md +2 -0
- data/docs/ContentSummariesApi.md +2 -0
- data/docs/DistributionsOstreeApi.md +232 -0
- data/docs/MyPermissionsResponse.md +17 -0
- data/docs/NestedRole.md +21 -0
- data/docs/NestedRoleResponse.md +21 -0
- data/docs/ObjectRolesResponse.md +17 -0
- data/docs/OstreeOstreeContent.md +23 -0
- data/docs/RemotesOstreeApi.md +232 -0
- data/docs/RepositoriesOstreeApi.md +232 -0
- data/lib/pulp_ostree_client/api/content_commits_api.rb +3 -0
- data/lib/pulp_ostree_client/api/content_configs_api.rb +3 -0
- data/lib/pulp_ostree_client/api/content_content_api.rb +67 -0
- data/lib/pulp_ostree_client/api/content_objects_api.rb +3 -0
- data/lib/pulp_ostree_client/api/content_refs_api.rb +3 -0
- data/lib/pulp_ostree_client/api/content_summaries_api.rb +3 -0
- data/lib/pulp_ostree_client/api/distributions_ostree_api.rb +276 -0
- data/lib/pulp_ostree_client/api/remotes_ostree_api.rb +276 -0
- data/lib/pulp_ostree_client/api/repositories_ostree_api.rb +276 -0
- data/lib/pulp_ostree_client/models/my_permissions_response.rb +213 -0
- data/lib/pulp_ostree_client/models/nested_role.rb +253 -0
- data/lib/pulp_ostree_client/models/nested_role_response.rb +234 -0
- data/lib/pulp_ostree_client/models/object_roles_response.rb +213 -0
- data/lib/pulp_ostree_client/models/ostree_ostree_content.rb +289 -0
- data/lib/pulp_ostree_client/version.rb +1 -1
- data/lib/pulp_ostree_client.rb +5 -0
- data/spec/api/content_commits_api_spec.rb +1 -0
- data/spec/api/content_configs_api_spec.rb +1 -0
- data/spec/api/content_content_api_spec.rb +13 -0
- data/spec/api/content_objects_api_spec.rb +1 -0
- data/spec/api/content_refs_api_spec.rb +1 -0
- data/spec/api/content_summaries_api_spec.rb +1 -0
- data/spec/api/distributions_ostree_api_spec.rb +54 -0
- data/spec/api/remotes_ostree_api_spec.rb +54 -0
- data/spec/api/repositories_ostree_api_spec.rb +54 -0
- data/spec/models/my_permissions_response_spec.rb +41 -0
- data/spec/models/nested_role_response_spec.rb +53 -0
- data/spec/models/nested_role_spec.rb +53 -0
- data/spec/models/object_roles_response_spec.rb +41 -0
- data/spec/models/ostree_ostree_content_spec.rb +59 -0
- metadata +56 -36
@@ -32,6 +32,19 @@ describe 'RemotesOstreeApi' do
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
+
# unit tests for add_role
|
36
|
+
# Add a role
|
37
|
+
# Add a role for this object to users/groups.
|
38
|
+
# @param ostree_ostree_remote_href
|
39
|
+
# @param nested_role
|
40
|
+
# @param [Hash] opts the optional parameters
|
41
|
+
# @return [NestedRoleResponse]
|
42
|
+
describe 'add_role test' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
35
48
|
# unit tests for create
|
36
49
|
# Create an ostree remote
|
37
50
|
# A ViewSet class for OSTree remote repositories.
|
@@ -91,6 +104,34 @@ describe 'RemotesOstreeApi' do
|
|
91
104
|
end
|
92
105
|
end
|
93
106
|
|
107
|
+
# unit tests for list_roles
|
108
|
+
# List roles
|
109
|
+
# List roles assigned to this object.
|
110
|
+
# @param ostree_ostree_remote_href
|
111
|
+
# @param [Hash] opts the optional parameters
|
112
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
113
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
114
|
+
# @return [ObjectRolesResponse]
|
115
|
+
describe 'list_roles test' do
|
116
|
+
it 'should work' do
|
117
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
# unit tests for my_permissions
|
122
|
+
# List user permissions
|
123
|
+
# List permissions available to the current user on this object.
|
124
|
+
# @param ostree_ostree_remote_href
|
125
|
+
# @param [Hash] opts the optional parameters
|
126
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
127
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
128
|
+
# @return [MyPermissionsResponse]
|
129
|
+
describe 'my_permissions test' do
|
130
|
+
it 'should work' do
|
131
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
94
135
|
# unit tests for partial_update
|
95
136
|
# Update an ostree remote
|
96
137
|
# Trigger an asynchronous partial update task
|
@@ -118,6 +159,19 @@ describe 'RemotesOstreeApi' do
|
|
118
159
|
end
|
119
160
|
end
|
120
161
|
|
162
|
+
# unit tests for remove_role
|
163
|
+
# Remove a role
|
164
|
+
# Remove a role for this object from users/groups.
|
165
|
+
# @param ostree_ostree_remote_href
|
166
|
+
# @param nested_role
|
167
|
+
# @param [Hash] opts the optional parameters
|
168
|
+
# @return [NestedRoleResponse]
|
169
|
+
describe 'remove_role test' do
|
170
|
+
it 'should work' do
|
171
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
121
175
|
# unit tests for set_label
|
122
176
|
# Set a label
|
123
177
|
# Set a single pulp_label on the object to a specific value or null.
|
@@ -32,6 +32,19 @@ describe 'RepositoriesOstreeApi' do
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
+
# unit tests for add_role
|
36
|
+
# Add a role
|
37
|
+
# Add a role for this object to users/groups.
|
38
|
+
# @param ostree_ostree_repository_href
|
39
|
+
# @param nested_role
|
40
|
+
# @param [Hash] opts the optional parameters
|
41
|
+
# @return [NestedRoleResponse]
|
42
|
+
describe 'add_role test' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
35
48
|
# unit tests for create
|
36
49
|
# Create an ostree repository
|
37
50
|
# A ViewSet class for OSTree repositories.
|
@@ -122,6 +135,20 @@ describe 'RepositoriesOstreeApi' do
|
|
122
135
|
end
|
123
136
|
end
|
124
137
|
|
138
|
+
# unit tests for list_roles
|
139
|
+
# List roles
|
140
|
+
# List roles assigned to this object.
|
141
|
+
# @param ostree_ostree_repository_href
|
142
|
+
# @param [Hash] opts the optional parameters
|
143
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
144
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
145
|
+
# @return [ObjectRolesResponse]
|
146
|
+
describe 'list_roles test' do
|
147
|
+
it 'should work' do
|
148
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
125
152
|
# unit tests for modify
|
126
153
|
# Modify repository
|
127
154
|
# Trigger an asynchronous task to modify content.
|
@@ -135,6 +162,20 @@ describe 'RepositoriesOstreeApi' do
|
|
135
162
|
end
|
136
163
|
end
|
137
164
|
|
165
|
+
# unit tests for my_permissions
|
166
|
+
# List user permissions
|
167
|
+
# List permissions available to the current user on this object.
|
168
|
+
# @param ostree_ostree_repository_href
|
169
|
+
# @param [Hash] opts the optional parameters
|
170
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
171
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
172
|
+
# @return [MyPermissionsResponse]
|
173
|
+
describe 'my_permissions test' do
|
174
|
+
it 'should work' do
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
138
179
|
# unit tests for partial_update
|
139
180
|
# Update an ostree repository
|
140
181
|
# Trigger an asynchronous partial update task
|
@@ -162,6 +203,19 @@ describe 'RepositoriesOstreeApi' do
|
|
162
203
|
end
|
163
204
|
end
|
164
205
|
|
206
|
+
# unit tests for remove_role
|
207
|
+
# Remove a role
|
208
|
+
# Remove a role for this object from users/groups.
|
209
|
+
# @param ostree_ostree_repository_href
|
210
|
+
# @param nested_role
|
211
|
+
# @param [Hash] opts the optional parameters
|
212
|
+
# @return [NestedRoleResponse]
|
213
|
+
describe 'remove_role test' do
|
214
|
+
it 'should work' do
|
215
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
165
219
|
# unit tests for set_label
|
166
220
|
# Set a label
|
167
221
|
# Set a single pulp_label on the object to a specific value or null.
|
@@ -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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpOstreeClient::MyPermissionsResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MyPermissionsResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpOstreeClient::MyPermissionsResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MyPermissionsResponse' do
|
31
|
+
it 'should create an instance of MyPermissionsResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::MyPermissionsResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "permissions"' 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
|
@@ -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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpOstreeClient::NestedRoleResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NestedRoleResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpOstreeClient::NestedRoleResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NestedRoleResponse' do
|
31
|
+
it 'should create an instance of NestedRoleResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::NestedRoleResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "users"' 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 "groups"' 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 "role"' 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,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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpOstreeClient::NestedRole
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NestedRole' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpOstreeClient::NestedRole.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NestedRole' do
|
31
|
+
it 'should create an instance of NestedRole' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::NestedRole)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "users"' 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 "groups"' 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 "role"' 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,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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpOstreeClient::ObjectRolesResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ObjectRolesResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpOstreeClient::ObjectRolesResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ObjectRolesResponse' do
|
31
|
+
it 'should create an instance of ObjectRolesResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::ObjectRolesResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "roles"' 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
|
@@ -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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpOstreeClient::OstreeOstreeContent
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'OstreeOstreeContent' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpOstreeClient::OstreeOstreeContent.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of OstreeOstreeContent' do
|
31
|
+
it 'should create an instance of OstreeOstreeContent' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::OstreeOstreeContent)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "repository"' 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 "artifact"' 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 "relative_path"' 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 "digest"' 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
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_ostree_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
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: 2024-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -89,10 +89,15 @@ files:
|
|
89
89
|
- docs/ContentSummariesApi.md
|
90
90
|
- docs/ContentSummaryResponse.md
|
91
91
|
- docs/DistributionsOstreeApi.md
|
92
|
+
- docs/MyPermissionsResponse.md
|
93
|
+
- docs/NestedRole.md
|
94
|
+
- docs/NestedRoleResponse.md
|
95
|
+
- docs/ObjectRolesResponse.md
|
92
96
|
- docs/OstreeImportAll.md
|
93
97
|
- docs/OstreeImportCommitsToRef.md
|
94
98
|
- docs/OstreeOstreeCommitResponse.md
|
95
99
|
- docs/OstreeOstreeConfigResponse.md
|
100
|
+
- docs/OstreeOstreeContent.md
|
96
101
|
- docs/OstreeOstreeContentResponse.md
|
97
102
|
- docs/OstreeOstreeDistribution.md
|
98
103
|
- docs/OstreeOstreeDistributionResponse.md
|
@@ -145,10 +150,15 @@ files:
|
|
145
150
|
- lib/pulp_ostree_client/configuration.rb
|
146
151
|
- lib/pulp_ostree_client/models/async_operation_response.rb
|
147
152
|
- lib/pulp_ostree_client/models/content_summary_response.rb
|
153
|
+
- lib/pulp_ostree_client/models/my_permissions_response.rb
|
154
|
+
- lib/pulp_ostree_client/models/nested_role.rb
|
155
|
+
- lib/pulp_ostree_client/models/nested_role_response.rb
|
156
|
+
- lib/pulp_ostree_client/models/object_roles_response.rb
|
148
157
|
- lib/pulp_ostree_client/models/ostree_import_all.rb
|
149
158
|
- lib/pulp_ostree_client/models/ostree_import_commits_to_ref.rb
|
150
159
|
- lib/pulp_ostree_client/models/ostree_ostree_commit_response.rb
|
151
160
|
- lib/pulp_ostree_client/models/ostree_ostree_config_response.rb
|
161
|
+
- lib/pulp_ostree_client/models/ostree_ostree_content.rb
|
152
162
|
- lib/pulp_ostree_client/models/ostree_ostree_content_response.rb
|
153
163
|
- lib/pulp_ostree_client/models/ostree_ostree_distribution.rb
|
154
164
|
- lib/pulp_ostree_client/models/ostree_ostree_distribution_response.rb
|
@@ -198,11 +208,16 @@ files:
|
|
198
208
|
- spec/configuration_spec.rb
|
199
209
|
- spec/models/async_operation_response_spec.rb
|
200
210
|
- spec/models/content_summary_response_spec.rb
|
211
|
+
- spec/models/my_permissions_response_spec.rb
|
212
|
+
- spec/models/nested_role_response_spec.rb
|
213
|
+
- spec/models/nested_role_spec.rb
|
214
|
+
- spec/models/object_roles_response_spec.rb
|
201
215
|
- spec/models/ostree_import_all_spec.rb
|
202
216
|
- spec/models/ostree_import_commits_to_ref_spec.rb
|
203
217
|
- spec/models/ostree_ostree_commit_response_spec.rb
|
204
218
|
- spec/models/ostree_ostree_config_response_spec.rb
|
205
219
|
- spec/models/ostree_ostree_content_response_spec.rb
|
220
|
+
- spec/models/ostree_ostree_content_spec.rb
|
206
221
|
- spec/models/ostree_ostree_distribution_response_spec.rb
|
207
222
|
- spec/models/ostree_ostree_distribution_spec.rb
|
208
223
|
- spec/models/ostree_ostree_object_response_spec.rb
|
@@ -260,55 +275,60 @@ signing_key:
|
|
260
275
|
specification_version: 4
|
261
276
|
summary: Pulp 3 API Ruby Gem
|
262
277
|
test_files:
|
263
|
-
- spec/api/content_summaries_api_spec.rb
|
264
278
|
- spec/api/content_objects_api_spec.rb
|
265
|
-
- spec/api/
|
279
|
+
- spec/api/content_configs_api_spec.rb
|
266
280
|
- spec/api/repositories_ostree_api_spec.rb
|
267
|
-
- spec/api/
|
281
|
+
- spec/api/repositories_ostree_versions_api_spec.rb
|
268
282
|
- spec/api/content_refs_api_spec.rb
|
269
|
-
- spec/api/
|
283
|
+
- spec/api/content_commits_api_spec.rb
|
284
|
+
- spec/api/content_content_api_spec.rb
|
285
|
+
- spec/api/content_summaries_api_spec.rb
|
270
286
|
- spec/api/distributions_ostree_api_spec.rb
|
271
287
|
- spec/api/remotes_ostree_api_spec.rb
|
272
|
-
- spec/api/repositories_ostree_versions_api_spec.rb
|
273
288
|
- spec/api_client_spec.rb
|
274
289
|
- spec/configuration_spec.rb
|
275
|
-
- spec/models/paginatedostree_ostree_summary_response_list_spec.rb
|
276
|
-
- spec/models/patchedostree_ostree_remote_spec.rb
|
277
|
-
- spec/models/repository_sync_url_spec.rb
|
278
|
-
- spec/models/ostree_ostree_remote_spec.rb
|
279
|
-
- spec/models/ostree_import_commits_to_ref_spec.rb
|
280
|
-
- spec/models/paginatedostree_ostree_object_response_list_spec.rb
|
281
|
-
- spec/models/ostree_ostree_remote_response_spec.rb
|
282
|
-
- spec/models/ostree_ostree_distribution_response_spec.rb
|
283
|
-
- spec/models/unset_label_spec.rb
|
284
290
|
- spec/models/ostree_ostree_object_response_spec.rb
|
285
|
-
- spec/models/
|
286
|
-
- spec/models/repository_version_response_spec.rb
|
287
|
-
- spec/models/ostree_ostree_repository_response_spec.rb
|
288
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
289
|
-
- spec/models/set_label_spec.rb
|
290
|
-
- spec/models/ostree_import_all_spec.rb
|
291
|
+
- spec/models/paginatedostree_ostree_repository_response_list_spec.rb
|
291
292
|
- spec/models/content_summary_response_spec.rb
|
292
|
-
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
293
|
-
- spec/models/async_operation_response_spec.rb
|
294
|
-
- spec/models/ostree_ostree_commit_response_spec.rb
|
295
293
|
- spec/models/ostree_ostree_distribution_spec.rb
|
294
|
+
- spec/models/unset_label_response_spec.rb
|
295
|
+
- spec/models/ostree_import_all_spec.rb
|
296
|
+
- spec/models/set_label_spec.rb
|
297
|
+
- spec/models/nested_role_spec.rb
|
296
298
|
- spec/models/ostree_ostree_ref_response_spec.rb
|
297
|
-
- spec/models/
|
298
|
-
- spec/models/
|
299
|
+
- spec/models/ostree_ostree_commit_response_spec.rb
|
300
|
+
- spec/models/paginatedostree_ostree_content_response_list_spec.rb
|
301
|
+
- spec/models/repair_spec.rb
|
302
|
+
- spec/models/repository_version_response_spec.rb
|
299
303
|
- spec/models/policy_enum_spec.rb
|
304
|
+
- spec/models/ostree_ostree_distribution_response_spec.rb
|
305
|
+
- spec/models/my_permissions_response_spec.rb
|
300
306
|
- spec/models/paginatedostree_ostree_ref_response_list_spec.rb
|
301
|
-
- spec/models/
|
302
|
-
- spec/models/
|
303
|
-
- spec/models/
|
304
|
-
- spec/models/
|
305
|
-
- spec/models/
|
306
|
-
- spec/models/
|
307
|
-
- spec/models/ostree_ostree_config_response_spec.rb
|
307
|
+
- spec/models/set_label_response_spec.rb
|
308
|
+
- spec/models/ostree_ostree_remote_spec.rb
|
309
|
+
- spec/models/paginatedostree_ostree_object_response_list_spec.rb
|
310
|
+
- spec/models/object_roles_response_spec.rb
|
311
|
+
- spec/models/unset_label_spec.rb
|
312
|
+
- spec/models/ostree_ostree_repository_spec.rb
|
308
313
|
- spec/models/paginatedostree_ostree_remote_response_list_spec.rb
|
314
|
+
- spec/models/ostree_ostree_content_response_spec.rb
|
315
|
+
- spec/models/paginatedostree_ostree_config_response_list_spec.rb
|
316
|
+
- spec/models/patchedostree_ostree_remote_spec.rb
|
309
317
|
- spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
|
310
|
-
- spec/models/set_label_response_spec.rb
|
311
|
-
- spec/models/ostree_ostree_remote_response_hidden_fields_spec.rb
|
312
318
|
- spec/models/patchedostree_ostree_repository_spec.rb
|
319
|
+
- spec/models/ostree_ostree_config_response_spec.rb
|
320
|
+
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
321
|
+
- spec/models/ostree_import_commits_to_ref_spec.rb
|
322
|
+
- spec/models/async_operation_response_spec.rb
|
323
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
324
|
+
- spec/models/paginatedostree_ostree_summary_response_list_spec.rb
|
325
|
+
- spec/models/nested_role_response_spec.rb
|
326
|
+
- spec/models/repository_add_remove_content_spec.rb
|
327
|
+
- spec/models/repository_sync_url_spec.rb
|
328
|
+
- spec/models/ostree_ostree_remote_response_hidden_fields_spec.rb
|
313
329
|
- spec/models/patchedostree_ostree_distribution_spec.rb
|
330
|
+
- spec/models/ostree_ostree_summary_response_spec.rb
|
331
|
+
- spec/models/ostree_ostree_repository_response_spec.rb
|
332
|
+
- spec/models/ostree_ostree_remote_response_spec.rb
|
333
|
+
- spec/models/ostree_ostree_content_spec.rb
|
314
334
|
- spec/spec_helper.rb
|