pulp_container_client 2.15.1 → 2.15.3
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 +36 -25
- data/docs/ContainerContainerDistribution.md +7 -7
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPushRepository.md +7 -7
- data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
- data/docs/ContentBlobsApi.md +3 -1
- data/docs/ContentManifestsApi.md +5 -3
- data/docs/ContentSignaturesApi.md +11 -1
- data/docs/ContentTagsApi.md +5 -3
- data/docs/DistributionsContainerApi.md +136 -10
- data/docs/PatchedcontainerContainerDistribution.md +7 -7
- data/docs/PatchedcontainerContainerPushRepository.md +7 -7
- data/docs/PulpContainerNamespacesApi.md +23 -9
- data/docs/RemotesContainerApi.md +135 -9
- data/docs/RepositoriesContainerApi.md +136 -10
- data/docs/RepositoriesContainerPushApi.md +24 -10
- data/docs/RepositoriesContainerPushVersionsApi.md +3 -1
- data/docs/RepositoriesContainerVersionsApi.md +3 -1
- data/docs/SetLabel.md +19 -0
- data/docs/SetLabelResponse.md +19 -0
- data/docs/TokenApi.md +1 -1
- data/docs/UnsetLabel.md +17 -0
- data/docs/UnsetLabelResponse.md +19 -0
- data/lib/pulp_container_client/api/content_blobs_api.rb +3 -0
- data/lib/pulp_container_client/api/content_manifests_api.rb +5 -2
- data/lib/pulp_container_client/api/content_signatures_api.rb +15 -0
- data/lib/pulp_container_client/api/content_tags_api.rb +5 -2
- data/lib/pulp_container_client/api/distributions_container_api.rb +163 -0
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +23 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +163 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +163 -0
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +23 -0
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +3 -0
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +3 -0
- data/lib/pulp_container_client/configuration.rb +2 -2
- data/lib/pulp_container_client/models/container_container_distribution.rb +27 -27
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +39 -39
- data/lib/pulp_container_client/models/container_container_push_repository.rb +45 -45
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +52 -52
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +27 -27
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +45 -45
- data/lib/pulp_container_client/models/set_label.rb +252 -0
- data/lib/pulp_container_client/models/set_label_response.rb +243 -0
- data/lib/pulp_container_client/models/unset_label.rb +242 -0
- data/lib/pulp_container_client/models/unset_label_response.rb +242 -0
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +4 -0
- data/spec/api/content_blobs_api_spec.rb +1 -0
- data/spec/api/content_manifests_api_spec.rb +2 -1
- data/spec/api/content_signatures_api_spec.rb +5 -0
- data/spec/api/content_tags_api_spec.rb +2 -1
- data/spec/api/distributions_container_api_spec.rb +35 -0
- data/spec/api/pulp_container_namespaces_api_spec.rb +9 -0
- data/spec/api/remotes_container_api_spec.rb +35 -0
- data/spec/api/repositories_container_api_spec.rb +35 -0
- data/spec/api/repositories_container_push_api_spec.rb +9 -0
- data/spec/api/repositories_container_push_versions_api_spec.rb +1 -0
- data/spec/api/repositories_container_versions_api_spec.rb +1 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/container_container_distribution_response_spec.rb +8 -8
- data/spec/models/container_container_distribution_spec.rb +5 -5
- data/spec/models/container_container_push_repository_response_spec.rb +9 -9
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
- data/spec/models/set_label_response_spec.rb +47 -0
- data/spec/models/set_label_spec.rb +47 -0
- data/spec/models/unset_label_response_spec.rb +47 -0
- data/spec/models/unset_label_spec.rb +41 -0
- metadata +64 -48
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpContainerClient::SetLabel
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SetLabel' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpContainerClient::SetLabel.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SetLabel' do
|
31
|
+
it 'should create an instance of SetLabel' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::SetLabel)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "key"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "value"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpContainerClient::UnsetLabelResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UnsetLabelResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpContainerClient::UnsetLabelResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UnsetLabelResponse' do
|
31
|
+
it 'should create an instance of UnsetLabelResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::UnsetLabelResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "key"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "value"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpContainerClient::UnsetLabel
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UnsetLabel' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpContainerClient::UnsetLabel.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UnsetLabel' do
|
31
|
+
it 'should create an instance of UnsetLabel' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::UnsetLabel)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "key"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_container_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.15.
|
4
|
+
version: 2.15.3
|
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-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -138,10 +138,14 @@ files:
|
|
138
138
|
- docs/RepositoriesContainerVersionsApi.md
|
139
139
|
- docs/RepositorySign.md
|
140
140
|
- docs/RepositoryVersionResponse.md
|
141
|
+
- docs/SetLabel.md
|
142
|
+
- docs/SetLabelResponse.md
|
141
143
|
- docs/TagCopy.md
|
142
144
|
- docs/TagImage.md
|
143
145
|
- docs/TokenApi.md
|
144
146
|
- docs/UnTagImage.md
|
147
|
+
- docs/UnsetLabel.md
|
148
|
+
- docs/UnsetLabelResponse.md
|
145
149
|
- lib/pulp_container_client.rb
|
146
150
|
- lib/pulp_container_client/api/content_blobs_api.rb
|
147
151
|
- lib/pulp_container_client/api/content_manifests_api.rb
|
@@ -205,9 +209,13 @@ files:
|
|
205
209
|
- lib/pulp_container_client/models/repair.rb
|
206
210
|
- lib/pulp_container_client/models/repository_sign.rb
|
207
211
|
- lib/pulp_container_client/models/repository_version_response.rb
|
212
|
+
- lib/pulp_container_client/models/set_label.rb
|
213
|
+
- lib/pulp_container_client/models/set_label_response.rb
|
208
214
|
- lib/pulp_container_client/models/tag_copy.rb
|
209
215
|
- lib/pulp_container_client/models/tag_image.rb
|
210
216
|
- lib/pulp_container_client/models/un_tag_image.rb
|
217
|
+
- lib/pulp_container_client/models/unset_label.rb
|
218
|
+
- lib/pulp_container_client/models/unset_label_response.rb
|
211
219
|
- lib/pulp_container_client/version.rb
|
212
220
|
- pulp_container_client.gemspec
|
213
221
|
- spec/api/content_blobs_api_spec.rb
|
@@ -271,9 +279,13 @@ files:
|
|
271
279
|
- spec/models/repair_spec.rb
|
272
280
|
- spec/models/repository_sign_spec.rb
|
273
281
|
- spec/models/repository_version_response_spec.rb
|
282
|
+
- spec/models/set_label_response_spec.rb
|
283
|
+
- spec/models/set_label_spec.rb
|
274
284
|
- spec/models/tag_copy_spec.rb
|
275
285
|
- spec/models/tag_image_spec.rb
|
276
286
|
- spec/models/un_tag_image_spec.rb
|
287
|
+
- spec/models/unset_label_response_spec.rb
|
288
|
+
- spec/models/unset_label_spec.rb
|
277
289
|
- spec/spec_helper.rb
|
278
290
|
homepage: https://github.com/pulp/pulp_container
|
279
291
|
licenses:
|
@@ -299,68 +311,72 @@ signing_key:
|
|
299
311
|
specification_version: 4
|
300
312
|
summary: Pulp 3 API Ruby Gem
|
301
313
|
test_files:
|
302
|
-
- spec/api/
|
303
|
-
- spec/api/remotes_container_api_spec.rb
|
304
|
-
- spec/api/repositories_container_versions_api_spec.rb
|
314
|
+
- spec/api/repositories_container_api_spec.rb
|
305
315
|
- spec/api/token_api_spec.rb
|
306
|
-
- spec/api/content_tags_api_spec.rb
|
307
316
|
- spec/api/content_blobs_api_spec.rb
|
308
|
-
- spec/api/
|
309
|
-
- spec/api/
|
317
|
+
- spec/api/distributions_container_api_spec.rb
|
318
|
+
- spec/api/pulp_container_namespaces_api_spec.rb
|
319
|
+
- spec/api/remotes_container_api_spec.rb
|
310
320
|
- spec/api/content_signatures_api_spec.rb
|
321
|
+
- spec/api/content_tags_api_spec.rb
|
311
322
|
- spec/api/repositories_container_push_api_spec.rb
|
312
|
-
- spec/api/
|
313
|
-
- spec/api/
|
323
|
+
- spec/api/repositories_container_versions_api_spec.rb
|
324
|
+
- spec/api/content_manifests_api_spec.rb
|
325
|
+
- spec/api/repositories_container_push_versions_api_spec.rb
|
314
326
|
- spec/api_client_spec.rb
|
315
327
|
- spec/configuration_spec.rb
|
316
|
-
- spec/models/
|
328
|
+
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
329
|
+
- spec/models/container_container_distribution_response_spec.rb
|
330
|
+
- spec/models/container_container_distribution_spec.rb
|
317
331
|
- spec/models/tag_image_spec.rb
|
318
|
-
- spec/models/repair_spec.rb
|
319
|
-
- spec/models/container_repository_sync_url_spec.rb
|
320
|
-
- spec/models/container_manifest_signature_response_spec.rb
|
321
|
-
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
322
|
-
- spec/models/remove_signatures_response_spec.rb
|
323
332
|
- spec/models/repository_version_response_spec.rb
|
324
|
-
- spec/models/
|
325
|
-
- spec/models/remove_signatures_spec.rb
|
326
|
-
- spec/models/container_container_namespace_response_spec.rb
|
333
|
+
- spec/models/container_container_push_repository_response_spec.rb
|
327
334
|
- spec/models/patchedcontainer_container_distribution_spec.rb
|
328
|
-
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
329
|
-
- spec/models/nested_role_response_spec.rb
|
330
335
|
- spec/models/un_tag_image_spec.rb
|
331
|
-
- spec/models/
|
332
|
-
- spec/models/
|
333
|
-
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
334
|
-
- spec/models/my_permissions_response_spec.rb
|
335
|
-
- spec/models/container_container_namespace_spec.rb
|
336
|
+
- spec/models/container_container_namespace_response_spec.rb
|
337
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
336
338
|
- spec/models/patchedcontainer_container_push_repository_spec.rb
|
337
|
-
- spec/models/
|
338
|
-
- spec/models/container_container_remote_response_hidden_fields_spec.rb
|
339
|
-
- spec/models/nested_role_spec.rb
|
340
|
-
- spec/models/container_container_distribution_response_spec.rb
|
341
|
-
- spec/models/tag_copy_spec.rb
|
342
|
-
- spec/models/container_container_repository_response_spec.rb
|
343
|
-
- spec/models/container_blob_response_spec.rb
|
344
|
-
- spec/models/container_container_push_repository_response_spec.rb
|
345
|
-
- spec/models/media_types_enum_spec.rb
|
346
|
-
- spec/models/content_summary_response_spec.rb
|
347
|
-
- spec/models/container_container_remote_spec.rb
|
348
|
-
- spec/models/patchedcontainer_container_repository_spec.rb
|
339
|
+
- spec/models/repository_sign_spec.rb
|
349
340
|
- spec/models/policy_enum_spec.rb
|
341
|
+
- spec/models/paginatedcontainer_blob_response_list_spec.rb
|
342
|
+
- spec/models/remove_signatures_response_spec.rb
|
350
343
|
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
351
|
-
- spec/models/
|
352
|
-
- spec/models/
|
353
|
-
- spec/models/manifest_copy_spec.rb
|
344
|
+
- spec/models/object_roles_response_spec.rb
|
345
|
+
- spec/models/my_permissions_response_spec.rb
|
354
346
|
- spec/models/container_manifest_response_spec.rb
|
347
|
+
- spec/models/container_container_repository_spec.rb
|
348
|
+
- spec/models/media_types_enum_spec.rb
|
349
|
+
- spec/models/container_container_repository_response_spec.rb
|
350
|
+
- spec/models/nested_role_response_spec.rb
|
351
|
+
- spec/models/oci_build_image_spec.rb
|
352
|
+
- spec/models/container_container_namespace_spec.rb
|
353
|
+
- spec/models/container_container_remote_response_spec.rb
|
354
|
+
- spec/models/set_label_response_spec.rb
|
355
|
+
- spec/models/container_repository_sync_url_spec.rb
|
356
|
+
- spec/models/patchedcontainer_container_repository_spec.rb
|
357
|
+
- spec/models/set_label_spec.rb
|
355
358
|
- spec/models/container_tag_response_spec.rb
|
356
|
-
- spec/models/
|
359
|
+
- spec/models/container_blob_response_spec.rb
|
360
|
+
- spec/models/unset_label_spec.rb
|
361
|
+
- spec/models/unset_label_response_spec.rb
|
362
|
+
- spec/models/async_operation_response_spec.rb
|
363
|
+
- spec/models/nested_role_spec.rb
|
357
364
|
- spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
|
365
|
+
- spec/models/remove_image_spec.rb
|
358
366
|
- spec/models/paginatedcontainer_manifest_signature_response_list_spec.rb
|
359
|
-
- spec/models/
|
360
|
-
- spec/models/
|
361
|
-
- spec/models/
|
367
|
+
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
368
|
+
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
369
|
+
- spec/models/container_container_remote_response_hidden_fields_spec.rb
|
370
|
+
- spec/models/container_manifest_signature_response_spec.rb
|
371
|
+
- spec/models/manifest_copy_spec.rb
|
372
|
+
- spec/models/repair_spec.rb
|
362
373
|
- spec/models/recursive_manage_spec.rb
|
363
|
-
- spec/models/
|
364
|
-
- spec/models/
|
365
|
-
- spec/models/
|
374
|
+
- spec/models/content_summary_response_spec.rb
|
375
|
+
- spec/models/patchedcontainer_container_remote_spec.rb
|
376
|
+
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
377
|
+
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
378
|
+
- spec/models/container_container_remote_spec.rb
|
379
|
+
- spec/models/container_container_push_repository_spec.rb
|
380
|
+
- spec/models/tag_copy_spec.rb
|
381
|
+
- spec/models/remove_signatures_spec.rb
|
366
382
|
- spec/spec_helper.rb
|