Skip to content

Commit

Permalink
Action Update 2024-19
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Workflow committed May 6, 2024
1 parent 44b0af9 commit 697f5cf
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 0 deletions.
1 change: 1 addition & 0 deletions awacs/codepipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
PutWebhook = Action("PutWebhook")
RegisterWebhookWithThirdParty = Action("RegisterWebhookWithThirdParty")
RetryStageExecution = Action("RetryStageExecution")
RollbackStage = Action("RollbackStage")
StartPipelineExecution = Action("StartPipelineExecution")
StopPipelineExecution = Action("StopPipelineExecution")
TagResource = Action("TagResource")
Expand Down
1 change: 1 addition & 0 deletions awacs/healthlake.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
ListFHIRImportJobs = Action("ListFHIRImportJobs")
ListTagsForResource = Action("ListTagsForResource")
ReadResource = Action("ReadResource")
SearchEverything = Action("SearchEverything")
SearchWithGet = Action("SearchWithGet")
SearchWithPost = Action("SearchWithPost")
StartFHIRExportJob = Action("StartFHIRExportJob")
Expand Down
49 changes: 49 additions & 0 deletions awacs/qapps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Copyright (c) 2012-2021, Mark Peek <mark@peek.org>
# All rights reserved.
#
# See LICENSE file for full license.

from typing import Optional

from .aws import Action as BaseAction
from .aws import BaseARN

service_name = "Amazon Q Business Q Apps"
prefix = "qapps"


class Action(BaseAction):
def __init__(self, action: Optional[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
)


AssociateQAppWithUser = Action("AssociateQAppWithUser")
CopyQApp = Action("CopyQApp")
CreateLibraryItem = Action("CreateLibraryItem")
CreateLibraryItemReview = Action("CreateLibraryItemReview")
CreateQApp = Action("CreateQApp")
CreateSubscriptionToken = Action("CreateSubscriptionToken")
DeleteLibraryItem = Action("DeleteLibraryItem")
DeleteQApp = Action("DeleteQApp")
DisassociateQAppFromUser = Action("DisassociateQAppFromUser")
GetLibraryItem = Action("GetLibraryItem")
GetQApp = Action("GetQApp")
ImportDocumentToQApp = Action("ImportDocumentToQApp")
ImportDocumentToQAppSession = Action("ImportDocumentToQAppSession")
ListLibraryItems = Action("ListLibraryItems")
ListQApps = Action("ListQApps")
PredictProblemStatementFromConversation = Action(
"PredictProblemStatementFromConversation"
)
PredictQAppFromProblemStatement = Action("PredictQAppFromProblemStatement")
StartQAppSession = Action("StartQAppSession")
StopQAppSession = Action("StopQAppSession")
UpdateLibraryItem = Action("UpdateLibraryItem")
UpdateQApp = Action("UpdateQApp")
4 changes: 4 additions & 0 deletions awacs/qbusiness.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
AddUserLicenses = Action("AddUserLicenses")
BatchDeleteDocument = Action("BatchDeleteDocument")
BatchPutDocument = Action("BatchPutDocument")
CancelSubscription = Action("CancelSubscription")
Chat = Action("Chat")
ChatSync = Action("ChatSync")
CreateApplication = Action("CreateApplication")
Expand All @@ -35,6 +36,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
CreateLicense = Action("CreateLicense")
CreatePlugin = Action("CreatePlugin")
CreateRetriever = Action("CreateRetriever")
CreateSubscription = Action("CreateSubscription")
CreateUser = Action("CreateUser")
CreateWebExperience = Action("CreateWebExperience")
DeleteApplication = Action("DeleteApplication")
Expand Down Expand Up @@ -67,6 +69,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
ListMessages = Action("ListMessages")
ListPlugins = Action("ListPlugins")
ListRetrievers = Action("ListRetrievers")
ListSubscriptions = Action("ListSubscriptions")
ListTagsForResource = Action("ListTagsForResource")
ListUserLicenses = Action("ListUserLicenses")
ListWebExperiences = Action("ListWebExperiences")
Expand All @@ -83,5 +86,6 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
UpdateIndex = Action("UpdateIndex")
UpdatePlugin = Action("UpdatePlugin")
UpdateRetriever = Action("UpdateRetriever")
UpdateSubscription = Action("UpdateSubscription")
UpdateUser = Action("UpdateUser")
UpdateWebExperience = Action("UpdateWebExperience")
17 changes: 17 additions & 0 deletions awacs/sms_voice.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,23 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N


AssociateOriginationIdentity = Action("AssociateOriginationIdentity")
AssociateProtectConfiguration = Action("AssociateProtectConfiguration")
CreateConfigurationSet = Action("CreateConfigurationSet")
CreateConfigurationSetEventDestination = Action(
"CreateConfigurationSetEventDestination"
)
CreateEventDestination = Action("CreateEventDestination")
CreateOptOutList = Action("CreateOptOutList")
CreatePool = Action("CreatePool")
CreateProtectConfiguration = Action("CreateProtectConfiguration")
CreateRegistration = Action("CreateRegistration")
CreateRegistrationAssociation = Action("CreateRegistrationAssociation")
CreateRegistrationAttachment = Action("CreateRegistrationAttachment")
CreateRegistrationVersion = Action("CreateRegistrationVersion")
CreateVerifiedDestinationNumber = Action("CreateVerifiedDestinationNumber")
DeleteAccountDefaultProtectConfiguration = Action(
"DeleteAccountDefaultProtectConfiguration"
)
DeleteConfigurationSet = Action("DeleteConfigurationSet")
DeleteConfigurationSetEventDestination = Action(
"DeleteConfigurationSetEventDestination"
Expand All @@ -45,9 +50,11 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
DeleteDefaultSenderId = Action("DeleteDefaultSenderId")
DeleteEventDestination = Action("DeleteEventDestination")
DeleteKeyword = Action("DeleteKeyword")
DeleteMediaMessageSpendLimitOverride = Action("DeleteMediaMessageSpendLimitOverride")
DeleteOptOutList = Action("DeleteOptOutList")
DeleteOptedOutNumber = Action("DeleteOptedOutNumber")
DeletePool = Action("DeletePool")
DeleteProtectConfiguration = Action("DeleteProtectConfiguration")
DeleteRegistration = Action("DeleteRegistration")
DeleteRegistrationAttachment = Action("DeleteRegistrationAttachment")
DeleteRegistrationFieldValue = Action("DeleteRegistrationFieldValue")
Expand All @@ -62,6 +69,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
DescribeOptedOutNumbers = Action("DescribeOptedOutNumbers")
DescribePhoneNumbers = Action("DescribePhoneNumbers")
DescribePools = Action("DescribePools")
DescribeProtectConfigurations = Action("DescribeProtectConfigurations")
DescribeRegistrationAttachments = Action("DescribeRegistrationAttachments")
DescribeRegistrationFieldDefinitions = Action("DescribeRegistrationFieldDefinitions")
DescribeRegistrationFieldValues = Action("DescribeRegistrationFieldValues")
Expand All @@ -75,8 +83,10 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
DescribeSpendLimits = Action("DescribeSpendLimits")
DescribeVerifiedDestinationNumbers = Action("DescribeVerifiedDestinationNumbers")
DisassociateOriginationIdentity = Action("DisassociateOriginationIdentity")
DisassociateProtectConfiguration = Action("DisassociateProtectConfiguration")
DiscardRegistrationVersion = Action("DiscardRegistrationVersion")
GetConfigurationSetEventDestinations = Action("GetConfigurationSetEventDestinations")
GetProtectConfigurationCountryRuleSet = Action("GetProtectConfigurationCountryRuleSet")
ListConfigurationSets = Action("ListConfigurationSets")
ListPoolOriginationIdentities = Action("ListPoolOriginationIdentities")
ListRegistrationAssociations = Action("ListRegistrationAssociations")
Expand All @@ -89,10 +99,13 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
RequestPhoneNumber = Action("RequestPhoneNumber")
RequestSenderId = Action("RequestSenderId")
SendDestinationNumberVerificationCode = Action("SendDestinationNumberVerificationCode")
SendMediaMessage = Action("SendMediaMessage")
SendTextMessage = Action("SendTextMessage")
SendVoiceMessage = Action("SendVoiceMessage")
SetAccountDefaultProtectConfiguration = Action("SetAccountDefaultProtectConfiguration")
SetDefaultMessageType = Action("SetDefaultMessageType")
SetDefaultSenderId = Action("SetDefaultSenderId")
SetMediaMessageSpendLimitOverride = Action("SetMediaMessageSpendLimitOverride")
SetTextMessageSpendLimitOverride = Action("SetTextMessageSpendLimitOverride")
SetVoiceMessageSpendLimitOverride = Action("SetVoiceMessageSpendLimitOverride")
SubmitRegistrationVersion = Action("SubmitRegistrationVersion")
Expand All @@ -104,5 +117,9 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
UpdateEventDestination = Action("UpdateEventDestination")
UpdatePhoneNumber = Action("UpdatePhoneNumber")
UpdatePool = Action("UpdatePool")
UpdateProtectConfiguration = Action("UpdateProtectConfiguration")
UpdateProtectConfigurationCountryRuleSet = Action(
"UpdateProtectConfigurationCountryRuleSet"
)
UpdateSenderId = Action("UpdateSenderId")
VerifyDestinationNumber = Action("VerifyDestinationNumber")
2 changes: 2 additions & 0 deletions awacs/timestream.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
DeleteDatabase = Action("DeleteDatabase")
DeleteScheduledQuery = Action("DeleteScheduledQuery")
DeleteTable = Action("DeleteTable")
DescribeAccountSettings = Action("DescribeAccountSettings")
DescribeBatchLoadTask = Action("DescribeBatchLoadTask")
DescribeDatabase = Action("DescribeDatabase")
DescribeEndpoints = Action("DescribeEndpoints")
Expand All @@ -55,6 +56,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
TagResource = Action("TagResource")
Unload = Action("Unload")
UntagResource = Action("UntagResource")
UpdateAccountSettings = Action("UpdateAccountSettings")
UpdateDatabase = Action("UpdateDatabase")
UpdateScheduledQuery = Action("UpdateScheduledQuery")
UpdateTable = Action("UpdateTable")
Expand Down

0 comments on commit 697f5cf

Please sign in to comment.