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