From 24384f9145de51c68d07fca25ebc062d6abf5a51 Mon Sep 17 00:00:00 2001 From: Larry Reeder Date: Wed, 21 Dec 2022 08:28:25 -0700 Subject: [PATCH 1/3] Added TagResource and UntagResource actions for Api Gateway --- awacs/apigateway.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awacs/apigateway.py b/awacs/apigateway.py index c2a69cc2..f015842e 100644 --- a/awacs/apigateway.py +++ b/awacs/apigateway.py @@ -32,4 +32,6 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N PUT = Action("PUT") RemoveCertificateFromDomain = Action("RemoveCertificateFromDomain") SetWebACL = Action("SetWebACL") +TagResource = Action("TagResource") +UntagResource = Action("UntagResource") UpdateRestApiPolicy = Action("UpdateRestApiPolicy") From bbb8807c86e9f8c56f44838f39ca2bfeb7df0fd8 Mon Sep 17 00:00:00 2001 From: Larry Reeder Date: Wed, 21 Dec 2022 08:37:26 -0700 Subject: [PATCH 2/3] Reverted tag/untag changes for branch --- awacs/apigateway.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/awacs/apigateway.py b/awacs/apigateway.py index f015842e..c2a69cc2 100644 --- a/awacs/apigateway.py +++ b/awacs/apigateway.py @@ -32,6 +32,4 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N PUT = Action("PUT") RemoveCertificateFromDomain = Action("RemoveCertificateFromDomain") SetWebACL = Action("SetWebACL") -TagResource = Action("TagResource") -UntagResource = Action("UntagResource") UpdateRestApiPolicy = Action("UpdateRestApiPolicy") From 4ae154d49d1df4357b4a2f3f4f439ce25fb76f7b Mon Sep 17 00:00:00 2001 From: Larry Reeder Date: Wed, 21 Dec 2022 08:38:06 -0700 Subject: [PATCH 3/3] Added TagResource and UntagResource actions for Api Gateway --- awacs/apigateway.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awacs/apigateway.py b/awacs/apigateway.py index c2a69cc2..f015842e 100644 --- a/awacs/apigateway.py +++ b/awacs/apigateway.py @@ -32,4 +32,6 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N PUT = Action("PUT") RemoveCertificateFromDomain = Action("RemoveCertificateFromDomain") SetWebACL = Action("SetWebACL") +TagResource = Action("TagResource") +UntagResource = Action("UntagResource") UpdateRestApiPolicy = Action("UpdateRestApiPolicy")