@@ -29,6 +29,11 @@ import {
2929 CreateBrowserCommandInput ,
3030 CreateBrowserCommandOutput ,
3131} from "./commands/CreateBrowserCommand" ;
32+ import {
33+ CreateBrowserProfileCommand ,
34+ CreateBrowserProfileCommandInput ,
35+ CreateBrowserProfileCommandOutput ,
36+ } from "./commands/CreateBrowserProfileCommand" ;
3237import {
3338 CreateCodeInterpreterCommand ,
3439 CreateCodeInterpreterCommandInput ,
@@ -99,6 +104,11 @@ import {
99104 DeleteBrowserCommandInput ,
100105 DeleteBrowserCommandOutput ,
101106} from "./commands/DeleteBrowserCommand" ;
107+ import {
108+ DeleteBrowserProfileCommand ,
109+ DeleteBrowserProfileCommandInput ,
110+ DeleteBrowserProfileCommandOutput ,
111+ } from "./commands/DeleteBrowserProfileCommand" ;
102112import {
103113 DeleteCodeInterpreterCommand ,
104114 DeleteCodeInterpreterCommandInput ,
@@ -170,6 +180,11 @@ import {
170180 GetApiKeyCredentialProviderCommandOutput ,
171181} from "./commands/GetApiKeyCredentialProviderCommand" ;
172182import { GetBrowserCommand , GetBrowserCommandInput , GetBrowserCommandOutput } from "./commands/GetBrowserCommand" ;
183+ import {
184+ GetBrowserProfileCommand ,
185+ GetBrowserProfileCommandInput ,
186+ GetBrowserProfileCommandOutput ,
187+ } from "./commands/GetBrowserProfileCommand" ;
173188import {
174189 GetCodeInterpreterCommand ,
175190 GetCodeInterpreterCommandInput ,
@@ -243,6 +258,11 @@ import {
243258 ListApiKeyCredentialProvidersCommandInput ,
244259 ListApiKeyCredentialProvidersCommandOutput ,
245260} from "./commands/ListApiKeyCredentialProvidersCommand" ;
261+ import {
262+ ListBrowserProfilesCommand ,
263+ ListBrowserProfilesCommandInput ,
264+ ListBrowserProfilesCommandOutput ,
265+ } from "./commands/ListBrowserProfilesCommand" ;
246266import {
247267 ListBrowsersCommand ,
248268 ListBrowsersCommandInput ,
@@ -403,6 +423,7 @@ import { paginateListAgentRuntimeEndpoints } from "./pagination/ListAgentRuntime
403423import { paginateListAgentRuntimes } from "./pagination/ListAgentRuntimesPaginator" ;
404424import { paginateListAgentRuntimeVersions } from "./pagination/ListAgentRuntimeVersionsPaginator" ;
405425import { paginateListApiKeyCredentialProviders } from "./pagination/ListApiKeyCredentialProvidersPaginator" ;
426+ import { paginateListBrowserProfiles } from "./pagination/ListBrowserProfilesPaginator" ;
406427import { paginateListBrowsers } from "./pagination/ListBrowsersPaginator" ;
407428import { paginateListCodeInterpreters } from "./pagination/ListCodeInterpretersPaginator" ;
408429import { paginateListEvaluators } from "./pagination/ListEvaluatorsPaginator" ;
@@ -428,6 +449,7 @@ const commands = {
428449 CreateAgentRuntimeEndpointCommand,
429450 CreateApiKeyCredentialProviderCommand,
430451 CreateBrowserCommand,
452+ CreateBrowserProfileCommand,
431453 CreateCodeInterpreterCommand,
432454 CreateEvaluatorCommand,
433455 CreateGatewayCommand,
@@ -442,6 +464,7 @@ const commands = {
442464 DeleteAgentRuntimeEndpointCommand,
443465 DeleteApiKeyCredentialProviderCommand,
444466 DeleteBrowserCommand,
467+ DeleteBrowserProfileCommand,
445468 DeleteCodeInterpreterCommand,
446469 DeleteEvaluatorCommand,
447470 DeleteGatewayCommand,
@@ -457,6 +480,7 @@ const commands = {
457480 GetAgentRuntimeEndpointCommand,
458481 GetApiKeyCredentialProviderCommand,
459482 GetBrowserCommand,
483+ GetBrowserProfileCommand,
460484 GetCodeInterpreterCommand,
461485 GetEvaluatorCommand,
462486 GetGatewayCommand,
@@ -474,6 +498,7 @@ const commands = {
474498 ListAgentRuntimesCommand,
475499 ListAgentRuntimeVersionsCommand,
476500 ListApiKeyCredentialProvidersCommand,
501+ ListBrowserProfilesCommand,
477502 ListBrowsersCommand,
478503 ListCodeInterpretersCommand,
479504 ListEvaluatorsCommand,
@@ -512,6 +537,7 @@ const paginators = {
512537 paginateListAgentRuntimes,
513538 paginateListAgentRuntimeVersions,
514539 paginateListApiKeyCredentialProviders,
540+ paginateListBrowserProfiles,
515541 paginateListBrowsers,
516542 paginateListCodeInterpreters,
517543 paginateListEvaluators,
@@ -604,6 +630,23 @@ export interface BedrockAgentCoreControl {
604630 cb : ( err : any , data ?: CreateBrowserCommandOutput ) => void
605631 ) : void ;
606632
633+ /**
634+ * @see {@link CreateBrowserProfileCommand }
635+ */
636+ createBrowserProfile (
637+ args : CreateBrowserProfileCommandInput ,
638+ options ?: __HttpHandlerOptions
639+ ) : Promise < CreateBrowserProfileCommandOutput > ;
640+ createBrowserProfile (
641+ args : CreateBrowserProfileCommandInput ,
642+ cb : ( err : any , data ?: CreateBrowserProfileCommandOutput ) => void
643+ ) : void ;
644+ createBrowserProfile (
645+ args : CreateBrowserProfileCommandInput ,
646+ options : __HttpHandlerOptions ,
647+ cb : ( err : any , data ?: CreateBrowserProfileCommandOutput ) => void
648+ ) : void ;
649+
607650 /**
608651 * @see {@link CreateCodeInterpreterCommand }
609652 */
@@ -842,6 +885,23 @@ export interface BedrockAgentCoreControl {
842885 cb : ( err : any , data ?: DeleteBrowserCommandOutput ) => void
843886 ) : void ;
844887
888+ /**
889+ * @see {@link DeleteBrowserProfileCommand }
890+ */
891+ deleteBrowserProfile (
892+ args : DeleteBrowserProfileCommandInput ,
893+ options ?: __HttpHandlerOptions
894+ ) : Promise < DeleteBrowserProfileCommandOutput > ;
895+ deleteBrowserProfile (
896+ args : DeleteBrowserProfileCommandInput ,
897+ cb : ( err : any , data ?: DeleteBrowserProfileCommandOutput ) => void
898+ ) : void ;
899+ deleteBrowserProfile (
900+ args : DeleteBrowserProfileCommandInput ,
901+ options : __HttpHandlerOptions ,
902+ cb : ( err : any , data ?: DeleteBrowserProfileCommandOutput ) => void
903+ ) : void ;
904+
845905 /**
846906 * @see {@link DeleteCodeInterpreterCommand }
847907 */
@@ -1097,6 +1157,23 @@ export interface BedrockAgentCoreControl {
10971157 cb : ( err : any , data ?: GetBrowserCommandOutput ) => void
10981158 ) : void ;
10991159
1160+ /**
1161+ * @see {@link GetBrowserProfileCommand }
1162+ */
1163+ getBrowserProfile (
1164+ args : GetBrowserProfileCommandInput ,
1165+ options ?: __HttpHandlerOptions
1166+ ) : Promise < GetBrowserProfileCommandOutput > ;
1167+ getBrowserProfile (
1168+ args : GetBrowserProfileCommandInput ,
1169+ cb : ( err : any , data ?: GetBrowserProfileCommandOutput ) => void
1170+ ) : void ;
1171+ getBrowserProfile (
1172+ args : GetBrowserProfileCommandInput ,
1173+ options : __HttpHandlerOptions ,
1174+ cb : ( err : any , data ?: GetBrowserProfileCommandOutput ) => void
1175+ ) : void ;
1176+
11001177 /**
11011178 * @see {@link GetCodeInterpreterCommand }
11021179 */
@@ -1389,6 +1466,24 @@ export interface BedrockAgentCoreControl {
13891466 cb : ( err : any , data ?: ListApiKeyCredentialProvidersCommandOutput ) => void
13901467 ) : void ;
13911468
1469+ /**
1470+ * @see {@link ListBrowserProfilesCommand }
1471+ */
1472+ listBrowserProfiles ( ) : Promise < ListBrowserProfilesCommandOutput > ;
1473+ listBrowserProfiles (
1474+ args : ListBrowserProfilesCommandInput ,
1475+ options ?: __HttpHandlerOptions
1476+ ) : Promise < ListBrowserProfilesCommandOutput > ;
1477+ listBrowserProfiles (
1478+ args : ListBrowserProfilesCommandInput ,
1479+ cb : ( err : any , data ?: ListBrowserProfilesCommandOutput ) => void
1480+ ) : void ;
1481+ listBrowserProfiles (
1482+ args : ListBrowserProfilesCommandInput ,
1483+ options : __HttpHandlerOptions ,
1484+ cb : ( err : any , data ?: ListBrowserProfilesCommandOutput ) => void
1485+ ) : void ;
1486+
13921487 /**
13931488 * @see {@link ListBrowsersCommand }
13941489 */
@@ -1986,6 +2081,17 @@ export interface BedrockAgentCoreControl {
19862081 paginationConfig ?: Omit < PaginationConfiguration , "client" >
19872082 ) : Paginator < ListApiKeyCredentialProvidersCommandOutput > ;
19882083
2084+ /**
2085+ * @see {@link ListBrowserProfilesCommand }
2086+ * @param args - command input.
2087+ * @param paginationConfig - optional pagination config.
2088+ * @returns AsyncIterable of {@link ListBrowserProfilesCommandOutput}.
2089+ */
2090+ paginateListBrowserProfiles (
2091+ args ?: ListBrowserProfilesCommandInput ,
2092+ paginationConfig ?: Omit < PaginationConfiguration , "client" >
2093+ ) : Paginator < ListBrowserProfilesCommandOutput > ;
2094+
19892095 /**
19902096 * @see {@link ListBrowsersCommand }
19912097 * @param args - command input.
0 commit comments