File: instance_option.rb

package info (click to toggle)
ruby-fog-aws 3.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,140 kB
  • sloc: ruby: 73,328; javascript: 14; makefile: 9; sh: 4
file content (22 lines) | stat: -rw-r--r-- 1,263 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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