add modify_rules to elbv2
This commit is contained in:
parent
a73fa64043
commit
9bc6779485
4 changed files with 135 additions and 2 deletions
|
|
@ -150,3 +150,11 @@ class InvalidDescribeRulesRequest(ELBClientError):
|
|||
super(InvalidDescribeRulesRequest, self).__init__(
|
||||
"ValidationError", msg
|
||||
)
|
||||
|
||||
|
||||
class RuleNotFoundError(ELBClientError):
|
||||
|
||||
def __init__(self):
|
||||
super(RuleNotFoundError, self).__init__(
|
||||
"RuleNotFound",
|
||||
"The specified rule does not exist.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue