pulp_container_client 2.24.10 → 2.24.12

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