@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
@@ -1,5 +1,353 @@
1
- import { PolicyStatus, PolicyValidationMode, SchemaType, TargetStatus } from "./enums";
2
- import { type KmsConfiguration, type MetadataConfiguration, type PolicyDefinition, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, CredentialProviderConfiguration, McpServerTargetConfiguration, S3Configuration } from "./models_0";
1
+ import { PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, SchemaType, TargetStatus } from "./enums";
2
+ import { type KmsConfiguration, type MetadataConfiguration, type PolicyDefinition, type Resource, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, CredentialProviderConfiguration, McpServerTargetConfiguration, S3Configuration } from "./models_0";
3
+ /**
4
+ * <p>Represents content input for policy generation operations. This structure encapsulates the natural language descriptions or other content formats that are used as input for AI-powered policy generation.</p>
5
+ * @public
6
+ */
7
+ export type Content = Content.RawTextMember | Content.$UnknownMember;
8
+ /**
9
+ * @public
10
+ */
11
+ export declare namespace Content {
12
+ /**
13
+ * <p>The raw text content containing natural language descriptions of desired policy behavior. This text is processed by AI to generate corresponding Cedar policy statements that match the described intent.</p>
14
+ * @public
15
+ */
16
+ interface RawTextMember {
17
+ rawText: string;
18
+ $unknown?: never;
19
+ }
20
+ /**
21
+ * @public
22
+ */
23
+ interface $UnknownMember {
24
+ rawText?: never;
25
+ $unknown: [string, any];
26
+ }
27
+ /**
28
+ * @deprecated unused in schema-serde mode.
29
+ *
30
+ */
31
+ interface Visitor<T> {
32
+ rawText: (value: string) => T;
33
+ _: (name: string, value: any) => T;
34
+ }
35
+ }
36
+ /**
37
+ * @public
38
+ */
39
+ export interface StartPolicyGenerationRequest {
40
+ /**
41
+ * <p>The identifier of the policy engine that provides the context for policy generation. This engine's schema and tool context are used to ensure generated policies are valid and applicable.</p>
42
+ * @public
43
+ */
44
+ policyEngineId: string | undefined;
45
+ /**
46
+ * <p>The resource information that provides context for policy generation. This helps the AI understand the target resources and generate appropriate access control rules.</p>
47
+ * @public
48
+ */
49
+ resource: Resource | undefined;
50
+ /**
51
+ * <p>The natural language description of the desired policy behavior. This content is processed by AI to generate corresponding Cedar policy statements that match the described intent.</p>
52
+ * @public
53
+ */
54
+ content: Content | undefined;
55
+ /**
56
+ * <p>A customer-assigned name for the policy generation request. This helps track and identify generation operations, especially when running multiple generations simultaneously.</p>
57
+ * @public
58
+ */
59
+ name: string | undefined;
60
+ /**
61
+ * <p>A unique, case-sensitive identifier to ensure the idempotency of the request. The AWS SDK automatically generates this token, so you don't need to provide it in most cases. If you retry a request with the same client token, the service returns the same response without starting a duplicate generation.</p>
62
+ * @public
63
+ */
64
+ clientToken?: string | undefined;
65
+ }
66
+ /**
67
+ * @public
68
+ */
69
+ export interface StartPolicyGenerationResponse {
70
+ /**
71
+ * <p>The identifier of the policy engine associated with the started policy generation. </p>
72
+ * @public
73
+ */
74
+ policyEngineId: string | undefined;
75
+ /**
76
+ * <p>The unique identifier assigned to the policy generation request for tracking progress. </p>
77
+ * @public
78
+ */
79
+ policyGenerationId: string | undefined;
80
+ /**
81
+ * <p>The customer-assigned name for the policy generation request.</p>
82
+ * @public
83
+ */
84
+ name: string | undefined;
85
+ /**
86
+ * <p>The ARN of the created policy generation request.</p>
87
+ * @public
88
+ */
89
+ policyGenerationArn: string | undefined;
90
+ /**
91
+ * <p>The resource information associated with the policy generation request.</p>
92
+ * @public
93
+ */
94
+ resource: Resource | undefined;
95
+ /**
96
+ * <p>The timestamp when the policy generation request was created.</p>
97
+ * @public
98
+ */
99
+ createdAt: Date | undefined;
100
+ /**
101
+ * <p>The timestamp when the policy generation was last updated.</p>
102
+ * @public
103
+ */
104
+ updatedAt: Date | undefined;
105
+ /**
106
+ * <p>The initial status of the policy generation request.</p>
107
+ * @public
108
+ */
109
+ status: PolicyGenerationStatus | undefined;
110
+ /**
111
+ * <p>Additional information about the generation status.</p>
112
+ * @public
113
+ */
114
+ statusReasons: string[] | undefined;
115
+ /**
116
+ * <p>Initial findings from the policy generation process.</p>
117
+ * @public
118
+ */
119
+ findings?: string | undefined;
120
+ }
121
+ /**
122
+ * @public
123
+ */
124
+ export interface CreatePolicyRequest {
125
+ /**
126
+ * <p>The customer-assigned immutable name for the policy. Must be unique within the account. This name is used for policy identification and cannot be changed after creation.</p>
127
+ * @public
128
+ */
129
+ name: string | undefined;
130
+ /**
131
+ * <p>The Cedar policy statement that defines the access control rules. This contains the actual policy logic written in Cedar policy language, specifying effect (permit or forbid), principals, actions, resources, and conditions for agent behavior control.</p>
132
+ * @public
133
+ */
134
+ definition: PolicyDefinition | undefined;
135
+ /**
136
+ * <p>A human-readable description of the policy's purpose and functionality (1-4,096 characters). This helps policy administrators understand the policy's intent, business rules, and operational scope. Use this field to document why the policy exists, what business requirement it addresses, and any special considerations for maintenance. Clear descriptions are essential for policy governance, auditing, and troubleshooting.</p>
137
+ * @public
138
+ */
139
+ description?: string | undefined;
140
+ /**
141
+ * <p>The validation mode for the policy creation. Determines how Cedar analyzer validation results are handled during policy creation. FAIL_ON_ANY_FINDINGS (default) runs the Cedar analyzer to validate the policy against the Cedar schema and tool context, failing creation if the analyzer detects any validation issues to ensure strict conformance. IGNORE_ALL_FINDINGS runs the Cedar analyzer but allows policy creation even if validation issues are detected, useful for testing or when the policy schema is evolving. Use FAIL_ON_ANY_FINDINGS for production policies to ensure correctness, and IGNORE_ALL_FINDINGS only when you understand and accept the analyzer findings.</p>
142
+ * @public
143
+ */
144
+ validationMode?: PolicyValidationMode | undefined;
145
+ /**
146
+ * <p>The identifier of the policy engine which contains this policy. Policy engines group related policies and provide the execution context for policy evaluation.</p>
147
+ * @public
148
+ */
149
+ policyEngineId: string | undefined;
150
+ /**
151
+ * <p>A unique, case-sensitive identifier to ensure the idempotency of the request. The AWS SDK automatically generates this token, so you don't need to provide it in most cases. If you retry a request with the same client token, the service returns the same response without creating a duplicate policy.</p>
152
+ * @public
153
+ */
154
+ clientToken?: string | undefined;
155
+ }
156
+ /**
157
+ * @public
158
+ */
159
+ export interface CreatePolicyResponse {
160
+ /**
161
+ * <p>The unique identifier for the created policy. This is a system-generated identifier consisting of the user name plus a 10-character generated suffix, used for all subsequent policy operations.</p>
162
+ * @public
163
+ */
164
+ policyId: string | undefined;
165
+ /**
166
+ * <p>The customer-assigned name of the created policy. This matches the name provided in the request and serves as the human-readable identifier for the policy.</p>
167
+ * @public
168
+ */
169
+ name: string | undefined;
170
+ /**
171
+ * <p>The identifier of the policy engine that manages this policy. This confirms the policy engine assignment and is used for policy evaluation routing.</p>
172
+ * @public
173
+ */
174
+ policyEngineId: string | undefined;
175
+ /**
176
+ * <p>The Cedar policy statement that was created. This is the validated policy definition that will be used for agent behavior control and access decisions.</p>
177
+ * @public
178
+ */
179
+ definition: PolicyDefinition | undefined;
180
+ /**
181
+ * <p>The human-readable description of the policy's purpose and functionality. This helps administrators understand and manage the policy.</p>
182
+ * @public
183
+ */
184
+ description?: string | undefined;
185
+ /**
186
+ * <p>The timestamp when the policy was created. This is automatically set by the service and used for auditing and lifecycle management.</p>
187
+ * @public
188
+ */
189
+ createdAt: Date | undefined;
190
+ /**
191
+ * <p>The timestamp when the policy was last updated. For newly created policies, this matches the createdAt timestamp.</p>
192
+ * @public
193
+ */
194
+ updatedAt: Date | undefined;
195
+ /**
196
+ * <p>The Amazon Resource Name (ARN) of the created policy. This globally unique identifier can be used for cross-service references and IAM policy statements.</p>
197
+ * @public
198
+ */
199
+ policyArn: string | undefined;
200
+ /**
201
+ * <p>The current status of the policy. A status of <code>ACTIVE</code> indicates the policy is ready for use.</p>
202
+ * @public
203
+ */
204
+ status: PolicyStatus | undefined;
205
+ /**
206
+ * <p>Additional information about the policy status. This provides details about any failures or the current state of the policy creation process.</p>
207
+ * @public
208
+ */
209
+ statusReasons: string[] | undefined;
210
+ }
211
+ /**
212
+ * @public
213
+ */
214
+ export interface DeletePolicyRequest {
215
+ /**
216
+ * <p>The identifier of the policy engine that manages the policy to be deleted. This ensures the policy is deleted from the correct policy engine context.</p>
217
+ * @public
218
+ */
219
+ policyEngineId: string | undefined;
220
+ /**
221
+ * <p>The unique identifier of the policy to be deleted. This must be a valid policy ID that exists within the specified policy engine.</p>
222
+ * @public
223
+ */
224
+ policyId: string | undefined;
225
+ }
226
+ /**
227
+ * @public
228
+ */
229
+ export interface DeletePolicyResponse {
230
+ /**
231
+ * <p>The unique identifier of the policy being deleted. This confirms which policy the deletion operation targets.</p>
232
+ * @public
233
+ */
234
+ policyId: string | undefined;
235
+ /**
236
+ * <p>The customer-assigned name of the deleted policy. This confirms which policy was successfully removed from the system and matches the name that was originally assigned during policy creation.</p>
237
+ * @public
238
+ */
239
+ name: string | undefined;
240
+ /**
241
+ * <p>The identifier of the policy engine from which the policy was deleted. This confirms the policy engine context for the deletion operation.</p>
242
+ * @public
243
+ */
244
+ policyEngineId: string | undefined;
245
+ /**
246
+ * <p>Represents the definition structure for policies within the AgentCore Policy system. This structure encapsulates different policy formats and languages that can be used to define access control rules.</p>
247
+ * @public
248
+ */
249
+ definition: PolicyDefinition | undefined;
250
+ /**
251
+ * <p>The human-readable description of the deleted policy.</p>
252
+ * @public
253
+ */
254
+ description?: string | undefined;
255
+ /**
256
+ * <p>The timestamp when the deleted policy was originally created.</p>
257
+ * @public
258
+ */
259
+ createdAt: Date | undefined;
260
+ /**
261
+ * <p>The timestamp when the deleted policy was last modified before deletion. This tracks the final state of the policy before it was removed from the system.</p>
262
+ * @public
263
+ */
264
+ updatedAt: Date | undefined;
265
+ /**
266
+ * <p>The Amazon Resource Name (ARN) of the deleted policy. This globally unique identifier confirms which policy resource was successfully removed.</p>
267
+ * @public
268
+ */
269
+ policyArn: string | undefined;
270
+ /**
271
+ * <p>The status of the policy deletion operation. This provides information about any issues that occurred during the deletion process.</p>
272
+ * @public
273
+ */
274
+ status: PolicyStatus | undefined;
275
+ /**
276
+ * <p>Additional information about the deletion status. This provides details about the deletion process or any issues that may have occurred.</p>
277
+ * @public
278
+ */
279
+ statusReasons: string[] | undefined;
280
+ }
281
+ /**
282
+ * @public
283
+ */
284
+ export interface GetPolicyRequest {
285
+ /**
286
+ * <p>The identifier of the policy engine that manages the policy to be retrieved.</p>
287
+ * @public
288
+ */
289
+ policyEngineId: string | undefined;
290
+ /**
291
+ * <p>The unique identifier of the policy to be retrieved. This must be a valid policy ID that exists within the specified policy engine.</p>
292
+ * @public
293
+ */
294
+ policyId: string | undefined;
295
+ }
296
+ /**
297
+ * @public
298
+ */
299
+ export interface GetPolicyResponse {
300
+ /**
301
+ * <p>The unique identifier of the retrieved policy. This matches the policy ID provided in the request and serves as the system identifier for the policy.</p>
302
+ * @public
303
+ */
304
+ policyId: string | undefined;
305
+ /**
306
+ * <p>The customer-assigned name of the policy. This is the human-readable identifier that was specified when the policy was created.</p>
307
+ * @public
308
+ */
309
+ name: string | undefined;
310
+ /**
311
+ * <p>The identifier of the policy engine that manages this policy. This confirms the policy engine context for the retrieved policy.</p>
312
+ * @public
313
+ */
314
+ policyEngineId: string | undefined;
315
+ /**
316
+ * <p>The Cedar policy statement that defines the access control rules. This contains the actual policy logic used for agent behavior control and access decisions.</p>
317
+ * @public
318
+ */
319
+ definition: PolicyDefinition | undefined;
320
+ /**
321
+ * <p>The human-readable description of the policy's purpose and functionality. This helps administrators understand and manage the policy.</p>
322
+ * @public
323
+ */
324
+ description?: string | undefined;
325
+ /**
326
+ * <p>The timestamp when the policy was originally created.</p>
327
+ * @public
328
+ */
329
+ createdAt: Date | undefined;
330
+ /**
331
+ * <p>The timestamp when the policy was last modified. This tracks the most recent changes to the policy configuration.</p>
332
+ * @public
333
+ */
334
+ updatedAt: Date | undefined;
335
+ /**
336
+ * <p>The Amazon Resource Name (ARN) of the policy. This globally unique identifier can be used for cross-service references and IAM policy statements.</p>
337
+ * @public
338
+ */
339
+ policyArn: string | undefined;
340
+ /**
341
+ * <p>The current status of the policy.</p>
342
+ * @public
343
+ */
344
+ status: PolicyStatus | undefined;
345
+ /**
346
+ * <p>Additional information about the policy status. This provides details about any failures or the current state of the policy.</p>
347
+ * @public
348
+ */
349
+ statusReasons: string[] | undefined;
350
+ }
3
351
  /**
4
352
  * @public
5
353
  */
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListBrowserProfilesCommandInput, ListBrowserProfilesCommandOutput } from "../commands/ListBrowserProfilesCommand";
3
+ import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListBrowserProfiles: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListBrowserProfilesCommandInput, ...rest: any[]) => Paginator<ListBrowserProfilesCommandOutput>;
@@ -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";
@@ -12,6 +12,7 @@ export declare var AtlassianOauth2ProviderConfigOutput$: StaticStructureSchema;
12
12
  export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
13
13
  export declare var BedrockEvaluatorModelConfig$: StaticStructureSchema;
14
14
  export declare var BrowserNetworkConfiguration$: StaticStructureSchema;
15
+ export declare var BrowserProfileSummary$: StaticStructureSchema;
15
16
  export declare var BrowserSigningConfigInput$: StaticStructureSchema;
16
17
  export declare var BrowserSigningConfigOutput$: StaticStructureSchema;
17
18
  export declare var BrowserSummary$: StaticStructureSchema;
@@ -31,6 +32,8 @@ export declare var CreateAgentRuntimeRequest$: StaticStructureSchema;
31
32
  export declare var CreateAgentRuntimeResponse$: StaticStructureSchema;
32
33
  export declare var CreateApiKeyCredentialProviderRequest$: StaticStructureSchema;
33
34
  export declare var CreateApiKeyCredentialProviderResponse$: StaticStructureSchema;
35
+ export declare var CreateBrowserProfileRequest$: StaticStructureSchema;
36
+ export declare var CreateBrowserProfileResponse$: StaticStructureSchema;
34
37
  export declare var CreateBrowserRequest$: StaticStructureSchema;
35
38
  export declare var CreateBrowserResponse$: StaticStructureSchema;
36
39
  export declare var CreateCodeInterpreterRequest$: StaticStructureSchema;
@@ -66,6 +69,8 @@ export declare var DeleteAgentRuntimeRequest$: StaticStructureSchema;
66
69
  export declare var DeleteAgentRuntimeResponse$: StaticStructureSchema;
67
70
  export declare var DeleteApiKeyCredentialProviderRequest$: StaticStructureSchema;
68
71
  export declare var DeleteApiKeyCredentialProviderResponse$: StaticStructureSchema;
72
+ export declare var DeleteBrowserProfileRequest$: StaticStructureSchema;
73
+ export declare var DeleteBrowserProfileResponse$: StaticStructureSchema;
69
74
  export declare var DeleteBrowserRequest$: StaticStructureSchema;
70
75
  export declare var DeleteBrowserResponse$: StaticStructureSchema;
71
76
  export declare var DeleteCodeInterpreterRequest$: StaticStructureSchema;
@@ -116,6 +121,8 @@ export declare var GetAgentRuntimeRequest$: StaticStructureSchema;
116
121
  export declare var GetAgentRuntimeResponse$: StaticStructureSchema;
117
122
  export declare var GetApiKeyCredentialProviderRequest$: StaticStructureSchema;
118
123
  export declare var GetApiKeyCredentialProviderResponse$: StaticStructureSchema;
124
+ export declare var GetBrowserProfileRequest$: StaticStructureSchema;
125
+ export declare var GetBrowserProfileResponse$: StaticStructureSchema;
119
126
  export declare var GetBrowserRequest$: StaticStructureSchema;
120
127
  export declare var GetBrowserResponse$: StaticStructureSchema;
121
128
  export declare var GetCodeInterpreterRequest$: StaticStructureSchema;
@@ -168,6 +175,8 @@ export declare var ListAgentRuntimeVersionsRequest$: StaticStructureSchema;
168
175
  export declare var ListAgentRuntimeVersionsResponse$: StaticStructureSchema;
169
176
  export declare var ListApiKeyCredentialProvidersRequest$: StaticStructureSchema;
170
177
  export declare var ListApiKeyCredentialProvidersResponse$: StaticStructureSchema;
178
+ export declare var ListBrowserProfilesRequest$: StaticStructureSchema;
179
+ export declare var ListBrowserProfilesResponse$: StaticStructureSchema;
171
180
  export declare var ListBrowsersRequest$: StaticStructureSchema;
172
181
  export declare var ListBrowsersResponse$: StaticStructureSchema;
173
182
  export declare var ListCodeInterpretersRequest$: StaticStructureSchema;
@@ -355,6 +364,7 @@ export declare var CreateAgentRuntime$: StaticOperationSchema;
355
364
  export declare var CreateAgentRuntimeEndpoint$: StaticOperationSchema;
356
365
  export declare var CreateApiKeyCredentialProvider$: StaticOperationSchema;
357
366
  export declare var CreateBrowser$: StaticOperationSchema;
367
+ export declare var CreateBrowserProfile$: StaticOperationSchema;
358
368
  export declare var CreateCodeInterpreter$: StaticOperationSchema;
359
369
  export declare var CreateEvaluator$: StaticOperationSchema;
360
370
  export declare var CreateGateway$: StaticOperationSchema;
@@ -369,6 +379,7 @@ export declare var DeleteAgentRuntime$: StaticOperationSchema;
369
379
  export declare var DeleteAgentRuntimeEndpoint$: StaticOperationSchema;
370
380
  export declare var DeleteApiKeyCredentialProvider$: StaticOperationSchema;
371
381
  export declare var DeleteBrowser$: StaticOperationSchema;
382
+ export declare var DeleteBrowserProfile$: StaticOperationSchema;
372
383
  export declare var DeleteCodeInterpreter$: StaticOperationSchema;
373
384
  export declare var DeleteEvaluator$: StaticOperationSchema;
374
385
  export declare var DeleteGateway$: StaticOperationSchema;
@@ -384,6 +395,7 @@ export declare var GetAgentRuntime$: StaticOperationSchema;
384
395
  export declare var GetAgentRuntimeEndpoint$: StaticOperationSchema;
385
396
  export declare var GetApiKeyCredentialProvider$: StaticOperationSchema;
386
397
  export declare var GetBrowser$: StaticOperationSchema;
398
+ export declare var GetBrowserProfile$: StaticOperationSchema;
387
399
  export declare var GetCodeInterpreter$: StaticOperationSchema;
388
400
  export declare var GetEvaluator$: StaticOperationSchema;
389
401
  export declare var GetGateway$: StaticOperationSchema;
@@ -401,6 +413,7 @@ export declare var ListAgentRuntimeEndpoints$: StaticOperationSchema;
401
413
  export declare var ListAgentRuntimes$: StaticOperationSchema;
402
414
  export declare var ListAgentRuntimeVersions$: StaticOperationSchema;
403
415
  export declare var ListApiKeyCredentialProviders$: StaticOperationSchema;
416
+ export declare var ListBrowserProfiles$: StaticOperationSchema;
404
417
  export declare var ListBrowsers$: StaticOperationSchema;
405
418
  export declare var ListCodeInterpreters$: StaticOperationSchema;
406
419
  export declare var ListEvaluators$: StaticOperationSchema;
@@ -22,6 +22,10 @@ import {
22
22
  CreateBrowserCommandInput,
23
23
  CreateBrowserCommandOutput,
24
24
  } from "./commands/CreateBrowserCommand";
25
+ import {
26
+ CreateBrowserProfileCommandInput,
27
+ CreateBrowserProfileCommandOutput,
28
+ } from "./commands/CreateBrowserProfileCommand";
25
29
  import {
26
30
  CreateCodeInterpreterCommandInput,
27
31
  CreateCodeInterpreterCommandOutput,
@@ -78,6 +82,10 @@ import {
78
82
  DeleteBrowserCommandInput,
79
83
  DeleteBrowserCommandOutput,
80
84
  } from "./commands/DeleteBrowserCommand";
85
+ import {
86
+ DeleteBrowserProfileCommandInput,
87
+ DeleteBrowserProfileCommandOutput,
88
+ } from "./commands/DeleteBrowserProfileCommand";
81
89
  import {
82
90
  DeleteCodeInterpreterCommandInput,
83
91
  DeleteCodeInterpreterCommandOutput,
@@ -138,6 +146,10 @@ import {
138
146
  GetBrowserCommandInput,
139
147
  GetBrowserCommandOutput,
140
148
  } from "./commands/GetBrowserCommand";
149
+ import {
150
+ GetBrowserProfileCommandInput,
151
+ GetBrowserProfileCommandOutput,
152
+ } from "./commands/GetBrowserProfileCommand";
141
153
  import {
142
154
  GetCodeInterpreterCommandInput,
143
155
  GetCodeInterpreterCommandOutput,
@@ -206,6 +218,10 @@ import {
206
218
  ListApiKeyCredentialProvidersCommandInput,
207
219
  ListApiKeyCredentialProvidersCommandOutput,
208
220
  } from "./commands/ListApiKeyCredentialProvidersCommand";
221
+ import {
222
+ ListBrowserProfilesCommandInput,
223
+ ListBrowserProfilesCommandOutput,
224
+ } from "./commands/ListBrowserProfilesCommand";
209
225
  import {
210
226
  ListBrowsersCommandInput,
211
227
  ListBrowsersCommandOutput,
@@ -387,6 +403,19 @@ export interface BedrockAgentCoreControl {
387
403
  options: __HttpHandlerOptions,
388
404
  cb: (err: any, data?: CreateBrowserCommandOutput) => void
389
405
  ): void;
406
+ createBrowserProfile(
407
+ args: CreateBrowserProfileCommandInput,
408
+ options?: __HttpHandlerOptions
409
+ ): Promise<CreateBrowserProfileCommandOutput>;
410
+ createBrowserProfile(
411
+ args: CreateBrowserProfileCommandInput,
412
+ cb: (err: any, data?: CreateBrowserProfileCommandOutput) => void
413
+ ): void;
414
+ createBrowserProfile(
415
+ args: CreateBrowserProfileCommandInput,
416
+ options: __HttpHandlerOptions,
417
+ cb: (err: any, data?: CreateBrowserProfileCommandOutput) => void
418
+ ): void;
390
419
  createCodeInterpreter(
391
420
  args: CreateCodeInterpreterCommandInput,
392
421
  options?: __HttpHandlerOptions
@@ -569,6 +598,19 @@ export interface BedrockAgentCoreControl {
569
598
  options: __HttpHandlerOptions,
570
599
  cb: (err: any, data?: DeleteBrowserCommandOutput) => void
571
600
  ): void;
601
+ deleteBrowserProfile(
602
+ args: DeleteBrowserProfileCommandInput,
603
+ options?: __HttpHandlerOptions
604
+ ): Promise<DeleteBrowserProfileCommandOutput>;
605
+ deleteBrowserProfile(
606
+ args: DeleteBrowserProfileCommandInput,
607
+ cb: (err: any, data?: DeleteBrowserProfileCommandOutput) => void
608
+ ): void;
609
+ deleteBrowserProfile(
610
+ args: DeleteBrowserProfileCommandInput,
611
+ options: __HttpHandlerOptions,
612
+ cb: (err: any, data?: DeleteBrowserProfileCommandOutput) => void
613
+ ): void;
572
614
  deleteCodeInterpreter(
573
615
  args: DeleteCodeInterpreterCommandInput,
574
616
  options?: __HttpHandlerOptions
@@ -764,6 +806,19 @@ export interface BedrockAgentCoreControl {
764
806
  options: __HttpHandlerOptions,
765
807
  cb: (err: any, data?: GetBrowserCommandOutput) => void
766
808
  ): void;
809
+ getBrowserProfile(
810
+ args: GetBrowserProfileCommandInput,
811
+ options?: __HttpHandlerOptions
812
+ ): Promise<GetBrowserProfileCommandOutput>;
813
+ getBrowserProfile(
814
+ args: GetBrowserProfileCommandInput,
815
+ cb: (err: any, data?: GetBrowserProfileCommandOutput) => void
816
+ ): void;
817
+ getBrowserProfile(
818
+ args: GetBrowserProfileCommandInput,
819
+ options: __HttpHandlerOptions,
820
+ cb: (err: any, data?: GetBrowserProfileCommandOutput) => void
821
+ ): void;
767
822
  getCodeInterpreter(
768
823
  args: GetCodeInterpreterCommandInput,
769
824
  options?: __HttpHandlerOptions
@@ -988,6 +1043,20 @@ export interface BedrockAgentCoreControl {
988
1043
  options: __HttpHandlerOptions,
989
1044
  cb: (err: any, data?: ListApiKeyCredentialProvidersCommandOutput) => void
990
1045
  ): void;
1046
+ listBrowserProfiles(): Promise<ListBrowserProfilesCommandOutput>;
1047
+ listBrowserProfiles(
1048
+ args: ListBrowserProfilesCommandInput,
1049
+ options?: __HttpHandlerOptions
1050
+ ): Promise<ListBrowserProfilesCommandOutput>;
1051
+ listBrowserProfiles(
1052
+ args: ListBrowserProfilesCommandInput,
1053
+ cb: (err: any, data?: ListBrowserProfilesCommandOutput) => void
1054
+ ): void;
1055
+ listBrowserProfiles(
1056
+ args: ListBrowserProfilesCommandInput,
1057
+ options: __HttpHandlerOptions,
1058
+ cb: (err: any, data?: ListBrowserProfilesCommandOutput) => void
1059
+ ): void;
991
1060
  listBrowsers(): Promise<ListBrowsersCommandOutput>;
992
1061
  listBrowsers(
993
1062
  args: ListBrowsersCommandInput,
@@ -1441,6 +1510,13 @@ export interface BedrockAgentCoreControl {
1441
1510
  Exclude<keyof PaginationConfiguration, "client">
1442
1511
  >
1443
1512
  ): Paginator<ListApiKeyCredentialProvidersCommandOutput>;
1513
+ paginateListBrowserProfiles(
1514
+ args?: ListBrowserProfilesCommandInput,
1515
+ paginationConfig?: Pick<
1516
+ PaginationConfiguration,
1517
+ Exclude<keyof PaginationConfiguration, "client">
1518
+ >
1519
+ ): Paginator<ListBrowserProfilesCommandOutput>;
1444
1520
  paginateListBrowsers(
1445
1521
  args?: ListBrowsersCommandInput,
1446
1522
  paginationConfig?: Pick<
@@ -61,6 +61,10 @@ import {
61
61
  CreateBrowserCommandInput,
62
62
  CreateBrowserCommandOutput,
63
63
  } from "./commands/CreateBrowserCommand";
64
+ import {
65
+ CreateBrowserProfileCommandInput,
66
+ CreateBrowserProfileCommandOutput,
67
+ } from "./commands/CreateBrowserProfileCommand";
64
68
  import {
65
69
  CreateCodeInterpreterCommandInput,
66
70
  CreateCodeInterpreterCommandOutput,
@@ -117,6 +121,10 @@ import {
117
121
  DeleteBrowserCommandInput,
118
122
  DeleteBrowserCommandOutput,
119
123
  } from "./commands/DeleteBrowserCommand";
124
+ import {
125
+ DeleteBrowserProfileCommandInput,
126
+ DeleteBrowserProfileCommandOutput,
127
+ } from "./commands/DeleteBrowserProfileCommand";
120
128
  import {
121
129
  DeleteCodeInterpreterCommandInput,
122
130
  DeleteCodeInterpreterCommandOutput,
@@ -177,6 +185,10 @@ import {
177
185
  GetBrowserCommandInput,
178
186
  GetBrowserCommandOutput,
179
187
  } from "./commands/GetBrowserCommand";
188
+ import {
189
+ GetBrowserProfileCommandInput,
190
+ GetBrowserProfileCommandOutput,
191
+ } from "./commands/GetBrowserProfileCommand";
180
192
  import {
181
193
  GetCodeInterpreterCommandInput,
182
194
  GetCodeInterpreterCommandOutput,
@@ -245,6 +257,10 @@ import {
245
257
  ListApiKeyCredentialProvidersCommandInput,
246
258
  ListApiKeyCredentialProvidersCommandOutput,
247
259
  } from "./commands/ListApiKeyCredentialProvidersCommand";
260
+ import {
261
+ ListBrowserProfilesCommandInput,
262
+ ListBrowserProfilesCommandOutput,
263
+ } from "./commands/ListBrowserProfilesCommand";
248
264
  import {
249
265
  ListBrowsersCommandInput,
250
266
  ListBrowsersCommandOutput,
@@ -385,6 +401,7 @@ export type ServiceInputTypes =
385
401
  | CreateAgentRuntimeEndpointCommandInput
386
402
  | CreateApiKeyCredentialProviderCommandInput
387
403
  | CreateBrowserCommandInput
404
+ | CreateBrowserProfileCommandInput
388
405
  | CreateCodeInterpreterCommandInput
389
406
  | CreateEvaluatorCommandInput
390
407
  | CreateGatewayCommandInput
@@ -399,6 +416,7 @@ export type ServiceInputTypes =
399
416
  | DeleteAgentRuntimeEndpointCommandInput
400
417
  | DeleteApiKeyCredentialProviderCommandInput
401
418
  | DeleteBrowserCommandInput
419
+ | DeleteBrowserProfileCommandInput
402
420
  | DeleteCodeInterpreterCommandInput
403
421
  | DeleteEvaluatorCommandInput
404
422
  | DeleteGatewayCommandInput
@@ -414,6 +432,7 @@ export type ServiceInputTypes =
414
432
  | GetAgentRuntimeEndpointCommandInput
415
433
  | GetApiKeyCredentialProviderCommandInput
416
434
  | GetBrowserCommandInput
435
+ | GetBrowserProfileCommandInput
417
436
  | GetCodeInterpreterCommandInput
418
437
  | GetEvaluatorCommandInput
419
438
  | GetGatewayCommandInput
@@ -431,6 +450,7 @@ export type ServiceInputTypes =
431
450
  | ListAgentRuntimeVersionsCommandInput
432
451
  | ListAgentRuntimesCommandInput
433
452
  | ListApiKeyCredentialProvidersCommandInput
453
+ | ListBrowserProfilesCommandInput
434
454
  | ListBrowsersCommandInput
435
455
  | ListCodeInterpretersCommandInput
436
456
  | ListEvaluatorsCommandInput
@@ -468,6 +488,7 @@ export type ServiceOutputTypes =
468
488
  | CreateAgentRuntimeEndpointCommandOutput
469
489
  | CreateApiKeyCredentialProviderCommandOutput
470
490
  | CreateBrowserCommandOutput
491
+ | CreateBrowserProfileCommandOutput
471
492
  | CreateCodeInterpreterCommandOutput
472
493
  | CreateEvaluatorCommandOutput
473
494
  | CreateGatewayCommandOutput
@@ -482,6 +503,7 @@ export type ServiceOutputTypes =
482
503
  | DeleteAgentRuntimeEndpointCommandOutput
483
504
  | DeleteApiKeyCredentialProviderCommandOutput
484
505
  | DeleteBrowserCommandOutput
506
+ | DeleteBrowserProfileCommandOutput
485
507
  | DeleteCodeInterpreterCommandOutput
486
508
  | DeleteEvaluatorCommandOutput
487
509
  | DeleteGatewayCommandOutput
@@ -497,6 +519,7 @@ export type ServiceOutputTypes =
497
519
  | GetAgentRuntimeEndpointCommandOutput
498
520
  | GetApiKeyCredentialProviderCommandOutput
499
521
  | GetBrowserCommandOutput
522
+ | GetBrowserProfileCommandOutput
500
523
  | GetCodeInterpreterCommandOutput
501
524
  | GetEvaluatorCommandOutput
502
525
  | GetGatewayCommandOutput
@@ -514,6 +537,7 @@ export type ServiceOutputTypes =
514
537
  | ListAgentRuntimeVersionsCommandOutput
515
538
  | ListAgentRuntimesCommandOutput
516
539
  | ListApiKeyCredentialProvidersCommandOutput
540
+ | ListBrowserProfilesCommandOutput
517
541
  | ListBrowsersCommandOutput
518
542
  | ListCodeInterpretersCommandOutput
519
543
  | ListEvaluatorsCommandOutput