- Implement create_tags, describe_tags, and delete_tags endpoints - Clusters, Parameter Groups, Security Groups, Snapshots, and Subnet Groups can all be tagged - Test Suite updated - Minor clean-up of restore_from_cluster_snapshot endpoint - Miscellaneous typo fixes
95 lines
3.1 KiB
Python
95 lines
3.1 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 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)
|