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