pulpcore_client 3.22.21 → 3.23.0

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.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -4
  3. data/docs/ArtifactDistributionResponse.md +6 -6
  4. data/docs/DistributionsApi.md +4 -0
  5. data/docs/DistributionsArtifactsApi.md +4 -0
  6. data/docs/Domain.md +27 -0
  7. data/docs/DomainResponse.md +31 -0
  8. data/docs/DomainsApi.md +362 -0
  9. data/docs/ExportersFilesystemApi.md +3 -3
  10. data/docs/ExportersFilesystemExportsApi.md +3 -3
  11. data/docs/GroupRole.md +3 -1
  12. data/docs/GroupRoleResponse.md +3 -1
  13. data/docs/GroupsApi.md +6 -6
  14. data/docs/GroupsRolesApi.md +6 -4
  15. data/docs/PaginatedDomainResponseList.md +23 -0
  16. data/docs/PaginatedUpstreamPulpResponseList.md +23 -0
  17. data/docs/PatchedDomain.md +27 -0
  18. data/docs/PatchedUpstreamPulp.md +37 -0
  19. data/docs/RepositoriesApi.md +16 -0
  20. data/docs/RepositoryResponse.md +1 -1
  21. data/docs/RolesApi.md +6 -6
  22. data/docs/StatusResponse.md +3 -1
  23. data/docs/StorageClassEnum.md +16 -0
  24. data/docs/TaskSchedulesApi.md +2 -2
  25. data/docs/TasksApi.md +1 -1
  26. data/docs/UpstreamPulp.md +37 -0
  27. data/docs/UpstreamPulpResponse.md +39 -0
  28. data/docs/UpstreamPulpsApi.md +405 -0
  29. data/docs/UserRole.md +4 -2
  30. data/docs/UserRoleResponse.md +4 -2
  31. data/docs/UsersApi.md +6 -6
  32. data/docs/UsersRolesApi.md +6 -4
  33. data/docs/VersionResponse.md +3 -1
  34. data/lib/pulpcore_client/api/distributions_api.rb +6 -0
  35. data/lib/pulpcore_client/api/distributions_artifacts_api.rb +6 -0
  36. data/lib/pulpcore_client/api/domains_api.rb +446 -0
  37. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +6 -6
  38. data/lib/pulpcore_client/api/exporters_filesystem_exports_api.rb +6 -6
  39. data/lib/pulpcore_client/api/groups_api.rb +12 -12
  40. data/lib/pulpcore_client/api/groups_roles_api.rb +11 -8
  41. data/lib/pulpcore_client/api/repositories_api.rb +24 -0
  42. data/lib/pulpcore_client/api/roles_api.rb +12 -12
  43. data/lib/pulpcore_client/api/task_schedules_api.rb +4 -4
  44. data/lib/pulpcore_client/api/tasks_api.rb +2 -2
  45. data/lib/pulpcore_client/api/upstream_pulps_api.rb +492 -0
  46. data/lib/pulpcore_client/api/users_api.rb +12 -12
  47. data/lib/pulpcore_client/api/users_roles_api.rb +11 -8
  48. data/lib/pulpcore_client/api/workers_api.rb +1 -1
  49. data/lib/pulpcore_client/models/artifact_distribution_response.rb +29 -29
  50. data/lib/pulpcore_client/models/domain.rb +323 -0
  51. data/lib/pulpcore_client/models/domain_response.rb +318 -0
  52. data/lib/pulpcore_client/models/group_role.rb +16 -5
  53. data/lib/pulpcore_client/models/group_role_response.rb +15 -4
  54. data/lib/pulpcore_client/models/nested_role.rb +19 -0
  55. data/lib/pulpcore_client/models/paginated_domain_response_list.rb +237 -0
  56. data/lib/pulpcore_client/models/paginated_upstream_pulp_response_list.rb +237 -0
  57. data/lib/pulpcore_client/models/patched_domain.rb +304 -0
  58. data/lib/pulpcore_client/models/patched_upstream_pulp.rb +450 -0
  59. data/lib/pulpcore_client/models/repository_response.rb +1 -1
  60. data/lib/pulpcore_client/models/status_response.rb +19 -4
  61. data/lib/pulpcore_client/models/storage_class_enum.rb +37 -0
  62. data/lib/pulpcore_client/models/upstream_pulp.rb +477 -0
  63. data/lib/pulpcore_client/models/upstream_pulp_response.rb +338 -0
  64. data/lib/pulpcore_client/models/user_role.rb +17 -6
  65. data/lib/pulpcore_client/models/user_role_response.rb +16 -5
  66. data/lib/pulpcore_client/models/version_response.rb +19 -4
  67. data/lib/pulpcore_client/version.rb +1 -1
  68. data/lib/pulpcore_client.rb +11 -0
  69. data/spec/api/distributions_api_spec.rb +2 -0
  70. data/spec/api/distributions_artifacts_api_spec.rb +2 -0
  71. data/spec/api/domains_api_spec.rb +120 -0
  72. data/spec/api/exporters_filesystem_api_spec.rb +3 -3
  73. data/spec/api/exporters_filesystem_exports_api_spec.rb +3 -3
  74. data/spec/api/groups_api_spec.rb +6 -6
  75. data/spec/api/groups_roles_api_spec.rb +5 -4
  76. data/spec/api/repositories_api_spec.rb +8 -0
  77. data/spec/api/roles_api_spec.rb +6 -6
  78. data/spec/api/task_schedules_api_spec.rb +2 -2
  79. data/spec/api/tasks_api_spec.rb +1 -1
  80. data/spec/api/upstream_pulps_api_spec.rb +127 -0
  81. data/spec/api/users_api_spec.rb +6 -6
  82. data/spec/api/users_roles_api_spec.rb +5 -4
  83. data/spec/models/artifact_distribution_response_spec.rb +7 -7
  84. data/spec/models/domain_response_spec.rb +83 -0
  85. data/spec/models/domain_spec.rb +71 -0
  86. data/spec/models/group_role_response_spec.rb +6 -0
  87. data/spec/models/group_role_spec.rb +6 -0
  88. data/spec/models/paginated_domain_response_list_spec.rb +59 -0
  89. data/spec/models/paginated_upstream_pulp_response_list_spec.rb +59 -0
  90. data/spec/models/patched_domain_spec.rb +71 -0
  91. data/spec/models/patched_upstream_pulp_spec.rb +101 -0
  92. data/spec/models/status_response_spec.rb +6 -0
  93. data/spec/models/storage_class_enum_spec.rb +35 -0
  94. data/spec/models/upstream_pulp_response_spec.rb +107 -0
  95. data/spec/models/upstream_pulp_spec.rb +101 -0
  96. data/spec/models/user_role_response_spec.rb +6 -0
  97. data/spec/models/user_role_spec.rb +6 -0
  98. data/spec/models/version_response_spec.rb +6 -0
  99. metadata +173 -129
@@ -0,0 +1,450 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module PulpcoreClient
16
+ # Serializer for a Server.
17
+ class PatchedUpstreamPulp
18
+ # A unique name for this Pulp server.
19
+ attr_accessor :name
20
+
21
+ # The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com
22
+ attr_accessor :base_url
23
+
24
+ # The API root. Defaults to '/pulp/'.
25
+ attr_accessor :api_root
26
+
27
+ # The domain of the Pulp server if enabled.
28
+ attr_accessor :domain
29
+
30
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
31
+ attr_accessor :ca_cert
32
+
33
+ # A PEM encoded client certificate used for authentication.
34
+ attr_accessor :client_cert
35
+
36
+ # A PEM encoded private key used for authentication.
37
+ attr_accessor :client_key
38
+
39
+ # If True, TLS peer validation must be performed.
40
+ attr_accessor :tls_validation
41
+
42
+ # The username to be used for authentication when syncing.
43
+ attr_accessor :username
44
+
45
+ # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
46
+ attr_accessor :password
47
+
48
+ # One or more comma separated labels that will be used to filter distributions on the upstream Pulp. E.g. \"foo=bar,key=val\" or \"foo,key\"
49
+ attr_accessor :pulp_label_select
50
+
51
+ # Attribute mapping from ruby-style variable name to JSON key.
52
+ def self.attribute_map
53
+ {
54
+ :'name' => :'name',
55
+ :'base_url' => :'base_url',
56
+ :'api_root' => :'api_root',
57
+ :'domain' => :'domain',
58
+ :'ca_cert' => :'ca_cert',
59
+ :'client_cert' => :'client_cert',
60
+ :'client_key' => :'client_key',
61
+ :'tls_validation' => :'tls_validation',
62
+ :'username' => :'username',
63
+ :'password' => :'password',
64
+ :'pulp_label_select' => :'pulp_label_select'
65
+ }
66
+ end
67
+
68
+ # Attribute type mapping.
69
+ def self.openapi_types
70
+ {
71
+ :'name' => :'String',
72
+ :'base_url' => :'String',
73
+ :'api_root' => :'String',
74
+ :'domain' => :'String',
75
+ :'ca_cert' => :'String',
76
+ :'client_cert' => :'String',
77
+ :'client_key' => :'String',
78
+ :'tls_validation' => :'Boolean',
79
+ :'username' => :'String',
80
+ :'password' => :'String',
81
+ :'pulp_label_select' => :'String'
82
+ }
83
+ end
84
+
85
+ # List of attributes with nullable: true
86
+ def self.openapi_nullable
87
+ Set.new([
88
+ :'domain',
89
+ :'ca_cert',
90
+ :'client_cert',
91
+ :'client_key',
92
+ :'username',
93
+ :'password',
94
+ :'pulp_label_select'
95
+ ])
96
+ end
97
+
98
+ # Initializes the object
99
+ # @param [Hash] attributes Model attributes in the form of hash
100
+ def initialize(attributes = {})
101
+ if (!attributes.is_a?(Hash))
102
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpcoreClient::PatchedUpstreamPulp` initialize method"
103
+ end
104
+
105
+ # check to see if the attribute exists and convert string to symbol for hash key
106
+ attributes = attributes.each_with_object({}) { |(k, v), h|
107
+ if (!self.class.attribute_map.key?(k.to_sym))
108
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpcoreClient::PatchedUpstreamPulp`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
109
+ end
110
+ h[k.to_sym] = v
111
+ }
112
+
113
+ if attributes.key?(:'name')
114
+ self.name = attributes[:'name']
115
+ end
116
+
117
+ if attributes.key?(:'base_url')
118
+ self.base_url = attributes[:'base_url']
119
+ end
120
+
121
+ if attributes.key?(:'api_root')
122
+ self.api_root = attributes[:'api_root']
123
+ end
124
+
125
+ if attributes.key?(:'domain')
126
+ self.domain = attributes[:'domain']
127
+ end
128
+
129
+ if attributes.key?(:'ca_cert')
130
+ self.ca_cert = attributes[:'ca_cert']
131
+ end
132
+
133
+ if attributes.key?(:'client_cert')
134
+ self.client_cert = attributes[:'client_cert']
135
+ end
136
+
137
+ if attributes.key?(:'client_key')
138
+ self.client_key = attributes[:'client_key']
139
+ end
140
+
141
+ if attributes.key?(:'tls_validation')
142
+ self.tls_validation = attributes[:'tls_validation']
143
+ end
144
+
145
+ if attributes.key?(:'username')
146
+ self.username = attributes[:'username']
147
+ end
148
+
149
+ if attributes.key?(:'password')
150
+ self.password = attributes[:'password']
151
+ end
152
+
153
+ if attributes.key?(:'pulp_label_select')
154
+ self.pulp_label_select = attributes[:'pulp_label_select']
155
+ end
156
+ end
157
+
158
+ # Show invalid properties with the reasons. Usually used together with valid?
159
+ # @return Array for valid properties with the reasons
160
+ def list_invalid_properties
161
+ invalid_properties = Array.new
162
+ if !@name.nil? && @name.to_s.length < 1
163
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
164
+ end
165
+
166
+ if !@base_url.nil? && @base_url.to_s.length < 1
167
+ invalid_properties.push('invalid value for "base_url", the character length must be great than or equal to 1.')
168
+ end
169
+
170
+ if !@api_root.nil? && @api_root.to_s.length < 1
171
+ invalid_properties.push('invalid value for "api_root", the character length must be great than or equal to 1.')
172
+ end
173
+
174
+ if !@domain.nil? && @domain.to_s.length < 1
175
+ invalid_properties.push('invalid value for "domain", the character length must be great than or equal to 1.')
176
+ end
177
+
178
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
179
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
180
+ end
181
+
182
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
183
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
184
+ end
185
+
186
+ if !@client_key.nil? && @client_key.to_s.length < 1
187
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
188
+ end
189
+
190
+ if !@username.nil? && @username.to_s.length < 1
191
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
192
+ end
193
+
194
+ if !@password.nil? && @password.to_s.length < 1
195
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
196
+ end
197
+
198
+ invalid_properties
199
+ end
200
+
201
+ # Check to see if the all the properties in the model are valid
202
+ # @return true if the model is valid
203
+ def valid?
204
+ return false if !@name.nil? && @name.to_s.length < 1
205
+ return false if !@base_url.nil? && @base_url.to_s.length < 1
206
+ return false if !@api_root.nil? && @api_root.to_s.length < 1
207
+ return false if !@domain.nil? && @domain.to_s.length < 1
208
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
209
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
210
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
211
+ return false if !@username.nil? && @username.to_s.length < 1
212
+ return false if !@password.nil? && @password.to_s.length < 1
213
+ true
214
+ end
215
+
216
+ # Custom attribute writer method with validation
217
+ # @param [Object] name Value to be assigned
218
+ def name=(name)
219
+ if !name.nil? && name.to_s.length < 1
220
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
221
+ end
222
+
223
+ @name = name
224
+ end
225
+
226
+ # Custom attribute writer method with validation
227
+ # @param [Object] base_url Value to be assigned
228
+ def base_url=(base_url)
229
+ if !base_url.nil? && base_url.to_s.length < 1
230
+ fail ArgumentError, 'invalid value for "base_url", the character length must be great than or equal to 1.'
231
+ end
232
+
233
+ @base_url = base_url
234
+ end
235
+
236
+ # Custom attribute writer method with validation
237
+ # @param [Object] api_root Value to be assigned
238
+ def api_root=(api_root)
239
+ if !api_root.nil? && api_root.to_s.length < 1
240
+ fail ArgumentError, 'invalid value for "api_root", the character length must be great than or equal to 1.'
241
+ end
242
+
243
+ @api_root = api_root
244
+ end
245
+
246
+ # Custom attribute writer method with validation
247
+ # @param [Object] domain Value to be assigned
248
+ def domain=(domain)
249
+ if !domain.nil? && domain.to_s.length < 1
250
+ fail ArgumentError, 'invalid value for "domain", the character length must be great than or equal to 1.'
251
+ end
252
+
253
+ @domain = domain
254
+ end
255
+
256
+ # Custom attribute writer method with validation
257
+ # @param [Object] ca_cert Value to be assigned
258
+ def ca_cert=(ca_cert)
259
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
260
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
261
+ end
262
+
263
+ @ca_cert = ca_cert
264
+ end
265
+
266
+ # Custom attribute writer method with validation
267
+ # @param [Object] client_cert Value to be assigned
268
+ def client_cert=(client_cert)
269
+ if !client_cert.nil? && client_cert.to_s.length < 1
270
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
271
+ end
272
+
273
+ @client_cert = client_cert
274
+ end
275
+
276
+ # Custom attribute writer method with validation
277
+ # @param [Object] client_key Value to be assigned
278
+ def client_key=(client_key)
279
+ if !client_key.nil? && client_key.to_s.length < 1
280
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
281
+ end
282
+
283
+ @client_key = client_key
284
+ end
285
+
286
+ # Custom attribute writer method with validation
287
+ # @param [Object] username Value to be assigned
288
+ def username=(username)
289
+ if !username.nil? && username.to_s.length < 1
290
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
291
+ end
292
+
293
+ @username = username
294
+ end
295
+
296
+ # Custom attribute writer method with validation
297
+ # @param [Object] password Value to be assigned
298
+ def password=(password)
299
+ if !password.nil? && password.to_s.length < 1
300
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
301
+ end
302
+
303
+ @password = password
304
+ end
305
+
306
+ # Checks equality by comparing each attribute.
307
+ # @param [Object] Object to be compared
308
+ def ==(o)
309
+ return true if self.equal?(o)
310
+ self.class == o.class &&
311
+ name == o.name &&
312
+ base_url == o.base_url &&
313
+ api_root == o.api_root &&
314
+ domain == o.domain &&
315
+ ca_cert == o.ca_cert &&
316
+ client_cert == o.client_cert &&
317
+ client_key == o.client_key &&
318
+ tls_validation == o.tls_validation &&
319
+ username == o.username &&
320
+ password == o.password &&
321
+ pulp_label_select == o.pulp_label_select
322
+ end
323
+
324
+ # @see the `==` method
325
+ # @param [Object] Object to be compared
326
+ def eql?(o)
327
+ self == o
328
+ end
329
+
330
+ # Calculates hash code according to all attributes.
331
+ # @return [Integer] Hash code
332
+ def hash
333
+ [name, base_url, api_root, domain, ca_cert, client_cert, client_key, tls_validation, username, password, pulp_label_select].hash
334
+ end
335
+
336
+ # Builds the object from hash
337
+ # @param [Hash] attributes Model attributes in the form of hash
338
+ # @return [Object] Returns the model itself
339
+ def self.build_from_hash(attributes)
340
+ new.build_from_hash(attributes)
341
+ end
342
+
343
+ # Builds the object from hash
344
+ # @param [Hash] attributes Model attributes in the form of hash
345
+ # @return [Object] Returns the model itself
346
+ def build_from_hash(attributes)
347
+ return nil unless attributes.is_a?(Hash)
348
+ self.class.openapi_types.each_pair do |key, type|
349
+ if type =~ /\AArray<(.*)>/i
350
+ # check to ensure the input is an array given that the attribute
351
+ # is documented as an array but the input is not
352
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
353
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
354
+ end
355
+ elsif !attributes[self.class.attribute_map[key]].nil?
356
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
357
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
358
+ end
359
+
360
+ self
361
+ end
362
+
363
+ # Deserializes the data based on type
364
+ # @param string type Data type
365
+ # @param string value Value to be deserialized
366
+ # @return [Object] Deserialized data
367
+ def _deserialize(type, value)
368
+ case type.to_sym
369
+ when :DateTime
370
+ DateTime.parse(value)
371
+ when :Date
372
+ Date.parse(value)
373
+ when :String
374
+ value.to_s
375
+ when :Integer
376
+ value.to_i
377
+ when :Float
378
+ value.to_f
379
+ when :Boolean
380
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
381
+ true
382
+ else
383
+ false
384
+ end
385
+ when :Object
386
+ # generic object (usually a Hash), return directly
387
+ value
388
+ when /\AArray<(?<inner_type>.+)>\z/
389
+ inner_type = Regexp.last_match[:inner_type]
390
+ value.map { |v| _deserialize(inner_type, v) }
391
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
392
+ k_type = Regexp.last_match[:k_type]
393
+ v_type = Regexp.last_match[:v_type]
394
+ {}.tap do |hash|
395
+ value.each do |k, v|
396
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
397
+ end
398
+ end
399
+ else # model
400
+ PulpcoreClient.const_get(type).build_from_hash(value)
401
+ end
402
+ end
403
+
404
+ # Returns the string representation of the object
405
+ # @return [String] String presentation of the object
406
+ def to_s
407
+ to_hash.to_s
408
+ end
409
+
410
+ # to_body is an alias to to_hash (backward compatibility)
411
+ # @return [Hash] Returns the object in the form of hash
412
+ def to_body
413
+ to_hash
414
+ end
415
+
416
+ # Returns the object in the form of hash
417
+ # @return [Hash] Returns the object in the form of hash
418
+ def to_hash
419
+ hash = {}
420
+ self.class.attribute_map.each_pair do |attr, param|
421
+ value = self.send(attr)
422
+ if value.nil?
423
+ is_nullable = self.class.openapi_nullable.include?(attr)
424
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
425
+ end
426
+
427
+ hash[param] = _to_hash(value)
428
+ end
429
+ hash
430
+ end
431
+
432
+ # Outputs non-array value in the form of hash
433
+ # For object, use to_hash. Otherwise, just return the value
434
+ # @param [Object] value Any valid value
435
+ # @return [Hash] Returns the value in the form of hash
436
+ def _to_hash(value)
437
+ if value.is_a?(Array)
438
+ value.compact.map { |v| _to_hash(v) }
439
+ elsif value.is_a?(Hash)
440
+ {}.tap do |hash|
441
+ value.each { |k, v| hash[k] = _to_hash(v) }
442
+ end
443
+ elsif value.respond_to? :to_hash
444
+ value.to_hash
445
+ else
446
+ value
447
+ end
448
+ end
449
+ end
450
+ end
@@ -32,7 +32,7 @@ module PulpcoreClient
32
32
  # An optional description.
33
33
  attr_accessor :description
34
34
 
35
- # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
35
+ # Retain X versions of the repository. Default is null which retains all versions.
36
36
  attr_accessor :retain_repo_versions
37
37
 
38
38
  # An optional remote to use by default when syncing.
@@ -36,6 +36,9 @@ module PulpcoreClient
36
36
  # Content-app settings
37
37
  attr_accessor :content_settings
38
38
 
39
+ # Is Domains enabled
40
+ attr_accessor :domain_enabled
41
+
39
42
  # Attribute mapping from ruby-style variable name to JSON key.
40
43
  def self.attribute_map
41
44
  {
@@ -45,7 +48,8 @@ module PulpcoreClient
45
48
  :'database_connection' => :'database_connection',
46
49
  :'redis_connection' => :'redis_connection',
47
50
  :'storage' => :'storage',
48
- :'content_settings' => :'content_settings'
51
+ :'content_settings' => :'content_settings',
52
+ :'domain_enabled' => :'domain_enabled'
49
53
  }
50
54
  end
51
55
 
@@ -58,7 +62,8 @@ module PulpcoreClient
58
62
  :'database_connection' => :'DatabaseConnectionResponse',
59
63
  :'redis_connection' => :'RedisConnectionResponse',
60
64
  :'storage' => :'StorageResponse',
61
- :'content_settings' => :'ContentSettingsResponse'
65
+ :'content_settings' => :'ContentSettingsResponse',
66
+ :'domain_enabled' => :'Boolean'
62
67
  }
63
68
  end
64
69
 
@@ -116,6 +121,10 @@ module PulpcoreClient
116
121
  if attributes.key?(:'content_settings')
117
122
  self.content_settings = attributes[:'content_settings']
118
123
  end
124
+
125
+ if attributes.key?(:'domain_enabled')
126
+ self.domain_enabled = attributes[:'domain_enabled']
127
+ end
119
128
  end
120
129
 
121
130
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -142,6 +151,10 @@ module PulpcoreClient
142
151
  invalid_properties.push('invalid value for "content_settings", content_settings cannot be nil.')
143
152
  end
144
153
 
154
+ if @domain_enabled.nil?
155
+ invalid_properties.push('invalid value for "domain_enabled", domain_enabled cannot be nil.')
156
+ end
157
+
145
158
  invalid_properties
146
159
  end
147
160
 
@@ -153,6 +166,7 @@ module PulpcoreClient
153
166
  return false if @online_content_apps.nil?
154
167
  return false if @database_connection.nil?
155
168
  return false if @content_settings.nil?
169
+ return false if @domain_enabled.nil?
156
170
  true
157
171
  end
158
172
 
@@ -167,7 +181,8 @@ module PulpcoreClient
167
181
  database_connection == o.database_connection &&
168
182
  redis_connection == o.redis_connection &&
169
183
  storage == o.storage &&
170
- content_settings == o.content_settings
184
+ content_settings == o.content_settings &&
185
+ domain_enabled == o.domain_enabled
171
186
  end
172
187
 
173
188
  # @see the `==` method
@@ -179,7 +194,7 @@ module PulpcoreClient
179
194
  # Calculates hash code according to all attributes.
180
195
  # @return [Integer] Hash code
181
196
  def hash
182
- [versions, online_workers, online_content_apps, database_connection, redis_connection, storage, content_settings].hash
197
+ [versions, online_workers, online_content_apps, database_connection, redis_connection, storage, content_settings, domain_enabled].hash
183
198
  end
184
199
 
185
200
  # Builds the object from hash
@@ -0,0 +1,37 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module PulpcoreClient
16
+ class StorageClassEnum
17
+ PULPCORE_APP_MODELS_STORAGE_FILE_SYSTEM = "pulpcore.app.models.storage.FileSystem".freeze
18
+ STORAGES_BACKENDS_S3BOTO3_S3_BOTO3_STORAGE = "storages.backends.s3boto3.S3Boto3Storage".freeze
19
+ STORAGES_BACKENDS_AZURE_STORAGE_AZURE_STORAGE = "storages.backends.azure_storage.AzureStorage".freeze
20
+
21
+ # Builds the enum from string
22
+ # @param [String] The enum value in the form of the string
23
+ # @return [String] The enum value
24
+ def self.build_from_hash(value)
25
+ new.build_from_hash(value)
26
+ end
27
+
28
+ # Builds the enum from string
29
+ # @param [String] The enum value in the form of the string
30
+ # @return [String] The enum value
31
+ def build_from_hash(value)
32
+ constantValues = StorageClassEnum.constants.select { |c| StorageClassEnum::const_get(c) == value }
33
+ raise "Invalid ENUM value #{value} for class #StorageClassEnum" if constantValues.empty?
34
+ value
35
+ end
36
+ end
37
+ end