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