pulp_container_client 2.20.2 → 2.20.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +8 -8
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
  9. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  11. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +37 -37
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +53 -53
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +37 -37
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +53 -53
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +55 -55
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +68 -68
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +37 -37
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +37 -37
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +47 -47
  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 +5 -5
  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 +5 -5
  31. metadata +62 -62
@@ -15,48 +15,48 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepository
18
- # A unique name for this repository.
19
- attr_accessor :name
20
-
21
- attr_accessor :pulp_labels
18
+ # An optional description.
19
+ attr_accessor :description
22
20
 
23
21
  # Retain X versions of the repository. Default is null which retains all versions.
24
22
  attr_accessor :retain_repo_versions
25
23
 
26
- # An optional description.
27
- attr_accessor :description
24
+ # A unique name for this repository.
25
+ attr_accessor :name
28
26
 
29
27
  # A reference to an associated signing service.
30
28
  attr_accessor :manifest_signing_service
31
29
 
30
+ attr_accessor :pulp_labels
31
+
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'name' => :'name',
36
- :'pulp_labels' => :'pulp_labels',
37
- :'retain_repo_versions' => :'retain_repo_versions',
38
35
  :'description' => :'description',
39
- :'manifest_signing_service' => :'manifest_signing_service'
36
+ :'retain_repo_versions' => :'retain_repo_versions',
37
+ :'name' => :'name',
38
+ :'manifest_signing_service' => :'manifest_signing_service',
39
+ :'pulp_labels' => :'pulp_labels'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'name' => :'String',
47
- :'pulp_labels' => :'Hash<String, String>',
48
- :'retain_repo_versions' => :'Integer',
49
46
  :'description' => :'String',
50
- :'manifest_signing_service' => :'String'
47
+ :'retain_repo_versions' => :'Integer',
48
+ :'name' => :'String',
49
+ :'manifest_signing_service' => :'String',
50
+ :'pulp_labels' => :'Hash<String, String>'
51
51
  }
52
52
  end
53
53
 
54
54
  # List of attributes with nullable: true
55
55
  def self.openapi_nullable
56
56
  Set.new([
57
- :'retain_repo_versions',
58
57
  :'description',
59
- :'manifest_signing_service'
58
+ :'retain_repo_versions',
59
+ :'manifest_signing_service',
60
60
  ])
61
61
  end
62
62
 
@@ -75,47 +75,47 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
- if attributes.key?(:'name')
79
- self.name = attributes[:'name']
80
- end
81
-
82
- if attributes.key?(:'pulp_labels')
83
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
84
- self.pulp_labels = value
85
- end
78
+ if attributes.key?(:'description')
79
+ self.description = attributes[:'description']
86
80
  end
87
81
 
88
82
  if attributes.key?(:'retain_repo_versions')
89
83
  self.retain_repo_versions = attributes[:'retain_repo_versions']
90
84
  end
91
85
 
92
- if attributes.key?(:'description')
93
- self.description = attributes[:'description']
86
+ if attributes.key?(:'name')
87
+ self.name = attributes[:'name']
94
88
  end
95
89
 
96
90
  if attributes.key?(:'manifest_signing_service')
97
91
  self.manifest_signing_service = attributes[:'manifest_signing_service']
98
92
  end
93
+
94
+ if attributes.key?(:'pulp_labels')
95
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
96
+ self.pulp_labels = value
97
+ end
98
+ end
99
99
  end
100
100
 
101
101
  # Show invalid properties with the reasons. Usually used together with valid?
102
102
  # @return Array for valid properties with the reasons
103
103
  def list_invalid_properties
104
104
  invalid_properties = Array.new
105
- if @name.nil?
106
- invalid_properties.push('invalid value for "name", name cannot be nil.')
107
- end
108
-
109
- if @name.to_s.length < 1
110
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
105
+ if !@description.nil? && @description.to_s.length < 1
106
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
111
107
  end
112
108
 
113
109
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
114
110
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
115
111
  end
116
112
 
117
- if !@description.nil? && @description.to_s.length < 1
118
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
113
+ if @name.nil?
114
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
115
+ end
116
+
117
+ if @name.to_s.length < 1
118
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
119
119
  end
120
120
 
121
121
  invalid_properties
@@ -124,25 +124,21 @@ module PulpContainerClient
124
124
  # Check to see if the all the properties in the model are valid
125
125
  # @return true if the model is valid
126
126
  def valid?
127
+ return false if !@description.nil? && @description.to_s.length < 1
128
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
129
  return false if @name.nil?
128
130
  return false if @name.to_s.length < 1
129
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
130
- return false if !@description.nil? && @description.to_s.length < 1
131
131
  true
132
132
  end
133
133
 
134
134
  # Custom attribute writer method with validation
135
- # @param [Object] name Value to be assigned
136
- def name=(name)
137
- if name.nil?
138
- fail ArgumentError, 'name cannot be nil'
139
- end
140
-
141
- if name.to_s.length < 1
142
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
135
+ # @param [Object] description Value to be assigned
136
+ def description=(description)
137
+ if !description.nil? && description.to_s.length < 1
138
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
143
139
  end
144
140
 
145
- @name = name
141
+ @description = description
146
142
  end
147
143
 
148
144
  # Custom attribute writer method with validation
@@ -156,13 +152,17 @@ module PulpContainerClient
156
152
  end
157
153
 
158
154
  # Custom attribute writer method with validation
159
- # @param [Object] description Value to be assigned
160
- def description=(description)
161
- if !description.nil? && description.to_s.length < 1
162
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
155
+ # @param [Object] name Value to be assigned
156
+ def name=(name)
157
+ if name.nil?
158
+ fail ArgumentError, 'name cannot be nil'
163
159
  end
164
160
 
165
- @description = description
161
+ if name.to_s.length < 1
162
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
163
+ end
164
+
165
+ @name = name
166
166
  end
167
167
 
168
168
  # Checks equality by comparing each attribute.
@@ -170,11 +170,11 @@ module PulpContainerClient
170
170
  def ==(o)
171
171
  return true if self.equal?(o)
172
172
  self.class == o.class &&
173
- name == o.name &&
174
- pulp_labels == o.pulp_labels &&
175
- retain_repo_versions == o.retain_repo_versions &&
176
173
  description == o.description &&
177
- manifest_signing_service == o.manifest_signing_service
174
+ retain_repo_versions == o.retain_repo_versions &&
175
+ name == o.name &&
176
+ manifest_signing_service == o.manifest_signing_service &&
177
+ pulp_labels == o.pulp_labels
178
178
  end
179
179
 
180
180
  # @see the `==` method
@@ -186,7 +186,7 @@ module PulpContainerClient
186
186
  # Calculates hash code according to all attributes.
187
187
  # @return [Integer] Hash code
188
188
  def hash
189
- [name, pulp_labels, retain_repo_versions, description, manifest_signing_service].hash
189
+ [description, retain_repo_versions, name, manifest_signing_service, pulp_labels].hash
190
190
  end
191
191
 
192
192
  # Builds the object from hash
@@ -15,70 +15,70 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- attr_accessor :versions_href
19
-
20
- attr_accessor :pulp_href
21
-
22
- # A unique name for this repository.
23
- attr_accessor :name
18
+ # Timestamp of creation.
19
+ attr_accessor :pulp_created
24
20
 
25
- attr_accessor :pulp_labels
21
+ attr_accessor :latest_version_href
26
22
 
27
- # Retain X versions of the repository. Default is null which retains all versions.
28
- attr_accessor :retain_repo_versions
23
+ # An optional description.
24
+ attr_accessor :description
29
25
 
30
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.
31
27
  attr_accessor :pulp_last_updated
32
28
 
33
- # An optional description.
34
- attr_accessor :description
29
+ attr_accessor :versions_href
35
30
 
36
- # Timestamp of creation.
37
- attr_accessor :pulp_created
31
+ # Retain X versions of the repository. Default is null which retains all versions.
32
+ attr_accessor :retain_repo_versions
38
33
 
39
- attr_accessor :latest_version_href
34
+ # A unique name for this repository.
35
+ attr_accessor :name
40
36
 
41
37
  # A reference to an associated signing service.
42
38
  attr_accessor :manifest_signing_service
43
39
 
40
+ attr_accessor :pulp_href
41
+
42
+ attr_accessor :pulp_labels
43
+
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
- :'versions_href' => :'versions_href',
48
- :'pulp_href' => :'pulp_href',
49
- :'name' => :'name',
50
- :'pulp_labels' => :'pulp_labels',
51
- :'retain_repo_versions' => :'retain_repo_versions',
52
- :'pulp_last_updated' => :'pulp_last_updated',
53
- :'description' => :'description',
54
47
  :'pulp_created' => :'pulp_created',
55
48
  :'latest_version_href' => :'latest_version_href',
56
- :'manifest_signing_service' => :'manifest_signing_service'
49
+ :'description' => :'description',
50
+ :'pulp_last_updated' => :'pulp_last_updated',
51
+ :'versions_href' => :'versions_href',
52
+ :'retain_repo_versions' => :'retain_repo_versions',
53
+ :'name' => :'name',
54
+ :'manifest_signing_service' => :'manifest_signing_service',
55
+ :'pulp_href' => :'pulp_href',
56
+ :'pulp_labels' => :'pulp_labels'
57
57
  }
58
58
  end
59
59
 
60
60
  # Attribute type mapping.
61
61
  def self.openapi_types
62
62
  {
63
- :'versions_href' => :'String',
64
- :'pulp_href' => :'String',
65
- :'name' => :'String',
66
- :'pulp_labels' => :'Hash<String, String>',
67
- :'retain_repo_versions' => :'Integer',
68
- :'pulp_last_updated' => :'DateTime',
69
- :'description' => :'String',
70
63
  :'pulp_created' => :'DateTime',
71
64
  :'latest_version_href' => :'String',
72
- :'manifest_signing_service' => :'String'
65
+ :'description' => :'String',
66
+ :'pulp_last_updated' => :'DateTime',
67
+ :'versions_href' => :'String',
68
+ :'retain_repo_versions' => :'Integer',
69
+ :'name' => :'String',
70
+ :'manifest_signing_service' => :'String',
71
+ :'pulp_href' => :'String',
72
+ :'pulp_labels' => :'Hash<String, String>'
73
73
  }
74
74
  end
75
75
 
76
76
  # List of attributes with nullable: true
77
77
  def self.openapi_nullable
78
78
  Set.new([
79
- :'retain_repo_versions',
80
79
  :'description',
81
- :'manifest_signing_service'
80
+ :'retain_repo_versions',
81
+ :'manifest_signing_service',
82
82
  ])
83
83
  end
84
84
 
@@ -97,69 +97,69 @@ module PulpContainerClient
97
97
  h[k.to_sym] = v
98
98
  }
99
99
 
100
- if attributes.key?(:'versions_href')
101
- self.versions_href = attributes[:'versions_href']
102
- end
103
-
104
- if attributes.key?(:'pulp_href')
105
- self.pulp_href = attributes[:'pulp_href']
106
- end
107
-
108
- if attributes.key?(:'name')
109
- self.name = attributes[:'name']
100
+ if attributes.key?(:'pulp_created')
101
+ self.pulp_created = attributes[:'pulp_created']
110
102
  end
111
103
 
112
- if attributes.key?(:'pulp_labels')
113
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
114
- self.pulp_labels = value
115
- end
104
+ if attributes.key?(:'latest_version_href')
105
+ self.latest_version_href = attributes[:'latest_version_href']
116
106
  end
117
107
 
118
- if attributes.key?(:'retain_repo_versions')
119
- self.retain_repo_versions = attributes[:'retain_repo_versions']
108
+ if attributes.key?(:'description')
109
+ self.description = attributes[:'description']
120
110
  end
121
111
 
122
112
  if attributes.key?(:'pulp_last_updated')
123
113
  self.pulp_last_updated = attributes[:'pulp_last_updated']
124
114
  end
125
115
 
126
- if attributes.key?(:'description')
127
- self.description = attributes[:'description']
116
+ if attributes.key?(:'versions_href')
117
+ self.versions_href = attributes[:'versions_href']
128
118
  end
129
119
 
130
- if attributes.key?(:'pulp_created')
131
- self.pulp_created = attributes[:'pulp_created']
120
+ if attributes.key?(:'retain_repo_versions')
121
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
132
122
  end
133
123
 
134
- if attributes.key?(:'latest_version_href')
135
- self.latest_version_href = attributes[:'latest_version_href']
124
+ if attributes.key?(:'name')
125
+ self.name = attributes[:'name']
136
126
  end
137
127
 
138
128
  if attributes.key?(:'manifest_signing_service')
139
129
  self.manifest_signing_service = attributes[:'manifest_signing_service']
140
130
  end
131
+
132
+ if attributes.key?(:'pulp_href')
133
+ self.pulp_href = attributes[:'pulp_href']
134
+ end
135
+
136
+ if attributes.key?(:'pulp_labels')
137
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
138
+ self.pulp_labels = value
139
+ end
140
+ end
141
141
  end
142
142
 
143
143
  # Show invalid properties with the reasons. Usually used together with valid?
144
144
  # @return Array for valid properties with the reasons
145
145
  def list_invalid_properties
146
146
  invalid_properties = Array.new
147
- if @name.nil?
148
- invalid_properties.push('invalid value for "name", name cannot be nil.')
149
- end
150
-
151
147
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
152
148
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
153
149
  end
154
150
 
151
+ if @name.nil?
152
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
153
+ end
154
+
155
155
  invalid_properties
156
156
  end
157
157
 
158
158
  # Check to see if the all the properties in the model are valid
159
159
  # @return true if the model is valid
160
160
  def valid?
161
- return false if @name.nil?
162
161
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
162
+ return false if @name.nil?
163
163
  true
164
164
  end
165
165
 
@@ -178,16 +178,16 @@ module PulpContainerClient
178
178
  def ==(o)
179
179
  return true if self.equal?(o)
180
180
  self.class == o.class &&
181
- versions_href == o.versions_href &&
182
- pulp_href == o.pulp_href &&
183
- name == o.name &&
184
- pulp_labels == o.pulp_labels &&
185
- retain_repo_versions == o.retain_repo_versions &&
186
- pulp_last_updated == o.pulp_last_updated &&
187
- description == o.description &&
188
181
  pulp_created == o.pulp_created &&
189
182
  latest_version_href == o.latest_version_href &&
190
- manifest_signing_service == o.manifest_signing_service
183
+ description == o.description &&
184
+ pulp_last_updated == o.pulp_last_updated &&
185
+ versions_href == o.versions_href &&
186
+ retain_repo_versions == o.retain_repo_versions &&
187
+ name == o.name &&
188
+ manifest_signing_service == o.manifest_signing_service &&
189
+ pulp_href == o.pulp_href &&
190
+ pulp_labels == o.pulp_labels
191
191
  end
192
192
 
193
193
  # @see the `==` method
@@ -199,7 +199,7 @@ module PulpContainerClient
199
199
  # Calculates hash code according to all attributes.
200
200
  # @return [Integer] Hash code
201
201
  def hash
202
- [versions_href, pulp_href, name, pulp_labels, retain_repo_versions, pulp_last_updated, description, pulp_created, latest_version_href, manifest_signing_service].hash
202
+ [pulp_created, latest_version_href, description, pulp_last_updated, versions_href, retain_repo_versions, name, manifest_signing_service, pulp_href, pulp_labels].hash
203
203
  end
204
204
 
205
205
  # Builds the object from hash
@@ -15,23 +15,23 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- # Whether this distribution should be shown in the content app.
19
- attr_accessor :hidden
20
-
21
- # An optional content-guard. If none is specified, a default one will be used.
22
- attr_accessor :content_guard
18
+ # The latest RepositoryVersion for this Repository will be served.
19
+ attr_accessor :repository
23
20
 
24
21
  # A unique name. Ex, `rawhide` and `stable`.
25
22
  attr_accessor :name
26
23
 
27
- attr_accessor :pulp_labels
28
-
29
- # The latest RepositoryVersion for this Repository will be served.
30
- attr_accessor :repository
31
-
32
24
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
33
25
  attr_accessor :base_path
34
26
 
27
+ # An optional content-guard. If none is specified, a default one will be used.
28
+ attr_accessor :content_guard
29
+
30
+ attr_accessor :pulp_labels
31
+
32
+ # Whether this distribution should be shown in the content app.
33
+ attr_accessor :hidden
34
+
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
37
37
 
@@ -44,12 +44,12 @@ module PulpContainerClient
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
- :'hidden' => :'hidden',
48
- :'content_guard' => :'content_guard',
49
- :'name' => :'name',
50
- :'pulp_labels' => :'pulp_labels',
51
47
  :'repository' => :'repository',
48
+ :'name' => :'name',
52
49
  :'base_path' => :'base_path',
50
+ :'content_guard' => :'content_guard',
51
+ :'pulp_labels' => :'pulp_labels',
52
+ :'hidden' => :'hidden',
53
53
  :'repository_version' => :'repository_version',
54
54
  :'private' => :'private',
55
55
  :'description' => :'description'
@@ -59,12 +59,12 @@ module PulpContainerClient
59
59
  # Attribute type mapping.
60
60
  def self.openapi_types
61
61
  {
62
- :'hidden' => :'Boolean',
63
- :'content_guard' => :'String',
64
- :'name' => :'String',
65
- :'pulp_labels' => :'Hash<String, String>',
66
62
  :'repository' => :'String',
63
+ :'name' => :'String',
67
64
  :'base_path' => :'String',
65
+ :'content_guard' => :'String',
66
+ :'pulp_labels' => :'Hash<String, String>',
67
+ :'hidden' => :'Boolean',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -95,32 +95,32 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
- if attributes.key?(:'hidden')
99
- self.hidden = attributes[:'hidden']
100
- else
101
- self.hidden = false
102
- end
103
-
104
- if attributes.key?(:'content_guard')
105
- self.content_guard = attributes[:'content_guard']
98
+ if attributes.key?(:'repository')
99
+ self.repository = attributes[:'repository']
106
100
  end
107
101
 
108
102
  if attributes.key?(:'name')
109
103
  self.name = attributes[:'name']
110
104
  end
111
105
 
106
+ if attributes.key?(:'base_path')
107
+ self.base_path = attributes[:'base_path']
108
+ end
109
+
110
+ if attributes.key?(:'content_guard')
111
+ self.content_guard = attributes[:'content_guard']
112
+ end
113
+
112
114
  if attributes.key?(:'pulp_labels')
113
115
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
114
116
  self.pulp_labels = value
115
117
  end
116
118
  end
117
119
 
118
- if attributes.key?(:'repository')
119
- self.repository = attributes[:'repository']
120
- end
121
-
122
- if attributes.key?(:'base_path')
123
- self.base_path = attributes[:'base_path']
120
+ if attributes.key?(:'hidden')
121
+ self.hidden = attributes[:'hidden']
122
+ else
123
+ self.hidden = false
124
124
  end
125
125
 
126
126
  if attributes.key?(:'repository_version')
@@ -199,12 +199,12 @@ module PulpContainerClient
199
199
  def ==(o)
200
200
  return true if self.equal?(o)
201
201
  self.class == o.class &&
202
- hidden == o.hidden &&
203
- content_guard == o.content_guard &&
204
- name == o.name &&
205
- pulp_labels == o.pulp_labels &&
206
202
  repository == o.repository &&
203
+ name == o.name &&
207
204
  base_path == o.base_path &&
205
+ content_guard == o.content_guard &&
206
+ pulp_labels == o.pulp_labels &&
207
+ hidden == o.hidden &&
208
208
  repository_version == o.repository_version &&
209
209
  private == o.private &&
210
210
  description == o.description
@@ -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
- [hidden, content_guard, name, pulp_labels, repository, base_path, repository_version, private, description].hash
222
+ [repository, name, base_path, content_guard, pulp_labels, hidden, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash