pulp_container_client 2.24.9 → 2.24.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +6 -6
- data/docs/ContainerContainerDistributionResponse.md +14 -14
- data/docs/ContainerContainerPullThroughDistribution.md +6 -6
- data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
- data/docs/ContainerContainerPushRepository.md +4 -4
- data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPushRepository.md +4 -4
- data/lib/pulp_container_client/models/container_container_distribution.rb +34 -34
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +63 -63
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +34 -34
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +63 -63
- data/lib/pulp_container_client/models/container_container_push_repository.rb +38 -38
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +64 -64
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +32 -32
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +32 -32
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +36 -36
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +11 -11
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- 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 +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- metadata +60 -60
|
@@ -16,27 +16,27 @@ 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
|
-
|
|
24
19
|
# A unique name for this repository.
|
|
25
20
|
attr_accessor :name
|
|
26
21
|
|
|
22
|
+
attr_accessor :pulp_labels
|
|
23
|
+
|
|
27
24
|
# A reference to an associated signing service.
|
|
28
25
|
attr_accessor :manifest_signing_service
|
|
29
26
|
|
|
27
|
+
# An optional description.
|
|
28
|
+
attr_accessor :description
|
|
29
|
+
|
|
30
30
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
31
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
|
-
:'pulp_labels' => :'pulp_labels',
|
|
37
|
-
:'description' => :'description',
|
|
38
36
|
:'name' => :'name',
|
|
37
|
+
:'pulp_labels' => :'pulp_labels',
|
|
39
38
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
39
|
+
:'description' => :'description',
|
|
40
40
|
:'retain_repo_versions' => :'retain_repo_versions'
|
|
41
41
|
}
|
|
42
42
|
end
|
|
@@ -49,10 +49,10 @@ module PulpContainerClient
|
|
|
49
49
|
# Attribute type mapping.
|
|
50
50
|
def self.openapi_types
|
|
51
51
|
{
|
|
52
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
53
|
-
:'description' => :'String',
|
|
54
52
|
:'name' => :'String',
|
|
53
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
55
54
|
:'manifest_signing_service' => :'String',
|
|
55
|
+
:'description' => :'String',
|
|
56
56
|
:'retain_repo_versions' => :'Integer'
|
|
57
57
|
}
|
|
58
58
|
end
|
|
@@ -60,8 +60,8 @@ module PulpContainerClient
|
|
|
60
60
|
# List of attributes with nullable: true
|
|
61
61
|
def self.openapi_nullable
|
|
62
62
|
Set.new([
|
|
63
|
-
:'description',
|
|
64
63
|
:'manifest_signing_service',
|
|
64
|
+
:'description',
|
|
65
65
|
:'retain_repo_versions'
|
|
66
66
|
])
|
|
67
67
|
end
|
|
@@ -81,26 +81,26 @@ 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
|
-
|
|
94
84
|
if attributes.key?(:'name')
|
|
95
85
|
self.name = attributes[:'name']
|
|
96
86
|
else
|
|
97
87
|
self.name = nil
|
|
98
88
|
end
|
|
99
89
|
|
|
90
|
+
if attributes.key?(:'pulp_labels')
|
|
91
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
92
|
+
self.pulp_labels = value
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
100
96
|
if attributes.key?(:'manifest_signing_service')
|
|
101
97
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
102
98
|
end
|
|
103
99
|
|
|
100
|
+
if attributes.key?(:'description')
|
|
101
|
+
self.description = attributes[:'description']
|
|
102
|
+
end
|
|
103
|
+
|
|
104
104
|
if attributes.key?(:'retain_repo_versions')
|
|
105
105
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
106
106
|
end
|
|
@@ -111,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
|
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
127
127
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
128
128
|
end
|
|
@@ -134,23 +134,13 @@ 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
|
|
138
137
|
return false if @name.nil?
|
|
139
138
|
return false if @name.to_s.length < 1
|
|
139
|
+
return false if !@description.nil? && @description.to_s.length < 1
|
|
140
140
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
141
141
|
true
|
|
142
142
|
end
|
|
143
143
|
|
|
144
|
-
# Custom attribute writer method with validation
|
|
145
|
-
# @param [Object] description Value to be assigned
|
|
146
|
-
def description=(description)
|
|
147
|
-
if !description.nil? && description.to_s.length < 1
|
|
148
|
-
fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
|
|
149
|
-
end
|
|
150
|
-
|
|
151
|
-
@description = description
|
|
152
|
-
end
|
|
153
|
-
|
|
154
144
|
# Custom attribute writer method with validation
|
|
155
145
|
# @param [Object] name Value to be assigned
|
|
156
146
|
def name=(name)
|
|
@@ -165,6 +155,16 @@ module PulpContainerClient
|
|
|
165
155
|
@name = name
|
|
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
|
# Custom attribute writer method with validation
|
|
169
169
|
# @param [Object] retain_repo_versions Value to be assigned
|
|
170
170
|
def retain_repo_versions=(retain_repo_versions)
|
|
@@ -180,10 +180,10 @@ module PulpContainerClient
|
|
|
180
180
|
def ==(o)
|
|
181
181
|
return true if self.equal?(o)
|
|
182
182
|
self.class == o.class &&
|
|
183
|
-
pulp_labels == o.pulp_labels &&
|
|
184
|
-
description == o.description &&
|
|
185
183
|
name == o.name &&
|
|
184
|
+
pulp_labels == o.pulp_labels &&
|
|
186
185
|
manifest_signing_service == o.manifest_signing_service &&
|
|
186
|
+
description == o.description &&
|
|
187
187
|
retain_repo_versions == o.retain_repo_versions
|
|
188
188
|
end
|
|
189
189
|
|
|
@@ -196,7 +196,7 @@ module PulpContainerClient
|
|
|
196
196
|
# Calculates hash code according to all attributes.
|
|
197
197
|
# @return [Integer] Hash code
|
|
198
198
|
def hash
|
|
199
|
-
[
|
|
199
|
+
[name, pulp_labels, manifest_signing_service, description, retain_repo_versions].hash
|
|
200
200
|
end
|
|
201
201
|
|
|
202
202
|
# 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
|
-
attr_accessor :pulp_labels
|
|
22
|
-
|
|
23
|
-
# An optional description.
|
|
24
|
-
attr_accessor :description
|
|
19
|
+
# A unique name for this repository.
|
|
20
|
+
attr_accessor :name
|
|
25
21
|
|
|
26
22
|
# The Pulp Resource Name (PRN).
|
|
27
23
|
attr_accessor :prn
|
|
28
24
|
|
|
29
|
-
|
|
30
|
-
attr_accessor :name
|
|
25
|
+
attr_accessor :latest_version_href
|
|
31
26
|
|
|
32
|
-
attr_accessor :
|
|
27
|
+
attr_accessor :pulp_labels
|
|
33
28
|
|
|
34
|
-
|
|
29
|
+
# Timestamp of creation.
|
|
30
|
+
attr_accessor :pulp_created
|
|
31
|
+
|
|
32
|
+
# A reference to an associated signing service.
|
|
33
|
+
attr_accessor :manifest_signing_service
|
|
35
34
|
|
|
36
35
|
# Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
|
|
37
36
|
attr_accessor :pulp_last_updated
|
|
38
37
|
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
attr_accessor :versions_href
|
|
39
|
+
|
|
40
|
+
attr_accessor :pulp_href
|
|
41
|
+
|
|
42
|
+
# An optional description.
|
|
43
|
+
attr_accessor :description
|
|
41
44
|
|
|
42
45
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
43
46
|
attr_accessor :retain_repo_versions
|
|
44
47
|
|
|
45
|
-
# Timestamp of creation.
|
|
46
|
-
attr_accessor :pulp_created
|
|
47
|
-
|
|
48
48
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
49
|
def self.attribute_map
|
|
50
50
|
{
|
|
51
|
-
:'pulp_href' => :'pulp_href',
|
|
52
|
-
:'pulp_labels' => :'pulp_labels',
|
|
53
|
-
:'description' => :'description',
|
|
54
|
-
:'prn' => :'prn',
|
|
55
51
|
:'name' => :'name',
|
|
56
|
-
:'
|
|
52
|
+
:'prn' => :'prn',
|
|
57
53
|
:'latest_version_href' => :'latest_version_href',
|
|
58
|
-
:'
|
|
54
|
+
:'pulp_labels' => :'pulp_labels',
|
|
55
|
+
:'pulp_created' => :'pulp_created',
|
|
59
56
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
60
|
-
:'
|
|
61
|
-
:'
|
|
57
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
58
|
+
:'versions_href' => :'versions_href',
|
|
59
|
+
:'pulp_href' => :'pulp_href',
|
|
60
|
+
:'description' => :'description',
|
|
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
|
-
:'pulp_href' => :'String',
|
|
74
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
75
|
-
:'description' => :'String',
|
|
76
|
-
:'prn' => :'String',
|
|
77
73
|
:'name' => :'String',
|
|
78
|
-
:'
|
|
74
|
+
:'prn' => :'String',
|
|
79
75
|
:'latest_version_href' => :'String',
|
|
80
|
-
:'
|
|
76
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
77
|
+
:'pulp_created' => :'Time',
|
|
81
78
|
:'manifest_signing_service' => :'String',
|
|
82
|
-
:'
|
|
83
|
-
:'
|
|
79
|
+
:'pulp_last_updated' => :'Time',
|
|
80
|
+
:'versions_href' => :'String',
|
|
81
|
+
:'pulp_href' => :'String',
|
|
82
|
+
:'description' => :'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
90
|
:'manifest_signing_service',
|
|
92
|
-
:'
|
|
91
|
+
:'description',
|
|
92
|
+
:'retain_repo_versions'
|
|
93
93
|
])
|
|
94
94
|
end
|
|
95
95
|
|
|
@@ -108,8 +108,18 @@ module PulpContainerClient
|
|
|
108
108
|
h[k.to_sym] = v
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
if attributes.key?(:'
|
|
112
|
-
self.
|
|
111
|
+
if attributes.key?(:'name')
|
|
112
|
+
self.name = attributes[:'name']
|
|
113
|
+
else
|
|
114
|
+
self.name = nil
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
if attributes.key?(:'prn')
|
|
118
|
+
self.prn = attributes[:'prn']
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
if attributes.key?(:'latest_version_href')
|
|
122
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
|
113
123
|
end
|
|
114
124
|
|
|
115
125
|
if attributes.key?(:'pulp_labels')
|
|
@@ -118,43 +128,33 @@ module PulpContainerClient
|
|
|
118
128
|
end
|
|
119
129
|
end
|
|
120
130
|
|
|
121
|
-
if attributes.key?(:'
|
|
122
|
-
self.
|
|
131
|
+
if attributes.key?(:'pulp_created')
|
|
132
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
123
133
|
end
|
|
124
134
|
|
|
125
|
-
if attributes.key?(:'
|
|
126
|
-
self.
|
|
135
|
+
if attributes.key?(:'manifest_signing_service')
|
|
136
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
127
137
|
end
|
|
128
138
|
|
|
129
|
-
if attributes.key?(:'
|
|
130
|
-
self.
|
|
131
|
-
else
|
|
132
|
-
self.name = nil
|
|
139
|
+
if attributes.key?(:'pulp_last_updated')
|
|
140
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
133
141
|
end
|
|
134
142
|
|
|
135
143
|
if attributes.key?(:'versions_href')
|
|
136
144
|
self.versions_href = attributes[:'versions_href']
|
|
137
145
|
end
|
|
138
146
|
|
|
139
|
-
if attributes.key?(:'
|
|
140
|
-
self.
|
|
141
|
-
end
|
|
142
|
-
|
|
143
|
-
if attributes.key?(:'pulp_last_updated')
|
|
144
|
-
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
147
|
+
if attributes.key?(:'pulp_href')
|
|
148
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
145
149
|
end
|
|
146
150
|
|
|
147
|
-
if attributes.key?(:'
|
|
148
|
-
self.
|
|
151
|
+
if attributes.key?(:'description')
|
|
152
|
+
self.description = attributes[:'description']
|
|
149
153
|
end
|
|
150
154
|
|
|
151
155
|
if attributes.key?(:'retain_repo_versions')
|
|
152
156
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
153
157
|
end
|
|
154
|
-
|
|
155
|
-
if attributes.key?(:'pulp_created')
|
|
156
|
-
self.pulp_created = attributes[:'pulp_created']
|
|
157
|
-
end
|
|
158
158
|
end
|
|
159
159
|
|
|
160
160
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -197,17 +197,17 @@ module PulpContainerClient
|
|
|
197
197
|
def ==(o)
|
|
198
198
|
return true if self.equal?(o)
|
|
199
199
|
self.class == o.class &&
|
|
200
|
-
pulp_href == o.pulp_href &&
|
|
201
|
-
pulp_labels == o.pulp_labels &&
|
|
202
|
-
description == o.description &&
|
|
203
|
-
prn == o.prn &&
|
|
204
200
|
name == o.name &&
|
|
205
|
-
|
|
201
|
+
prn == o.prn &&
|
|
206
202
|
latest_version_href == o.latest_version_href &&
|
|
207
|
-
|
|
203
|
+
pulp_labels == o.pulp_labels &&
|
|
204
|
+
pulp_created == o.pulp_created &&
|
|
208
205
|
manifest_signing_service == o.manifest_signing_service &&
|
|
209
|
-
|
|
210
|
-
|
|
206
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
207
|
+
versions_href == o.versions_href &&
|
|
208
|
+
pulp_href == o.pulp_href &&
|
|
209
|
+
description == o.description &&
|
|
210
|
+
retain_repo_versions == o.retain_repo_versions
|
|
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
|
-
[
|
|
222
|
+
[name, prn, latest_version_href, pulp_labels, pulp_created, manifest_signing_service, pulp_last_updated, versions_href, pulp_href, description, retain_repo_versions].hash
|
|
223
223
|
end
|
|
224
224
|
|
|
225
225
|
# 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
|
-
# Whether this distribution should be shown in the content app.
|
|
20
|
-
attr_accessor :hidden
|
|
21
|
-
|
|
22
|
-
attr_accessor :pulp_labels
|
|
23
|
-
|
|
24
19
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
25
20
|
attr_accessor :name
|
|
26
21
|
|
|
22
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
23
|
+
attr_accessor :base_path
|
|
24
|
+
|
|
27
25
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
28
26
|
attr_accessor :content_guard
|
|
29
27
|
|
|
28
|
+
attr_accessor :pulp_labels
|
|
29
|
+
|
|
30
|
+
# Whether this distribution should be shown in the content app.
|
|
31
|
+
attr_accessor :hidden
|
|
32
|
+
|
|
30
33
|
# The latest RepositoryVersion for this Repository will be served.
|
|
31
34
|
attr_accessor :repository
|
|
32
35
|
|
|
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
|
-
attr_accessor :base_path
|
|
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
|
-
:'hidden' => :'hidden',
|
|
49
|
-
:'pulp_labels' => :'pulp_labels',
|
|
50
48
|
:'name' => :'name',
|
|
49
|
+
:'base_path' => :'base_path',
|
|
51
50
|
:'content_guard' => :'content_guard',
|
|
51
|
+
:'pulp_labels' => :'pulp_labels',
|
|
52
|
+
:'hidden' => :'hidden',
|
|
52
53
|
:'repository' => :'repository',
|
|
53
|
-
:'base_path' => :'base_path',
|
|
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
|
-
:'hidden' => :'Boolean',
|
|
69
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
70
68
|
:'name' => :'String',
|
|
69
|
+
:'base_path' => :'String',
|
|
71
70
|
:'content_guard' => :'String',
|
|
71
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
72
|
+
:'hidden' => :'Boolean',
|
|
72
73
|
:'repository' => :'String',
|
|
73
|
-
:'base_path' => :'String',
|
|
74
74
|
:'repository_version' => :'String',
|
|
75
75
|
:'private' => :'Boolean',
|
|
76
76
|
:'description' => :'String'
|
|
@@ -101,10 +101,16 @@ module PulpContainerClient
|
|
|
101
101
|
h[k.to_sym] = v
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
if attributes.key?(:'
|
|
105
|
-
self.
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
if attributes.key?(:'name')
|
|
105
|
+
self.name = attributes[:'name']
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
if attributes.key?(:'base_path')
|
|
109
|
+
self.base_path = attributes[:'base_path']
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
if attributes.key?(:'content_guard')
|
|
113
|
+
self.content_guard = attributes[:'content_guard']
|
|
108
114
|
end
|
|
109
115
|
|
|
110
116
|
if attributes.key?(:'pulp_labels')
|
|
@@ -113,22 +119,16 @@ module PulpContainerClient
|
|
|
113
119
|
end
|
|
114
120
|
end
|
|
115
121
|
|
|
116
|
-
if attributes.key?(:'
|
|
117
|
-
self.
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
if attributes.key?(:'content_guard')
|
|
121
|
-
self.content_guard = attributes[:'content_guard']
|
|
122
|
+
if attributes.key?(:'hidden')
|
|
123
|
+
self.hidden = attributes[:'hidden']
|
|
124
|
+
else
|
|
125
|
+
self.hidden = false
|
|
122
126
|
end
|
|
123
127
|
|
|
124
128
|
if attributes.key?(:'repository')
|
|
125
129
|
self.repository = attributes[:'repository']
|
|
126
130
|
end
|
|
127
131
|
|
|
128
|
-
if attributes.key?(:'base_path')
|
|
129
|
-
self.base_path = attributes[:'base_path']
|
|
130
|
-
end
|
|
131
|
-
|
|
132
132
|
if attributes.key?(:'repository_version')
|
|
133
133
|
self.repository_version = attributes[:'repository_version']
|
|
134
134
|
end
|
|
@@ -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
|
-
hidden == o.hidden &&
|
|
219
|
-
pulp_labels == o.pulp_labels &&
|
|
220
218
|
name == o.name &&
|
|
219
|
+
base_path == o.base_path &&
|
|
221
220
|
content_guard == o.content_guard &&
|
|
221
|
+
pulp_labels == o.pulp_labels &&
|
|
222
|
+
hidden == o.hidden &&
|
|
222
223
|
repository == o.repository &&
|
|
223
|
-
base_path == o.base_path &&
|
|
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
|
+
[name, base_path, content_guard, pulp_labels, hidden, repository, 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,23 +16,23 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for a specialized pull-through distribution referencing sub-distributions.
|
|
18
18
|
class PatchedcontainerContainerPullThroughDistribution
|
|
19
|
-
# Whether this distribution should be shown in the content app.
|
|
20
|
-
attr_accessor :hidden
|
|
21
|
-
|
|
22
|
-
attr_accessor :pulp_labels
|
|
23
|
-
|
|
24
19
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
25
20
|
attr_accessor :name
|
|
26
21
|
|
|
22
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
23
|
+
attr_accessor :base_path
|
|
24
|
+
|
|
27
25
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
28
26
|
attr_accessor :content_guard
|
|
29
27
|
|
|
28
|
+
attr_accessor :pulp_labels
|
|
29
|
+
|
|
30
|
+
# Whether this distribution should be shown in the content app.
|
|
31
|
+
attr_accessor :hidden
|
|
32
|
+
|
|
30
33
|
# The latest RepositoryVersion for this Repository will be served.
|
|
31
34
|
attr_accessor :repository
|
|
32
35
|
|
|
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
|
-
attr_accessor :base_path
|
|
35
|
-
|
|
36
36
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
37
37
|
attr_accessor :remote
|
|
38
38
|
|
|
@@ -48,12 +48,12 @@ module PulpContainerClient
|
|
|
48
48
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
49
|
def self.attribute_map
|
|
50
50
|
{
|
|
51
|
-
:'hidden' => :'hidden',
|
|
52
|
-
:'pulp_labels' => :'pulp_labels',
|
|
53
51
|
:'name' => :'name',
|
|
52
|
+
:'base_path' => :'base_path',
|
|
54
53
|
:'content_guard' => :'content_guard',
|
|
54
|
+
:'pulp_labels' => :'pulp_labels',
|
|
55
|
+
:'hidden' => :'hidden',
|
|
55
56
|
:'repository' => :'repository',
|
|
56
|
-
:'base_path' => :'base_path',
|
|
57
57
|
:'remote' => :'remote',
|
|
58
58
|
:'distributions' => :'distributions',
|
|
59
59
|
:'private' => :'private',
|
|
@@ -69,12 +69,12 @@ module PulpContainerClient
|
|
|
69
69
|
# Attribute type mapping.
|
|
70
70
|
def self.openapi_types
|
|
71
71
|
{
|
|
72
|
-
:'hidden' => :'Boolean',
|
|
73
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
74
72
|
:'name' => :'String',
|
|
73
|
+
:'base_path' => :'String',
|
|
75
74
|
:'content_guard' => :'String',
|
|
75
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
76
|
+
:'hidden' => :'Boolean',
|
|
76
77
|
:'repository' => :'String',
|
|
77
|
-
:'base_path' => :'String',
|
|
78
78
|
:'remote' => :'String',
|
|
79
79
|
:'distributions' => :'Array<String>',
|
|
80
80
|
:'private' => :'Boolean',
|
|
@@ -105,10 +105,16 @@ module PulpContainerClient
|
|
|
105
105
|
h[k.to_sym] = v
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
if attributes.key?(:'
|
|
109
|
-
self.
|
|
110
|
-
|
|
111
|
-
|
|
108
|
+
if attributes.key?(:'name')
|
|
109
|
+
self.name = attributes[:'name']
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
if attributes.key?(:'base_path')
|
|
113
|
+
self.base_path = attributes[:'base_path']
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
if attributes.key?(:'content_guard')
|
|
117
|
+
self.content_guard = attributes[:'content_guard']
|
|
112
118
|
end
|
|
113
119
|
|
|
114
120
|
if attributes.key?(:'pulp_labels')
|
|
@@ -117,22 +123,16 @@ module PulpContainerClient
|
|
|
117
123
|
end
|
|
118
124
|
end
|
|
119
125
|
|
|
120
|
-
if attributes.key?(:'
|
|
121
|
-
self.
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
if attributes.key?(:'content_guard')
|
|
125
|
-
self.content_guard = attributes[:'content_guard']
|
|
126
|
+
if attributes.key?(:'hidden')
|
|
127
|
+
self.hidden = attributes[:'hidden']
|
|
128
|
+
else
|
|
129
|
+
self.hidden = false
|
|
126
130
|
end
|
|
127
131
|
|
|
128
132
|
if attributes.key?(:'repository')
|
|
129
133
|
self.repository = attributes[:'repository']
|
|
130
134
|
end
|
|
131
135
|
|
|
132
|
-
if attributes.key?(:'base_path')
|
|
133
|
-
self.base_path = attributes[:'base_path']
|
|
134
|
-
end
|
|
135
|
-
|
|
136
136
|
if attributes.key?(:'remote')
|
|
137
137
|
self.remote = attributes[:'remote']
|
|
138
138
|
end
|
|
@@ -225,12 +225,12 @@ module PulpContainerClient
|
|
|
225
225
|
def ==(o)
|
|
226
226
|
return true if self.equal?(o)
|
|
227
227
|
self.class == o.class &&
|
|
228
|
-
hidden == o.hidden &&
|
|
229
|
-
pulp_labels == o.pulp_labels &&
|
|
230
228
|
name == o.name &&
|
|
229
|
+
base_path == o.base_path &&
|
|
231
230
|
content_guard == o.content_guard &&
|
|
231
|
+
pulp_labels == o.pulp_labels &&
|
|
232
|
+
hidden == o.hidden &&
|
|
232
233
|
repository == o.repository &&
|
|
233
|
-
base_path == o.base_path &&
|
|
234
234
|
remote == o.remote &&
|
|
235
235
|
distributions == o.distributions &&
|
|
236
236
|
private == o.private &&
|
|
@@ -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
|
+
[name, base_path, content_guard, pulp_labels, hidden, repository, remote, distributions, private, description].hash
|
|
250
250
|
end
|
|
251
251
|
|
|
252
252
|
# Builds the object from hash
|