pulp_container_client 2.24.2 → 2.24.4
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 +5 -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 +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
- data/docs/ContentBlobsApi.md +20 -8
- data/docs/ContentManifestsApi.md +20 -8
- data/docs/ContentSignaturesApi.md +20 -8
- data/docs/ContentTagsApi.md +20 -8
- data/docs/DistributionsContainerApi.md +72 -32
- data/docs/DistributionsPullThroughApi.md +72 -32
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/docs/PulpContainerNamespacesApi.md +40 -16
- data/docs/RemotesContainerApi.md +72 -32
- data/docs/RemotesPullThroughApi.md +72 -32
- data/docs/RepositoriesContainerApi.md +138 -64
- data/docs/RepositoriesContainerPushApi.md +80 -36
- data/docs/RepositoriesContainerPushVersionsApi.md +22 -10
- data/docs/RepositoriesContainerVersionsApi.md +22 -10
- data/docs/TokenApi.md +14 -5
- data/lib/pulp_container_client/api/content_blobs_api.rb +12 -0
- data/lib/pulp_container_client/api/content_manifests_api.rb +12 -0
- data/lib/pulp_container_client/api/content_signatures_api.rb +12 -0
- data/lib/pulp_container_client/api/content_tags_api.rb +12 -0
- data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
- data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
- data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +63 -0
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +15 -3
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +15 -3
- data/lib/pulp_container_client/api/token_api.rb +9 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +20 -20
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +50 -50
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +20 -20
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +50 -50
- 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 +52 -52
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +18 -18
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +42 -42
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/content_blobs_api_spec.rb +4 -0
- data/spec/api/content_manifests_api_spec.rb +4 -0
- data/spec/api/content_signatures_api_spec.rb +4 -0
- data/spec/api/content_tags_api_spec.rb +4 -0
- data/spec/api/distributions_container_api_spec.rb +12 -0
- data/spec/api/distributions_pull_through_api_spec.rb +12 -0
- data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
- data/spec/api/remotes_container_api_spec.rb +12 -0
- data/spec/api/remotes_pull_through_api_spec.rb +12 -0
- data/spec/api/repositories_container_api_spec.rb +21 -0
- data/spec/api/repositories_container_push_api_spec.rb +13 -0
- data/spec/api/repositories_container_push_versions_api_spec.rb +5 -1
- data/spec/api/repositories_container_versions_api_spec.rb +5 -1
- data/spec/api/token_api_spec.rb +3 -0
- data/spec/models/container_container_distribution_response_spec.rb +9 -9
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
- data/spec/models/container_container_pull_through_distribution_spec.rb +3 -3
- data/spec/models/container_container_push_repository_response_spec.rb +11 -11
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
- metadata +60 -60
|
@@ -19,20 +19,20 @@ module PulpContainerClient
|
|
|
19
19
|
# Whether this distribution should be shown in the content app.
|
|
20
20
|
attr_accessor :hidden
|
|
21
21
|
|
|
22
|
-
#
|
|
23
|
-
attr_accessor :
|
|
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
24
|
|
|
25
25
|
attr_accessor :pulp_labels
|
|
26
26
|
|
|
27
27
|
# The latest RepositoryVersion for this Repository will be served.
|
|
28
28
|
attr_accessor :repository
|
|
29
29
|
|
|
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\")
|
|
31
|
-
attr_accessor :base_path
|
|
32
|
-
|
|
33
30
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
34
31
|
attr_accessor :name
|
|
35
32
|
|
|
33
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
34
|
+
attr_accessor :content_guard
|
|
35
|
+
|
|
36
36
|
# RepositoryVersion to be served
|
|
37
37
|
attr_accessor :repository_version
|
|
38
38
|
|
|
@@ -46,11 +46,11 @@ module PulpContainerClient
|
|
|
46
46
|
def self.attribute_map
|
|
47
47
|
{
|
|
48
48
|
:'hidden' => :'hidden',
|
|
49
|
-
:'
|
|
49
|
+
:'base_path' => :'base_path',
|
|
50
50
|
:'pulp_labels' => :'pulp_labels',
|
|
51
51
|
:'repository' => :'repository',
|
|
52
|
-
:'base_path' => :'base_path',
|
|
53
52
|
:'name' => :'name',
|
|
53
|
+
:'content_guard' => :'content_guard',
|
|
54
54
|
:'repository_version' => :'repository_version',
|
|
55
55
|
:'private' => :'private',
|
|
56
56
|
:'description' => :'description'
|
|
@@ -66,11 +66,11 @@ module PulpContainerClient
|
|
|
66
66
|
def self.openapi_types
|
|
67
67
|
{
|
|
68
68
|
:'hidden' => :'Boolean',
|
|
69
|
-
:'
|
|
69
|
+
:'base_path' => :'String',
|
|
70
70
|
:'pulp_labels' => :'Hash<String, String>',
|
|
71
71
|
:'repository' => :'String',
|
|
72
|
-
:'base_path' => :'String',
|
|
73
72
|
:'name' => :'String',
|
|
73
|
+
:'content_guard' => :'String',
|
|
74
74
|
:'repository_version' => :'String',
|
|
75
75
|
:'private' => :'Boolean',
|
|
76
76
|
:'description' => :'String'
|
|
@@ -107,8 +107,10 @@ module PulpContainerClient
|
|
|
107
107
|
self.hidden = false
|
|
108
108
|
end
|
|
109
109
|
|
|
110
|
-
if attributes.key?(:'
|
|
111
|
-
self.
|
|
110
|
+
if attributes.key?(:'base_path')
|
|
111
|
+
self.base_path = attributes[:'base_path']
|
|
112
|
+
else
|
|
113
|
+
self.base_path = nil
|
|
112
114
|
end
|
|
113
115
|
|
|
114
116
|
if attributes.key?(:'pulp_labels')
|
|
@@ -121,18 +123,16 @@ module PulpContainerClient
|
|
|
121
123
|
self.repository = attributes[:'repository']
|
|
122
124
|
end
|
|
123
125
|
|
|
124
|
-
if attributes.key?(:'base_path')
|
|
125
|
-
self.base_path = attributes[:'base_path']
|
|
126
|
-
else
|
|
127
|
-
self.base_path = nil
|
|
128
|
-
end
|
|
129
|
-
|
|
130
126
|
if attributes.key?(:'name')
|
|
131
127
|
self.name = attributes[:'name']
|
|
132
128
|
else
|
|
133
129
|
self.name = nil
|
|
134
130
|
end
|
|
135
131
|
|
|
132
|
+
if attributes.key?(:'content_guard')
|
|
133
|
+
self.content_guard = attributes[:'content_guard']
|
|
134
|
+
end
|
|
135
|
+
|
|
136
136
|
if attributes.key?(:'repository_version')
|
|
137
137
|
self.repository_version = attributes[:'repository_version']
|
|
138
138
|
end
|
|
@@ -230,11 +230,11 @@ module PulpContainerClient
|
|
|
230
230
|
return true if self.equal?(o)
|
|
231
231
|
self.class == o.class &&
|
|
232
232
|
hidden == o.hidden &&
|
|
233
|
-
|
|
233
|
+
base_path == o.base_path &&
|
|
234
234
|
pulp_labels == o.pulp_labels &&
|
|
235
235
|
repository == o.repository &&
|
|
236
|
-
base_path == o.base_path &&
|
|
237
236
|
name == o.name &&
|
|
237
|
+
content_guard == o.content_guard &&
|
|
238
238
|
repository_version == o.repository_version &&
|
|
239
239
|
private == o.private &&
|
|
240
240
|
description == o.description
|
|
@@ -249,7 +249,7 @@ module PulpContainerClient
|
|
|
249
249
|
# Calculates hash code according to all attributes.
|
|
250
250
|
# @return [Integer] Hash code
|
|
251
251
|
def hash
|
|
252
|
-
[hidden,
|
|
252
|
+
[hidden, base_path, pulp_labels, repository, name, content_guard, repository_version, private, description].hash
|
|
253
253
|
end
|
|
254
254
|
|
|
255
255
|
# Builds the object from hash
|
|
@@ -19,15 +19,21 @@ module PulpContainerClient
|
|
|
19
19
|
# Whether this distribution should be shown in the content app.
|
|
20
20
|
attr_accessor :hidden
|
|
21
21
|
|
|
22
|
-
#
|
|
23
|
-
attr_accessor :
|
|
22
|
+
# Timestamp of creation.
|
|
23
|
+
attr_accessor :pulp_created
|
|
24
24
|
|
|
25
|
-
# The
|
|
26
|
-
attr_accessor :
|
|
25
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
26
|
+
attr_accessor :base_path
|
|
27
|
+
|
|
28
|
+
attr_accessor :pulp_href
|
|
27
29
|
|
|
28
30
|
attr_accessor :pulp_labels
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
# The Pulp Resource Name (PRN).
|
|
33
|
+
attr_accessor :prn
|
|
34
|
+
|
|
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.
|
|
36
|
+
attr_accessor :pulp_last_updated
|
|
31
37
|
|
|
32
38
|
# Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
|
|
33
39
|
attr_accessor :no_content_change_since
|
|
@@ -35,17 +41,11 @@ module PulpContainerClient
|
|
|
35
41
|
# The latest RepositoryVersion for this Repository will be served.
|
|
36
42
|
attr_accessor :repository
|
|
37
43
|
|
|
38
|
-
# Timestamp of creation.
|
|
39
|
-
attr_accessor :pulp_created
|
|
40
|
-
|
|
41
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
42
|
-
attr_accessor :base_path
|
|
43
|
-
|
|
44
44
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
45
45
|
attr_accessor :name
|
|
46
46
|
|
|
47
|
-
#
|
|
48
|
-
attr_accessor :
|
|
47
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
48
|
+
attr_accessor :content_guard
|
|
49
49
|
|
|
50
50
|
# RepositoryVersion to be served
|
|
51
51
|
attr_accessor :repository_version
|
|
@@ -69,16 +69,16 @@ module PulpContainerClient
|
|
|
69
69
|
def self.attribute_map
|
|
70
70
|
{
|
|
71
71
|
:'hidden' => :'hidden',
|
|
72
|
-
:'
|
|
73
|
-
:'
|
|
74
|
-
:'pulp_labels' => :'pulp_labels',
|
|
72
|
+
:'pulp_created' => :'pulp_created',
|
|
73
|
+
:'base_path' => :'base_path',
|
|
75
74
|
:'pulp_href' => :'pulp_href',
|
|
75
|
+
:'pulp_labels' => :'pulp_labels',
|
|
76
|
+
:'prn' => :'prn',
|
|
77
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
76
78
|
:'no_content_change_since' => :'no_content_change_since',
|
|
77
79
|
:'repository' => :'repository',
|
|
78
|
-
:'pulp_created' => :'pulp_created',
|
|
79
|
-
:'base_path' => :'base_path',
|
|
80
80
|
:'name' => :'name',
|
|
81
|
-
:'
|
|
81
|
+
:'content_guard' => :'content_guard',
|
|
82
82
|
:'repository_version' => :'repository_version',
|
|
83
83
|
:'registry_path' => :'registry_path',
|
|
84
84
|
:'remote' => :'remote',
|
|
@@ -97,16 +97,16 @@ module PulpContainerClient
|
|
|
97
97
|
def self.openapi_types
|
|
98
98
|
{
|
|
99
99
|
:'hidden' => :'Boolean',
|
|
100
|
-
:'
|
|
101
|
-
:'
|
|
102
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
100
|
+
:'pulp_created' => :'Time',
|
|
101
|
+
:'base_path' => :'String',
|
|
103
102
|
:'pulp_href' => :'String',
|
|
103
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
104
|
+
:'prn' => :'String',
|
|
105
|
+
:'pulp_last_updated' => :'Time',
|
|
104
106
|
:'no_content_change_since' => :'String',
|
|
105
107
|
:'repository' => :'String',
|
|
106
|
-
:'pulp_created' => :'Time',
|
|
107
|
-
:'base_path' => :'String',
|
|
108
108
|
:'name' => :'String',
|
|
109
|
-
:'
|
|
109
|
+
:'content_guard' => :'String',
|
|
110
110
|
:'repository_version' => :'String',
|
|
111
111
|
:'registry_path' => :'String',
|
|
112
112
|
:'remote' => :'String',
|
|
@@ -146,12 +146,18 @@ module PulpContainerClient
|
|
|
146
146
|
self.hidden = false
|
|
147
147
|
end
|
|
148
148
|
|
|
149
|
-
if attributes.key?(:'
|
|
150
|
-
self.
|
|
149
|
+
if attributes.key?(:'pulp_created')
|
|
150
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
151
151
|
end
|
|
152
152
|
|
|
153
|
-
if attributes.key?(:'
|
|
154
|
-
self.
|
|
153
|
+
if attributes.key?(:'base_path')
|
|
154
|
+
self.base_path = attributes[:'base_path']
|
|
155
|
+
else
|
|
156
|
+
self.base_path = nil
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
if attributes.key?(:'pulp_href')
|
|
160
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
155
161
|
end
|
|
156
162
|
|
|
157
163
|
if attributes.key?(:'pulp_labels')
|
|
@@ -160,8 +166,12 @@ module PulpContainerClient
|
|
|
160
166
|
end
|
|
161
167
|
end
|
|
162
168
|
|
|
163
|
-
if attributes.key?(:'
|
|
164
|
-
self.
|
|
169
|
+
if attributes.key?(:'prn')
|
|
170
|
+
self.prn = attributes[:'prn']
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
if attributes.key?(:'pulp_last_updated')
|
|
174
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
165
175
|
end
|
|
166
176
|
|
|
167
177
|
if attributes.key?(:'no_content_change_since')
|
|
@@ -172,24 +182,14 @@ module PulpContainerClient
|
|
|
172
182
|
self.repository = attributes[:'repository']
|
|
173
183
|
end
|
|
174
184
|
|
|
175
|
-
if attributes.key?(:'pulp_created')
|
|
176
|
-
self.pulp_created = attributes[:'pulp_created']
|
|
177
|
-
end
|
|
178
|
-
|
|
179
|
-
if attributes.key?(:'base_path')
|
|
180
|
-
self.base_path = attributes[:'base_path']
|
|
181
|
-
else
|
|
182
|
-
self.base_path = nil
|
|
183
|
-
end
|
|
184
|
-
|
|
185
185
|
if attributes.key?(:'name')
|
|
186
186
|
self.name = attributes[:'name']
|
|
187
187
|
else
|
|
188
188
|
self.name = nil
|
|
189
189
|
end
|
|
190
190
|
|
|
191
|
-
if attributes.key?(:'
|
|
192
|
-
self.
|
|
191
|
+
if attributes.key?(:'content_guard')
|
|
192
|
+
self.content_guard = attributes[:'content_guard']
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
if attributes.key?(:'repository_version')
|
|
@@ -248,16 +248,16 @@ module PulpContainerClient
|
|
|
248
248
|
return true if self.equal?(o)
|
|
249
249
|
self.class == o.class &&
|
|
250
250
|
hidden == o.hidden &&
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
pulp_labels == o.pulp_labels &&
|
|
251
|
+
pulp_created == o.pulp_created &&
|
|
252
|
+
base_path == o.base_path &&
|
|
254
253
|
pulp_href == o.pulp_href &&
|
|
254
|
+
pulp_labels == o.pulp_labels &&
|
|
255
|
+
prn == o.prn &&
|
|
256
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
255
257
|
no_content_change_since == o.no_content_change_since &&
|
|
256
258
|
repository == o.repository &&
|
|
257
|
-
pulp_created == o.pulp_created &&
|
|
258
|
-
base_path == o.base_path &&
|
|
259
259
|
name == o.name &&
|
|
260
|
-
|
|
260
|
+
content_guard == o.content_guard &&
|
|
261
261
|
repository_version == o.repository_version &&
|
|
262
262
|
registry_path == o.registry_path &&
|
|
263
263
|
remote == o.remote &&
|
|
@@ -275,7 +275,7 @@ module PulpContainerClient
|
|
|
275
275
|
# Calculates hash code according to all attributes.
|
|
276
276
|
# @return [Integer] Hash code
|
|
277
277
|
def hash
|
|
278
|
-
[hidden,
|
|
278
|
+
[hidden, pulp_created, base_path, pulp_href, pulp_labels, prn, pulp_last_updated, no_content_change_since, repository, name, content_guard, repository_version, registry_path, remote, namespace, private, description].hash
|
|
279
279
|
end
|
|
280
280
|
|
|
281
281
|
# Builds the object from hash
|
|
@@ -19,20 +19,20 @@ module PulpContainerClient
|
|
|
19
19
|
# Whether this distribution should be shown in the content app.
|
|
20
20
|
attr_accessor :hidden
|
|
21
21
|
|
|
22
|
-
#
|
|
23
|
-
attr_accessor :
|
|
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
24
|
|
|
25
25
|
attr_accessor :pulp_labels
|
|
26
26
|
|
|
27
27
|
# The latest RepositoryVersion for this Repository will be served.
|
|
28
28
|
attr_accessor :repository
|
|
29
29
|
|
|
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\")
|
|
31
|
-
attr_accessor :base_path
|
|
32
|
-
|
|
33
30
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
34
31
|
attr_accessor :name
|
|
35
32
|
|
|
33
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
34
|
+
attr_accessor :content_guard
|
|
35
|
+
|
|
36
36
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
37
37
|
attr_accessor :remote
|
|
38
38
|
|
|
@@ -49,11 +49,11 @@ module PulpContainerClient
|
|
|
49
49
|
def self.attribute_map
|
|
50
50
|
{
|
|
51
51
|
:'hidden' => :'hidden',
|
|
52
|
-
:'
|
|
52
|
+
:'base_path' => :'base_path',
|
|
53
53
|
:'pulp_labels' => :'pulp_labels',
|
|
54
54
|
:'repository' => :'repository',
|
|
55
|
-
:'base_path' => :'base_path',
|
|
56
55
|
:'name' => :'name',
|
|
56
|
+
:'content_guard' => :'content_guard',
|
|
57
57
|
:'remote' => :'remote',
|
|
58
58
|
:'distributions' => :'distributions',
|
|
59
59
|
:'private' => :'private',
|
|
@@ -70,11 +70,11 @@ module PulpContainerClient
|
|
|
70
70
|
def self.openapi_types
|
|
71
71
|
{
|
|
72
72
|
:'hidden' => :'Boolean',
|
|
73
|
-
:'
|
|
73
|
+
:'base_path' => :'String',
|
|
74
74
|
:'pulp_labels' => :'Hash<String, String>',
|
|
75
75
|
:'repository' => :'String',
|
|
76
|
-
:'base_path' => :'String',
|
|
77
76
|
:'name' => :'String',
|
|
77
|
+
:'content_guard' => :'String',
|
|
78
78
|
:'remote' => :'String',
|
|
79
79
|
:'distributions' => :'Array<String>',
|
|
80
80
|
:'private' => :'Boolean',
|
|
@@ -111,8 +111,10 @@ module PulpContainerClient
|
|
|
111
111
|
self.hidden = false
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
-
if attributes.key?(:'
|
|
115
|
-
self.
|
|
114
|
+
if attributes.key?(:'base_path')
|
|
115
|
+
self.base_path = attributes[:'base_path']
|
|
116
|
+
else
|
|
117
|
+
self.base_path = nil
|
|
116
118
|
end
|
|
117
119
|
|
|
118
120
|
if attributes.key?(:'pulp_labels')
|
|
@@ -125,18 +127,16 @@ module PulpContainerClient
|
|
|
125
127
|
self.repository = attributes[:'repository']
|
|
126
128
|
end
|
|
127
129
|
|
|
128
|
-
if attributes.key?(:'base_path')
|
|
129
|
-
self.base_path = attributes[:'base_path']
|
|
130
|
-
else
|
|
131
|
-
self.base_path = nil
|
|
132
|
-
end
|
|
133
|
-
|
|
134
130
|
if attributes.key?(:'name')
|
|
135
131
|
self.name = attributes[:'name']
|
|
136
132
|
else
|
|
137
133
|
self.name = nil
|
|
138
134
|
end
|
|
139
135
|
|
|
136
|
+
if attributes.key?(:'content_guard')
|
|
137
|
+
self.content_guard = attributes[:'content_guard']
|
|
138
|
+
end
|
|
139
|
+
|
|
140
140
|
if attributes.key?(:'remote')
|
|
141
141
|
self.remote = attributes[:'remote']
|
|
142
142
|
else
|
|
@@ -247,11 +247,11 @@ module PulpContainerClient
|
|
|
247
247
|
return true if self.equal?(o)
|
|
248
248
|
self.class == o.class &&
|
|
249
249
|
hidden == o.hidden &&
|
|
250
|
-
|
|
250
|
+
base_path == o.base_path &&
|
|
251
251
|
pulp_labels == o.pulp_labels &&
|
|
252
252
|
repository == o.repository &&
|
|
253
|
-
base_path == o.base_path &&
|
|
254
253
|
name == o.name &&
|
|
254
|
+
content_guard == o.content_guard &&
|
|
255
255
|
remote == o.remote &&
|
|
256
256
|
distributions == o.distributions &&
|
|
257
257
|
private == o.private &&
|
|
@@ -267,7 +267,7 @@ module PulpContainerClient
|
|
|
267
267
|
# Calculates hash code according to all attributes.
|
|
268
268
|
# @return [Integer] Hash code
|
|
269
269
|
def hash
|
|
270
|
-
[hidden,
|
|
270
|
+
[hidden, base_path, pulp_labels, repository, name, content_guard, remote, distributions, private, description].hash
|
|
271
271
|
end
|
|
272
272
|
|
|
273
273
|
# Builds the object from hash
|
data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb
CHANGED
|
@@ -19,15 +19,21 @@ module PulpContainerClient
|
|
|
19
19
|
# Whether this distribution should be shown in the content app.
|
|
20
20
|
attr_accessor :hidden
|
|
21
21
|
|
|
22
|
-
#
|
|
23
|
-
attr_accessor :
|
|
22
|
+
# Timestamp of creation.
|
|
23
|
+
attr_accessor :pulp_created
|
|
24
24
|
|
|
25
|
-
# The
|
|
26
|
-
attr_accessor :
|
|
25
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
26
|
+
attr_accessor :base_path
|
|
27
|
+
|
|
28
|
+
attr_accessor :pulp_href
|
|
27
29
|
|
|
28
30
|
attr_accessor :pulp_labels
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
# The Pulp Resource Name (PRN).
|
|
33
|
+
attr_accessor :prn
|
|
34
|
+
|
|
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.
|
|
36
|
+
attr_accessor :pulp_last_updated
|
|
31
37
|
|
|
32
38
|
# Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
|
|
33
39
|
attr_accessor :no_content_change_since
|
|
@@ -35,17 +41,11 @@ module PulpContainerClient
|
|
|
35
41
|
# The latest RepositoryVersion for this Repository will be served.
|
|
36
42
|
attr_accessor :repository
|
|
37
43
|
|
|
38
|
-
# Timestamp of creation.
|
|
39
|
-
attr_accessor :pulp_created
|
|
40
|
-
|
|
41
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
42
|
-
attr_accessor :base_path
|
|
43
|
-
|
|
44
44
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
45
45
|
attr_accessor :name
|
|
46
46
|
|
|
47
|
-
#
|
|
48
|
-
attr_accessor :
|
|
47
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
48
|
+
attr_accessor :content_guard
|
|
49
49
|
|
|
50
50
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
51
51
|
attr_accessor :remote
|
|
@@ -66,16 +66,16 @@ module PulpContainerClient
|
|
|
66
66
|
def self.attribute_map
|
|
67
67
|
{
|
|
68
68
|
:'hidden' => :'hidden',
|
|
69
|
-
:'
|
|
70
|
-
:'
|
|
71
|
-
:'pulp_labels' => :'pulp_labels',
|
|
69
|
+
:'pulp_created' => :'pulp_created',
|
|
70
|
+
:'base_path' => :'base_path',
|
|
72
71
|
:'pulp_href' => :'pulp_href',
|
|
72
|
+
:'pulp_labels' => :'pulp_labels',
|
|
73
|
+
:'prn' => :'prn',
|
|
74
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
73
75
|
:'no_content_change_since' => :'no_content_change_since',
|
|
74
76
|
:'repository' => :'repository',
|
|
75
|
-
:'pulp_created' => :'pulp_created',
|
|
76
|
-
:'base_path' => :'base_path',
|
|
77
77
|
:'name' => :'name',
|
|
78
|
-
:'
|
|
78
|
+
:'content_guard' => :'content_guard',
|
|
79
79
|
:'remote' => :'remote',
|
|
80
80
|
:'distributions' => :'distributions',
|
|
81
81
|
:'namespace' => :'namespace',
|
|
@@ -93,16 +93,16 @@ module PulpContainerClient
|
|
|
93
93
|
def self.openapi_types
|
|
94
94
|
{
|
|
95
95
|
:'hidden' => :'Boolean',
|
|
96
|
-
:'
|
|
97
|
-
:'
|
|
98
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
96
|
+
:'pulp_created' => :'Time',
|
|
97
|
+
:'base_path' => :'String',
|
|
99
98
|
:'pulp_href' => :'String',
|
|
99
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
100
|
+
:'prn' => :'String',
|
|
101
|
+
:'pulp_last_updated' => :'Time',
|
|
100
102
|
:'no_content_change_since' => :'String',
|
|
101
103
|
:'repository' => :'String',
|
|
102
|
-
:'pulp_created' => :'Time',
|
|
103
|
-
:'base_path' => :'String',
|
|
104
104
|
:'name' => :'String',
|
|
105
|
-
:'
|
|
105
|
+
:'content_guard' => :'String',
|
|
106
106
|
:'remote' => :'String',
|
|
107
107
|
:'distributions' => :'Array<String>',
|
|
108
108
|
:'namespace' => :'String',
|
|
@@ -140,12 +140,18 @@ module PulpContainerClient
|
|
|
140
140
|
self.hidden = false
|
|
141
141
|
end
|
|
142
142
|
|
|
143
|
-
if attributes.key?(:'
|
|
144
|
-
self.
|
|
143
|
+
if attributes.key?(:'pulp_created')
|
|
144
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
145
145
|
end
|
|
146
146
|
|
|
147
|
-
if attributes.key?(:'
|
|
148
|
-
self.
|
|
147
|
+
if attributes.key?(:'base_path')
|
|
148
|
+
self.base_path = attributes[:'base_path']
|
|
149
|
+
else
|
|
150
|
+
self.base_path = nil
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
if attributes.key?(:'pulp_href')
|
|
154
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
149
155
|
end
|
|
150
156
|
|
|
151
157
|
if attributes.key?(:'pulp_labels')
|
|
@@ -154,8 +160,12 @@ module PulpContainerClient
|
|
|
154
160
|
end
|
|
155
161
|
end
|
|
156
162
|
|
|
157
|
-
if attributes.key?(:'
|
|
158
|
-
self.
|
|
163
|
+
if attributes.key?(:'prn')
|
|
164
|
+
self.prn = attributes[:'prn']
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
if attributes.key?(:'pulp_last_updated')
|
|
168
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
159
169
|
end
|
|
160
170
|
|
|
161
171
|
if attributes.key?(:'no_content_change_since')
|
|
@@ -166,24 +176,14 @@ module PulpContainerClient
|
|
|
166
176
|
self.repository = attributes[:'repository']
|
|
167
177
|
end
|
|
168
178
|
|
|
169
|
-
if attributes.key?(:'pulp_created')
|
|
170
|
-
self.pulp_created = attributes[:'pulp_created']
|
|
171
|
-
end
|
|
172
|
-
|
|
173
|
-
if attributes.key?(:'base_path')
|
|
174
|
-
self.base_path = attributes[:'base_path']
|
|
175
|
-
else
|
|
176
|
-
self.base_path = nil
|
|
177
|
-
end
|
|
178
|
-
|
|
179
179
|
if attributes.key?(:'name')
|
|
180
180
|
self.name = attributes[:'name']
|
|
181
181
|
else
|
|
182
182
|
self.name = nil
|
|
183
183
|
end
|
|
184
184
|
|
|
185
|
-
if attributes.key?(:'
|
|
186
|
-
self.
|
|
185
|
+
if attributes.key?(:'content_guard')
|
|
186
|
+
self.content_guard = attributes[:'content_guard']
|
|
187
187
|
end
|
|
188
188
|
|
|
189
189
|
if attributes.key?(:'remote')
|
|
@@ -247,16 +247,16 @@ module PulpContainerClient
|
|
|
247
247
|
return true if self.equal?(o)
|
|
248
248
|
self.class == o.class &&
|
|
249
249
|
hidden == o.hidden &&
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
pulp_labels == o.pulp_labels &&
|
|
250
|
+
pulp_created == o.pulp_created &&
|
|
251
|
+
base_path == o.base_path &&
|
|
253
252
|
pulp_href == o.pulp_href &&
|
|
253
|
+
pulp_labels == o.pulp_labels &&
|
|
254
|
+
prn == o.prn &&
|
|
255
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
254
256
|
no_content_change_since == o.no_content_change_since &&
|
|
255
257
|
repository == o.repository &&
|
|
256
|
-
pulp_created == o.pulp_created &&
|
|
257
|
-
base_path == o.base_path &&
|
|
258
258
|
name == o.name &&
|
|
259
|
-
|
|
259
|
+
content_guard == o.content_guard &&
|
|
260
260
|
remote == o.remote &&
|
|
261
261
|
distributions == o.distributions &&
|
|
262
262
|
namespace == o.namespace &&
|
|
@@ -273,7 +273,7 @@ module PulpContainerClient
|
|
|
273
273
|
# Calculates hash code according to all attributes.
|
|
274
274
|
# @return [Integer] Hash code
|
|
275
275
|
def hash
|
|
276
|
-
[hidden,
|
|
276
|
+
[hidden, pulp_created, base_path, pulp_href, pulp_labels, prn, pulp_last_updated, no_content_change_since, repository, name, content_guard, remote, distributions, namespace, private, description].hash
|
|
277
277
|
end
|
|
278
278
|
|
|
279
279
|
# Builds the object from hash
|