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