pulp_container_client 2.24.3 → 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 +6 -6
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +11 -11
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/DistributionsPullThroughApi.md +2 -2
  11. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  13. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  14. data/lib/pulp_container_client/models/container_container_distribution.rb +52 -52
  15. data/lib/pulp_container_client/models/container_container_distribution_response.rb +53 -53
  16. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +52 -52
  17. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +53 -53
  18. data/lib/pulp_container_client/models/container_container_push_repository.rb +40 -40
  19. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +52 -52
  20. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +45 -45
  21. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +45 -45
  22. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +40 -40
  23. data/lib/pulp_container_client/version.rb +1 -1
  24. data/spec/models/container_container_distribution_response_spec.rb +8 -8
  25. data/spec/models/container_container_distribution_spec.rb +5 -5
  26. data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
  27. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  28. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  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,36 +16,36 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for ContainerDistribution.
18
18
  class ContainerContainerDistributionResponse
19
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
20
- attr_accessor :base_path
19
+ # An optional content-guard. If none is specified, a default one will be used.
20
+ attr_accessor :content_guard
21
21
 
22
22
  # A unique name. Ex, `rawhide` and `stable`.
23
23
  attr_accessor :name
24
24
 
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
27
+
25
28
  # The Pulp Resource Name (PRN).
26
29
  attr_accessor :prn
27
30
 
28
- attr_accessor :pulp_labels
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.
32
+ attr_accessor :pulp_last_updated
29
33
 
30
- # An optional content-guard. If none is specified, a default one will be used.
31
- attr_accessor :content_guard
34
+ attr_accessor :pulp_href
32
35
 
33
- # 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
- attr_accessor :no_content_change_since
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
35
38
 
36
39
  # Timestamp of creation.
37
40
  attr_accessor :pulp_created
38
41
 
39
- # 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.
40
- attr_accessor :pulp_last_updated
41
-
42
42
  # The latest RepositoryVersion for this Repository will be served.
43
43
  attr_accessor :repository
44
44
 
45
45
  # Whether this distribution should be shown in the content app.
46
46
  attr_accessor :hidden
47
47
 
48
- attr_accessor :pulp_href
48
+ attr_accessor :pulp_labels
49
49
 
50
50
  # RepositoryVersion to be served
51
51
  attr_accessor :repository_version
@@ -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
- :'base_path' => :'base_path',
72
- :'name' => :'name',
73
- :'prn' => :'prn',
74
- :'pulp_labels' => :'pulp_labels',
75
71
  :'content_guard' => :'content_guard',
72
+ :'name' => :'name',
76
73
  :'no_content_change_since' => :'no_content_change_since',
77
- :'pulp_created' => :'pulp_created',
74
+ :'prn' => :'prn',
78
75
  :'pulp_last_updated' => :'pulp_last_updated',
76
+ :'pulp_href' => :'pulp_href',
77
+ :'base_path' => :'base_path',
78
+ :'pulp_created' => :'pulp_created',
79
79
  :'repository' => :'repository',
80
80
  :'hidden' => :'hidden',
81
- :'pulp_href' => :'pulp_href',
81
+ :'pulp_labels' => :'pulp_labels',
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
- :'base_path' => :'String',
100
- :'name' => :'String',
101
- :'prn' => :'String',
102
- :'pulp_labels' => :'Hash<String, String>',
103
99
  :'content_guard' => :'String',
100
+ :'name' => :'String',
104
101
  :'no_content_change_since' => :'String',
105
- :'pulp_created' => :'Time',
102
+ :'prn' => :'String',
106
103
  :'pulp_last_updated' => :'Time',
104
+ :'pulp_href' => :'String',
105
+ :'base_path' => :'String',
106
+ :'pulp_created' => :'Time',
107
107
  :'repository' => :'String',
108
108
  :'hidden' => :'Boolean',
109
- :'pulp_href' => :'String',
109
+ :'pulp_labels' => :'Hash<String, String>',
110
110
  :'repository_version' => :'String',
111
111
  :'registry_path' => :'String',
112
112
  :'remote' => :'String',
@@ -140,10 +140,8 @@ module PulpContainerClient
140
140
  h[k.to_sym] = v
141
141
  }
142
142
 
143
- if attributes.key?(:'base_path')
144
- self.base_path = attributes[:'base_path']
145
- else
146
- self.base_path = nil
143
+ if attributes.key?(:'content_guard')
144
+ self.content_guard = attributes[:'content_guard']
147
145
  end
148
146
 
149
147
  if attributes.key?(:'name')
@@ -152,32 +150,32 @@ module PulpContainerClient
152
150
  self.name = nil
153
151
  end
154
152
 
153
+ if attributes.key?(:'no_content_change_since')
154
+ self.no_content_change_since = attributes[:'no_content_change_since']
155
+ end
156
+
155
157
  if attributes.key?(:'prn')
156
158
  self.prn = attributes[:'prn']
157
159
  end
158
160
 
159
- if attributes.key?(:'pulp_labels')
160
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
161
- self.pulp_labels = value
162
- end
161
+ if attributes.key?(:'pulp_last_updated')
162
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
163
163
  end
164
164
 
165
- if attributes.key?(:'content_guard')
166
- self.content_guard = attributes[:'content_guard']
165
+ if attributes.key?(:'pulp_href')
166
+ self.pulp_href = attributes[:'pulp_href']
167
167
  end
168
168
 
169
- if attributes.key?(:'no_content_change_since')
170
- self.no_content_change_since = attributes[:'no_content_change_since']
169
+ if attributes.key?(:'base_path')
170
+ self.base_path = attributes[:'base_path']
171
+ else
172
+ self.base_path = nil
171
173
  end
172
174
 
173
175
  if attributes.key?(:'pulp_created')
174
176
  self.pulp_created = attributes[:'pulp_created']
175
177
  end
176
178
 
177
- if attributes.key?(:'pulp_last_updated')
178
- self.pulp_last_updated = attributes[:'pulp_last_updated']
179
- end
180
-
181
179
  if attributes.key?(:'repository')
182
180
  self.repository = attributes[:'repository']
183
181
  end
@@ -188,8 +186,10 @@ module PulpContainerClient
188
186
  self.hidden = false
189
187
  end
190
188
 
191
- if attributes.key?(:'pulp_href')
192
- self.pulp_href = attributes[:'pulp_href']
189
+ if attributes.key?(:'pulp_labels')
190
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
191
+ self.pulp_labels = value
192
+ end
193
193
  end
194
194
 
195
195
  if attributes.key?(:'repository_version')
@@ -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 @base_path.nil?
226
- invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
227
- end
228
-
229
225
  if @name.nil?
230
226
  invalid_properties.push('invalid value for "name", name cannot be nil.')
231
227
  end
232
228
 
229
+ if @base_path.nil?
230
+ invalid_properties.push('invalid value for "base_path", base_path 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 @base_path.nil?
241
240
  return false if @name.nil?
241
+ return false if @base_path.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
- base_path == o.base_path &&
251
- name == o.name &&
252
- prn == o.prn &&
253
- pulp_labels == o.pulp_labels &&
254
250
  content_guard == o.content_guard &&
251
+ name == o.name &&
255
252
  no_content_change_since == o.no_content_change_since &&
256
- pulp_created == o.pulp_created &&
253
+ prn == o.prn &&
257
254
  pulp_last_updated == o.pulp_last_updated &&
255
+ pulp_href == o.pulp_href &&
256
+ base_path == o.base_path &&
257
+ pulp_created == o.pulp_created &&
258
258
  repository == o.repository &&
259
259
  hidden == o.hidden &&
260
- pulp_href == o.pulp_href &&
260
+ pulp_labels == o.pulp_labels &&
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
- [base_path, name, prn, pulp_labels, content_guard, no_content_change_since, pulp_created, pulp_last_updated, repository, hidden, pulp_href, repository_version, registry_path, remote, namespace, private, description].hash
278
+ [content_guard, name, no_content_change_since, prn, pulp_last_updated, pulp_href, base_path, pulp_created, repository, hidden, pulp_labels, repository_version, registry_path, remote, namespace, private, description].hash
279
279
  end
280
280
 
281
281
  # Builds the object from hash
@@ -16,16 +16,14 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class ContainerContainerPullThroughDistribution
19
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
20
- attr_accessor :base_path
19
+ # An optional content-guard. If none is specified, a default one will be used.
20
+ attr_accessor :content_guard
21
21
 
22
22
  # A unique name. Ex, `rawhide` and `stable`.
23
23
  attr_accessor :name
24
24
 
25
- attr_accessor :pulp_labels
26
-
27
- # An optional content-guard. If none is specified, a default one will be used.
28
- attr_accessor :content_guard
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
29
27
 
30
28
  # The latest RepositoryVersion for this Repository will be served.
31
29
  attr_accessor :repository
@@ -33,6 +31,8 @@ module PulpContainerClient
33
31
  # Whether this distribution should be shown in the content app.
34
32
  attr_accessor :hidden
35
33
 
34
+ attr_accessor :pulp_labels
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
- :'base_path' => :'base_path',
52
- :'name' => :'name',
53
- :'pulp_labels' => :'pulp_labels',
54
51
  :'content_guard' => :'content_guard',
52
+ :'name' => :'name',
53
+ :'base_path' => :'base_path',
55
54
  :'repository' => :'repository',
56
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
- :'base_path' => :'String',
73
- :'name' => :'String',
74
- :'pulp_labels' => :'Hash<String, String>',
75
72
  :'content_guard' => :'String',
73
+ :'name' => :'String',
74
+ :'base_path' => :'String',
76
75
  :'repository' => :'String',
77
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,8 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'base_path')
109
- self.base_path = attributes[:'base_path']
110
- else
111
- self.base_path = nil
108
+ if attributes.key?(:'content_guard')
109
+ self.content_guard = attributes[:'content_guard']
112
110
  end
113
111
 
114
112
  if attributes.key?(:'name')
@@ -117,14 +115,10 @@ module PulpContainerClient
117
115
  self.name = nil
118
116
  end
119
117
 
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?(:'content_guard')
127
- self.content_guard = attributes[:'content_guard']
118
+ if attributes.key?(:'base_path')
119
+ self.base_path = attributes[:'base_path']
120
+ else
121
+ self.base_path = nil
128
122
  end
129
123
 
130
124
  if attributes.key?(:'repository')
@@ -137,6 +131,12 @@ module PulpContainerClient
137
131
  self.hidden = false
138
132
  end
139
133
 
134
+ if attributes.key?(:'pulp_labels')
135
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
136
+ self.pulp_labels = value
137
+ end
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 @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
- base_path == o.base_path &&
250
- name == o.name &&
251
- pulp_labels == o.pulp_labels &&
252
249
  content_guard == o.content_guard &&
250
+ name == o.name &&
251
+ base_path == o.base_path &&
253
252
  repository == o.repository &&
254
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
- [base_path, name, pulp_labels, content_guard, repository, hidden, 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,36 +16,36 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class ContainerContainerPullThroughDistributionResponse
19
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
20
- attr_accessor :base_path
19
+ # An optional content-guard. If none is specified, a default one will be used.
20
+ attr_accessor :content_guard
21
21
 
22
22
  # A unique name. Ex, `rawhide` and `stable`.
23
23
  attr_accessor :name
24
24
 
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
27
+
25
28
  # The Pulp Resource Name (PRN).
26
29
  attr_accessor :prn
27
30
 
28
- attr_accessor :pulp_labels
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.
32
+ attr_accessor :pulp_last_updated
29
33
 
30
- # An optional content-guard. If none is specified, a default one will be used.
31
- attr_accessor :content_guard
34
+ attr_accessor :pulp_href
32
35
 
33
- # 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
- attr_accessor :no_content_change_since
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
35
38
 
36
39
  # Timestamp of creation.
37
40
  attr_accessor :pulp_created
38
41
 
39
- # 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.
40
- attr_accessor :pulp_last_updated
41
-
42
42
  # The latest RepositoryVersion for this Repository will be served.
43
43
  attr_accessor :repository
44
44
 
45
45
  # Whether this distribution should be shown in the content app.
46
46
  attr_accessor :hidden
47
47
 
48
- attr_accessor :pulp_href
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
- :'base_path' => :'base_path',
69
- :'name' => :'name',
70
- :'prn' => :'prn',
71
- :'pulp_labels' => :'pulp_labels',
72
68
  :'content_guard' => :'content_guard',
69
+ :'name' => :'name',
73
70
  :'no_content_change_since' => :'no_content_change_since',
74
- :'pulp_created' => :'pulp_created',
71
+ :'prn' => :'prn',
75
72
  :'pulp_last_updated' => :'pulp_last_updated',
73
+ :'pulp_href' => :'pulp_href',
74
+ :'base_path' => :'base_path',
75
+ :'pulp_created' => :'pulp_created',
76
76
  :'repository' => :'repository',
77
77
  :'hidden' => :'hidden',
78
- :'pulp_href' => :'pulp_href',
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
- :'base_path' => :'String',
96
- :'name' => :'String',
97
- :'prn' => :'String',
98
- :'pulp_labels' => :'Hash<String, String>',
99
95
  :'content_guard' => :'String',
96
+ :'name' => :'String',
100
97
  :'no_content_change_since' => :'String',
101
- :'pulp_created' => :'Time',
98
+ :'prn' => :'String',
102
99
  :'pulp_last_updated' => :'Time',
100
+ :'pulp_href' => :'String',
101
+ :'base_path' => :'String',
102
+ :'pulp_created' => :'Time',
103
103
  :'repository' => :'String',
104
104
  :'hidden' => :'Boolean',
105
- :'pulp_href' => :'String',
105
+ :'pulp_labels' => :'Hash<String, String>',
106
106
  :'remote' => :'String',
107
107
  :'distributions' => :'Array<String>',
108
108
  :'namespace' => :'String',
@@ -134,10 +134,8 @@ module PulpContainerClient
134
134
  h[k.to_sym] = v
135
135
  }
136
136
 
137
- if attributes.key?(:'base_path')
138
- self.base_path = attributes[:'base_path']
139
- else
140
- self.base_path = nil
137
+ if attributes.key?(:'content_guard')
138
+ self.content_guard = attributes[:'content_guard']
141
139
  end
142
140
 
143
141
  if attributes.key?(:'name')
@@ -146,32 +144,32 @@ module PulpContainerClient
146
144
  self.name = nil
147
145
  end
148
146
 
147
+ if attributes.key?(:'no_content_change_since')
148
+ self.no_content_change_since = attributes[:'no_content_change_since']
149
+ end
150
+
149
151
  if attributes.key?(:'prn')
150
152
  self.prn = attributes[:'prn']
151
153
  end
152
154
 
153
- if attributes.key?(:'pulp_labels')
154
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
155
- self.pulp_labels = value
156
- end
155
+ if attributes.key?(:'pulp_last_updated')
156
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
157
157
  end
158
158
 
159
- if attributes.key?(:'content_guard')
160
- self.content_guard = attributes[:'content_guard']
159
+ if attributes.key?(:'pulp_href')
160
+ self.pulp_href = attributes[:'pulp_href']
161
161
  end
162
162
 
163
- if attributes.key?(:'no_content_change_since')
164
- self.no_content_change_since = attributes[:'no_content_change_since']
163
+ if attributes.key?(:'base_path')
164
+ self.base_path = attributes[:'base_path']
165
+ else
166
+ self.base_path = nil
165
167
  end
166
168
 
167
169
  if attributes.key?(:'pulp_created')
168
170
  self.pulp_created = attributes[:'pulp_created']
169
171
  end
170
172
 
171
- if attributes.key?(:'pulp_last_updated')
172
- self.pulp_last_updated = attributes[:'pulp_last_updated']
173
- end
174
-
175
173
  if attributes.key?(:'repository')
176
174
  self.repository = attributes[:'repository']
177
175
  end
@@ -182,8 +180,10 @@ module PulpContainerClient
182
180
  self.hidden = false
183
181
  end
184
182
 
185
- if attributes.key?(:'pulp_href')
186
- self.pulp_href = attributes[:'pulp_href']
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
- base_path == o.base_path &&
250
- name == o.name &&
251
- prn == o.prn &&
252
- pulp_labels == o.pulp_labels &&
253
249
  content_guard == o.content_guard &&
250
+ name == o.name &&
254
251
  no_content_change_since == o.no_content_change_since &&
255
- pulp_created == o.pulp_created &&
252
+ prn == o.prn &&
256
253
  pulp_last_updated == o.pulp_last_updated &&
254
+ pulp_href == o.pulp_href &&
255
+ base_path == o.base_path &&
256
+ pulp_created == o.pulp_created &&
257
257
  repository == o.repository &&
258
258
  hidden == o.hidden &&
259
- pulp_href == o.pulp_href &&
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
- [base_path, name, prn, pulp_labels, content_guard, no_content_change_since, pulp_created, pulp_last_updated, repository, hidden, pulp_href, 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