78 lines
2.7 KiB
Python
78 lines
2.7 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from jinja2 import Template
|
|
from werkzeug.exceptions import BadRequest
|
|
|
|
|
|
class RDSClientError(BadRequest):
|
|
|
|
def __init__(self, code, message):
|
|
super(RDSClientError, self).__init__()
|
|
template = Template("""
|
|
<RDSClientError>
|
|
<Error>
|
|
<Code>{{ code }}</Code>
|
|
<Message>{{ message }}</Message>
|
|
<Type>Sender</Type>
|
|
</Error>
|
|
<RequestId>6876f774-7273-11e4-85dc-39e55ca848d1</RequestId>
|
|
</RDSClientError>""")
|
|
self.description = template.render(code=code, message=message)
|
|
|
|
|
|
class DBInstanceNotFoundError(RDSClientError):
|
|
|
|
def __init__(self, database_identifier):
|
|
super(DBInstanceNotFoundError, self).__init__(
|
|
'DBInstanceNotFound',
|
|
"Database {0} not found.".format(database_identifier))
|
|
|
|
|
|
class DBSnapshotNotFoundError(RDSClientError):
|
|
|
|
def __init__(self):
|
|
super(DBSnapshotNotFoundError, self).__init__(
|
|
'DBSnapshotNotFound',
|
|
"DBSnapshotIdentifier does not refer to an existing DB snapshot.")
|
|
|
|
|
|
class DBSecurityGroupNotFoundError(RDSClientError):
|
|
|
|
def __init__(self, security_group_name):
|
|
super(DBSecurityGroupNotFoundError, self).__init__(
|
|
'DBSecurityGroupNotFound',
|
|
"Security Group {0} not found.".format(security_group_name))
|
|
|
|
|
|
class DBSubnetGroupNotFoundError(RDSClientError):
|
|
|
|
def __init__(self, subnet_group_name):
|
|
super(DBSubnetGroupNotFoundError, self).__init__(
|
|
'DBSubnetGroupNotFound',
|
|
"Subnet Group {0} not found.".format(subnet_group_name))
|
|
|
|
|
|
class DBParameterGroupNotFoundError(RDSClientError):
|
|
|
|
def __init__(self, db_parameter_group_name):
|
|
super(DBParameterGroupNotFoundError, self).__init__(
|
|
'DBParameterGroupNotFound',
|
|
'DB Parameter Group {0} not found.'.format(db_parameter_group_name))
|
|
|
|
|
|
class InvalidDBClusterStateFaultError(RDSClientError):
|
|
|
|
def __init__(self, database_identifier):
|
|
super(InvalidDBClusterStateFaultError, self).__init__(
|
|
'InvalidDBClusterStateFault',
|
|
'Invalid DB type, when trying to perform StopDBInstance on {0}e. See AWS RDS documentation on rds.stop_db_instance'.format(database_identifier))
|
|
|
|
|
|
class InvalidDBInstanceStateError(RDSClientError):
|
|
|
|
def __init__(self, database_identifier, istate):
|
|
estate = "in available state" if istate == 'stop' else "stopped, it cannot be started"
|
|
super(InvalidDBInstanceStateError, self).__init__(
|
|
'InvalidDBInstanceState',
|
|
'when calling the {}DBInstance operation: Instance {} is not {}.'.format(istate.title(), database_identifier, estate))
|