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