pulp_container_client 2.15.0.dev1670382628 → 2.15.0.dev1671073819
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.
Potentially problematic release.
This version of pulp_container_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +8 -8
- data/docs/ContainerContainerPushRepository.md +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/ContainerContainerRemote.md +1 -1
- data/docs/ContainerContainerRemoteResponse.md +1 -1
- data/docs/ContainerContainerRepository.md +1 -1
- data/docs/ContainerContainerRepositoryResponse.md +1 -1
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/docs/PatchedcontainerContainerRemote.md +1 -1
- data/docs/PatchedcontainerContainerRepository.md +1 -1
- data/lib/pulp_container_client/api/distributions_container_api.rb +1 -1
- data/lib/pulp_container_client/api/remotes_container_api.rb +1 -1
- data/lib/pulp_container_client/api/repositories_container_api.rb +1 -1
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +1 -1
- data/lib/pulp_container_client/models/container_container_distribution.rb +46 -44
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +39 -37
- data/lib/pulp_container_client/models/container_container_push_repository.rb +37 -35
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +48 -46
- data/lib/pulp_container_client/models/container_container_remote.rb +4 -2
- data/lib/pulp_container_client/models/container_container_remote_response.rb +4 -2
- data/lib/pulp_container_client/models/container_container_repository.rb +4 -2
- data/lib/pulp_container_client/models/container_container_repository_response.rb +4 -2
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +37 -35
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +37 -35
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +4 -2
- data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +4 -2
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +7 -7
- data/spec/models/container_container_push_repository_spec.rb +2 -2
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +2 -2
- metadata +2 -2
@@ -15,20 +15,20 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class PatchedcontainerContainerDistribution
|
18
|
-
# The
|
19
|
-
attr_accessor :
|
18
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
19
|
+
attr_accessor :base_path
|
20
20
|
|
21
21
|
# A unique name. Ex, `rawhide` and `stable`.
|
22
22
|
attr_accessor :name
|
23
23
|
|
24
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
25
|
-
attr_accessor :base_path
|
26
|
-
|
27
24
|
attr_accessor :pulp_labels
|
28
25
|
|
29
26
|
# An optional content-guard. If none is specified, a default one will be used.
|
30
27
|
attr_accessor :content_guard
|
31
28
|
|
29
|
+
# The latest RepositoryVersion for this Repository will be served.
|
30
|
+
attr_accessor :repository
|
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
|
-
:'repository' => :'repository',
|
45
|
-
:'name' => :'name',
|
46
44
|
:'base_path' => :'base_path',
|
45
|
+
:'name' => :'name',
|
47
46
|
:'pulp_labels' => :'pulp_labels',
|
48
47
|
:'content_guard' => :'content_guard',
|
48
|
+
:'repository' => :'repository',
|
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
|
-
:'repository' => :'String',
|
59
|
-
:'name' => :'String',
|
60
58
|
:'base_path' => :'String',
|
61
|
-
:'
|
59
|
+
:'name' => :'String',
|
60
|
+
:'pulp_labels' => :'Hash<String, String>',
|
62
61
|
:'content_guard' => :'String',
|
62
|
+
:'repository' => :'String',
|
63
63
|
:'repository_version' => :'String',
|
64
64
|
:'private' => :'Boolean',
|
65
65
|
:'description' => :'String'
|
@@ -90,26 +90,28 @@ module PulpContainerClient
|
|
90
90
|
h[k.to_sym] = v
|
91
91
|
}
|
92
92
|
|
93
|
-
if attributes.key?(:'
|
94
|
-
self.
|
93
|
+
if attributes.key?(:'base_path')
|
94
|
+
self.base_path = attributes[:'base_path']
|
95
95
|
end
|
96
96
|
|
97
97
|
if attributes.key?(:'name')
|
98
98
|
self.name = attributes[:'name']
|
99
99
|
end
|
100
100
|
|
101
|
-
if attributes.key?(:'base_path')
|
102
|
-
self.base_path = attributes[:'base_path']
|
103
|
-
end
|
104
|
-
|
105
101
|
if attributes.key?(:'pulp_labels')
|
106
|
-
|
102
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
103
|
+
self.pulp_labels = value
|
104
|
+
end
|
107
105
|
end
|
108
106
|
|
109
107
|
if attributes.key?(:'content_guard')
|
110
108
|
self.content_guard = attributes[:'content_guard']
|
111
109
|
end
|
112
110
|
|
111
|
+
if attributes.key?(:'repository')
|
112
|
+
self.repository = attributes[:'repository']
|
113
|
+
end
|
114
|
+
|
113
115
|
if attributes.key?(:'repository_version')
|
114
116
|
self.repository_version = attributes[:'repository_version']
|
115
117
|
end
|
@@ -127,14 +129,14 @@ module PulpContainerClient
|
|
127
129
|
# @return Array for valid properties with the reasons
|
128
130
|
def list_invalid_properties
|
129
131
|
invalid_properties = Array.new
|
130
|
-
if !@name.nil? && @name.to_s.length < 1
|
131
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
132
|
-
end
|
133
|
-
|
134
132
|
if !@base_path.nil? && @base_path.to_s.length < 1
|
135
133
|
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
136
134
|
end
|
137
135
|
|
136
|
+
if !@name.nil? && @name.to_s.length < 1
|
137
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
138
|
+
end
|
139
|
+
|
138
140
|
if !@description.nil? && @description.to_s.length < 1
|
139
141
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
140
142
|
end
|
@@ -145,22 +147,12 @@ module PulpContainerClient
|
|
145
147
|
# Check to see if the all the properties in the model are valid
|
146
148
|
# @return true if the model is valid
|
147
149
|
def valid?
|
148
|
-
return false if !@name.nil? && @name.to_s.length < 1
|
149
150
|
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
151
|
+
return false if !@name.nil? && @name.to_s.length < 1
|
150
152
|
return false if !@description.nil? && @description.to_s.length < 1
|
151
153
|
true
|
152
154
|
end
|
153
155
|
|
154
|
-
# Custom attribute writer method with validation
|
155
|
-
# @param [Object] name Value to be assigned
|
156
|
-
def name=(name)
|
157
|
-
if !name.nil? && name.to_s.length < 1
|
158
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
159
|
-
end
|
160
|
-
|
161
|
-
@name = name
|
162
|
-
end
|
163
|
-
|
164
156
|
# Custom attribute writer method with validation
|
165
157
|
# @param [Object] base_path Value to be assigned
|
166
158
|
def base_path=(base_path)
|
@@ -171,6 +163,16 @@ module PulpContainerClient
|
|
171
163
|
@base_path = base_path
|
172
164
|
end
|
173
165
|
|
166
|
+
# Custom attribute writer method with validation
|
167
|
+
# @param [Object] name Value to be assigned
|
168
|
+
def name=(name)
|
169
|
+
if !name.nil? && name.to_s.length < 1
|
170
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
171
|
+
end
|
172
|
+
|
173
|
+
@name = name
|
174
|
+
end
|
175
|
+
|
174
176
|
# Custom attribute writer method with validation
|
175
177
|
# @param [Object] description Value to be assigned
|
176
178
|
def description=(description)
|
@@ -186,11 +188,11 @@ module PulpContainerClient
|
|
186
188
|
def ==(o)
|
187
189
|
return true if self.equal?(o)
|
188
190
|
self.class == o.class &&
|
189
|
-
repository == o.repository &&
|
190
|
-
name == o.name &&
|
191
191
|
base_path == o.base_path &&
|
192
|
+
name == o.name &&
|
192
193
|
pulp_labels == o.pulp_labels &&
|
193
194
|
content_guard == o.content_guard &&
|
195
|
+
repository == o.repository &&
|
194
196
|
repository_version == o.repository_version &&
|
195
197
|
private == o.private &&
|
196
198
|
description == o.description
|
@@ -205,7 +207,7 @@ module PulpContainerClient
|
|
205
207
|
# Calculates hash code according to all attributes.
|
206
208
|
# @return [Integer] Hash code
|
207
209
|
def hash
|
208
|
-
[
|
210
|
+
[base_path, name, pulp_labels, content_guard, repository, repository_version, private, description].hash
|
209
211
|
end
|
210
212
|
|
211
213
|
# Builds the object from hash
|
@@ -15,8 +15,8 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class PatchedcontainerContainerPushRepository
|
18
|
-
#
|
19
|
-
attr_accessor :
|
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 :retain_repo_versions
|
20
20
|
|
21
21
|
# A unique name for this repository.
|
22
22
|
attr_accessor :name
|
@@ -26,37 +26,37 @@ module PulpContainerClient
|
|
26
26
|
# A reference to an associated signing service.
|
27
27
|
attr_accessor :manifest_signing_service
|
28
28
|
|
29
|
-
#
|
30
|
-
attr_accessor :
|
29
|
+
# An optional description.
|
30
|
+
attr_accessor :description
|
31
31
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
|
-
:'
|
35
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
36
36
|
:'name' => :'name',
|
37
37
|
:'pulp_labels' => :'pulp_labels',
|
38
38
|
:'manifest_signing_service' => :'manifest_signing_service',
|
39
|
-
:'
|
39
|
+
:'description' => :'description'
|
40
40
|
}
|
41
41
|
end
|
42
42
|
|
43
43
|
# Attribute type mapping.
|
44
44
|
def self.openapi_types
|
45
45
|
{
|
46
|
-
:'
|
46
|
+
:'retain_repo_versions' => :'Integer',
|
47
47
|
:'name' => :'String',
|
48
|
-
:'pulp_labels' => :'
|
48
|
+
:'pulp_labels' => :'Hash<String, String>',
|
49
49
|
:'manifest_signing_service' => :'String',
|
50
|
-
:'
|
50
|
+
:'description' => :'String'
|
51
51
|
}
|
52
52
|
end
|
53
53
|
|
54
54
|
# List of attributes with nullable: true
|
55
55
|
def self.openapi_nullable
|
56
56
|
Set.new([
|
57
|
-
:'
|
57
|
+
:'retain_repo_versions',
|
58
58
|
:'manifest_signing_service',
|
59
|
-
:'
|
59
|
+
:'description'
|
60
60
|
])
|
61
61
|
end
|
62
62
|
|
@@ -75,8 +75,8 @@ module PulpContainerClient
|
|
75
75
|
h[k.to_sym] = v
|
76
76
|
}
|
77
77
|
|
78
|
-
if attributes.key?(:'
|
79
|
-
self.
|
78
|
+
if attributes.key?(:'retain_repo_versions')
|
79
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
80
80
|
end
|
81
81
|
|
82
82
|
if attributes.key?(:'name')
|
@@ -84,15 +84,17 @@ module PulpContainerClient
|
|
84
84
|
end
|
85
85
|
|
86
86
|
if attributes.key?(:'pulp_labels')
|
87
|
-
|
87
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
88
|
+
self.pulp_labels = value
|
89
|
+
end
|
88
90
|
end
|
89
91
|
|
90
92
|
if attributes.key?(:'manifest_signing_service')
|
91
93
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
92
94
|
end
|
93
95
|
|
94
|
-
if attributes.key?(:'
|
95
|
-
self.
|
96
|
+
if attributes.key?(:'description')
|
97
|
+
self.description = attributes[:'description']
|
96
98
|
end
|
97
99
|
end
|
98
100
|
|
@@ -100,16 +102,16 @@ module PulpContainerClient
|
|
100
102
|
# @return Array for valid properties with the reasons
|
101
103
|
def list_invalid_properties
|
102
104
|
invalid_properties = Array.new
|
103
|
-
if !@
|
104
|
-
invalid_properties.push('invalid value for "
|
105
|
+
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
106
|
+
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
105
107
|
end
|
106
108
|
|
107
109
|
if !@name.nil? && @name.to_s.length < 1
|
108
110
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
109
111
|
end
|
110
112
|
|
111
|
-
if !@
|
112
|
-
invalid_properties.push('invalid value for "
|
113
|
+
if !@description.nil? && @description.to_s.length < 1
|
114
|
+
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
113
115
|
end
|
114
116
|
|
115
117
|
invalid_properties
|
@@ -118,20 +120,20 @@ module PulpContainerClient
|
|
118
120
|
# Check to see if the all the properties in the model are valid
|
119
121
|
# @return true if the model is valid
|
120
122
|
def valid?
|
121
|
-
return false if !@description.nil? && @description.to_s.length < 1
|
122
|
-
return false if !@name.nil? && @name.to_s.length < 1
|
123
123
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
124
|
+
return false if !@name.nil? && @name.to_s.length < 1
|
125
|
+
return false if !@description.nil? && @description.to_s.length < 1
|
124
126
|
true
|
125
127
|
end
|
126
128
|
|
127
129
|
# Custom attribute writer method with validation
|
128
|
-
# @param [Object]
|
129
|
-
def
|
130
|
-
if !
|
131
|
-
fail ArgumentError, 'invalid value for "
|
130
|
+
# @param [Object] retain_repo_versions Value to be assigned
|
131
|
+
def retain_repo_versions=(retain_repo_versions)
|
132
|
+
if !retain_repo_versions.nil? && retain_repo_versions < 1
|
133
|
+
fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
|
132
134
|
end
|
133
135
|
|
134
|
-
@
|
136
|
+
@retain_repo_versions = retain_repo_versions
|
135
137
|
end
|
136
138
|
|
137
139
|
# Custom attribute writer method with validation
|
@@ -145,13 +147,13 @@ module PulpContainerClient
|
|
145
147
|
end
|
146
148
|
|
147
149
|
# Custom attribute writer method with validation
|
148
|
-
# @param [Object]
|
149
|
-
def
|
150
|
-
if !
|
151
|
-
fail ArgumentError, 'invalid value for "
|
150
|
+
# @param [Object] description Value to be assigned
|
151
|
+
def description=(description)
|
152
|
+
if !description.nil? && description.to_s.length < 1
|
153
|
+
fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
|
152
154
|
end
|
153
155
|
|
154
|
-
@
|
156
|
+
@description = description
|
155
157
|
end
|
156
158
|
|
157
159
|
# Checks equality by comparing each attribute.
|
@@ -159,11 +161,11 @@ module PulpContainerClient
|
|
159
161
|
def ==(o)
|
160
162
|
return true if self.equal?(o)
|
161
163
|
self.class == o.class &&
|
162
|
-
|
164
|
+
retain_repo_versions == o.retain_repo_versions &&
|
163
165
|
name == o.name &&
|
164
166
|
pulp_labels == o.pulp_labels &&
|
165
167
|
manifest_signing_service == o.manifest_signing_service &&
|
166
|
-
|
168
|
+
description == o.description
|
167
169
|
end
|
168
170
|
|
169
171
|
# @see the `==` method
|
@@ -175,7 +177,7 @@ module PulpContainerClient
|
|
175
177
|
# Calculates hash code according to all attributes.
|
176
178
|
# @return [Integer] Hash code
|
177
179
|
def hash
|
178
|
-
[
|
180
|
+
[retain_repo_versions, name, pulp_labels, manifest_signing_service, description].hash
|
179
181
|
end
|
180
182
|
|
181
183
|
# Builds the object from hash
|
@@ -134,7 +134,7 @@ module PulpContainerClient
|
|
134
134
|
:'proxy_password' => :'String',
|
135
135
|
:'username' => :'String',
|
136
136
|
:'password' => :'String',
|
137
|
-
:'pulp_labels' => :'
|
137
|
+
:'pulp_labels' => :'Hash<String, String>',
|
138
138
|
:'download_concurrency' => :'Integer',
|
139
139
|
:'max_retries' => :'Integer',
|
140
140
|
:'policy' => :'PolicyEnum',
|
@@ -234,7 +234,9 @@ module PulpContainerClient
|
|
234
234
|
end
|
235
235
|
|
236
236
|
if attributes.key?(:'pulp_labels')
|
237
|
-
|
237
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
238
|
+
self.pulp_labels = value
|
239
|
+
end
|
238
240
|
end
|
239
241
|
|
240
242
|
if attributes.key?(:'download_concurrency')
|
@@ -47,7 +47,7 @@ module PulpContainerClient
|
|
47
47
|
# Attribute type mapping.
|
48
48
|
def self.openapi_types
|
49
49
|
{
|
50
|
-
:'pulp_labels' => :'
|
50
|
+
:'pulp_labels' => :'Hash<String, String>',
|
51
51
|
:'name' => :'String',
|
52
52
|
:'description' => :'String',
|
53
53
|
:'retain_repo_versions' => :'Integer',
|
@@ -82,7 +82,9 @@ module PulpContainerClient
|
|
82
82
|
}
|
83
83
|
|
84
84
|
if attributes.key?(:'pulp_labels')
|
85
|
-
|
85
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
86
|
+
self.pulp_labels = value
|
87
|
+
end
|
86
88
|
end
|
87
89
|
|
88
90
|
if attributes.key?(:'name')
|
@@ -32,43 +32,43 @@ 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 "base_path"' 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 "pulp_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 "name"' 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 "pulp_labels"' 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 "content_guard"' 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 "repository"' 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 "base_path"' 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 "pulp_labels"' 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 "content_guard"' 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 "repository"' 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,37 +32,37 @@ 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_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 "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
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "pulp_created"' 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 "name"' 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
|
@@ -80,7 +80,7 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "description"' do
|
84
84
|
it 'should work' do
|
85
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
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
|
@@ -56,7 +56,7 @@ describe 'ContainerContainerPushRepository' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "description"' 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 '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 "base_path"' 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 "pulp_labels"' 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 "content_guard"' 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 "repository"' 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
|
@@ -56,7 +56,7 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "description"' 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
|
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.0.
|
4
|
+
version: 2.15.0.dev1671073819
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|