pulp_container_client 2.27.7 → 2.27.8
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 +14 -14
- data/docs/DistributionsContainerApi.md +2 -2
- data/docs/DistributionsPullThroughApi.md +2 -2
- 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 +58 -58
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +72 -72
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +58 -58
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +72 -72
- data/lib/pulp_container_client/models/container_container_push_repository.rb +35 -35
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +59 -59
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +51 -51
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +51 -51
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +35 -35
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +13 -13
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +13 -13
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/container_container_push_repository_response_spec.rb +12 -12
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- metadata +2 -2
|
@@ -16,26 +16,26 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for ContainerDistribution.
|
|
18
18
|
class ContainerContainerDistribution
|
|
19
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
20
|
-
attr_accessor :base_path
|
|
21
|
-
|
|
22
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
23
|
-
attr_accessor :name
|
|
24
|
-
|
|
25
19
|
# The latest RepositoryVersion for this Repository will be served.
|
|
26
20
|
attr_accessor :repository
|
|
27
21
|
|
|
28
22
|
# RepositoryVersion to be served
|
|
29
23
|
attr_accessor :repository_version
|
|
30
24
|
|
|
25
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
26
|
+
attr_accessor :name
|
|
27
|
+
|
|
28
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
29
|
+
attr_accessor :base_path
|
|
30
|
+
|
|
31
31
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
32
32
|
attr_accessor :content_guard
|
|
33
33
|
|
|
34
|
-
attr_accessor :pulp_labels
|
|
35
|
-
|
|
36
34
|
# Whether this distribution should be shown in the content app.
|
|
37
35
|
attr_accessor :hidden
|
|
38
36
|
|
|
37
|
+
attr_accessor :pulp_labels
|
|
38
|
+
|
|
39
39
|
# Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access.
|
|
40
40
|
attr_accessor :private
|
|
41
41
|
|
|
@@ -45,13 +45,13 @@ module PulpContainerClient
|
|
|
45
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
46
46
|
def self.attribute_map
|
|
47
47
|
{
|
|
48
|
-
:'base_path' => :'base_path',
|
|
49
|
-
:'name' => :'name',
|
|
50
48
|
:'repository' => :'repository',
|
|
51
49
|
:'repository_version' => :'repository_version',
|
|
50
|
+
:'name' => :'name',
|
|
51
|
+
:'base_path' => :'base_path',
|
|
52
52
|
:'content_guard' => :'content_guard',
|
|
53
|
-
:'pulp_labels' => :'pulp_labels',
|
|
54
53
|
:'hidden' => :'hidden',
|
|
54
|
+
:'pulp_labels' => :'pulp_labels',
|
|
55
55
|
:'private' => :'private',
|
|
56
56
|
:'description' => :'description'
|
|
57
57
|
}
|
|
@@ -65,13 +65,13 @@ module PulpContainerClient
|
|
|
65
65
|
# Attribute type mapping.
|
|
66
66
|
def self.openapi_types
|
|
67
67
|
{
|
|
68
|
-
:'base_path' => :'String',
|
|
69
|
-
:'name' => :'String',
|
|
70
68
|
:'repository' => :'String',
|
|
71
69
|
:'repository_version' => :'String',
|
|
70
|
+
:'name' => :'String',
|
|
71
|
+
:'base_path' => :'String',
|
|
72
72
|
:'content_guard' => :'String',
|
|
73
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
74
73
|
:'hidden' => :'Boolean',
|
|
74
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
75
75
|
:'private' => :'Boolean',
|
|
76
76
|
:'description' => :'String'
|
|
77
77
|
}
|
|
@@ -101,10 +101,12 @@ module PulpContainerClient
|
|
|
101
101
|
h[k.to_sym] = v
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
if attributes.key?(:'
|
|
105
|
-
self.
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
if attributes.key?(:'repository')
|
|
105
|
+
self.repository = attributes[:'repository']
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
if attributes.key?(:'repository_version')
|
|
109
|
+
self.repository_version = attributes[:'repository_version']
|
|
108
110
|
end
|
|
109
111
|
|
|
110
112
|
if attributes.key?(:'name')
|
|
@@ -113,30 +115,28 @@ module PulpContainerClient
|
|
|
113
115
|
self.name = nil
|
|
114
116
|
end
|
|
115
117
|
|
|
116
|
-
if attributes.key?(:'
|
|
117
|
-
self.
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
if attributes.key?(:'repository_version')
|
|
121
|
-
self.repository_version = attributes[:'repository_version']
|
|
118
|
+
if attributes.key?(:'base_path')
|
|
119
|
+
self.base_path = attributes[:'base_path']
|
|
120
|
+
else
|
|
121
|
+
self.base_path = nil
|
|
122
122
|
end
|
|
123
123
|
|
|
124
124
|
if attributes.key?(:'content_guard')
|
|
125
125
|
self.content_guard = attributes[:'content_guard']
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
-
if attributes.key?(:'pulp_labels')
|
|
129
|
-
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
130
|
-
self.pulp_labels = value
|
|
131
|
-
end
|
|
132
|
-
end
|
|
133
|
-
|
|
134
128
|
if attributes.key?(:'hidden')
|
|
135
129
|
self.hidden = attributes[:'hidden']
|
|
136
130
|
else
|
|
137
131
|
self.hidden = false
|
|
138
132
|
end
|
|
139
133
|
|
|
134
|
+
if attributes.key?(:'pulp_labels')
|
|
135
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
136
|
+
self.pulp_labels = value
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
140
|
if attributes.key?(:'private')
|
|
141
141
|
self.private = attributes[:'private']
|
|
142
142
|
end
|
|
@@ -151,14 +151,6 @@ module PulpContainerClient
|
|
|
151
151
|
def list_invalid_properties
|
|
152
152
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
153
153
|
invalid_properties = Array.new
|
|
154
|
-
if @base_path.nil?
|
|
155
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
156
|
-
end
|
|
157
|
-
|
|
158
|
-
if @base_path.to_s.length < 1
|
|
159
|
-
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
160
|
-
end
|
|
161
|
-
|
|
162
154
|
if @name.nil?
|
|
163
155
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
164
156
|
end
|
|
@@ -167,6 +159,14 @@ module PulpContainerClient
|
|
|
167
159
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
168
160
|
end
|
|
169
161
|
|
|
162
|
+
if @base_path.nil?
|
|
163
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
if @base_path.to_s.length < 1
|
|
167
|
+
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
168
|
+
end
|
|
169
|
+
|
|
170
170
|
if !@description.nil? && @description.to_s.length < 1
|
|
171
171
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
172
172
|
end
|
|
@@ -178,28 +178,14 @@ module PulpContainerClient
|
|
|
178
178
|
# @return true if the model is valid
|
|
179
179
|
def valid?
|
|
180
180
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
181
|
-
return false if @base_path.nil?
|
|
182
|
-
return false if @base_path.to_s.length < 1
|
|
183
181
|
return false if @name.nil?
|
|
184
182
|
return false if @name.to_s.length < 1
|
|
183
|
+
return false if @base_path.nil?
|
|
184
|
+
return false if @base_path.to_s.length < 1
|
|
185
185
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
186
186
|
true
|
|
187
187
|
end
|
|
188
188
|
|
|
189
|
-
# Custom attribute writer method with validation
|
|
190
|
-
# @param [Object] base_path Value to be assigned
|
|
191
|
-
def base_path=(base_path)
|
|
192
|
-
if base_path.nil?
|
|
193
|
-
fail ArgumentError, 'base_path cannot be nil'
|
|
194
|
-
end
|
|
195
|
-
|
|
196
|
-
if base_path.to_s.length < 1
|
|
197
|
-
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
198
|
-
end
|
|
199
|
-
|
|
200
|
-
@base_path = base_path
|
|
201
|
-
end
|
|
202
|
-
|
|
203
189
|
# Custom attribute writer method with validation
|
|
204
190
|
# @param [Object] name Value to be assigned
|
|
205
191
|
def name=(name)
|
|
@@ -214,6 +200,20 @@ module PulpContainerClient
|
|
|
214
200
|
@name = name
|
|
215
201
|
end
|
|
216
202
|
|
|
203
|
+
# Custom attribute writer method with validation
|
|
204
|
+
# @param [Object] base_path Value to be assigned
|
|
205
|
+
def base_path=(base_path)
|
|
206
|
+
if base_path.nil?
|
|
207
|
+
fail ArgumentError, 'base_path cannot be nil'
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
if base_path.to_s.length < 1
|
|
211
|
+
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
212
|
+
end
|
|
213
|
+
|
|
214
|
+
@base_path = base_path
|
|
215
|
+
end
|
|
216
|
+
|
|
217
217
|
# Custom attribute writer method with validation
|
|
218
218
|
# @param [Object] description Value to be assigned
|
|
219
219
|
def description=(description)
|
|
@@ -229,13 +229,13 @@ module PulpContainerClient
|
|
|
229
229
|
def ==(o)
|
|
230
230
|
return true if self.equal?(o)
|
|
231
231
|
self.class == o.class &&
|
|
232
|
-
base_path == o.base_path &&
|
|
233
|
-
name == o.name &&
|
|
234
232
|
repository == o.repository &&
|
|
235
233
|
repository_version == o.repository_version &&
|
|
234
|
+
name == o.name &&
|
|
235
|
+
base_path == o.base_path &&
|
|
236
236
|
content_guard == o.content_guard &&
|
|
237
|
-
pulp_labels == o.pulp_labels &&
|
|
238
237
|
hidden == o.hidden &&
|
|
238
|
+
pulp_labels == o.pulp_labels &&
|
|
239
239
|
private == o.private &&
|
|
240
240
|
description == o.description
|
|
241
241
|
end
|
|
@@ -249,7 +249,7 @@ module PulpContainerClient
|
|
|
249
249
|
# Calculates hash code according to all attributes.
|
|
250
250
|
# @return [Integer] Hash code
|
|
251
251
|
def hash
|
|
252
|
-
[
|
|
252
|
+
[repository, repository_version, name, base_path, content_guard, hidden, pulp_labels, private, description].hash
|
|
253
253
|
end
|
|
254
254
|
|
|
255
255
|
# Builds the object from hash
|
|
@@ -16,42 +16,42 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for ContainerDistribution.
|
|
18
18
|
class ContainerContainerDistributionResponse
|
|
19
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
20
|
-
attr_accessor :base_path
|
|
21
|
-
|
|
22
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
23
|
-
attr_accessor :name
|
|
24
|
-
|
|
25
19
|
# The latest RepositoryVersion for this Repository will be served.
|
|
26
20
|
attr_accessor :repository
|
|
27
21
|
|
|
28
22
|
# RepositoryVersion to be served
|
|
29
23
|
attr_accessor :repository_version
|
|
30
24
|
|
|
31
|
-
|
|
25
|
+
# The Pulp Resource Name (PRN).
|
|
26
|
+
attr_accessor :prn
|
|
32
27
|
|
|
33
|
-
#
|
|
34
|
-
attr_accessor :
|
|
28
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
29
|
+
attr_accessor :name
|
|
30
|
+
|
|
31
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
32
|
+
attr_accessor :base_path
|
|
35
33
|
|
|
36
34
|
# Timestamp of creation.
|
|
37
35
|
attr_accessor :pulp_created
|
|
38
36
|
|
|
37
|
+
# The Pulp Resource Name (PRN) of the associated optional content guard.
|
|
38
|
+
attr_accessor :content_guard_prn
|
|
39
|
+
|
|
40
|
+
attr_accessor :pulp_href
|
|
41
|
+
|
|
39
42
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
40
43
|
attr_accessor :content_guard
|
|
41
44
|
|
|
42
|
-
|
|
45
|
+
# Whether this distribution should be shown in the content app.
|
|
46
|
+
attr_accessor :hidden
|
|
43
47
|
|
|
44
|
-
|
|
45
|
-
attr_accessor :content_guard_prn
|
|
48
|
+
attr_accessor :pulp_labels
|
|
46
49
|
|
|
47
50
|
# 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.
|
|
48
51
|
attr_accessor :pulp_last_updated
|
|
49
52
|
|
|
50
|
-
#
|
|
51
|
-
attr_accessor :
|
|
52
|
-
|
|
53
|
-
# Whether this distribution should be shown in the content app.
|
|
54
|
-
attr_accessor :hidden
|
|
53
|
+
# Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
|
|
54
|
+
attr_accessor :no_content_change_since
|
|
55
55
|
|
|
56
56
|
# The Registry hostname/name/ to use with docker pull command defined by this distribution.
|
|
57
57
|
attr_accessor :registry_path
|
|
@@ -71,19 +71,19 @@ module PulpContainerClient
|
|
|
71
71
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
72
72
|
def self.attribute_map
|
|
73
73
|
{
|
|
74
|
-
:'base_path' => :'base_path',
|
|
75
|
-
:'name' => :'name',
|
|
76
74
|
:'repository' => :'repository',
|
|
77
75
|
:'repository_version' => :'repository_version',
|
|
78
|
-
:'
|
|
79
|
-
:'
|
|
76
|
+
:'prn' => :'prn',
|
|
77
|
+
:'name' => :'name',
|
|
78
|
+
:'base_path' => :'base_path',
|
|
80
79
|
:'pulp_created' => :'pulp_created',
|
|
80
|
+
:'content_guard_prn' => :'content_guard_prn',
|
|
81
|
+
:'pulp_href' => :'pulp_href',
|
|
81
82
|
:'content_guard' => :'content_guard',
|
|
83
|
+
:'hidden' => :'hidden',
|
|
82
84
|
:'pulp_labels' => :'pulp_labels',
|
|
83
|
-
:'content_guard_prn' => :'content_guard_prn',
|
|
84
85
|
:'pulp_last_updated' => :'pulp_last_updated',
|
|
85
|
-
:'
|
|
86
|
-
:'hidden' => :'hidden',
|
|
86
|
+
:'no_content_change_since' => :'no_content_change_since',
|
|
87
87
|
:'registry_path' => :'registry_path',
|
|
88
88
|
:'remote' => :'remote',
|
|
89
89
|
:'namespace' => :'namespace',
|
|
@@ -100,19 +100,19 @@ module PulpContainerClient
|
|
|
100
100
|
# Attribute type mapping.
|
|
101
101
|
def self.openapi_types
|
|
102
102
|
{
|
|
103
|
-
:'base_path' => :'String',
|
|
104
|
-
:'name' => :'String',
|
|
105
103
|
:'repository' => :'String',
|
|
106
104
|
:'repository_version' => :'String',
|
|
107
|
-
:'
|
|
108
|
-
:'
|
|
105
|
+
:'prn' => :'String',
|
|
106
|
+
:'name' => :'String',
|
|
107
|
+
:'base_path' => :'String',
|
|
109
108
|
:'pulp_created' => :'Time',
|
|
109
|
+
:'content_guard_prn' => :'String',
|
|
110
|
+
:'pulp_href' => :'String',
|
|
110
111
|
:'content_guard' => :'String',
|
|
112
|
+
:'hidden' => :'Boolean',
|
|
111
113
|
:'pulp_labels' => :'Hash<String, String>',
|
|
112
|
-
:'content_guard_prn' => :'String',
|
|
113
114
|
:'pulp_last_updated' => :'Time',
|
|
114
|
-
:'
|
|
115
|
-
:'hidden' => :'Boolean',
|
|
115
|
+
:'no_content_change_since' => :'String',
|
|
116
116
|
:'registry_path' => :'String',
|
|
117
117
|
:'remote' => :'String',
|
|
118
118
|
:'namespace' => :'String',
|
|
@@ -145,18 +145,6 @@ module PulpContainerClient
|
|
|
145
145
|
h[k.to_sym] = v
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
if attributes.key?(:'base_path')
|
|
149
|
-
self.base_path = attributes[:'base_path']
|
|
150
|
-
else
|
|
151
|
-
self.base_path = nil
|
|
152
|
-
end
|
|
153
|
-
|
|
154
|
-
if attributes.key?(:'name')
|
|
155
|
-
self.name = attributes[:'name']
|
|
156
|
-
else
|
|
157
|
-
self.name = nil
|
|
158
|
-
end
|
|
159
|
-
|
|
160
148
|
if attributes.key?(:'repository')
|
|
161
149
|
self.repository = attributes[:'repository']
|
|
162
150
|
end
|
|
@@ -165,44 +153,56 @@ module PulpContainerClient
|
|
|
165
153
|
self.repository_version = attributes[:'repository_version']
|
|
166
154
|
end
|
|
167
155
|
|
|
168
|
-
if attributes.key?(:'
|
|
169
|
-
self.
|
|
156
|
+
if attributes.key?(:'prn')
|
|
157
|
+
self.prn = attributes[:'prn']
|
|
170
158
|
end
|
|
171
159
|
|
|
172
|
-
if attributes.key?(:'
|
|
173
|
-
self.
|
|
160
|
+
if attributes.key?(:'name')
|
|
161
|
+
self.name = attributes[:'name']
|
|
162
|
+
else
|
|
163
|
+
self.name = nil
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
if attributes.key?(:'base_path')
|
|
167
|
+
self.base_path = attributes[:'base_path']
|
|
168
|
+
else
|
|
169
|
+
self.base_path = nil
|
|
174
170
|
end
|
|
175
171
|
|
|
176
172
|
if attributes.key?(:'pulp_created')
|
|
177
173
|
self.pulp_created = attributes[:'pulp_created']
|
|
178
174
|
end
|
|
179
175
|
|
|
176
|
+
if attributes.key?(:'content_guard_prn')
|
|
177
|
+
self.content_guard_prn = attributes[:'content_guard_prn']
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
if attributes.key?(:'pulp_href')
|
|
181
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
182
|
+
end
|
|
183
|
+
|
|
180
184
|
if attributes.key?(:'content_guard')
|
|
181
185
|
self.content_guard = attributes[:'content_guard']
|
|
182
186
|
end
|
|
183
187
|
|
|
188
|
+
if attributes.key?(:'hidden')
|
|
189
|
+
self.hidden = attributes[:'hidden']
|
|
190
|
+
else
|
|
191
|
+
self.hidden = false
|
|
192
|
+
end
|
|
193
|
+
|
|
184
194
|
if attributes.key?(:'pulp_labels')
|
|
185
195
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
186
196
|
self.pulp_labels = value
|
|
187
197
|
end
|
|
188
198
|
end
|
|
189
199
|
|
|
190
|
-
if attributes.key?(:'content_guard_prn')
|
|
191
|
-
self.content_guard_prn = attributes[:'content_guard_prn']
|
|
192
|
-
end
|
|
193
|
-
|
|
194
200
|
if attributes.key?(:'pulp_last_updated')
|
|
195
201
|
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
196
202
|
end
|
|
197
203
|
|
|
198
|
-
if attributes.key?(:'
|
|
199
|
-
self.
|
|
200
|
-
end
|
|
201
|
-
|
|
202
|
-
if attributes.key?(:'hidden')
|
|
203
|
-
self.hidden = attributes[:'hidden']
|
|
204
|
-
else
|
|
205
|
-
self.hidden = false
|
|
204
|
+
if attributes.key?(:'no_content_change_since')
|
|
205
|
+
self.no_content_change_since = attributes[:'no_content_change_since']
|
|
206
206
|
end
|
|
207
207
|
|
|
208
208
|
if attributes.key?(:'registry_path')
|
|
@@ -231,14 +231,14 @@ module PulpContainerClient
|
|
|
231
231
|
def list_invalid_properties
|
|
232
232
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
233
233
|
invalid_properties = Array.new
|
|
234
|
-
if @base_path.nil?
|
|
235
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
236
|
-
end
|
|
237
|
-
|
|
238
234
|
if @name.nil?
|
|
239
235
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
240
236
|
end
|
|
241
237
|
|
|
238
|
+
if @base_path.nil?
|
|
239
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
240
|
+
end
|
|
241
|
+
|
|
242
242
|
invalid_properties
|
|
243
243
|
end
|
|
244
244
|
|
|
@@ -246,8 +246,8 @@ module PulpContainerClient
|
|
|
246
246
|
# @return true if the model is valid
|
|
247
247
|
def valid?
|
|
248
248
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
249
|
-
return false if @base_path.nil?
|
|
250
249
|
return false if @name.nil?
|
|
250
|
+
return false if @base_path.nil?
|
|
251
251
|
true
|
|
252
252
|
end
|
|
253
253
|
|
|
@@ -256,19 +256,19 @@ module PulpContainerClient
|
|
|
256
256
|
def ==(o)
|
|
257
257
|
return true if self.equal?(o)
|
|
258
258
|
self.class == o.class &&
|
|
259
|
-
base_path == o.base_path &&
|
|
260
|
-
name == o.name &&
|
|
261
259
|
repository == o.repository &&
|
|
262
260
|
repository_version == o.repository_version &&
|
|
263
|
-
|
|
264
|
-
|
|
261
|
+
prn == o.prn &&
|
|
262
|
+
name == o.name &&
|
|
263
|
+
base_path == o.base_path &&
|
|
265
264
|
pulp_created == o.pulp_created &&
|
|
265
|
+
content_guard_prn == o.content_guard_prn &&
|
|
266
|
+
pulp_href == o.pulp_href &&
|
|
266
267
|
content_guard == o.content_guard &&
|
|
268
|
+
hidden == o.hidden &&
|
|
267
269
|
pulp_labels == o.pulp_labels &&
|
|
268
|
-
content_guard_prn == o.content_guard_prn &&
|
|
269
270
|
pulp_last_updated == o.pulp_last_updated &&
|
|
270
|
-
|
|
271
|
-
hidden == o.hidden &&
|
|
271
|
+
no_content_change_since == o.no_content_change_since &&
|
|
272
272
|
registry_path == o.registry_path &&
|
|
273
273
|
remote == o.remote &&
|
|
274
274
|
namespace == o.namespace &&
|
|
@@ -285,7 +285,7 @@ module PulpContainerClient
|
|
|
285
285
|
# Calculates hash code according to all attributes.
|
|
286
286
|
# @return [Integer] Hash code
|
|
287
287
|
def hash
|
|
288
|
-
[
|
|
288
|
+
[repository, repository_version, prn, name, base_path, pulp_created, content_guard_prn, pulp_href, content_guard, hidden, pulp_labels, pulp_last_updated, no_content_change_since, registry_path, remote, namespace, private, description].hash
|
|
289
289
|
end
|
|
290
290
|
|
|
291
291
|
# Builds the object from hash
|