lib/comet/models/remote_storage_option.rb
# frozen_string_literal: true # Copyright (c) 2020-2024 Comet Licensing Ltd. # Please see the LICENSE file for usage information. # # SPDX-License-Identifier: MIT require 'json' module Comet # RemoteStorageOption is a typed class wrapper around the underlying Comet Server API data structure. class RemoteStorageOption # @type [String] type attr_accessor :type # @type [String] description attr_accessor :description # For use with Comet Server (Storage Role / Auth Role) # @type [String] remote_address attr_accessor :remote_address # For use with Comet Server (Storage Role / Auth Role) # @type [String] username attr_accessor :username # For use with Comet Server (Storage Role / Auth Role) # @type [String] password attr_accessor :password # @type [Comet::ExternalLDAPAuthenticationSourceSettings] ldap attr_accessor :ldap # @type [Comet::OidcConfig] oidc attr_accessor :oidc # Backblaze B2 (Storage Template / Constellation) # @type [Comet::B2VirtualStorageRoleSettings] b2 attr_accessor :b2 # Wasabi, or Comet Storage powered by Wasabi (Storage Template / Constellation) # @type [Comet::WasabiVirtualStorageRoleSettings] wasabi attr_accessor :wasabi # Custom Remote Bucket HTTP protocol (Storage Template) # @type [Comet::CustomRemoteBucketSettings] custom attr_accessor :custom # IDrive e2, or Custom IAM-compatible (Storage Template / Constellation) # @type [Comet::S3GenericVirtualStorageRole] s3 attr_accessor :s3 # Amazon AWS (Storage Template / Constellation) # @type [Comet::AmazonAWSVirtualStorageRoleSettings] aws attr_accessor :aws # Storj (Storage Template / Constellation) # @type [Comet::StorjVirtualStorageRoleSetting] storj attr_accessor :storj # Impossible Cloud Partner API (Storage Template / Constellation) # @type [Comet::ImpossibleCloudPartnerTemplateSettings] imp_partner attr_accessor :imp_partner # Impossible Cloud IAM API (Storage Template / Constellation) # @type [Comet::ImpossibleCloudIAMTemplateSettings] imp_user attr_accessor :imp_user # @type [Boolean] storage_limit_enabled attr_accessor :storage_limit_enabled # @type [Number] storage_limit_bytes attr_accessor :storage_limit_bytes # @type [Boolean] rebrand_storage attr_accessor :rebrand_storage # @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations attr_accessor :unknown_json_fields def initialize clear end def clear @type = '' @description = '' @remote_address = '' @username = '' @password = '' @ldap = Comet::ExternalLDAPAuthenticationSourceSettings.new @oidc = Comet::OidcConfig.new @b2 = Comet::B2VirtualStorageRoleSettings.new @wasabi = Comet::WasabiVirtualStorageRoleSettings.new @custom = Comet::CustomRemoteBucketSettings.new @s3 = Comet::S3GenericVirtualStorageRole.new @aws = Comet::AmazonAWSVirtualStorageRoleSettings.new @storj = Comet::StorjVirtualStorageRoleSetting.new @imp_partner = Comet::ImpossibleCloudPartnerTemplateSettings.new @imp_user = Comet::ImpossibleCloudIAMTemplateSettings.new @storage_limit_bytes = 0 @unknown_json_fields = {} end # @param [String] json_string The complete object in JSON format def from_json(json_string) raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String from_hash(JSON.parse(json_string)) end # @param [Hash] obj The complete object as a Ruby hash def from_hash(obj) raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash obj.each do |k, v| case k when 'Type' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @type = v when 'Description' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @description = v when 'RemoteAddress' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @remote_address = v when 'Username' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @username = v when 'Password' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @password = v when 'LDAP' @ldap = Comet::ExternalLDAPAuthenticationSourceSettings.new @ldap.from_hash(v) when 'OIDC' @oidc = Comet::OidcConfig.new @oidc.from_hash(v) when 'B2' @b2 = Comet::B2VirtualStorageRoleSettings.new @b2.from_hash(v) when 'Wasabi' @wasabi = Comet::WasabiVirtualStorageRoleSettings.new @wasabi.from_hash(v) when 'Custom' @custom = Comet::CustomRemoteBucketSettings.new @custom.from_hash(v) when 'S3' @s3 = Comet::S3GenericVirtualStorageRole.new @s3.from_hash(v) when 'AWS' @aws = Comet::AmazonAWSVirtualStorageRoleSettings.new @aws.from_hash(v) when 'Storj' @storj = Comet::StorjVirtualStorageRoleSetting.new @storj.from_hash(v) when 'ImpPartner' @imp_partner = Comet::ImpossibleCloudPartnerTemplateSettings.new @imp_partner.from_hash(v) when 'ImpUser' @imp_user = Comet::ImpossibleCloudIAMTemplateSettings.new @imp_user.from_hash(v) when 'StorageLimitEnabled' @storage_limit_enabled = v when 'StorageLimitBytes' raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric @storage_limit_bytes = v when 'RebrandStorage' @rebrand_storage = v else @unknown_json_fields[k] = v end end end # @return [Hash] The complete object as a Ruby hash def to_hash ret = {} ret['Type'] = @type ret['Description'] = @description unless @remote_address.nil? ret['RemoteAddress'] = @remote_address end unless @username.nil? ret['Username'] = @username end unless @password.nil? ret['Password'] = @password end unless @ldap.nil? ret['LDAP'] = @ldap end unless @oidc.nil? ret['OIDC'] = @oidc end unless @b2.nil? ret['B2'] = @b2 end unless @wasabi.nil? ret['Wasabi'] = @wasabi end unless @custom.nil? ret['Custom'] = @custom end unless @s3.nil? ret['S3'] = @s3 end unless @aws.nil? ret['AWS'] = @aws end unless @storj.nil? ret['Storj'] = @storj end unless @imp_partner.nil? ret['ImpPartner'] = @imp_partner end unless @imp_user.nil? ret['ImpUser'] = @imp_user end ret['StorageLimitEnabled'] = @storage_limit_enabled ret['StorageLimitBytes'] = @storage_limit_bytes ret['RebrandStorage'] = @rebrand_storage @unknown_json_fields.each do |k, v| ret[k] = v end ret end # @return [Hash] The complete object as a Ruby hash def to_h to_hash end # @return [String] The complete object as a JSON string def to_json(options = {}) to_hash.to_json(options) end end end