* fix OPTIONS requests on non-existing API GW integrations * add cloudformation models for API Gateway deployments * bump version * add backdoor to return CloudWatch metrics * Updating implementation coverage * Updating implementation coverage * add cloudformation models for API Gateway deployments * Updating implementation coverage * Updating implementation coverage * Implemented get-caller-identity returning real data depending on the access key used. * bump version * minor fixes * fix Number data_type for SQS message attribute * fix handling of encoding errors * bump version * make CF stack queryable before starting to initialize its resources * bump version * fix integration_method for API GW method integrations * fix undefined status in CF FakeStack * Fix apigateway issues with terraform v0.12.21 * resource_methods -> add handle for "DELETE" method * integrations -> fix issue that "httpMethod" wasn't included in body request (this value was set as the value from refer method resource) * bump version * Fix setting http method for API gateway integrations (#6) * bump version * remove duplicate methods * add storage class to S3 Key when completing multipart upload (#7) * fix SQS performance issues; bump version * add pagination to SecretsManager list-secrets (#9) * fix default parameter groups in RDS * fix adding S3 metadata headers with names containing dots (#13) * Updating implementation coverage * Updating implementation coverage * add cloudformation models for API Gateway deployments * Updating implementation coverage * Updating implementation coverage * Implemented get-caller-identity returning real data depending on the access key used. * make CF stack queryable before starting to initialize its resources * bump version * remove duplicate methods * fix adding S3 metadata headers with names containing dots (#13) * Update amis.json to support EKS AMI mocks (#15) * fix PascalCase for boolean value in ListMultipartUploads response (#17); fix _get_multi_param to parse nested list/dict query params * determine non-zero container exit code in Batch API * support filtering by dimensions in CW get_metric_statistics * fix storing attributes for ELBv2 Route entities; API GW refactorings for TF tests * add missing fields for API GW resources * fix error messages for Route53 (TF-compat) * various fixes for IAM resources (tf-compat) * minor fixes for API GW models (tf-compat) * minor fixes for API GW responses (tf-compat) * add s3 exception for bucket notification filter rule validation * change the way RESTErrors generate the response body and content-type header * fix lint errors and disable "black" syntax enforcement * remove return type hint in RESTError.get_body * add RESTError XML template for IAM exceptions * add support for API GW minimumCompressionSize * fix casing getting PrivateDnsEnabled API GW attribute * minor fixes for error responses * fix escaping special chars for IAM role descriptions (tf-compat) * minor fixes and tagging support for API GW and ELB v2 (tf-compat) * Merge branch 'master' into localstack * add "AlarmRule" attribute to enable support for composite CloudWatch metrics * fix recursive parsing of complex/nested query params * bump version * add API to delete S3 website configurations (#18) * use dict copy to allow parallelism and avoid concurrent modification exceptions in S3 * fix precondition check for etags in S3 (#19) * minor fix for user filtering in Cognito * fix API Gateway error response; avoid returning empty response templates (tf-compat) * support tags and tracingEnabled attribute for API GW stages * fix boolean value in S3 encryption response (#20) * fix connection arn structure * fix api destination arn structure * black format * release 2.0.3.37 * fix s3 exception tests see botocore/parsers.py:1002 where RequestId is removed from parsed * remove python 2 from build action * add test failure annotations in build action * fix events test arn comparisons * fix s3 encryption response test * return default value "0" if EC2 availableIpAddressCount is empty * fix extracting SecurityGroupIds for EC2 VPC endpoints * support deleting/updating API Gateway DomainNames * fix(events): Return empty string instead of null when no pattern is specified in EventPattern (tf-compat) (#22) * fix logic and revert CF changes to get tests running again (#21) * add support for EC2 customer gateway API (#25) * add support for EC2 Transit Gateway APIs (#24) * feat(logs): add `kmsKeyId` into `LogGroup` entity (#23) * minor change in ELBv2 logic to fix tests * feat(events): add APIs to describe and delete CloudWatch Events connections (#26) * add support for EC2 transit gateway route tables (#27) * pass transit gateway route table ID in Describe API, minor refactoring (#29) * add support for EC2 Transit Gateway Routes (#28) * fix region on ACM certificate import (#31) * add support for EC2 transit gateway attachments (#30) * add support for EC2 Transit Gateway VPN attachments (#32) * fix account ID for logs API * add support for DeleteOrganization API * feat(events): store raw filter representation for CloudWatch events patterns (tf-compat) (#36) * feat(events): add support to describe/update/delete CloudWatch API destinations (#35) * add Cognito UpdateIdentityPool, CW Logs PutResourcePolicy * feat(events): add support for tags in EventBus API (#38) * fix parameter validation for Batch compute environments (tf-compat) * revert merge conflicts in IMPLEMENTATION_COVERAGE.md * format code using black * restore original README; re-enable and fix CloudFormation tests * restore tests and old logic for CF stack parameters from SSM * parameterize RequestId/RequestID in response messages and revert related test changes * undo LocalStack-specific adaptations * minor fix * Update CodeCov config to reflect removal of Py2 * undo change related to CW metric filtering; add additional test for CW metric statistics with dimensions * Terraform - Extend whitelist of running tests Co-authored-by: acsbendi <acsbendi28@gmail.com> Co-authored-by: Phan Duong <duongpv@outlook.com> Co-authored-by: Thomas Rausch <thomas@thrau.at> Co-authored-by: Macwan Nevil <macnev2013@gmail.com> Co-authored-by: Dominik Schubert <dominik.schubert91@gmail.com> Co-authored-by: Gonzalo Saad <saad.gonzalo.ale@gmail.com> Co-authored-by: Mohit Alonja <monty16597@users.noreply.github.com> Co-authored-by: Miguel Gagliardo <migag9@gmail.com> Co-authored-by: Bert Blommers <info@bertblommers.nl>
199 lines
6.1 KiB
Python
199 lines
6.1 KiB
Python
from __future__ import unicode_literals
|
|
from moto.core.exceptions import RESTError
|
|
|
|
|
|
class ELBClientError(RESTError):
|
|
code = 400
|
|
|
|
|
|
class DuplicateTagKeysError(ELBClientError):
|
|
def __init__(self, cidr):
|
|
super(DuplicateTagKeysError, self).__init__(
|
|
"DuplicateTagKeys", "Tag key was specified more than once: {0}".format(cidr)
|
|
)
|
|
|
|
|
|
class LoadBalancerNotFoundError(ELBClientError):
|
|
def __init__(self):
|
|
super(LoadBalancerNotFoundError, self).__init__(
|
|
"LoadBalancerNotFound", "The specified load balancer does not exist."
|
|
)
|
|
|
|
|
|
class ListenerNotFoundError(ELBClientError):
|
|
def __init__(self):
|
|
super(ListenerNotFoundError, self).__init__(
|
|
"ListenerNotFound", "The specified listener does not exist."
|
|
)
|
|
|
|
|
|
class SubnetNotFoundError(ELBClientError):
|
|
def __init__(self):
|
|
super(SubnetNotFoundError, self).__init__(
|
|
"SubnetNotFound", "The specified subnet does not exist."
|
|
)
|
|
|
|
|
|
class TargetGroupNotFoundError(ELBClientError):
|
|
def __init__(self):
|
|
super(TargetGroupNotFoundError, self).__init__(
|
|
"TargetGroupNotFound", "The specified target group does not exist."
|
|
)
|
|
|
|
|
|
class TooManyTagsError(ELBClientError):
|
|
def __init__(self):
|
|
super(TooManyTagsError, self).__init__(
|
|
"TooManyTagsError",
|
|
"The quota for the number of tags that can be assigned to a load balancer has been reached",
|
|
)
|
|
|
|
|
|
class BadHealthCheckDefinition(ELBClientError):
|
|
def __init__(self):
|
|
super(BadHealthCheckDefinition, self).__init__(
|
|
"ValidationError",
|
|
"HealthCheck Target must begin with one of HTTP, TCP, HTTPS, SSL",
|
|
)
|
|
|
|
|
|
class DuplicateListenerError(ELBClientError):
|
|
def __init__(self):
|
|
super(DuplicateListenerError, self).__init__(
|
|
"DuplicateListener", "A listener with the specified port already exists."
|
|
)
|
|
|
|
|
|
class DuplicateLoadBalancerName(ELBClientError):
|
|
def __init__(self):
|
|
super(DuplicateLoadBalancerName, self).__init__(
|
|
"DuplicateLoadBalancerName",
|
|
"A load balancer with the specified name already exists.",
|
|
)
|
|
|
|
|
|
class DuplicateTargetGroupName(ELBClientError):
|
|
def __init__(self):
|
|
super(DuplicateTargetGroupName, self).__init__(
|
|
"DuplicateTargetGroupName",
|
|
"A target group with the specified name already exists.",
|
|
)
|
|
|
|
|
|
class InvalidTargetError(ELBClientError):
|
|
def __init__(self):
|
|
super(InvalidTargetError, self).__init__(
|
|
"InvalidTarget",
|
|
"The specified target does not exist or is not in the same VPC as the target group.",
|
|
)
|
|
|
|
|
|
class EmptyListenersError(ELBClientError):
|
|
def __init__(self):
|
|
super(EmptyListenersError, self).__init__(
|
|
"ValidationError", "Listeners cannot be empty"
|
|
)
|
|
|
|
|
|
class PriorityInUseError(ELBClientError):
|
|
def __init__(self):
|
|
super(PriorityInUseError, self).__init__(
|
|
"PriorityInUse", "The specified priority is in use."
|
|
)
|
|
|
|
|
|
class InvalidConditionFieldError(ELBClientError):
|
|
VALID_FIELDS = [
|
|
"path-pattern",
|
|
"host-header",
|
|
"http-header",
|
|
"http-request-method",
|
|
"query-string",
|
|
"source-ip",
|
|
]
|
|
|
|
def __init__(self, invalid_name):
|
|
super(InvalidConditionFieldError, self).__init__(
|
|
"ValidationError",
|
|
"Condition field '%s' must be one of '[%s]'"
|
|
% (invalid_name, ",".join(self.VALID_FIELDS)),
|
|
)
|
|
|
|
|
|
class InvalidConditionValueError(ELBClientError):
|
|
def __init__(self, msg):
|
|
super(InvalidConditionValueError, self).__init__("ValidationError", msg)
|
|
|
|
|
|
class InvalidActionTypeError(ELBClientError):
|
|
def __init__(self, invalid_name, index):
|
|
super(InvalidActionTypeError, self).__init__(
|
|
"ValidationError",
|
|
"1 validation error detected: Value '%s' at 'actions.%s.member.type' failed to satisfy constraint: Member must satisfy enum value set: [forward, redirect, fixed-response]"
|
|
% (invalid_name, index),
|
|
)
|
|
|
|
|
|
class ActionTargetGroupNotFoundError(ELBClientError):
|
|
def __init__(self, arn):
|
|
super(ActionTargetGroupNotFoundError, self).__init__(
|
|
"TargetGroupNotFound", "Target group '%s' not found" % arn
|
|
)
|
|
|
|
|
|
class ListenerOrBalancerMissingError(ELBClientError):
|
|
def __init__(self, arn):
|
|
super(ListenerOrBalancerMissingError, self).__init__(
|
|
"ValidationError",
|
|
"You must specify either listener ARNs or a load balancer ARN",
|
|
)
|
|
|
|
|
|
class InvalidDescribeRulesRequest(ELBClientError):
|
|
def __init__(self, msg):
|
|
super(InvalidDescribeRulesRequest, self).__init__("ValidationError", msg)
|
|
|
|
|
|
class ResourceInUseError(ELBClientError):
|
|
def __init__(self, msg="A specified resource is in use"):
|
|
super(ResourceInUseError, self).__init__("ResourceInUse", msg)
|
|
|
|
|
|
class RuleNotFoundError(ELBClientError):
|
|
def __init__(self):
|
|
super(RuleNotFoundError, self).__init__(
|
|
"RuleNotFound", "The specified rule does not exist."
|
|
)
|
|
|
|
|
|
class DuplicatePriorityError(ELBClientError):
|
|
def __init__(self, invalid_value):
|
|
super(DuplicatePriorityError, self).__init__(
|
|
"ValidationError",
|
|
"Priority '%s' was provided multiple times" % invalid_value,
|
|
)
|
|
|
|
|
|
class InvalidTargetGroupNameError(ELBClientError):
|
|
def __init__(self, msg):
|
|
super(InvalidTargetGroupNameError, self).__init__("ValidationError", msg)
|
|
|
|
|
|
class InvalidModifyRuleArgumentsError(ELBClientError):
|
|
def __init__(self):
|
|
super(InvalidModifyRuleArgumentsError, self).__init__(
|
|
"ValidationError", "Either conditions or actions must be specified"
|
|
)
|
|
|
|
|
|
class InvalidStatusCodeActionTypeError(ELBClientError):
|
|
def __init__(self, msg):
|
|
super(InvalidStatusCodeActionTypeError, self).__init__("ValidationError", msg)
|
|
|
|
|
|
class InvalidLoadBalancerActionException(ELBClientError):
|
|
def __init__(self, msg):
|
|
super(InvalidLoadBalancerActionException, self).__init__(
|
|
"InvalidLoadBalancerAction", msg
|
|
)
|