pulp_container_client 2.26.1 → 2.26.3
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 +4 -4
- data/docs/ContainerContainerPushRepositoryResponse.md +14 -14
- data/docs/DistributionsContainerApi.md +10 -10
- data/docs/DistributionsPullThroughApi.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +4 -4
- data/docs/RemotesContainerApi.md +10 -10
- data/docs/RemotesPullThroughApi.md +10 -10
- data/docs/RepositoriesContainerApi.md +10 -10
- data/docs/RepositoriesContainerPushApi.md +10 -10
- data/lib/pulp_container_client/api/distributions_container_api.rb +10 -10
- data/lib/pulp_container_client/api/distributions_pull_through_api.rb +10 -10
- data/lib/pulp_container_client/api/remotes_container_api.rb +10 -10
- data/lib/pulp_container_client/api/remotes_pull_through_api.rb +10 -10
- data/lib/pulp_container_client/api/repositories_container_api.rb +10 -10
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +10 -10
- data/lib/pulp_container_client/models/container_container_distribution.rb +20 -20
- 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 +20 -20
- 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 +21 -21
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +58 -58
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +20 -20
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +20 -20
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +19 -19
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/distributions_container_api_spec.rb +4 -4
- data/spec/api/distributions_pull_through_api_spec.rb +4 -4
- data/spec/api/remotes_container_api_spec.rb +4 -4
- data/spec/api/remotes_pull_through_api_spec.rb +4 -4
- data/spec/api/repositories_container_api_spec.rb +4 -4
- data/spec/api/repositories_container_push_api_spec.rb +4 -4
- data/spec/models/container_container_distribution_response_spec.rb +9 -9
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +3 -3
- 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 +3 -3
- metadata +58 -58
|
@@ -395,24 +395,24 @@ module PulpContainerClient
|
|
|
395
395
|
end
|
|
396
396
|
|
|
397
397
|
# Update a container push repository
|
|
398
|
-
#
|
|
398
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
399
399
|
# @param container_container_push_repository_href [String]
|
|
400
400
|
# @param patchedcontainer_container_push_repository [PatchedcontainerContainerPushRepository]
|
|
401
401
|
# @param [Hash] opts the optional parameters
|
|
402
402
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
403
|
-
# @return [
|
|
403
|
+
# @return [ContainerContainerPushRepositoryResponse]
|
|
404
404
|
def partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository, opts = {})
|
|
405
405
|
data, _status_code, _headers = partial_update_with_http_info(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
|
|
406
406
|
data
|
|
407
407
|
end
|
|
408
408
|
|
|
409
409
|
# Update a container push repository
|
|
410
|
-
#
|
|
410
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
411
411
|
# @param container_container_push_repository_href [String]
|
|
412
412
|
# @param patchedcontainer_container_push_repository [PatchedcontainerContainerPushRepository]
|
|
413
413
|
# @param [Hash] opts the optional parameters
|
|
414
414
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
415
|
-
# @return [Array<(
|
|
415
|
+
# @return [Array<(ContainerContainerPushRepositoryResponse, Integer, Hash)>] ContainerContainerPushRepositoryResponse data, response status code and response headers
|
|
416
416
|
def partial_update_with_http_info(container_container_push_repository_href, patchedcontainer_container_push_repository, opts = {})
|
|
417
417
|
if @api_client.config.debugging
|
|
418
418
|
@api_client.config.logger.debug 'Calling API: RepositoriesContainerPushApi.partial_update ...'
|
|
@@ -449,7 +449,7 @@ module PulpContainerClient
|
|
|
449
449
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedcontainer_container_push_repository)
|
|
450
450
|
|
|
451
451
|
# return_type
|
|
452
|
-
return_type = opts[:debug_return_type] || '
|
|
452
|
+
return_type = opts[:debug_return_type] || 'ContainerContainerPushRepositoryResponse'
|
|
453
453
|
|
|
454
454
|
# auth_names
|
|
455
455
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -1004,24 +1004,24 @@ module PulpContainerClient
|
|
|
1004
1004
|
end
|
|
1005
1005
|
|
|
1006
1006
|
# Update a container push repository
|
|
1007
|
-
#
|
|
1007
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
1008
1008
|
# @param container_container_push_repository_href [String]
|
|
1009
1009
|
# @param container_container_push_repository [ContainerContainerPushRepository]
|
|
1010
1010
|
# @param [Hash] opts the optional parameters
|
|
1011
1011
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
1012
|
-
# @return [
|
|
1012
|
+
# @return [ContainerContainerPushRepositoryResponse]
|
|
1013
1013
|
def update(container_container_push_repository_href, container_container_push_repository, opts = {})
|
|
1014
1014
|
data, _status_code, _headers = update_with_http_info(container_container_push_repository_href, container_container_push_repository, opts)
|
|
1015
1015
|
data
|
|
1016
1016
|
end
|
|
1017
1017
|
|
|
1018
1018
|
# Update a container push repository
|
|
1019
|
-
#
|
|
1019
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
1020
1020
|
# @param container_container_push_repository_href [String]
|
|
1021
1021
|
# @param container_container_push_repository [ContainerContainerPushRepository]
|
|
1022
1022
|
# @param [Hash] opts the optional parameters
|
|
1023
1023
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
1024
|
-
# @return [Array<(
|
|
1024
|
+
# @return [Array<(ContainerContainerPushRepositoryResponse, Integer, Hash)>] ContainerContainerPushRepositoryResponse data, response status code and response headers
|
|
1025
1025
|
def update_with_http_info(container_container_push_repository_href, container_container_push_repository, opts = {})
|
|
1026
1026
|
if @api_client.config.debugging
|
|
1027
1027
|
@api_client.config.logger.debug 'Calling API: RepositoriesContainerPushApi.update ...'
|
|
@@ -1058,7 +1058,7 @@ module PulpContainerClient
|
|
|
1058
1058
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(container_container_push_repository)
|
|
1059
1059
|
|
|
1060
1060
|
# return_type
|
|
1061
|
-
return_type = opts[:debug_return_type] || '
|
|
1061
|
+
return_type = opts[:debug_return_type] || 'ContainerContainerPushRepositoryResponse'
|
|
1062
1062
|
|
|
1063
1063
|
# auth_names
|
|
1064
1064
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -16,11 +16,14 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for ContainerDistribution.
|
|
18
18
|
class ContainerContainerDistribution
|
|
19
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
20
|
+
attr_accessor :repository
|
|
21
|
+
|
|
19
22
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
20
23
|
attr_accessor :name
|
|
21
24
|
|
|
22
|
-
#
|
|
23
|
-
attr_accessor :
|
|
25
|
+
# Whether this distribution should be shown in the content app.
|
|
26
|
+
attr_accessor :hidden
|
|
24
27
|
|
|
25
28
|
attr_accessor :pulp_labels
|
|
26
29
|
|
|
@@ -30,9 +33,6 @@ module PulpContainerClient
|
|
|
30
33
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
31
34
|
attr_accessor :content_guard
|
|
32
35
|
|
|
33
|
-
# Whether this distribution should be shown in the content app.
|
|
34
|
-
attr_accessor :hidden
|
|
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
|
-
:'name' => :'name',
|
|
49
48
|
:'repository' => :'repository',
|
|
49
|
+
:'name' => :'name',
|
|
50
|
+
:'hidden' => :'hidden',
|
|
50
51
|
:'pulp_labels' => :'pulp_labels',
|
|
51
52
|
:'base_path' => :'base_path',
|
|
52
53
|
:'content_guard' => :'content_guard',
|
|
53
|
-
:'hidden' => :'hidden',
|
|
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
|
-
:'name' => :'String',
|
|
69
68
|
:'repository' => :'String',
|
|
69
|
+
:'name' => :'String',
|
|
70
|
+
:'hidden' => :'Boolean',
|
|
70
71
|
:'pulp_labels' => :'Hash<String, String>',
|
|
71
72
|
:'base_path' => :'String',
|
|
72
73
|
:'content_guard' => :'String',
|
|
73
|
-
:'hidden' => :'Boolean',
|
|
74
74
|
:'repository_version' => :'String',
|
|
75
75
|
:'private' => :'Boolean',
|
|
76
76
|
:'description' => :'String'
|
|
@@ -101,14 +101,20 @@ module PulpContainerClient
|
|
|
101
101
|
h[k.to_sym] = v
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
if attributes.key?(:'repository')
|
|
105
|
+
self.repository = attributes[:'repository']
|
|
106
|
+
end
|
|
107
|
+
|
|
104
108
|
if attributes.key?(:'name')
|
|
105
109
|
self.name = attributes[:'name']
|
|
106
110
|
else
|
|
107
111
|
self.name = nil
|
|
108
112
|
end
|
|
109
113
|
|
|
110
|
-
if attributes.key?(:'
|
|
111
|
-
self.
|
|
114
|
+
if attributes.key?(:'hidden')
|
|
115
|
+
self.hidden = attributes[:'hidden']
|
|
116
|
+
else
|
|
117
|
+
self.hidden = false
|
|
112
118
|
end
|
|
113
119
|
|
|
114
120
|
if attributes.key?(:'pulp_labels')
|
|
@@ -127,12 +133,6 @@ module PulpContainerClient
|
|
|
127
133
|
self.content_guard = attributes[:'content_guard']
|
|
128
134
|
end
|
|
129
135
|
|
|
130
|
-
if attributes.key?(:'hidden')
|
|
131
|
-
self.hidden = attributes[:'hidden']
|
|
132
|
-
else
|
|
133
|
-
self.hidden = false
|
|
134
|
-
end
|
|
135
|
-
|
|
136
136
|
if attributes.key?(:'repository_version')
|
|
137
137
|
self.repository_version = attributes[:'repository_version']
|
|
138
138
|
end
|
|
@@ -229,12 +229,12 @@ module PulpContainerClient
|
|
|
229
229
|
def ==(o)
|
|
230
230
|
return true if self.equal?(o)
|
|
231
231
|
self.class == o.class &&
|
|
232
|
-
name == o.name &&
|
|
233
232
|
repository == o.repository &&
|
|
233
|
+
name == o.name &&
|
|
234
|
+
hidden == o.hidden &&
|
|
234
235
|
pulp_labels == o.pulp_labels &&
|
|
235
236
|
base_path == o.base_path &&
|
|
236
237
|
content_guard == o.content_guard &&
|
|
237
|
-
hidden == o.hidden &&
|
|
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
|
-
[name,
|
|
252
|
+
[repository, name, hidden, pulp_labels, base_path, content_guard, repository_version, private, description].hash
|
|
253
253
|
end
|
|
254
254
|
|
|
255
255
|
# Builds the object from hash
|
|
@@ -16,37 +16,37 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for ContainerDistribution.
|
|
18
18
|
class ContainerContainerDistributionResponse
|
|
19
|
-
# Timestamp of
|
|
20
|
-
attr_accessor :
|
|
19
|
+
# 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.
|
|
20
|
+
attr_accessor :pulp_last_updated
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
attr_accessor :name
|
|
22
|
+
attr_accessor :pulp_href
|
|
24
23
|
|
|
25
24
|
# Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
|
|
26
25
|
attr_accessor :no_content_change_since
|
|
27
26
|
|
|
28
|
-
# 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.
|
|
29
|
-
attr_accessor :pulp_last_updated
|
|
30
|
-
|
|
31
|
-
# The Pulp Resource Name (PRN).
|
|
32
|
-
attr_accessor :prn
|
|
33
|
-
|
|
34
27
|
# The latest RepositoryVersion for this Repository will be served.
|
|
35
28
|
attr_accessor :repository
|
|
36
29
|
|
|
30
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
31
|
+
attr_accessor :name
|
|
32
|
+
|
|
33
|
+
# Whether this distribution should be shown in the content app.
|
|
34
|
+
attr_accessor :hidden
|
|
35
|
+
|
|
37
36
|
attr_accessor :pulp_labels
|
|
38
37
|
|
|
38
|
+
# Timestamp of creation.
|
|
39
|
+
attr_accessor :pulp_created
|
|
40
|
+
|
|
39
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\")
|
|
40
42
|
attr_accessor :base_path
|
|
41
43
|
|
|
42
|
-
|
|
44
|
+
# The Pulp Resource Name (PRN).
|
|
45
|
+
attr_accessor :prn
|
|
43
46
|
|
|
44
47
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
45
48
|
attr_accessor :content_guard
|
|
46
49
|
|
|
47
|
-
# Whether this distribution should be shown in the content app.
|
|
48
|
-
attr_accessor :hidden
|
|
49
|
-
|
|
50
50
|
# RepositoryVersion to be served
|
|
51
51
|
attr_accessor :repository_version
|
|
52
52
|
|
|
@@ -68,17 +68,17 @@ module PulpContainerClient
|
|
|
68
68
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
69
69
|
def self.attribute_map
|
|
70
70
|
{
|
|
71
|
-
:'pulp_created' => :'pulp_created',
|
|
72
|
-
:'name' => :'name',
|
|
73
|
-
:'no_content_change_since' => :'no_content_change_since',
|
|
74
71
|
:'pulp_last_updated' => :'pulp_last_updated',
|
|
75
|
-
:'
|
|
72
|
+
:'pulp_href' => :'pulp_href',
|
|
73
|
+
:'no_content_change_since' => :'no_content_change_since',
|
|
76
74
|
:'repository' => :'repository',
|
|
75
|
+
:'name' => :'name',
|
|
76
|
+
:'hidden' => :'hidden',
|
|
77
77
|
:'pulp_labels' => :'pulp_labels',
|
|
78
|
+
:'pulp_created' => :'pulp_created',
|
|
78
79
|
:'base_path' => :'base_path',
|
|
79
|
-
:'
|
|
80
|
+
:'prn' => :'prn',
|
|
80
81
|
:'content_guard' => :'content_guard',
|
|
81
|
-
:'hidden' => :'hidden',
|
|
82
82
|
:'repository_version' => :'repository_version',
|
|
83
83
|
:'registry_path' => :'registry_path',
|
|
84
84
|
:'remote' => :'remote',
|
|
@@ -96,17 +96,17 @@ module PulpContainerClient
|
|
|
96
96
|
# Attribute type mapping.
|
|
97
97
|
def self.openapi_types
|
|
98
98
|
{
|
|
99
|
-
:'pulp_created' => :'Time',
|
|
100
|
-
:'name' => :'String',
|
|
101
|
-
:'no_content_change_since' => :'String',
|
|
102
99
|
:'pulp_last_updated' => :'Time',
|
|
103
|
-
:'
|
|
100
|
+
:'pulp_href' => :'String',
|
|
101
|
+
:'no_content_change_since' => :'String',
|
|
104
102
|
:'repository' => :'String',
|
|
103
|
+
:'name' => :'String',
|
|
104
|
+
:'hidden' => :'Boolean',
|
|
105
105
|
:'pulp_labels' => :'Hash<String, String>',
|
|
106
|
+
:'pulp_created' => :'Time',
|
|
106
107
|
:'base_path' => :'String',
|
|
107
|
-
:'
|
|
108
|
+
:'prn' => :'String',
|
|
108
109
|
:'content_guard' => :'String',
|
|
109
|
-
:'hidden' => :'Boolean',
|
|
110
110
|
:'repository_version' => :'String',
|
|
111
111
|
:'registry_path' => :'String',
|
|
112
112
|
:'remote' => :'String',
|
|
@@ -140,30 +140,32 @@ module PulpContainerClient
|
|
|
140
140
|
h[k.to_sym] = v
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
if attributes.key?(:'
|
|
144
|
-
self.
|
|
143
|
+
if attributes.key?(:'pulp_last_updated')
|
|
144
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
145
145
|
end
|
|
146
146
|
|
|
147
|
-
if attributes.key?(:'
|
|
148
|
-
self.
|
|
149
|
-
else
|
|
150
|
-
self.name = nil
|
|
147
|
+
if attributes.key?(:'pulp_href')
|
|
148
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
151
149
|
end
|
|
152
150
|
|
|
153
151
|
if attributes.key?(:'no_content_change_since')
|
|
154
152
|
self.no_content_change_since = attributes[:'no_content_change_since']
|
|
155
153
|
end
|
|
156
154
|
|
|
157
|
-
if attributes.key?(:'
|
|
158
|
-
self.
|
|
155
|
+
if attributes.key?(:'repository')
|
|
156
|
+
self.repository = attributes[:'repository']
|
|
159
157
|
end
|
|
160
158
|
|
|
161
|
-
if attributes.key?(:'
|
|
162
|
-
self.
|
|
159
|
+
if attributes.key?(:'name')
|
|
160
|
+
self.name = attributes[:'name']
|
|
161
|
+
else
|
|
162
|
+
self.name = nil
|
|
163
163
|
end
|
|
164
164
|
|
|
165
|
-
if attributes.key?(:'
|
|
166
|
-
self.
|
|
165
|
+
if attributes.key?(:'hidden')
|
|
166
|
+
self.hidden = attributes[:'hidden']
|
|
167
|
+
else
|
|
168
|
+
self.hidden = false
|
|
167
169
|
end
|
|
168
170
|
|
|
169
171
|
if attributes.key?(:'pulp_labels')
|
|
@@ -172,26 +174,24 @@ module PulpContainerClient
|
|
|
172
174
|
end
|
|
173
175
|
end
|
|
174
176
|
|
|
177
|
+
if attributes.key?(:'pulp_created')
|
|
178
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
179
|
+
end
|
|
180
|
+
|
|
175
181
|
if attributes.key?(:'base_path')
|
|
176
182
|
self.base_path = attributes[:'base_path']
|
|
177
183
|
else
|
|
178
184
|
self.base_path = nil
|
|
179
185
|
end
|
|
180
186
|
|
|
181
|
-
if attributes.key?(:'
|
|
182
|
-
self.
|
|
187
|
+
if attributes.key?(:'prn')
|
|
188
|
+
self.prn = attributes[:'prn']
|
|
183
189
|
end
|
|
184
190
|
|
|
185
191
|
if attributes.key?(:'content_guard')
|
|
186
192
|
self.content_guard = attributes[:'content_guard']
|
|
187
193
|
end
|
|
188
194
|
|
|
189
|
-
if attributes.key?(:'hidden')
|
|
190
|
-
self.hidden = attributes[:'hidden']
|
|
191
|
-
else
|
|
192
|
-
self.hidden = false
|
|
193
|
-
end
|
|
194
|
-
|
|
195
195
|
if attributes.key?(:'repository_version')
|
|
196
196
|
self.repository_version = attributes[:'repository_version']
|
|
197
197
|
end
|
|
@@ -247,17 +247,17 @@ module PulpContainerClient
|
|
|
247
247
|
def ==(o)
|
|
248
248
|
return true if self.equal?(o)
|
|
249
249
|
self.class == o.class &&
|
|
250
|
-
pulp_created == o.pulp_created &&
|
|
251
|
-
name == o.name &&
|
|
252
|
-
no_content_change_since == o.no_content_change_since &&
|
|
253
250
|
pulp_last_updated == o.pulp_last_updated &&
|
|
254
|
-
|
|
251
|
+
pulp_href == o.pulp_href &&
|
|
252
|
+
no_content_change_since == o.no_content_change_since &&
|
|
255
253
|
repository == o.repository &&
|
|
254
|
+
name == o.name &&
|
|
255
|
+
hidden == o.hidden &&
|
|
256
256
|
pulp_labels == o.pulp_labels &&
|
|
257
|
+
pulp_created == o.pulp_created &&
|
|
257
258
|
base_path == o.base_path &&
|
|
258
|
-
|
|
259
|
+
prn == o.prn &&
|
|
259
260
|
content_guard == o.content_guard &&
|
|
260
|
-
hidden == o.hidden &&
|
|
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
|
-
[
|
|
278
|
+
[pulp_last_updated, pulp_href, no_content_change_since, repository, name, hidden, pulp_labels, pulp_created, base_path, prn, content_guard, repository_version, registry_path, remote, namespace, private, description].hash
|
|
279
279
|
end
|
|
280
280
|
|
|
281
281
|
# Builds the object from hash
|
|
@@ -16,11 +16,14 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for a specialized pull-through distribution referencing sub-distributions.
|
|
18
18
|
class ContainerContainerPullThroughDistribution
|
|
19
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
20
|
+
attr_accessor :repository
|
|
21
|
+
|
|
19
22
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
20
23
|
attr_accessor :name
|
|
21
24
|
|
|
22
|
-
#
|
|
23
|
-
attr_accessor :
|
|
25
|
+
# Whether this distribution should be shown in the content app.
|
|
26
|
+
attr_accessor :hidden
|
|
24
27
|
|
|
25
28
|
attr_accessor :pulp_labels
|
|
26
29
|
|
|
@@ -30,9 +33,6 @@ module PulpContainerClient
|
|
|
30
33
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
31
34
|
attr_accessor :content_guard
|
|
32
35
|
|
|
33
|
-
# Whether this distribution should be shown in the content app.
|
|
34
|
-
attr_accessor :hidden
|
|
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
|
-
:'name' => :'name',
|
|
52
51
|
:'repository' => :'repository',
|
|
52
|
+
:'name' => :'name',
|
|
53
|
+
:'hidden' => :'hidden',
|
|
53
54
|
:'pulp_labels' => :'pulp_labels',
|
|
54
55
|
:'base_path' => :'base_path',
|
|
55
56
|
:'content_guard' => :'content_guard',
|
|
56
|
-
:'hidden' => :'hidden',
|
|
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
|
-
:'name' => :'String',
|
|
73
72
|
:'repository' => :'String',
|
|
73
|
+
:'name' => :'String',
|
|
74
|
+
:'hidden' => :'Boolean',
|
|
74
75
|
:'pulp_labels' => :'Hash<String, String>',
|
|
75
76
|
:'base_path' => :'String',
|
|
76
77
|
:'content_guard' => :'String',
|
|
77
|
-
:'hidden' => :'Boolean',
|
|
78
78
|
:'remote' => :'String',
|
|
79
79
|
:'distributions' => :'Array<String>',
|
|
80
80
|
:'private' => :'Boolean',
|
|
@@ -105,14 +105,20 @@ module PulpContainerClient
|
|
|
105
105
|
h[k.to_sym] = v
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
+
if attributes.key?(:'repository')
|
|
109
|
+
self.repository = attributes[:'repository']
|
|
110
|
+
end
|
|
111
|
+
|
|
108
112
|
if attributes.key?(:'name')
|
|
109
113
|
self.name = attributes[:'name']
|
|
110
114
|
else
|
|
111
115
|
self.name = nil
|
|
112
116
|
end
|
|
113
117
|
|
|
114
|
-
if attributes.key?(:'
|
|
115
|
-
self.
|
|
118
|
+
if attributes.key?(:'hidden')
|
|
119
|
+
self.hidden = attributes[:'hidden']
|
|
120
|
+
else
|
|
121
|
+
self.hidden = false
|
|
116
122
|
end
|
|
117
123
|
|
|
118
124
|
if attributes.key?(:'pulp_labels')
|
|
@@ -131,12 +137,6 @@ module PulpContainerClient
|
|
|
131
137
|
self.content_guard = attributes[:'content_guard']
|
|
132
138
|
end
|
|
133
139
|
|
|
134
|
-
if attributes.key?(:'hidden')
|
|
135
|
-
self.hidden = attributes[:'hidden']
|
|
136
|
-
else
|
|
137
|
-
self.hidden = false
|
|
138
|
-
end
|
|
139
|
-
|
|
140
140
|
if attributes.key?(:'remote')
|
|
141
141
|
self.remote = attributes[:'remote']
|
|
142
142
|
else
|
|
@@ -246,12 +246,12 @@ module PulpContainerClient
|
|
|
246
246
|
def ==(o)
|
|
247
247
|
return true if self.equal?(o)
|
|
248
248
|
self.class == o.class &&
|
|
249
|
-
name == o.name &&
|
|
250
249
|
repository == o.repository &&
|
|
250
|
+
name == o.name &&
|
|
251
|
+
hidden == o.hidden &&
|
|
251
252
|
pulp_labels == o.pulp_labels &&
|
|
252
253
|
base_path == o.base_path &&
|
|
253
254
|
content_guard == o.content_guard &&
|
|
254
|
-
hidden == o.hidden &&
|
|
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
|
-
[name,
|
|
270
|
+
[repository, name, hidden, pulp_labels, base_path, content_guard, remote, distributions, private, description].hash
|
|
271
271
|
end
|
|
272
272
|
|
|
273
273
|
# Builds the object from hash
|