Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
usr
/
lib
/
python2.7
/
site-packages
/
boto
/
rds
/
File Content:
dbinstance.pyo
� �Wc @ s� d d l m Z d d l m Z d d l m Z d d l m Z d d l m Z d d l m Z d e f d � � YZ d e f d � � YZ d e f d � � YZ d S( i����( t DBSecurityGroup( t ParameterGroup( t StatusInfo( t DBSubnetGroup( t VPCSecurityGroupMembership( t ResultSett DBInstancec B s� e Z d Z d d d � Z d � Z d � Z d � Z e d � � Z e d � � Z d � Z d � Z e d � Z e d d � Z d d d d d d d d e d d e d d � Z RS( s� Represents a RDS DBInstance Properties reference available from the AWS documentation at http://goo.gl/sC2Kn :ivar connection: connection :ivar id: The name and identifier of the DBInstance :ivar create_time: The date and time of creation :ivar engine: The database engine being used :ivar status: The status of the database in a string. e.g. "available" :ivar allocated_storage: The size of the disk in gigabytes (int). :ivar auto_minor_version_upgrade: Indicates that minor version patches are applied automatically. :ivar endpoint: A tuple that describes the hostname and port of the instance. This is only available when the database is in status "available". :ivar instance_class: Contains the name of the compute and memory capacity class of the DB Instance. :ivar master_username: The username that is set as master username at creation time. :ivar parameter_groups: Provides the list of DB Parameter Groups applied to this DB Instance. :ivar security_groups: Provides List of DB Security Group elements containing only DBSecurityGroup.Name and DBSecurityGroup.Status subelements. :ivar availability_zone: Specifies the name of the Availability Zone the DB Instance is located in. :ivar backup_retention_period: Specifies the number of days for which automatic DB Snapshots are retained. :ivar preferred_backup_window: Specifies the daily time range during which automated backups are created if automated backups are enabled, as determined by the backup_retention_period. :ivar preferred_maintenance_window: Specifies the weekly time range (in UTC) during which system maintenance can occur. (string) :ivar latest_restorable_time: Specifies the latest time to which a database can be restored with point-in-time restore. (string) :ivar multi_az: Boolean that specifies if the DB Instance is a Multi-AZ deployment. :ivar iops: The current number of provisioned IOPS for the DB Instance. Can be None if this is a standard instance. :ivar vpc_security_groups: List of VPC Security Group Membership elements containing only VpcSecurityGroupMembership.VpcSecurityGroupId and VpcSecurityGroupMembership.Status subelements. :ivar pending_modified_values: Specifies that changes to the DB Instance are pending. This element is only included when changes are pending. Specific changes are identified by subelements. :ivar read_replica_dbinstance_identifiers: List of read replicas associated with this DB instance. :ivar status_infos: The status of a Read Replica. If the instance is not a for a read replica, this will be blank. :ivar character_set_name: If present, specifies the name of the character set that this instance is associated with. :ivar subnet_group: Specifies information on the subnet group associated with the DB instance, including the name, description, and subnets in the subnet group. :ivar engine_version: Indicates the database engine version. :ivar license_model: License model information for this DB instance. c C s | | _ | | _ d | _ d | _ d | _ d | _ d | _ d | _ d | _ d | _ g | _ g | _ g | _ d | _ d | _ d | _ d | _ d | _ t | _ d | _ d | _ d | _ t | _ d | _ d | _ d | _ d | _ d | _ d | _ d | _ d S( N( t connectiont idt Nonet create_timet enginet statust allocated_storaget auto_minor_version_upgradet endpointt instance_classt master_usernamet parameter_groupst security_groupst# read_replica_dbinstance_identifierst availability_zonet backup_retention_periodt preferred_backup_windowt preferred_maintenance_windowt latest_restorable_timet Falset multi_azt iopst vpc_security_groupst pending_modified_valuest _in_endpointt _portt _addresst status_infost character_set_namet subnet_groupt engine_versiont license_model( t selfR R ( ( s7 /usr/lib/python2.7/site-packages/boto/rds/dbinstance.pyt __init__[ s<