pulp_container_client 2.7.1 → 2.8.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 +5 -5
- data/docs/ContainerContainerDistribution.md +4 -4
- data/docs/ContainerContainerDistributionResponse.md +6 -6
- data/docs/ContainerContainerPushRepository.md +2 -2
- data/docs/ContainerContainerPushRepositoryResponse.md +5 -5
- data/docs/ContainerContainerRepository.md +3 -3
- data/docs/ContainerContainerRepositoryResponse.md +3 -3
- data/docs/ContentBlobsApi.md +1 -1
- data/docs/ContentManifestsApi.md +1 -1
- data/docs/ContentTagsApi.md +1 -1
- data/docs/ContentguardsContentRedirectApi.md +1 -1
- data/docs/DistributionsContainerApi.md +1 -1
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +2 -2
- data/docs/PatchedcontainerContainerRepository.md +3 -3
- data/docs/PulpContainerNamespacesApi.md +1 -1
- data/docs/RemotesContainerApi.md +1 -1
- data/docs/RepositoriesContainerApi.md +1 -1
- data/docs/RepositoriesContainerPushApi.md +1 -1
- data/docs/RepositoriesContainerPushVersionsApi.md +1 -1
- data/docs/RepositoriesContainerVersionsApi.md +1 -1
- data/docs/TokenApi.md +1 -1
- data/lib/pulp_container_client/configuration.rb +2 -2
- data/lib/pulp_container_client/models/container_container_distribution.rb +23 -23
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +32 -32
- data/lib/pulp_container_client/models/container_container_push_repository.rb +16 -16
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +29 -29
- data/lib/pulp_container_client/models/container_container_repository.rb +17 -16
- data/lib/pulp_container_client/models/container_container_repository_response.rb +17 -16
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +16 -16
- data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +17 -16
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/container_container_distribution_response_spec.rb +6 -6
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +4 -4
- data/spec/models/container_container_push_repository_spec.rb +1 -1
- data/spec/models/container_container_repository_response_spec.rb +1 -1
- data/spec/models/container_container_repository_spec.rb +1 -1
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +1 -1
- data/spec/models/patchedcontainer_container_repository_spec.rb +1 -1
- metadata +42 -42
@@ -15,20 +15,20 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class PatchedcontainerContainerDistribution
|
18
|
-
#
|
19
|
-
attr_accessor :
|
18
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
19
|
+
attr_accessor :content_guard
|
20
20
|
|
21
21
|
# The latest RepositoryVersion for this Repository will be served.
|
22
22
|
attr_accessor :repository
|
23
23
|
|
24
|
-
# An optional content-guard. If none is specified, a default one will be used.
|
25
|
-
attr_accessor :content_guard
|
26
|
-
|
27
24
|
# A unique name. Ex, `rawhide` and `stable`.
|
28
25
|
attr_accessor :name
|
29
26
|
|
30
27
|
attr_accessor :pulp_labels
|
31
28
|
|
29
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
30
|
+
attr_accessor :base_path
|
31
|
+
|
32
32
|
# RepositoryVersion to be served
|
33
33
|
attr_accessor :repository_version
|
34
34
|
|
@@ -41,11 +41,11 @@ module PulpContainerClient
|
|
41
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
|
-
:'base_path' => :'base_path',
|
45
|
-
:'repository' => :'repository',
|
46
44
|
:'content_guard' => :'content_guard',
|
45
|
+
:'repository' => :'repository',
|
47
46
|
:'name' => :'name',
|
48
47
|
:'pulp_labels' => :'pulp_labels',
|
48
|
+
:'base_path' => :'base_path',
|
49
49
|
:'repository_version' => :'repository_version',
|
50
50
|
:'private' => :'private',
|
51
51
|
:'description' => :'description'
|
@@ -55,11 +55,11 @@ module PulpContainerClient
|
|
55
55
|
# Attribute type mapping.
|
56
56
|
def self.openapi_types
|
57
57
|
{
|
58
|
-
:'base_path' => :'String',
|
59
|
-
:'repository' => :'String',
|
60
58
|
:'content_guard' => :'String',
|
59
|
+
:'repository' => :'String',
|
61
60
|
:'name' => :'String',
|
62
61
|
:'pulp_labels' => :'Object',
|
62
|
+
:'base_path' => :'String',
|
63
63
|
:'repository_version' => :'String',
|
64
64
|
:'private' => :'Boolean',
|
65
65
|
:'description' => :'String'
|
@@ -90,18 +90,14 @@ module PulpContainerClient
|
|
90
90
|
h[k.to_sym] = v
|
91
91
|
}
|
92
92
|
|
93
|
-
if attributes.key?(:'
|
94
|
-
self.
|
93
|
+
if attributes.key?(:'content_guard')
|
94
|
+
self.content_guard = attributes[:'content_guard']
|
95
95
|
end
|
96
96
|
|
97
97
|
if attributes.key?(:'repository')
|
98
98
|
self.repository = attributes[:'repository']
|
99
99
|
end
|
100
100
|
|
101
|
-
if attributes.key?(:'content_guard')
|
102
|
-
self.content_guard = attributes[:'content_guard']
|
103
|
-
end
|
104
|
-
|
105
101
|
if attributes.key?(:'name')
|
106
102
|
self.name = attributes[:'name']
|
107
103
|
end
|
@@ -110,6 +106,10 @@ module PulpContainerClient
|
|
110
106
|
self.pulp_labels = attributes[:'pulp_labels']
|
111
107
|
end
|
112
108
|
|
109
|
+
if attributes.key?(:'base_path')
|
110
|
+
self.base_path = attributes[:'base_path']
|
111
|
+
end
|
112
|
+
|
113
113
|
if attributes.key?(:'repository_version')
|
114
114
|
self.repository_version = attributes[:'repository_version']
|
115
115
|
end
|
@@ -141,11 +141,11 @@ module PulpContainerClient
|
|
141
141
|
def ==(o)
|
142
142
|
return true if self.equal?(o)
|
143
143
|
self.class == o.class &&
|
144
|
-
base_path == o.base_path &&
|
145
|
-
repository == o.repository &&
|
146
144
|
content_guard == o.content_guard &&
|
145
|
+
repository == o.repository &&
|
147
146
|
name == o.name &&
|
148
147
|
pulp_labels == o.pulp_labels &&
|
148
|
+
base_path == o.base_path &&
|
149
149
|
repository_version == o.repository_version &&
|
150
150
|
private == o.private &&
|
151
151
|
description == o.description
|
@@ -160,7 +160,7 @@ module PulpContainerClient
|
|
160
160
|
# Calculates hash code according to all attributes.
|
161
161
|
# @return [Integer] Hash code
|
162
162
|
def hash
|
163
|
-
[
|
163
|
+
[content_guard, repository, name, pulp_labels, base_path, repository_version, private, description].hash
|
164
164
|
end
|
165
165
|
|
166
166
|
# Builds the object from hash
|
@@ -16,7 +16,7 @@ module PulpContainerClient
|
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class PatchedcontainerContainerPushRepository
|
18
18
|
# Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
|
19
|
-
attr_accessor :
|
19
|
+
attr_accessor :retain_repo_versions
|
20
20
|
|
21
21
|
# A unique name for this repository.
|
22
22
|
attr_accessor :name
|
@@ -29,7 +29,7 @@ module PulpContainerClient
|
|
29
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
30
30
|
def self.attribute_map
|
31
31
|
{
|
32
|
-
:'
|
32
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
33
33
|
:'name' => :'name',
|
34
34
|
:'pulp_labels' => :'pulp_labels',
|
35
35
|
:'description' => :'description'
|
@@ -39,7 +39,7 @@ module PulpContainerClient
|
|
39
39
|
# Attribute type mapping.
|
40
40
|
def self.openapi_types
|
41
41
|
{
|
42
|
-
:'
|
42
|
+
:'retain_repo_versions' => :'Integer',
|
43
43
|
:'name' => :'String',
|
44
44
|
:'pulp_labels' => :'Object',
|
45
45
|
:'description' => :'String'
|
@@ -49,7 +49,7 @@ module PulpContainerClient
|
|
49
49
|
# List of attributes with nullable: true
|
50
50
|
def self.openapi_nullable
|
51
51
|
Set.new([
|
52
|
-
:'
|
52
|
+
:'retain_repo_versions',
|
53
53
|
:'description'
|
54
54
|
])
|
55
55
|
end
|
@@ -69,8 +69,8 @@ module PulpContainerClient
|
|
69
69
|
h[k.to_sym] = v
|
70
70
|
}
|
71
71
|
|
72
|
-
if attributes.key?(:'
|
73
|
-
self.
|
72
|
+
if attributes.key?(:'retain_repo_versions')
|
73
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
74
74
|
end
|
75
75
|
|
76
76
|
if attributes.key?(:'name')
|
@@ -90,8 +90,8 @@ module PulpContainerClient
|
|
90
90
|
# @return Array for valid properties with the reasons
|
91
91
|
def list_invalid_properties
|
92
92
|
invalid_properties = Array.new
|
93
|
-
if !@
|
94
|
-
invalid_properties.push('invalid value for "
|
93
|
+
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
94
|
+
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
95
95
|
end
|
96
96
|
|
97
97
|
invalid_properties
|
@@ -100,18 +100,18 @@ module PulpContainerClient
|
|
100
100
|
# Check to see if the all the properties in the model are valid
|
101
101
|
# @return true if the model is valid
|
102
102
|
def valid?
|
103
|
-
return false if !@
|
103
|
+
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
104
104
|
true
|
105
105
|
end
|
106
106
|
|
107
107
|
# Custom attribute writer method with validation
|
108
|
-
# @param [Object]
|
109
|
-
def
|
110
|
-
if !
|
111
|
-
fail ArgumentError, 'invalid value for "
|
108
|
+
# @param [Object] retain_repo_versions Value to be assigned
|
109
|
+
def retain_repo_versions=(retain_repo_versions)
|
110
|
+
if !retain_repo_versions.nil? && retain_repo_versions < 1
|
111
|
+
fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
|
112
112
|
end
|
113
113
|
|
114
|
-
@
|
114
|
+
@retain_repo_versions = retain_repo_versions
|
115
115
|
end
|
116
116
|
|
117
117
|
# Checks equality by comparing each attribute.
|
@@ -119,7 +119,7 @@ module PulpContainerClient
|
|
119
119
|
def ==(o)
|
120
120
|
return true if self.equal?(o)
|
121
121
|
self.class == o.class &&
|
122
|
-
|
122
|
+
retain_repo_versions == o.retain_repo_versions &&
|
123
123
|
name == o.name &&
|
124
124
|
pulp_labels == o.pulp_labels &&
|
125
125
|
description == o.description
|
@@ -134,7 +134,7 @@ module PulpContainerClient
|
|
134
134
|
# Calculates hash code according to all attributes.
|
135
135
|
# @return [Integer] Hash code
|
136
136
|
def hash
|
137
|
-
[
|
137
|
+
[retain_repo_versions, name, pulp_labels, description].hash
|
138
138
|
end
|
139
139
|
|
140
140
|
# Builds the object from hash
|
@@ -24,8 +24,9 @@ module PulpContainerClient
|
|
24
24
|
attr_accessor :description
|
25
25
|
|
26
26
|
# Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
|
27
|
-
attr_accessor :
|
27
|
+
attr_accessor :retain_repo_versions
|
28
28
|
|
29
|
+
# An optional remote to use by default when syncing.
|
29
30
|
attr_accessor :remote
|
30
31
|
|
31
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -34,7 +35,7 @@ module PulpContainerClient
|
|
34
35
|
:'pulp_labels' => :'pulp_labels',
|
35
36
|
:'name' => :'name',
|
36
37
|
:'description' => :'description',
|
37
|
-
:'
|
38
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
38
39
|
:'remote' => :'remote'
|
39
40
|
}
|
40
41
|
end
|
@@ -45,7 +46,7 @@ module PulpContainerClient
|
|
45
46
|
:'pulp_labels' => :'Object',
|
46
47
|
:'name' => :'String',
|
47
48
|
:'description' => :'String',
|
48
|
-
:'
|
49
|
+
:'retain_repo_versions' => :'Integer',
|
49
50
|
:'remote' => :'String'
|
50
51
|
}
|
51
52
|
end
|
@@ -54,7 +55,7 @@ module PulpContainerClient
|
|
54
55
|
def self.openapi_nullable
|
55
56
|
Set.new([
|
56
57
|
:'description',
|
57
|
-
:'
|
58
|
+
:'retain_repo_versions',
|
58
59
|
:'remote'
|
59
60
|
])
|
60
61
|
end
|
@@ -86,8 +87,8 @@ module PulpContainerClient
|
|
86
87
|
self.description = attributes[:'description']
|
87
88
|
end
|
88
89
|
|
89
|
-
if attributes.key?(:'
|
90
|
-
self.
|
90
|
+
if attributes.key?(:'retain_repo_versions')
|
91
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
91
92
|
end
|
92
93
|
|
93
94
|
if attributes.key?(:'remote')
|
@@ -99,8 +100,8 @@ module PulpContainerClient
|
|
99
100
|
# @return Array for valid properties with the reasons
|
100
101
|
def list_invalid_properties
|
101
102
|
invalid_properties = Array.new
|
102
|
-
if !@
|
103
|
-
invalid_properties.push('invalid value for "
|
103
|
+
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
104
|
+
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
104
105
|
end
|
105
106
|
|
106
107
|
invalid_properties
|
@@ -109,18 +110,18 @@ module PulpContainerClient
|
|
109
110
|
# Check to see if the all the properties in the model are valid
|
110
111
|
# @return true if the model is valid
|
111
112
|
def valid?
|
112
|
-
return false if !@
|
113
|
+
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
113
114
|
true
|
114
115
|
end
|
115
116
|
|
116
117
|
# Custom attribute writer method with validation
|
117
|
-
# @param [Object]
|
118
|
-
def
|
119
|
-
if !
|
120
|
-
fail ArgumentError, 'invalid value for "
|
118
|
+
# @param [Object] retain_repo_versions Value to be assigned
|
119
|
+
def retain_repo_versions=(retain_repo_versions)
|
120
|
+
if !retain_repo_versions.nil? && retain_repo_versions < 1
|
121
|
+
fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
|
121
122
|
end
|
122
123
|
|
123
|
-
@
|
124
|
+
@retain_repo_versions = retain_repo_versions
|
124
125
|
end
|
125
126
|
|
126
127
|
# Checks equality by comparing each attribute.
|
@@ -131,7 +132,7 @@ module PulpContainerClient
|
|
131
132
|
pulp_labels == o.pulp_labels &&
|
132
133
|
name == o.name &&
|
133
134
|
description == o.description &&
|
134
|
-
|
135
|
+
retain_repo_versions == o.retain_repo_versions &&
|
135
136
|
remote == o.remote
|
136
137
|
end
|
137
138
|
|
@@ -144,7 +145,7 @@ module PulpContainerClient
|
|
144
145
|
# Calculates hash code according to all attributes.
|
145
146
|
# @return [Integer] Hash code
|
146
147
|
def hash
|
147
|
-
[pulp_labels, name, description,
|
148
|
+
[pulp_labels, name, description, retain_repo_versions, remote].hash
|
148
149
|
end
|
149
150
|
|
150
151
|
# Builds the object from hash
|
data/spec/configuration_spec.rb
CHANGED
@@ -18,7 +18,7 @@ describe PulpContainerClient::Configuration do
|
|
18
18
|
before(:each) do
|
19
19
|
# uncomment below to setup host and base_path
|
20
20
|
# require 'URI'
|
21
|
-
# uri = URI.parse("
|
21
|
+
# uri = URI.parse("https://pulp")
|
22
22
|
# PulpContainerClient.configure do |c|
|
23
23
|
# c.host = uri.host
|
24
24
|
# c.base_path = uri.path
|
@@ -28,14 +28,14 @@ describe PulpContainerClient::Configuration do
|
|
28
28
|
describe '#base_url' do
|
29
29
|
it 'should have the default value' do
|
30
30
|
# uncomment below to test default value of the base path
|
31
|
-
# expect(config.base_url).to eq("
|
31
|
+
# expect(config.base_url).to eq("https://pulp")
|
32
32
|
end
|
33
33
|
|
34
34
|
it 'should remove trailing slashes' do
|
35
35
|
[nil, '', '/', '//'].each do |base_path|
|
36
36
|
config.base_path = base_path
|
37
37
|
# uncomment below to test trailing slashes
|
38
|
-
# expect(config.base_url).to eq("
|
38
|
+
# expect(config.base_url).to eq("https://pulp")
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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
|
@@ -44,31 +44,31 @@ describe 'ContainerContainerDistributionResponse' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' 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
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "repository"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "name"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "base_path"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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
|
@@ -44,19 +44,19 @@ describe 'ContainerContainerDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "name"' 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
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "pulp_labels"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "base_path"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -32,25 +32,25 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "versions_href"' 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 "latest_version_href"' 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 "pulp_created"' 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
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "retain_repo_versions"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "retain_repo_versions"' 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
|
@@ -74,7 +74,7 @@ describe 'ContainerContainerRepositoryResponse' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "retain_repo_versions"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
@@ -50,7 +50,7 @@ describe 'ContainerContainerRepository' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "retain_repo_versions"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,7 +32,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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
|
@@ -44,19 +44,19 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "name"' 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
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "pulp_labels"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "base_path"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -32,7 +32,7 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "retain_repo_versions"' 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
|
@@ -50,7 +50,7 @@ describe 'PatchedcontainerContainerRepository' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "retain_repo_versions"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
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.
|
4
|
+
version: 2.8.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: 2021-
|
11
|
+
date: 2021-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -280,62 +280,62 @@ specification_version: 4
|
|
280
280
|
summary: Pulp 3 API Ruby Gem
|
281
281
|
test_files:
|
282
282
|
- spec/api/repositories_container_push_api_spec.rb
|
283
|
-
- spec/api/
|
284
|
-
- spec/api/
|
283
|
+
- spec/api/repositories_container_push_versions_api_spec.rb
|
284
|
+
- spec/api/remotes_container_api_spec.rb
|
285
285
|
- spec/api/repositories_container_api_spec.rb
|
286
286
|
- spec/api/pulp_container_namespaces_api_spec.rb
|
287
287
|
- spec/api/content_blobs_api_spec.rb
|
288
|
-
- spec/api/remotes_container_api_spec.rb
|
289
|
-
- spec/api/token_api_spec.rb
|
290
|
-
- spec/api/repositories_container_push_versions_api_spec.rb
|
291
288
|
- spec/api/distributions_container_api_spec.rb
|
292
|
-
- spec/api/contentguards_content_redirect_api_spec.rb
|
293
289
|
- spec/api/repositories_container_versions_api_spec.rb
|
290
|
+
- spec/api/token_api_spec.rb
|
291
|
+
- spec/api/content_tags_api_spec.rb
|
292
|
+
- spec/api/content_manifests_api_spec.rb
|
293
|
+
- spec/api/contentguards_content_redirect_api_spec.rb
|
294
294
|
- spec/api_client_spec.rb
|
295
295
|
- spec/configuration_spec.rb
|
296
|
-
- spec/models/
|
296
|
+
- spec/models/remove_image_spec.rb
|
297
|
+
- spec/models/container_tag_response_spec.rb
|
297
298
|
- spec/models/un_tag_image_spec.rb
|
298
|
-
- spec/models/tag_copy_spec.rb
|
299
|
-
- spec/models/async_operation_response_spec.rb
|
300
|
-
- spec/models/oci_build_image_spec.rb
|
301
|
-
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
302
|
-
- spec/models/container_container_push_repository_response_spec.rb
|
303
|
-
- spec/models/content_summary_spec.rb
|
304
|
-
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
305
|
-
- spec/models/patchedcontainer_container_remote_spec.rb
|
306
|
-
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
307
|
-
- spec/models/container_container_remote_spec.rb
|
308
|
-
- spec/models/content_summary_response_spec.rb
|
309
|
-
- spec/models/container_container_namespace_spec.rb
|
310
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
311
|
-
- spec/models/patchedcontainer_container_repository_spec.rb
|
312
299
|
- spec/models/repository_version_spec.rb
|
313
|
-
- spec/models/
|
314
|
-
- spec/models/
|
300
|
+
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
301
|
+
- spec/models/patchedcontainer_container_push_repository_spec.rb
|
315
302
|
- spec/models/container_container_repository_response_spec.rb
|
316
|
-
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
317
|
-
- spec/models/policy_enum_spec.rb
|
318
|
-
- spec/models/container_container_namespace_response_spec.rb
|
319
|
-
- spec/models/container_blob_response_spec.rb
|
320
|
-
- spec/models/manifest_copy_spec.rb
|
321
|
-
- spec/models/container_container_remote_response_spec.rb
|
322
303
|
- spec/models/recursive_manage_spec.rb
|
323
|
-
- spec/models/
|
304
|
+
- spec/models/container_container_push_repository_response_spec.rb
|
324
305
|
- spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
|
325
|
-
- spec/models/
|
326
|
-
- spec/models/
|
327
|
-
- spec/models/
|
306
|
+
- spec/models/patchedcontainer_container_distribution_spec.rb
|
307
|
+
- spec/models/async_operation_response_spec.rb
|
308
|
+
- spec/models/container_container_namespace_spec.rb
|
309
|
+
- spec/models/container_container_namespace_response_spec.rb
|
310
|
+
- spec/models/content_summary_response_spec.rb
|
311
|
+
- spec/models/tag_copy_spec.rb
|
312
|
+
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
313
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
328
314
|
- spec/models/container_content_redirect_content_guard_spec.rb
|
315
|
+
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
329
316
|
- spec/models/container_container_distribution_response_spec.rb
|
330
|
-
- spec/models/container_container_distribution_spec.rb
|
331
|
-
- spec/models/patchedcontainer_container_push_repository_spec.rb
|
332
317
|
- spec/models/paginatedcontainer_blob_response_list_spec.rb
|
333
|
-
- spec/models/
|
318
|
+
- spec/models/repository_sync_url_spec.rb
|
319
|
+
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
320
|
+
- spec/models/container_manifest_response_spec.rb
|
321
|
+
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
322
|
+
- spec/models/patchedcontainer_container_remote_spec.rb
|
323
|
+
- spec/models/container_container_repository_spec.rb
|
324
|
+
- spec/models/container_container_distribution_spec.rb
|
325
|
+
- spec/models/patchedcontainer_container_repository_spec.rb
|
326
|
+
- spec/models/policy_enum_spec.rb
|
327
|
+
- spec/models/container_container_remote_spec.rb
|
328
|
+
- spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
|
329
|
+
- spec/models/media_types_enum_spec.rb
|
330
|
+
- spec/models/repository_version_response_spec.rb
|
331
|
+
- spec/models/oci_build_image_spec.rb
|
334
332
|
- spec/models/tag_image_spec.rb
|
335
|
-
- spec/models/
|
333
|
+
- spec/models/manifest_copy_spec.rb
|
334
|
+
- spec/models/container_container_remote_response_spec.rb
|
336
335
|
- spec/models/container_container_push_repository_spec.rb
|
337
|
-
- spec/models/
|
338
|
-
- spec/models/
|
336
|
+
- spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
|
337
|
+
- spec/models/container_blob_response_spec.rb
|
338
|
+
- spec/models/content_summary_spec.rb
|
339
339
|
- spec/models/container_content_redirect_content_guard_response_spec.rb
|
340
|
-
- spec/models/
|
340
|
+
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
341
341
|
- spec/spec_helper.rb
|