pulp_ostree_client 2.4.8 → 2.5.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.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/docs/ContentCommitsApi.md +20 -8
  4. data/docs/ContentConfigsApi.md +20 -8
  5. data/docs/ContentContentApi.md +28 -12
  6. data/docs/ContentObjectsApi.md +20 -8
  7. data/docs/ContentRefsApi.md +20 -8
  8. data/docs/ContentSummariesApi.md +20 -8
  9. data/docs/DistributionsOstreeApi.md +72 -32
  10. data/docs/OstreeOstreeCommitResponse.md +2 -0
  11. data/docs/OstreeOstreeConfigResponse.md +2 -0
  12. data/docs/OstreeOstreeContentResponse.md +2 -0
  13. data/docs/OstreeOstreeObjectResponse.md +2 -0
  14. data/docs/OstreeOstreeRefResponse.md +2 -0
  15. data/docs/OstreeOstreeRemoteResponse.md +1 -1
  16. data/docs/OstreeOstreeSummaryResponse.md +2 -0
  17. data/docs/RemotesOstreeApi.md +72 -32
  18. data/docs/RepositoriesOstreeApi.md +104 -48
  19. data/docs/RepositoriesOstreeVersionsApi.md +22 -10
  20. data/docs/RepositoryVersionResponse.md +3 -1
  21. data/lib/pulp_ostree_client/api/content_commits_api.rb +12 -0
  22. data/lib/pulp_ostree_client/api/content_configs_api.rb +12 -0
  23. data/lib/pulp_ostree_client/api/content_content_api.rb +15 -0
  24. data/lib/pulp_ostree_client/api/content_objects_api.rb +12 -0
  25. data/lib/pulp_ostree_client/api/content_refs_api.rb +12 -0
  26. data/lib/pulp_ostree_client/api/content_summaries_api.rb +12 -0
  27. data/lib/pulp_ostree_client/api/distributions_ostree_api.rb +36 -0
  28. data/lib/pulp_ostree_client/api/remotes_ostree_api.rb +36 -0
  29. data/lib/pulp_ostree_client/api/repositories_ostree_api.rb +48 -0
  30. data/lib/pulp_ostree_client/api/repositories_ostree_versions_api.rb +15 -3
  31. data/lib/pulp_ostree_client/models/ostree_ostree_commit_response.rb +10 -1
  32. data/lib/pulp_ostree_client/models/ostree_ostree_config_response.rb +10 -1
  33. data/lib/pulp_ostree_client/models/ostree_ostree_content_response.rb +10 -1
  34. data/lib/pulp_ostree_client/models/ostree_ostree_object_response.rb +10 -1
  35. data/lib/pulp_ostree_client/models/ostree_ostree_ref_response.rb +10 -1
  36. data/lib/pulp_ostree_client/models/ostree_ostree_remote.rb +0 -15
  37. data/lib/pulp_ostree_client/models/ostree_ostree_remote_response.rb +0 -15
  38. data/lib/pulp_ostree_client/models/ostree_ostree_repository.rb +0 -15
  39. data/lib/pulp_ostree_client/models/ostree_ostree_repository_response.rb +0 -15
  40. data/lib/pulp_ostree_client/models/ostree_ostree_summary_response.rb +10 -1
  41. data/lib/pulp_ostree_client/models/paginated_repository_version_response_list.rb +0 -2
  42. data/lib/pulp_ostree_client/models/paginatedostree_ostree_commit_response_list.rb +0 -2
  43. data/lib/pulp_ostree_client/models/paginatedostree_ostree_config_response_list.rb +0 -2
  44. data/lib/pulp_ostree_client/models/paginatedostree_ostree_content_response_list.rb +0 -2
  45. data/lib/pulp_ostree_client/models/paginatedostree_ostree_distribution_response_list.rb +0 -2
  46. data/lib/pulp_ostree_client/models/paginatedostree_ostree_object_response_list.rb +0 -2
  47. data/lib/pulp_ostree_client/models/paginatedostree_ostree_ref_response_list.rb +0 -2
  48. data/lib/pulp_ostree_client/models/paginatedostree_ostree_remote_response_list.rb +0 -2
  49. data/lib/pulp_ostree_client/models/paginatedostree_ostree_repository_response_list.rb +0 -2
  50. data/lib/pulp_ostree_client/models/paginatedostree_ostree_summary_response_list.rb +0 -2
  51. data/lib/pulp_ostree_client/models/patchedostree_ostree_remote.rb +0 -15
  52. data/lib/pulp_ostree_client/models/patchedostree_ostree_repository.rb +0 -15
  53. data/lib/pulp_ostree_client/models/repository_version_response.rb +13 -4
  54. data/lib/pulp_ostree_client/version.rb +1 -1
  55. data/spec/api/content_commits_api_spec.rb +4 -0
  56. data/spec/api/content_configs_api_spec.rb +4 -0
  57. data/spec/api/content_content_api_spec.rb +5 -0
  58. data/spec/api/content_objects_api_spec.rb +4 -0
  59. data/spec/api/content_refs_api_spec.rb +4 -0
  60. data/spec/api/content_summaries_api_spec.rb +4 -0
  61. data/spec/api/distributions_ostree_api_spec.rb +12 -0
  62. data/spec/api/remotes_ostree_api_spec.rb +12 -0
  63. data/spec/api/repositories_ostree_api_spec.rb +16 -0
  64. data/spec/api/repositories_ostree_versions_api_spec.rb +5 -1
  65. data/spec/models/ostree_ostree_commit_response_spec.rb +6 -0
  66. data/spec/models/ostree_ostree_config_response_spec.rb +6 -0
  67. data/spec/models/ostree_ostree_content_response_spec.rb +6 -0
  68. data/spec/models/ostree_ostree_object_response_spec.rb +6 -0
  69. data/spec/models/ostree_ostree_ref_response_spec.rb +6 -0
  70. data/spec/models/ostree_ostree_summary_response_spec.rb +6 -0
  71. data/spec/models/repository_version_response_spec.rb +6 -0
  72. metadata +43 -43
@@ -36,6 +36,7 @@ describe 'ContentObjectsApi' do
36
36
  # List ostree objects
37
37
  # A ViewSet class for OSTree objects (e.g., dirtree, dirmeta, file).
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :checksum Filter results where checksum matches value
40
41
  # @option opts [Integer] :limit Number of results to return per page.
41
42
  # @option opts [Integer] :offset The initial index from which to return the results.
@@ -63,6 +64,7 @@ describe 'ContentObjectsApi' do
63
64
  # A ViewSet class for OSTree objects (e.g., dirtree, dirmeta, file).
64
65
  # @param ostree_ostree_object_href
65
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
66
68
  # @option opts [Array<String>] :fields A list of fields to include in the response.
67
69
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
68
70
  # @return [OstreeOstreeObjectResponse]
@@ -78,6 +80,7 @@ describe 'ContentObjectsApi' do
78
80
  # @param ostree_ostree_object_href
79
81
  # @param set_label
80
82
  # @param [Hash] opts the optional parameters
83
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
81
84
  # @return [SetLabelResponse]
82
85
  describe 'set_label test' do
83
86
  it 'should work' do
@@ -91,6 +94,7 @@ describe 'ContentObjectsApi' do
91
94
  # @param ostree_ostree_object_href
92
95
  # @param unset_label
93
96
  # @param [Hash] opts the optional parameters
97
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
98
  # @return [UnsetLabelResponse]
95
99
  describe 'unset_label test' do
96
100
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentRefsApi' do
36
36
  # List ostree refs
37
37
  # A ViewSet class for OSTree head commits.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :checksum
40
41
  # @option opts [Integer] :limit Number of results to return per page.
41
42
  # @option opts [String] :name Filter results where name matches value
@@ -72,6 +73,7 @@ describe 'ContentRefsApi' do
72
73
  # A ViewSet class for OSTree head commits.
73
74
  # @param ostree_ostree_ref_href
74
75
  # @param [Hash] opts the optional parameters
76
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
75
77
  # @option opts [Array<String>] :fields A list of fields to include in the response.
76
78
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
77
79
  # @return [OstreeOstreeRefResponse]
@@ -87,6 +89,7 @@ describe 'ContentRefsApi' do
87
89
  # @param ostree_ostree_ref_href
88
90
  # @param set_label
89
91
  # @param [Hash] opts the optional parameters
92
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
90
93
  # @return [SetLabelResponse]
91
94
  describe 'set_label test' do
92
95
  it 'should work' do
@@ -100,6 +103,7 @@ describe 'ContentRefsApi' do
100
103
  # @param ostree_ostree_ref_href
101
104
  # @param unset_label
102
105
  # @param [Hash] opts the optional parameters
106
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
103
107
  # @return [UnsetLabelResponse]
104
108
  describe 'unset_label test' do
105
109
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentSummariesApi' do
36
36
  # List ostree summarys
37
37
  # A ViewSet class for OSTree repository summary files.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Integer] :limit Number of results to return per page.
40
41
  # @option opts [Integer] :offset The initial index from which to return the results.
41
42
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -62,6 +63,7 @@ describe 'ContentSummariesApi' do
62
63
  # A ViewSet class for OSTree repository summary files.
63
64
  # @param ostree_ostree_summary_href
64
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
67
  # @option opts [Array<String>] :fields A list of fields to include in the response.
66
68
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
67
69
  # @return [OstreeOstreeSummaryResponse]
@@ -77,6 +79,7 @@ describe 'ContentSummariesApi' do
77
79
  # @param ostree_ostree_summary_href
78
80
  # @param set_label
79
81
  # @param [Hash] opts the optional parameters
82
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
80
83
  # @return [SetLabelResponse]
81
84
  describe 'set_label test' do
82
85
  it 'should work' do
@@ -90,6 +93,7 @@ describe 'ContentSummariesApi' do
90
93
  # @param ostree_ostree_summary_href
91
94
  # @param unset_label
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @return [UnsetLabelResponse]
94
98
  describe 'unset_label test' do
95
99
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'DistributionsOstreeApi' do
38
38
  # @param ostree_ostree_distribution_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'DistributionsOstreeApi' do
50
51
  # Trigger an asynchronous create task
51
52
  # @param ostree_ostree_distribution
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [AsyncOperationResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'DistributionsOstreeApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param ostree_ostree_distribution_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'DistributionsOstreeApi' do
73
76
  # List ostree distributions
74
77
  # A ViewSet class for OSTree distributions.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [String] :base_path Filter results where base_path matches value
77
81
  # @option opts [String] :base_path__contains Filter results where base_path contains value
78
82
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
@@ -112,6 +116,7 @@ describe 'DistributionsOstreeApi' do
112
116
  # List roles assigned to this object.
113
117
  # @param ostree_ostree_distribution_href
114
118
  # @param [Hash] opts the optional parameters
119
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
115
120
  # @option opts [Array<String>] :fields A list of fields to include in the response.
116
121
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
117
122
  # @return [ObjectRolesResponse]
@@ -126,6 +131,7 @@ describe 'DistributionsOstreeApi' do
126
131
  # List permissions available to the current user on this object.
127
132
  # @param ostree_ostree_distribution_href
128
133
  # @param [Hash] opts the optional parameters
134
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
129
135
  # @option opts [Array<String>] :fields A list of fields to include in the response.
130
136
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
131
137
  # @return [MyPermissionsResponse]
@@ -141,6 +147,7 @@ describe 'DistributionsOstreeApi' do
141
147
  # @param ostree_ostree_distribution_href
142
148
  # @param patchedostree_ostree_distribution
143
149
  # @param [Hash] opts the optional parameters
150
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
144
151
  # @return [AsyncOperationResponse]
145
152
  describe 'partial_update test' do
146
153
  it 'should work' do
@@ -153,6 +160,7 @@ describe 'DistributionsOstreeApi' do
153
160
  # A ViewSet class for OSTree distributions.
154
161
  # @param ostree_ostree_distribution_href
155
162
  # @param [Hash] opts the optional parameters
163
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
156
164
  # @option opts [Array<String>] :fields A list of fields to include in the response.
157
165
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
158
166
  # @return [OstreeOstreeDistributionResponse]
@@ -168,6 +176,7 @@ describe 'DistributionsOstreeApi' do
168
176
  # @param ostree_ostree_distribution_href
169
177
  # @param nested_role
170
178
  # @param [Hash] opts the optional parameters
179
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
171
180
  # @return [NestedRoleResponse]
172
181
  describe 'remove_role test' do
173
182
  it 'should work' do
@@ -181,6 +190,7 @@ describe 'DistributionsOstreeApi' do
181
190
  # @param ostree_ostree_distribution_href
182
191
  # @param set_label
183
192
  # @param [Hash] opts the optional parameters
193
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
184
194
  # @return [SetLabelResponse]
185
195
  describe 'set_label test' do
186
196
  it 'should work' do
@@ -194,6 +204,7 @@ describe 'DistributionsOstreeApi' do
194
204
  # @param ostree_ostree_distribution_href
195
205
  # @param unset_label
196
206
  # @param [Hash] opts the optional parameters
207
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
197
208
  # @return [UnsetLabelResponse]
198
209
  describe 'unset_label test' do
199
210
  it 'should work' do
@@ -207,6 +218,7 @@ describe 'DistributionsOstreeApi' do
207
218
  # @param ostree_ostree_distribution_href
208
219
  # @param ostree_ostree_distribution
209
220
  # @param [Hash] opts the optional parameters
221
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
210
222
  # @return [AsyncOperationResponse]
211
223
  describe 'update test' do
212
224
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RemotesOstreeApi' do
38
38
  # @param ostree_ostree_remote_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'RemotesOstreeApi' do
50
51
  # A ViewSet class for OSTree remote repositories.
51
52
  # @param ostree_ostree_remote
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [OstreeOstreeRemoteResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'RemotesOstreeApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param ostree_ostree_remote_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'RemotesOstreeApi' do
73
76
  # List ostree remotes
74
77
  # A ViewSet class for OSTree remote repositories.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -111,6 +115,7 @@ describe 'RemotesOstreeApi' do
111
115
  # List roles assigned to this object.
112
116
  # @param ostree_ostree_remote_href
113
117
  # @param [Hash] opts the optional parameters
118
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
114
119
  # @option opts [Array<String>] :fields A list of fields to include in the response.
115
120
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
116
121
  # @return [ObjectRolesResponse]
@@ -125,6 +130,7 @@ describe 'RemotesOstreeApi' do
125
130
  # List permissions available to the current user on this object.
126
131
  # @param ostree_ostree_remote_href
127
132
  # @param [Hash] opts the optional parameters
133
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
134
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
135
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
130
136
  # @return [MyPermissionsResponse]
@@ -140,6 +146,7 @@ describe 'RemotesOstreeApi' do
140
146
  # @param ostree_ostree_remote_href
141
147
  # @param patchedostree_ostree_remote
142
148
  # @param [Hash] opts the optional parameters
149
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
143
150
  # @return [AsyncOperationResponse]
144
151
  describe 'partial_update test' do
145
152
  it 'should work' do
@@ -152,6 +159,7 @@ describe 'RemotesOstreeApi' do
152
159
  # A ViewSet class for OSTree remote repositories.
153
160
  # @param ostree_ostree_remote_href
154
161
  # @param [Hash] opts the optional parameters
162
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
155
163
  # @option opts [Array<String>] :fields A list of fields to include in the response.
156
164
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
157
165
  # @return [OstreeOstreeRemoteResponse]
@@ -167,6 +175,7 @@ describe 'RemotesOstreeApi' do
167
175
  # @param ostree_ostree_remote_href
168
176
  # @param nested_role
169
177
  # @param [Hash] opts the optional parameters
178
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
170
179
  # @return [NestedRoleResponse]
171
180
  describe 'remove_role test' do
172
181
  it 'should work' do
@@ -180,6 +189,7 @@ describe 'RemotesOstreeApi' do
180
189
  # @param ostree_ostree_remote_href
181
190
  # @param set_label
182
191
  # @param [Hash] opts the optional parameters
192
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
183
193
  # @return [SetLabelResponse]
184
194
  describe 'set_label test' do
185
195
  it 'should work' do
@@ -193,6 +203,7 @@ describe 'RemotesOstreeApi' do
193
203
  # @param ostree_ostree_remote_href
194
204
  # @param unset_label
195
205
  # @param [Hash] opts the optional parameters
206
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
196
207
  # @return [UnsetLabelResponse]
197
208
  describe 'unset_label test' do
198
209
  it 'should work' do
@@ -206,6 +217,7 @@ describe 'RemotesOstreeApi' do
206
217
  # @param ostree_ostree_remote_href
207
218
  # @param ostree_ostree_remote
208
219
  # @param [Hash] opts the optional parameters
220
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
209
221
  # @return [AsyncOperationResponse]
210
222
  describe 'update test' do
211
223
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RepositoriesOstreeApi' do
38
38
  # @param ostree_ostree_repository_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'RepositoriesOstreeApi' do
50
51
  # A ViewSet class for OSTree repositories.
51
52
  # @param ostree_ostree_repository
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [OstreeOstreeRepositoryResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'RepositoriesOstreeApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param ostree_ostree_repository_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -75,6 +78,7 @@ describe 'RepositoriesOstreeApi' do
75
78
  # @param ostree_ostree_repository_href
76
79
  # @param ostree_import_all
77
80
  # @param [Hash] opts the optional parameters
81
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
78
82
  # @return [AsyncOperationResponse]
79
83
  describe 'import_all test' do
80
84
  it 'should work' do
@@ -88,6 +92,7 @@ describe 'RepositoriesOstreeApi' do
88
92
  # @param ostree_ostree_repository_href
89
93
  # @param ostree_import_commits_to_ref
90
94
  # @param [Hash] opts the optional parameters
95
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
91
96
  # @return [AsyncOperationResponse]
92
97
  describe 'import_commits test' do
93
98
  it 'should work' do
@@ -99,6 +104,7 @@ describe 'RepositoriesOstreeApi' do
99
104
  # List ostree repositorys
100
105
  # A ViewSet class for OSTree repositories.
101
106
  # @param [Hash] opts the optional parameters
107
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
102
108
  # @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
103
109
  # @option opts [Integer] :limit Number of results to return per page.
104
110
  # @option opts [String] :name Filter results where name matches value
@@ -141,6 +147,7 @@ describe 'RepositoriesOstreeApi' do
141
147
  # List roles assigned to this object.
142
148
  # @param ostree_ostree_repository_href
143
149
  # @param [Hash] opts the optional parameters
150
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
144
151
  # @option opts [Array<String>] :fields A list of fields to include in the response.
145
152
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
146
153
  # @return [ObjectRolesResponse]
@@ -156,6 +163,7 @@ describe 'RepositoriesOstreeApi' do
156
163
  # @param ostree_ostree_repository_href
157
164
  # @param repository_add_remove_content
158
165
  # @param [Hash] opts the optional parameters
166
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
159
167
  # @return [AsyncOperationResponse]
160
168
  describe 'modify test' do
161
169
  it 'should work' do
@@ -168,6 +176,7 @@ describe 'RepositoriesOstreeApi' do
168
176
  # List permissions available to the current user on this object.
169
177
  # @param ostree_ostree_repository_href
170
178
  # @param [Hash] opts the optional parameters
179
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
171
180
  # @option opts [Array<String>] :fields A list of fields to include in the response.
172
181
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
173
182
  # @return [MyPermissionsResponse]
@@ -183,6 +192,7 @@ describe 'RepositoriesOstreeApi' do
183
192
  # @param ostree_ostree_repository_href
184
193
  # @param patchedostree_ostree_repository
185
194
  # @param [Hash] opts the optional parameters
195
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
186
196
  # @return [AsyncOperationResponse]
187
197
  describe 'partial_update test' do
188
198
  it 'should work' do
@@ -195,6 +205,7 @@ describe 'RepositoriesOstreeApi' do
195
205
  # A ViewSet class for OSTree repositories.
196
206
  # @param ostree_ostree_repository_href
197
207
  # @param [Hash] opts the optional parameters
208
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
198
209
  # @option opts [Array<String>] :fields A list of fields to include in the response.
199
210
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
200
211
  # @return [OstreeOstreeRepositoryResponse]
@@ -210,6 +221,7 @@ describe 'RepositoriesOstreeApi' do
210
221
  # @param ostree_ostree_repository_href
211
222
  # @param nested_role
212
223
  # @param [Hash] opts the optional parameters
224
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
213
225
  # @return [NestedRoleResponse]
214
226
  describe 'remove_role test' do
215
227
  it 'should work' do
@@ -223,6 +235,7 @@ describe 'RepositoriesOstreeApi' do
223
235
  # @param ostree_ostree_repository_href
224
236
  # @param set_label
225
237
  # @param [Hash] opts the optional parameters
238
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
226
239
  # @return [SetLabelResponse]
227
240
  describe 'set_label test' do
228
241
  it 'should work' do
@@ -236,6 +249,7 @@ describe 'RepositoriesOstreeApi' do
236
249
  # @param ostree_ostree_repository_href
237
250
  # @param repository_sync_url
238
251
  # @param [Hash] opts the optional parameters
252
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
239
253
  # @return [AsyncOperationResponse]
240
254
  describe 'sync test' do
241
255
  it 'should work' do
@@ -249,6 +263,7 @@ describe 'RepositoriesOstreeApi' do
249
263
  # @param ostree_ostree_repository_href
250
264
  # @param unset_label
251
265
  # @param [Hash] opts the optional parameters
266
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
252
267
  # @return [UnsetLabelResponse]
253
268
  describe 'unset_label test' do
254
269
  it 'should work' do
@@ -262,6 +277,7 @@ describe 'RepositoriesOstreeApi' do
262
277
  # @param ostree_ostree_repository_href
263
278
  # @param ostree_ostree_repository
264
279
  # @param [Hash] opts the optional parameters
280
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
265
281
  # @return [AsyncOperationResponse]
266
282
  describe 'update test' do
267
283
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'RepositoriesOstreeVersionsApi' do
37
37
  # Trigger an asynchronous task to delete a repository version.
38
38
  # @param ostree_ostree_repository_version_href
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [AsyncOperationResponse]
41
42
  describe 'delete test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'RepositoriesOstreeVersionsApi' do
49
50
  # A ViewSet class that represents a single OSTree repository version.
50
51
  # @param ostree_ostree_repository_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @option opts [String] :content Content Unit referenced by HREF/PRN
53
55
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
54
56
  # @option opts [Integer] :limit Number of results to return per page.
@@ -59,7 +61,7 @@ describe 'RepositoriesOstreeVersionsApi' do
59
61
  # @option opts [Integer] :number__lte Filter results where number is less than or equal to value
60
62
  # @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
61
63
  # @option opts [Integer] :offset The initial index from which to return the results.
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)
64
+ # @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;content_ids&#x60; - Content ids * &#x60;-content_ids&#x60; - Content ids (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
63
65
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
64
66
  # @option opts [Time] :pulp_created Filter results where pulp_created matches value
65
67
  # @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
@@ -84,6 +86,7 @@ describe 'RepositoriesOstreeVersionsApi' do
84
86
  # A ViewSet class that represents a single OSTree repository version.
85
87
  # @param ostree_ostree_repository_version_href
86
88
  # @param [Hash] opts the optional parameters
89
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
87
90
  # @option opts [Array<String>] :fields A list of fields to include in the response.
88
91
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
89
92
  # @return [RepositoryVersionResponse]
@@ -98,6 +101,7 @@ describe 'RepositoriesOstreeVersionsApi' do
98
101
  # @param ostree_ostree_repository_version_href
99
102
  # @param repair
100
103
  # @param [Hash] opts the optional parameters
104
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
101
105
  # @return [AsyncOperationResponse]
102
106
  describe 'repair test' do
103
107
  it 'should work' do
@@ -57,6 +57,12 @@ describe PulpOstreeClient::OstreeOstreeCommitResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "vuln_report"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
60
66
  describe 'test attribute "artifact"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -57,6 +57,12 @@ describe PulpOstreeClient::OstreeOstreeConfigResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "vuln_report"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
60
66
  describe 'test attribute "artifact"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -57,6 +57,12 @@ describe PulpOstreeClient::OstreeOstreeContentResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "vuln_report"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
60
66
  describe 'test attribute "artifact"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -57,6 +57,12 @@ describe PulpOstreeClient::OstreeOstreeObjectResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "vuln_report"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
60
66
  describe 'test attribute "artifact"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -57,6 +57,12 @@ describe PulpOstreeClient::OstreeOstreeRefResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "vuln_report"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
60
66
  describe 'test attribute "artifact"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -57,6 +57,12 @@ describe PulpOstreeClient::OstreeOstreeSummaryResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "vuln_report"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
60
66
  describe 'test attribute "artifact"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -75,4 +75,10 @@ describe PulpOstreeClient::RepositoryVersionResponse do
75
75
  end
76
76
  end
77
77
 
78
+ describe 'test attribute "vuln_report"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
78
84
  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.8
4
+ version: 2.5.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: 2025-04-22 00:00:00.000000000 Z
11
+ date: 2025-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -281,58 +281,58 @@ signing_key:
281
281
  specification_version: 4
282
282
  summary: Pulp 3 API Ruby Gem
283
283
  test_files:
284
+ - spec/api/content_configs_api_spec.rb
284
285
  - spec/api/content_commits_api_spec.rb
285
- - spec/api/distributions_ostree_api_spec.rb
286
- - spec/api/remotes_ostree_api_spec.rb
287
286
  - spec/api/repositories_ostree_versions_api_spec.rb
288
- - spec/api/content_configs_api_spec.rb
289
- - spec/api/content_refs_api_spec.rb
290
- - spec/api/content_summaries_api_spec.rb
291
287
  - spec/api/content_content_api_spec.rb
292
- - spec/api/content_objects_api_spec.rb
293
288
  - spec/api/repositories_ostree_api_spec.rb
294
- - spec/models/repair_spec.rb
295
- - spec/models/paginatedostree_ostree_commit_response_list_spec.rb
296
- - spec/models/ostree_ostree_ref_response_spec.rb
297
- - spec/models/set_label_spec.rb
298
- - spec/models/policy_enum_spec.rb
299
- - spec/models/ostree_ostree_distribution_response_spec.rb
300
- - spec/models/paginatedostree_ostree_ref_response_list_spec.rb
301
- - spec/models/repository_add_remove_content_spec.rb
302
- - spec/models/patchedostree_ostree_repository_spec.rb
303
- - spec/models/paginatedostree_ostree_summary_response_list_spec.rb
304
- - spec/models/paginatedostree_ostree_config_response_list_spec.rb
305
- - spec/models/nested_role_response_spec.rb
306
- - spec/models/nested_role_spec.rb
307
- - spec/models/ostree_ostree_repository_spec.rb
308
- - spec/models/repository_sync_url_spec.rb
289
+ - spec/api/remotes_ostree_api_spec.rb
290
+ - spec/api/content_summaries_api_spec.rb
291
+ - spec/api/content_objects_api_spec.rb
292
+ - spec/api/distributions_ostree_api_spec.rb
293
+ - spec/api/content_refs_api_spec.rb
294
+ - spec/models/ostree_ostree_distribution_spec.rb
295
+ - spec/models/ostree_ostree_config_response_spec.rb
296
+ - spec/models/object_roles_response_spec.rb
309
297
  - spec/models/ostree_ostree_content_response_spec.rb
310
- - spec/models/unset_label_spec.rb
311
- - spec/models/ostree_import_commits_to_ref_spec.rb
312
- - spec/models/ostree_ostree_remote_response_spec.rb
298
+ - spec/models/set_label_response_spec.rb
299
+ - spec/models/patchedostree_ostree_repository_spec.rb
300
+ - spec/models/repository_version_response_spec.rb
313
301
  - spec/models/ostree_ostree_summary_response_spec.rb
314
- - spec/models/ostree_ostree_remote_spec.rb
315
- - spec/models/unset_label_response_spec.rb
302
+ - spec/models/ostree_ostree_remote_response_hidden_fields_inner_spec.rb
303
+ - spec/models/async_operation_response_spec.rb
316
304
  - spec/models/ostree_ostree_repository_response_spec.rb
317
- - spec/models/repository_version_response_spec.rb
305
+ - spec/models/ostree_ostree_remote_response_spec.rb
306
+ - spec/models/set_label_spec.rb
307
+ - spec/models/ostree_import_commits_to_ref_spec.rb
308
+ - spec/models/paginatedostree_ostree_summary_response_list_spec.rb
309
+ - spec/models/my_permissions_response_spec.rb
318
310
  - spec/models/ostree_import_all_spec.rb
311
+ - spec/models/ostree_ostree_ref_response_spec.rb
312
+ - spec/models/ostree_ostree_repository_spec.rb
313
+ - spec/models/unset_label_response_spec.rb
314
+ - spec/models/policy_enum_spec.rb
319
315
  - spec/models/ostree_ostree_object_response_spec.rb
320
- - spec/models/ostree_ostree_content_spec.rb
321
- - spec/models/paginated_repository_version_response_list_spec.rb
322
- - spec/models/my_permissions_response_spec.rb
323
- - spec/models/object_roles_response_spec.rb
324
- - spec/models/ostree_ostree_remote_response_hidden_fields_inner_spec.rb
325
- - spec/models/ostree_ostree_config_response_spec.rb
326
316
  - spec/models/ostree_ostree_commit_response_spec.rb
327
- - spec/models/set_label_response_spec.rb
328
- - spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
329
- - spec/models/paginatedostree_ostree_remote_response_list_spec.rb
317
+ - spec/models/content_summary_response_spec.rb
330
318
  - spec/models/patchedostree_ostree_remote_spec.rb
319
+ - spec/models/paginatedostree_ostree_remote_response_list_spec.rb
320
+ - spec/models/paginatedostree_ostree_commit_response_list_spec.rb
321
+ - spec/models/nested_role_spec.rb
322
+ - spec/models/ostree_ostree_distribution_response_spec.rb
323
+ - spec/models/paginated_repository_version_response_list_spec.rb
324
+ - spec/models/ostree_ostree_content_spec.rb
325
+ - spec/models/repository_add_remove_content_spec.rb
326
+ - spec/models/paginatedostree_ostree_object_response_list_spec.rb
327
+ - spec/models/paginatedostree_ostree_config_response_list_spec.rb
328
+ - spec/models/nested_role_response_spec.rb
329
+ - spec/models/paginatedostree_ostree_content_response_list_spec.rb
330
+ - spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
331
+ - spec/models/repository_sync_url_spec.rb
332
+ - spec/models/repair_spec.rb
331
333
  - spec/models/paginatedostree_ostree_repository_response_list_spec.rb
332
- - spec/models/ostree_ostree_distribution_spec.rb
334
+ - spec/models/unset_label_spec.rb
333
335
  - spec/models/patchedostree_ostree_distribution_spec.rb
334
- - spec/models/content_summary_response_spec.rb
335
- - spec/models/paginatedostree_ostree_content_response_list_spec.rb
336
- - spec/models/paginatedostree_ostree_object_response_list_spec.rb
337
- - spec/models/async_operation_response_spec.rb
336
+ - spec/models/ostree_ostree_remote_spec.rb
337
+ - spec/models/paginatedostree_ostree_ref_response_list_spec.rb
338
338
  - spec/spec_helper.rb