Skip to content

Commit 05b2fd0

Browse files
author
GitHub Workflow
committed
Action Update 2026-07
1 parent 39ea834 commit 05b2fd0

7 files changed

Lines changed: 21 additions & 0 deletions

File tree

awacs/bedrock_agentcore.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
3636
CreateAgentRuntimeEndpoint = Action("CreateAgentRuntimeEndpoint")
3737
CreateApiKeyCredentialProvider = Action("CreateApiKeyCredentialProvider")
3838
CreateBrowser = Action("CreateBrowser")
39+
CreateBrowserProfile = Action("CreateBrowserProfile")
3940
CreateCodeInterpreter = Action("CreateCodeInterpreter")
4041
CreateEvaluator = Action("CreateEvaluator")
4142
CreateEvent = Action("CreateEvent")
@@ -51,6 +52,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
5152
DeleteAgentRuntimeEndpoint = Action("DeleteAgentRuntimeEndpoint")
5253
DeleteApiKeyCredentialProvider = Action("DeleteApiKeyCredentialProvider")
5354
DeleteBrowser = Action("DeleteBrowser")
55+
DeleteBrowserProfile = Action("DeleteBrowserProfile")
5456
DeleteCodeInterpreter = Action("DeleteCodeInterpreter")
5557
DeleteEvaluator = Action("DeleteEvaluator")
5658
DeleteEvent = Action("DeleteEvent")
@@ -70,6 +72,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
7072
GetAgentRuntimeEndpoint = Action("GetAgentRuntimeEndpoint")
7173
GetApiKeyCredentialProvider = Action("GetApiKeyCredentialProvider")
7274
GetBrowser = Action("GetBrowser")
75+
GetBrowserProfile = Action("GetBrowserProfile")
7376
GetBrowserSession = Action("GetBrowserSession")
7477
GetCodeInterpreter = Action("GetCodeInterpreter")
7578
GetCodeInterpreterSession = Action("GetCodeInterpreterSession")
@@ -106,6 +109,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
106109
ListAgentRuntimeVersions = Action("ListAgentRuntimeVersions")
107110
ListAgentRuntimes = Action("ListAgentRuntimes")
108111
ListApiKeyCredentialProviders = Action("ListApiKeyCredentialProviders")
112+
ListBrowserProfiles = Action("ListBrowserProfiles")
109113
ListBrowserSessions = Action("ListBrowserSessions")
110114
ListBrowsers = Action("ListBrowsers")
111115
ListCodeInterpreterSessions = Action("ListCodeInterpreterSessions")
@@ -131,6 +135,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
131135
PartiallyAuthorizeActions = Action("PartiallyAuthorizeActions")
132136
PutResourcePolicy = Action("PutResourcePolicy")
133137
RetrieveMemoryRecords = Action("RetrieveMemoryRecords")
138+
SaveBrowserSessionProfile = Action("SaveBrowserSessionProfile")
134139
SetTokenVaultCMK = Action("SetTokenVaultCMK")
135140
StartBrowserSession = Action("StartBrowserSession")
136141
StartCodeInterpreterSession = Action("StartCodeInterpreterSession")

awacs/dynamodb.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
2424
)
2525

2626

27+
AssociateTableReplica = Action("AssociateTableReplica")
2728
BatchGetItem = Action("BatchGetItem")
2829
BatchWriteItem = Action("BatchWriteItem")
2930
ConditionCheckItem = Action("ConditionCheckItem")
@@ -80,6 +81,8 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
8081
PutItem = Action("PutItem")
8182
PutResourcePolicy = Action("PutResourcePolicy")
8283
Query = Action("Query")
84+
ReadDataForReplication = Action("ReadDataForReplication")
85+
ReplicateSettings = Action("ReplicateSettings")
8386
RestoreTableFromAwsBackup = Action("RestoreTableFromAwsBackup")
8487
RestoreTableFromBackup = Action("RestoreTableFromBackup")
8588
RestoreTableToPointInTime = Action("RestoreTableToPointInTime")
@@ -98,3 +101,4 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
98101
UpdateTable = Action("UpdateTable")
99102
UpdateTableReplicaAutoScaling = Action("UpdateTableReplicaAutoScaling")
100103
UpdateTimeToLive = Action("UpdateTimeToLive")
104+
WriteDataForReplication = Action("WriteDataForReplication")

awacs/ec2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -781,6 +781,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
781781
ImportSnapshot = Action("ImportSnapshot")
782782
ImportVolume = Action("ImportVolume")
783783
InjectApiError = Action("InjectApiError")
784+
InjectVolumeIOLatency = Action("InjectVolumeIOLatency")
784785
ListImagesInRecycleBin = Action("ListImagesInRecycleBin")
785786
ListSnapshotsInRecycleBin = Action("ListSnapshotsInRecycleBin")
786787
ListVolumesInRecycleBin = Action("ListVolumesInRecycleBin")

awacs/glue.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
8686
DeleteColumnStatisticsForTable = Action("DeleteColumnStatisticsForTable")
8787
DeleteColumnStatisticsTaskSettings = Action("DeleteColumnStatisticsTaskSettings")
8888
DeleteConnection = Action("DeleteConnection")
89+
DeleteConnectionType = Action("DeleteConnectionType")
8990
DeleteCrawler = Action("DeleteCrawler")
9091
DeleteCustomEntityType = Action("DeleteCustomEntityType")
9192
DeleteDataQualityRuleset = Action("DeleteDataQualityRuleset")
@@ -252,6 +253,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
252253
PutWorkflowRunProperties = Action("PutWorkflowRunProperties")
253254
QuerySchemaVersionMetadata = Action("QuerySchemaVersionMetadata")
254255
RefreshOAuth2Tokens = Action("RefreshOAuth2Tokens")
256+
RegisterConnectionType = Action("RegisterConnectionType")
255257
RegisterSchemaVersion = Action("RegisterSchemaVersion")
256258
RemoveSchemaVersionMetadata = Action("RemoveSchemaVersionMetadata")
257259
RenameTable = Action("RenameTable")

awacs/identitystore.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
2424
)
2525

2626

27+
AddRegion = Action("AddRegion")
2728
CreateGroup = Action("CreateGroup")
2829
CreateGroupMembership = Action("CreateGroupMembership")
2930
CreateIdentityStore = Action("CreateIdentityStore")
@@ -34,6 +35,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
3435
DeleteUser = Action("DeleteUser")
3536
DescribeGroup = Action("DescribeGroup")
3637
DescribeGroupMembership = Action("DescribeGroupMembership")
38+
DescribeRegion = Action("DescribeRegion")
3739
DescribeUser = Action("DescribeUser")
3840
GetGroupId = Action("GetGroupId")
3941
GetGroupMembershipId = Action("GetGroupMembershipId")
@@ -42,7 +44,9 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
4244
ListGroupMemberships = Action("ListGroupMemberships")
4345
ListGroupMembershipsForMember = Action("ListGroupMembershipsForMember")
4446
ListGroups = Action("ListGroups")
47+
ListRegions = Action("ListRegions")
4548
ListUsers = Action("ListUsers")
49+
RemoveRegion = Action("RemoveRegion")
4650
ReserveUser = Action("ReserveUser")
4751
UpdateGroup = Action("UpdateGroup")
4852
UpdateIdentityStore = Action("UpdateIdentityStore")

awacs/securityagent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
3131
BatchGetAgentSpaces = Action("BatchGetAgentSpaces")
3232
BatchGetArtifactMetadata = Action("BatchGetArtifactMetadata")
3333
BatchGetFindings = Action("BatchGetFindings")
34+
BatchGetPentestJobContentMetadata = Action("BatchGetPentestJobContentMetadata")
3435
BatchGetPentestJobTasks = Action("BatchGetPentestJobTasks")
3536
BatchGetPentestJobs = Action("BatchGetPentestJobs")
3637
BatchGetPentests = Action("BatchGetPentests")

awacs/sso.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
2525

2626

2727
AddMemberToGroup = Action("AddMemberToGroup")
28+
AddRegion = Action("AddRegion")
2829
AssociateDirectory = Action("AssociateDirectory")
2930
AssociateProfile = Action("AssociateProfile")
3031
AttachCustomerManagedPolicyReferenceToPermissionSet = Action(
@@ -91,6 +92,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
9192
"DescribePermissionSetProvisioningStatus"
9293
)
9394
DescribePermissionsPolicies = Action("DescribePermissionsPolicies")
95+
DescribeRegion = Action("DescribeRegion")
9496
DescribeRegisteredRegions = Action("DescribeRegisteredRegions")
9597
DescribeTrustedTokenIssuer = Action("DescribeTrustedTokenIssuer")
9698
DescribeTrusts = Action("DescribeTrusts")
@@ -162,6 +164,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
162164
)
163165
ListProfileAssociations = Action("ListProfileAssociations")
164166
ListProfiles = Action("ListProfiles")
167+
ListRegions = Action("ListRegions")
165168
ListTagsForResource = Action("ListTagsForResource")
166169
ListTrustedTokenIssuers = Action("ListTrustedTokenIssuers")
167170
ProvisionPermissionSet = Action("ProvisionPermissionSet")
@@ -175,6 +178,7 @@ def __init__(self, resource: str = "", region: str = "", account: str = "") -> N
175178
PutPermissionsBoundaryToPermissionSet = Action("PutPermissionsBoundaryToPermissionSet")
176179
PutPermissionsPolicy = Action("PutPermissionsPolicy")
177180
RemoveMemberFromGroup = Action("RemoveMemberFromGroup")
181+
RemoveRegion = Action("RemoveRegion")
178182
SearchGroups = Action("SearchGroups")
179183
SearchUsers = Action("SearchUsers")
180184
SetTemporaryPassword = Action("SetTemporaryPassword")

0 commit comments

Comments
 (0)