pulp_container_client 2.26.2 → 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 +6 -6
- data/docs/ContainerContainerDistributionResponse.md +14 -14
- data/docs/ContainerContainerPullThroughDistribution.md +6 -6
- data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
- data/docs/ContainerContainerPushRepository.md +7 -7
- data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
- data/docs/DistributionsContainerApi.md +12 -12
- data/docs/DistributionsPullThroughApi.md +12 -12
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPushRepository.md +7 -7
- 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 +55 -55
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +70 -70
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +55 -55
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +70 -70
- data/lib/pulp_container_client/models/container_container_push_repository.rb +49 -49
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +66 -66
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +48 -48
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +48 -48
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +49 -49
- 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 +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 +10 -10
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- 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 +5 -5
- metadata +58 -58
@@ -850,24 +850,24 @@ module PulpContainerClient
|
|
850
850
|
end
|
851
851
|
|
852
852
|
# Update a container repository
|
853
|
-
#
|
853
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
854
854
|
# @param container_container_repository_href [String]
|
855
855
|
# @param patchedcontainer_container_repository [PatchedcontainerContainerRepository]
|
856
856
|
# @param [Hash] opts the optional parameters
|
857
857
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
858
|
-
# @return [
|
858
|
+
# @return [ContainerContainerRepositoryResponse]
|
859
859
|
def partial_update(container_container_repository_href, patchedcontainer_container_repository, opts = {})
|
860
860
|
data, _status_code, _headers = partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts)
|
861
861
|
data
|
862
862
|
end
|
863
863
|
|
864
864
|
# Update a container repository
|
865
|
-
#
|
865
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
866
866
|
# @param container_container_repository_href [String]
|
867
867
|
# @param patchedcontainer_container_repository [PatchedcontainerContainerRepository]
|
868
868
|
# @param [Hash] opts the optional parameters
|
869
869
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
870
|
-
# @return [Array<(
|
870
|
+
# @return [Array<(ContainerContainerRepositoryResponse, Integer, Hash)>] ContainerContainerRepositoryResponse data, response status code and response headers
|
871
871
|
def partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts = {})
|
872
872
|
if @api_client.config.debugging
|
873
873
|
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.partial_update ...'
|
@@ -904,7 +904,7 @@ module PulpContainerClient
|
|
904
904
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedcontainer_container_repository)
|
905
905
|
|
906
906
|
# return_type
|
907
|
-
return_type = opts[:debug_return_type] || '
|
907
|
+
return_type = opts[:debug_return_type] || 'ContainerContainerRepositoryResponse'
|
908
908
|
|
909
909
|
# auth_names
|
910
910
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -1615,24 +1615,24 @@ module PulpContainerClient
|
|
1615
1615
|
end
|
1616
1616
|
|
1617
1617
|
# Update a container repository
|
1618
|
-
#
|
1618
|
+
# Update the entity and trigger an asynchronous task if necessary
|
1619
1619
|
# @param container_container_repository_href [String]
|
1620
1620
|
# @param container_container_repository [ContainerContainerRepository]
|
1621
1621
|
# @param [Hash] opts the optional parameters
|
1622
1622
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
1623
|
-
# @return [
|
1623
|
+
# @return [ContainerContainerRepositoryResponse]
|
1624
1624
|
def update(container_container_repository_href, container_container_repository, opts = {})
|
1625
1625
|
data, _status_code, _headers = update_with_http_info(container_container_repository_href, container_container_repository, opts)
|
1626
1626
|
data
|
1627
1627
|
end
|
1628
1628
|
|
1629
1629
|
# Update a container repository
|
1630
|
-
#
|
1630
|
+
# Update the entity and trigger an asynchronous task if necessary
|
1631
1631
|
# @param container_container_repository_href [String]
|
1632
1632
|
# @param container_container_repository [ContainerContainerRepository]
|
1633
1633
|
# @param [Hash] opts the optional parameters
|
1634
1634
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
1635
|
-
# @return [Array<(
|
1635
|
+
# @return [Array<(ContainerContainerRepositoryResponse, Integer, Hash)>] ContainerContainerRepositoryResponse data, response status code and response headers
|
1636
1636
|
def update_with_http_info(container_container_repository_href, container_container_repository, opts = {})
|
1637
1637
|
if @api_client.config.debugging
|
1638
1638
|
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.update ...'
|
@@ -1669,7 +1669,7 @@ module PulpContainerClient
|
|
1669
1669
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(container_container_repository)
|
1670
1670
|
|
1671
1671
|
# return_type
|
1672
|
-
return_type = opts[:debug_return_type] || '
|
1672
|
+
return_type = opts[:debug_return_type] || 'ContainerContainerRepositoryResponse'
|
1673
1673
|
|
1674
1674
|
# auth_names
|
1675
1675
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -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,23 +16,23 @@ require 'time'
|
|
16
16
|
module PulpContainerClient
|
17
17
|
# A serializer for ContainerDistribution.
|
18
18
|
class ContainerContainerDistribution
|
19
|
-
attr_accessor :pulp_labels
|
20
|
-
|
21
19
|
# The latest RepositoryVersion for this Repository will be served.
|
22
20
|
attr_accessor :repository
|
23
21
|
|
24
|
-
#
|
25
|
-
attr_accessor :
|
22
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
23
|
+
attr_accessor :name
|
26
24
|
|
27
25
|
# Whether this distribution should be shown in the content app.
|
28
26
|
attr_accessor :hidden
|
29
27
|
|
28
|
+
attr_accessor :pulp_labels
|
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
|
+
|
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
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
34
|
-
attr_accessor :name
|
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
|
-
:'pulp_labels' => :'pulp_labels',
|
49
48
|
:'repository' => :'repository',
|
50
|
-
:'
|
49
|
+
:'name' => :'name',
|
51
50
|
:'hidden' => :'hidden',
|
51
|
+
:'pulp_labels' => :'pulp_labels',
|
52
|
+
:'base_path' => :'base_path',
|
52
53
|
:'content_guard' => :'content_guard',
|
53
|
-
:'name' => :'name',
|
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
|
-
:'pulp_labels' => :'Hash<String, String>',
|
69
68
|
:'repository' => :'String',
|
70
|
-
:'
|
69
|
+
:'name' => :'String',
|
71
70
|
:'hidden' => :'Boolean',
|
71
|
+
:'pulp_labels' => :'Hash<String, String>',
|
72
|
+
:'base_path' => :'String',
|
72
73
|
:'content_guard' => :'String',
|
73
|
-
:'name' => :'String',
|
74
74
|
:'repository_version' => :'String',
|
75
75
|
:'private' => :'Boolean',
|
76
76
|
:'description' => :'String'
|
@@ -101,20 +101,14 @@ module PulpContainerClient
|
|
101
101
|
h[k.to_sym] = v
|
102
102
|
}
|
103
103
|
|
104
|
-
if attributes.key?(:'pulp_labels')
|
105
|
-
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
106
|
-
self.pulp_labels = value
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
104
|
if attributes.key?(:'repository')
|
111
105
|
self.repository = attributes[:'repository']
|
112
106
|
end
|
113
107
|
|
114
|
-
if attributes.key?(:'
|
115
|
-
self.
|
108
|
+
if attributes.key?(:'name')
|
109
|
+
self.name = attributes[:'name']
|
116
110
|
else
|
117
|
-
self.
|
111
|
+
self.name = nil
|
118
112
|
end
|
119
113
|
|
120
114
|
if attributes.key?(:'hidden')
|
@@ -123,14 +117,20 @@ module PulpContainerClient
|
|
123
117
|
self.hidden = false
|
124
118
|
end
|
125
119
|
|
126
|
-
if attributes.key?(:'
|
127
|
-
|
120
|
+
if attributes.key?(:'pulp_labels')
|
121
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
122
|
+
self.pulp_labels = value
|
123
|
+
end
|
128
124
|
end
|
129
125
|
|
130
|
-
if attributes.key?(:'
|
131
|
-
self.
|
126
|
+
if attributes.key?(:'base_path')
|
127
|
+
self.base_path = attributes[:'base_path']
|
132
128
|
else
|
133
|
-
self.
|
129
|
+
self.base_path = nil
|
130
|
+
end
|
131
|
+
|
132
|
+
if attributes.key?(:'content_guard')
|
133
|
+
self.content_guard = attributes[:'content_guard']
|
134
134
|
end
|
135
135
|
|
136
136
|
if attributes.key?(:'repository_version')
|
@@ -151,14 +151,6 @@ module PulpContainerClient
|
|
151
151
|
def list_invalid_properties
|
152
152
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
153
153
|
invalid_properties = Array.new
|
154
|
-
if @base_path.nil?
|
155
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
156
|
-
end
|
157
|
-
|
158
|
-
if @base_path.to_s.length < 1
|
159
|
-
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
160
|
-
end
|
161
|
-
|
162
154
|
if @name.nil?
|
163
155
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
164
156
|
end
|
@@ -167,6 +159,14 @@ module PulpContainerClient
|
|
167
159
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
168
160
|
end
|
169
161
|
|
162
|
+
if @base_path.nil?
|
163
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
164
|
+
end
|
165
|
+
|
166
|
+
if @base_path.to_s.length < 1
|
167
|
+
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
168
|
+
end
|
169
|
+
|
170
170
|
if !@description.nil? && @description.to_s.length < 1
|
171
171
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
172
172
|
end
|
@@ -178,28 +178,14 @@ module PulpContainerClient
|
|
178
178
|
# @return true if the model is valid
|
179
179
|
def valid?
|
180
180
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
181
|
-
return false if @base_path.nil?
|
182
|
-
return false if @base_path.to_s.length < 1
|
183
181
|
return false if @name.nil?
|
184
182
|
return false if @name.to_s.length < 1
|
183
|
+
return false if @base_path.nil?
|
184
|
+
return false if @base_path.to_s.length < 1
|
185
185
|
return false if !@description.nil? && @description.to_s.length < 1
|
186
186
|
true
|
187
187
|
end
|
188
188
|
|
189
|
-
# Custom attribute writer method with validation
|
190
|
-
# @param [Object] base_path Value to be assigned
|
191
|
-
def base_path=(base_path)
|
192
|
-
if base_path.nil?
|
193
|
-
fail ArgumentError, 'base_path cannot be nil'
|
194
|
-
end
|
195
|
-
|
196
|
-
if base_path.to_s.length < 1
|
197
|
-
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
198
|
-
end
|
199
|
-
|
200
|
-
@base_path = base_path
|
201
|
-
end
|
202
|
-
|
203
189
|
# Custom attribute writer method with validation
|
204
190
|
# @param [Object] name Value to be assigned
|
205
191
|
def name=(name)
|
@@ -214,6 +200,20 @@ module PulpContainerClient
|
|
214
200
|
@name = name
|
215
201
|
end
|
216
202
|
|
203
|
+
# Custom attribute writer method with validation
|
204
|
+
# @param [Object] base_path Value to be assigned
|
205
|
+
def base_path=(base_path)
|
206
|
+
if base_path.nil?
|
207
|
+
fail ArgumentError, 'base_path cannot be nil'
|
208
|
+
end
|
209
|
+
|
210
|
+
if base_path.to_s.length < 1
|
211
|
+
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
212
|
+
end
|
213
|
+
|
214
|
+
@base_path = base_path
|
215
|
+
end
|
216
|
+
|
217
217
|
# Custom attribute writer method with validation
|
218
218
|
# @param [Object] description Value to be assigned
|
219
219
|
def description=(description)
|
@@ -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
|
-
pulp_labels == o.pulp_labels &&
|
233
232
|
repository == o.repository &&
|
234
|
-
|
233
|
+
name == o.name &&
|
235
234
|
hidden == o.hidden &&
|
235
|
+
pulp_labels == o.pulp_labels &&
|
236
|
+
base_path == o.base_path &&
|
236
237
|
content_guard == o.content_guard &&
|
237
|
-
name == o.name &&
|
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
|
-
[
|
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,36 +16,36 @@ require 'time'
|
|
16
16
|
module PulpContainerClient
|
17
17
|
# A serializer for ContainerDistribution.
|
18
18
|
class ContainerContainerDistributionResponse
|
19
|
-
|
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
|
+
|
22
|
+
attr_accessor :pulp_href
|
23
|
+
|
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.
|
25
|
+
attr_accessor :no_content_change_since
|
20
26
|
|
21
27
|
# The latest RepositoryVersion for this Repository will be served.
|
22
28
|
attr_accessor :repository
|
23
29
|
|
24
|
-
#
|
25
|
-
attr_accessor :
|
26
|
-
|
27
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
28
|
-
attr_accessor :base_path
|
30
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
31
|
+
attr_accessor :name
|
29
32
|
|
30
33
|
# Whether this distribution should be shown in the content app.
|
31
34
|
attr_accessor :hidden
|
32
35
|
|
36
|
+
attr_accessor :pulp_labels
|
37
|
+
|
33
38
|
# Timestamp of creation.
|
34
39
|
attr_accessor :pulp_created
|
35
40
|
|
36
|
-
#
|
37
|
-
attr_accessor :
|
38
|
-
|
39
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
40
|
-
attr_accessor :name
|
41
|
-
|
42
|
-
attr_accessor :pulp_href
|
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
43
|
|
44
|
-
#
|
45
|
-
attr_accessor :
|
44
|
+
# The Pulp Resource Name (PRN).
|
45
|
+
attr_accessor :prn
|
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
|
@@ -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
|
-
:'
|
71
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
72
|
+
:'pulp_href' => :'pulp_href',
|
73
|
+
:'no_content_change_since' => :'no_content_change_since',
|
72
74
|
:'repository' => :'repository',
|
73
|
-
:'
|
74
|
-
:'base_path' => :'base_path',
|
75
|
+
:'name' => :'name',
|
75
76
|
:'hidden' => :'hidden',
|
77
|
+
:'pulp_labels' => :'pulp_labels',
|
76
78
|
:'pulp_created' => :'pulp_created',
|
79
|
+
:'base_path' => :'base_path',
|
80
|
+
:'prn' => :'prn',
|
77
81
|
:'content_guard' => :'content_guard',
|
78
|
-
:'name' => :'name',
|
79
|
-
:'pulp_href' => :'pulp_href',
|
80
|
-
:'no_content_change_since' => :'no_content_change_since',
|
81
|
-
:'pulp_last_updated' => :'pulp_last_updated',
|
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
|
-
:'
|
99
|
+
:'pulp_last_updated' => :'Time',
|
100
|
+
:'pulp_href' => :'String',
|
101
|
+
:'no_content_change_since' => :'String',
|
100
102
|
:'repository' => :'String',
|
101
|
-
:'
|
102
|
-
:'base_path' => :'String',
|
103
|
+
:'name' => :'String',
|
103
104
|
:'hidden' => :'Boolean',
|
105
|
+
:'pulp_labels' => :'Hash<String, String>',
|
104
106
|
:'pulp_created' => :'Time',
|
107
|
+
:'base_path' => :'String',
|
108
|
+
:'prn' => :'String',
|
105
109
|
:'content_guard' => :'String',
|
106
|
-
:'name' => :'String',
|
107
|
-
:'pulp_href' => :'String',
|
108
|
-
:'no_content_change_since' => :'String',
|
109
|
-
:'pulp_last_updated' => :'Time',
|
110
110
|
:'repository_version' => :'String',
|
111
111
|
:'registry_path' => :'String',
|
112
112
|
:'remote' => :'String',
|
@@ -140,24 +140,26 @@ module PulpContainerClient
|
|
140
140
|
h[k.to_sym] = v
|
141
141
|
}
|
142
142
|
|
143
|
-
if attributes.key?(:'
|
144
|
-
|
145
|
-
self.pulp_labels = value
|
146
|
-
end
|
143
|
+
if attributes.key?(:'pulp_last_updated')
|
144
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
147
145
|
end
|
148
146
|
|
149
|
-
if attributes.key?(:'
|
150
|
-
self.
|
147
|
+
if attributes.key?(:'pulp_href')
|
148
|
+
self.pulp_href = attributes[:'pulp_href']
|
151
149
|
end
|
152
150
|
|
153
|
-
if attributes.key?(:'
|
154
|
-
self.
|
151
|
+
if attributes.key?(:'no_content_change_since')
|
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']
|
157
|
+
end
|
158
|
+
|
159
|
+
if attributes.key?(:'name')
|
160
|
+
self.name = attributes[:'name']
|
159
161
|
else
|
160
|
-
self.
|
162
|
+
self.name = nil
|
161
163
|
end
|
162
164
|
|
163
165
|
if attributes.key?(:'hidden')
|
@@ -166,30 +168,28 @@ module PulpContainerClient
|
|
166
168
|
self.hidden = false
|
167
169
|
end
|
168
170
|
|
169
|
-
if attributes.key?(:'
|
170
|
-
|
171
|
+
if attributes.key?(:'pulp_labels')
|
172
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
173
|
+
self.pulp_labels = value
|
174
|
+
end
|
171
175
|
end
|
172
176
|
|
173
|
-
if attributes.key?(:'
|
174
|
-
self.
|
177
|
+
if attributes.key?(:'pulp_created')
|
178
|
+
self.pulp_created = attributes[:'pulp_created']
|
175
179
|
end
|
176
180
|
|
177
|
-
if attributes.key?(:'
|
178
|
-
self.
|
181
|
+
if attributes.key?(:'base_path')
|
182
|
+
self.base_path = attributes[:'base_path']
|
179
183
|
else
|
180
|
-
self.
|
181
|
-
end
|
182
|
-
|
183
|
-
if attributes.key?(:'pulp_href')
|
184
|
-
self.pulp_href = attributes[:'pulp_href']
|
184
|
+
self.base_path = nil
|
185
185
|
end
|
186
186
|
|
187
|
-
if attributes.key?(:'
|
188
|
-
self.
|
187
|
+
if attributes.key?(:'prn')
|
188
|
+
self.prn = attributes[:'prn']
|
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')
|
@@ -222,14 +222,14 @@ module PulpContainerClient
|
|
222
222
|
def list_invalid_properties
|
223
223
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
224
224
|
invalid_properties = Array.new
|
225
|
-
if @base_path.nil?
|
226
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
227
|
-
end
|
228
|
-
|
229
225
|
if @name.nil?
|
230
226
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
231
227
|
end
|
232
228
|
|
229
|
+
if @base_path.nil?
|
230
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
231
|
+
end
|
232
|
+
|
233
233
|
invalid_properties
|
234
234
|
end
|
235
235
|
|
@@ -237,8 +237,8 @@ module PulpContainerClient
|
|
237
237
|
# @return true if the model is valid
|
238
238
|
def valid?
|
239
239
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
240
|
-
return false if @base_path.nil?
|
241
240
|
return false if @name.nil?
|
241
|
+
return false if @base_path.nil?
|
242
242
|
true
|
243
243
|
end
|
244
244
|
|
@@ -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
|
-
|
250
|
+
pulp_last_updated == o.pulp_last_updated &&
|
251
|
+
pulp_href == o.pulp_href &&
|
252
|
+
no_content_change_since == o.no_content_change_since &&
|
251
253
|
repository == o.repository &&
|
252
|
-
|
253
|
-
base_path == o.base_path &&
|
254
|
+
name == o.name &&
|
254
255
|
hidden == o.hidden &&
|
256
|
+
pulp_labels == o.pulp_labels &&
|
255
257
|
pulp_created == o.pulp_created &&
|
258
|
+
base_path == o.base_path &&
|
259
|
+
prn == o.prn &&
|
256
260
|
content_guard == o.content_guard &&
|
257
|
-
name == o.name &&
|
258
|
-
pulp_href == o.pulp_href &&
|
259
|
-
no_content_change_since == o.no_content_change_since &&
|
260
|
-
pulp_last_updated == o.pulp_last_updated &&
|
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
|