pulp_container_client 2.26.4 → 2.26.6

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 +10 -10
  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 +29 -29
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +52 -52
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +29 -29
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +52 -52
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +37 -37
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +43 -43
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +29 -29
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +29 -29
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +37 -37
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +9 -9
  23. data/spec/models/container_container_distribution_spec.rb +6 -6
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  26. data/spec/models/container_container_push_repository_response_spec.rb +7 -7
  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,27 +16,27 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepository
19
+ # An optional description.
20
+ attr_accessor :description
21
+
22
+ # A unique name for this repository.
23
+ attr_accessor :name
24
+
19
25
  # Retain X versions of the repository. Default is null which retains all versions.
20
26
  attr_accessor :retain_repo_versions
21
27
 
22
28
  # A reference to an associated signing service.
23
29
  attr_accessor :manifest_signing_service
24
30
 
25
- # A unique name for this repository.
26
- attr_accessor :name
27
-
28
- # An optional description.
29
- attr_accessor :description
30
-
31
31
  attr_accessor :pulp_labels
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
+ :'description' => :'description',
37
+ :'name' => :'name',
36
38
  :'retain_repo_versions' => :'retain_repo_versions',
37
39
  :'manifest_signing_service' => :'manifest_signing_service',
38
- :'name' => :'name',
39
- :'description' => :'description',
40
40
  :'pulp_labels' => :'pulp_labels'
41
41
  }
42
42
  end
@@ -49,10 +49,10 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
+ :'description' => :'String',
53
+ :'name' => :'String',
52
54
  :'retain_repo_versions' => :'Integer',
53
55
  :'manifest_signing_service' => :'String',
54
- :'name' => :'String',
55
- :'description' => :'String',
56
56
  :'pulp_labels' => :'Hash<String, String>'
57
57
  }
58
58
  end
@@ -60,9 +60,9 @@ module PulpContainerClient
60
60
  # List of attributes with nullable: true
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
+ :'description',
63
64
  :'retain_repo_versions',
64
65
  :'manifest_signing_service',
65
- :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -81,12 +81,8 @@ 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
- if attributes.key?(:'manifest_signing_service')
89
- self.manifest_signing_service = attributes[:'manifest_signing_service']
84
+ if attributes.key?(:'description')
85
+ self.description = attributes[:'description']
90
86
  end
91
87
 
92
88
  if attributes.key?(:'name')
@@ -95,8 +91,12 @@ module PulpContainerClient
95
91
  self.name = nil
96
92
  end
97
93
 
98
- if attributes.key?(:'description')
99
- self.description = attributes[:'description']
94
+ if attributes.key?(:'retain_repo_versions')
95
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
96
+ end
97
+
98
+ if attributes.key?(:'manifest_signing_service')
99
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
100
100
  end
101
101
 
102
102
  if attributes.key?(:'pulp_labels')
@@ -111,6 +111,10 @@ module PulpContainerClient
111
111
  def list_invalid_properties
112
112
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
113
113
  invalid_properties = Array.new
114
+ if !@description.nil? && @description.to_s.length < 1
115
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
116
+ end
117
+
114
118
  if @name.nil?
115
119
  invalid_properties.push('invalid value for "name", name cannot be nil.')
116
120
  end
@@ -119,10 +123,6 @@ module PulpContainerClient
119
123
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
120
124
  end
121
125
 
122
- if !@description.nil? && @description.to_s.length < 1
123
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
124
- end
125
-
126
126
  invalid_properties
127
127
  end
128
128
 
@@ -130,12 +130,22 @@ module PulpContainerClient
130
130
  # @return true if the model is valid
131
131
  def valid?
132
132
  warn '[DEPRECATED] the `valid?` method is obsolete'
133
+ return false if !@description.nil? && @description.to_s.length < 1
133
134
  return false if @name.nil?
134
135
  return false if @name.to_s.length < 1
135
- return false if !@description.nil? && @description.to_s.length < 1
136
136
  true
137
137
  end
138
138
 
139
+ # Custom attribute writer method with validation
140
+ # @param [Object] description Value to be assigned
141
+ def description=(description)
142
+ if !description.nil? && description.to_s.length < 1
143
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
144
+ end
145
+
146
+ @description = description
147
+ end
148
+
139
149
  # Custom attribute writer method with validation
140
150
  # @param [Object] name Value to be assigned
141
151
  def name=(name)
@@ -150,25 +160,15 @@ module PulpContainerClient
150
160
  @name = name
151
161
  end
152
162
 
153
- # Custom attribute writer method with validation
154
- # @param [Object] description Value to be assigned
155
- def description=(description)
156
- if !description.nil? && description.to_s.length < 1
157
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
158
- end
159
-
160
- @description = description
161
- end
162
-
163
163
  # Checks equality by comparing each attribute.
164
164
  # @param [Object] Object to be compared
165
165
  def ==(o)
166
166
  return true if self.equal?(o)
167
167
  self.class == o.class &&
168
+ description == o.description &&
169
+ name == o.name &&
168
170
  retain_repo_versions == o.retain_repo_versions &&
169
171
  manifest_signing_service == o.manifest_signing_service &&
170
- name == o.name &&
171
- description == o.description &&
172
172
  pulp_labels == o.pulp_labels
173
173
  end
174
174
 
@@ -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, name, description, pulp_labels].hash
184
+ [description, name, retain_repo_versions, manifest_signing_service, pulp_labels].hash
185
185
  end
186
186
 
187
187
  # Builds the object from hash
@@ -16,29 +16,29 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepositoryResponse
19
- # 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.
20
- attr_accessor :pulp_last_updated
21
-
22
19
  attr_accessor :versions_href
23
20
 
24
- # Retain X versions of the repository. Default is null which retains all versions.
25
- attr_accessor :retain_repo_versions
21
+ # The Pulp Resource Name (PRN).
22
+ attr_accessor :prn
26
23
 
27
- # A reference to an associated signing service.
28
- attr_accessor :manifest_signing_service
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
+ # An optional description.
28
+ attr_accessor :description
29
29
 
30
30
  # A unique name for this repository.
31
31
  attr_accessor :name
32
32
 
33
- # The Pulp Resource Name (PRN).
34
- attr_accessor :prn
33
+ attr_accessor :pulp_href
35
34
 
36
- # An optional description.
37
- attr_accessor :description
35
+ # Retain X versions of the repository. Default is null which retains all versions.
36
+ attr_accessor :retain_repo_versions
38
37
 
39
38
  attr_accessor :latest_version_href
40
39
 
41
- attr_accessor :pulp_href
40
+ # A reference to an associated signing service.
41
+ attr_accessor :manifest_signing_service
42
42
 
43
43
  attr_accessor :pulp_labels
44
44
 
@@ -48,15 +48,15 @@ module PulpContainerClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'pulp_last_updated' => :'pulp_last_updated',
52
51
  :'versions_href' => :'versions_href',
53
- :'retain_repo_versions' => :'retain_repo_versions',
54
- :'manifest_signing_service' => :'manifest_signing_service',
55
- :'name' => :'name',
56
52
  :'prn' => :'prn',
53
+ :'pulp_last_updated' => :'pulp_last_updated',
57
54
  :'description' => :'description',
58
- :'latest_version_href' => :'latest_version_href',
55
+ :'name' => :'name',
59
56
  :'pulp_href' => :'pulp_href',
57
+ :'retain_repo_versions' => :'retain_repo_versions',
58
+ :'latest_version_href' => :'latest_version_href',
59
+ :'manifest_signing_service' => :'manifest_signing_service',
60
60
  :'pulp_labels' => :'pulp_labels',
61
61
  :'pulp_created' => :'pulp_created'
62
62
  }
@@ -70,15 +70,15 @@ module PulpContainerClient
70
70
  # Attribute type mapping.
71
71
  def self.openapi_types
72
72
  {
73
- :'pulp_last_updated' => :'Time',
74
73
  :'versions_href' => :'String',
75
- :'retain_repo_versions' => :'Integer',
76
- :'manifest_signing_service' => :'String',
77
- :'name' => :'String',
78
74
  :'prn' => :'String',
75
+ :'pulp_last_updated' => :'Time',
79
76
  :'description' => :'String',
80
- :'latest_version_href' => :'String',
77
+ :'name' => :'String',
81
78
  :'pulp_href' => :'String',
79
+ :'retain_repo_versions' => :'Integer',
80
+ :'latest_version_href' => :'String',
81
+ :'manifest_signing_service' => :'String',
82
82
  :'pulp_labels' => :'Hash<String, String>',
83
83
  :'pulp_created' => :'Time'
84
84
  }
@@ -87,9 +87,9 @@ module PulpContainerClient
87
87
  # List of attributes with nullable: true
88
88
  def self.openapi_nullable
89
89
  Set.new([
90
+ :'description',
90
91
  :'retain_repo_versions',
91
92
  :'manifest_signing_service',
92
- :'description',
93
93
  ])
94
94
  end
95
95
 
@@ -108,20 +108,20 @@ module PulpContainerClient
108
108
  h[k.to_sym] = v
109
109
  }
110
110
 
111
- if attributes.key?(:'pulp_last_updated')
112
- self.pulp_last_updated = attributes[:'pulp_last_updated']
113
- end
114
-
115
111
  if attributes.key?(:'versions_href')
116
112
  self.versions_href = attributes[:'versions_href']
117
113
  end
118
114
 
119
- if attributes.key?(:'retain_repo_versions')
120
- self.retain_repo_versions = attributes[:'retain_repo_versions']
115
+ if attributes.key?(:'prn')
116
+ self.prn = attributes[:'prn']
121
117
  end
122
118
 
123
- if attributes.key?(:'manifest_signing_service')
124
- self.manifest_signing_service = attributes[:'manifest_signing_service']
119
+ if attributes.key?(:'pulp_last_updated')
120
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
121
+ end
122
+
123
+ if attributes.key?(:'description')
124
+ self.description = attributes[:'description']
125
125
  end
126
126
 
127
127
  if attributes.key?(:'name')
@@ -130,20 +130,20 @@ module PulpContainerClient
130
130
  self.name = nil
131
131
  end
132
132
 
133
- if attributes.key?(:'prn')
134
- self.prn = attributes[:'prn']
133
+ if attributes.key?(:'pulp_href')
134
+ self.pulp_href = attributes[:'pulp_href']
135
135
  end
136
136
 
137
- if attributes.key?(:'description')
138
- self.description = attributes[:'description']
137
+ if attributes.key?(:'retain_repo_versions')
138
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
139
139
  end
140
140
 
141
141
  if attributes.key?(:'latest_version_href')
142
142
  self.latest_version_href = attributes[:'latest_version_href']
143
143
  end
144
144
 
145
- if attributes.key?(:'pulp_href')
146
- self.pulp_href = attributes[:'pulp_href']
145
+ if attributes.key?(:'manifest_signing_service')
146
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
147
147
  end
148
148
 
149
149
  if attributes.key?(:'pulp_labels')
@@ -182,15 +182,15 @@ module PulpContainerClient
182
182
  def ==(o)
183
183
  return true if self.equal?(o)
184
184
  self.class == o.class &&
185
- pulp_last_updated == o.pulp_last_updated &&
186
185
  versions_href == o.versions_href &&
187
- retain_repo_versions == o.retain_repo_versions &&
188
- manifest_signing_service == o.manifest_signing_service &&
189
- name == o.name &&
190
186
  prn == o.prn &&
187
+ pulp_last_updated == o.pulp_last_updated &&
191
188
  description == o.description &&
192
- latest_version_href == o.latest_version_href &&
189
+ name == o.name &&
193
190
  pulp_href == o.pulp_href &&
191
+ retain_repo_versions == o.retain_repo_versions &&
192
+ latest_version_href == o.latest_version_href &&
193
+ manifest_signing_service == o.manifest_signing_service &&
194
194
  pulp_labels == o.pulp_labels &&
195
195
  pulp_created == o.pulp_created
196
196
  end
@@ -204,7 +204,7 @@ module PulpContainerClient
204
204
  # Calculates hash code according to all attributes.
205
205
  # @return [Integer] Hash code
206
206
  def hash
207
- [pulp_last_updated, versions_href, retain_repo_versions, manifest_signing_service, name, prn, description, latest_version_href, pulp_href, pulp_labels, pulp_created].hash
207
+ [versions_href, prn, pulp_last_updated, description, name, pulp_href, retain_repo_versions, latest_version_href, manifest_signing_service, pulp_labels, pulp_created].hash
208
208
  end
209
209
 
210
210
  # 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
+ # A unique name. Ex, `rawhide` and `stable`.
20
+ attr_accessor :name
21
+
19
22
  # An optional content-guard. If none is specified, a default one will be used.
20
23
  attr_accessor :content_guard
21
24
 
22
- # A unique name. Ex, `rawhide` and `stable`.
23
- attr_accessor :name
25
+ attr_accessor :pulp_labels
24
26
 
25
27
  # Whether this distribution should be shown in the content app.
26
28
  attr_accessor :hidden
27
29
 
28
- # The latest RepositoryVersion for this Repository will be served.
29
- attr_accessor :repository
30
-
31
- attr_accessor :pulp_labels
32
-
33
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\")
34
31
  attr_accessor :base_path
35
32
 
33
+ # The latest RepositoryVersion for this Repository will be served.
34
+ attr_accessor :repository
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
- :'content_guard' => :'content_guard',
49
48
  :'name' => :'name',
50
- :'hidden' => :'hidden',
51
- :'repository' => :'repository',
49
+ :'content_guard' => :'content_guard',
52
50
  :'pulp_labels' => :'pulp_labels',
51
+ :'hidden' => :'hidden',
53
52
  :'base_path' => :'base_path',
53
+ :'repository' => :'repository',
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
- :'content_guard' => :'String',
69
68
  :'name' => :'String',
70
- :'hidden' => :'Boolean',
71
- :'repository' => :'String',
69
+ :'content_guard' => :'String',
72
70
  :'pulp_labels' => :'Hash<String, String>',
71
+ :'hidden' => :'Boolean',
73
72
  :'base_path' => :'String',
73
+ :'repository' => :'String',
74
74
  :'repository_version' => :'String',
75
75
  :'private' => :'Boolean',
76
76
  :'description' => :'String'
@@ -101,22 +101,12 @@ module PulpContainerClient
101
101
  h[k.to_sym] = v
102
102
  }
103
103
 
104
- if attributes.key?(:'content_guard')
105
- self.content_guard = attributes[:'content_guard']
106
- end
107
-
108
104
  if attributes.key?(:'name')
109
105
  self.name = attributes[:'name']
110
106
  end
111
107
 
112
- if attributes.key?(:'hidden')
113
- self.hidden = attributes[:'hidden']
114
- else
115
- self.hidden = false
116
- end
117
-
118
- if attributes.key?(:'repository')
119
- self.repository = attributes[:'repository']
108
+ if attributes.key?(:'content_guard')
109
+ self.content_guard = attributes[:'content_guard']
120
110
  end
121
111
 
122
112
  if attributes.key?(:'pulp_labels')
@@ -125,10 +115,20 @@ module PulpContainerClient
125
115
  end
126
116
  end
127
117
 
118
+ if attributes.key?(:'hidden')
119
+ self.hidden = attributes[:'hidden']
120
+ else
121
+ self.hidden = false
122
+ end
123
+
128
124
  if attributes.key?(:'base_path')
129
125
  self.base_path = attributes[:'base_path']
130
126
  end
131
127
 
128
+ if attributes.key?(:'repository')
129
+ self.repository = attributes[:'repository']
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
- content_guard == o.content_guard &&
219
218
  name == o.name &&
220
- hidden == o.hidden &&
221
- repository == o.repository &&
219
+ content_guard == o.content_guard &&
222
220
  pulp_labels == o.pulp_labels &&
221
+ hidden == o.hidden &&
223
222
  base_path == o.base_path &&
223
+ repository == o.repository &&
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
- [content_guard, name, hidden, repository, pulp_labels, base_path, repository_version, private, description].hash
238
+ [name, content_guard, pulp_labels, hidden, base_path, repository, 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
+ # A unique name. Ex, `rawhide` and `stable`.
20
+ attr_accessor :name
21
+
19
22
  # An optional content-guard. If none is specified, a default one will be used.
20
23
  attr_accessor :content_guard
21
24
 
22
- # A unique name. Ex, `rawhide` and `stable`.
23
- attr_accessor :name
25
+ attr_accessor :pulp_labels
24
26
 
25
27
  # Whether this distribution should be shown in the content app.
26
28
  attr_accessor :hidden
27
29
 
28
- # The latest RepositoryVersion for this Repository will be served.
29
- attr_accessor :repository
30
-
31
- attr_accessor :pulp_labels
32
-
33
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\")
34
31
  attr_accessor :base_path
35
32
 
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
- :'content_guard' => :'content_guard',
52
51
  :'name' => :'name',
53
- :'hidden' => :'hidden',
54
- :'repository' => :'repository',
52
+ :'content_guard' => :'content_guard',
55
53
  :'pulp_labels' => :'pulp_labels',
54
+ :'hidden' => :'hidden',
56
55
  :'base_path' => :'base_path',
56
+ :'repository' => :'repository',
57
57
  :'remote' => :'remote',
58
58
  :'distributions' => :'distributions',
59
59
  :'private' => :'private',
@@ -69,12 +69,12 @@ module PulpContainerClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
- :'content_guard' => :'String',
73
72
  :'name' => :'String',
74
- :'hidden' => :'Boolean',
75
- :'repository' => :'String',
73
+ :'content_guard' => :'String',
76
74
  :'pulp_labels' => :'Hash<String, String>',
75
+ :'hidden' => :'Boolean',
77
76
  :'base_path' => :'String',
77
+ :'repository' => :'String',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,22 +105,12 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'content_guard')
109
- self.content_guard = attributes[:'content_guard']
110
- end
111
-
112
108
  if attributes.key?(:'name')
113
109
  self.name = attributes[:'name']
114
110
  end
115
111
 
116
- if attributes.key?(:'hidden')
117
- self.hidden = attributes[:'hidden']
118
- else
119
- self.hidden = false
120
- end
121
-
122
- if attributes.key?(:'repository')
123
- self.repository = attributes[:'repository']
112
+ if attributes.key?(:'content_guard')
113
+ self.content_guard = attributes[:'content_guard']
124
114
  end
125
115
 
126
116
  if attributes.key?(:'pulp_labels')
@@ -129,10 +119,20 @@ module PulpContainerClient
129
119
  end
130
120
  end
131
121
 
122
+ if attributes.key?(:'hidden')
123
+ self.hidden = attributes[:'hidden']
124
+ else
125
+ self.hidden = false
126
+ end
127
+
132
128
  if attributes.key?(:'base_path')
133
129
  self.base_path = attributes[:'base_path']
134
130
  end
135
131
 
132
+ if attributes.key?(:'repository')
133
+ self.repository = attributes[:'repository']
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
- content_guard == o.content_guard &&
229
228
  name == o.name &&
230
- hidden == o.hidden &&
231
- repository == o.repository &&
229
+ content_guard == o.content_guard &&
232
230
  pulp_labels == o.pulp_labels &&
231
+ hidden == o.hidden &&
233
232
  base_path == o.base_path &&
233
+ repository == o.repository &&
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
- [content_guard, name, hidden, repository, pulp_labels, base_path, remote, distributions, private, description].hash
249
+ [name, content_guard, pulp_labels, hidden, base_path, repository, remote, distributions, private, description].hash
250
250
  end
251
251
 
252
252
  # Builds the object from hash