pulp_container_client 2.26.16 → 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 +14 -14
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  7. data/docs/ContainerContainerPushRepository.md +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  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 +31 -31
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +61 -61
  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 +61 -61
  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 +66 -66
  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 +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 +6 -6
  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 +6 -6
  26. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  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 +59 -59
@@ -16,10 +16,14 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for ContainerDistribution.
18
18
  class ContainerContainerDistributionResponse
19
- # The Pulp Resource Name (PRN).
20
- attr_accessor :prn
19
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
21
21
 
22
- attr_accessor :pulp_href
22
+ # Whether this distribution should be shown in the content app.
23
+ attr_accessor :hidden
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.
26
+ attr_accessor :pulp_last_updated
23
27
 
24
28
  # An optional content-guard. If none is specified, a default one will be used.
25
29
  attr_accessor :content_guard
@@ -27,25 +31,21 @@ module PulpContainerClient
27
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\")
28
32
  attr_accessor :base_path
29
33
 
34
+ attr_accessor :pulp_labels
35
+
30
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.
31
37
  attr_accessor :no_content_change_since
32
38
 
39
+ # Timestamp of creation.
40
+ attr_accessor :pulp_created
41
+
33
42
  # A unique name. Ex, `rawhide` and `stable`.
34
43
  attr_accessor :name
35
44
 
36
- attr_accessor :pulp_labels
37
-
38
- # Whether this distribution should be shown in the content app.
39
- attr_accessor :hidden
40
-
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.
42
- attr_accessor :pulp_last_updated
43
-
44
- # Timestamp of creation.
45
- attr_accessor :pulp_created
45
+ # The Pulp Resource Name (PRN).
46
+ attr_accessor :prn
46
47
 
47
- # The latest RepositoryVersion for this Repository will be served.
48
- attr_accessor :repository
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
- :'prn' => :'prn',
72
- :'pulp_href' => :'pulp_href',
71
+ :'repository' => :'repository',
72
+ :'hidden' => :'hidden',
73
+ :'pulp_last_updated' => :'pulp_last_updated',
73
74
  :'content_guard' => :'content_guard',
74
75
  :'base_path' => :'base_path',
75
- :'no_content_change_since' => :'no_content_change_since',
76
- :'name' => :'name',
77
76
  :'pulp_labels' => :'pulp_labels',
78
- :'hidden' => :'hidden',
79
- :'pulp_last_updated' => :'pulp_last_updated',
77
+ :'no_content_change_since' => :'no_content_change_since',
80
78
  :'pulp_created' => :'pulp_created',
81
- :'repository' => :'repository',
79
+ :'name' => :'name',
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
- :'prn' => :'String',
100
- :'pulp_href' => :'String',
99
+ :'repository' => :'String',
100
+ :'hidden' => :'Boolean',
101
+ :'pulp_last_updated' => :'Time',
101
102
  :'content_guard' => :'String',
102
103
  :'base_path' => :'String',
103
- :'no_content_change_since' => :'String',
104
- :'name' => :'String',
105
104
  :'pulp_labels' => :'Hash<String, String>',
106
- :'hidden' => :'Boolean',
107
- :'pulp_last_updated' => :'Time',
105
+ :'no_content_change_since' => :'String',
108
106
  :'pulp_created' => :'Time',
109
- :'repository' => :'String',
107
+ :'name' => :'String',
108
+ :'prn' => :'String',
109
+ :'pulp_href' => :'String',
110
110
  :'repository_version' => :'String',
111
111
  :'registry_path' => :'String',
112
112
  :'remote' => :'String',
@@ -140,12 +140,18 @@ module PulpContainerClient
140
140
  h[k.to_sym] = v
141
141
  }
142
142
 
143
- if attributes.key?(:'prn')
144
- self.prn = attributes[:'prn']
143
+ if attributes.key?(:'repository')
144
+ self.repository = attributes[:'repository']
145
145
  end
146
146
 
147
- if attributes.key?(:'pulp_href')
148
- self.pulp_href = attributes[:'pulp_href']
147
+ if attributes.key?(:'hidden')
148
+ self.hidden = attributes[:'hidden']
149
+ else
150
+ self.hidden = false
151
+ end
152
+
153
+ if attributes.key?(:'pulp_last_updated')
154
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
149
155
  end
150
156
 
151
157
  if attributes.key?(:'content_guard')
@@ -158,38 +164,32 @@ module PulpContainerClient
158
164
  self.base_path = nil
159
165
  end
160
166
 
161
- if attributes.key?(:'no_content_change_since')
162
- self.no_content_change_since = attributes[:'no_content_change_since']
163
- end
164
-
165
- if attributes.key?(:'name')
166
- self.name = attributes[:'name']
167
- else
168
- self.name = nil
169
- end
170
-
171
167
  if attributes.key?(:'pulp_labels')
172
168
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
173
169
  self.pulp_labels = value
174
170
  end
175
171
  end
176
172
 
177
- if attributes.key?(:'hidden')
178
- self.hidden = attributes[:'hidden']
179
- else
180
- self.hidden = false
181
- end
182
-
183
- if attributes.key?(:'pulp_last_updated')
184
- self.pulp_last_updated = attributes[:'pulp_last_updated']
173
+ if attributes.key?(:'no_content_change_since')
174
+ self.no_content_change_since = attributes[:'no_content_change_since']
185
175
  end
186
176
 
187
177
  if attributes.key?(:'pulp_created')
188
178
  self.pulp_created = attributes[:'pulp_created']
189
179
  end
190
180
 
191
- if attributes.key?(:'repository')
192
- self.repository = attributes[:'repository']
181
+ if attributes.key?(:'name')
182
+ self.name = attributes[:'name']
183
+ else
184
+ self.name = nil
185
+ end
186
+
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
- prn == o.prn &&
251
- pulp_href == o.pulp_href &&
250
+ repository == o.repository &&
251
+ hidden == o.hidden &&
252
+ pulp_last_updated == o.pulp_last_updated &&
252
253
  content_guard == o.content_guard &&
253
254
  base_path == o.base_path &&
254
- no_content_change_since == o.no_content_change_since &&
255
- name == o.name &&
256
255
  pulp_labels == o.pulp_labels &&
257
- hidden == o.hidden &&
258
- pulp_last_updated == o.pulp_last_updated &&
256
+ no_content_change_since == o.no_content_change_since &&
259
257
  pulp_created == o.pulp_created &&
260
- repository == o.repository &&
258
+ name == o.name &&
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
- [prn, pulp_href, content_guard, base_path, no_content_change_since, name, pulp_labels, hidden, pulp_last_updated, pulp_created, 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,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
+ # 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
24
+
19
25
  # An optional content-guard. If none is specified, a default one will be used.
20
26
  attr_accessor :content_guard
21
27
 
22
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\")
23
29
  attr_accessor :base_path
24
30
 
25
- # A unique name. Ex, `rawhide` and `stable`.
26
- attr_accessor :name
27
-
28
31
  attr_accessor :pulp_labels
29
32
 
30
- # Whether this distribution should be shown in the content app.
31
- attr_accessor :hidden
32
-
33
- # The latest RepositoryVersion for this Repository will be served.
34
- attr_accessor :repository
33
+ # A unique name. Ex, `rawhide` and `stable`.
34
+ attr_accessor :name
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
+ :'repository' => :'repository',
52
+ :'hidden' => :'hidden',
51
53
  :'content_guard' => :'content_guard',
52
54
  :'base_path' => :'base_path',
53
- :'name' => :'name',
54
55
  :'pulp_labels' => :'pulp_labels',
55
- :'hidden' => :'hidden',
56
- :'repository' => :'repository',
56
+ :'name' => :'name',
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
+ :'repository' => :'String',
73
+ :'hidden' => :'Boolean',
72
74
  :'content_guard' => :'String',
73
75
  :'base_path' => :'String',
74
- :'name' => :'String',
75
76
  :'pulp_labels' => :'Hash<String, String>',
76
- :'hidden' => :'Boolean',
77
- :'repository' => :'String',
77
+ :'name' => :'String',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,6 +105,16 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
+ if attributes.key?(:'repository')
109
+ self.repository = attributes[:'repository']
110
+ end
111
+
112
+ if attributes.key?(:'hidden')
113
+ self.hidden = attributes[:'hidden']
114
+ else
115
+ self.hidden = false
116
+ end
117
+
108
118
  if attributes.key?(:'content_guard')
109
119
  self.content_guard = attributes[:'content_guard']
110
120
  end
@@ -115,26 +125,16 @@ module PulpContainerClient
115
125
  self.base_path = nil
116
126
  end
117
127
 
118
- if attributes.key?(:'name')
119
- self.name = attributes[:'name']
120
- else
121
- self.name = nil
122
- end
123
-
124
128
  if attributes.key?(:'pulp_labels')
125
129
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
126
130
  self.pulp_labels = value
127
131
  end
128
132
  end
129
133
 
130
- if attributes.key?(:'hidden')
131
- self.hidden = attributes[:'hidden']
134
+ if attributes.key?(:'name')
135
+ self.name = attributes[:'name']
132
136
  else
133
- self.hidden = false
134
- end
135
-
136
- if attributes.key?(:'repository')
137
- self.repository = attributes[:'repository']
137
+ self.name = nil
138
138
  end
139
139
 
140
140
  if attributes.key?(:'remote')
@@ -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
+ repository == o.repository &&
250
+ hidden == o.hidden &&
249
251
  content_guard == o.content_guard &&
250
252
  base_path == o.base_path &&
251
- name == o.name &&
252
253
  pulp_labels == o.pulp_labels &&
253
- hidden == o.hidden &&
254
- repository == o.repository &&
254
+ name == o.name &&
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, name, pulp_labels, hidden, 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,10 +16,14 @@ 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
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
21
21
 
22
- attr_accessor :pulp_href
22
+ # Whether this distribution should be shown in the content app.
23
+ attr_accessor :hidden
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.
26
+ attr_accessor :pulp_last_updated
23
27
 
24
28
  # An optional content-guard. If none is specified, a default one will be used.
25
29
  attr_accessor :content_guard
@@ -27,25 +31,21 @@ module PulpContainerClient
27
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\")
28
32
  attr_accessor :base_path
29
33
 
34
+ attr_accessor :pulp_labels
35
+
30
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.
31
37
  attr_accessor :no_content_change_since
32
38
 
39
+ # Timestamp of creation.
40
+ attr_accessor :pulp_created
41
+
33
42
  # A unique name. Ex, `rawhide` and `stable`.
34
43
  attr_accessor :name
35
44
 
36
- attr_accessor :pulp_labels
37
-
38
- # Whether this distribution should be shown in the content app.
39
- attr_accessor :hidden
40
-
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.
42
- attr_accessor :pulp_last_updated
43
-
44
- # Timestamp of creation.
45
- attr_accessor :pulp_created
45
+ # The Pulp Resource Name (PRN).
46
+ attr_accessor :prn
46
47
 
47
- # The latest RepositoryVersion for this Repository will be served.
48
- attr_accessor :repository
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
- :'prn' => :'prn',
69
- :'pulp_href' => :'pulp_href',
68
+ :'repository' => :'repository',
69
+ :'hidden' => :'hidden',
70
+ :'pulp_last_updated' => :'pulp_last_updated',
70
71
  :'content_guard' => :'content_guard',
71
72
  :'base_path' => :'base_path',
72
- :'no_content_change_since' => :'no_content_change_since',
73
- :'name' => :'name',
74
73
  :'pulp_labels' => :'pulp_labels',
75
- :'hidden' => :'hidden',
76
- :'pulp_last_updated' => :'pulp_last_updated',
74
+ :'no_content_change_since' => :'no_content_change_since',
77
75
  :'pulp_created' => :'pulp_created',
78
- :'repository' => :'repository',
76
+ :'name' => :'name',
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
- :'prn' => :'String',
96
- :'pulp_href' => :'String',
95
+ :'repository' => :'String',
96
+ :'hidden' => :'Boolean',
97
+ :'pulp_last_updated' => :'Time',
97
98
  :'content_guard' => :'String',
98
99
  :'base_path' => :'String',
99
- :'no_content_change_since' => :'String',
100
- :'name' => :'String',
101
100
  :'pulp_labels' => :'Hash<String, String>',
102
- :'hidden' => :'Boolean',
103
- :'pulp_last_updated' => :'Time',
101
+ :'no_content_change_since' => :'String',
104
102
  :'pulp_created' => :'Time',
105
- :'repository' => :'String',
103
+ :'name' => :'String',
104
+ :'prn' => :'String',
105
+ :'pulp_href' => :'String',
106
106
  :'remote' => :'String',
107
107
  :'distributions' => :'Array<String>',
108
108
  :'namespace' => :'String',
@@ -134,12 +134,18 @@ 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?(:'repository')
138
+ self.repository = attributes[:'repository']
139
139
  end
140
140
 
141
- if attributes.key?(:'pulp_href')
142
- self.pulp_href = attributes[:'pulp_href']
141
+ if attributes.key?(:'hidden')
142
+ self.hidden = attributes[:'hidden']
143
+ else
144
+ self.hidden = false
145
+ end
146
+
147
+ if attributes.key?(:'pulp_last_updated')
148
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
143
149
  end
144
150
 
145
151
  if attributes.key?(:'content_guard')
@@ -152,38 +158,32 @@ module PulpContainerClient
152
158
  self.base_path = nil
153
159
  end
154
160
 
155
- if attributes.key?(:'no_content_change_since')
156
- self.no_content_change_since = attributes[:'no_content_change_since']
157
- end
158
-
159
- if attributes.key?(:'name')
160
- self.name = attributes[:'name']
161
- else
162
- self.name = nil
163
- end
164
-
165
161
  if attributes.key?(:'pulp_labels')
166
162
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
167
163
  self.pulp_labels = value
168
164
  end
169
165
  end
170
166
 
171
- if attributes.key?(:'hidden')
172
- self.hidden = attributes[:'hidden']
173
- else
174
- self.hidden = false
175
- end
176
-
177
- if attributes.key?(:'pulp_last_updated')
178
- self.pulp_last_updated = attributes[:'pulp_last_updated']
167
+ if attributes.key?(:'no_content_change_since')
168
+ self.no_content_change_since = attributes[:'no_content_change_since']
179
169
  end
180
170
 
181
171
  if attributes.key?(:'pulp_created')
182
172
  self.pulp_created = attributes[:'pulp_created']
183
173
  end
184
174
 
185
- if attributes.key?(:'repository')
186
- self.repository = attributes[:'repository']
175
+ if attributes.key?(:'name')
176
+ self.name = attributes[:'name']
177
+ else
178
+ self.name = nil
179
+ end
180
+
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
- prn == o.prn &&
250
- pulp_href == o.pulp_href &&
249
+ repository == o.repository &&
250
+ hidden == o.hidden &&
251
+ pulp_last_updated == o.pulp_last_updated &&
251
252
  content_guard == o.content_guard &&
252
253
  base_path == o.base_path &&
253
- no_content_change_since == o.no_content_change_since &&
254
- name == o.name &&
255
254
  pulp_labels == o.pulp_labels &&
256
- hidden == o.hidden &&
257
- pulp_last_updated == o.pulp_last_updated &&
255
+ no_content_change_since == o.no_content_change_since &&
258
256
  pulp_created == o.pulp_created &&
259
- repository == o.repository &&
257
+ name == o.name &&
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
- [prn, pulp_href, content_guard, base_path, no_content_change_since, name, pulp_labels, hidden, pulp_last_updated, pulp_created, 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
- # Retain X versions of the repository. Default is null which retains all versions.
20
- attr_accessor :retain_repo_versions
21
-
22
19
  # A reference to an associated signing service.
23
20
  attr_accessor :manifest_signing_service
24
21
 
22
+ attr_accessor :pulp_labels
23
+
25
24
  # An optional description.
26
25
  attr_accessor :description
27
26
 
27
+ # Retain X versions of the repository. Default is null which retains all versions.
28
+ attr_accessor :retain_repo_versions
29
+
28
30
  # A unique name for this repository.
29
31
  attr_accessor :name
30
32
 
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
- :'retain_repo_versions' => :'retain_repo_versions',
37
36
  :'manifest_signing_service' => :'manifest_signing_service',
37
+ :'pulp_labels' => :'pulp_labels',
38
38
  :'description' => :'description',
39
- :'name' => :'name',
40
- :'pulp_labels' => :'pulp_labels'
39
+ :'retain_repo_versions' => :'retain_repo_versions',
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
- :'retain_repo_versions' => :'Integer',
53
52
  :'manifest_signing_service' => :'String',
53
+ :'pulp_labels' => :'Hash<String, String>',
54
54
  :'description' => :'String',
55
- :'name' => :'String',
56
- :'pulp_labels' => :'Hash<String, String>'
55
+ :'retain_repo_versions' => :'Integer',
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
- :'retain_repo_versions',
64
63
  :'manifest_signing_service',
65
64
  :'description',
65
+ :'retain_repo_versions',
66
66
  ])
67
67
  end
68
68
 
@@ -81,29 +81,29 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'retain_repo_versions')
85
- self.retain_repo_versions = attributes[:'retain_repo_versions']
86
- end
87
-
88
84
  if attributes.key?(:'manifest_signing_service')
89
85
  self.manifest_signing_service = attributes[:'manifest_signing_service']
90
86
  end
91
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
+
92
94
  if attributes.key?(:'description')
93
95
  self.description = attributes[:'description']
94
96
  end
95
97
 
98
+ if attributes.key?(:'retain_repo_versions')
99
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
100
+ end
101
+
96
102
  if attributes.key?(:'name')
97
103
  self.name = attributes[:'name']
98
104
  else
99
105
  self.name = nil
100
106
  end
101
-
102
- if attributes.key?(:'pulp_labels')
103
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
104
- self.pulp_labels = value
105
- end
106
- end
107
107
  end
108
108
 
109
109
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -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
- retain_repo_versions == o.retain_repo_versions &&
169
168
  manifest_signing_service == o.manifest_signing_service &&
169
+ pulp_labels == o.pulp_labels &&
170
170
  description == o.description &&
171
- name == o.name &&
172
- pulp_labels == o.pulp_labels
171
+ retain_repo_versions == o.retain_repo_versions &&
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
- [retain_repo_versions, manifest_signing_service, description, name, pulp_labels].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