forked from cloudtools/awacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GitHub Workflow
committed
May 23, 2021
1 parent
4beaf8b
commit d4ae43c
Showing
13 changed files
with
188 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright (c) 2012-2021, Mark Peek <mark@peek.org> | ||
# All rights reserved. | ||
# | ||
# See LICENSE file for full license. | ||
|
||
from .aws import Action as BaseAction | ||
from .aws import BaseARN | ||
|
||
service_name = "AWS Application Cost Profiler Service" | ||
prefix = "application-cost-profiler" | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action: str = None) -> None: | ||
super().__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource: str = "", region: str = "", account: str = "") -> None: | ||
super().__init__( | ||
service=prefix, resource=resource, region=region, account=account | ||
) | ||
|
||
|
||
DeleteReportDefinition = Action("DeleteReportDefinition") | ||
GetReportDefinition = Action("GetReportDefinition") | ||
ImportApplicationUsage = Action("ImportApplicationUsage") | ||
ListReportDefinitions = Action("ListReportDefinitions") | ||
PutReportDefinition = Action("PutReportDefinition") | ||
UpdateReportDefinition = Action("UpdateReportDefinition") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Copyright (c) 2012-2021, Mark Peek <mark@peek.org> | ||
# All rights reserved. | ||
# | ||
# See LICENSE file for full license. | ||
|
||
from .aws import Action as BaseAction | ||
from .aws import BaseARN | ||
|
||
service_name = "AWS App Runner" | ||
prefix = "apprunner" | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action: str = None) -> None: | ||
super().__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource: str = "", region: str = "", account: str = "") -> None: | ||
super().__init__( | ||
service=prefix, resource=resource, region=region, account=account | ||
) | ||
|
||
|
||
AssociateCustomDomain = Action("AssociateCustomDomain") | ||
CreateAutoScalingConfiguration = Action("CreateAutoScalingConfiguration") | ||
CreateConnection = Action("CreateConnection") | ||
CreateService = Action("CreateService") | ||
DeleteAutoScalingConfiguration = Action("DeleteAutoScalingConfiguration") | ||
DeleteConnection = Action("DeleteConnection") | ||
DeleteService = Action("DeleteService") | ||
DescribeAutoScalingConfiguration = Action("DescribeAutoScalingConfiguration") | ||
DescribeCustomDomains = Action("DescribeCustomDomains") | ||
DescribeOperation = Action("DescribeOperation") | ||
DescribeService = Action("DescribeService") | ||
DisassociateCustomDomain = Action("DisassociateCustomDomain") | ||
ListAutoScalingConfigurations = Action("ListAutoScalingConfigurations") | ||
ListConnections = Action("ListConnections") | ||
ListOperations = Action("ListOperations") | ||
ListServices = Action("ListServices") | ||
ListTagsForResource = Action("ListTagsForResource") | ||
PauseService = Action("PauseService") | ||
ResumeService = Action("ResumeService") | ||
StartDeployment = Action("StartDeployment") | ||
TagResource = Action("TagResource") | ||
UntagResource = Action("UntagResource") | ||
UpdateService = Action("UpdateService") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copyright (c) 2012-2021, Mark Peek <mark@peek.org> | ||
# All rights reserved. | ||
# | ||
# See LICENSE file for full license. | ||
|
||
from .aws import Action as BaseAction | ||
from .aws import BaseARN | ||
|
||
service_name = "AWS Systems Manager Incident Manager Contacts" | ||
prefix = "ssm-contacts" | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action: str = None) -> None: | ||
super().__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource: str = "", region: str = "", account: str = "") -> None: | ||
super().__init__( | ||
service=prefix, resource=resource, region=region, account=account | ||
) | ||
|
||
|
||
AcceptPage = Action("AcceptPage") | ||
ActivateContactChannel = Action("ActivateContactChannel") | ||
AssociateContact = Action("AssociateContact") | ||
CreateContact = Action("CreateContact") | ||
CreateContactChannel = Action("CreateContactChannel") | ||
DeactivateContactChannel = Action("DeactivateContactChannel") | ||
DeleteContact = Action("DeleteContact") | ||
DeleteContactChannel = Action("DeleteContactChannel") | ||
DeleteContactPolicy = Action("DeleteContactPolicy") | ||
DescribeEngagement = Action("DescribeEngagement") | ||
DescribePage = Action("DescribePage") | ||
GetContact = Action("GetContact") | ||
GetContactChannel = Action("GetContactChannel") | ||
ListContactChannels = Action("ListContactChannels") | ||
ListContacts = Action("ListContacts") | ||
ListEngagements = Action("ListEngagements") | ||
ListPageReceipts = Action("ListPageReceipts") | ||
ListPagesByContact = Action("ListPagesByContact") | ||
ListPagesByEngagement = Action("ListPagesByEngagement") | ||
PutContactPolicy = Action("PutContactPolicy") | ||
SendActivationCode = Action("SendActivationCode") | ||
StartEngagement = Action("StartEngagement") | ||
StopEngagement = Action("StopEngagement") | ||
UpdateContact = Action("UpdateContact") | ||
UpdateContactChannel = Action("UpdateContactChannel") | ||
UpdateContactPolicy = Action("UpdateContactPolicy") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters