1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/rds/instance_option.rb
Carlos Lima 650a5884c7 [aws | rds] update instance_option model to match data provided by aws
Not all the data given by aws was being exposed on the model.
This makes it match the current used version of the API (2014-10-31).
2017-10-22 13:37:53 +08:00

22 lines
1.2 KiB
Ruby

module Fog
module AWS
class RDS
class InstanceOption < Fog::Model
attribute :multi_az_capable, :aliases => 'MultiAZCapable', :type => :boolean
attribute :engine, :aliases => 'Engine'
attribute :license_model, :aliases => 'LicenseModel'
attribute :read_replica_capable, :aliases => 'ReadReplicaCapable', :type => :boolean
attribute :engine_version, :aliases => 'EngineVersion'
attribute :availability_zones, :aliases => 'AvailabilityZones', :type => :array
attribute :db_instance_class, :aliases => 'DBInstanceClass'
attribute :vpc, :aliases => 'Vpc', :type => :boolean
attribute :supports_iops, :aliases => 'SupportsIops', :type => :boolean
attribute :supports_enhanced_monitoring, :aliases => 'SupportsEnhancedMonitoring', :type => :boolean
attribute :supports_iam_database_authentication, :aliases => 'SupportsIAMDatabaseAuthentication', :type => :boolean
attribute :supports_performance_insights, :aliases => 'SupportsPerformanceInsights', :type => :boolean
attribute :supports_storage_encryption, :aliases => 'SupportsStorageEncryption', :type => :boolean
attribute :storage_type, :aliases => 'StorageType'
end
end
end
end