pulp_container_client 2.24.1 → 2.25.0

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 (51) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -4
  3. data/docs/ContainerContainerDistribution.md +6 -6
  4. data/docs/ContainerContainerDistributionResponse.md +14 -14
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  7. data/docs/ContainerContainerPushRepository.md +2 -2
  8. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  9. data/docs/ContentBlobsApi.md +146 -0
  10. data/docs/ContentManifestsApi.md +146 -0
  11. data/docs/ContentSignaturesApi.md +146 -0
  12. data/docs/ContentTagsApi.md +146 -0
  13. data/docs/DistributionsContainerApi.md +6 -4
  14. data/docs/DistributionsPullThroughApi.md +6 -4
  15. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  16. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  17. data/docs/PatchedcontainerContainerPushRepository.md +2 -2
  18. data/lib/pulp_container_client/api/content_blobs_api.rb +148 -0
  19. data/lib/pulp_container_client/api/content_manifests_api.rb +148 -0
  20. data/lib/pulp_container_client/api/content_signatures_api.rb +148 -0
  21. data/lib/pulp_container_client/api/content_tags_api.rb +148 -0
  22. data/lib/pulp_container_client/api/distributions_container_api.rb +6 -3
  23. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +6 -3
  24. data/lib/pulp_container_client/models/container_container_distribution.rb +54 -54
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +69 -69
  26. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +54 -54
  27. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +69 -69
  28. data/lib/pulp_container_client/models/container_container_push_repository.rb +12 -12
  29. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +55 -55
  30. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +47 -47
  31. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +47 -47
  32. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +12 -12
  33. data/lib/pulp_container_client/models/unset_label.rb +1 -1
  34. data/lib/pulp_container_client/models/unset_label_response.rb +1 -1
  35. data/lib/pulp_container_client/version.rb +1 -1
  36. data/spec/api/content_blobs_api_spec.rb +26 -0
  37. data/spec/api/content_manifests_api_spec.rb +26 -0
  38. data/spec/api/content_signatures_api_spec.rb +26 -0
  39. data/spec/api/content_tags_api_spec.rb +26 -0
  40. data/spec/api/distributions_container_api_spec.rb +2 -1
  41. data/spec/api/distributions_pull_through_api_spec.rb +2 -1
  42. data/spec/models/container_container_distribution_response_spec.rb +10 -10
  43. data/spec/models/container_container_distribution_spec.rb +6 -6
  44. data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
  45. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  46. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  47. data/spec/models/container_container_push_repository_spec.rb +2 -2
  48. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  49. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  50. data/spec/models/patchedcontainer_container_push_repository_spec.rb +2 -2
  51. metadata +2 -2
@@ -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 Pulp Resource Name (PRN).
20
- attr_accessor :prn
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
21
21
 
22
22
  attr_accessor :pulp_href
23
23
 
24
- # 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.
25
- attr_accessor :pulp_last_updated
26
-
27
- # Whether this distribution should be shown in the content app.
28
- attr_accessor :hidden
24
+ # Timestamp of creation.
25
+ attr_accessor :pulp_created
29
26
 
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\")
31
- attr_accessor :base_path
27
+ # The latest RepositoryVersion for this Repository will be served.
28
+ attr_accessor :repository
32
29
 
33
- # A unique name. Ex, `rawhide` and `stable`.
34
- attr_accessor :name
30
+ # The Pulp Resource Name (PRN).
31
+ attr_accessor :prn
35
32
 
36
33
  # An optional content-guard. If none is specified, a default one will be used.
37
34
  attr_accessor :content_guard
38
35
 
39
- attr_accessor :pulp_labels
36
+ # Whether this distribution should be shown in the content app.
37
+ attr_accessor :hidden
40
38
 
41
- # Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
42
- attr_accessor :no_content_change_since
39
+ # A unique name. Ex, `rawhide` and `stable`.
40
+ attr_accessor :name
43
41
 
44
- # Timestamp of creation.
45
- attr_accessor :pulp_created
42
+ # 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.
43
+ attr_accessor :pulp_last_updated
46
44
 
47
- # The latest RepositoryVersion for this Repository will be served.
48
- attr_accessor :repository
45
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
46
+ attr_accessor :base_path
47
+
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
- :'prn' => :'prn',
68
+ :'no_content_change_since' => :'no_content_change_since',
69
69
  :'pulp_href' => :'pulp_href',
70
- :'pulp_last_updated' => :'pulp_last_updated',
70
+ :'pulp_created' => :'pulp_created',
71
+ :'repository' => :'repository',
72
+ :'prn' => :'prn',
73
+ :'content_guard' => :'content_guard',
71
74
  :'hidden' => :'hidden',
72
- :'base_path' => :'base_path',
73
75
  :'name' => :'name',
74
- :'content_guard' => :'content_guard',
76
+ :'pulp_last_updated' => :'pulp_last_updated',
77
+ :'base_path' => :'base_path',
75
78
  :'pulp_labels' => :'pulp_labels',
76
- :'no_content_change_since' => :'no_content_change_since',
77
- :'pulp_created' => :'pulp_created',
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
- :'prn' => :'String',
95
+ :'no_content_change_since' => :'String',
96
96
  :'pulp_href' => :'String',
97
- :'pulp_last_updated' => :'Time',
97
+ :'pulp_created' => :'Time',
98
+ :'repository' => :'String',
99
+ :'prn' => :'String',
100
+ :'content_guard' => :'String',
98
101
  :'hidden' => :'Boolean',
99
- :'base_path' => :'String',
100
102
  :'name' => :'String',
101
- :'content_guard' => :'String',
103
+ :'pulp_last_updated' => :'Time',
104
+ :'base_path' => :'String',
102
105
  :'pulp_labels' => :'Hash<String, String>',
103
- :'no_content_change_since' => :'String',
104
- :'pulp_created' => :'Time',
105
- :'repository' => :'String',
106
106
  :'remote' => :'String',
107
107
  :'distributions' => :'Array<String>',
108
108
  :'namespace' => :'String',
@@ -134,16 +134,28 @@ module PulpContainerClient
134
134
  h[k.to_sym] = v
135
135
  }
136
136
 
137
- if attributes.key?(:'prn')
138
- self.prn = attributes[:'prn']
137
+ if attributes.key?(:'no_content_change_since')
138
+ self.no_content_change_since = attributes[:'no_content_change_since']
139
139
  end
140
140
 
141
141
  if attributes.key?(:'pulp_href')
142
142
  self.pulp_href = attributes[:'pulp_href']
143
143
  end
144
144
 
145
- if attributes.key?(:'pulp_last_updated')
146
- self.pulp_last_updated = attributes[:'pulp_last_updated']
145
+ if attributes.key?(:'pulp_created')
146
+ self.pulp_created = attributes[:'pulp_created']
147
+ end
148
+
149
+ if attributes.key?(:'repository')
150
+ self.repository = attributes[:'repository']
151
+ end
152
+
153
+ if attributes.key?(:'prn')
154
+ self.prn = attributes[:'prn']
155
+ end
156
+
157
+ if attributes.key?(:'content_guard')
158
+ self.content_guard = attributes[:'content_guard']
147
159
  end
148
160
 
149
161
  if attributes.key?(:'hidden')
@@ -152,20 +164,20 @@ module PulpContainerClient
152
164
  self.hidden = false
153
165
  end
154
166
 
155
- if attributes.key?(:'base_path')
156
- self.base_path = attributes[:'base_path']
157
- else
158
- self.base_path = nil
159
- end
160
-
161
167
  if attributes.key?(:'name')
162
168
  self.name = attributes[:'name']
163
169
  else
164
170
  self.name = nil
165
171
  end
166
172
 
167
- if attributes.key?(:'content_guard')
168
- self.content_guard = attributes[:'content_guard']
173
+ if attributes.key?(:'pulp_last_updated')
174
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
175
+ end
176
+
177
+ if attributes.key?(:'base_path')
178
+ self.base_path = attributes[:'base_path']
179
+ else
180
+ self.base_path = nil
169
181
  end
170
182
 
171
183
  if attributes.key?(:'pulp_labels')
@@ -174,18 +186,6 @@ module PulpContainerClient
174
186
  end
175
187
  end
176
188
 
177
- if attributes.key?(:'no_content_change_since')
178
- self.no_content_change_since = attributes[:'no_content_change_since']
179
- end
180
-
181
- if attributes.key?(:'pulp_created')
182
- self.pulp_created = attributes[:'pulp_created']
183
- end
184
-
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
@@ -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
- prn == o.prn &&
249
+ no_content_change_since == o.no_content_change_since &&
250
250
  pulp_href == o.pulp_href &&
251
- pulp_last_updated == o.pulp_last_updated &&
251
+ pulp_created == o.pulp_created &&
252
+ repository == o.repository &&
253
+ prn == o.prn &&
254
+ content_guard == o.content_guard &&
252
255
  hidden == o.hidden &&
253
- base_path == o.base_path &&
254
256
  name == o.name &&
255
- content_guard == o.content_guard &&
257
+ pulp_last_updated == o.pulp_last_updated &&
258
+ base_path == o.base_path &&
256
259
  pulp_labels == o.pulp_labels &&
257
- no_content_change_since == o.no_content_change_since &&
258
- pulp_created == o.pulp_created &&
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
- [prn, pulp_href, pulp_last_updated, hidden, base_path, name, content_guard, pulp_labels, no_content_change_since, pulp_created, repository, remote, distributions, namespace, private, description].hash
276
+ [no_content_change_since, pulp_href, pulp_created, repository, prn, content_guard, hidden, name, pulp_last_updated, base_path, pulp_labels, remote, distributions, namespace, private, description].hash
277
277
  end
278
278
 
279
279
  # Builds the object from hash
@@ -16,12 +16,12 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepository
19
- # A reference to an associated signing service.
20
- attr_accessor :manifest_signing_service
21
-
22
19
  # Retain X versions of the repository. Default is null which retains all versions.
23
20
  attr_accessor :retain_repo_versions
24
21
 
22
+ # A reference to an associated signing service.
23
+ attr_accessor :manifest_signing_service
24
+
25
25
  # A unique name for this repository.
26
26
  attr_accessor :name
27
27
 
@@ -33,8 +33,8 @@ module PulpContainerClient
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'manifest_signing_service' => :'manifest_signing_service',
37
36
  :'retain_repo_versions' => :'retain_repo_versions',
37
+ :'manifest_signing_service' => :'manifest_signing_service',
38
38
  :'name' => :'name',
39
39
  :'description' => :'description',
40
40
  :'pulp_labels' => :'pulp_labels'
@@ -49,8 +49,8 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
- :'manifest_signing_service' => :'String',
53
52
  :'retain_repo_versions' => :'Integer',
53
+ :'manifest_signing_service' => :'String',
54
54
  :'name' => :'String',
55
55
  :'description' => :'String',
56
56
  :'pulp_labels' => :'Hash<String, String>'
@@ -60,8 +60,8 @@ module PulpContainerClient
60
60
  # List of attributes with nullable: true
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
- :'manifest_signing_service',
64
63
  :'retain_repo_versions',
64
+ :'manifest_signing_service',
65
65
  :'description',
66
66
  ])
67
67
  end
@@ -81,14 +81,14 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'manifest_signing_service')
85
- self.manifest_signing_service = attributes[:'manifest_signing_service']
86
- end
87
-
88
84
  if attributes.key?(:'retain_repo_versions')
89
85
  self.retain_repo_versions = attributes[:'retain_repo_versions']
90
86
  end
91
87
 
88
+ if attributes.key?(:'manifest_signing_service')
89
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
90
+ end
91
+
92
92
  if attributes.key?(:'name')
93
93
  self.name = attributes[:'name']
94
94
  else
@@ -180,8 +180,8 @@ module PulpContainerClient
180
180
  def ==(o)
181
181
  return true if self.equal?(o)
182
182
  self.class == o.class &&
183
- manifest_signing_service == o.manifest_signing_service &&
184
183
  retain_repo_versions == o.retain_repo_versions &&
184
+ manifest_signing_service == o.manifest_signing_service &&
185
185
  name == o.name &&
186
186
  description == o.description &&
187
187
  pulp_labels == o.pulp_labels
@@ -196,7 +196,7 @@ module PulpContainerClient
196
196
  # Calculates hash code according to all attributes.
197
197
  # @return [Integer] Hash code
198
198
  def hash
199
- [manifest_signing_service, retain_repo_versions, name, description, pulp_labels].hash
199
+ [retain_repo_versions, manifest_signing_service, name, description, pulp_labels].hash
200
200
  end
201
201
 
202
202
  # Builds the object from hash
@@ -16,49 +16,49 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepositoryResponse
19
+ attr_accessor :versions_href
20
+
21
+ # Retain X versions of the repository. Default is null which retains all versions.
22
+ attr_accessor :retain_repo_versions
23
+
24
+ attr_accessor :pulp_href
25
+
26
+ # Timestamp of creation.
27
+ attr_accessor :pulp_created
28
+
19
29
  # A reference to an associated signing service.
20
30
  attr_accessor :manifest_signing_service
21
31
 
22
32
  # The Pulp Resource Name (PRN).
23
33
  attr_accessor :prn
24
34
 
25
- attr_accessor :pulp_href
35
+ # A unique name for this repository.
36
+ attr_accessor :name
26
37
 
27
- # Retain X versions of the repository. Default is null which retains all versions.
28
- attr_accessor :retain_repo_versions
38
+ # An optional description.
39
+ attr_accessor :description
29
40
 
30
41
  # 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.
31
42
  attr_accessor :pulp_last_updated
32
43
 
33
- # A unique name for this repository.
34
- attr_accessor :name
35
-
36
44
  attr_accessor :latest_version_href
37
45
 
38
- attr_accessor :versions_href
39
-
40
- # An optional description.
41
- attr_accessor :description
42
-
43
46
  attr_accessor :pulp_labels
44
47
 
45
- # Timestamp of creation.
46
- attr_accessor :pulp_created
47
-
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
+ :'versions_href' => :'versions_href',
52
+ :'retain_repo_versions' => :'retain_repo_versions',
53
+ :'pulp_href' => :'pulp_href',
54
+ :'pulp_created' => :'pulp_created',
51
55
  :'manifest_signing_service' => :'manifest_signing_service',
52
56
  :'prn' => :'prn',
53
- :'pulp_href' => :'pulp_href',
54
- :'retain_repo_versions' => :'retain_repo_versions',
55
- :'pulp_last_updated' => :'pulp_last_updated',
56
57
  :'name' => :'name',
57
- :'latest_version_href' => :'latest_version_href',
58
- :'versions_href' => :'versions_href',
59
58
  :'description' => :'description',
60
- :'pulp_labels' => :'pulp_labels',
61
- :'pulp_created' => :'pulp_created'
59
+ :'pulp_last_updated' => :'pulp_last_updated',
60
+ :'latest_version_href' => :'latest_version_href',
61
+ :'pulp_labels' => :'pulp_labels'
62
62
  }
63
63
  end
64
64
 
@@ -70,25 +70,25 @@ module PulpContainerClient
70
70
  # Attribute type mapping.
71
71
  def self.openapi_types
72
72
  {
73
+ :'versions_href' => :'String',
74
+ :'retain_repo_versions' => :'Integer',
75
+ :'pulp_href' => :'String',
76
+ :'pulp_created' => :'Time',
73
77
  :'manifest_signing_service' => :'String',
74
78
  :'prn' => :'String',
75
- :'pulp_href' => :'String',
76
- :'retain_repo_versions' => :'Integer',
77
- :'pulp_last_updated' => :'Time',
78
79
  :'name' => :'String',
79
- :'latest_version_href' => :'String',
80
- :'versions_href' => :'String',
81
80
  :'description' => :'String',
82
- :'pulp_labels' => :'Hash<String, String>',
83
- :'pulp_created' => :'Time'
81
+ :'pulp_last_updated' => :'Time',
82
+ :'latest_version_href' => :'String',
83
+ :'pulp_labels' => :'Hash<String, String>'
84
84
  }
85
85
  end
86
86
 
87
87
  # List of attributes with nullable: true
88
88
  def self.openapi_nullable
89
89
  Set.new([
90
- :'manifest_signing_service',
91
90
  :'retain_repo_versions',
91
+ :'manifest_signing_service',
92
92
  :'description',
93
93
  ])
94
94
  end
@@ -108,24 +108,28 @@ module PulpContainerClient
108
108
  h[k.to_sym] = v
109
109
  }
110
110
 
111
- if attributes.key?(:'manifest_signing_service')
112
- self.manifest_signing_service = attributes[:'manifest_signing_service']
111
+ if attributes.key?(:'versions_href')
112
+ self.versions_href = attributes[:'versions_href']
113
113
  end
114
114
 
115
- if attributes.key?(:'prn')
116
- self.prn = attributes[:'prn']
115
+ if attributes.key?(:'retain_repo_versions')
116
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
117
117
  end
118
118
 
119
119
  if attributes.key?(:'pulp_href')
120
120
  self.pulp_href = attributes[:'pulp_href']
121
121
  end
122
122
 
123
- if attributes.key?(:'retain_repo_versions')
124
- self.retain_repo_versions = attributes[:'retain_repo_versions']
123
+ if attributes.key?(:'pulp_created')
124
+ self.pulp_created = attributes[:'pulp_created']
125
125
  end
126
126
 
127
- if attributes.key?(:'pulp_last_updated')
128
- self.pulp_last_updated = attributes[:'pulp_last_updated']
127
+ if attributes.key?(:'manifest_signing_service')
128
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
129
+ end
130
+
131
+ if attributes.key?(:'prn')
132
+ self.prn = attributes[:'prn']
129
133
  end
130
134
 
131
135
  if attributes.key?(:'name')
@@ -134,16 +138,16 @@ module PulpContainerClient
134
138
  self.name = nil
135
139
  end
136
140
 
137
- if attributes.key?(:'latest_version_href')
138
- self.latest_version_href = attributes[:'latest_version_href']
141
+ if attributes.key?(:'description')
142
+ self.description = attributes[:'description']
139
143
  end
140
144
 
141
- if attributes.key?(:'versions_href')
142
- self.versions_href = attributes[:'versions_href']
145
+ if attributes.key?(:'pulp_last_updated')
146
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
143
147
  end
144
148
 
145
- if attributes.key?(:'description')
146
- self.description = attributes[:'description']
149
+ if attributes.key?(:'latest_version_href')
150
+ self.latest_version_href = attributes[:'latest_version_href']
147
151
  end
148
152
 
149
153
  if attributes.key?(:'pulp_labels')
@@ -151,10 +155,6 @@ module PulpContainerClient
151
155
  self.pulp_labels = value
152
156
  end
153
157
  end
154
-
155
- if attributes.key?(:'pulp_created')
156
- self.pulp_created = attributes[:'pulp_created']
157
- end
158
158
  end
159
159
 
160
160
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -197,17 +197,17 @@ module PulpContainerClient
197
197
  def ==(o)
198
198
  return true if self.equal?(o)
199
199
  self.class == o.class &&
200
+ versions_href == o.versions_href &&
201
+ retain_repo_versions == o.retain_repo_versions &&
202
+ pulp_href == o.pulp_href &&
203
+ pulp_created == o.pulp_created &&
200
204
  manifest_signing_service == o.manifest_signing_service &&
201
205
  prn == o.prn &&
202
- pulp_href == o.pulp_href &&
203
- retain_repo_versions == o.retain_repo_versions &&
204
- pulp_last_updated == o.pulp_last_updated &&
205
206
  name == o.name &&
206
- latest_version_href == o.latest_version_href &&
207
- versions_href == o.versions_href &&
208
207
  description == o.description &&
209
- pulp_labels == o.pulp_labels &&
210
- pulp_created == o.pulp_created
208
+ pulp_last_updated == o.pulp_last_updated &&
209
+ latest_version_href == o.latest_version_href &&
210
+ pulp_labels == o.pulp_labels
211
211
  end
212
212
 
213
213
  # @see the `==` method
@@ -219,7 +219,7 @@ module PulpContainerClient
219
219
  # Calculates hash code according to all attributes.
220
220
  # @return [Integer] Hash code
221
221
  def hash
222
- [manifest_signing_service, prn, pulp_href, retain_repo_versions, pulp_last_updated, name, latest_version_href, versions_href, description, pulp_labels, pulp_created].hash
222
+ [versions_href, retain_repo_versions, pulp_href, pulp_created, manifest_signing_service, prn, name, description, pulp_last_updated, latest_version_href, pulp_labels].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash