pulp_container_client 2.22.2 → 2.22.4
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +6 -6
- data/docs/ContainerContainerDistributionResponse.md +14 -14
- data/docs/ContainerContainerPullThroughDistribution.md +6 -6
- data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
- data/docs/ContainerContainerPushRepository.md +4 -4
- data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPushRepository.md +4 -4
- data/lib/pulp_container_client/models/container_container_distribution.rb +51 -51
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +66 -66
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +51 -51
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +66 -66
- data/lib/pulp_container_client/models/container_container_push_repository.rb +33 -33
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +60 -60
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +42 -42
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +42 -42
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +33 -33
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +11 -11
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
- data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +2 -2
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +2 -2
- metadata +61 -61
|
@@ -15,36 +15,36 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# A serializer for ContainerDistribution.
|
|
17
17
|
class ContainerContainerDistributionResponse
|
|
18
|
-
#
|
|
19
|
-
attr_accessor :
|
|
20
|
-
|
|
21
|
-
# 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.
|
|
22
|
-
attr_accessor :pulp_last_updated
|
|
18
|
+
# Whether this distribution should be shown in the content app.
|
|
19
|
+
attr_accessor :hidden
|
|
23
20
|
|
|
24
21
|
attr_accessor :pulp_labels
|
|
25
22
|
|
|
26
|
-
# An optional content-guard. If none is specified, a default one will be used.
|
|
27
|
-
attr_accessor :content_guard
|
|
28
|
-
|
|
29
23
|
# Timestamp of creation.
|
|
30
24
|
attr_accessor :pulp_created
|
|
31
25
|
|
|
32
|
-
|
|
33
|
-
attr_accessor :base_path
|
|
26
|
+
attr_accessor :pulp_href
|
|
34
27
|
|
|
35
|
-
#
|
|
36
|
-
attr_accessor :
|
|
28
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
29
|
+
attr_accessor :content_guard
|
|
37
30
|
|
|
38
|
-
#
|
|
39
|
-
attr_accessor :
|
|
31
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
32
|
+
attr_accessor :repository
|
|
40
33
|
|
|
41
|
-
|
|
34
|
+
# Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
|
|
35
|
+
attr_accessor :no_content_change_since
|
|
42
36
|
|
|
43
37
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
44
38
|
attr_accessor :name
|
|
45
39
|
|
|
46
|
-
# Timestamp
|
|
47
|
-
attr_accessor :
|
|
40
|
+
# 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.
|
|
41
|
+
attr_accessor :pulp_last_updated
|
|
42
|
+
|
|
43
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
44
|
+
attr_accessor :base_path
|
|
45
|
+
|
|
46
|
+
# The Pulp Resource Name (PRN).
|
|
47
|
+
attr_accessor :prn
|
|
48
48
|
|
|
49
49
|
# RepositoryVersion to be served
|
|
50
50
|
attr_accessor :repository_version
|
|
@@ -67,17 +67,17 @@ module PulpContainerClient
|
|
|
67
67
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
68
68
|
def self.attribute_map
|
|
69
69
|
{
|
|
70
|
-
:'
|
|
71
|
-
:'pulp_last_updated' => :'pulp_last_updated',
|
|
70
|
+
:'hidden' => :'hidden',
|
|
72
71
|
:'pulp_labels' => :'pulp_labels',
|
|
73
|
-
:'content_guard' => :'content_guard',
|
|
74
72
|
:'pulp_created' => :'pulp_created',
|
|
75
|
-
:'base_path' => :'base_path',
|
|
76
|
-
:'prn' => :'prn',
|
|
77
|
-
:'hidden' => :'hidden',
|
|
78
73
|
:'pulp_href' => :'pulp_href',
|
|
79
|
-
:'
|
|
74
|
+
:'content_guard' => :'content_guard',
|
|
75
|
+
:'repository' => :'repository',
|
|
80
76
|
:'no_content_change_since' => :'no_content_change_since',
|
|
77
|
+
:'name' => :'name',
|
|
78
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
79
|
+
:'base_path' => :'base_path',
|
|
80
|
+
:'prn' => :'prn',
|
|
81
81
|
:'repository_version' => :'repository_version',
|
|
82
82
|
:'registry_path' => :'registry_path',
|
|
83
83
|
:'remote' => :'remote',
|
|
@@ -90,17 +90,17 @@ module PulpContainerClient
|
|
|
90
90
|
# Attribute type mapping.
|
|
91
91
|
def self.openapi_types
|
|
92
92
|
{
|
|
93
|
-
:'
|
|
94
|
-
:'pulp_last_updated' => :'DateTime',
|
|
93
|
+
:'hidden' => :'Boolean',
|
|
95
94
|
:'pulp_labels' => :'Hash<String, String>',
|
|
96
|
-
:'content_guard' => :'String',
|
|
97
95
|
:'pulp_created' => :'DateTime',
|
|
98
|
-
:'base_path' => :'String',
|
|
99
|
-
:'prn' => :'String',
|
|
100
|
-
:'hidden' => :'Boolean',
|
|
101
96
|
:'pulp_href' => :'String',
|
|
102
|
-
:'
|
|
97
|
+
:'content_guard' => :'String',
|
|
98
|
+
:'repository' => :'String',
|
|
103
99
|
:'no_content_change_since' => :'String',
|
|
100
|
+
:'name' => :'String',
|
|
101
|
+
:'pulp_last_updated' => :'DateTime',
|
|
102
|
+
:'base_path' => :'String',
|
|
103
|
+
:'prn' => :'String',
|
|
104
104
|
:'repository_version' => :'String',
|
|
105
105
|
:'registry_path' => :'String',
|
|
106
106
|
:'remote' => :'String',
|
|
@@ -134,12 +134,10 @@ module PulpContainerClient
|
|
|
134
134
|
h[k.to_sym] = v
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
-
if attributes.key?(:'
|
|
138
|
-
self.
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
if attributes.key?(:'pulp_last_updated')
|
|
142
|
-
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
137
|
+
if attributes.key?(:'hidden')
|
|
138
|
+
self.hidden = attributes[:'hidden']
|
|
139
|
+
else
|
|
140
|
+
self.hidden = false
|
|
143
141
|
end
|
|
144
142
|
|
|
145
143
|
if attributes.key?(:'pulp_labels')
|
|
@@ -148,38 +146,40 @@ module PulpContainerClient
|
|
|
148
146
|
end
|
|
149
147
|
end
|
|
150
148
|
|
|
151
|
-
if attributes.key?(:'content_guard')
|
|
152
|
-
self.content_guard = attributes[:'content_guard']
|
|
153
|
-
end
|
|
154
|
-
|
|
155
149
|
if attributes.key?(:'pulp_created')
|
|
156
150
|
self.pulp_created = attributes[:'pulp_created']
|
|
157
151
|
end
|
|
158
152
|
|
|
159
|
-
if attributes.key?(:'
|
|
160
|
-
self.
|
|
153
|
+
if attributes.key?(:'pulp_href')
|
|
154
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
161
155
|
end
|
|
162
156
|
|
|
163
|
-
if attributes.key?(:'
|
|
164
|
-
self.
|
|
157
|
+
if attributes.key?(:'content_guard')
|
|
158
|
+
self.content_guard = attributes[:'content_guard']
|
|
165
159
|
end
|
|
166
160
|
|
|
167
|
-
if attributes.key?(:'
|
|
168
|
-
self.
|
|
169
|
-
else
|
|
170
|
-
self.hidden = false
|
|
161
|
+
if attributes.key?(:'repository')
|
|
162
|
+
self.repository = attributes[:'repository']
|
|
171
163
|
end
|
|
172
164
|
|
|
173
|
-
if attributes.key?(:'
|
|
174
|
-
self.
|
|
165
|
+
if attributes.key?(:'no_content_change_since')
|
|
166
|
+
self.no_content_change_since = attributes[:'no_content_change_since']
|
|
175
167
|
end
|
|
176
168
|
|
|
177
169
|
if attributes.key?(:'name')
|
|
178
170
|
self.name = attributes[:'name']
|
|
179
171
|
end
|
|
180
172
|
|
|
181
|
-
if attributes.key?(:'
|
|
182
|
-
self.
|
|
173
|
+
if attributes.key?(:'pulp_last_updated')
|
|
174
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
if attributes.key?(:'base_path')
|
|
178
|
+
self.base_path = attributes[:'base_path']
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
if attributes.key?(:'prn')
|
|
182
|
+
self.prn = attributes[:'prn']
|
|
183
183
|
end
|
|
184
184
|
|
|
185
185
|
if attributes.key?(:'repository_version')
|
|
@@ -211,22 +211,22 @@ module PulpContainerClient
|
|
|
211
211
|
# @return Array for valid properties with the reasons
|
|
212
212
|
def list_invalid_properties
|
|
213
213
|
invalid_properties = Array.new
|
|
214
|
-
if @base_path.nil?
|
|
215
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
216
|
-
end
|
|
217
|
-
|
|
218
214
|
if @name.nil?
|
|
219
215
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
220
216
|
end
|
|
221
217
|
|
|
218
|
+
if @base_path.nil?
|
|
219
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
220
|
+
end
|
|
221
|
+
|
|
222
222
|
invalid_properties
|
|
223
223
|
end
|
|
224
224
|
|
|
225
225
|
# Check to see if the all the properties in the model are valid
|
|
226
226
|
# @return true if the model is valid
|
|
227
227
|
def valid?
|
|
228
|
-
return false if @base_path.nil?
|
|
229
228
|
return false if @name.nil?
|
|
229
|
+
return false if @base_path.nil?
|
|
230
230
|
true
|
|
231
231
|
end
|
|
232
232
|
|
|
@@ -235,17 +235,17 @@ module PulpContainerClient
|
|
|
235
235
|
def ==(o)
|
|
236
236
|
return true if self.equal?(o)
|
|
237
237
|
self.class == o.class &&
|
|
238
|
-
|
|
239
|
-
pulp_last_updated == o.pulp_last_updated &&
|
|
238
|
+
hidden == o.hidden &&
|
|
240
239
|
pulp_labels == o.pulp_labels &&
|
|
241
|
-
content_guard == o.content_guard &&
|
|
242
240
|
pulp_created == o.pulp_created &&
|
|
243
|
-
base_path == o.base_path &&
|
|
244
|
-
prn == o.prn &&
|
|
245
|
-
hidden == o.hidden &&
|
|
246
241
|
pulp_href == o.pulp_href &&
|
|
247
|
-
|
|
242
|
+
content_guard == o.content_guard &&
|
|
243
|
+
repository == o.repository &&
|
|
248
244
|
no_content_change_since == o.no_content_change_since &&
|
|
245
|
+
name == o.name &&
|
|
246
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
247
|
+
base_path == o.base_path &&
|
|
248
|
+
prn == o.prn &&
|
|
249
249
|
repository_version == o.repository_version &&
|
|
250
250
|
registry_path == o.registry_path &&
|
|
251
251
|
remote == o.remote &&
|
|
@@ -263,7 +263,7 @@ module PulpContainerClient
|
|
|
263
263
|
# Calculates hash code according to all attributes.
|
|
264
264
|
# @return [Integer] Hash code
|
|
265
265
|
def hash
|
|
266
|
-
[
|
|
266
|
+
[hidden, pulp_labels, pulp_created, pulp_href, content_guard, repository, no_content_change_since, name, pulp_last_updated, base_path, prn, repository_version, registry_path, remote, namespace, private, description].hash
|
|
267
267
|
end
|
|
268
268
|
|
|
269
269
|
# Builds the object from hash
|
|
@@ -15,23 +15,23 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# A serializer for a specialized pull-through distribution referencing sub-distributions.
|
|
17
17
|
class ContainerContainerPullThroughDistribution
|
|
18
|
-
#
|
|
19
|
-
attr_accessor :
|
|
18
|
+
# Whether this distribution should be shown in the content app.
|
|
19
|
+
attr_accessor :hidden
|
|
20
20
|
|
|
21
21
|
attr_accessor :pulp_labels
|
|
22
22
|
|
|
23
23
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
24
24
|
attr_accessor :content_guard
|
|
25
25
|
|
|
26
|
-
# The
|
|
27
|
-
attr_accessor :
|
|
28
|
-
|
|
29
|
-
# Whether this distribution should be shown in the content app.
|
|
30
|
-
attr_accessor :hidden
|
|
26
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
27
|
+
attr_accessor :repository
|
|
31
28
|
|
|
32
29
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
33
30
|
attr_accessor :name
|
|
34
31
|
|
|
32
|
+
# 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
|
+
attr_accessor :base_path
|
|
34
|
+
|
|
35
35
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
36
36
|
attr_accessor :remote
|
|
37
37
|
|
|
@@ -47,12 +47,12 @@ module PulpContainerClient
|
|
|
47
47
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
48
48
|
def self.attribute_map
|
|
49
49
|
{
|
|
50
|
-
:'
|
|
50
|
+
:'hidden' => :'hidden',
|
|
51
51
|
:'pulp_labels' => :'pulp_labels',
|
|
52
52
|
:'content_guard' => :'content_guard',
|
|
53
|
-
:'
|
|
54
|
-
:'hidden' => :'hidden',
|
|
53
|
+
:'repository' => :'repository',
|
|
55
54
|
:'name' => :'name',
|
|
55
|
+
:'base_path' => :'base_path',
|
|
56
56
|
:'remote' => :'remote',
|
|
57
57
|
:'distributions' => :'distributions',
|
|
58
58
|
:'private' => :'private',
|
|
@@ -63,12 +63,12 @@ module PulpContainerClient
|
|
|
63
63
|
# Attribute type mapping.
|
|
64
64
|
def self.openapi_types
|
|
65
65
|
{
|
|
66
|
-
:'
|
|
66
|
+
:'hidden' => :'Boolean',
|
|
67
67
|
:'pulp_labels' => :'Hash<String, String>',
|
|
68
68
|
:'content_guard' => :'String',
|
|
69
|
-
:'
|
|
70
|
-
:'hidden' => :'Boolean',
|
|
69
|
+
:'repository' => :'String',
|
|
71
70
|
:'name' => :'String',
|
|
71
|
+
:'base_path' => :'String',
|
|
72
72
|
:'remote' => :'String',
|
|
73
73
|
:'distributions' => :'Array<String>',
|
|
74
74
|
:'private' => :'Boolean',
|
|
@@ -99,8 +99,10 @@ module PulpContainerClient
|
|
|
99
99
|
h[k.to_sym] = v
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
if attributes.key?(:'
|
|
103
|
-
self.
|
|
102
|
+
if attributes.key?(:'hidden')
|
|
103
|
+
self.hidden = attributes[:'hidden']
|
|
104
|
+
else
|
|
105
|
+
self.hidden = false
|
|
104
106
|
end
|
|
105
107
|
|
|
106
108
|
if attributes.key?(:'pulp_labels')
|
|
@@ -113,20 +115,18 @@ module PulpContainerClient
|
|
|
113
115
|
self.content_guard = attributes[:'content_guard']
|
|
114
116
|
end
|
|
115
117
|
|
|
116
|
-
if attributes.key?(:'
|
|
117
|
-
self.
|
|
118
|
-
end
|
|
119
|
-
|
|
120
|
-
if attributes.key?(:'hidden')
|
|
121
|
-
self.hidden = attributes[:'hidden']
|
|
122
|
-
else
|
|
123
|
-
self.hidden = false
|
|
118
|
+
if attributes.key?(:'repository')
|
|
119
|
+
self.repository = attributes[:'repository']
|
|
124
120
|
end
|
|
125
121
|
|
|
126
122
|
if attributes.key?(:'name')
|
|
127
123
|
self.name = attributes[:'name']
|
|
128
124
|
end
|
|
129
125
|
|
|
126
|
+
if attributes.key?(:'base_path')
|
|
127
|
+
self.base_path = attributes[:'base_path']
|
|
128
|
+
end
|
|
129
|
+
|
|
130
130
|
if attributes.key?(:'remote')
|
|
131
131
|
self.remote = attributes[:'remote']
|
|
132
132
|
end
|
|
@@ -150,14 +150,6 @@ module PulpContainerClient
|
|
|
150
150
|
# @return Array for valid properties with the reasons
|
|
151
151
|
def list_invalid_properties
|
|
152
152
|
invalid_properties = Array.new
|
|
153
|
-
if @base_path.nil?
|
|
154
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
155
|
-
end
|
|
156
|
-
|
|
157
|
-
if @base_path.to_s.length < 1
|
|
158
|
-
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
159
|
-
end
|
|
160
|
-
|
|
161
153
|
if @name.nil?
|
|
162
154
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
163
155
|
end
|
|
@@ -166,6 +158,14 @@ module PulpContainerClient
|
|
|
166
158
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
167
159
|
end
|
|
168
160
|
|
|
161
|
+
if @base_path.nil?
|
|
162
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
if @base_path.to_s.length < 1
|
|
166
|
+
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
167
|
+
end
|
|
168
|
+
|
|
169
169
|
if @remote.nil?
|
|
170
170
|
invalid_properties.push('invalid value for "remote", remote cannot be nil.')
|
|
171
171
|
end
|
|
@@ -180,29 +180,15 @@ module PulpContainerClient
|
|
|
180
180
|
# Check to see if the all the properties in the model are valid
|
|
181
181
|
# @return true if the model is valid
|
|
182
182
|
def valid?
|
|
183
|
-
return false if @base_path.nil?
|
|
184
|
-
return false if @base_path.to_s.length < 1
|
|
185
183
|
return false if @name.nil?
|
|
186
184
|
return false if @name.to_s.length < 1
|
|
185
|
+
return false if @base_path.nil?
|
|
186
|
+
return false if @base_path.to_s.length < 1
|
|
187
187
|
return false if @remote.nil?
|
|
188
188
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
189
189
|
true
|
|
190
190
|
end
|
|
191
191
|
|
|
192
|
-
# Custom attribute writer method with validation
|
|
193
|
-
# @param [Object] base_path Value to be assigned
|
|
194
|
-
def base_path=(base_path)
|
|
195
|
-
if base_path.nil?
|
|
196
|
-
fail ArgumentError, 'base_path cannot be nil'
|
|
197
|
-
end
|
|
198
|
-
|
|
199
|
-
if base_path.to_s.length < 1
|
|
200
|
-
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
201
|
-
end
|
|
202
|
-
|
|
203
|
-
@base_path = base_path
|
|
204
|
-
end
|
|
205
|
-
|
|
206
192
|
# Custom attribute writer method with validation
|
|
207
193
|
# @param [Object] name Value to be assigned
|
|
208
194
|
def name=(name)
|
|
@@ -217,6 +203,20 @@ module PulpContainerClient
|
|
|
217
203
|
@name = name
|
|
218
204
|
end
|
|
219
205
|
|
|
206
|
+
# Custom attribute writer method with validation
|
|
207
|
+
# @param [Object] base_path Value to be assigned
|
|
208
|
+
def base_path=(base_path)
|
|
209
|
+
if base_path.nil?
|
|
210
|
+
fail ArgumentError, 'base_path cannot be nil'
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
if base_path.to_s.length < 1
|
|
214
|
+
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
@base_path = base_path
|
|
218
|
+
end
|
|
219
|
+
|
|
220
220
|
# Custom attribute writer method with validation
|
|
221
221
|
# @param [Object] description Value to be assigned
|
|
222
222
|
def description=(description)
|
|
@@ -232,12 +232,12 @@ module PulpContainerClient
|
|
|
232
232
|
def ==(o)
|
|
233
233
|
return true if self.equal?(o)
|
|
234
234
|
self.class == o.class &&
|
|
235
|
-
|
|
235
|
+
hidden == o.hidden &&
|
|
236
236
|
pulp_labels == o.pulp_labels &&
|
|
237
237
|
content_guard == o.content_guard &&
|
|
238
|
-
|
|
239
|
-
hidden == o.hidden &&
|
|
238
|
+
repository == o.repository &&
|
|
240
239
|
name == o.name &&
|
|
240
|
+
base_path == o.base_path &&
|
|
241
241
|
remote == o.remote &&
|
|
242
242
|
distributions == o.distributions &&
|
|
243
243
|
private == o.private &&
|
|
@@ -253,7 +253,7 @@ module PulpContainerClient
|
|
|
253
253
|
# Calculates hash code according to all attributes.
|
|
254
254
|
# @return [Integer] Hash code
|
|
255
255
|
def hash
|
|
256
|
-
[
|
|
256
|
+
[hidden, pulp_labels, content_guard, repository, name, base_path, remote, distributions, private, description].hash
|
|
257
257
|
end
|
|
258
258
|
|
|
259
259
|
# Builds the object from hash
|