pulp_container_client 2.26.15 → 2.26.16
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 +4 -4
- data/docs/ContainerContainerDistributionResponse.md +12 -12
- data/docs/ContainerContainerPullThroughDistribution.md +4 -4
- data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
- data/docs/ContainerContainerPushRepository.md +3 -3
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +3 -3
- data/lib/pulp_container_client/models/container_container_distribution.rb +23 -23
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +53 -53
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +23 -23
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +53 -53
- data/lib/pulp_container_client/models/container_container_push_repository.rb +15 -15
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +43 -43
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +21 -21
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +15 -15
- 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 +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 +2 -2
|
@@ -16,20 +16,13 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# Serializer for Container Push Repositories.
|
|
18
18
|
class ContainerContainerPushRepositoryResponse
|
|
19
|
-
attr_accessor :versions_href
|
|
20
|
-
|
|
21
19
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
22
20
|
attr_accessor :retain_repo_versions
|
|
23
21
|
|
|
24
22
|
# The Pulp Resource Name (PRN).
|
|
25
23
|
attr_accessor :prn
|
|
26
24
|
|
|
27
|
-
attr_accessor :
|
|
28
|
-
|
|
29
|
-
attr_accessor :latest_version_href
|
|
30
|
-
|
|
31
|
-
# 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.
|
|
32
|
-
attr_accessor :pulp_last_updated
|
|
25
|
+
attr_accessor :pulp_href
|
|
33
26
|
|
|
34
27
|
# A reference to an associated signing service.
|
|
35
28
|
attr_accessor :manifest_signing_service
|
|
@@ -40,25 +33,32 @@ module PulpContainerClient
|
|
|
40
33
|
# A unique name for this repository.
|
|
41
34
|
attr_accessor :name
|
|
42
35
|
|
|
36
|
+
attr_accessor :pulp_labels
|
|
37
|
+
|
|
38
|
+
attr_accessor :latest_version_href
|
|
39
|
+
|
|
40
|
+
# 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.
|
|
41
|
+
attr_accessor :pulp_last_updated
|
|
42
|
+
|
|
43
43
|
# Timestamp of creation.
|
|
44
44
|
attr_accessor :pulp_created
|
|
45
45
|
|
|
46
|
-
attr_accessor :
|
|
46
|
+
attr_accessor :versions_href
|
|
47
47
|
|
|
48
48
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
49
|
def self.attribute_map
|
|
50
50
|
{
|
|
51
|
-
:'versions_href' => :'versions_href',
|
|
52
51
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
53
52
|
:'prn' => :'prn',
|
|
54
|
-
:'
|
|
55
|
-
:'latest_version_href' => :'latest_version_href',
|
|
56
|
-
:'pulp_last_updated' => :'pulp_last_updated',
|
|
53
|
+
:'pulp_href' => :'pulp_href',
|
|
57
54
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
58
55
|
:'description' => :'description',
|
|
59
56
|
:'name' => :'name',
|
|
57
|
+
:'pulp_labels' => :'pulp_labels',
|
|
58
|
+
:'latest_version_href' => :'latest_version_href',
|
|
59
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
60
60
|
:'pulp_created' => :'pulp_created',
|
|
61
|
-
:'
|
|
61
|
+
:'versions_href' => :'versions_href'
|
|
62
62
|
}
|
|
63
63
|
end
|
|
64
64
|
|
|
@@ -70,17 +70,17 @@ module PulpContainerClient
|
|
|
70
70
|
# Attribute type mapping.
|
|
71
71
|
def self.openapi_types
|
|
72
72
|
{
|
|
73
|
-
:'versions_href' => :'String',
|
|
74
73
|
:'retain_repo_versions' => :'Integer',
|
|
75
74
|
:'prn' => :'String',
|
|
76
|
-
:'
|
|
77
|
-
:'latest_version_href' => :'String',
|
|
78
|
-
:'pulp_last_updated' => :'Time',
|
|
75
|
+
:'pulp_href' => :'String',
|
|
79
76
|
:'manifest_signing_service' => :'String',
|
|
80
77
|
:'description' => :'String',
|
|
81
78
|
:'name' => :'String',
|
|
79
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
80
|
+
:'latest_version_href' => :'String',
|
|
81
|
+
:'pulp_last_updated' => :'Time',
|
|
82
82
|
:'pulp_created' => :'Time',
|
|
83
|
-
:'
|
|
83
|
+
:'versions_href' => :'String'
|
|
84
84
|
}
|
|
85
85
|
end
|
|
86
86
|
|
|
@@ -108,10 +108,6 @@ module PulpContainerClient
|
|
|
108
108
|
h[k.to_sym] = v
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
if attributes.key?(:'versions_href')
|
|
112
|
-
self.versions_href = attributes[:'versions_href']
|
|
113
|
-
end
|
|
114
|
-
|
|
115
111
|
if attributes.key?(:'retain_repo_versions')
|
|
116
112
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
117
113
|
end
|
|
@@ -120,18 +116,8 @@ module PulpContainerClient
|
|
|
120
116
|
self.prn = attributes[:'prn']
|
|
121
117
|
end
|
|
122
118
|
|
|
123
|
-
if attributes.key?(:'
|
|
124
|
-
|
|
125
|
-
self.pulp_labels = value
|
|
126
|
-
end
|
|
127
|
-
end
|
|
128
|
-
|
|
129
|
-
if attributes.key?(:'latest_version_href')
|
|
130
|
-
self.latest_version_href = attributes[:'latest_version_href']
|
|
131
|
-
end
|
|
132
|
-
|
|
133
|
-
if attributes.key?(:'pulp_last_updated')
|
|
134
|
-
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
119
|
+
if attributes.key?(:'pulp_href')
|
|
120
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
135
121
|
end
|
|
136
122
|
|
|
137
123
|
if attributes.key?(:'manifest_signing_service')
|
|
@@ -148,12 +134,26 @@ module PulpContainerClient
|
|
|
148
134
|
self.name = nil
|
|
149
135
|
end
|
|
150
136
|
|
|
137
|
+
if attributes.key?(:'pulp_labels')
|
|
138
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
139
|
+
self.pulp_labels = value
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
if attributes.key?(:'latest_version_href')
|
|
144
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
if attributes.key?(:'pulp_last_updated')
|
|
148
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
149
|
+
end
|
|
150
|
+
|
|
151
151
|
if attributes.key?(:'pulp_created')
|
|
152
152
|
self.pulp_created = attributes[:'pulp_created']
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
-
if attributes.key?(:'
|
|
156
|
-
self.
|
|
155
|
+
if attributes.key?(:'versions_href')
|
|
156
|
+
self.versions_href = attributes[:'versions_href']
|
|
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
|
-
versions_href == o.versions_href &&
|
|
186
185
|
retain_repo_versions == o.retain_repo_versions &&
|
|
187
186
|
prn == o.prn &&
|
|
188
|
-
|
|
189
|
-
latest_version_href == o.latest_version_href &&
|
|
190
|
-
pulp_last_updated == o.pulp_last_updated &&
|
|
187
|
+
pulp_href == o.pulp_href &&
|
|
191
188
|
manifest_signing_service == o.manifest_signing_service &&
|
|
192
189
|
description == o.description &&
|
|
193
190
|
name == o.name &&
|
|
191
|
+
pulp_labels == o.pulp_labels &&
|
|
192
|
+
latest_version_href == o.latest_version_href &&
|
|
193
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
194
194
|
pulp_created == o.pulp_created &&
|
|
195
|
-
|
|
195
|
+
versions_href == o.versions_href
|
|
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
|
+
[retain_repo_versions, prn, pulp_href, manifest_signing_service, description, name, pulp_labels, latest_version_href, pulp_last_updated, pulp_created, versions_href].hash
|
|
208
208
|
end
|
|
209
209
|
|
|
210
210
|
# Builds the object from hash
|
|
@@ -16,20 +16,20 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for ContainerDistribution.
|
|
18
18
|
class PatchedcontainerContainerDistribution
|
|
19
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
20
|
+
attr_accessor :content_guard
|
|
21
|
+
|
|
19
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\")
|
|
20
23
|
attr_accessor :base_path
|
|
21
24
|
|
|
22
|
-
|
|
25
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
26
|
+
attr_accessor :name
|
|
23
27
|
|
|
24
|
-
|
|
25
|
-
attr_accessor :content_guard
|
|
28
|
+
attr_accessor :pulp_labels
|
|
26
29
|
|
|
27
30
|
# Whether this distribution should be shown in the content app.
|
|
28
31
|
attr_accessor :hidden
|
|
29
32
|
|
|
30
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
31
|
-
attr_accessor :name
|
|
32
|
-
|
|
33
33
|
# The latest RepositoryVersion for this Repository will be served.
|
|
34
34
|
attr_accessor :repository
|
|
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
|
+
:'content_guard' => :'content_guard',
|
|
48
49
|
:'base_path' => :'base_path',
|
|
50
|
+
:'name' => :'name',
|
|
49
51
|
:'pulp_labels' => :'pulp_labels',
|
|
50
|
-
:'content_guard' => :'content_guard',
|
|
51
52
|
:'hidden' => :'hidden',
|
|
52
|
-
:'name' => :'name',
|
|
53
53
|
:'repository' => :'repository',
|
|
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
|
+
:'content_guard' => :'String',
|
|
68
69
|
:'base_path' => :'String',
|
|
70
|
+
:'name' => :'String',
|
|
69
71
|
:'pulp_labels' => :'Hash<String, String>',
|
|
70
|
-
:'content_guard' => :'String',
|
|
71
72
|
:'hidden' => :'Boolean',
|
|
72
|
-
:'name' => :'String',
|
|
73
73
|
:'repository' => :'String',
|
|
74
74
|
:'repository_version' => :'String',
|
|
75
75
|
:'private' => :'Boolean',
|
|
@@ -101,30 +101,30 @@ module PulpContainerClient
|
|
|
101
101
|
h[k.to_sym] = v
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
if attributes.key?(:'content_guard')
|
|
105
|
+
self.content_guard = attributes[:'content_guard']
|
|
106
|
+
end
|
|
107
|
+
|
|
104
108
|
if attributes.key?(:'base_path')
|
|
105
109
|
self.base_path = attributes[:'base_path']
|
|
106
110
|
end
|
|
107
111
|
|
|
112
|
+
if attributes.key?(:'name')
|
|
113
|
+
self.name = attributes[:'name']
|
|
114
|
+
end
|
|
115
|
+
|
|
108
116
|
if attributes.key?(:'pulp_labels')
|
|
109
117
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
110
118
|
self.pulp_labels = value
|
|
111
119
|
end
|
|
112
120
|
end
|
|
113
121
|
|
|
114
|
-
if attributes.key?(:'content_guard')
|
|
115
|
-
self.content_guard = attributes[:'content_guard']
|
|
116
|
-
end
|
|
117
|
-
|
|
118
122
|
if attributes.key?(:'hidden')
|
|
119
123
|
self.hidden = attributes[:'hidden']
|
|
120
124
|
else
|
|
121
125
|
self.hidden = false
|
|
122
126
|
end
|
|
123
127
|
|
|
124
|
-
if attributes.key?(:'name')
|
|
125
|
-
self.name = attributes[:'name']
|
|
126
|
-
end
|
|
127
|
-
|
|
128
128
|
if attributes.key?(:'repository')
|
|
129
129
|
self.repository = attributes[:'repository']
|
|
130
130
|
end
|
|
@@ -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
|
+
content_guard == o.content_guard &&
|
|
218
219
|
base_path == o.base_path &&
|
|
220
|
+
name == o.name &&
|
|
219
221
|
pulp_labels == o.pulp_labels &&
|
|
220
|
-
content_guard == o.content_guard &&
|
|
221
222
|
hidden == o.hidden &&
|
|
222
|
-
name == o.name &&
|
|
223
223
|
repository == o.repository &&
|
|
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
|
-
[base_path,
|
|
238
|
+
[content_guard, base_path, name, 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,20 +16,20 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for a specialized pull-through distribution referencing sub-distributions.
|
|
18
18
|
class PatchedcontainerContainerPullThroughDistribution
|
|
19
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
20
|
+
attr_accessor :content_guard
|
|
21
|
+
|
|
19
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\")
|
|
20
23
|
attr_accessor :base_path
|
|
21
24
|
|
|
22
|
-
|
|
25
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
26
|
+
attr_accessor :name
|
|
23
27
|
|
|
24
|
-
|
|
25
|
-
attr_accessor :content_guard
|
|
28
|
+
attr_accessor :pulp_labels
|
|
26
29
|
|
|
27
30
|
# Whether this distribution should be shown in the content app.
|
|
28
31
|
attr_accessor :hidden
|
|
29
32
|
|
|
30
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
31
|
-
attr_accessor :name
|
|
32
|
-
|
|
33
33
|
# The latest RepositoryVersion for this Repository will be served.
|
|
34
34
|
attr_accessor :repository
|
|
35
35
|
|
|
@@ -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
|
+
:'content_guard' => :'content_guard',
|
|
51
52
|
:'base_path' => :'base_path',
|
|
53
|
+
:'name' => :'name',
|
|
52
54
|
:'pulp_labels' => :'pulp_labels',
|
|
53
|
-
:'content_guard' => :'content_guard',
|
|
54
55
|
:'hidden' => :'hidden',
|
|
55
|
-
:'name' => :'name',
|
|
56
56
|
:'repository' => :'repository',
|
|
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
|
+
:'content_guard' => :'String',
|
|
72
73
|
:'base_path' => :'String',
|
|
74
|
+
:'name' => :'String',
|
|
73
75
|
:'pulp_labels' => :'Hash<String, String>',
|
|
74
|
-
:'content_guard' => :'String',
|
|
75
76
|
:'hidden' => :'Boolean',
|
|
76
|
-
:'name' => :'String',
|
|
77
77
|
:'repository' => :'String',
|
|
78
78
|
:'remote' => :'String',
|
|
79
79
|
:'distributions' => :'Array<String>',
|
|
@@ -105,30 +105,30 @@ module PulpContainerClient
|
|
|
105
105
|
h[k.to_sym] = v
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
+
if attributes.key?(:'content_guard')
|
|
109
|
+
self.content_guard = attributes[:'content_guard']
|
|
110
|
+
end
|
|
111
|
+
|
|
108
112
|
if attributes.key?(:'base_path')
|
|
109
113
|
self.base_path = attributes[:'base_path']
|
|
110
114
|
end
|
|
111
115
|
|
|
116
|
+
if attributes.key?(:'name')
|
|
117
|
+
self.name = attributes[:'name']
|
|
118
|
+
end
|
|
119
|
+
|
|
112
120
|
if attributes.key?(:'pulp_labels')
|
|
113
121
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
114
122
|
self.pulp_labels = value
|
|
115
123
|
end
|
|
116
124
|
end
|
|
117
125
|
|
|
118
|
-
if attributes.key?(:'content_guard')
|
|
119
|
-
self.content_guard = attributes[:'content_guard']
|
|
120
|
-
end
|
|
121
|
-
|
|
122
126
|
if attributes.key?(:'hidden')
|
|
123
127
|
self.hidden = attributes[:'hidden']
|
|
124
128
|
else
|
|
125
129
|
self.hidden = false
|
|
126
130
|
end
|
|
127
131
|
|
|
128
|
-
if attributes.key?(:'name')
|
|
129
|
-
self.name = attributes[:'name']
|
|
130
|
-
end
|
|
131
|
-
|
|
132
132
|
if attributes.key?(:'repository')
|
|
133
133
|
self.repository = attributes[:'repository']
|
|
134
134
|
end
|
|
@@ -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
|
+
content_guard == o.content_guard &&
|
|
228
229
|
base_path == o.base_path &&
|
|
230
|
+
name == o.name &&
|
|
229
231
|
pulp_labels == o.pulp_labels &&
|
|
230
|
-
content_guard == o.content_guard &&
|
|
231
232
|
hidden == o.hidden &&
|
|
232
|
-
name == o.name &&
|
|
233
233
|
repository == o.repository &&
|
|
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
|
-
[base_path,
|
|
249
|
+
[content_guard, base_path, name, pulp_labels, hidden, repository, remote, distributions, private, description].hash
|
|
250
250
|
end
|
|
251
251
|
|
|
252
252
|
# Builds the object from hash
|
|
@@ -19,8 +19,6 @@ module PulpContainerClient
|
|
|
19
19
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
20
20
|
attr_accessor :retain_repo_versions
|
|
21
21
|
|
|
22
|
-
attr_accessor :pulp_labels
|
|
23
|
-
|
|
24
22
|
# A reference to an associated signing service.
|
|
25
23
|
attr_accessor :manifest_signing_service
|
|
26
24
|
|
|
@@ -30,14 +28,16 @@ module PulpContainerClient
|
|
|
30
28
|
# A unique name for this repository.
|
|
31
29
|
attr_accessor :name
|
|
32
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
36
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
37
|
-
:'pulp_labels' => :'pulp_labels',
|
|
38
37
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
39
38
|
:'description' => :'description',
|
|
40
|
-
:'name' => :'name'
|
|
39
|
+
:'name' => :'name',
|
|
40
|
+
:'pulp_labels' => :'pulp_labels'
|
|
41
41
|
}
|
|
42
42
|
end
|
|
43
43
|
|
|
@@ -50,10 +50,10 @@ module PulpContainerClient
|
|
|
50
50
|
def self.openapi_types
|
|
51
51
|
{
|
|
52
52
|
:'retain_repo_versions' => :'Integer',
|
|
53
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
54
53
|
:'manifest_signing_service' => :'String',
|
|
55
54
|
:'description' => :'String',
|
|
56
|
-
:'name' => :'String'
|
|
55
|
+
:'name' => :'String',
|
|
56
|
+
:'pulp_labels' => :'Hash<String, String>'
|
|
57
57
|
}
|
|
58
58
|
end
|
|
59
59
|
|
|
@@ -85,12 +85,6 @@ module PulpContainerClient
|
|
|
85
85
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
86
86
|
end
|
|
87
87
|
|
|
88
|
-
if attributes.key?(:'pulp_labels')
|
|
89
|
-
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
90
|
-
self.pulp_labels = value
|
|
91
|
-
end
|
|
92
|
-
end
|
|
93
|
-
|
|
94
88
|
if attributes.key?(:'manifest_signing_service')
|
|
95
89
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
96
90
|
end
|
|
@@ -102,6 +96,12 @@ module PulpContainerClient
|
|
|
102
96
|
if attributes.key?(:'name')
|
|
103
97
|
self.name = attributes[:'name']
|
|
104
98
|
end
|
|
99
|
+
|
|
100
|
+
if attributes.key?(:'pulp_labels')
|
|
101
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
102
|
+
self.pulp_labels = value
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
105
|
end
|
|
106
106
|
|
|
107
107
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -159,10 +159,10 @@ module PulpContainerClient
|
|
|
159
159
|
return true if self.equal?(o)
|
|
160
160
|
self.class == o.class &&
|
|
161
161
|
retain_repo_versions == o.retain_repo_versions &&
|
|
162
|
-
pulp_labels == o.pulp_labels &&
|
|
163
162
|
manifest_signing_service == o.manifest_signing_service &&
|
|
164
163
|
description == o.description &&
|
|
165
|
-
name == o.name
|
|
164
|
+
name == o.name &&
|
|
165
|
+
pulp_labels == o.pulp_labels
|
|
166
166
|
end
|
|
167
167
|
|
|
168
168
|
# @see the `==` method
|
|
@@ -174,7 +174,7 @@ module PulpContainerClient
|
|
|
174
174
|
# Calculates hash code according to all attributes.
|
|
175
175
|
# @return [Integer] Hash code
|
|
176
176
|
def hash
|
|
177
|
-
[retain_repo_versions,
|
|
177
|
+
[retain_repo_versions, manifest_signing_service, description, name, pulp_labels].hash
|
|
178
178
|
end
|
|
179
179
|
|
|
180
180
|
# Builds the object from hash
|
|
@@ -27,25 +27,25 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test attribute "
|
|
30
|
+
describe 'test attribute "prn"' do
|
|
31
31
|
it 'should work' do
|
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "pulp_href"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "content_guard"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "base_path"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
@@ -57,25 +57,25 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "name"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "hidden"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "pulp_last_updated"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
@@ -87,7 +87,7 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "repository"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
@@ -27,31 +27,31 @@ describe PulpContainerClient::ContainerContainerDistribution do
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test attribute "
|
|
30
|
+
describe 'test attribute "content_guard"' do
|
|
31
31
|
it 'should work' do
|
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "base_path"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "name"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "pulp_labels"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "hidden"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
@@ -27,25 +27,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test attribute "
|
|
30
|
+
describe 'test attribute "prn"' do
|
|
31
31
|
it 'should work' do
|
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "pulp_href"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "content_guard"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "base_path"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
@@ -57,25 +57,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
|
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "name"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "hidden"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "pulp_last_updated"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
@@ -87,7 +87,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "repository"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|