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