pulp_container_client 2.24.4 → 2.24.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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +8 -8
  4. data/docs/ContainerContainerDistributionResponse.md +16 -16
  5. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -16
  7. data/docs/ContainerContainerPushRepository.md +4 -4
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/DistributionsPullThroughApi.md +2 -2
  11. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  13. data/docs/PatchedcontainerContainerPushRepository.md +4 -4
  14. data/lib/pulp_container_client/models/container_container_distribution.rb +59 -59
  15. data/lib/pulp_container_client/models/container_container_distribution_response.rb +72 -72
  16. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +59 -59
  17. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +72 -72
  18. data/lib/pulp_container_client/models/container_container_push_repository.rb +34 -34
  19. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +59 -59
  20. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +54 -54
  21. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +54 -54
  22. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +34 -34
  23. data/lib/pulp_container_client/version.rb +1 -1
  24. data/spec/models/container_container_distribution_response_spec.rb +10 -10
  25. data/spec/models/container_container_distribution_spec.rb +5 -5
  26. data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
  27. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  28. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  29. data/spec/models/container_container_push_repository_spec.rb +4 -4
  30. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  31. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  32. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  33. metadata +2 -2
@@ -16,22 +16,22 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class ContainerContainerPullThroughDistribution
19
- # Whether this distribution should be shown in the content app.
20
- attr_accessor :hidden
19
+ # An optional content-guard. If none is specified, a default one will be used.
20
+ attr_accessor :content_guard
21
+
22
+ # A unique name. Ex, `rawhide` and `stable`.
23
+ attr_accessor :name
21
24
 
22
25
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
23
26
  attr_accessor :base_path
24
27
 
25
- attr_accessor :pulp_labels
26
-
27
28
  # The latest RepositoryVersion for this Repository will be served.
28
29
  attr_accessor :repository
29
30
 
30
- # A unique name. Ex, `rawhide` and `stable`.
31
- attr_accessor :name
31
+ # Whether this distribution should be shown in the content app.
32
+ attr_accessor :hidden
32
33
 
33
- # An optional content-guard. If none is specified, a default one will be used.
34
- attr_accessor :content_guard
34
+ attr_accessor :pulp_labels
35
35
 
36
36
  # Remote that can be used to fetch content when using pull-through caching.
37
37
  attr_accessor :remote
@@ -48,12 +48,12 @@ module PulpContainerClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'hidden' => :'hidden',
51
+ :'content_guard' => :'content_guard',
52
+ :'name' => :'name',
52
53
  :'base_path' => :'base_path',
53
- :'pulp_labels' => :'pulp_labels',
54
54
  :'repository' => :'repository',
55
- :'name' => :'name',
56
- :'content_guard' => :'content_guard',
55
+ :'hidden' => :'hidden',
56
+ :'pulp_labels' => :'pulp_labels',
57
57
  :'remote' => :'remote',
58
58
  :'distributions' => :'distributions',
59
59
  :'private' => :'private',
@@ -69,12 +69,12 @@ module PulpContainerClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
- :'hidden' => :'Boolean',
72
+ :'content_guard' => :'String',
73
+ :'name' => :'String',
73
74
  :'base_path' => :'String',
74
- :'pulp_labels' => :'Hash<String, String>',
75
75
  :'repository' => :'String',
76
- :'name' => :'String',
77
- :'content_guard' => :'String',
76
+ :'hidden' => :'Boolean',
77
+ :'pulp_labels' => :'Hash<String, String>',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,10 +105,14 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'hidden')
109
- self.hidden = attributes[:'hidden']
108
+ if attributes.key?(:'content_guard')
109
+ self.content_guard = attributes[:'content_guard']
110
+ end
111
+
112
+ if attributes.key?(:'name')
113
+ self.name = attributes[:'name']
110
114
  else
111
- self.hidden = false
115
+ self.name = nil
112
116
  end
113
117
 
114
118
  if attributes.key?(:'base_path')
@@ -117,24 +121,20 @@ module PulpContainerClient
117
121
  self.base_path = nil
118
122
  end
119
123
 
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
124
  if attributes.key?(:'repository')
127
125
  self.repository = attributes[:'repository']
128
126
  end
129
127
 
130
- if attributes.key?(:'name')
131
- self.name = attributes[:'name']
128
+ if attributes.key?(:'hidden')
129
+ self.hidden = attributes[:'hidden']
132
130
  else
133
- self.name = nil
131
+ self.hidden = false
134
132
  end
135
133
 
136
- if attributes.key?(:'content_guard')
137
- self.content_guard = attributes[:'content_guard']
134
+ if attributes.key?(:'pulp_labels')
135
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
136
+ self.pulp_labels = value
137
+ end
138
138
  end
139
139
 
140
140
  if attributes.key?(:'remote')
@@ -163,14 +163,6 @@ module PulpContainerClient
163
163
  def list_invalid_properties
164
164
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
165
165
  invalid_properties = Array.new
166
- if @base_path.nil?
167
- invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
168
- end
169
-
170
- if @base_path.to_s.length < 1
171
- invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
172
- end
173
-
174
166
  if @name.nil?
175
167
  invalid_properties.push('invalid value for "name", name cannot be nil.')
176
168
  end
@@ -179,6 +171,14 @@ module PulpContainerClient
179
171
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
180
172
  end
181
173
 
174
+ if @base_path.nil?
175
+ invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
176
+ end
177
+
178
+ if @base_path.to_s.length < 1
179
+ invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
180
+ end
181
+
182
182
  if @remote.nil?
183
183
  invalid_properties.push('invalid value for "remote", remote cannot be nil.')
184
184
  end
@@ -194,29 +194,15 @@ module PulpContainerClient
194
194
  # @return true if the model is valid
195
195
  def valid?
196
196
  warn '[DEPRECATED] the `valid?` method is obsolete'
197
- return false if @base_path.nil?
198
- return false if @base_path.to_s.length < 1
199
197
  return false if @name.nil?
200
198
  return false if @name.to_s.length < 1
199
+ return false if @base_path.nil?
200
+ return false if @base_path.to_s.length < 1
201
201
  return false if @remote.nil?
202
202
  return false if !@description.nil? && @description.to_s.length < 1
203
203
  true
204
204
  end
205
205
 
206
- # Custom attribute writer method with validation
207
- # @param [Object] base_path Value to be assigned
208
- def base_path=(base_path)
209
- if base_path.nil?
210
- fail ArgumentError, 'base_path cannot be nil'
211
- end
212
-
213
- if base_path.to_s.length < 1
214
- fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
215
- end
216
-
217
- @base_path = base_path
218
- end
219
-
220
206
  # Custom attribute writer method with validation
221
207
  # @param [Object] name Value to be assigned
222
208
  def name=(name)
@@ -231,6 +217,20 @@ module PulpContainerClient
231
217
  @name = name
232
218
  end
233
219
 
220
+ # Custom attribute writer method with validation
221
+ # @param [Object] base_path Value to be assigned
222
+ def base_path=(base_path)
223
+ if base_path.nil?
224
+ fail ArgumentError, 'base_path cannot be nil'
225
+ end
226
+
227
+ if base_path.to_s.length < 1
228
+ fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
229
+ end
230
+
231
+ @base_path = base_path
232
+ end
233
+
234
234
  # Custom attribute writer method with validation
235
235
  # @param [Object] description Value to be assigned
236
236
  def description=(description)
@@ -246,12 +246,12 @@ module PulpContainerClient
246
246
  def ==(o)
247
247
  return true if self.equal?(o)
248
248
  self.class == o.class &&
249
- hidden == o.hidden &&
249
+ content_guard == o.content_guard &&
250
+ name == o.name &&
250
251
  base_path == o.base_path &&
251
- pulp_labels == o.pulp_labels &&
252
252
  repository == o.repository &&
253
- name == o.name &&
254
- content_guard == o.content_guard &&
253
+ hidden == o.hidden &&
254
+ pulp_labels == o.pulp_labels &&
255
255
  remote == o.remote &&
256
256
  distributions == o.distributions &&
257
257
  private == o.private &&
@@ -267,7 +267,7 @@ module PulpContainerClient
267
267
  # Calculates hash code according to all attributes.
268
268
  # @return [Integer] Hash code
269
269
  def hash
270
- [hidden, base_path, pulp_labels, repository, name, content_guard, remote, distributions, private, description].hash
270
+ [content_guard, name, base_path, repository, hidden, pulp_labels, remote, distributions, private, description].hash
271
271
  end
272
272
 
273
273
  # Builds the object from hash
@@ -16,18 +16,14 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class ContainerContainerPullThroughDistributionResponse
19
- # Whether this distribution should be shown in the content app.
20
- attr_accessor :hidden
21
-
22
- # Timestamp of creation.
23
- attr_accessor :pulp_created
24
-
25
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
26
- attr_accessor :base_path
19
+ # An optional content-guard. If none is specified, a default one will be used.
20
+ attr_accessor :content_guard
27
21
 
28
- attr_accessor :pulp_href
22
+ # A unique name. Ex, `rawhide` and `stable`.
23
+ attr_accessor :name
29
24
 
30
- attr_accessor :pulp_labels
25
+ # Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
26
+ attr_accessor :no_content_change_since
31
27
 
32
28
  # The Pulp Resource Name (PRN).
33
29
  attr_accessor :prn
@@ -35,17 +31,21 @@ module PulpContainerClient
35
31
  # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
36
32
  attr_accessor :pulp_last_updated
37
33
 
38
- # Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
39
- attr_accessor :no_content_change_since
34
+ attr_accessor :pulp_href
35
+
36
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
37
+ attr_accessor :base_path
38
+
39
+ # Timestamp of creation.
40
+ attr_accessor :pulp_created
40
41
 
41
42
  # The latest RepositoryVersion for this Repository will be served.
42
43
  attr_accessor :repository
43
44
 
44
- # A unique name. Ex, `rawhide` and `stable`.
45
- attr_accessor :name
45
+ # Whether this distribution should be shown in the content app.
46
+ attr_accessor :hidden
46
47
 
47
- # An optional content-guard. If none is specified, a default one will be used.
48
- attr_accessor :content_guard
48
+ attr_accessor :pulp_labels
49
49
 
50
50
  # Remote that can be used to fetch content when using pull-through caching.
51
51
  attr_accessor :remote
@@ -65,17 +65,17 @@ module PulpContainerClient
65
65
  # Attribute mapping from ruby-style variable name to JSON key.
66
66
  def self.attribute_map
67
67
  {
68
- :'hidden' => :'hidden',
69
- :'pulp_created' => :'pulp_created',
70
- :'base_path' => :'base_path',
71
- :'pulp_href' => :'pulp_href',
72
- :'pulp_labels' => :'pulp_labels',
68
+ :'content_guard' => :'content_guard',
69
+ :'name' => :'name',
70
+ :'no_content_change_since' => :'no_content_change_since',
73
71
  :'prn' => :'prn',
74
72
  :'pulp_last_updated' => :'pulp_last_updated',
75
- :'no_content_change_since' => :'no_content_change_since',
73
+ :'pulp_href' => :'pulp_href',
74
+ :'base_path' => :'base_path',
75
+ :'pulp_created' => :'pulp_created',
76
76
  :'repository' => :'repository',
77
- :'name' => :'name',
78
- :'content_guard' => :'content_guard',
77
+ :'hidden' => :'hidden',
78
+ :'pulp_labels' => :'pulp_labels',
79
79
  :'remote' => :'remote',
80
80
  :'distributions' => :'distributions',
81
81
  :'namespace' => :'namespace',
@@ -92,17 +92,17 @@ module PulpContainerClient
92
92
  # Attribute type mapping.
93
93
  def self.openapi_types
94
94
  {
95
- :'hidden' => :'Boolean',
96
- :'pulp_created' => :'Time',
97
- :'base_path' => :'String',
98
- :'pulp_href' => :'String',
99
- :'pulp_labels' => :'Hash<String, String>',
95
+ :'content_guard' => :'String',
96
+ :'name' => :'String',
97
+ :'no_content_change_since' => :'String',
100
98
  :'prn' => :'String',
101
99
  :'pulp_last_updated' => :'Time',
102
- :'no_content_change_since' => :'String',
100
+ :'pulp_href' => :'String',
101
+ :'base_path' => :'String',
102
+ :'pulp_created' => :'Time',
103
103
  :'repository' => :'String',
104
- :'name' => :'String',
105
- :'content_guard' => :'String',
104
+ :'hidden' => :'Boolean',
105
+ :'pulp_labels' => :'Hash<String, String>',
106
106
  :'remote' => :'String',
107
107
  :'distributions' => :'Array<String>',
108
108
  :'namespace' => :'String',
@@ -134,30 +134,18 @@ module PulpContainerClient
134
134
  h[k.to_sym] = v
135
135
  }
136
136
 
137
- if attributes.key?(:'hidden')
138
- self.hidden = attributes[:'hidden']
139
- else
140
- self.hidden = false
141
- end
142
-
143
- if attributes.key?(:'pulp_created')
144
- self.pulp_created = attributes[:'pulp_created']
137
+ if attributes.key?(:'content_guard')
138
+ self.content_guard = attributes[:'content_guard']
145
139
  end
146
140
 
147
- if attributes.key?(:'base_path')
148
- self.base_path = attributes[:'base_path']
141
+ if attributes.key?(:'name')
142
+ self.name = attributes[:'name']
149
143
  else
150
- self.base_path = nil
151
- end
152
-
153
- if attributes.key?(:'pulp_href')
154
- self.pulp_href = attributes[:'pulp_href']
144
+ self.name = nil
155
145
  end
156
146
 
157
- if attributes.key?(:'pulp_labels')
158
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
159
- self.pulp_labels = value
160
- end
147
+ if attributes.key?(:'no_content_change_since')
148
+ self.no_content_change_since = attributes[:'no_content_change_since']
161
149
  end
162
150
 
163
151
  if attributes.key?(:'prn')
@@ -168,22 +156,34 @@ module PulpContainerClient
168
156
  self.pulp_last_updated = attributes[:'pulp_last_updated']
169
157
  end
170
158
 
171
- if attributes.key?(:'no_content_change_since')
172
- self.no_content_change_since = attributes[:'no_content_change_since']
159
+ if attributes.key?(:'pulp_href')
160
+ self.pulp_href = attributes[:'pulp_href']
161
+ end
162
+
163
+ if attributes.key?(:'base_path')
164
+ self.base_path = attributes[:'base_path']
165
+ else
166
+ self.base_path = nil
167
+ end
168
+
169
+ if attributes.key?(:'pulp_created')
170
+ self.pulp_created = attributes[:'pulp_created']
173
171
  end
174
172
 
175
173
  if attributes.key?(:'repository')
176
174
  self.repository = attributes[:'repository']
177
175
  end
178
176
 
179
- if attributes.key?(:'name')
180
- self.name = attributes[:'name']
177
+ if attributes.key?(:'hidden')
178
+ self.hidden = attributes[:'hidden']
181
179
  else
182
- self.name = nil
180
+ self.hidden = false
183
181
  end
184
182
 
185
- if attributes.key?(:'content_guard')
186
- self.content_guard = attributes[:'content_guard']
183
+ if attributes.key?(:'pulp_labels')
184
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
185
+ self.pulp_labels = value
186
+ end
187
187
  end
188
188
 
189
189
  if attributes.key?(:'remote')
@@ -216,14 +216,14 @@ module PulpContainerClient
216
216
  def list_invalid_properties
217
217
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
218
218
  invalid_properties = Array.new
219
- if @base_path.nil?
220
- invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
221
- end
222
-
223
219
  if @name.nil?
224
220
  invalid_properties.push('invalid value for "name", name cannot be nil.')
225
221
  end
226
222
 
223
+ if @base_path.nil?
224
+ invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
225
+ end
226
+
227
227
  if @remote.nil?
228
228
  invalid_properties.push('invalid value for "remote", remote cannot be nil.')
229
229
  end
@@ -235,8 +235,8 @@ module PulpContainerClient
235
235
  # @return true if the model is valid
236
236
  def valid?
237
237
  warn '[DEPRECATED] the `valid?` method is obsolete'
238
- return false if @base_path.nil?
239
238
  return false if @name.nil?
239
+ return false if @base_path.nil?
240
240
  return false if @remote.nil?
241
241
  true
242
242
  end
@@ -246,17 +246,17 @@ module PulpContainerClient
246
246
  def ==(o)
247
247
  return true if self.equal?(o)
248
248
  self.class == o.class &&
249
- hidden == o.hidden &&
250
- pulp_created == o.pulp_created &&
251
- base_path == o.base_path &&
252
- pulp_href == o.pulp_href &&
253
- pulp_labels == o.pulp_labels &&
249
+ content_guard == o.content_guard &&
250
+ name == o.name &&
251
+ no_content_change_since == o.no_content_change_since &&
254
252
  prn == o.prn &&
255
253
  pulp_last_updated == o.pulp_last_updated &&
256
- no_content_change_since == o.no_content_change_since &&
254
+ pulp_href == o.pulp_href &&
255
+ base_path == o.base_path &&
256
+ pulp_created == o.pulp_created &&
257
257
  repository == o.repository &&
258
- name == o.name &&
259
- content_guard == o.content_guard &&
258
+ hidden == o.hidden &&
259
+ pulp_labels == o.pulp_labels &&
260
260
  remote == o.remote &&
261
261
  distributions == o.distributions &&
262
262
  namespace == o.namespace &&
@@ -273,7 +273,7 @@ module PulpContainerClient
273
273
  # Calculates hash code according to all attributes.
274
274
  # @return [Integer] Hash code
275
275
  def hash
276
- [hidden, pulp_created, base_path, pulp_href, pulp_labels, prn, pulp_last_updated, no_content_change_since, repository, name, content_guard, remote, distributions, namespace, private, description].hash
276
+ [content_guard, name, no_content_change_since, prn, pulp_last_updated, pulp_href, base_path, pulp_created, repository, hidden, pulp_labels, remote, distributions, namespace, private, description].hash
277
277
  end
278
278
 
279
279
  # Builds the object from hash
@@ -16,27 +16,27 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepository
19
- # A reference to an associated signing service.
20
- attr_accessor :manifest_signing_service
21
-
22
19
  # A unique name for this repository.
23
20
  attr_accessor :name
24
21
 
25
- # Retain X versions of the repository. Default is null which retains all versions.
26
- attr_accessor :retain_repo_versions
22
+ # A reference to an associated signing service.
23
+ attr_accessor :manifest_signing_service
27
24
 
28
25
  # An optional description.
29
26
  attr_accessor :description
30
27
 
28
+ # Retain X versions of the repository. Default is null which retains all versions.
29
+ attr_accessor :retain_repo_versions
30
+
31
31
  attr_accessor :pulp_labels
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'manifest_signing_service' => :'manifest_signing_service',
37
36
  :'name' => :'name',
38
- :'retain_repo_versions' => :'retain_repo_versions',
37
+ :'manifest_signing_service' => :'manifest_signing_service',
39
38
  :'description' => :'description',
39
+ :'retain_repo_versions' => :'retain_repo_versions',
40
40
  :'pulp_labels' => :'pulp_labels'
41
41
  }
42
42
  end
@@ -49,10 +49,10 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
- :'manifest_signing_service' => :'String',
53
52
  :'name' => :'String',
54
- :'retain_repo_versions' => :'Integer',
53
+ :'manifest_signing_service' => :'String',
55
54
  :'description' => :'String',
55
+ :'retain_repo_versions' => :'Integer',
56
56
  :'pulp_labels' => :'Hash<String, String>'
57
57
  }
58
58
  end
@@ -61,8 +61,8 @@ module PulpContainerClient
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
63
  :'manifest_signing_service',
64
- :'retain_repo_versions',
65
64
  :'description',
65
+ :'retain_repo_versions',
66
66
  ])
67
67
  end
68
68
 
@@ -81,24 +81,24 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'manifest_signing_service')
85
- self.manifest_signing_service = attributes[:'manifest_signing_service']
86
- end
87
-
88
84
  if attributes.key?(:'name')
89
85
  self.name = attributes[:'name']
90
86
  else
91
87
  self.name = nil
92
88
  end
93
89
 
94
- if attributes.key?(:'retain_repo_versions')
95
- self.retain_repo_versions = attributes[:'retain_repo_versions']
90
+ if attributes.key?(:'manifest_signing_service')
91
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
96
92
  end
97
93
 
98
94
  if attributes.key?(:'description')
99
95
  self.description = attributes[:'description']
100
96
  end
101
97
 
98
+ if attributes.key?(:'retain_repo_versions')
99
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
100
+ end
101
+
102
102
  if attributes.key?(:'pulp_labels')
103
103
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
104
104
  self.pulp_labels = value
@@ -119,14 +119,14 @@ module PulpContainerClient
119
119
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
120
120
  end
121
121
 
122
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
123
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
124
- end
125
-
126
122
  if !@description.nil? && @description.to_s.length < 1
127
123
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
128
124
  end
129
125
 
126
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
128
+ end
129
+
130
130
  invalid_properties
131
131
  end
132
132
 
@@ -136,8 +136,8 @@ module PulpContainerClient
136
136
  warn '[DEPRECATED] the `valid?` method is obsolete'
137
137
  return false if @name.nil?
138
138
  return false if @name.to_s.length < 1
139
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
140
139
  return false if !@description.nil? && @description.to_s.length < 1
140
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
141
141
  true
142
142
  end
143
143
 
@@ -155,16 +155,6 @@ module PulpContainerClient
155
155
  @name = name
156
156
  end
157
157
 
158
- # Custom attribute writer method with validation
159
- # @param [Object] retain_repo_versions Value to be assigned
160
- def retain_repo_versions=(retain_repo_versions)
161
- if !retain_repo_versions.nil? && retain_repo_versions < 1
162
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
163
- end
164
-
165
- @retain_repo_versions = retain_repo_versions
166
- end
167
-
168
158
  # Custom attribute writer method with validation
169
159
  # @param [Object] description Value to be assigned
170
160
  def description=(description)
@@ -175,15 +165,25 @@ module PulpContainerClient
175
165
  @description = description
176
166
  end
177
167
 
168
+ # Custom attribute writer method with validation
169
+ # @param [Object] retain_repo_versions Value to be assigned
170
+ def retain_repo_versions=(retain_repo_versions)
171
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
172
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
173
+ end
174
+
175
+ @retain_repo_versions = retain_repo_versions
176
+ end
177
+
178
178
  # Checks equality by comparing each attribute.
179
179
  # @param [Object] Object to be compared
180
180
  def ==(o)
181
181
  return true if self.equal?(o)
182
182
  self.class == o.class &&
183
- manifest_signing_service == o.manifest_signing_service &&
184
183
  name == o.name &&
185
- retain_repo_versions == o.retain_repo_versions &&
184
+ manifest_signing_service == o.manifest_signing_service &&
186
185
  description == o.description &&
186
+ retain_repo_versions == o.retain_repo_versions &&
187
187
  pulp_labels == o.pulp_labels
188
188
  end
189
189
 
@@ -196,7 +196,7 @@ module PulpContainerClient
196
196
  # Calculates hash code according to all attributes.
197
197
  # @return [Integer] Hash code
198
198
  def hash
199
- [manifest_signing_service, name, retain_repo_versions, description, pulp_labels].hash
199
+ [name, manifest_signing_service, description, retain_repo_versions, pulp_labels].hash
200
200
  end
201
201
 
202
202
  # Builds the object from hash