-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add all missing actions, fix service names, and remove duplicates
- Loading branch information
Showing
81 changed files
with
2,711 additions
and
75 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,43 @@ | ||
# Copyright (c) 2012-2013, 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 = 'IAM Access Analyzer' | ||
prefix = 'access-analyzer' | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action=None): | ||
sup = super(Action, self) | ||
sup.__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource='', region='', account=''): | ||
sup = super(ARN, self) | ||
sup.__init__(service=prefix, resource=resource, region=region, | ||
account=account) | ||
|
||
|
||
CreateAnalyzer = Action('CreateAnalyzer') | ||
CreateArchiveRule = Action('CreateArchiveRule') | ||
DeleteAnalyzer = Action('DeleteAnalyzer') | ||
DeleteArchiveRule = Action('DeleteArchiveRule') | ||
GetAnalyzedResource = Action('GetAnalyzedResource') | ||
GetAnalyzer = Action('GetAnalyzer') | ||
GetArchiveRule = Action('GetArchiveRule') | ||
GetFinding = Action('GetFinding') | ||
ListAnalyzedResources = Action('ListAnalyzedResources') | ||
ListAnalyzers = Action('ListAnalyzers') | ||
ListArchiveRules = Action('ListArchiveRules') | ||
ListFindings = Action('ListFindings') | ||
ListTagsForResource = Action('ListTagsForResource') | ||
StartResourceScan = Action('StartResourceScan') | ||
TagResource = Action('TagResource') | ||
UntagResource = Action('UntagResource') | ||
UpdateArchiveRule = Action('UpdateArchiveRule') | ||
UpdateFindings = Action('UpdateFindings') |
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,61 @@ | ||
# Copyright (c) 2012-2013, 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 AppConfig' | ||
prefix = 'appconfig' | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action=None): | ||
sup = super(Action, self) | ||
sup.__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource='', region='', account=''): | ||
sup = super(ARN, self) | ||
sup.__init__(service=prefix, resource=resource, region=region, | ||
account=account) | ||
|
||
|
||
CreateApplication = Action('CreateApplication') | ||
CreateConfigurationProfile = Action('CreateConfigurationProfile') | ||
CreateDeploymentStrategy = Action('CreateDeploymentStrategy') | ||
CreateEnvironment = Action('CreateEnvironment') | ||
CreateHostedConfigurationVersion = \ | ||
Action('CreateHostedConfigurationVersion') | ||
DeleteApplication = Action('DeleteApplication') | ||
DeleteConfigurationProfile = Action('DeleteConfigurationProfile') | ||
DeleteDeploymentStrategy = Action('DeleteDeploymentStrategy') | ||
DeleteEnvironment = Action('DeleteEnvironment') | ||
DeleteHostedConfigurationVersion = \ | ||
Action('DeleteHostedConfigurationVersion') | ||
GetApplication = Action('GetApplication') | ||
GetConfiguration = Action('GetConfiguration') | ||
GetConfigurationProfile = Action('GetConfigurationProfile') | ||
GetDeployment = Action('GetDeployment') | ||
GetDeploymentStrategy = Action('GetDeploymentStrategy') | ||
GetEnvironment = Action('GetEnvironment') | ||
GetHostedConfigurationVersion = Action('GetHostedConfigurationVersion') | ||
ListApplications = Action('ListApplications') | ||
ListConfigurationProfiles = Action('ListConfigurationProfiles') | ||
ListDeploymentStrategies = Action('ListDeploymentStrategies') | ||
ListDeployments = Action('ListDeployments') | ||
ListEnvironments = Action('ListEnvironments') | ||
ListHostedConfigurationVersions = \ | ||
Action('ListHostedConfigurationVersions') | ||
ListTagsForResource = Action('ListTagsForResource') | ||
StartDeployment = Action('StartDeployment') | ||
StopDeployment = Action('StopDeployment') | ||
TagResource = Action('TagResource') | ||
UntagResource = Action('UntagResource') | ||
UpdateApplication = Action('UpdateApplication') | ||
UpdateConfigurationProfile = Action('UpdateConfigurationProfile') | ||
UpdateDeploymentStrategy = Action('UpdateDeploymentStrategy') | ||
UpdateEnvironment = Action('UpdateEnvironment') | ||
ValidateConfiguration = Action('ValidateConfiguration') |
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,48 @@ | ||
# Copyright (c) 2012-2013, 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 = 'Amazon AppFlow' | ||
prefix = 'appflow' | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action=None): | ||
sup = super(Action, self) | ||
sup.__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource='', region='', account=''): | ||
sup = super(ARN, self) | ||
sup.__init__(service=prefix, resource=resource, region=region, | ||
account=account) | ||
|
||
|
||
CreateConnectorProfile = Action('CreateConnectorProfile') | ||
CreateFlow = Action('CreateFlow') | ||
DeleteConnectorProfile = Action('DeleteConnectorProfile') | ||
DeleteFlow = Action('DeleteFlow') | ||
DescribeConnectorEntity = Action('DescribeConnectorEntity') | ||
DescribeConnectorFields = Action('DescribeConnectorFields') | ||
DescribeConnectorProfiles = Action('DescribeConnectorProfiles') | ||
DescribeConnectors = Action('DescribeConnectors') | ||
DescribeFlow = Action('DescribeFlow') | ||
DescribeFlowExecution = Action('DescribeFlowExecution') | ||
DescribeFlowExecutionRecords = Action('DescribeFlowExecutionRecords') | ||
DescribeFlows = Action('DescribeFlows') | ||
ListConnectorEntities = Action('ListConnectorEntities') | ||
ListConnectorFields = Action('ListConnectorFields') | ||
ListFlows = Action('ListFlows') | ||
ListTagsForResource = Action('ListTagsForResource') | ||
RunFlow = Action('RunFlow') | ||
StartFlow = Action('StartFlow') | ||
StopFlow = Action('StopFlow') | ||
TagResource = Action('TagResource') | ||
UntagResource = Action('UntagResource') | ||
UpdateConnectorProfile = Action('UpdateConnectorProfile') | ||
UpdateFlow = Action('UpdateFlow') |
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,43 @@ | ||
# Copyright (c) 2012-2013, 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 = 'CloudWatch Application Insights' | ||
prefix = 'applicationinsights' | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action=None): | ||
sup = super(Action, self) | ||
sup.__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource='', region='', account=''): | ||
sup = super(ARN, self) | ||
sup.__init__(service=prefix, resource=resource, region=region, | ||
account=account) | ||
|
||
|
||
CreateApplication = Action('CreateApplication') | ||
CreateComponent = Action('CreateComponent') | ||
DeleteApplication = Action('DeleteApplication') | ||
DeleteComponent = Action('DeleteComponent') | ||
DescribeApplication = Action('DescribeApplication') | ||
DescribeComponent = Action('DescribeComponent') | ||
DescribeComponentConfiguration = Action('DescribeComponentConfiguration') | ||
DescribeComponentConfigurationRecommendation = \ | ||
Action('DescribeComponentConfigurationRecommendation') | ||
DescribeObservation = Action('DescribeObservation') | ||
DescribeProblem = Action('DescribeProblem') | ||
DescribeProblemObservations = Action('DescribeProblemObservations') | ||
ListApplications = Action('ListApplications') | ||
ListComponents = Action('ListComponents') | ||
ListProblems = Action('ListProblems') | ||
UpdateApplication = Action('UpdateApplication') | ||
UpdateComponent = Action('UpdateComponent') | ||
UpdateComponentConfiguration = Action('UpdateComponentConfiguration') |
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,61 @@ | ||
# Copyright (c) 2012-2013, 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 Mesh Preview' | ||
prefix = 'appmesh-preview' | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action=None): | ||
sup = super(Action, self) | ||
sup.__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource='', region='', account=''): | ||
sup = super(ARN, self) | ||
sup.__init__(service=prefix, resource=resource, region=region, | ||
account=account) | ||
|
||
|
||
CreateGatewayRoute = Action('CreateGatewayRoute') | ||
CreateMesh = Action('CreateMesh') | ||
CreateRoute = Action('CreateRoute') | ||
CreateVirtualGateway = Action('CreateVirtualGateway') | ||
CreateVirtualNode = Action('CreateVirtualNode') | ||
CreateVirtualRouter = Action('CreateVirtualRouter') | ||
CreateVirtualService = Action('CreateVirtualService') | ||
DeleteGatewayRoute = Action('DeleteGatewayRoute') | ||
DeleteMesh = Action('DeleteMesh') | ||
DeleteRoute = Action('DeleteRoute') | ||
DeleteVirtualGateway = Action('DeleteVirtualGateway') | ||
DeleteVirtualNode = Action('DeleteVirtualNode') | ||
DeleteVirtualRouter = Action('DeleteVirtualRouter') | ||
DeleteVirtualService = Action('DeleteVirtualService') | ||
DescribeGatewayRoute = Action('DescribeGatewayRoute') | ||
DescribeMesh = Action('DescribeMesh') | ||
DescribeRoute = Action('DescribeRoute') | ||
DescribeVirtualGateway = Action('DescribeVirtualGateway') | ||
DescribeVirtualNode = Action('DescribeVirtualNode') | ||
DescribeVirtualRouter = Action('DescribeVirtualRouter') | ||
DescribeVirtualService = Action('DescribeVirtualService') | ||
ListGatewayRoutes = Action('ListGatewayRoutes') | ||
ListMeshes = Action('ListMeshes') | ||
ListRoutes = Action('ListRoutes') | ||
ListVirtualGateways = Action('ListVirtualGateways') | ||
ListVirtualNodes = Action('ListVirtualNodes') | ||
ListVirtualRouters = Action('ListVirtualRouters') | ||
ListVirtualServices = Action('ListVirtualServices') | ||
StreamAggregatedResources = Action('StreamAggregatedResources') | ||
UpdateGatewayRoute = Action('UpdateGatewayRoute') | ||
UpdateMesh = Action('UpdateMesh') | ||
UpdateRoute = Action('UpdateRoute') | ||
UpdateVirtualGateway = Action('UpdateVirtualGateway') | ||
UpdateVirtualNode = Action('UpdateVirtualNode') | ||
UpdateVirtualRouter = Action('UpdateVirtualRouter') | ||
UpdateVirtualService = Action('UpdateVirtualService') |
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,26 @@ | ||
# Copyright (c) 2012-2013, 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 = 'Application Discovery Arsenal' | ||
prefix = 'arsenal' | ||
|
||
|
||
class Action(BaseAction): | ||
def __init__(self, action=None): | ||
sup = super(Action, self) | ||
sup.__init__(prefix, action) | ||
|
||
|
||
class ARN(BaseARN): | ||
def __init__(self, resource='', region='', account=''): | ||
sup = super(ARN, self) | ||
sup.__init__(service=prefix, resource=resource, region=region, | ||
account=account) | ||
|
||
|
||
RegisterOnPremisesAgent = Action('RegisterOnPremisesAgent') |
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
Oops, something went wrong.