pulp_container_client 2.22.3 → 2.22.5
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 +4 -4
- data/docs/ContainerContainerDistribution.md +8 -8
- data/docs/ContainerContainerDistributionResponse.md +14 -14
- data/docs/ContainerContainerPullThroughDistribution.md +8 -8
- data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
- data/docs/ContainerContainerPushRepository.md +6 -6
- data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
- data/docs/PatchedcontainerContainerDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPushRepository.md +6 -6
- data/lib/pulp_container_client/models/container_container_distribution.rb +62 -62
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +65 -65
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +62 -62
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +65 -65
- data/lib/pulp_container_client/models/container_container_push_repository.rb +42 -42
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +64 -64
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +53 -53
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +53 -53
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +42 -42
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +9 -9
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- metadata +2 -2
|
@@ -15,8 +15,13 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# A serializer for ContainerDistribution.
|
|
17
17
|
class PatchedcontainerContainerDistribution
|
|
18
|
-
#
|
|
19
|
-
attr_accessor :
|
|
18
|
+
# Whether this distribution should be shown in the content app.
|
|
19
|
+
attr_accessor :hidden
|
|
20
|
+
|
|
21
|
+
attr_accessor :pulp_labels
|
|
22
|
+
|
|
23
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
24
|
+
attr_accessor :repository
|
|
20
25
|
|
|
21
26
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
27
|
attr_accessor :content_guard
|
|
@@ -24,13 +29,8 @@ module PulpContainerClient
|
|
|
24
29
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
25
30
|
attr_accessor :name
|
|
26
31
|
|
|
27
|
-
#
|
|
28
|
-
attr_accessor :
|
|
29
|
-
|
|
30
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
31
|
-
attr_accessor :repository
|
|
32
|
-
|
|
33
|
-
attr_accessor :pulp_labels
|
|
32
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
33
|
+
attr_accessor :base_path
|
|
34
34
|
|
|
35
35
|
# RepositoryVersion to be served
|
|
36
36
|
attr_accessor :repository_version
|
|
@@ -44,12 +44,12 @@ module PulpContainerClient
|
|
|
44
44
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
45
45
|
def self.attribute_map
|
|
46
46
|
{
|
|
47
|
-
:'base_path' => :'base_path',
|
|
48
|
-
:'content_guard' => :'content_guard',
|
|
49
|
-
:'name' => :'name',
|
|
50
47
|
:'hidden' => :'hidden',
|
|
51
|
-
:'repository' => :'repository',
|
|
52
48
|
:'pulp_labels' => :'pulp_labels',
|
|
49
|
+
:'repository' => :'repository',
|
|
50
|
+
:'content_guard' => :'content_guard',
|
|
51
|
+
:'name' => :'name',
|
|
52
|
+
:'base_path' => :'base_path',
|
|
53
53
|
:'repository_version' => :'repository_version',
|
|
54
54
|
:'private' => :'private',
|
|
55
55
|
:'description' => :'description'
|
|
@@ -59,12 +59,12 @@ module PulpContainerClient
|
|
|
59
59
|
# Attribute type mapping.
|
|
60
60
|
def self.openapi_types
|
|
61
61
|
{
|
|
62
|
-
:'base_path' => :'String',
|
|
63
|
-
:'content_guard' => :'String',
|
|
64
|
-
:'name' => :'String',
|
|
65
62
|
:'hidden' => :'Boolean',
|
|
66
|
-
:'repository' => :'String',
|
|
67
63
|
:'pulp_labels' => :'Hash<String, String>',
|
|
64
|
+
:'repository' => :'String',
|
|
65
|
+
:'content_guard' => :'String',
|
|
66
|
+
:'name' => :'String',
|
|
67
|
+
:'base_path' => :'String',
|
|
68
68
|
:'repository_version' => :'String',
|
|
69
69
|
:'private' => :'Boolean',
|
|
70
70
|
:'description' => :'String'
|
|
@@ -95,34 +95,34 @@ module PulpContainerClient
|
|
|
95
95
|
h[k.to_sym] = v
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
if attributes.key?(:'base_path')
|
|
99
|
-
self.base_path = attributes[:'base_path']
|
|
100
|
-
end
|
|
101
|
-
|
|
102
|
-
if attributes.key?(:'content_guard')
|
|
103
|
-
self.content_guard = attributes[:'content_guard']
|
|
104
|
-
end
|
|
105
|
-
|
|
106
|
-
if attributes.key?(:'name')
|
|
107
|
-
self.name = attributes[:'name']
|
|
108
|
-
end
|
|
109
|
-
|
|
110
98
|
if attributes.key?(:'hidden')
|
|
111
99
|
self.hidden = attributes[:'hidden']
|
|
112
100
|
else
|
|
113
101
|
self.hidden = false
|
|
114
102
|
end
|
|
115
103
|
|
|
116
|
-
if attributes.key?(:'repository')
|
|
117
|
-
self.repository = attributes[:'repository']
|
|
118
|
-
end
|
|
119
|
-
|
|
120
104
|
if attributes.key?(:'pulp_labels')
|
|
121
105
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
122
106
|
self.pulp_labels = value
|
|
123
107
|
end
|
|
124
108
|
end
|
|
125
109
|
|
|
110
|
+
if attributes.key?(:'repository')
|
|
111
|
+
self.repository = attributes[:'repository']
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
if attributes.key?(:'content_guard')
|
|
115
|
+
self.content_guard = attributes[:'content_guard']
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
if attributes.key?(:'name')
|
|
119
|
+
self.name = attributes[:'name']
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
if attributes.key?(:'base_path')
|
|
123
|
+
self.base_path = attributes[:'base_path']
|
|
124
|
+
end
|
|
125
|
+
|
|
126
126
|
if attributes.key?(:'repository_version')
|
|
127
127
|
self.repository_version = attributes[:'repository_version']
|
|
128
128
|
end
|
|
@@ -140,14 +140,14 @@ module PulpContainerClient
|
|
|
140
140
|
# @return Array for valid properties with the reasons
|
|
141
141
|
def list_invalid_properties
|
|
142
142
|
invalid_properties = Array.new
|
|
143
|
-
if !@base_path.nil? && @base_path.to_s.length < 1
|
|
144
|
-
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
145
|
-
end
|
|
146
|
-
|
|
147
143
|
if !@name.nil? && @name.to_s.length < 1
|
|
148
144
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
149
145
|
end
|
|
150
146
|
|
|
147
|
+
if !@base_path.nil? && @base_path.to_s.length < 1
|
|
148
|
+
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
149
|
+
end
|
|
150
|
+
|
|
151
151
|
if !@description.nil? && @description.to_s.length < 1
|
|
152
152
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
153
153
|
end
|
|
@@ -158,22 +158,12 @@ module PulpContainerClient
|
|
|
158
158
|
# Check to see if the all the properties in the model are valid
|
|
159
159
|
# @return true if the model is valid
|
|
160
160
|
def valid?
|
|
161
|
-
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
|
162
161
|
return false if !@name.nil? && @name.to_s.length < 1
|
|
162
|
+
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
|
163
163
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
164
164
|
true
|
|
165
165
|
end
|
|
166
166
|
|
|
167
|
-
# Custom attribute writer method with validation
|
|
168
|
-
# @param [Object] base_path Value to be assigned
|
|
169
|
-
def base_path=(base_path)
|
|
170
|
-
if !base_path.nil? && base_path.to_s.length < 1
|
|
171
|
-
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
172
|
-
end
|
|
173
|
-
|
|
174
|
-
@base_path = base_path
|
|
175
|
-
end
|
|
176
|
-
|
|
177
167
|
# Custom attribute writer method with validation
|
|
178
168
|
# @param [Object] name Value to be assigned
|
|
179
169
|
def name=(name)
|
|
@@ -184,6 +174,16 @@ module PulpContainerClient
|
|
|
184
174
|
@name = name
|
|
185
175
|
end
|
|
186
176
|
|
|
177
|
+
# Custom attribute writer method with validation
|
|
178
|
+
# @param [Object] base_path Value to be assigned
|
|
179
|
+
def base_path=(base_path)
|
|
180
|
+
if !base_path.nil? && base_path.to_s.length < 1
|
|
181
|
+
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
@base_path = base_path
|
|
185
|
+
end
|
|
186
|
+
|
|
187
187
|
# Custom attribute writer method with validation
|
|
188
188
|
# @param [Object] description Value to be assigned
|
|
189
189
|
def description=(description)
|
|
@@ -199,12 +199,12 @@ module PulpContainerClient
|
|
|
199
199
|
def ==(o)
|
|
200
200
|
return true if self.equal?(o)
|
|
201
201
|
self.class == o.class &&
|
|
202
|
-
base_path == o.base_path &&
|
|
203
|
-
content_guard == o.content_guard &&
|
|
204
|
-
name == o.name &&
|
|
205
202
|
hidden == o.hidden &&
|
|
206
|
-
repository == o.repository &&
|
|
207
203
|
pulp_labels == o.pulp_labels &&
|
|
204
|
+
repository == o.repository &&
|
|
205
|
+
content_guard == o.content_guard &&
|
|
206
|
+
name == o.name &&
|
|
207
|
+
base_path == o.base_path &&
|
|
208
208
|
repository_version == o.repository_version &&
|
|
209
209
|
private == o.private &&
|
|
210
210
|
description == o.description
|
|
@@ -219,7 +219,7 @@ module PulpContainerClient
|
|
|
219
219
|
# Calculates hash code according to all attributes.
|
|
220
220
|
# @return [Integer] Hash code
|
|
221
221
|
def hash
|
|
222
|
-
[
|
|
222
|
+
[hidden, pulp_labels, repository, content_guard, name, base_path, repository_version, private, description].hash
|
|
223
223
|
end
|
|
224
224
|
|
|
225
225
|
# Builds the object from hash
|
data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb
CHANGED
|
@@ -15,8 +15,13 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# A serializer for a specialized pull-through distribution referencing sub-distributions.
|
|
17
17
|
class PatchedcontainerContainerPullThroughDistribution
|
|
18
|
-
#
|
|
19
|
-
attr_accessor :
|
|
18
|
+
# Whether this distribution should be shown in the content app.
|
|
19
|
+
attr_accessor :hidden
|
|
20
|
+
|
|
21
|
+
attr_accessor :pulp_labels
|
|
22
|
+
|
|
23
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
24
|
+
attr_accessor :repository
|
|
20
25
|
|
|
21
26
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
27
|
attr_accessor :content_guard
|
|
@@ -24,13 +29,8 @@ module PulpContainerClient
|
|
|
24
29
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
25
30
|
attr_accessor :name
|
|
26
31
|
|
|
27
|
-
#
|
|
28
|
-
attr_accessor :
|
|
29
|
-
|
|
30
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
31
|
-
attr_accessor :repository
|
|
32
|
-
|
|
33
|
-
attr_accessor :pulp_labels
|
|
32
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
33
|
+
attr_accessor :base_path
|
|
34
34
|
|
|
35
35
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
36
36
|
attr_accessor :remote
|
|
@@ -47,12 +47,12 @@ module PulpContainerClient
|
|
|
47
47
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
48
48
|
def self.attribute_map
|
|
49
49
|
{
|
|
50
|
-
:'base_path' => :'base_path',
|
|
51
|
-
:'content_guard' => :'content_guard',
|
|
52
|
-
:'name' => :'name',
|
|
53
50
|
:'hidden' => :'hidden',
|
|
54
|
-
:'repository' => :'repository',
|
|
55
51
|
:'pulp_labels' => :'pulp_labels',
|
|
52
|
+
:'repository' => :'repository',
|
|
53
|
+
:'content_guard' => :'content_guard',
|
|
54
|
+
:'name' => :'name',
|
|
55
|
+
:'base_path' => :'base_path',
|
|
56
56
|
:'remote' => :'remote',
|
|
57
57
|
:'distributions' => :'distributions',
|
|
58
58
|
:'private' => :'private',
|
|
@@ -63,12 +63,12 @@ module PulpContainerClient
|
|
|
63
63
|
# Attribute type mapping.
|
|
64
64
|
def self.openapi_types
|
|
65
65
|
{
|
|
66
|
-
:'base_path' => :'String',
|
|
67
|
-
:'content_guard' => :'String',
|
|
68
|
-
:'name' => :'String',
|
|
69
66
|
:'hidden' => :'Boolean',
|
|
70
|
-
:'repository' => :'String',
|
|
71
67
|
:'pulp_labels' => :'Hash<String, String>',
|
|
68
|
+
:'repository' => :'String',
|
|
69
|
+
:'content_guard' => :'String',
|
|
70
|
+
:'name' => :'String',
|
|
71
|
+
:'base_path' => :'String',
|
|
72
72
|
:'remote' => :'String',
|
|
73
73
|
:'distributions' => :'Array<String>',
|
|
74
74
|
:'private' => :'Boolean',
|
|
@@ -99,34 +99,34 @@ module PulpContainerClient
|
|
|
99
99
|
h[k.to_sym] = v
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
if attributes.key?(:'base_path')
|
|
103
|
-
self.base_path = attributes[:'base_path']
|
|
104
|
-
end
|
|
105
|
-
|
|
106
|
-
if attributes.key?(:'content_guard')
|
|
107
|
-
self.content_guard = attributes[:'content_guard']
|
|
108
|
-
end
|
|
109
|
-
|
|
110
|
-
if attributes.key?(:'name')
|
|
111
|
-
self.name = attributes[:'name']
|
|
112
|
-
end
|
|
113
|
-
|
|
114
102
|
if attributes.key?(:'hidden')
|
|
115
103
|
self.hidden = attributes[:'hidden']
|
|
116
104
|
else
|
|
117
105
|
self.hidden = false
|
|
118
106
|
end
|
|
119
107
|
|
|
120
|
-
if attributes.key?(:'repository')
|
|
121
|
-
self.repository = attributes[:'repository']
|
|
122
|
-
end
|
|
123
|
-
|
|
124
108
|
if attributes.key?(:'pulp_labels')
|
|
125
109
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
126
110
|
self.pulp_labels = value
|
|
127
111
|
end
|
|
128
112
|
end
|
|
129
113
|
|
|
114
|
+
if attributes.key?(:'repository')
|
|
115
|
+
self.repository = attributes[:'repository']
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
if attributes.key?(:'content_guard')
|
|
119
|
+
self.content_guard = attributes[:'content_guard']
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
if attributes.key?(:'name')
|
|
123
|
+
self.name = attributes[:'name']
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
if attributes.key?(:'base_path')
|
|
127
|
+
self.base_path = attributes[:'base_path']
|
|
128
|
+
end
|
|
129
|
+
|
|
130
130
|
if attributes.key?(:'remote')
|
|
131
131
|
self.remote = attributes[:'remote']
|
|
132
132
|
end
|
|
@@ -150,14 +150,14 @@ module PulpContainerClient
|
|
|
150
150
|
# @return Array for valid properties with the reasons
|
|
151
151
|
def list_invalid_properties
|
|
152
152
|
invalid_properties = Array.new
|
|
153
|
-
if !@base_path.nil? && @base_path.to_s.length < 1
|
|
154
|
-
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
155
|
-
end
|
|
156
|
-
|
|
157
153
|
if !@name.nil? && @name.to_s.length < 1
|
|
158
154
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
159
155
|
end
|
|
160
156
|
|
|
157
|
+
if !@base_path.nil? && @base_path.to_s.length < 1
|
|
158
|
+
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
159
|
+
end
|
|
160
|
+
|
|
161
161
|
if !@description.nil? && @description.to_s.length < 1
|
|
162
162
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
163
163
|
end
|
|
@@ -168,22 +168,12 @@ module PulpContainerClient
|
|
|
168
168
|
# Check to see if the all the properties in the model are valid
|
|
169
169
|
# @return true if the model is valid
|
|
170
170
|
def valid?
|
|
171
|
-
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
|
172
171
|
return false if !@name.nil? && @name.to_s.length < 1
|
|
172
|
+
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
|
173
173
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
174
174
|
true
|
|
175
175
|
end
|
|
176
176
|
|
|
177
|
-
# Custom attribute writer method with validation
|
|
178
|
-
# @param [Object] base_path Value to be assigned
|
|
179
|
-
def base_path=(base_path)
|
|
180
|
-
if !base_path.nil? && base_path.to_s.length < 1
|
|
181
|
-
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
182
|
-
end
|
|
183
|
-
|
|
184
|
-
@base_path = base_path
|
|
185
|
-
end
|
|
186
|
-
|
|
187
177
|
# Custom attribute writer method with validation
|
|
188
178
|
# @param [Object] name Value to be assigned
|
|
189
179
|
def name=(name)
|
|
@@ -194,6 +184,16 @@ module PulpContainerClient
|
|
|
194
184
|
@name = name
|
|
195
185
|
end
|
|
196
186
|
|
|
187
|
+
# Custom attribute writer method with validation
|
|
188
|
+
# @param [Object] base_path Value to be assigned
|
|
189
|
+
def base_path=(base_path)
|
|
190
|
+
if !base_path.nil? && base_path.to_s.length < 1
|
|
191
|
+
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
@base_path = base_path
|
|
195
|
+
end
|
|
196
|
+
|
|
197
197
|
# Custom attribute writer method with validation
|
|
198
198
|
# @param [Object] description Value to be assigned
|
|
199
199
|
def description=(description)
|
|
@@ -209,12 +209,12 @@ module PulpContainerClient
|
|
|
209
209
|
def ==(o)
|
|
210
210
|
return true if self.equal?(o)
|
|
211
211
|
self.class == o.class &&
|
|
212
|
-
base_path == o.base_path &&
|
|
213
|
-
content_guard == o.content_guard &&
|
|
214
|
-
name == o.name &&
|
|
215
212
|
hidden == o.hidden &&
|
|
216
|
-
repository == o.repository &&
|
|
217
213
|
pulp_labels == o.pulp_labels &&
|
|
214
|
+
repository == o.repository &&
|
|
215
|
+
content_guard == o.content_guard &&
|
|
216
|
+
name == o.name &&
|
|
217
|
+
base_path == o.base_path &&
|
|
218
218
|
remote == o.remote &&
|
|
219
219
|
distributions == o.distributions &&
|
|
220
220
|
private == o.private &&
|
|
@@ -230,7 +230,7 @@ module PulpContainerClient
|
|
|
230
230
|
# Calculates hash code according to all attributes.
|
|
231
231
|
# @return [Integer] Hash code
|
|
232
232
|
def hash
|
|
233
|
-
[
|
|
233
|
+
[hidden, pulp_labels, repository, content_guard, name, base_path, remote, distributions, private, description].hash
|
|
234
234
|
end
|
|
235
235
|
|
|
236
236
|
# Builds the object from hash
|
|
@@ -15,16 +15,16 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# Serializer for Container Push Repositories.
|
|
17
17
|
class PatchedcontainerContainerPushRepository
|
|
18
|
-
|
|
19
|
-
attr_accessor :description
|
|
20
|
-
|
|
21
|
-
# A reference to an associated signing service.
|
|
22
|
-
attr_accessor :manifest_signing_service
|
|
18
|
+
attr_accessor :pulp_labels
|
|
23
19
|
|
|
24
20
|
# A unique name for this repository.
|
|
25
21
|
attr_accessor :name
|
|
26
22
|
|
|
27
|
-
|
|
23
|
+
# A reference to an associated signing service.
|
|
24
|
+
attr_accessor :manifest_signing_service
|
|
25
|
+
|
|
26
|
+
# An optional description.
|
|
27
|
+
attr_accessor :description
|
|
28
28
|
|
|
29
29
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
30
30
|
attr_accessor :retain_repo_versions
|
|
@@ -32,10 +32,10 @@ module PulpContainerClient
|
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
33
33
|
def self.attribute_map
|
|
34
34
|
{
|
|
35
|
-
:'description' => :'description',
|
|
36
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
|
37
|
-
:'name' => :'name',
|
|
38
35
|
:'pulp_labels' => :'pulp_labels',
|
|
36
|
+
:'name' => :'name',
|
|
37
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
|
38
|
+
:'description' => :'description',
|
|
39
39
|
:'retain_repo_versions' => :'retain_repo_versions'
|
|
40
40
|
}
|
|
41
41
|
end
|
|
@@ -43,10 +43,10 @@ module PulpContainerClient
|
|
|
43
43
|
# Attribute type mapping.
|
|
44
44
|
def self.openapi_types
|
|
45
45
|
{
|
|
46
|
-
:'description' => :'String',
|
|
47
|
-
:'manifest_signing_service' => :'String',
|
|
48
|
-
:'name' => :'String',
|
|
49
46
|
:'pulp_labels' => :'Hash<String, String>',
|
|
47
|
+
:'name' => :'String',
|
|
48
|
+
:'manifest_signing_service' => :'String',
|
|
49
|
+
:'description' => :'String',
|
|
50
50
|
:'retain_repo_versions' => :'Integer'
|
|
51
51
|
}
|
|
52
52
|
end
|
|
@@ -54,8 +54,8 @@ module PulpContainerClient
|
|
|
54
54
|
# List of attributes with nullable: true
|
|
55
55
|
def self.openapi_nullable
|
|
56
56
|
Set.new([
|
|
57
|
-
:'description',
|
|
58
57
|
:'manifest_signing_service',
|
|
58
|
+
:'description',
|
|
59
59
|
:'retain_repo_versions'
|
|
60
60
|
])
|
|
61
61
|
end
|
|
@@ -75,22 +75,22 @@ module PulpContainerClient
|
|
|
75
75
|
h[k.to_sym] = v
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
if attributes.key?(:'
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
if attributes.key?(:'manifest_signing_service')
|
|
83
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
78
|
+
if attributes.key?(:'pulp_labels')
|
|
79
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
80
|
+
self.pulp_labels = value
|
|
81
|
+
end
|
|
84
82
|
end
|
|
85
83
|
|
|
86
84
|
if attributes.key?(:'name')
|
|
87
85
|
self.name = attributes[:'name']
|
|
88
86
|
end
|
|
89
87
|
|
|
90
|
-
if attributes.key?(:'
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
88
|
+
if attributes.key?(:'manifest_signing_service')
|
|
89
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
if attributes.key?(:'description')
|
|
93
|
+
self.description = attributes[:'description']
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
if attributes.key?(:'retain_repo_versions')
|
|
@@ -102,14 +102,14 @@ module PulpContainerClient
|
|
|
102
102
|
# @return Array for valid properties with the reasons
|
|
103
103
|
def list_invalid_properties
|
|
104
104
|
invalid_properties = Array.new
|
|
105
|
-
if !@description.nil? && @description.to_s.length < 1
|
|
106
|
-
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
107
|
-
end
|
|
108
|
-
|
|
109
105
|
if !@name.nil? && @name.to_s.length < 1
|
|
110
106
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
111
107
|
end
|
|
112
108
|
|
|
109
|
+
if !@description.nil? && @description.to_s.length < 1
|
|
110
|
+
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
111
|
+
end
|
|
112
|
+
|
|
113
113
|
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
114
114
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
115
115
|
end
|
|
@@ -120,22 +120,12 @@ module PulpContainerClient
|
|
|
120
120
|
# Check to see if the all the properties in the model are valid
|
|
121
121
|
# @return true if the model is valid
|
|
122
122
|
def valid?
|
|
123
|
-
return false if !@description.nil? && @description.to_s.length < 1
|
|
124
123
|
return false if !@name.nil? && @name.to_s.length < 1
|
|
124
|
+
return false if !@description.nil? && @description.to_s.length < 1
|
|
125
125
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
126
126
|
true
|
|
127
127
|
end
|
|
128
128
|
|
|
129
|
-
# Custom attribute writer method with validation
|
|
130
|
-
# @param [Object] description Value to be assigned
|
|
131
|
-
def description=(description)
|
|
132
|
-
if !description.nil? && description.to_s.length < 1
|
|
133
|
-
fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
|
|
134
|
-
end
|
|
135
|
-
|
|
136
|
-
@description = description
|
|
137
|
-
end
|
|
138
|
-
|
|
139
129
|
# Custom attribute writer method with validation
|
|
140
130
|
# @param [Object] name Value to be assigned
|
|
141
131
|
def name=(name)
|
|
@@ -146,6 +136,16 @@ module PulpContainerClient
|
|
|
146
136
|
@name = name
|
|
147
137
|
end
|
|
148
138
|
|
|
139
|
+
# Custom attribute writer method with validation
|
|
140
|
+
# @param [Object] description Value to be assigned
|
|
141
|
+
def description=(description)
|
|
142
|
+
if !description.nil? && description.to_s.length < 1
|
|
143
|
+
fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
@description = description
|
|
147
|
+
end
|
|
148
|
+
|
|
149
149
|
# Custom attribute writer method with validation
|
|
150
150
|
# @param [Object] retain_repo_versions Value to be assigned
|
|
151
151
|
def retain_repo_versions=(retain_repo_versions)
|
|
@@ -161,10 +161,10 @@ module PulpContainerClient
|
|
|
161
161
|
def ==(o)
|
|
162
162
|
return true if self.equal?(o)
|
|
163
163
|
self.class == o.class &&
|
|
164
|
-
description == o.description &&
|
|
165
|
-
manifest_signing_service == o.manifest_signing_service &&
|
|
166
|
-
name == o.name &&
|
|
167
164
|
pulp_labels == o.pulp_labels &&
|
|
165
|
+
name == o.name &&
|
|
166
|
+
manifest_signing_service == o.manifest_signing_service &&
|
|
167
|
+
description == o.description &&
|
|
168
168
|
retain_repo_versions == o.retain_repo_versions
|
|
169
169
|
end
|
|
170
170
|
|
|
@@ -177,7 +177,7 @@ module PulpContainerClient
|
|
|
177
177
|
# Calculates hash code according to all attributes.
|
|
178
178
|
# @return [Integer] Hash code
|
|
179
179
|
def hash
|
|
180
|
-
[
|
|
180
|
+
[pulp_labels, name, manifest_signing_service, description, retain_repo_versions].hash
|
|
181
181
|
end
|
|
182
182
|
|
|
183
183
|
# Builds the object from hash
|
|
@@ -32,25 +32,25 @@ 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 "hidden"' 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_labels"' 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 "repository"' 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
|
|
@@ -68,31 +68,31 @@ describe 'ContainerContainerDistributionResponse' do
|
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
-
describe 'test attribute "
|
|
71
|
+
describe 'test attribute "no_content_change_since"' 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
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
-
describe 'test attribute "
|
|
77
|
+
describe 'test attribute "pulp_href"' 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
|
|
81
81
|
end
|
|
82
82
|
|
|
83
|
-
describe 'test attribute "
|
|
83
|
+
describe 'test attribute "pulp_last_updated"' 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
|
|
87
87
|
end
|
|
88
88
|
|
|
89
|
-
describe 'test attribute "
|
|
89
|
+
describe 'test attribute "base_path"' do
|
|
90
90
|
it 'should work' do
|
|
91
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
92
|
end
|
|
93
93
|
end
|
|
94
94
|
|
|
95
|
-
describe 'test attribute "
|
|
95
|
+
describe 'test attribute "prn"' do
|
|
96
96
|
it 'should work' do
|
|
97
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
98
|
end
|