pulp_container_client 1.4.2 → 2.0.0b1
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 +16 -7
- data/docs/{ContainerBlob.md → ContainerBlobRead.md} +2 -2
- data/docs/ContainerContainerDistribution.md +8 -8
- data/docs/ContainerContainerDistributionRead.md +31 -0
- data/docs/ContainerContainerRemoteRead.md +47 -0
- data/docs/ContainerContainerRepositoryRead.md +27 -0
- data/docs/{ContainerManifest.md → ContainerManifestRead.md} +2 -2
- data/docs/{ContainerTag.md → ContainerTagRead.md} +2 -2
- data/docs/ContentBlobsApi.md +2 -2
- data/docs/ContentManifestsApi.md +2 -2
- data/docs/ContentTagsApi.md +2 -2
- data/docs/DistributionsContainerApi.md +2 -2
- data/docs/InlineResponse200.md +1 -1
- data/docs/InlineResponse2001.md +1 -1
- data/docs/InlineResponse2002.md +1 -1
- data/docs/InlineResponse2003.md +1 -1
- data/docs/InlineResponse2004.md +1 -1
- data/docs/InlineResponse2005.md +1 -1
- data/docs/InlineResponse2006.md +1 -1
- data/docs/RemotesContainerApi.md +4 -4
- data/docs/RepositoriesContainerApi.md +4 -4
- data/docs/RepositoriesContainerVersionsApi.md +4 -6
- data/docs/RepositoryVersionRead.md +25 -0
- data/docs/V2Api.md +64 -0
- data/docs/V2BlobsApi.md +63 -0
- data/docs/V2CatalogApi.md +64 -0
- data/docs/V2ListApi.md +66 -0
- data/docs/V2UploadsApi.md +61 -0
- data/lib/pulp_container_client/api/content_blobs_api.rb +3 -3
- data/lib/pulp_container_client/api/content_manifests_api.rb +3 -3
- data/lib/pulp_container_client/api/content_tags_api.rb +3 -3
- data/lib/pulp_container_client/api/distributions_container_api.rb +3 -3
- data/lib/pulp_container_client/api/remotes_container_api.rb +6 -6
- data/lib/pulp_container_client/api/repositories_container_api.rb +6 -6
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +6 -9
- data/lib/pulp_container_client/api/v2_api.rb +80 -0
- data/lib/pulp_container_client/api/v2_blobs_api.rb +88 -0
- data/lib/pulp_container_client/api/v2_catalog_api.rb +80 -0
- data/lib/pulp_container_client/api/v2_list_api.rb +86 -0
- data/lib/pulp_container_client/api/v2_uploads_api.rb +82 -0
- data/lib/pulp_container_client/models/{container_blob.rb → container_blob_read.rb} +3 -3
- data/lib/pulp_container_client/models/container_container_distribution.rb +36 -36
- data/lib/pulp_container_client/models/container_container_distribution_read.rb +342 -0
- data/lib/pulp_container_client/models/container_container_remote_read.rb +578 -0
- data/lib/pulp_container_client/models/container_container_repository_read.rb +294 -0
- data/lib/pulp_container_client/models/{container_manifest.rb → container_manifest_read.rb} +3 -3
- data/lib/pulp_container_client/models/{container_tag.rb → container_tag_read.rb} +3 -3
- data/lib/pulp_container_client/models/inline_response200.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2001.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2002.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2003.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2004.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2005.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2006.rb +1 -1
- data/lib/pulp_container_client/models/repository_version_read.rb +244 -0
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +12 -3
- data/spec/api/content_blobs_api_spec.rb +1 -1
- data/spec/api/content_manifests_api_spec.rb +1 -1
- data/spec/api/content_tags_api_spec.rb +1 -1
- data/spec/api/distributions_container_api_spec.rb +1 -1
- data/spec/api/remotes_container_api_spec.rb +2 -2
- data/spec/api/repositories_container_api_spec.rb +2 -2
- data/spec/api/repositories_container_versions_api_spec.rb +2 -3
- data/spec/api/v2_api_spec.rb +47 -0
- data/spec/api/v2_blobs_api_spec.rb +48 -0
- data/spec/api/v2_catalog_api_spec.rb +47 -0
- data/spec/api/v2_list_api_spec.rb +48 -0
- data/spec/api/v2_uploads_api_spec.rb +47 -0
- data/spec/models/{container_blob_spec.rb → container_blob_read_spec.rb} +6 -6
- data/spec/models/container_container_distribution_read_spec.rb +83 -0
- data/spec/models/container_container_distribution_spec.rb +7 -7
- data/spec/models/container_container_remote_read_spec.rb +135 -0
- data/spec/models/container_container_repository_read_spec.rb +71 -0
- data/spec/models/{container_manifest_spec.rb → container_manifest_read_spec.rb} +6 -6
- data/spec/models/{container_tag_spec.rb → container_tag_read_spec.rb} +6 -6
- data/spec/models/repository_version_read_spec.rb +65 -0
- metadata +52 -16
|
@@ -0,0 +1,135 @@
|
|
|
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.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpContainerClient::ContainerContainerRemoteRead
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'ContainerContainerRemoteRead' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpContainerClient::ContainerContainerRemoteRead.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of ContainerContainerRemoteRead' do
|
|
31
|
+
it 'should create an instance of ContainerContainerRemoteRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerRemoteRead)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "name"' 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 "url"' 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 "ca_cert"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "client_cert"' 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
|
+
|
|
71
|
+
describe 'test attribute "client_key"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "tls_validation"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "proxy_url"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "username"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "password"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
describe 'test attribute "pulp_last_updated"' do
|
|
102
|
+
it 'should work' do
|
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
describe 'test attribute "download_concurrency"' do
|
|
108
|
+
it 'should work' do
|
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
110
|
+
end
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
describe 'test attribute "policy"' do
|
|
114
|
+
it 'should work' do
|
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["immediate", "on_demand", "streamed"])
|
|
117
|
+
# validator.allowable_values.each do |value|
|
|
118
|
+
# expect { @instance.policy = value }.not_to raise_error
|
|
119
|
+
# end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
describe 'test attribute "upstream_name"' do
|
|
124
|
+
it 'should work' do
|
|
125
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
describe 'test attribute "whitelist_tags"' do
|
|
130
|
+
it 'should work' do
|
|
131
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
end
|
|
@@ -0,0 +1,71 @@
|
|
|
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.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpContainerClient::ContainerContainerRepositoryRead
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'ContainerContainerRepositoryRead' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpContainerClient::ContainerContainerRepositoryRead.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of ContainerContainerRepositoryRead' do
|
|
31
|
+
it 'should create an instance of ContainerContainerRepositoryRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerRepositoryRead)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "versions_href"' 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 "latest_version_href"' 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 "name"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "description"' 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
|
+
|
|
71
|
+
end
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpContainerClient::
|
|
17
|
+
# Unit tests for PulpContainerClient::ContainerManifestRead
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'ContainerManifestRead' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpContainerClient::
|
|
23
|
+
@instance = PulpContainerClient::ContainerManifestRead.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(PulpContainerClient::
|
|
30
|
+
describe 'test an instance of ContainerManifestRead' do
|
|
31
|
+
it 'should create an instance of ContainerManifestRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerManifestRead)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpContainerClient::
|
|
17
|
+
# Unit tests for PulpContainerClient::ContainerTagRead
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'ContainerTagRead' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpContainerClient::
|
|
23
|
+
@instance = PulpContainerClient::ContainerTagRead.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(PulpContainerClient::
|
|
30
|
+
describe 'test an instance of ContainerTagRead' do
|
|
31
|
+
it 'should create an instance of ContainerTagRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerTagRead)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -0,0 +1,65 @@
|
|
|
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.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpContainerClient::RepositoryVersionRead
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'RepositoryVersionRead' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpContainerClient::RepositoryVersionRead.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of RepositoryVersionRead' do
|
|
31
|
+
it 'should create an instance of RepositoryVersionRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::RepositoryVersionRead)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "number"' 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 "base_version"' 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 "content_summary"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
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:
|
|
4
|
+
version: 2.0.0b1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -75,12 +75,15 @@ files:
|
|
|
75
75
|
- README.md
|
|
76
76
|
- Rakefile
|
|
77
77
|
- docs/AsyncOperationResponse.md
|
|
78
|
-
- docs/
|
|
78
|
+
- docs/ContainerBlobRead.md
|
|
79
79
|
- docs/ContainerContainerDistribution.md
|
|
80
|
+
- docs/ContainerContainerDistributionRead.md
|
|
80
81
|
- docs/ContainerContainerRemote.md
|
|
82
|
+
- docs/ContainerContainerRemoteRead.md
|
|
81
83
|
- docs/ContainerContainerRepository.md
|
|
82
|
-
- docs/
|
|
83
|
-
- docs/
|
|
84
|
+
- docs/ContainerContainerRepositoryRead.md
|
|
85
|
+
- docs/ContainerManifestRead.md
|
|
86
|
+
- docs/ContainerTagRead.md
|
|
84
87
|
- docs/ContentBlobsApi.md
|
|
85
88
|
- docs/ContentManifestsApi.md
|
|
86
89
|
- docs/ContentSummary.md
|
|
@@ -100,9 +103,15 @@ files:
|
|
|
100
103
|
- docs/RepositoriesContainerVersionsApi.md
|
|
101
104
|
- docs/RepositorySyncURL.md
|
|
102
105
|
- docs/RepositoryVersion.md
|
|
106
|
+
- docs/RepositoryVersionRead.md
|
|
103
107
|
- docs/TagCopy.md
|
|
104
108
|
- docs/TagImage.md
|
|
105
109
|
- docs/UnTagImage.md
|
|
110
|
+
- docs/V2Api.md
|
|
111
|
+
- docs/V2BlobsApi.md
|
|
112
|
+
- docs/V2CatalogApi.md
|
|
113
|
+
- docs/V2ListApi.md
|
|
114
|
+
- docs/V2UploadsApi.md
|
|
106
115
|
- git_push.sh
|
|
107
116
|
- lib/pulp_container_client.rb
|
|
108
117
|
- lib/pulp_container_client/api/content_blobs_api.rb
|
|
@@ -112,16 +121,24 @@ files:
|
|
|
112
121
|
- lib/pulp_container_client/api/remotes_container_api.rb
|
|
113
122
|
- lib/pulp_container_client/api/repositories_container_api.rb
|
|
114
123
|
- lib/pulp_container_client/api/repositories_container_versions_api.rb
|
|
124
|
+
- lib/pulp_container_client/api/v2_api.rb
|
|
125
|
+
- lib/pulp_container_client/api/v2_blobs_api.rb
|
|
126
|
+
- lib/pulp_container_client/api/v2_catalog_api.rb
|
|
127
|
+
- lib/pulp_container_client/api/v2_list_api.rb
|
|
128
|
+
- lib/pulp_container_client/api/v2_uploads_api.rb
|
|
115
129
|
- lib/pulp_container_client/api_client.rb
|
|
116
130
|
- lib/pulp_container_client/api_error.rb
|
|
117
131
|
- lib/pulp_container_client/configuration.rb
|
|
118
132
|
- lib/pulp_container_client/models/async_operation_response.rb
|
|
119
|
-
- lib/pulp_container_client/models/
|
|
133
|
+
- lib/pulp_container_client/models/container_blob_read.rb
|
|
120
134
|
- lib/pulp_container_client/models/container_container_distribution.rb
|
|
135
|
+
- lib/pulp_container_client/models/container_container_distribution_read.rb
|
|
121
136
|
- lib/pulp_container_client/models/container_container_remote.rb
|
|
137
|
+
- lib/pulp_container_client/models/container_container_remote_read.rb
|
|
122
138
|
- lib/pulp_container_client/models/container_container_repository.rb
|
|
123
|
-
- lib/pulp_container_client/models/
|
|
124
|
-
- lib/pulp_container_client/models/
|
|
139
|
+
- lib/pulp_container_client/models/container_container_repository_read.rb
|
|
140
|
+
- lib/pulp_container_client/models/container_manifest_read.rb
|
|
141
|
+
- lib/pulp_container_client/models/container_tag_read.rb
|
|
125
142
|
- lib/pulp_container_client/models/content_summary.rb
|
|
126
143
|
- lib/pulp_container_client/models/inline_response200.rb
|
|
127
144
|
- lib/pulp_container_client/models/inline_response2001.rb
|
|
@@ -134,6 +151,7 @@ files:
|
|
|
134
151
|
- lib/pulp_container_client/models/recursive_manage.rb
|
|
135
152
|
- lib/pulp_container_client/models/repository_sync_url.rb
|
|
136
153
|
- lib/pulp_container_client/models/repository_version.rb
|
|
154
|
+
- lib/pulp_container_client/models/repository_version_read.rb
|
|
137
155
|
- lib/pulp_container_client/models/tag_copy.rb
|
|
138
156
|
- lib/pulp_container_client/models/tag_image.rb
|
|
139
157
|
- lib/pulp_container_client/models/un_tag_image.rb
|
|
@@ -146,15 +164,23 @@ files:
|
|
|
146
164
|
- spec/api/remotes_container_api_spec.rb
|
|
147
165
|
- spec/api/repositories_container_api_spec.rb
|
|
148
166
|
- spec/api/repositories_container_versions_api_spec.rb
|
|
167
|
+
- spec/api/v2_api_spec.rb
|
|
168
|
+
- spec/api/v2_blobs_api_spec.rb
|
|
169
|
+
- spec/api/v2_catalog_api_spec.rb
|
|
170
|
+
- spec/api/v2_list_api_spec.rb
|
|
171
|
+
- spec/api/v2_uploads_api_spec.rb
|
|
149
172
|
- spec/api_client_spec.rb
|
|
150
173
|
- spec/configuration_spec.rb
|
|
151
174
|
- spec/models/async_operation_response_spec.rb
|
|
152
|
-
- spec/models/
|
|
175
|
+
- spec/models/container_blob_read_spec.rb
|
|
176
|
+
- spec/models/container_container_distribution_read_spec.rb
|
|
153
177
|
- spec/models/container_container_distribution_spec.rb
|
|
178
|
+
- spec/models/container_container_remote_read_spec.rb
|
|
154
179
|
- spec/models/container_container_remote_spec.rb
|
|
180
|
+
- spec/models/container_container_repository_read_spec.rb
|
|
155
181
|
- spec/models/container_container_repository_spec.rb
|
|
156
|
-
- spec/models/
|
|
157
|
-
- spec/models/
|
|
182
|
+
- spec/models/container_manifest_read_spec.rb
|
|
183
|
+
- spec/models/container_tag_read_spec.rb
|
|
158
184
|
- spec/models/content_summary_spec.rb
|
|
159
185
|
- spec/models/inline_response2001_spec.rb
|
|
160
186
|
- spec/models/inline_response2002_spec.rb
|
|
@@ -166,6 +192,7 @@ files:
|
|
|
166
192
|
- spec/models/manifest_copy_spec.rb
|
|
167
193
|
- spec/models/recursive_manage_spec.rb
|
|
168
194
|
- spec/models/repository_sync_url_spec.rb
|
|
195
|
+
- spec/models/repository_version_read_spec.rb
|
|
169
196
|
- spec/models/repository_version_spec.rb
|
|
170
197
|
- spec/models/tag_copy_spec.rb
|
|
171
198
|
- spec/models/tag_image_spec.rb
|
|
@@ -186,44 +213,53 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
186
213
|
version: '1.9'
|
|
187
214
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
215
|
requirements:
|
|
189
|
-
- - "
|
|
216
|
+
- - ">"
|
|
190
217
|
- !ruby/object:Gem::Version
|
|
191
|
-
version:
|
|
218
|
+
version: 1.3.1
|
|
192
219
|
requirements: []
|
|
193
220
|
rubygems_version: 3.0.6
|
|
194
221
|
signing_key:
|
|
195
222
|
specification_version: 4
|
|
196
223
|
summary: Pulp 3 API Ruby Gem
|
|
197
224
|
test_files:
|
|
225
|
+
- spec/api/v2_uploads_api_spec.rb
|
|
198
226
|
- spec/api/distributions_container_api_spec.rb
|
|
199
227
|
- spec/api/content_manifests_api_spec.rb
|
|
228
|
+
- spec/api/v2_api_spec.rb
|
|
200
229
|
- spec/api/content_tags_api_spec.rb
|
|
201
230
|
- spec/api/remotes_container_api_spec.rb
|
|
202
231
|
- spec/api/repositories_container_api_spec.rb
|
|
232
|
+
- spec/api/v2_list_api_spec.rb
|
|
233
|
+
- spec/api/v2_blobs_api_spec.rb
|
|
234
|
+
- spec/api/v2_catalog_api_spec.rb
|
|
203
235
|
- spec/api/content_blobs_api_spec.rb
|
|
204
236
|
- spec/api/repositories_container_versions_api_spec.rb
|
|
205
237
|
- spec/api_client_spec.rb
|
|
206
238
|
- spec/configuration_spec.rb
|
|
207
|
-
- spec/models/container_tag_spec.rb
|
|
208
239
|
- spec/models/container_container_repository_spec.rb
|
|
209
240
|
- spec/models/container_container_distribution_spec.rb
|
|
210
241
|
- spec/models/repository_sync_url_spec.rb
|
|
211
|
-
- spec/models/container_manifest_spec.rb
|
|
212
242
|
- spec/models/async_operation_response_spec.rb
|
|
213
243
|
- spec/models/container_container_remote_spec.rb
|
|
214
244
|
- spec/models/inline_response2003_spec.rb
|
|
245
|
+
- spec/models/container_container_distribution_read_spec.rb
|
|
246
|
+
- spec/models/container_container_repository_read_spec.rb
|
|
247
|
+
- spec/models/container_container_remote_read_spec.rb
|
|
215
248
|
- spec/models/repository_version_spec.rb
|
|
216
249
|
- spec/models/tag_image_spec.rb
|
|
217
250
|
- spec/models/un_tag_image_spec.rb
|
|
218
251
|
- spec/models/inline_response2004_spec.rb
|
|
219
252
|
- spec/models/inline_response2005_spec.rb
|
|
220
253
|
- spec/models/inline_response2001_spec.rb
|
|
254
|
+
- spec/models/container_tag_read_spec.rb
|
|
221
255
|
- spec/models/manifest_copy_spec.rb
|
|
222
256
|
- spec/models/inline_response200_spec.rb
|
|
223
|
-
- spec/models/container_blob_spec.rb
|
|
224
257
|
- spec/models/tag_copy_spec.rb
|
|
225
258
|
- spec/models/inline_response2002_spec.rb
|
|
226
259
|
- spec/models/recursive_manage_spec.rb
|
|
260
|
+
- spec/models/container_blob_read_spec.rb
|
|
227
261
|
- spec/models/inline_response2006_spec.rb
|
|
262
|
+
- spec/models/container_manifest_read_spec.rb
|
|
228
263
|
- spec/models/content_summary_spec.rb
|
|
264
|
+
- spec/models/repository_version_read_spec.rb
|
|
229
265
|
- spec/spec_helper.rb
|