pulp_ostree_client 2.0.0a5 → 2.0.0a6
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 +10 -9
- data/docs/ContentCommitsApi.md +2 -2
- data/docs/ContentConfigsApi.md +2 -2
- data/docs/ContentObjectsApi.md +2 -2
- data/docs/ContentRefsApi.md +2 -2
- data/docs/ContentSummariesApi.md +2 -2
- data/docs/DistributionsOstreeApi.md +2 -2
- data/docs/OstreeImportAll.md +19 -0
- data/docs/{OstreeRepoImport.md → OstreeImportCommitsToRef.md} +3 -3
- data/docs/OstreeOstreeRemote.md +7 -3
- data/docs/OstreeOstreeRemoteResponse.md +5 -1
- data/docs/PatchedostreeOstreeRemote.md +7 -3
- data/docs/RemotesOstreeApi.md +2 -2
- data/docs/Repair.md +17 -0
- data/docs/RepositoriesOstreeApi.md +66 -10
- data/docs/RepositoriesOstreeVersionsApi.md +6 -6
- data/lib/pulp_ostree_client/api/content_commits_api.rb +7 -3
- data/lib/pulp_ostree_client/api/content_configs_api.rb +7 -3
- data/lib/pulp_ostree_client/api/content_objects_api.rb +7 -3
- data/lib/pulp_ostree_client/api/content_refs_api.rb +7 -3
- data/lib/pulp_ostree_client/api/content_summaries_api.rb +7 -3
- data/lib/pulp_ostree_client/api/distributions_ostree_api.rb +7 -3
- data/lib/pulp_ostree_client/api/remotes_ostree_api.rb +7 -3
- data/lib/pulp_ostree_client/api/repositories_ostree_api.rb +90 -16
- data/lib/pulp_ostree_client/api/repositories_ostree_versions_api.rb +16 -12
- data/lib/pulp_ostree_client/api_client.rb +1 -4
- data/lib/pulp_ostree_client/configuration.rb +1 -0
- data/lib/pulp_ostree_client/models/{content_summary.rb → ostree_import_all.rb} +42 -41
- data/lib/pulp_ostree_client/models/{ostree_repo_import.rb → ostree_import_commits_to_ref.rb} +16 -7
- data/lib/pulp_ostree_client/models/ostree_ostree_remote.rb +32 -6
- data/lib/pulp_ostree_client/models/ostree_ostree_remote_response.rb +30 -4
- data/lib/pulp_ostree_client/models/patchedostree_ostree_remote.rb +32 -6
- data/lib/pulp_ostree_client/models/{repository_version.rb → repair.rb} +13 -12
- data/lib/pulp_ostree_client/version.rb +1 -1
- data/lib/pulp_ostree_client.rb +3 -3
- data/spec/api/content_commits_api_spec.rb +1 -1
- data/spec/api/content_configs_api_spec.rb +1 -1
- data/spec/api/content_objects_api_spec.rb +1 -1
- data/spec/api/content_refs_api_spec.rb +1 -1
- data/spec/api/content_summaries_api_spec.rb +1 -1
- data/spec/api/distributions_ostree_api_spec.rb +1 -1
- data/spec/api/remotes_ostree_api_spec.rb +1 -1
- data/spec/api/repositories_ostree_api_spec.rb +17 -4
- data/spec/api/repositories_ostree_versions_api_spec.rb +2 -2
- data/spec/models/{content_summary_spec.rb → ostree_import_all_spec.rb} +8 -14
- data/spec/models/{ostree_repo_import_spec.rb → ostree_import_commits_to_ref_spec.rb} +6 -6
- data/spec/models/ostree_ostree_remote_response_spec.rb +12 -0
- data/spec/models/ostree_ostree_remote_spec.rb +12 -0
- data/spec/models/patchedostree_ostree_remote_spec.rb +12 -0
- data/spec/models/{repository_version_spec.rb → repair_spec.rb} +7 -7
- metadata +41 -41
- data/docs/ContentSummary.md +0 -21
- data/docs/RepositoryVersion.md +0 -17
@@ -67,7 +67,7 @@ describe 'RemotesOstreeApi' do
|
|
67
67
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
68
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
|
-
# @option opts [String] :ordering
|
70
|
+
# @option opts [Array<String>] :ordering Ordering
|
71
71
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
72
72
|
# @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
|
73
73
|
# @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
|
@@ -56,11 +56,24 @@ describe 'RepositoriesOstreeApi' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
+
# unit tests for import_all
|
60
|
+
# Import refs and commits to a repository
|
61
|
+
# Trigger an asynchronous task to import all refs and commits to a repository.
|
62
|
+
# @param ostree_ostree_repository_href
|
63
|
+
# @param ostree_import_all
|
64
|
+
# @param [Hash] opts the optional parameters
|
65
|
+
# @return [AsyncOperationResponse]
|
66
|
+
describe 'import_all test' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
59
72
|
# unit tests for import_commits
|
60
|
-
#
|
61
|
-
# Trigger an asynchronous task to
|
73
|
+
# Append child commits to a repository
|
74
|
+
# Trigger an asynchronous task to append child commits to a repository.
|
62
75
|
# @param ostree_ostree_repository_href
|
63
|
-
# @param
|
76
|
+
# @param ostree_import_commits_to_ref
|
64
77
|
# @param [Hash] opts the optional parameters
|
65
78
|
# @return [AsyncOperationResponse]
|
66
79
|
describe 'import_commits test' do
|
@@ -80,7 +93,7 @@ describe 'RepositoriesOstreeApi' do
|
|
80
93
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
81
94
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
82
95
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
83
|
-
# @option opts [String] :ordering
|
96
|
+
# @option opts [Array<String>] :ordering Ordering
|
84
97
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
85
98
|
# @option opts [String] :fields A list of fields to include in the response.
|
86
99
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
@@ -59,7 +59,7 @@ describe 'RepositoriesOstreeVersionsApi' do
|
|
59
59
|
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
60
60
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
61
61
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
|
-
# @option opts [String] :ordering
|
62
|
+
# @option opts [Array<String>] :ordering Ordering
|
63
63
|
# @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
|
64
64
|
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
65
65
|
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
@@ -92,7 +92,7 @@ describe 'RepositoriesOstreeVersionsApi' do
|
|
92
92
|
# unit tests for repair
|
93
93
|
# Trigger an asynchronous task to repair a repository version.
|
94
94
|
# @param ostree_ostree_repository_version_href
|
95
|
-
# @param
|
95
|
+
# @param repair
|
96
96
|
# @param [Hash] opts the optional parameters
|
97
97
|
# @return [AsyncOperationResponse]
|
98
98
|
describe 'repair test' do
|
@@ -14,37 +14,31 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpOstreeClient::
|
17
|
+
# Unit tests for PulpOstreeClient::OstreeImportAll
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'OstreeImportAll' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpOstreeClient::
|
23
|
+
@instance = PulpOstreeClient::OstreeImportAll.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(PulpOstreeClient::
|
30
|
+
describe 'test an instance of OstreeImportAll' do
|
31
|
+
it 'should create an instance of OstreeImportAll' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::OstreeImportAll)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "artifact"' 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 "
|
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 "present"' do
|
41
|
+
describe 'test attribute "repository_name"' do
|
48
42
|
it 'should work' do
|
49
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
44
|
end
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpOstreeClient::
|
17
|
+
# Unit tests for PulpOstreeClient::OstreeImportCommitsToRef
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'OstreeImportCommitsToRef' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpOstreeClient::
|
23
|
+
@instance = PulpOstreeClient::OstreeImportCommitsToRef.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(PulpOstreeClient::
|
30
|
+
describe 'test an instance of OstreeImportCommitsToRef' do
|
31
|
+
it 'should create an instance of OstreeImportCommitsToRef' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::OstreeImportCommitsToRef)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "artifact"' do
|
@@ -152,4 +152,16 @@ describe 'OstreeOstreeRemoteResponse' do
|
|
152
152
|
end
|
153
153
|
end
|
154
154
|
|
155
|
+
describe 'test attribute "include_refs"' do
|
156
|
+
it 'should work' do
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
describe 'test attribute "exclude_refs"' do
|
162
|
+
it 'should work' do
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
155
167
|
end
|
@@ -164,4 +164,16 @@ describe 'OstreeOstreeRemote' do
|
|
164
164
|
end
|
165
165
|
end
|
166
166
|
|
167
|
+
describe 'test attribute "include_refs"' do
|
168
|
+
it 'should work' do
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
describe 'test attribute "exclude_refs"' 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
|
+
|
167
179
|
end
|
@@ -164,4 +164,16 @@ describe 'PatchedostreeOstreeRemote' do
|
|
164
164
|
end
|
165
165
|
end
|
166
166
|
|
167
|
+
describe 'test attribute "include_refs"' do
|
168
|
+
it 'should work' do
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
describe 'test attribute "exclude_refs"' 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
|
+
|
167
179
|
end
|
@@ -14,25 +14,25 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpOstreeClient::
|
17
|
+
# Unit tests for PulpOstreeClient::Repair
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'Repair' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpOstreeClient::
|
23
|
+
@instance = PulpOstreeClient::Repair.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(PulpOstreeClient::
|
30
|
+
describe 'test an instance of Repair' do
|
31
|
+
it 'should create an instance of Repair' do
|
32
|
+
expect(@instance).to be_instance_of(PulpOstreeClient::Repair)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "verify_checksums"' 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
|
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.0.
|
4
|
+
version: 2.0.0a6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -86,9 +86,10 @@ files:
|
|
86
86
|
- docs/ContentObjectsApi.md
|
87
87
|
- docs/ContentRefsApi.md
|
88
88
|
- docs/ContentSummariesApi.md
|
89
|
-
- docs/ContentSummary.md
|
90
89
|
- docs/ContentSummaryResponse.md
|
91
90
|
- docs/DistributionsOstreeApi.md
|
91
|
+
- docs/OstreeImportAll.md
|
92
|
+
- docs/OstreeImportCommitsToRef.md
|
92
93
|
- docs/OstreeOstreeCommitResponse.md
|
93
94
|
- docs/OstreeOstreeConfigResponse.md
|
94
95
|
- docs/OstreeOstreeDistribution.md
|
@@ -100,7 +101,6 @@ files:
|
|
100
101
|
- docs/OstreeOstreeRepository.md
|
101
102
|
- docs/OstreeOstreeRepositoryResponse.md
|
102
103
|
- docs/OstreeOstreeSummaryResponse.md
|
103
|
-
- docs/OstreeRepoImport.md
|
104
104
|
- docs/OstreeRepositoryAddRemoveContent.md
|
105
105
|
- docs/PaginatedRepositoryVersionResponseList.md
|
106
106
|
- docs/PaginatedostreeOstreeCommitResponseList.md
|
@@ -116,10 +116,10 @@ files:
|
|
116
116
|
- docs/PatchedostreeOstreeRepository.md
|
117
117
|
- docs/PolicyEnum.md
|
118
118
|
- docs/RemotesOstreeApi.md
|
119
|
+
- docs/Repair.md
|
119
120
|
- docs/RepositoriesOstreeApi.md
|
120
121
|
- docs/RepositoriesOstreeVersionsApi.md
|
121
122
|
- docs/RepositorySyncURL.md
|
122
|
-
- docs/RepositoryVersion.md
|
123
123
|
- docs/RepositoryVersionResponse.md
|
124
124
|
- git_push.sh
|
125
125
|
- lib/pulp_ostree_client.rb
|
@@ -136,8 +136,9 @@ files:
|
|
136
136
|
- lib/pulp_ostree_client/api_error.rb
|
137
137
|
- lib/pulp_ostree_client/configuration.rb
|
138
138
|
- lib/pulp_ostree_client/models/async_operation_response.rb
|
139
|
-
- lib/pulp_ostree_client/models/content_summary.rb
|
140
139
|
- lib/pulp_ostree_client/models/content_summary_response.rb
|
140
|
+
- lib/pulp_ostree_client/models/ostree_import_all.rb
|
141
|
+
- lib/pulp_ostree_client/models/ostree_import_commits_to_ref.rb
|
141
142
|
- lib/pulp_ostree_client/models/ostree_ostree_commit_response.rb
|
142
143
|
- lib/pulp_ostree_client/models/ostree_ostree_config_response.rb
|
143
144
|
- lib/pulp_ostree_client/models/ostree_ostree_distribution.rb
|
@@ -149,7 +150,6 @@ files:
|
|
149
150
|
- lib/pulp_ostree_client/models/ostree_ostree_repository.rb
|
150
151
|
- lib/pulp_ostree_client/models/ostree_ostree_repository_response.rb
|
151
152
|
- lib/pulp_ostree_client/models/ostree_ostree_summary_response.rb
|
152
|
-
- lib/pulp_ostree_client/models/ostree_repo_import.rb
|
153
153
|
- lib/pulp_ostree_client/models/ostree_repository_add_remove_content.rb
|
154
154
|
- lib/pulp_ostree_client/models/paginated_repository_version_response_list.rb
|
155
155
|
- lib/pulp_ostree_client/models/paginatedostree_ostree_commit_response_list.rb
|
@@ -164,8 +164,8 @@ files:
|
|
164
164
|
- lib/pulp_ostree_client/models/patchedostree_ostree_remote.rb
|
165
165
|
- lib/pulp_ostree_client/models/patchedostree_ostree_repository.rb
|
166
166
|
- lib/pulp_ostree_client/models/policy_enum.rb
|
167
|
+
- lib/pulp_ostree_client/models/repair.rb
|
167
168
|
- lib/pulp_ostree_client/models/repository_sync_url.rb
|
168
|
-
- lib/pulp_ostree_client/models/repository_version.rb
|
169
169
|
- lib/pulp_ostree_client/models/repository_version_response.rb
|
170
170
|
- lib/pulp_ostree_client/version.rb
|
171
171
|
- pulp_ostree_client.gemspec
|
@@ -182,7 +182,8 @@ files:
|
|
182
182
|
- spec/configuration_spec.rb
|
183
183
|
- spec/models/async_operation_response_spec.rb
|
184
184
|
- spec/models/content_summary_response_spec.rb
|
185
|
-
- spec/models/
|
185
|
+
- spec/models/ostree_import_all_spec.rb
|
186
|
+
- spec/models/ostree_import_commits_to_ref_spec.rb
|
186
187
|
- spec/models/ostree_ostree_commit_response_spec.rb
|
187
188
|
- spec/models/ostree_ostree_config_response_spec.rb
|
188
189
|
- spec/models/ostree_ostree_distribution_response_spec.rb
|
@@ -194,7 +195,6 @@ files:
|
|
194
195
|
- spec/models/ostree_ostree_repository_response_spec.rb
|
195
196
|
- spec/models/ostree_ostree_repository_spec.rb
|
196
197
|
- spec/models/ostree_ostree_summary_response_spec.rb
|
197
|
-
- spec/models/ostree_repo_import_spec.rb
|
198
198
|
- spec/models/ostree_repository_add_remove_content_spec.rb
|
199
199
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
200
200
|
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
@@ -209,9 +209,9 @@ files:
|
|
209
209
|
- spec/models/patchedostree_ostree_remote_spec.rb
|
210
210
|
- spec/models/patchedostree_ostree_repository_spec.rb
|
211
211
|
- spec/models/policy_enum_spec.rb
|
212
|
+
- spec/models/repair_spec.rb
|
212
213
|
- spec/models/repository_sync_url_spec.rb
|
213
214
|
- spec/models/repository_version_response_spec.rb
|
214
|
-
- spec/models/repository_version_spec.rb
|
215
215
|
- spec/spec_helper.rb
|
216
216
|
homepage: https://openapi-generator.tech
|
217
217
|
licenses:
|
@@ -237,47 +237,47 @@ signing_key:
|
|
237
237
|
specification_version: 4
|
238
238
|
summary: Pulp 3 API Ruby Gem
|
239
239
|
test_files:
|
240
|
-
- spec/api/
|
240
|
+
- spec/api/content_summaries_api_spec.rb
|
241
241
|
- spec/api/remotes_ostree_api_spec.rb
|
242
242
|
- spec/api/content_configs_api_spec.rb
|
243
|
-
- spec/api/
|
244
|
-
- spec/api/content_refs_api_spec.rb
|
245
|
-
- spec/api/content_summaries_api_spec.rb
|
243
|
+
- spec/api/content_commits_api_spec.rb
|
246
244
|
- spec/api/repositories_ostree_api_spec.rb
|
247
|
-
- spec/api/distributions_ostree_api_spec.rb
|
248
245
|
- spec/api/repositories_ostree_versions_api_spec.rb
|
246
|
+
- spec/api/content_refs_api_spec.rb
|
247
|
+
- spec/api/distributions_ostree_api_spec.rb
|
248
|
+
- spec/api/content_objects_api_spec.rb
|
249
249
|
- spec/api_client_spec.rb
|
250
250
|
- spec/configuration_spec.rb
|
251
|
-
- spec/models/
|
252
|
-
- spec/models/
|
253
|
-
- spec/models/
|
251
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
252
|
+
- spec/models/repair_spec.rb
|
253
|
+
- spec/models/ostree_import_commits_to_ref_spec.rb
|
254
254
|
- spec/models/paginatedostree_ostree_repository_response_list_spec.rb
|
255
|
-
- spec/models/
|
256
|
-
- spec/models/
|
257
|
-
- spec/models/ostree_ostree_distribution_spec.rb
|
258
|
-
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
259
|
-
- spec/models/async_operation_response_spec.rb
|
255
|
+
- spec/models/ostree_ostree_remote_response_spec.rb
|
256
|
+
- spec/models/ostree_ostree_summary_response_spec.rb
|
260
257
|
- spec/models/paginatedostree_ostree_remote_response_list_spec.rb
|
261
|
-
- spec/models/
|
258
|
+
- spec/models/ostree_ostree_object_response_spec.rb
|
259
|
+
- spec/models/ostree_ostree_distribution_response_spec.rb
|
260
|
+
- spec/models/ostree_ostree_ref_response_spec.rb
|
261
|
+
- spec/models/ostree_ostree_repository_response_spec.rb
|
262
262
|
- spec/models/content_summary_response_spec.rb
|
263
|
-
- spec/models/
|
264
|
-
- spec/models/ostree_ostree_remote_spec.rb
|
265
|
-
- spec/models/ostree_repo_import_spec.rb
|
266
|
-
- spec/models/ostree_ostree_config_response_spec.rb
|
267
|
-
- spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
|
268
|
-
- spec/models/paginatedostree_ostree_summary_response_list_spec.rb
|
263
|
+
- spec/models/patchedostree_ostree_distribution_spec.rb
|
269
264
|
- spec/models/ostree_ostree_commit_response_spec.rb
|
270
|
-
- spec/models/patchedostree_ostree_remote_spec.rb
|
271
|
-
- spec/models/paginatedostree_ostree_object_response_list_spec.rb
|
272
|
-
- spec/models/ostree_repository_add_remove_content_spec.rb
|
273
|
-
- spec/models/paginatedostree_ostree_ref_response_list_spec.rb
|
274
265
|
- spec/models/policy_enum_spec.rb
|
275
|
-
- spec/models/
|
276
|
-
- spec/models/
|
277
|
-
- spec/models/
|
278
|
-
- spec/models/
|
266
|
+
- spec/models/ostree_ostree_distribution_spec.rb
|
267
|
+
- spec/models/ostree_repository_add_remove_content_spec.rb
|
268
|
+
- spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
|
269
|
+
- spec/models/patchedostree_ostree_repository_spec.rb
|
270
|
+
- spec/models/patchedostree_ostree_remote_spec.rb
|
271
|
+
- spec/models/ostree_ostree_config_response_spec.rb
|
279
272
|
- spec/models/ostree_ostree_repository_spec.rb
|
280
|
-
- spec/models/
|
281
|
-
- spec/models/ostree_ostree_remote_response_spec.rb
|
273
|
+
- spec/models/async_operation_response_spec.rb
|
282
274
|
- spec/models/repository_sync_url_spec.rb
|
275
|
+
- spec/models/paginatedostree_ostree_summary_response_list_spec.rb
|
276
|
+
- spec/models/paginatedostree_ostree_config_response_list_spec.rb
|
277
|
+
- spec/models/paginatedostree_ostree_object_response_list_spec.rb
|
278
|
+
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
279
|
+
- spec/models/ostree_ostree_remote_spec.rb
|
280
|
+
- spec/models/paginatedostree_ostree_ref_response_list_spec.rb
|
281
|
+
- spec/models/ostree_import_all_spec.rb
|
282
|
+
- spec/models/repository_version_response_spec.rb
|
283
283
|
- spec/spec_helper.rb
|
data/docs/ContentSummary.md
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# PulpOstreeClient::ContentSummary
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
Name | Type | Description | Notes
|
6
|
-
------------ | ------------- | ------------- | -------------
|
7
|
-
**added** | **Hash<String, Object>** | |
|
8
|
-
**removed** | **Hash<String, Object>** | |
|
9
|
-
**present** | **Hash<String, Object>** | |
|
10
|
-
|
11
|
-
## Code Sample
|
12
|
-
|
13
|
-
```ruby
|
14
|
-
require 'PulpOstreeClient'
|
15
|
-
|
16
|
-
instance = PulpOstreeClient::ContentSummary.new(added: null,
|
17
|
-
removed: null,
|
18
|
-
present: null)
|
19
|
-
```
|
20
|
-
|
21
|
-
|
data/docs/RepositoryVersion.md
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# PulpOstreeClient::RepositoryVersion
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
Name | Type | Description | Notes
|
6
|
-
------------ | ------------- | ------------- | -------------
|
7
|
-
**base_version** | **String** | A repository version whose content was used as the initial set of content for this repository version | [optional]
|
8
|
-
|
9
|
-
## Code Sample
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
require 'PulpOstreeClient'
|
13
|
-
|
14
|
-
instance = PulpOstreeClient::RepositoryVersion.new(base_version: null)
|
15
|
-
```
|
16
|
-
|
17
|
-
|