pulp_container_client 2.24.7 → 2.24.8

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 +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  9. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  11. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +28 -28
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +58 -58
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +28 -28
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +58 -58
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +26 -26
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +61 -61
  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 +26 -26
  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 +5 -5
  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 +5 -5
  31. metadata +59 -59
@@ -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
- # A reference to an associated signing service.
22
- attr_accessor :manifest_signing_service
23
-
24
- attr_accessor :pulp_labels
25
-
26
- attr_accessor :latest_version_href
19
+ attr_accessor :pulp_href
27
20
 
28
21
  # A unique name for this repository.
29
22
  attr_accessor :name
30
23
 
31
- # Timestamp of creation.
32
- attr_accessor :pulp_created
33
-
34
- # Retain X versions of the repository. Default is null which retains all versions.
35
- attr_accessor :retain_repo_versions
24
+ attr_accessor :versions_href
36
25
 
37
26
  # 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.
38
27
  attr_accessor :pulp_last_updated
39
28
 
40
- attr_accessor :pulp_href
29
+ # A reference to an associated signing service.
30
+ attr_accessor :manifest_signing_service
31
+
32
+ # Timestamp of creation.
33
+ attr_accessor :pulp_created
34
+
35
+ attr_accessor :latest_version_href
41
36
 
42
37
  # The Pulp Resource Name (PRN).
43
38
  attr_accessor :prn
44
39
 
40
+ # Retain X versions of the repository. Default is null which retains all versions.
41
+ attr_accessor :retain_repo_versions
42
+
45
43
  # An optional description.
46
44
  attr_accessor :description
47
45
 
46
+ attr_accessor :pulp_labels
47
+
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
+ :'pulp_href' => :'pulp_href',
52
+ :'name' => :'name',
51
53
  :'versions_href' => :'versions_href',
54
+ :'pulp_last_updated' => :'pulp_last_updated',
52
55
  :'manifest_signing_service' => :'manifest_signing_service',
53
- :'pulp_labels' => :'pulp_labels',
54
- :'latest_version_href' => :'latest_version_href',
55
- :'name' => :'name',
56
56
  :'pulp_created' => :'pulp_created',
57
- :'retain_repo_versions' => :'retain_repo_versions',
58
- :'pulp_last_updated' => :'pulp_last_updated',
59
- :'pulp_href' => :'pulp_href',
57
+ :'latest_version_href' => :'latest_version_href',
60
58
  :'prn' => :'prn',
61
- :'description' => :'description'
59
+ :'retain_repo_versions' => :'retain_repo_versions',
60
+ :'description' => :'description',
61
+ :'pulp_labels' => :'pulp_labels'
62
62
  }
63
63
  end
64
64
 
@@ -70,17 +70,17 @@ module PulpContainerClient
70
70
  # Attribute type mapping.
71
71
  def self.openapi_types
72
72
  {
73
+ :'pulp_href' => :'String',
74
+ :'name' => :'String',
73
75
  :'versions_href' => :'String',
76
+ :'pulp_last_updated' => :'Time',
74
77
  :'manifest_signing_service' => :'String',
75
- :'pulp_labels' => :'Hash<String, String>',
76
- :'latest_version_href' => :'String',
77
- :'name' => :'String',
78
78
  :'pulp_created' => :'Time',
79
- :'retain_repo_versions' => :'Integer',
80
- :'pulp_last_updated' => :'Time',
81
- :'pulp_href' => :'String',
79
+ :'latest_version_href' => :'String',
82
80
  :'prn' => :'String',
83
- :'description' => :'String'
81
+ :'retain_repo_versions' => :'Integer',
82
+ :'description' => :'String',
83
+ :'pulp_labels' => :'Hash<String, String>'
84
84
  }
85
85
  end
86
86
 
@@ -89,7 +89,7 @@ module PulpContainerClient
89
89
  Set.new([
90
90
  :'manifest_signing_service',
91
91
  :'retain_repo_versions',
92
- :'description'
92
+ :'description',
93
93
  ])
94
94
  end
95
95
 
@@ -108,22 +108,8 @@ module PulpContainerClient
108
108
  h[k.to_sym] = v
109
109
  }
110
110
 
111
- if attributes.key?(:'versions_href')
112
- self.versions_href = attributes[:'versions_href']
113
- end
114
-
115
- if attributes.key?(:'manifest_signing_service')
116
- self.manifest_signing_service = attributes[:'manifest_signing_service']
117
- end
118
-
119
- if attributes.key?(:'pulp_labels')
120
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
121
- self.pulp_labels = value
122
- end
123
- end
124
-
125
- if attributes.key?(:'latest_version_href')
126
- self.latest_version_href = attributes[:'latest_version_href']
111
+ if attributes.key?(:'pulp_href')
112
+ self.pulp_href = attributes[:'pulp_href']
127
113
  end
128
114
 
129
115
  if attributes.key?(:'name')
@@ -132,29 +118,43 @@ module PulpContainerClient
132
118
  self.name = nil
133
119
  end
134
120
 
135
- if attributes.key?(:'pulp_created')
136
- self.pulp_created = attributes[:'pulp_created']
137
- end
138
-
139
- if attributes.key?(:'retain_repo_versions')
140
- self.retain_repo_versions = attributes[:'retain_repo_versions']
121
+ if attributes.key?(:'versions_href')
122
+ self.versions_href = attributes[:'versions_href']
141
123
  end
142
124
 
143
125
  if attributes.key?(:'pulp_last_updated')
144
126
  self.pulp_last_updated = attributes[:'pulp_last_updated']
145
127
  end
146
128
 
147
- if attributes.key?(:'pulp_href')
148
- self.pulp_href = attributes[:'pulp_href']
129
+ if attributes.key?(:'manifest_signing_service')
130
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
131
+ end
132
+
133
+ if attributes.key?(:'pulp_created')
134
+ self.pulp_created = attributes[:'pulp_created']
135
+ end
136
+
137
+ if attributes.key?(:'latest_version_href')
138
+ self.latest_version_href = attributes[:'latest_version_href']
149
139
  end
150
140
 
151
141
  if attributes.key?(:'prn')
152
142
  self.prn = attributes[:'prn']
153
143
  end
154
144
 
145
+ if attributes.key?(:'retain_repo_versions')
146
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
147
+ end
148
+
155
149
  if attributes.key?(:'description')
156
150
  self.description = attributes[:'description']
157
151
  end
152
+
153
+ if attributes.key?(:'pulp_labels')
154
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
155
+ self.pulp_labels = value
156
+ end
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
+ pulp_href == o.pulp_href &&
201
+ name == o.name &&
200
202
  versions_href == o.versions_href &&
203
+ pulp_last_updated == o.pulp_last_updated &&
201
204
  manifest_signing_service == o.manifest_signing_service &&
202
- pulp_labels == o.pulp_labels &&
203
- latest_version_href == o.latest_version_href &&
204
- name == o.name &&
205
205
  pulp_created == o.pulp_created &&
206
- retain_repo_versions == o.retain_repo_versions &&
207
- pulp_last_updated == o.pulp_last_updated &&
208
- pulp_href == o.pulp_href &&
206
+ latest_version_href == o.latest_version_href &&
209
207
  prn == o.prn &&
210
- description == o.description
208
+ retain_repo_versions == o.retain_repo_versions &&
209
+ description == o.description &&
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
- [versions_href, manifest_signing_service, pulp_labels, latest_version_href, name, pulp_created, retain_repo_versions, pulp_last_updated, pulp_href, prn, description].hash
222
+ [pulp_href, name, versions_href, pulp_last_updated, manifest_signing_service, pulp_created, latest_version_href, prn, retain_repo_versions, description, pulp_labels].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -16,23 +16,23 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for ContainerDistribution.
18
18
  class PatchedcontainerContainerDistribution
19
- attr_accessor :pulp_labels
19
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
20
21
 
21
22
  # A unique name. Ex, `rawhide` and `stable`.
22
23
  attr_accessor :name
23
24
 
25
+ attr_accessor :pulp_labels
26
+
24
27
  # An optional content-guard. If none is specified, a default one will be used.
25
28
  attr_accessor :content_guard
26
29
 
27
- # The latest RepositoryVersion for this Repository will be served.
28
- attr_accessor :repository
30
+ # Whether this distribution should be shown in the content app.
31
+ attr_accessor :hidden
29
32
 
30
33
  # 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
34
  attr_accessor :base_path
32
35
 
33
- # Whether this distribution should be shown in the content app.
34
- attr_accessor :hidden
35
-
36
36
  # RepositoryVersion to be served
37
37
  attr_accessor :repository_version
38
38
 
@@ -45,12 +45,12 @@ module PulpContainerClient
45
45
  # Attribute mapping from ruby-style variable name to JSON key.
46
46
  def self.attribute_map
47
47
  {
48
- :'pulp_labels' => :'pulp_labels',
48
+ :'repository' => :'repository',
49
49
  :'name' => :'name',
50
+ :'pulp_labels' => :'pulp_labels',
50
51
  :'content_guard' => :'content_guard',
51
- :'repository' => :'repository',
52
- :'base_path' => :'base_path',
53
52
  :'hidden' => :'hidden',
53
+ :'base_path' => :'base_path',
54
54
  :'repository_version' => :'repository_version',
55
55
  :'private' => :'private',
56
56
  :'description' => :'description'
@@ -65,12 +65,12 @@ module PulpContainerClient
65
65
  # Attribute type mapping.
66
66
  def self.openapi_types
67
67
  {
68
- :'pulp_labels' => :'Hash<String, String>',
68
+ :'repository' => :'String',
69
69
  :'name' => :'String',
70
+ :'pulp_labels' => :'Hash<String, String>',
70
71
  :'content_guard' => :'String',
71
- :'repository' => :'String',
72
- :'base_path' => :'String',
73
72
  :'hidden' => :'Boolean',
73
+ :'base_path' => :'String',
74
74
  :'repository_version' => :'String',
75
75
  :'private' => :'Boolean',
76
76
  :'description' => :'String'
@@ -101,26 +101,22 @@ module PulpContainerClient
101
101
  h[k.to_sym] = v
102
102
  }
103
103
 
104
- if attributes.key?(:'pulp_labels')
105
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
106
- self.pulp_labels = value
107
- end
104
+ if attributes.key?(:'repository')
105
+ self.repository = attributes[:'repository']
108
106
  end
109
107
 
110
108
  if attributes.key?(:'name')
111
109
  self.name = attributes[:'name']
112
110
  end
113
111
 
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']
112
+ if attributes.key?(:'pulp_labels')
113
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
114
+ self.pulp_labels = value
115
+ end
120
116
  end
121
117
 
122
- if attributes.key?(:'base_path')
123
- self.base_path = attributes[:'base_path']
118
+ if attributes.key?(:'content_guard')
119
+ self.content_guard = attributes[:'content_guard']
124
120
  end
125
121
 
126
122
  if attributes.key?(:'hidden')
@@ -129,6 +125,10 @@ module PulpContainerClient
129
125
  self.hidden = false
130
126
  end
131
127
 
128
+ if attributes.key?(:'base_path')
129
+ self.base_path = attributes[:'base_path']
130
+ end
131
+
132
132
  if attributes.key?(:'repository_version')
133
133
  self.repository_version = attributes[:'repository_version']
134
134
  end
@@ -215,12 +215,12 @@ module PulpContainerClient
215
215
  def ==(o)
216
216
  return true if self.equal?(o)
217
217
  self.class == o.class &&
218
- pulp_labels == o.pulp_labels &&
218
+ repository == o.repository &&
219
219
  name == o.name &&
220
+ pulp_labels == o.pulp_labels &&
220
221
  content_guard == o.content_guard &&
221
- repository == o.repository &&
222
- base_path == o.base_path &&
223
222
  hidden == o.hidden &&
223
+ base_path == o.base_path &&
224
224
  repository_version == o.repository_version &&
225
225
  private == o.private &&
226
226
  description == o.description
@@ -235,7 +235,7 @@ module PulpContainerClient
235
235
  # Calculates hash code according to all attributes.
236
236
  # @return [Integer] Hash code
237
237
  def hash
238
- [pulp_labels, name, content_guard, repository, base_path, hidden, repository_version, private, description].hash
238
+ [repository, name, pulp_labels, content_guard, hidden, base_path, repository_version, private, description].hash
239
239
  end
240
240
 
241
241
  # Builds the object from hash
@@ -16,23 +16,23 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class PatchedcontainerContainerPullThroughDistribution
19
- attr_accessor :pulp_labels
19
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
20
21
 
21
22
  # A unique name. Ex, `rawhide` and `stable`.
22
23
  attr_accessor :name
23
24
 
25
+ attr_accessor :pulp_labels
26
+
24
27
  # An optional content-guard. If none is specified, a default one will be used.
25
28
  attr_accessor :content_guard
26
29
 
27
- # The latest RepositoryVersion for this Repository will be served.
28
- attr_accessor :repository
30
+ # Whether this distribution should be shown in the content app.
31
+ attr_accessor :hidden
29
32
 
30
33
  # 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
34
  attr_accessor :base_path
32
35
 
33
- # Whether this distribution should be shown in the content app.
34
- attr_accessor :hidden
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
- :'pulp_labels' => :'pulp_labels',
51
+ :'repository' => :'repository',
52
52
  :'name' => :'name',
53
+ :'pulp_labels' => :'pulp_labels',
53
54
  :'content_guard' => :'content_guard',
54
- :'repository' => :'repository',
55
- :'base_path' => :'base_path',
56
55
  :'hidden' => :'hidden',
56
+ :'base_path' => :'base_path',
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
- :'pulp_labels' => :'Hash<String, String>',
72
+ :'repository' => :'String',
73
73
  :'name' => :'String',
74
+ :'pulp_labels' => :'Hash<String, String>',
74
75
  :'content_guard' => :'String',
75
- :'repository' => :'String',
76
- :'base_path' => :'String',
77
76
  :'hidden' => :'Boolean',
77
+ :'base_path' => :'String',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,26 +105,22 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'pulp_labels')
109
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
110
- self.pulp_labels = value
111
- end
108
+ if attributes.key?(:'repository')
109
+ self.repository = attributes[:'repository']
112
110
  end
113
111
 
114
112
  if attributes.key?(:'name')
115
113
  self.name = attributes[:'name']
116
114
  end
117
115
 
118
- if attributes.key?(:'content_guard')
119
- self.content_guard = attributes[:'content_guard']
120
- end
121
-
122
- if attributes.key?(:'repository')
123
- self.repository = attributes[:'repository']
116
+ if attributes.key?(:'pulp_labels')
117
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
118
+ self.pulp_labels = value
119
+ end
124
120
  end
125
121
 
126
- if attributes.key?(:'base_path')
127
- self.base_path = attributes[:'base_path']
122
+ if attributes.key?(:'content_guard')
123
+ self.content_guard = attributes[:'content_guard']
128
124
  end
129
125
 
130
126
  if attributes.key?(:'hidden')
@@ -133,6 +129,10 @@ module PulpContainerClient
133
129
  self.hidden = false
134
130
  end
135
131
 
132
+ if attributes.key?(:'base_path')
133
+ self.base_path = attributes[:'base_path']
134
+ end
135
+
136
136
  if attributes.key?(:'remote')
137
137
  self.remote = attributes[:'remote']
138
138
  end
@@ -225,12 +225,12 @@ module PulpContainerClient
225
225
  def ==(o)
226
226
  return true if self.equal?(o)
227
227
  self.class == o.class &&
228
- pulp_labels == o.pulp_labels &&
228
+ repository == o.repository &&
229
229
  name == o.name &&
230
+ pulp_labels == o.pulp_labels &&
230
231
  content_guard == o.content_guard &&
231
- repository == o.repository &&
232
- base_path == o.base_path &&
233
232
  hidden == o.hidden &&
233
+ base_path == o.base_path &&
234
234
  remote == o.remote &&
235
235
  distributions == o.distributions &&
236
236
  private == o.private &&
@@ -246,7 +246,7 @@ module PulpContainerClient
246
246
  # Calculates hash code according to all attributes.
247
247
  # @return [Integer] Hash code
248
248
  def hash
249
- [pulp_labels, name, content_guard, repository, base_path, hidden, remote, distributions, private, description].hash
249
+ [repository, name, pulp_labels, content_guard, hidden, base_path, remote, distributions, private, description].hash
250
250
  end
251
251
 
252
252
  # Builds the object from hash
@@ -16,28 +16,28 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # A reference to an associated signing service.
20
- attr_accessor :manifest_signing_service
21
-
22
- attr_accessor :pulp_labels
23
-
24
19
  # A unique name for this repository.
25
20
  attr_accessor :name
26
21
 
22
+ # A reference to an associated signing service.
23
+ attr_accessor :manifest_signing_service
24
+
27
25
  # Retain X versions of the repository. Default is null which retains all versions.
28
26
  attr_accessor :retain_repo_versions
29
27
 
30
28
  # An optional description.
31
29
  attr_accessor :description
32
30
 
31
+ attr_accessor :pulp_labels
32
+
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
- :'pulp_labels' => :'pulp_labels',
38
36
  :'name' => :'name',
37
+ :'manifest_signing_service' => :'manifest_signing_service',
39
38
  :'retain_repo_versions' => :'retain_repo_versions',
40
- :'description' => :'description'
39
+ :'description' => :'description',
40
+ :'pulp_labels' => :'pulp_labels'
41
41
  }
42
42
  end
43
43
 
@@ -49,11 +49,11 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
- :'manifest_signing_service' => :'String',
53
- :'pulp_labels' => :'Hash<String, String>',
54
52
  :'name' => :'String',
53
+ :'manifest_signing_service' => :'String',
55
54
  :'retain_repo_versions' => :'Integer',
56
- :'description' => :'String'
55
+ :'description' => :'String',
56
+ :'pulp_labels' => :'Hash<String, String>'
57
57
  }
58
58
  end
59
59
 
@@ -62,7 +62,7 @@ module PulpContainerClient
62
62
  Set.new([
63
63
  :'manifest_signing_service',
64
64
  :'retain_repo_versions',
65
- :'description'
65
+ :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -81,20 +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
- if attributes.key?(:'pulp_labels')
89
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
90
- self.pulp_labels = value
91
- end
92
- end
93
-
94
84
  if attributes.key?(:'name')
95
85
  self.name = attributes[:'name']
96
86
  end
97
87
 
88
+ if attributes.key?(:'manifest_signing_service')
89
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
90
+ end
91
+
98
92
  if attributes.key?(:'retain_repo_versions')
99
93
  self.retain_repo_versions = attributes[:'retain_repo_versions']
100
94
  end
@@ -102,6 +96,12 @@ module PulpContainerClient
102
96
  if attributes.key?(:'description')
103
97
  self.description = attributes[:'description']
104
98
  end
99
+
100
+ if attributes.key?(:'pulp_labels')
101
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
102
+ self.pulp_labels = value
103
+ end
104
+ end
105
105
  end
106
106
 
107
107
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -173,11 +173,11 @@ module PulpContainerClient
173
173
  def ==(o)
174
174
  return true if self.equal?(o)
175
175
  self.class == o.class &&
176
- manifest_signing_service == o.manifest_signing_service &&
177
- pulp_labels == o.pulp_labels &&
178
176
  name == o.name &&
177
+ manifest_signing_service == o.manifest_signing_service &&
179
178
  retain_repo_versions == o.retain_repo_versions &&
180
- description == o.description
179
+ description == o.description &&
180
+ pulp_labels == o.pulp_labels
181
181
  end
182
182
 
183
183
  # @see the `==` method
@@ -189,7 +189,7 @@ module PulpContainerClient
189
189
  # Calculates hash code according to all attributes.
190
190
  # @return [Integer] Hash code
191
191
  def hash
192
- [manifest_signing_service, pulp_labels, name, retain_repo_versions, description].hash
192
+ [name, manifest_signing_service, retain_repo_versions, description, pulp_labels].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.24.7'
14
+ VERSION = '2.24.8'
15
15
  end