@aws-sdk/client-bedrock-agentcore-control 3.982.0 → 3.984.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +176 -15
  3. package/dist-es/BedrockAgentCoreControl.js +10 -0
  4. package/dist-es/commands/CreateBrowserProfileCommand.js +16 -0
  5. package/dist-es/commands/DeleteBrowserProfileCommand.js +16 -0
  6. package/dist-es/commands/GetBrowserProfileCommand.js +16 -0
  7. package/dist-es/commands/ListBrowserProfilesCommand.js +16 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/enums.js +6 -0
  10. package/dist-es/pagination/ListBrowserProfilesPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/schemas/schemas_0.js +96 -15
  13. package/dist-types/BedrockAgentCoreControl.d.ts +36 -0
  14. package/dist-types/BedrockAgentCoreControlClient.d.ts +6 -2
  15. package/dist-types/commands/CreateBrowserProfileCommand.d.ts +100 -0
  16. package/dist-types/commands/CreatePolicyCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteBrowserProfileCommand.d.ts +97 -0
  18. package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
  19. package/dist-types/commands/GetBrowserProfileCommand.d.ts +98 -0
  20. package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
  21. package/dist-types/commands/ListBrowserProfilesCommand.d.ts +101 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  23. package/dist-types/commands/StartPolicyGenerationCommand.d.ts +1 -1
  24. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  25. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  26. package/dist-types/commands/index.d.ts +4 -0
  27. package/dist-types/models/enums.d.ts +14 -0
  28. package/dist-types/models/models_0.d.ts +252 -354
  29. package/dist-types/models/models_1.d.ts +350 -2
  30. package/dist-types/pagination/ListBrowserProfilesPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/schemas/schemas_0.d.ts +13 -0
  33. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +76 -0
  34. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +24 -0
  35. package/dist-types/ts3.4/commands/CreateBrowserProfileCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/DeleteBrowserProfileCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/GetBrowserProfileCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListBrowserProfilesCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  44. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +59 -88
  46. package/dist-types/ts3.4/models/models_1.d.ts +88 -0
  47. package/dist-types/ts3.4/pagination/ListBrowserProfilesPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
  50. package/package.json +2 -2
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetBrowserProfile$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetBrowserProfileCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "GetBrowserProfile", {})
13
+ .n("BedrockAgentCoreControlClient", "GetBrowserProfileCommand")
14
+ .sc(GetBrowserProfile$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListBrowserProfiles$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListBrowserProfilesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "ListBrowserProfiles", {})
13
+ .n("BedrockAgentCoreControlClient", "ListBrowserProfilesCommand")
14
+ .sc(ListBrowserProfiles$)
15
+ .build() {
16
+ }
@@ -2,6 +2,7 @@ export * from "./CreateAgentRuntimeCommand";
2
2
  export * from "./CreateAgentRuntimeEndpointCommand";
3
3
  export * from "./CreateApiKeyCredentialProviderCommand";
4
4
  export * from "./CreateBrowserCommand";
5
+ export * from "./CreateBrowserProfileCommand";
5
6
  export * from "./CreateCodeInterpreterCommand";
6
7
  export * from "./CreateEvaluatorCommand";
7
8
  export * from "./CreateGatewayCommand";
@@ -16,6 +17,7 @@ export * from "./DeleteAgentRuntimeCommand";
16
17
  export * from "./DeleteAgentRuntimeEndpointCommand";
17
18
  export * from "./DeleteApiKeyCredentialProviderCommand";
18
19
  export * from "./DeleteBrowserCommand";
20
+ export * from "./DeleteBrowserProfileCommand";
19
21
  export * from "./DeleteCodeInterpreterCommand";
20
22
  export * from "./DeleteEvaluatorCommand";
21
23
  export * from "./DeleteGatewayCommand";
@@ -31,6 +33,7 @@ export * from "./GetAgentRuntimeCommand";
31
33
  export * from "./GetAgentRuntimeEndpointCommand";
32
34
  export * from "./GetApiKeyCredentialProviderCommand";
33
35
  export * from "./GetBrowserCommand";
36
+ export * from "./GetBrowserProfileCommand";
34
37
  export * from "./GetCodeInterpreterCommand";
35
38
  export * from "./GetEvaluatorCommand";
36
39
  export * from "./GetGatewayCommand";
@@ -48,6 +51,7 @@ export * from "./ListAgentRuntimeEndpointsCommand";
48
51
  export * from "./ListAgentRuntimeVersionsCommand";
49
52
  export * from "./ListAgentRuntimesCommand";
50
53
  export * from "./ListApiKeyCredentialProvidersCommand";
54
+ export * from "./ListBrowserProfilesCommand";
51
55
  export * from "./ListBrowsersCommand";
52
56
  export * from "./ListCodeInterpretersCommand";
53
57
  export * from "./ListEvaluatorsCommand";
@@ -45,6 +45,12 @@ export const AgentRuntimeStatus = {
45
45
  UPDATE_FAILED: "UPDATE_FAILED",
46
46
  UPDATING: "UPDATING",
47
47
  };
48
+ export const BrowserProfileStatus = {
49
+ DELETED: "DELETED",
50
+ DELETING: "DELETING",
51
+ READY: "READY",
52
+ SAVING: "SAVING",
53
+ };
48
54
  export const BrowserNetworkMode = {
49
55
  PUBLIC: "PUBLIC",
50
56
  VPC: "VPC",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
+ import { ListBrowserProfilesCommand, } from "../commands/ListBrowserProfilesCommand";
4
+ export const paginateListBrowserProfiles = createPaginator(BedrockAgentCoreControlClient, ListBrowserProfilesCommand, "nextToken", "nextToken", "maxResults");
@@ -3,6 +3,7 @@ export * from "./ListAgentRuntimeEndpointsPaginator";
3
3
  export * from "./ListAgentRuntimesPaginator";
4
4
  export * from "./ListAgentRuntimeVersionsPaginator";
5
5
  export * from "./ListApiKeyCredentialProvidersPaginator";
6
+ export * from "./ListBrowserProfilesPaginator";
6
7
  export * from "./ListBrowsersPaginator";
7
8
  export * from "./ListCodeInterpretersPaginator";
8
9
  export * from "./ListEvaluatorsPaginator";
@@ -20,6 +20,8 @@ const _ARg = "AgentRuntimes";
20
20
  const _ASC = "ApiSchemaConfiguration";
21
21
  const _BEMC = "BedrockEvaluatorModelConfig";
22
22
  const _BNC = "BrowserNetworkConfiguration";
23
+ const _BPS = "BrowserProfileSummary";
24
+ const _BPSr = "BrowserProfileSummaries";
23
25
  const _BS = "BrowserSummary";
24
26
  const _BSCI = "BrowserSigningConfigInput";
25
27
  const _BSCO = "BrowserSigningConfigOutput";
@@ -35,6 +37,9 @@ const _CARERr = "CreateAgentRuntimeEndpointResponse";
35
37
  const _CARR = "CreateAgentRuntimeRequest";
36
38
  const _CARRr = "CreateAgentRuntimeResponse";
37
39
  const _CB = "CreateBrowser";
40
+ const _CBP = "CreateBrowserProfile";
41
+ const _CBPR = "CreateBrowserProfileRequest";
42
+ const _CBPRr = "CreateBrowserProfileResponse";
38
43
  const _CBR = "CreateBrowserRequest";
39
44
  const _CBRr = "CreateBrowserResponse";
40
45
  const _CC = "CodeConfiguration";
@@ -110,6 +115,9 @@ const _DARERe = "DeleteAgentRuntimeEndpointResponse";
110
115
  const _DARR = "DeleteAgentRuntimeRequest";
111
116
  const _DARRe = "DeleteAgentRuntimeResponse";
112
117
  const _DB = "DeleteBrowser";
118
+ const _DBP = "DeleteBrowserProfile";
119
+ const _DBPR = "DeleteBrowserProfileRequest";
120
+ const _DBPRe = "DeleteBrowserProfileResponse";
113
121
  const _DBR = "DeleteBrowserRequest";
114
122
  const _DBRe = "DeleteBrowserResponse";
115
123
  const _DCI = "DeleteCodeInterpreter";
@@ -188,6 +196,9 @@ const _GARERe = "GetAgentRuntimeEndpointResponse";
188
196
  const _GARR = "GetAgentRuntimeRequest";
189
197
  const _GARRe = "GetAgentRuntimeResponse";
190
198
  const _GB = "GetBrowser";
199
+ const _GBP = "GetBrowserProfile";
200
+ const _GBPR = "GetBrowserProfileRequest";
201
+ const _GBPRe = "GetBrowserProfileResponse";
191
202
  const _GBR = "GetBrowserRequest";
192
203
  const _GBRe = "GetBrowserResponse";
193
204
  const _GCI = "GetCodeInterpreter";
@@ -267,6 +278,9 @@ const _LARV = "ListAgentRuntimeVersions";
267
278
  const _LARVR = "ListAgentRuntimeVersionsRequest";
268
279
  const _LARVRi = "ListAgentRuntimeVersionsResponse";
269
280
  const _LB = "ListBrowsers";
281
+ const _LBP = "ListBrowserProfiles";
282
+ const _LBPR = "ListBrowserProfilesRequest";
283
+ const _LBPRi = "ListBrowserProfilesResponse";
270
284
  const _LBR = "ListBrowsersRequest";
271
285
  const _LBRi = "ListBrowsersResponse";
272
286
  const _LC = "LifecycleConfiguration";
@@ -641,7 +655,10 @@ const _lGN = "logGroupNames";
641
655
  const _lGNo = "logGroupName";
642
656
  const _lMD = "lastModifiedDate";
643
657
  const _lOPC = "linkedinOauth2ProviderConfig";
644
- const _lSA = "lastSynchronizedAt";
658
+ const _lSA = "lastSavedAt";
659
+ const _lSAa = "lastSynchronizedAt";
660
+ const _lSBI = "lastSavedBrowserId";
661
+ const _lSBSI = "lastSavedBrowserSessionId";
645
662
  const _lUA = "lastUpdatedAt";
646
663
  const _lUT = "lastUpdatedTime";
647
664
  const _lV = "liveVersion";
@@ -691,7 +708,8 @@ const _oPCI = "oauth2ProviderConfigInput";
691
708
  const _oPCO = "oauth2ProviderConfigOutput";
692
709
  const _oS = "outputSchema";
693
710
  const _p = "path";
694
- const _pA = "policyArn";
711
+ const _pA = "profileArn";
712
+ const _pAo = "policyArn";
695
713
  const _pAr = "providerArn";
696
714
  const _pC = "protocolConfiguration";
697
715
  const _pDBN = "payloadDeliveryBucketName";
@@ -704,8 +722,10 @@ const _pGA = "policyGenerationArn";
704
722
  const _pGAI = "policyGenerationAssetId";
705
723
  const _pGAo = "policyGenerationAssets";
706
724
  const _pGI = "policyGenerationId";
707
- const _pI = "policyId";
725
+ const _pI = "profileId";
726
+ const _pIo = "policyId";
708
727
  const _pRH = "passRequestHeaders";
728
+ const _pS = "profileSummaries";
709
729
  const _pT = "protocolType";
710
730
  const _po = "policy";
711
731
  const _pol = "policies";
@@ -886,6 +906,11 @@ export var BrowserNetworkConfiguration$ = [3, n0, _BNC,
886
906
  [_nM, _vC],
887
907
  [0, () => VpcConfig$], 1
888
908
  ];
909
+ export var BrowserProfileSummary$ = [3, n0, _BPS,
910
+ 0,
911
+ [_pI, _pA, _n, _s, _cA, _lUA, _d, _lSA, _lSBSI, _lSBI],
912
+ [0, 0, 0, 0, 5, 5, [() => Description, 0], 5, 0, 0], 6
913
+ ];
889
914
  export var BrowserSigningConfigInput$ = [3, n0, _BSCI,
890
915
  0,
891
916
  [_en],
@@ -983,6 +1008,16 @@ export var CreateApiKeyCredentialProviderResponse$ = [3, n0, _CAKCPRr,
983
1008
  [_aKSA, _n, _cPA],
984
1009
  [() => Secret$, 0, 0], 3
985
1010
  ];
1011
+ export var CreateBrowserProfileRequest$ = [3, n0, _CBPR,
1012
+ 0,
1013
+ [_n, _d, _cTl, _t],
1014
+ [0, [() => Description, 0], [0, 4], 128 | 0], 1
1015
+ ];
1016
+ export var CreateBrowserProfileResponse$ = [3, n0, _CBPRr,
1017
+ 0,
1018
+ [_pI, _pA, _cA, _s],
1019
+ [0, 0, 5, 0], 4
1020
+ ];
986
1021
  export var CreateBrowserRequest$ = [3, n0, _CBR,
987
1022
  0,
988
1023
  [_n, _nC, _d, _eRA, _re, _bS, _cTl, _t],
@@ -1030,7 +1065,7 @@ export var CreateGatewayTargetRequest$ = [3, n0, _CGTR,
1030
1065
  ];
1031
1066
  export var CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
1032
1067
  0,
1033
- [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSA, _mC],
1068
+ [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSAa, _mC],
1034
1069
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$], 8
1035
1070
  ];
1036
1071
  export var CreateMemoryInput$ = [3, n0, _CMI,
@@ -1080,7 +1115,7 @@ export var CreatePolicyRequest$ = [3, n0, _CPR,
1080
1115
  ];
1081
1116
  export var CreatePolicyResponse$ = [3, n0, _CPRr,
1082
1117
  0,
1083
- [_pI, _n, _pEI, _de, _cA, _uA, _pA, _s, _sR, _d],
1118
+ [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _s, _sR, _d],
1084
1119
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1085
1120
  ];
1086
1121
  export var CreateWorkloadIdentityRequest$ = [3, n0, _CWIR,
@@ -1159,6 +1194,16 @@ export var DeleteApiKeyCredentialProviderResponse$ = [3, n0, _DAKCPRe,
1159
1194
  [],
1160
1195
  []
1161
1196
  ];
1197
+ export var DeleteBrowserProfileRequest$ = [3, n0, _DBPR,
1198
+ 0,
1199
+ [_pI, _cTl],
1200
+ [[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
1201
+ ];
1202
+ export var DeleteBrowserProfileResponse$ = [3, n0, _DBPRe,
1203
+ 0,
1204
+ [_pI, _pA, _s, _lUA, _lSA],
1205
+ [0, 0, 0, 5, 5], 4
1206
+ ];
1162
1207
  export var DeleteBrowserRequest$ = [3, n0, _DBR,
1163
1208
  0,
1164
1209
  [_bI, _cTl],
@@ -1256,12 +1301,12 @@ export var DeletePolicyEngineResponse$ = [3, n0, _DPERe,
1256
1301
  ];
1257
1302
  export var DeletePolicyRequest$ = [3, n0, _DPR,
1258
1303
  0,
1259
- [_pEI, _pI],
1304
+ [_pEI, _pIo],
1260
1305
  [[0, 1], [0, 1]], 2
1261
1306
  ];
1262
1307
  export var DeletePolicyResponse$ = [3, n0, _DPRe,
1263
1308
  0,
1264
- [_pI, _n, _pEI, _de, _cA, _uA, _pA, _s, _sR, _d],
1309
+ [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _s, _sR, _d],
1265
1310
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1266
1311
  ];
1267
1312
  export var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
@@ -1377,7 +1422,7 @@ export var GatewaySummary$ = [3, n0, _GS,
1377
1422
  ];
1378
1423
  export var GatewayTarget$ = [3, n0, _GT,
1379
1424
  0,
1380
- [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSA, _mC],
1425
+ [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSAa, _mC],
1381
1426
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$], 8
1382
1427
  ];
1383
1428
  export var GetAgentRuntimeEndpointRequest$ = [3, n0, _GARER,
@@ -1410,6 +1455,16 @@ export var GetApiKeyCredentialProviderResponse$ = [3, n0, _GAKCPRe,
1410
1455
  [_aKSA, _n, _cPA, _cT, _lUT],
1411
1456
  [() => Secret$, 0, 0, 4, 4], 5
1412
1457
  ];
1458
+ export var GetBrowserProfileRequest$ = [3, n0, _GBPR,
1459
+ 0,
1460
+ [_pI],
1461
+ [[0, 1]], 1
1462
+ ];
1463
+ export var GetBrowserProfileResponse$ = [3, n0, _GBPRe,
1464
+ 0,
1465
+ [_pI, _pA, _n, _s, _cA, _lUA, _d, _lSA, _lSBSI, _lSBI],
1466
+ [0, 0, 0, 0, 5, 5, [() => Description, 0], 5, 0, 0], 6
1467
+ ];
1413
1468
  export var GetBrowserRequest$ = [3, n0, _GBR,
1414
1469
  0,
1415
1470
  [_bI],
@@ -1457,7 +1512,7 @@ export var GetGatewayTargetRequest$ = [3, n0, _GGTR,
1457
1512
  ];
1458
1513
  export var GetGatewayTargetResponse$ = [3, n0, _GGTRe,
1459
1514
  0,
1460
- [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSA, _mC],
1515
+ [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSAa, _mC],
1461
1516
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$], 8
1462
1517
  ];
1463
1518
  export var GetMemoryInput$ = [3, n0, _GMI,
@@ -1512,12 +1567,12 @@ export var GetPolicyGenerationResponse$ = [3, n0, _GPGRe,
1512
1567
  ];
1513
1568
  export var GetPolicyRequest$ = [3, n0, _GPR,
1514
1569
  0,
1515
- [_pEI, _pI],
1570
+ [_pEI, _pIo],
1516
1571
  [[0, 1], [0, 1]], 2
1517
1572
  ];
1518
1573
  export var GetPolicyResponse$ = [3, n0, _GPRe,
1519
1574
  0,
1520
- [_pI, _n, _pEI, _de, _cA, _uA, _pA, _s, _sR, _d],
1575
+ [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _s, _sR, _d],
1521
1576
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1522
1577
  ];
1523
1578
  export var GetResourcePolicyRequest$ = [3, n0, _GRPR,
@@ -1671,6 +1726,16 @@ export var ListApiKeyCredentialProvidersResponse$ = [3, n0, _LAKCPRi,
1671
1726
  [_cPre, _nT],
1672
1727
  [() => ApiKeyCredentialProviders, 0], 1
1673
1728
  ];
1729
+ export var ListBrowserProfilesRequest$ = [3, n0, _LBPR,
1730
+ 0,
1731
+ [_mR, _nT],
1732
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1733
+ ];
1734
+ export var ListBrowserProfilesResponse$ = [3, n0, _LBPRi,
1735
+ 0,
1736
+ [_pS, _nT],
1737
+ [[() => BrowserProfileSummaries, 0], 0], 1
1738
+ ];
1674
1739
  export var ListBrowsersRequest$ = [3, n0, _LBR,
1675
1740
  0,
1676
1741
  [_mR, _nT, _ty],
@@ -1933,7 +1998,7 @@ export var OutputConfig$ = [3, n0, _OC,
1933
1998
  ];
1934
1999
  export var Policy$ = [3, n0, _Po,
1935
2000
  0,
1936
- [_pI, _n, _pEI, _de, _cA, _uA, _pA, _s, _sR, _d],
2001
+ [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _s, _sR, _d],
1937
2002
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1938
2003
  ];
1939
2004
  export var PolicyEngine$ = [3, n0, _PE,
@@ -2270,7 +2335,7 @@ export var UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
2270
2335
  ];
2271
2336
  export var UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
2272
2337
  0,
2273
- [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSA, _mC],
2338
+ [_gA, _tI, _cA, _uA, _s, _n, _tC, _cPC, _sR, _d, _lSAa, _mC],
2274
2339
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$], 8
2275
2340
  ];
2276
2341
  export var UpdateMemoryInput$ = [3, n0, _UMI,
@@ -2315,12 +2380,12 @@ export var UpdatePolicyEngineResponse$ = [3, n0, _UPERp,
2315
2380
  ];
2316
2381
  export var UpdatePolicyRequest$ = [3, n0, _UPR,
2317
2382
  0,
2318
- [_pEI, _pI, _de, _d, _vM],
2383
+ [_pEI, _pIo, _de, _d, _vM],
2319
2384
  [[0, 1], [0, 1], () => PolicyDefinition$, [() => Description, 0], 0], 3
2320
2385
  ];
2321
2386
  export var UpdatePolicyResponse$ = [3, n0, _UPRp,
2322
2387
  0,
2323
- [_pI, _n, _pEI, _de, _cA, _uA, _pA, _s, _sR, _d],
2388
+ [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _s, _sR, _d],
2324
2389
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
2325
2390
  ];
2326
2391
  export var UpdateWorkloadIdentityRequest$ = [3, n0, _UWIR,
@@ -2414,6 +2479,10 @@ var ApiGatewayToolOverrides = [1, n0, _AGTOp,
2414
2479
  var ApiKeyCredentialProviders = [1, n0, _AKCP,
2415
2480
  0, () => ApiKeyCredentialProviderItem$
2416
2481
  ];
2482
+ var BrowserProfileSummaries = [1, n0, _BPSr,
2483
+ 0, [() => BrowserProfileSummary$,
2484
+ 0]
2485
+ ];
2417
2486
  var BrowserSummaries = [1, n0, _BSr,
2418
2487
  0, [() => BrowserSummary$,
2419
2488
  0]
@@ -2763,6 +2832,9 @@ export var CreateApiKeyCredentialProvider$ = [9, n0, _CAKCP,
2763
2832
  export var CreateBrowser$ = [9, n0, _CB,
2764
2833
  { [_h]: ["PUT", "/browsers", 202] }, () => CreateBrowserRequest$, () => CreateBrowserResponse$
2765
2834
  ];
2835
+ export var CreateBrowserProfile$ = [9, n0, _CBP,
2836
+ { [_h]: ["PUT", "/browser-profiles", 200] }, () => CreateBrowserProfileRequest$, () => CreateBrowserProfileResponse$
2837
+ ];
2766
2838
  export var CreateCodeInterpreter$ = [9, n0, _CCIr,
2767
2839
  { [_h]: ["PUT", "/code-interpreters", 202] }, () => CreateCodeInterpreterRequest$, () => CreateCodeInterpreterResponse$
2768
2840
  ];
@@ -2805,6 +2877,9 @@ export var DeleteApiKeyCredentialProvider$ = [9, n0, _DAKCP,
2805
2877
  export var DeleteBrowser$ = [9, n0, _DB,
2806
2878
  { [_h]: ["DELETE", "/browsers/{browserId}", 202] }, () => DeleteBrowserRequest$, () => DeleteBrowserResponse$
2807
2879
  ];
2880
+ export var DeleteBrowserProfile$ = [9, n0, _DBP,
2881
+ { [_h]: ["DELETE", "/browser-profiles/{profileId}", 200] }, () => DeleteBrowserProfileRequest$, () => DeleteBrowserProfileResponse$
2882
+ ];
2808
2883
  export var DeleteCodeInterpreter$ = [9, n0, _DCI,
2809
2884
  { [_h]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] }, () => DeleteCodeInterpreterRequest$, () => DeleteCodeInterpreterResponse$
2810
2885
  ];
@@ -2850,6 +2925,9 @@ export var GetApiKeyCredentialProvider$ = [9, n0, _GAKCPe,
2850
2925
  export var GetBrowser$ = [9, n0, _GB,
2851
2926
  { [_h]: ["GET", "/browsers/{browserId}", 200] }, () => GetBrowserRequest$, () => GetBrowserResponse$
2852
2927
  ];
2928
+ export var GetBrowserProfile$ = [9, n0, _GBP,
2929
+ { [_h]: ["GET", "/browser-profiles/{profileId}", 200] }, () => GetBrowserProfileRequest$, () => GetBrowserProfileResponse$
2930
+ ];
2853
2931
  export var GetCodeInterpreter$ = [9, n0, _GCI,
2854
2932
  { [_h]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] }, () => GetCodeInterpreterRequest$, () => GetCodeInterpreterResponse$
2855
2933
  ];
@@ -2901,6 +2979,9 @@ export var ListAgentRuntimeVersions$ = [9, n0, _LARV,
2901
2979
  export var ListApiKeyCredentialProviders$ = [9, n0, _LAKCP,
2902
2980
  { [_h]: ["POST", "/identities/ListApiKeyCredentialProviders", 200] }, () => ListApiKeyCredentialProvidersRequest$, () => ListApiKeyCredentialProvidersResponse$
2903
2981
  ];
2982
+ export var ListBrowserProfiles$ = [9, n0, _LBP,
2983
+ { [_h]: ["POST", "/browser-profiles", 200] }, () => ListBrowserProfilesRequest$, () => ListBrowserProfilesResponse$
2984
+ ];
2904
2985
  export var ListBrowsers$ = [9, n0, _LB,
2905
2986
  { [_h]: ["POST", "/browsers", 200] }, () => ListBrowsersRequest$, () => ListBrowsersResponse$
2906
2987
  ];
@@ -5,6 +5,7 @@ import { CreateAgentRuntimeCommandInput, CreateAgentRuntimeCommandOutput } from
5
5
  import { CreateAgentRuntimeEndpointCommandInput, CreateAgentRuntimeEndpointCommandOutput } from "./commands/CreateAgentRuntimeEndpointCommand";
6
6
  import { CreateApiKeyCredentialProviderCommandInput, CreateApiKeyCredentialProviderCommandOutput } from "./commands/CreateApiKeyCredentialProviderCommand";
7
7
  import { CreateBrowserCommandInput, CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
8
+ import { CreateBrowserProfileCommandInput, CreateBrowserProfileCommandOutput } from "./commands/CreateBrowserProfileCommand";
8
9
  import { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
9
10
  import { CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
10
11
  import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
@@ -19,6 +20,7 @@ import { DeleteAgentRuntimeCommandInput, DeleteAgentRuntimeCommandOutput } from
19
20
  import { DeleteAgentRuntimeEndpointCommandInput, DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
20
21
  import { DeleteApiKeyCredentialProviderCommandInput, DeleteApiKeyCredentialProviderCommandOutput } from "./commands/DeleteApiKeyCredentialProviderCommand";
21
22
  import { DeleteBrowserCommandInput, DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
23
+ import { DeleteBrowserProfileCommandInput, DeleteBrowserProfileCommandOutput } from "./commands/DeleteBrowserProfileCommand";
22
24
  import { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
23
25
  import { DeleteEvaluatorCommandInput, DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
24
26
  import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
@@ -34,6 +36,7 @@ import { GetAgentRuntimeCommandInput, GetAgentRuntimeCommandOutput } from "./com
34
36
  import { GetAgentRuntimeEndpointCommandInput, GetAgentRuntimeEndpointCommandOutput } from "./commands/GetAgentRuntimeEndpointCommand";
35
37
  import { GetApiKeyCredentialProviderCommandInput, GetApiKeyCredentialProviderCommandOutput } from "./commands/GetApiKeyCredentialProviderCommand";
36
38
  import { GetBrowserCommandInput, GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
39
+ import { GetBrowserProfileCommandInput, GetBrowserProfileCommandOutput } from "./commands/GetBrowserProfileCommand";
37
40
  import { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
38
41
  import { GetEvaluatorCommandInput, GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
39
42
  import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
@@ -51,6 +54,7 @@ import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommand
51
54
  import { ListAgentRuntimesCommandInput, ListAgentRuntimesCommandOutput } from "./commands/ListAgentRuntimesCommand";
52
55
  import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOutput } from "./commands/ListAgentRuntimeVersionsCommand";
53
56
  import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "./commands/ListApiKeyCredentialProvidersCommand";
57
+ import { ListBrowserProfilesCommandInput, ListBrowserProfilesCommandOutput } from "./commands/ListBrowserProfilesCommand";
54
58
  import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
55
59
  import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
56
60
  import { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
@@ -108,6 +112,12 @@ export interface BedrockAgentCoreControl {
108
112
  createBrowser(args: CreateBrowserCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrowserCommandOutput>;
109
113
  createBrowser(args: CreateBrowserCommandInput, cb: (err: any, data?: CreateBrowserCommandOutput) => void): void;
110
114
  createBrowser(args: CreateBrowserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrowserCommandOutput) => void): void;
115
+ /**
116
+ * @see {@link CreateBrowserProfileCommand}
117
+ */
118
+ createBrowserProfile(args: CreateBrowserProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrowserProfileCommandOutput>;
119
+ createBrowserProfile(args: CreateBrowserProfileCommandInput, cb: (err: any, data?: CreateBrowserProfileCommandOutput) => void): void;
120
+ createBrowserProfile(args: CreateBrowserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrowserProfileCommandOutput) => void): void;
111
121
  /**
112
122
  * @see {@link CreateCodeInterpreterCommand}
113
123
  */
@@ -192,6 +202,12 @@ export interface BedrockAgentCoreControl {
192
202
  deleteBrowser(args: DeleteBrowserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrowserCommandOutput>;
193
203
  deleteBrowser(args: DeleteBrowserCommandInput, cb: (err: any, data?: DeleteBrowserCommandOutput) => void): void;
194
204
  deleteBrowser(args: DeleteBrowserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrowserCommandOutput) => void): void;
205
+ /**
206
+ * @see {@link DeleteBrowserProfileCommand}
207
+ */
208
+ deleteBrowserProfile(args: DeleteBrowserProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrowserProfileCommandOutput>;
209
+ deleteBrowserProfile(args: DeleteBrowserProfileCommandInput, cb: (err: any, data?: DeleteBrowserProfileCommandOutput) => void): void;
210
+ deleteBrowserProfile(args: DeleteBrowserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrowserProfileCommandOutput) => void): void;
195
211
  /**
196
212
  * @see {@link DeleteCodeInterpreterCommand}
197
213
  */
@@ -282,6 +298,12 @@ export interface BedrockAgentCoreControl {
282
298
  getBrowser(args: GetBrowserCommandInput, options?: __HttpHandlerOptions): Promise<GetBrowserCommandOutput>;
283
299
  getBrowser(args: GetBrowserCommandInput, cb: (err: any, data?: GetBrowserCommandOutput) => void): void;
284
300
  getBrowser(args: GetBrowserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBrowserCommandOutput) => void): void;
301
+ /**
302
+ * @see {@link GetBrowserProfileCommand}
303
+ */
304
+ getBrowserProfile(args: GetBrowserProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetBrowserProfileCommandOutput>;
305
+ getBrowserProfile(args: GetBrowserProfileCommandInput, cb: (err: any, data?: GetBrowserProfileCommandOutput) => void): void;
306
+ getBrowserProfile(args: GetBrowserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBrowserProfileCommandOutput) => void): void;
285
307
  /**
286
308
  * @see {@link GetCodeInterpreterCommand}
287
309
  */
@@ -387,6 +409,13 @@ export interface BedrockAgentCoreControl {
387
409
  listApiKeyCredentialProviders(args: ListApiKeyCredentialProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListApiKeyCredentialProvidersCommandOutput>;
388
410
  listApiKeyCredentialProviders(args: ListApiKeyCredentialProvidersCommandInput, cb: (err: any, data?: ListApiKeyCredentialProvidersCommandOutput) => void): void;
389
411
  listApiKeyCredentialProviders(args: ListApiKeyCredentialProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApiKeyCredentialProvidersCommandOutput) => void): void;
412
+ /**
413
+ * @see {@link ListBrowserProfilesCommand}
414
+ */
415
+ listBrowserProfiles(): Promise<ListBrowserProfilesCommandOutput>;
416
+ listBrowserProfiles(args: ListBrowserProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListBrowserProfilesCommandOutput>;
417
+ listBrowserProfiles(args: ListBrowserProfilesCommandInput, cb: (err: any, data?: ListBrowserProfilesCommandOutput) => void): void;
418
+ listBrowserProfiles(args: ListBrowserProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBrowserProfilesCommandOutput) => void): void;
390
419
  /**
391
420
  * @see {@link ListBrowsersCommand}
392
421
  */
@@ -616,6 +645,13 @@ export interface BedrockAgentCoreControl {
616
645
  * @returns AsyncIterable of {@link ListApiKeyCredentialProvidersCommandOutput}.
617
646
  */
618
647
  paginateListApiKeyCredentialProviders(args?: ListApiKeyCredentialProvidersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApiKeyCredentialProvidersCommandOutput>;
648
+ /**
649
+ * @see {@link ListBrowserProfilesCommand}
650
+ * @param args - command input.
651
+ * @param paginationConfig - optional pagination config.
652
+ * @returns AsyncIterable of {@link ListBrowserProfilesCommandOutput}.
653
+ */
654
+ paginateListBrowserProfiles(args?: ListBrowserProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBrowserProfilesCommandOutput>;
619
655
  /**
620
656
  * @see {@link ListBrowsersCommand}
621
657
  * @param args - command input.
@@ -11,6 +11,7 @@ import { CreateAgentRuntimeCommandInput, CreateAgentRuntimeCommandOutput } from
11
11
  import { CreateAgentRuntimeEndpointCommandInput, CreateAgentRuntimeEndpointCommandOutput } from "./commands/CreateAgentRuntimeEndpointCommand";
12
12
  import { CreateApiKeyCredentialProviderCommandInput, CreateApiKeyCredentialProviderCommandOutput } from "./commands/CreateApiKeyCredentialProviderCommand";
13
13
  import { CreateBrowserCommandInput, CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
14
+ import { CreateBrowserProfileCommandInput, CreateBrowserProfileCommandOutput } from "./commands/CreateBrowserProfileCommand";
14
15
  import { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
15
16
  import { CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
16
17
  import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
@@ -25,6 +26,7 @@ import { DeleteAgentRuntimeCommandInput, DeleteAgentRuntimeCommandOutput } from
25
26
  import { DeleteAgentRuntimeEndpointCommandInput, DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
26
27
  import { DeleteApiKeyCredentialProviderCommandInput, DeleteApiKeyCredentialProviderCommandOutput } from "./commands/DeleteApiKeyCredentialProviderCommand";
27
28
  import { DeleteBrowserCommandInput, DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
29
+ import { DeleteBrowserProfileCommandInput, DeleteBrowserProfileCommandOutput } from "./commands/DeleteBrowserProfileCommand";
28
30
  import { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
29
31
  import { DeleteEvaluatorCommandInput, DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
30
32
  import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
@@ -40,6 +42,7 @@ import { GetAgentRuntimeCommandInput, GetAgentRuntimeCommandOutput } from "./com
40
42
  import { GetAgentRuntimeEndpointCommandInput, GetAgentRuntimeEndpointCommandOutput } from "./commands/GetAgentRuntimeEndpointCommand";
41
43
  import { GetApiKeyCredentialProviderCommandInput, GetApiKeyCredentialProviderCommandOutput } from "./commands/GetApiKeyCredentialProviderCommand";
42
44
  import { GetBrowserCommandInput, GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
45
+ import { GetBrowserProfileCommandInput, GetBrowserProfileCommandOutput } from "./commands/GetBrowserProfileCommand";
43
46
  import { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
44
47
  import { GetEvaluatorCommandInput, GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
45
48
  import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
@@ -57,6 +60,7 @@ import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommand
57
60
  import { ListAgentRuntimesCommandInput, ListAgentRuntimesCommandOutput } from "./commands/ListAgentRuntimesCommand";
58
61
  import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOutput } from "./commands/ListAgentRuntimeVersionsCommand";
59
62
  import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "./commands/ListApiKeyCredentialProvidersCommand";
63
+ import { ListBrowserProfilesCommandInput, ListBrowserProfilesCommandOutput } from "./commands/ListBrowserProfilesCommand";
60
64
  import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
61
65
  import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
62
66
  import { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
@@ -95,11 +99,11 @@ export { __Client };
95
99
  /**
96
100
  * @public
97
101
  */
98
- export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateWorkloadIdentityCommandInput;
102
+ export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateWorkloadIdentityCommandInput;
99
103
  /**
100
104
  * @public
101
105
  */
102
- export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateWorkloadIdentityCommandOutput;
106
+ export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateWorkloadIdentityCommandOutput;
103
107
  /**
104
108
  * @public
105
109
  */