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