pulp_container_client 2.24.0 → 2.24.2

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