132 lines
4.7 KiB
Python
132 lines
4.7 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import json
|
|
from werkzeug.exceptions import BadRequest
|
|
|
|
|
|
class RedshiftClientError(BadRequest):
|
|
|
|
def __init__(self, code, message):
|
|
super(RedshiftClientError, self).__init__()
|
|
self.description = json.dumps({
|
|
"Error": {
|
|
"Code": code,
|
|
"Message": message,
|
|
'Type': 'Sender',
|
|
},
|
|
'RequestId': '6876f774-7273-11e4-85dc-39e55ca848d1',
|
|
})
|
|
|
|
|
|
class ClusterNotFoundError(RedshiftClientError):
|
|
|
|
def __init__(self, cluster_identifier):
|
|
super(ClusterNotFoundError, self).__init__(
|
|
'ClusterNotFound',
|
|
"Cluster {0} not found.".format(cluster_identifier))
|
|
|
|
|
|
class ClusterSubnetGroupNotFoundError(RedshiftClientError):
|
|
|
|
def __init__(self, subnet_identifier):
|
|
super(ClusterSubnetGroupNotFoundError, self).__init__(
|
|
'ClusterSubnetGroupNotFound',
|
|
"Subnet group {0} not found.".format(subnet_identifier))
|
|
|
|
|
|
class ClusterSecurityGroupNotFoundError(RedshiftClientError):
|
|
|
|
def __init__(self, group_identifier):
|
|
super(ClusterSecurityGroupNotFoundError, self).__init__(
|
|
'ClusterSecurityGroupNotFound',
|
|
"Security group {0} not found.".format(group_identifier))
|
|
|
|
|
|
class ClusterParameterGroupNotFoundError(RedshiftClientError):
|
|
|
|
def __init__(self, group_identifier):
|
|
super(ClusterParameterGroupNotFoundError, self).__init__(
|
|
'ClusterParameterGroupNotFound',
|
|
"Parameter group {0} not found.".format(group_identifier))
|
|
|
|
|
|
class InvalidSubnetError(RedshiftClientError):
|
|
|
|
def __init__(self, subnet_identifier):
|
|
super(InvalidSubnetError, self).__init__(
|
|
'InvalidSubnet',
|
|
"Subnet {0} not found.".format(subnet_identifier))
|
|
|
|
|
|
class SnapshotCopyGrantAlreadyExistsFaultError(RedshiftClientError):
|
|
def __init__(self, snapshot_copy_grant_name):
|
|
super(SnapshotCopyGrantAlreadyExistsFaultError, self).__init__(
|
|
'SnapshotCopyGrantAlreadyExistsFault',
|
|
"Cannot create the snapshot copy grant because a grant "
|
|
"with the identifier '{0}' already exists".format(snapshot_copy_grant_name))
|
|
|
|
|
|
class SnapshotCopyGrantNotFoundFaultError(RedshiftClientError):
|
|
def __init__(self, snapshot_copy_grant_name):
|
|
super(SnapshotCopyGrantNotFoundFaultError, self).__init__(
|
|
'SnapshotCopyGrantNotFoundFault',
|
|
"Snapshot copy grant not found: {0}".format(snapshot_copy_grant_name))
|
|
|
|
|
|
class ClusterSnapshotNotFoundError(RedshiftClientError):
|
|
def __init__(self, snapshot_identifier):
|
|
super(ClusterSnapshotNotFoundError, self).__init__(
|
|
'ClusterSnapshotNotFound',
|
|
"Snapshot {0} not found.".format(snapshot_identifier))
|
|
|
|
|
|
class ClusterSnapshotAlreadyExistsError(RedshiftClientError):
|
|
def __init__(self, snapshot_identifier):
|
|
super(ClusterSnapshotAlreadyExistsError, self).__init__(
|
|
'ClusterSnapshotAlreadyExists',
|
|
"Cannot create the snapshot because a snapshot with the "
|
|
"identifier {0} already exists".format(snapshot_identifier))
|
|
|
|
|
|
class InvalidParameterValueError(RedshiftClientError):
|
|
def __init__(self, message):
|
|
super(InvalidParameterValueError, self).__init__(
|
|
'InvalidParameterValue',
|
|
message)
|
|
|
|
|
|
class ResourceNotFoundFaultError(RedshiftClientError):
|
|
|
|
code = 404
|
|
|
|
def __init__(self, resource_type=None, resource_name=None, message=None):
|
|
if resource_type and not resource_name:
|
|
msg = "resource of type '{0}' not found.".format(resource_type)
|
|
else:
|
|
msg = "{0} ({1}) not found.".format(resource_type, resource_name)
|
|
if message:
|
|
msg = message
|
|
super(ResourceNotFoundFaultError, self).__init__(
|
|
'ResourceNotFoundFault', msg)
|
|
|
|
|
|
class SnapshotCopyDisabledFaultError(RedshiftClientError):
|
|
def __init__(self, cluster_identifier):
|
|
super(SnapshotCopyDisabledFaultError, self).__init__(
|
|
'SnapshotCopyDisabledFault',
|
|
"Cannot modify retention period because snapshot copy is disabled on Cluster {0}.".format(cluster_identifier))
|
|
|
|
|
|
class SnapshotCopyAlreadyDisabledFaultError(RedshiftClientError):
|
|
def __init__(self, cluster_identifier):
|
|
super(SnapshotCopyAlreadyDisabledFaultError, self).__init__(
|
|
'SnapshotCopyAlreadyDisabledFault',
|
|
"Snapshot Copy is already disabled on Cluster {0}.".format(cluster_identifier))
|
|
|
|
|
|
class SnapshotCopyAlreadyEnabledFaultError(RedshiftClientError):
|
|
def __init__(self, cluster_identifier):
|
|
super(SnapshotCopyAlreadyEnabledFaultError, self).__init__(
|
|
'SnapshotCopyAlreadyEnabledFault',
|
|
"Snapshot Copy is already enabled on Cluster {0}.".format(cluster_identifier))
|