pulp_docker_client 4.0.0b5 → 4.0.0b6
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 +25 -14
- data/docs/ContentBlobsApi.md +24 -20
- data/docs/ContentManifestsApi.md +12 -6
- data/docs/{ContentManifestTagsApi.md → ContentTagsApi.md} +40 -34
- data/docs/DistributionsDockerApi.md +4 -4
- data/docs/DockerCopyApi.md +114 -0
- data/docs/DockerDistribution.md +9 -9
- data/docs/DockerRecursiveAddApi.md +61 -0
- data/docs/DockerRecursiveRemoveApi.md +61 -0
- data/docs/DockerTagApi.md +61 -0
- data/docs/DockerUntagApi.md +61 -0
- data/docs/InlineResponse200.md +3 -3
- data/docs/InlineResponse2001.md +4 -4
- data/docs/InlineResponse2002.md +4 -4
- data/docs/InlineResponse2003.md +3 -3
- data/docs/InlineResponse2004.md +3 -3
- data/docs/ManifestCopy.md +25 -0
- data/docs/RecursiveManage.md +19 -0
- data/docs/RemotesDockerApi.md +4 -4
- data/docs/{ManifestTag.md → Tag.md} +2 -2
- data/docs/TagCopy.md +23 -0
- data/docs/TagImage.md +21 -0
- data/docs/UnTagImage.md +19 -0
- data/git_push.sh +10 -7
- data/lib/pulp_docker_client/api/content_blobs_api.rb +35 -29
- data/lib/pulp_docker_client/api/content_manifests_api.rb +21 -12
- data/lib/pulp_docker_client/api/{content_manifest_tags_api.rb → content_tags_api.rb} +59 -50
- data/lib/pulp_docker_client/api/distributions_docker_api.rb +12 -12
- data/lib/pulp_docker_client/api/docker_copy_api.rb +146 -0
- data/lib/pulp_docker_client/api/docker_recursive_add_api.rb +84 -0
- data/lib/pulp_docker_client/api/docker_recursive_remove_api.rb +84 -0
- data/lib/pulp_docker_client/api/docker_tag_api.rb +84 -0
- data/lib/pulp_docker_client/api/docker_untag_api.rb +84 -0
- data/lib/pulp_docker_client/api/remotes_docker_api.rb +13 -13
- data/lib/pulp_docker_client/api_client.rb +77 -62
- data/lib/pulp_docker_client/api_error.rb +1 -1
- data/lib/pulp_docker_client/configuration.rb +13 -21
- data/lib/pulp_docker_client/models/async_operation_response.rb +1 -1
- data/lib/pulp_docker_client/models/blob.rb +1 -1
- data/lib/pulp_docker_client/models/docker_distribution.rb +37 -37
- data/lib/pulp_docker_client/models/docker_remote.rb +1 -1
- data/lib/pulp_docker_client/models/inline_response200.rb +11 -11
- data/lib/pulp_docker_client/models/inline_response2001.rb +12 -12
- data/lib/pulp_docker_client/models/inline_response2002.rb +12 -12
- data/lib/pulp_docker_client/models/inline_response2003.rb +11 -11
- data/lib/pulp_docker_client/models/inline_response2004.rb +11 -11
- data/lib/pulp_docker_client/models/manifest.rb +1 -1
- data/lib/pulp_docker_client/models/manifest_copy.rb +268 -0
- data/lib/pulp_docker_client/models/recursive_manage.rb +214 -0
- data/lib/pulp_docker_client/models/repository_sync_url.rb +1 -1
- data/lib/pulp_docker_client/models/{manifest_tag.rb → tag.rb} +4 -4
- data/lib/pulp_docker_client/models/tag_copy.rb +234 -0
- data/lib/pulp_docker_client/models/tag_image.rb +270 -0
- data/lib/pulp_docker_client/models/un_tag_image.rb +236 -0
- data/lib/pulp_docker_client/version.rb +2 -2
- data/lib/pulp_docker_client.rb +13 -3
- data/pulp_docker_client.gemspec +3 -9
- data/spec/api/content_blobs_api_spec.rb +12 -10
- data/spec/api/content_manifests_api_spec.rb +7 -4
- data/spec/api/{content_manifest_tags_api_spec.rb → content_tags_api_spec.rb} +22 -19
- data/spec/api/distributions_docker_api_spec.rb +3 -3
- data/spec/api/docker_copy_api_spec.rb +57 -0
- data/spec/api/docker_recursive_add_api_spec.rb +46 -0
- data/spec/api/docker_recursive_remove_api_spec.rb +46 -0
- data/spec/api/docker_tag_api_spec.rb +46 -0
- data/spec/api/docker_untag_api_spec.rb +46 -0
- data/spec/api/remotes_docker_api_spec.rb +3 -3
- data/spec/api_client_spec.rb +1 -39
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/async_operation_response_spec.rb +1 -1
- data/spec/models/blob_spec.rb +1 -1
- data/spec/models/docker_distribution_spec.rb +7 -7
- data/spec/models/docker_remote_spec.rb +1 -1
- data/spec/models/inline_response2001_spec.rb +4 -4
- data/spec/models/inline_response2002_spec.rb +4 -4
- data/spec/models/inline_response2003_spec.rb +4 -4
- data/spec/models/inline_response2004_spec.rb +4 -4
- data/spec/models/inline_response200_spec.rb +4 -4
- data/spec/models/manifest_copy_spec.rb +69 -0
- data/spec/models/manifest_spec.rb +1 -1
- data/spec/models/recursive_manage_spec.rb +47 -0
- data/spec/models/repository_sync_url_spec.rb +1 -1
- data/spec/models/tag_copy_spec.rb +59 -0
- data/spec/models/tag_image_spec.rb +53 -0
- data/spec/models/{manifest_tag_spec.rb → tag_spec.rb} +7 -7
- data/spec/models/un_tag_image_spec.rb +47 -0
- data/spec/spec_helper.rb +1 -1
- metadata +54 -141
- data/Gemfile.lock +0 -79
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -32,19 +32,19 @@ describe 'InlineResponse200' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDockerClient::InlineResponse200)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
35
|
+
describe 'test attribute "count"' 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 "
|
|
41
|
+
describe 'test attribute "_next"' do
|
|
42
42
|
it 'should work' do
|
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
describe 'test attribute "
|
|
47
|
+
describe 'test attribute "previous"' do
|
|
48
48
|
it 'should work' do
|
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
50
|
end
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpDockerClient::ManifestCopy
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'ManifestCopy' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpDockerClient::ManifestCopy.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of ManifestCopy' do
|
|
31
|
+
it 'should create an instance of ManifestCopy' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpDockerClient::ManifestCopy)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "source_repository"' 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 "source_repository_version"' 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
|
+
describe 'test attribute "destination_repository"' 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
|
+
|
|
53
|
+
describe 'test attribute "digests"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
describe 'test attribute "media_types"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["application/vnd.docker.distribution.manifest.v1+json", "application/vnd.docker.distribution.manifest.v2+json", "application/vnd.docker.distribution.manifest.list.v2+json"])
|
|
63
|
+
# validator.allowable_values.each do |value|
|
|
64
|
+
# expect { @instance.media_types = value }.not_to raise_error
|
|
65
|
+
# end
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpDockerClient::RecursiveManage
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'RecursiveManage' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpDockerClient::RecursiveManage.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of RecursiveManage' do
|
|
31
|
+
it 'should create an instance of RecursiveManage' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpDockerClient::RecursiveManage)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "repository"' 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 "content_units"' 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,59 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpDockerClient::TagCopy
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'TagCopy' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpDockerClient::TagCopy.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of TagCopy' do
|
|
31
|
+
it 'should create an instance of TagCopy' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpDockerClient::TagCopy)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "source_repository"' 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 "source_repository_version"' 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
|
+
describe 'test attribute "destination_repository"' 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
|
+
|
|
53
|
+
describe 'test attribute "names"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpDockerClient::TagImage
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'TagImage' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpDockerClient::TagImage.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of TagImage' do
|
|
31
|
+
it 'should create an instance of TagImage' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpDockerClient::TagImage)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "repository"' 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 "tag"' 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
|
+
describe 'test attribute "digest"' 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
|
+
|
|
53
|
+
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpDockerClient::
|
|
17
|
+
# Unit tests for PulpDockerClient::Tag
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'Tag' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpDockerClient::
|
|
23
|
+
@instance = PulpDockerClient::Tag.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(PulpDockerClient::
|
|
30
|
+
describe 'test an instance of Tag' do
|
|
31
|
+
it 'should create an instance of Tag' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpDockerClient::Tag)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "_href"' do
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.1.2-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpDockerClient::UnTagImage
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'UnTagImage' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpDockerClient::UnTagImage.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of UnTagImage' do
|
|
31
|
+
it 'should create an instance of UnTagImage' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpDockerClient::UnTagImage)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "repository"' 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 "tag"' 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
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,35 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_docker_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.0b6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: faraday
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.0'
|
|
20
17
|
- - ">="
|
|
21
18
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
19
|
+
version: 0.14.0
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
|
-
- - "~>"
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: '1.0'
|
|
30
24
|
- - ">="
|
|
31
25
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
26
|
+
version: 0.14.0
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: json
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -70,126 +64,6 @@ dependencies:
|
|
|
70
64
|
- - ">="
|
|
71
65
|
- !ruby/object:Gem::Version
|
|
72
66
|
version: 3.6.0
|
|
73
|
-
- !ruby/object:Gem::Dependency
|
|
74
|
-
name: vcr
|
|
75
|
-
requirement: !ruby/object:Gem::Requirement
|
|
76
|
-
requirements:
|
|
77
|
-
- - "~>"
|
|
78
|
-
- !ruby/object:Gem::Version
|
|
79
|
-
version: '3.0'
|
|
80
|
-
- - ">="
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: 3.0.1
|
|
83
|
-
type: :development
|
|
84
|
-
prerelease: false
|
|
85
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - "~>"
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '3.0'
|
|
90
|
-
- - ">="
|
|
91
|
-
- !ruby/object:Gem::Version
|
|
92
|
-
version: 3.0.1
|
|
93
|
-
- !ruby/object:Gem::Dependency
|
|
94
|
-
name: webmock
|
|
95
|
-
requirement: !ruby/object:Gem::Requirement
|
|
96
|
-
requirements:
|
|
97
|
-
- - "~>"
|
|
98
|
-
- !ruby/object:Gem::Version
|
|
99
|
-
version: '1.24'
|
|
100
|
-
- - ">="
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: 1.24.3
|
|
103
|
-
type: :development
|
|
104
|
-
prerelease: false
|
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
-
requirements:
|
|
107
|
-
- - "~>"
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
version: '1.24'
|
|
110
|
-
- - ">="
|
|
111
|
-
- !ruby/object:Gem::Version
|
|
112
|
-
version: 1.24.3
|
|
113
|
-
- !ruby/object:Gem::Dependency
|
|
114
|
-
name: autotest
|
|
115
|
-
requirement: !ruby/object:Gem::Requirement
|
|
116
|
-
requirements:
|
|
117
|
-
- - "~>"
|
|
118
|
-
- !ruby/object:Gem::Version
|
|
119
|
-
version: '4.4'
|
|
120
|
-
- - ">="
|
|
121
|
-
- !ruby/object:Gem::Version
|
|
122
|
-
version: 4.4.6
|
|
123
|
-
type: :development
|
|
124
|
-
prerelease: false
|
|
125
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
126
|
-
requirements:
|
|
127
|
-
- - "~>"
|
|
128
|
-
- !ruby/object:Gem::Version
|
|
129
|
-
version: '4.4'
|
|
130
|
-
- - ">="
|
|
131
|
-
- !ruby/object:Gem::Version
|
|
132
|
-
version: 4.4.6
|
|
133
|
-
- !ruby/object:Gem::Dependency
|
|
134
|
-
name: autotest-rails-pure
|
|
135
|
-
requirement: !ruby/object:Gem::Requirement
|
|
136
|
-
requirements:
|
|
137
|
-
- - "~>"
|
|
138
|
-
- !ruby/object:Gem::Version
|
|
139
|
-
version: '4.1'
|
|
140
|
-
- - ">="
|
|
141
|
-
- !ruby/object:Gem::Version
|
|
142
|
-
version: 4.1.2
|
|
143
|
-
type: :development
|
|
144
|
-
prerelease: false
|
|
145
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
-
requirements:
|
|
147
|
-
- - "~>"
|
|
148
|
-
- !ruby/object:Gem::Version
|
|
149
|
-
version: '4.1'
|
|
150
|
-
- - ">="
|
|
151
|
-
- !ruby/object:Gem::Version
|
|
152
|
-
version: 4.1.2
|
|
153
|
-
- !ruby/object:Gem::Dependency
|
|
154
|
-
name: autotest-growl
|
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
|
156
|
-
requirements:
|
|
157
|
-
- - "~>"
|
|
158
|
-
- !ruby/object:Gem::Version
|
|
159
|
-
version: '0.2'
|
|
160
|
-
- - ">="
|
|
161
|
-
- !ruby/object:Gem::Version
|
|
162
|
-
version: 0.2.16
|
|
163
|
-
type: :development
|
|
164
|
-
prerelease: false
|
|
165
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
166
|
-
requirements:
|
|
167
|
-
- - "~>"
|
|
168
|
-
- !ruby/object:Gem::Version
|
|
169
|
-
version: '0.2'
|
|
170
|
-
- - ">="
|
|
171
|
-
- !ruby/object:Gem::Version
|
|
172
|
-
version: 0.2.16
|
|
173
|
-
- !ruby/object:Gem::Dependency
|
|
174
|
-
name: autotest-fsevent
|
|
175
|
-
requirement: !ruby/object:Gem::Requirement
|
|
176
|
-
requirements:
|
|
177
|
-
- - "~>"
|
|
178
|
-
- !ruby/object:Gem::Version
|
|
179
|
-
version: '0.2'
|
|
180
|
-
- - ">="
|
|
181
|
-
- !ruby/object:Gem::Version
|
|
182
|
-
version: 0.2.12
|
|
183
|
-
type: :development
|
|
184
|
-
prerelease: false
|
|
185
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
186
|
-
requirements:
|
|
187
|
-
- - "~>"
|
|
188
|
-
- !ruby/object:Gem::Version
|
|
189
|
-
version: '0.2'
|
|
190
|
-
- - ">="
|
|
191
|
-
- !ruby/object:Gem::Version
|
|
192
|
-
version: 0.2.12
|
|
193
67
|
description: No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
194
68
|
email:
|
|
195
69
|
- ''
|
|
@@ -198,32 +72,46 @@ extensions: []
|
|
|
198
72
|
extra_rdoc_files: []
|
|
199
73
|
files:
|
|
200
74
|
- Gemfile
|
|
201
|
-
- Gemfile.lock
|
|
202
75
|
- README.md
|
|
203
76
|
- Rakefile
|
|
204
77
|
- docs/AsyncOperationResponse.md
|
|
205
78
|
- docs/Blob.md
|
|
206
79
|
- docs/ContentBlobsApi.md
|
|
207
|
-
- docs/ContentManifestTagsApi.md
|
|
208
80
|
- docs/ContentManifestsApi.md
|
|
81
|
+
- docs/ContentTagsApi.md
|
|
209
82
|
- docs/DistributionsDockerApi.md
|
|
83
|
+
- docs/DockerCopyApi.md
|
|
210
84
|
- docs/DockerDistribution.md
|
|
85
|
+
- docs/DockerRecursiveAddApi.md
|
|
86
|
+
- docs/DockerRecursiveRemoveApi.md
|
|
211
87
|
- docs/DockerRemote.md
|
|
88
|
+
- docs/DockerTagApi.md
|
|
89
|
+
- docs/DockerUntagApi.md
|
|
212
90
|
- docs/InlineResponse200.md
|
|
213
91
|
- docs/InlineResponse2001.md
|
|
214
92
|
- docs/InlineResponse2002.md
|
|
215
93
|
- docs/InlineResponse2003.md
|
|
216
94
|
- docs/InlineResponse2004.md
|
|
217
95
|
- docs/Manifest.md
|
|
218
|
-
- docs/
|
|
96
|
+
- docs/ManifestCopy.md
|
|
97
|
+
- docs/RecursiveManage.md
|
|
219
98
|
- docs/RemotesDockerApi.md
|
|
220
99
|
- docs/RepositorySyncURL.md
|
|
100
|
+
- docs/Tag.md
|
|
101
|
+
- docs/TagCopy.md
|
|
102
|
+
- docs/TagImage.md
|
|
103
|
+
- docs/UnTagImage.md
|
|
221
104
|
- git_push.sh
|
|
222
105
|
- lib/pulp_docker_client.rb
|
|
223
106
|
- lib/pulp_docker_client/api/content_blobs_api.rb
|
|
224
|
-
- lib/pulp_docker_client/api/content_manifest_tags_api.rb
|
|
225
107
|
- lib/pulp_docker_client/api/content_manifests_api.rb
|
|
108
|
+
- lib/pulp_docker_client/api/content_tags_api.rb
|
|
226
109
|
- lib/pulp_docker_client/api/distributions_docker_api.rb
|
|
110
|
+
- lib/pulp_docker_client/api/docker_copy_api.rb
|
|
111
|
+
- lib/pulp_docker_client/api/docker_recursive_add_api.rb
|
|
112
|
+
- lib/pulp_docker_client/api/docker_recursive_remove_api.rb
|
|
113
|
+
- lib/pulp_docker_client/api/docker_tag_api.rb
|
|
114
|
+
- lib/pulp_docker_client/api/docker_untag_api.rb
|
|
227
115
|
- lib/pulp_docker_client/api/remotes_docker_api.rb
|
|
228
116
|
- lib/pulp_docker_client/api_client.rb
|
|
229
117
|
- lib/pulp_docker_client/api_error.rb
|
|
@@ -238,14 +126,24 @@ files:
|
|
|
238
126
|
- lib/pulp_docker_client/models/inline_response2003.rb
|
|
239
127
|
- lib/pulp_docker_client/models/inline_response2004.rb
|
|
240
128
|
- lib/pulp_docker_client/models/manifest.rb
|
|
241
|
-
- lib/pulp_docker_client/models/
|
|
129
|
+
- lib/pulp_docker_client/models/manifest_copy.rb
|
|
130
|
+
- lib/pulp_docker_client/models/recursive_manage.rb
|
|
242
131
|
- lib/pulp_docker_client/models/repository_sync_url.rb
|
|
132
|
+
- lib/pulp_docker_client/models/tag.rb
|
|
133
|
+
- lib/pulp_docker_client/models/tag_copy.rb
|
|
134
|
+
- lib/pulp_docker_client/models/tag_image.rb
|
|
135
|
+
- lib/pulp_docker_client/models/un_tag_image.rb
|
|
243
136
|
- lib/pulp_docker_client/version.rb
|
|
244
137
|
- pulp_docker_client.gemspec
|
|
245
138
|
- spec/api/content_blobs_api_spec.rb
|
|
246
|
-
- spec/api/content_manifest_tags_api_spec.rb
|
|
247
139
|
- spec/api/content_manifests_api_spec.rb
|
|
140
|
+
- spec/api/content_tags_api_spec.rb
|
|
248
141
|
- spec/api/distributions_docker_api_spec.rb
|
|
142
|
+
- spec/api/docker_copy_api_spec.rb
|
|
143
|
+
- spec/api/docker_recursive_add_api_spec.rb
|
|
144
|
+
- spec/api/docker_recursive_remove_api_spec.rb
|
|
145
|
+
- spec/api/docker_tag_api_spec.rb
|
|
146
|
+
- spec/api/docker_untag_api_spec.rb
|
|
249
147
|
- spec/api/remotes_docker_api_spec.rb
|
|
250
148
|
- spec/api_client_spec.rb
|
|
251
149
|
- spec/configuration_spec.rb
|
|
@@ -258,13 +156,18 @@ files:
|
|
|
258
156
|
- spec/models/inline_response2003_spec.rb
|
|
259
157
|
- spec/models/inline_response2004_spec.rb
|
|
260
158
|
- spec/models/inline_response200_spec.rb
|
|
159
|
+
- spec/models/manifest_copy_spec.rb
|
|
261
160
|
- spec/models/manifest_spec.rb
|
|
262
|
-
- spec/models/
|
|
161
|
+
- spec/models/recursive_manage_spec.rb
|
|
263
162
|
- spec/models/repository_sync_url_spec.rb
|
|
163
|
+
- spec/models/tag_copy_spec.rb
|
|
164
|
+
- spec/models/tag_image_spec.rb
|
|
165
|
+
- spec/models/tag_spec.rb
|
|
166
|
+
- spec/models/un_tag_image_spec.rb
|
|
264
167
|
- spec/spec_helper.rb
|
|
265
168
|
homepage: https://openapi-generator.tech
|
|
266
169
|
licenses:
|
|
267
|
-
-
|
|
170
|
+
- GPL-2.0
|
|
268
171
|
metadata: {}
|
|
269
172
|
post_install_message:
|
|
270
173
|
rdoc_options: []
|
|
@@ -287,23 +190,33 @@ signing_key:
|
|
|
287
190
|
specification_version: 4
|
|
288
191
|
summary: Pulp 3 API Ruby Gem
|
|
289
192
|
test_files:
|
|
193
|
+
- spec/api/content_tags_api_spec.rb
|
|
194
|
+
- spec/api/docker_recursive_remove_api_spec.rb
|
|
290
195
|
- spec/api/content_blobs_api_spec.rb
|
|
196
|
+
- spec/api/docker_untag_api_spec.rb
|
|
197
|
+
- spec/api/docker_copy_api_spec.rb
|
|
291
198
|
- spec/api/content_manifests_api_spec.rb
|
|
199
|
+
- spec/api/docker_recursive_add_api_spec.rb
|
|
292
200
|
- spec/api/remotes_docker_api_spec.rb
|
|
293
|
-
- spec/api/
|
|
201
|
+
- spec/api/docker_tag_api_spec.rb
|
|
294
202
|
- spec/api/distributions_docker_api_spec.rb
|
|
295
203
|
- spec/api_client_spec.rb
|
|
296
204
|
- spec/configuration_spec.rb
|
|
205
|
+
- spec/models/tag_spec.rb
|
|
297
206
|
- spec/models/inline_response2003_spec.rb
|
|
207
|
+
- spec/models/tag_copy_spec.rb
|
|
298
208
|
- spec/models/inline_response2001_spec.rb
|
|
299
209
|
- spec/models/inline_response2002_spec.rb
|
|
300
210
|
- spec/models/inline_response2004_spec.rb
|
|
211
|
+
- spec/models/un_tag_image_spec.rb
|
|
301
212
|
- spec/models/async_operation_response_spec.rb
|
|
302
213
|
- spec/models/docker_distribution_spec.rb
|
|
214
|
+
- spec/models/manifest_copy_spec.rb
|
|
215
|
+
- spec/models/tag_image_spec.rb
|
|
303
216
|
- spec/models/repository_sync_url_spec.rb
|
|
304
217
|
- spec/models/blob_spec.rb
|
|
305
|
-
- spec/models/manifest_tag_spec.rb
|
|
306
218
|
- spec/models/docker_remote_spec.rb
|
|
307
219
|
- spec/models/manifest_spec.rb
|
|
220
|
+
- spec/models/recursive_manage_spec.rb
|
|
308
221
|
- spec/models/inline_response200_spec.rb
|
|
309
222
|
- spec/spec_helper.rb
|