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