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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -5
  3. data/docs/ContentCommitsApi.md +6 -2
  4. data/docs/ContentConfigsApi.md +6 -2
  5. data/docs/ContentContentApi.md +6 -2
  6. data/docs/ContentObjectsApi.md +6 -2
  7. data/docs/ContentRefsApi.md +6 -2
  8. data/docs/ContentSummariesApi.md +6 -2
  9. data/docs/DistributionsOstreeApi.md +6 -2
  10. data/docs/OstreeOstreeDistribution.md +2 -0
  11. data/docs/OstreeOstreeDistributionResponse.md +2 -0
  12. data/docs/OstreeOstreeRemote.md +1 -1
  13. data/docs/OstreeOstreeRemoteResponse.md +1 -1
  14. data/docs/PatchedostreeOstreeDistribution.md +2 -0
  15. data/docs/PatchedostreeOstreeRemote.md +1 -1
  16. data/docs/RemotesOstreeApi.md +6 -2
  17. data/docs/RepositoriesOstreeApi.md +10 -2
  18. data/docs/RepositoriesOstreeVersionsApi.md +4 -2
  19. data/lib/pulp_ostree_client/api/content_commits_api.rb +8 -2
  20. data/lib/pulp_ostree_client/api/content_configs_api.rb +8 -2
  21. data/lib/pulp_ostree_client/api/content_content_api.rb +8 -2
  22. data/lib/pulp_ostree_client/api/content_objects_api.rb +8 -2
  23. data/lib/pulp_ostree_client/api/content_refs_api.rb +8 -2
  24. data/lib/pulp_ostree_client/api/content_summaries_api.rb +8 -2
  25. data/lib/pulp_ostree_client/api/distributions_ostree_api.rb +9 -3
  26. data/lib/pulp_ostree_client/api/remotes_ostree_api.rb +8 -2
  27. data/lib/pulp_ostree_client/api/repositories_ostree_api.rb +14 -2
  28. data/lib/pulp_ostree_client/api/repositories_ostree_versions_api.rb +5 -2
  29. data/lib/pulp_ostree_client/models/ostree_ostree_distribution.rb +13 -1
  30. data/lib/pulp_ostree_client/models/ostree_ostree_distribution_response.rb +13 -1
  31. data/lib/pulp_ostree_client/models/ostree_ostree_remote.rb +1 -1
  32. data/lib/pulp_ostree_client/models/ostree_ostree_remote_response.rb +1 -1
  33. data/lib/pulp_ostree_client/models/patchedostree_ostree_distribution.rb +13 -1
  34. data/lib/pulp_ostree_client/models/patchedostree_ostree_remote.rb +1 -1
  35. data/lib/pulp_ostree_client/version.rb +1 -1
  36. data/spec/api/content_commits_api_spec.rb +3 -1
  37. data/spec/api/content_configs_api_spec.rb +3 -1
  38. data/spec/api/content_content_api_spec.rb +3 -1
  39. data/spec/api/content_objects_api_spec.rb +3 -1
  40. data/spec/api/content_refs_api_spec.rb +3 -1
  41. data/spec/api/content_summaries_api_spec.rb +3 -1
  42. data/spec/api/distributions_ostree_api_spec.rb +3 -1
  43. data/spec/api/remotes_ostree_api_spec.rb +3 -1
  44. data/spec/api/repositories_ostree_api_spec.rb +5 -1
  45. data/spec/api/repositories_ostree_versions_api_spec.rb +2 -1
  46. data/spec/models/ostree_ostree_distribution_response_spec.rb +6 -0
  47. data/spec/models/ostree_ostree_distribution_spec.rb +6 -0
  48. data/spec/models/patchedostree_ostree_distribution_spec.rb +6 -0
  49. 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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.0.0
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-03-30 00:00:00.000000000 Z
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/repository_version_response_spec.rb
264
- - spec/models/paginatedostree_ostree_remote_response_list_spec.rb
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/ostree_ostree_distribution_response_spec.rb
268
- - spec/models/paginatedostree_ostree_config_response_list_spec.rb
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/ostree_ostree_repository_response_spec.rb
279
- - spec/models/async_operation_response_spec.rb
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/policy_enum_spec.rb
284
- - spec/models/paginatedostree_ostree_summary_response_list_spec.rb
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/ostree_ostree_content_response_spec.rb
294
- - spec/models/paginated_repository_version_response_list_spec.rb
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