pulp_ostree_client 2.0.0 → 2.1.1
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 -5
- data/docs/ContentCommitsApi.md +6 -2
- data/docs/ContentConfigsApi.md +6 -2
- data/docs/ContentContentApi.md +6 -2
- data/docs/ContentObjectsApi.md +6 -2
- data/docs/ContentRefsApi.md +6 -2
- data/docs/ContentSummariesApi.md +6 -2
- data/docs/DistributionsOstreeApi.md +6 -2
- data/docs/OstreeOstreeDistribution.md +2 -0
- data/docs/OstreeOstreeDistributionResponse.md +2 -0
- data/docs/OstreeOstreeRemote.md +1 -1
- data/docs/OstreeOstreeRemoteResponse.md +1 -1
- data/docs/PatchedostreeOstreeDistribution.md +2 -0
- data/docs/PatchedostreeOstreeRemote.md +1 -1
- data/docs/RemotesOstreeApi.md +6 -2
- data/docs/RepositoriesOstreeApi.md +10 -2
- data/docs/RepositoriesOstreeVersionsApi.md +4 -2
- data/lib/pulp_ostree_client/api/content_commits_api.rb +8 -2
- data/lib/pulp_ostree_client/api/content_configs_api.rb +8 -2
- data/lib/pulp_ostree_client/api/content_content_api.rb +8 -2
- data/lib/pulp_ostree_client/api/content_objects_api.rb +8 -2
- data/lib/pulp_ostree_client/api/content_refs_api.rb +8 -2
- data/lib/pulp_ostree_client/api/content_summaries_api.rb +8 -2
- data/lib/pulp_ostree_client/api/distributions_ostree_api.rb +9 -3
- data/lib/pulp_ostree_client/api/remotes_ostree_api.rb +8 -2
- data/lib/pulp_ostree_client/api/repositories_ostree_api.rb +14 -2
- data/lib/pulp_ostree_client/api/repositories_ostree_versions_api.rb +5 -2
- data/lib/pulp_ostree_client/models/ostree_ostree_distribution.rb +13 -1
- data/lib/pulp_ostree_client/models/ostree_ostree_distribution_response.rb +13 -1
- data/lib/pulp_ostree_client/models/ostree_ostree_remote.rb +1 -1
- data/lib/pulp_ostree_client/models/ostree_ostree_remote_response.rb +1 -1
- data/lib/pulp_ostree_client/models/patchedostree_ostree_distribution.rb +13 -1
- data/lib/pulp_ostree_client/models/patchedostree_ostree_remote.rb +1 -1
- data/lib/pulp_ostree_client/version.rb +1 -1
- data/spec/api/content_commits_api_spec.rb +3 -1
- data/spec/api/content_configs_api_spec.rb +3 -1
- data/spec/api/content_content_api_spec.rb +3 -1
- data/spec/api/content_objects_api_spec.rb +3 -1
- data/spec/api/content_refs_api_spec.rb +3 -1
- data/spec/api/content_summaries_api_spec.rb +3 -1
- data/spec/api/distributions_ostree_api_spec.rb +3 -1
- data/spec/api/remotes_ostree_api_spec.rb +3 -1
- data/spec/api/repositories_ostree_api_spec.rb +5 -1
- data/spec/api/repositories_ostree_versions_api_spec.rb +2 -1
- data/spec/models/ostree_ostree_distribution_response_spec.rb +6 -0
- data/spec/models/ostree_ostree_distribution_spec.rb +6 -0
- data/spec/models/patchedostree_ostree_distribution_spec.rb +6 -0
- metadata +34 -34
@@ -86,6 +86,7 @@ describe 'RepositoriesOstreeApi' do
|
|
86
86
|
# List ostree repositorys
|
87
87
|
# A ViewSet class for OSTree repositories.
|
88
88
|
# @param [Hash] opts the optional parameters
|
89
|
+
# @option opts [String] :latest_with_content Content Unit referenced by HREF
|
89
90
|
# @option opts [Integer] :limit Number of results to return per page.
|
90
91
|
# @option opts [String] :name Filter results where name matches value
|
91
92
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -93,7 +94,9 @@ describe 'RepositoriesOstreeApi' do
|
|
93
94
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
94
95
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
95
96
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
96
|
-
# @option opts [Array<String>] :ordering Ordering
|
97
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
98
|
+
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
99
|
+
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
97
100
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
98
101
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
99
102
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
@@ -104,6 +107,7 @@ describe 'RepositoriesOstreeApi' do
|
|
104
107
|
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
105
108
|
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
106
109
|
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
110
|
+
# @option opts [String] :with_content Content Unit referenced by HREF
|
107
111
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
108
112
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
109
113
|
# @return [PaginatedostreeOstreeRepositoryResponseList]
|
@@ -59,13 +59,14 @@ 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 [Array<String>] :ordering Ordering
|
62
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
63
63
|
# @option opts [DateTime] :pulp_created Filter results where pulp_created matches value
|
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
|
66
66
|
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
67
67
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
68
68
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
69
|
+
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
69
70
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
70
71
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
71
72
|
# @return [PaginatedRepositoryVersionResponseList]
|
@@ -62,6 +62,12 @@ describe 'OstreeOstreeDistributionResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "hidden"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
describe 'test attribute "pulp_labels"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +44,12 @@ describe 'OstreeOstreeDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "hidden"' 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
|
+
|
47
53
|
describe 'test attribute "pulp_labels"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +44,12 @@ describe 'PatchedostreeOstreeDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "hidden"' 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
|
+
|
47
53
|
describe 'test attribute "pulp_labels"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
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.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -248,51 +248,51 @@ signing_key:
|
|
248
248
|
specification_version: 4
|
249
249
|
summary: Pulp 3 API Ruby Gem
|
250
250
|
test_files:
|
251
|
-
- spec/api/content_summaries_api_spec.rb
|
252
|
-
- spec/api/content_refs_api_spec.rb
|
253
|
-
- spec/api/distributions_ostree_api_spec.rb
|
254
|
-
- spec/api/content_commits_api_spec.rb
|
255
|
-
- spec/api/content_content_api_spec.rb
|
256
251
|
- spec/api/remotes_ostree_api_spec.rb
|
257
|
-
- spec/api/repositories_ostree_api_spec.rb
|
258
|
-
- spec/api/repositories_ostree_versions_api_spec.rb
|
259
252
|
- spec/api/content_objects_api_spec.rb
|
260
253
|
- spec/api/content_configs_api_spec.rb
|
254
|
+
- spec/api/distributions_ostree_api_spec.rb
|
255
|
+
- spec/api/repositories_ostree_versions_api_spec.rb
|
256
|
+
- spec/api/repositories_ostree_api_spec.rb
|
257
|
+
- spec/api/content_summaries_api_spec.rb
|
258
|
+
- spec/api/content_commits_api_spec.rb
|
259
|
+
- spec/api/content_content_api_spec.rb
|
260
|
+
- spec/api/content_refs_api_spec.rb
|
261
261
|
- spec/api_client_spec.rb
|
262
262
|
- spec/configuration_spec.rb
|
263
|
-
- spec/models/
|
264
|
-
- spec/models/
|
263
|
+
- spec/models/ostree_ostree_remote_response_hidden_fields_spec.rb
|
264
|
+
- spec/models/repair_spec.rb
|
265
|
+
- spec/models/patchedostree_ostree_repository_spec.rb
|
266
|
+
- spec/models/ostree_import_commits_to_ref_spec.rb
|
267
|
+
- spec/models/paginatedostree_ostree_config_response_list_spec.rb
|
268
|
+
- spec/models/ostree_ostree_distribution_response_spec.rb
|
265
269
|
- spec/models/ostree_ostree_summary_response_spec.rb
|
270
|
+
- spec/models/ostree_ostree_remote_response_spec.rb
|
271
|
+
- spec/models/patchedostree_ostree_remote_spec.rb
|
266
272
|
- spec/models/repository_sync_url_spec.rb
|
267
|
-
- spec/models/
|
268
|
-
- spec/models/
|
269
|
-
- spec/models/ostree_ostree_repository_spec.rb
|
273
|
+
- spec/models/ostree_ostree_repository_response_spec.rb
|
274
|
+
- spec/models/ostree_ostree_content_response_spec.rb
|
270
275
|
- spec/models/paginatedostree_ostree_repository_response_list_spec.rb
|
271
|
-
- spec/models/ostree_ostree_remote_response_spec.rb
|
272
|
-
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
273
|
-
- spec/models/ostree_ostree_config_response_spec.rb
|
274
|
-
- spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
|
275
|
-
- spec/models/repository_add_remove_content_spec.rb
|
276
|
-
- spec/models/repair_spec.rb
|
277
276
|
- spec/models/ostree_ostree_commit_response_spec.rb
|
278
|
-
- spec/models/
|
279
|
-
- spec/models/
|
280
|
-
- spec/models/ostree_import_commits_to_ref_spec.rb
|
277
|
+
- spec/models/ostree_ostree_object_response_spec.rb
|
278
|
+
- spec/models/ostree_ostree_config_response_spec.rb
|
281
279
|
- spec/models/paginatedostree_ostree_object_response_list_spec.rb
|
280
|
+
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
282
281
|
- spec/models/paginatedostree_ostree_content_response_list_spec.rb
|
283
|
-
- spec/models/
|
284
|
-
- spec/models/
|
285
|
-
- spec/models/ostree_ostree_remote_spec.rb
|
286
|
-
- spec/models/ostree_ostree_remote_response_hidden_fields_spec.rb
|
287
|
-
- spec/models/ostree_ostree_object_response_spec.rb
|
282
|
+
- spec/models/async_operation_response_spec.rb
|
283
|
+
- spec/models/paginatedostree_ostree_remote_response_list_spec.rb
|
288
284
|
- spec/models/patchedostree_ostree_distribution_spec.rb
|
289
|
-
- spec/models/patchedostree_ostree_remote_spec.rb
|
290
|
-
- spec/models/ostree_import_all_spec.rb
|
291
|
-
- spec/models/content_summary_response_spec.rb
|
292
285
|
- spec/models/paginatedostree_ostree_ref_response_list_spec.rb
|
293
|
-
- spec/models/
|
294
|
-
- spec/models/
|
295
|
-
- spec/models/patchedostree_ostree_repository_spec.rb
|
286
|
+
- spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
|
287
|
+
- spec/models/repository_version_response_spec.rb
|
296
288
|
- spec/models/ostree_ostree_distribution_spec.rb
|
289
|
+
- spec/models/policy_enum_spec.rb
|
290
|
+
- spec/models/ostree_ostree_remote_spec.rb
|
291
|
+
- spec/models/repository_add_remove_content_spec.rb
|
297
292
|
- spec/models/ostree_ostree_ref_response_spec.rb
|
293
|
+
- spec/models/paginatedostree_ostree_summary_response_list_spec.rb
|
294
|
+
- spec/models/ostree_ostree_repository_spec.rb
|
295
|
+
- spec/models/ostree_import_all_spec.rb
|
296
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
297
|
+
- spec/models/content_summary_response_spec.rb
|
298
298
|
- spec/spec_helper.rb
|