@aws-sdk/client-bedrock-agentcore-control 3.983.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,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ CreateBrowserProfileRequest,
10
+ CreateBrowserProfileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateBrowserProfileCommandInput
15
+ extends CreateBrowserProfileRequest {}
16
+ export interface CreateBrowserProfileCommandOutput
17
+ extends CreateBrowserProfileResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateBrowserProfileCommand_base: {
20
+ new (
21
+ input: CreateBrowserProfileCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateBrowserProfileCommandInput,
24
+ CreateBrowserProfileCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateBrowserProfileCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateBrowserProfileCommandInput,
33
+ CreateBrowserProfileCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateBrowserProfileCommand extends CreateBrowserProfileCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateBrowserProfileRequest;
44
+ output: CreateBrowserProfileResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateBrowserProfileCommandInput;
48
+ output: CreateBrowserProfileCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreControlClient";
8
- import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0";
8
+ import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface CreatePolicyCommandInput extends CreatePolicyRequest {}
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ DeleteBrowserProfileRequest,
10
+ DeleteBrowserProfileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteBrowserProfileCommandInput
15
+ extends DeleteBrowserProfileRequest {}
16
+ export interface DeleteBrowserProfileCommandOutput
17
+ extends DeleteBrowserProfileResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteBrowserProfileCommand_base: {
20
+ new (
21
+ input: DeleteBrowserProfileCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteBrowserProfileCommandInput,
24
+ DeleteBrowserProfileCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteBrowserProfileCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteBrowserProfileCommandInput,
33
+ DeleteBrowserProfileCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteBrowserProfileCommand extends DeleteBrowserProfileCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteBrowserProfileRequest;
44
+ output: DeleteBrowserProfileResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteBrowserProfileCommandInput;
48
+ output: DeleteBrowserProfileCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreControlClient";
8
- import { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_0";
8
+ import { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetBrowserProfileRequest,
10
+ GetBrowserProfileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetBrowserProfileCommandInput
15
+ extends GetBrowserProfileRequest {}
16
+ export interface GetBrowserProfileCommandOutput
17
+ extends GetBrowserProfileResponse,
18
+ __MetadataBearer {}
19
+ declare const GetBrowserProfileCommand_base: {
20
+ new (
21
+ input: GetBrowserProfileCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetBrowserProfileCommandInput,
24
+ GetBrowserProfileCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetBrowserProfileCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetBrowserProfileCommandInput,
33
+ GetBrowserProfileCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetBrowserProfileCommand extends GetBrowserProfileCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetBrowserProfileRequest;
44
+ output: GetBrowserProfileResponse;
45
+ };
46
+ sdk: {
47
+ input: GetBrowserProfileCommandInput;
48
+ output: GetBrowserProfileCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreControlClient";
8
- import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
8
+ import { GetPolicyRequest, GetPolicyResponse } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface GetPolicyCommandInput extends GetPolicyRequest {}
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ ListBrowserProfilesRequest,
10
+ ListBrowserProfilesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListBrowserProfilesCommandInput
15
+ extends ListBrowserProfilesRequest {}
16
+ export interface ListBrowserProfilesCommandOutput
17
+ extends ListBrowserProfilesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListBrowserProfilesCommand_base: {
20
+ new (
21
+ input: ListBrowserProfilesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListBrowserProfilesCommandInput,
24
+ ListBrowserProfilesCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListBrowserProfilesCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListBrowserProfilesCommandInput,
33
+ ListBrowserProfilesCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListBrowserProfilesCommand extends ListBrowserProfilesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListBrowserProfilesRequest;
44
+ output: ListBrowserProfilesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListBrowserProfilesCommandInput;
48
+ output: ListBrowserProfilesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  StartPolicyGenerationRequest,
10
10
  StartPolicyGenerationResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface StartPolicyGenerationCommandInput
@@ -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";
@@ -60,6 +60,14 @@ export declare const AgentRuntimeStatus: {
60
60
  };
61
61
  export type AgentRuntimeStatus =
62
62
  (typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
63
+ export declare const BrowserProfileStatus: {
64
+ readonly DELETED: "DELETED";
65
+ readonly DELETING: "DELETING";
66
+ readonly READY: "READY";
67
+ readonly SAVING: "SAVING";
68
+ };
69
+ export type BrowserProfileStatus =
70
+ (typeof BrowserProfileStatus)[keyof typeof BrowserProfileStatus];
63
71
  export declare const BrowserNetworkMode: {
64
72
  readonly PUBLIC: "PUBLIC";
65
73
  readonly VPC: "VPC";
@@ -6,6 +6,7 @@ import {
6
6
  ApiKeyCredentialLocation,
7
7
  AuthorizerType,
8
8
  BrowserNetworkMode,
9
+ BrowserProfileStatus,
9
10
  BrowserStatus,
10
11
  ClaimMatchOperatorType,
11
12
  CodeInterpreterNetworkMode,
@@ -35,8 +36,6 @@ import {
35
36
  OverrideType,
36
37
  PolicyEngineStatus,
37
38
  PolicyGenerationStatus,
38
- PolicyStatus,
39
- PolicyValidationMode,
40
39
  ResourceType,
41
40
  RestApiMethod,
42
41
  SearchType,
@@ -430,6 +429,64 @@ export interface UpdateApiKeyCredentialProviderResponse {
430
429
  createdTime: Date | undefined;
431
430
  lastUpdatedTime: Date | undefined;
432
431
  }
432
+ export interface CreateBrowserProfileRequest {
433
+ name: string | undefined;
434
+ description?: string | undefined;
435
+ clientToken?: string | undefined;
436
+ tags?: Record<string, string> | undefined;
437
+ }
438
+ export interface CreateBrowserProfileResponse {
439
+ profileId: string | undefined;
440
+ profileArn: string | undefined;
441
+ createdAt: Date | undefined;
442
+ status: BrowserProfileStatus | undefined;
443
+ }
444
+ export interface DeleteBrowserProfileRequest {
445
+ profileId: string | undefined;
446
+ clientToken?: string | undefined;
447
+ }
448
+ export interface DeleteBrowserProfileResponse {
449
+ profileId: string | undefined;
450
+ profileArn: string | undefined;
451
+ status: BrowserProfileStatus | undefined;
452
+ lastUpdatedAt: Date | undefined;
453
+ lastSavedAt?: Date | undefined;
454
+ }
455
+ export interface GetBrowserProfileRequest {
456
+ profileId: string | undefined;
457
+ }
458
+ export interface GetBrowserProfileResponse {
459
+ profileId: string | undefined;
460
+ profileArn: string | undefined;
461
+ name: string | undefined;
462
+ description?: string | undefined;
463
+ status: BrowserProfileStatus | undefined;
464
+ createdAt: Date | undefined;
465
+ lastUpdatedAt: Date | undefined;
466
+ lastSavedAt?: Date | undefined;
467
+ lastSavedBrowserSessionId?: string | undefined;
468
+ lastSavedBrowserId?: string | undefined;
469
+ }
470
+ export interface ListBrowserProfilesRequest {
471
+ maxResults?: number | undefined;
472
+ nextToken?: string | undefined;
473
+ }
474
+ export interface BrowserProfileSummary {
475
+ profileId: string | undefined;
476
+ profileArn: string | undefined;
477
+ name: string | undefined;
478
+ description?: string | undefined;
479
+ status: BrowserProfileStatus | undefined;
480
+ createdAt: Date | undefined;
481
+ lastUpdatedAt: Date | undefined;
482
+ lastSavedAt?: Date | undefined;
483
+ lastSavedBrowserSessionId?: string | undefined;
484
+ lastSavedBrowserId?: string | undefined;
485
+ }
486
+ export interface ListBrowserProfilesResponse {
487
+ profileSummaries: BrowserProfileSummary[] | undefined;
488
+ nextToken?: string | undefined;
489
+ }
433
490
  export interface BrowserSigningConfigInput {
434
491
  enabled: boolean | undefined;
435
492
  }
@@ -2721,89 +2778,3 @@ export interface ListPolicyGenerationsResponse {
2721
2778
  policyGenerations: PolicyGeneration[] | undefined;
2722
2779
  nextToken?: string | undefined;
2723
2780
  }
2724
- export type Content = Content.RawTextMember | Content.$UnknownMember;
2725
- export declare namespace Content {
2726
- interface RawTextMember {
2727
- rawText: string;
2728
- $unknown?: never;
2729
- }
2730
- interface $UnknownMember {
2731
- rawText?: never;
2732
- $unknown: [string, any];
2733
- }
2734
- interface Visitor<T> {
2735
- rawText: (value: string) => T;
2736
- _: (name: string, value: any) => T;
2737
- }
2738
- }
2739
- export interface StartPolicyGenerationRequest {
2740
- policyEngineId: string | undefined;
2741
- resource: Resource | undefined;
2742
- content: Content | undefined;
2743
- name: string | undefined;
2744
- clientToken?: string | undefined;
2745
- }
2746
- export interface StartPolicyGenerationResponse {
2747
- policyEngineId: string | undefined;
2748
- policyGenerationId: string | undefined;
2749
- name: string | undefined;
2750
- policyGenerationArn: string | undefined;
2751
- resource: Resource | undefined;
2752
- createdAt: Date | undefined;
2753
- updatedAt: Date | undefined;
2754
- status: PolicyGenerationStatus | undefined;
2755
- statusReasons: string[] | undefined;
2756
- findings?: string | undefined;
2757
- }
2758
- export interface CreatePolicyRequest {
2759
- name: string | undefined;
2760
- definition: PolicyDefinition | undefined;
2761
- description?: string | undefined;
2762
- validationMode?: PolicyValidationMode | undefined;
2763
- policyEngineId: string | undefined;
2764
- clientToken?: string | undefined;
2765
- }
2766
- export interface CreatePolicyResponse {
2767
- policyId: string | undefined;
2768
- name: string | undefined;
2769
- policyEngineId: string | undefined;
2770
- definition: PolicyDefinition | undefined;
2771
- description?: string | undefined;
2772
- createdAt: Date | undefined;
2773
- updatedAt: Date | undefined;
2774
- policyArn: string | undefined;
2775
- status: PolicyStatus | undefined;
2776
- statusReasons: string[] | undefined;
2777
- }
2778
- export interface DeletePolicyRequest {
2779
- policyEngineId: string | undefined;
2780
- policyId: string | undefined;
2781
- }
2782
- export interface DeletePolicyResponse {
2783
- policyId: string | undefined;
2784
- name: string | undefined;
2785
- policyEngineId: string | undefined;
2786
- definition: PolicyDefinition | undefined;
2787
- description?: string | undefined;
2788
- createdAt: Date | undefined;
2789
- updatedAt: Date | undefined;
2790
- policyArn: string | undefined;
2791
- status: PolicyStatus | undefined;
2792
- statusReasons: string[] | undefined;
2793
- }
2794
- export interface GetPolicyRequest {
2795
- policyEngineId: string | undefined;
2796
- policyId: string | undefined;
2797
- }
2798
- export interface GetPolicyResponse {
2799
- policyId: string | undefined;
2800
- name: string | undefined;
2801
- policyEngineId: string | undefined;
2802
- definition: PolicyDefinition | undefined;
2803
- description?: string | undefined;
2804
- createdAt: Date | undefined;
2805
- updatedAt: Date | undefined;
2806
- policyArn: string | undefined;
2807
- status: PolicyStatus | undefined;
2808
- statusReasons: string[] | undefined;
2809
- }
@@ -1,4 +1,5 @@
1
1
  import {
2
+ PolicyGenerationStatus,
2
3
  PolicyStatus,
3
4
  PolicyValidationMode,
4
5
  SchemaType,
@@ -8,12 +9,99 @@ import {
8
9
  KmsConfiguration,
9
10
  MetadataConfiguration,
10
11
  PolicyDefinition,
12
+ Resource,
11
13
  ApiGatewayTargetConfiguration,
12
14
  ApiSchemaConfiguration,
13
15
  CredentialProviderConfiguration,
14
16
  McpServerTargetConfiguration,
15
17
  S3Configuration,
16
18
  } from "./models_0";
19
+ export type Content = Content.RawTextMember | Content.$UnknownMember;
20
+ export declare namespace Content {
21
+ interface RawTextMember {
22
+ rawText: string;
23
+ $unknown?: never;
24
+ }
25
+ interface $UnknownMember {
26
+ rawText?: never;
27
+ $unknown: [string, any];
28
+ }
29
+ interface Visitor<T> {
30
+ rawText: (value: string) => T;
31
+ _: (name: string, value: any) => T;
32
+ }
33
+ }
34
+ export interface StartPolicyGenerationRequest {
35
+ policyEngineId: string | undefined;
36
+ resource: Resource | undefined;
37
+ content: Content | undefined;
38
+ name: string | undefined;
39
+ clientToken?: string | undefined;
40
+ }
41
+ export interface StartPolicyGenerationResponse {
42
+ policyEngineId: string | undefined;
43
+ policyGenerationId: string | undefined;
44
+ name: string | undefined;
45
+ policyGenerationArn: string | undefined;
46
+ resource: Resource | undefined;
47
+ createdAt: Date | undefined;
48
+ updatedAt: Date | undefined;
49
+ status: PolicyGenerationStatus | undefined;
50
+ statusReasons: string[] | undefined;
51
+ findings?: string | undefined;
52
+ }
53
+ export interface CreatePolicyRequest {
54
+ name: string | undefined;
55
+ definition: PolicyDefinition | undefined;
56
+ description?: string | undefined;
57
+ validationMode?: PolicyValidationMode | undefined;
58
+ policyEngineId: string | undefined;
59
+ clientToken?: string | undefined;
60
+ }
61
+ export interface CreatePolicyResponse {
62
+ policyId: string | undefined;
63
+ name: string | undefined;
64
+ policyEngineId: string | undefined;
65
+ definition: PolicyDefinition | undefined;
66
+ description?: string | undefined;
67
+ createdAt: Date | undefined;
68
+ updatedAt: Date | undefined;
69
+ policyArn: string | undefined;
70
+ status: PolicyStatus | undefined;
71
+ statusReasons: string[] | undefined;
72
+ }
73
+ export interface DeletePolicyRequest {
74
+ policyEngineId: string | undefined;
75
+ policyId: string | undefined;
76
+ }
77
+ export interface DeletePolicyResponse {
78
+ policyId: string | undefined;
79
+ name: string | undefined;
80
+ policyEngineId: string | undefined;
81
+ definition: PolicyDefinition | undefined;
82
+ description?: string | undefined;
83
+ createdAt: Date | undefined;
84
+ updatedAt: Date | undefined;
85
+ policyArn: string | undefined;
86
+ status: PolicyStatus | undefined;
87
+ statusReasons: string[] | undefined;
88
+ }
89
+ export interface GetPolicyRequest {
90
+ policyEngineId: string | undefined;
91
+ policyId: string | undefined;
92
+ }
93
+ export interface GetPolicyResponse {
94
+ policyId: string | undefined;
95
+ name: string | undefined;
96
+ policyEngineId: string | undefined;
97
+ definition: PolicyDefinition | undefined;
98
+ description?: string | undefined;
99
+ createdAt: Date | undefined;
100
+ updatedAt: Date | undefined;
101
+ policyArn: string | undefined;
102
+ status: PolicyStatus | undefined;
103
+ statusReasons: string[] | undefined;
104
+ }
17
105
  export interface ListPoliciesRequest {
18
106
  nextToken?: string | undefined;
19
107
  maxResults?: number | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListBrowserProfilesCommandInput,
4
+ ListBrowserProfilesCommandOutput,
5
+ } from "../commands/ListBrowserProfilesCommand";
6
+ import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListBrowserProfiles: (
8
+ config: BedrockAgentCoreControlPaginationConfiguration,
9
+ input: ListBrowserProfilesCommandInput,
10
+ ...rest: any[]
11
+ ) => 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";
@@ -17,6 +17,7 @@ export declare var AtlassianOauth2ProviderConfigOutput$: StaticStructureSchema;
17
17
  export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
18
18
  export declare var BedrockEvaluatorModelConfig$: StaticStructureSchema;
19
19
  export declare var BrowserNetworkConfiguration$: StaticStructureSchema;
20
+ export declare var BrowserProfileSummary$: StaticStructureSchema;
20
21
  export declare var BrowserSigningConfigInput$: StaticStructureSchema;
21
22
  export declare var BrowserSigningConfigOutput$: StaticStructureSchema;
22
23
  export declare var BrowserSummary$: StaticStructureSchema;
@@ -36,6 +37,8 @@ export declare var CreateAgentRuntimeRequest$: StaticStructureSchema;
36
37
  export declare var CreateAgentRuntimeResponse$: StaticStructureSchema;
37
38
  export declare var CreateApiKeyCredentialProviderRequest$: StaticStructureSchema;
38
39
  export declare var CreateApiKeyCredentialProviderResponse$: StaticStructureSchema;
40
+ export declare var CreateBrowserProfileRequest$: StaticStructureSchema;
41
+ export declare var CreateBrowserProfileResponse$: StaticStructureSchema;
39
42
  export declare var CreateBrowserRequest$: StaticStructureSchema;
40
43
  export declare var CreateBrowserResponse$: StaticStructureSchema;
41
44
  export declare var CreateCodeInterpreterRequest$: StaticStructureSchema;
@@ -71,6 +74,8 @@ export declare var DeleteAgentRuntimeRequest$: StaticStructureSchema;
71
74
  export declare var DeleteAgentRuntimeResponse$: StaticStructureSchema;
72
75
  export declare var DeleteApiKeyCredentialProviderRequest$: StaticStructureSchema;
73
76
  export declare var DeleteApiKeyCredentialProviderResponse$: StaticStructureSchema;
77
+ export declare var DeleteBrowserProfileRequest$: StaticStructureSchema;
78
+ export declare var DeleteBrowserProfileResponse$: StaticStructureSchema;
74
79
  export declare var DeleteBrowserRequest$: StaticStructureSchema;
75
80
  export declare var DeleteBrowserResponse$: StaticStructureSchema;
76
81
  export declare var DeleteCodeInterpreterRequest$: StaticStructureSchema;
@@ -121,6 +126,8 @@ export declare var GetAgentRuntimeRequest$: StaticStructureSchema;
121
126
  export declare var GetAgentRuntimeResponse$: StaticStructureSchema;
122
127
  export declare var GetApiKeyCredentialProviderRequest$: StaticStructureSchema;
123
128
  export declare var GetApiKeyCredentialProviderResponse$: StaticStructureSchema;
129
+ export declare var GetBrowserProfileRequest$: StaticStructureSchema;
130
+ export declare var GetBrowserProfileResponse$: StaticStructureSchema;
124
131
  export declare var GetBrowserRequest$: StaticStructureSchema;
125
132
  export declare var GetBrowserResponse$: StaticStructureSchema;
126
133
  export declare var GetCodeInterpreterRequest$: StaticStructureSchema;
@@ -173,6 +180,8 @@ export declare var ListAgentRuntimeVersionsRequest$: StaticStructureSchema;
173
180
  export declare var ListAgentRuntimeVersionsResponse$: StaticStructureSchema;
174
181
  export declare var ListApiKeyCredentialProvidersRequest$: StaticStructureSchema;
175
182
  export declare var ListApiKeyCredentialProvidersResponse$: StaticStructureSchema;
183
+ export declare var ListBrowserProfilesRequest$: StaticStructureSchema;
184
+ export declare var ListBrowserProfilesResponse$: StaticStructureSchema;
176
185
  export declare var ListBrowsersRequest$: StaticStructureSchema;
177
186
  export declare var ListBrowsersResponse$: StaticStructureSchema;
178
187
  export declare var ListCodeInterpretersRequest$: StaticStructureSchema;
@@ -360,6 +369,7 @@ export declare var CreateAgentRuntime$: StaticOperationSchema;
360
369
  export declare var CreateAgentRuntimeEndpoint$: StaticOperationSchema;
361
370
  export declare var CreateApiKeyCredentialProvider$: StaticOperationSchema;
362
371
  export declare var CreateBrowser$: StaticOperationSchema;
372
+ export declare var CreateBrowserProfile$: StaticOperationSchema;
363
373
  export declare var CreateCodeInterpreter$: StaticOperationSchema;
364
374
  export declare var CreateEvaluator$: StaticOperationSchema;
365
375
  export declare var CreateGateway$: StaticOperationSchema;
@@ -374,6 +384,7 @@ export declare var DeleteAgentRuntime$: StaticOperationSchema;
374
384
  export declare var DeleteAgentRuntimeEndpoint$: StaticOperationSchema;
375
385
  export declare var DeleteApiKeyCredentialProvider$: StaticOperationSchema;
376
386
  export declare var DeleteBrowser$: StaticOperationSchema;
387
+ export declare var DeleteBrowserProfile$: StaticOperationSchema;
377
388
  export declare var DeleteCodeInterpreter$: StaticOperationSchema;
378
389
  export declare var DeleteEvaluator$: StaticOperationSchema;
379
390
  export declare var DeleteGateway$: StaticOperationSchema;
@@ -389,6 +400,7 @@ export declare var GetAgentRuntime$: StaticOperationSchema;
389
400
  export declare var GetAgentRuntimeEndpoint$: StaticOperationSchema;
390
401
  export declare var GetApiKeyCredentialProvider$: StaticOperationSchema;
391
402
  export declare var GetBrowser$: StaticOperationSchema;
403
+ export declare var GetBrowserProfile$: StaticOperationSchema;
392
404
  export declare var GetCodeInterpreter$: StaticOperationSchema;
393
405
  export declare var GetEvaluator$: StaticOperationSchema;
394
406
  export declare var GetGateway$: StaticOperationSchema;
@@ -406,6 +418,7 @@ export declare var ListAgentRuntimeEndpoints$: StaticOperationSchema;
406
418
  export declare var ListAgentRuntimes$: StaticOperationSchema;
407
419
  export declare var ListAgentRuntimeVersions$: StaticOperationSchema;
408
420
  export declare var ListApiKeyCredentialProviders$: StaticOperationSchema;
421
+ export declare var ListBrowserProfiles$: StaticOperationSchema;
409
422
  export declare var ListBrowsers$: StaticOperationSchema;
410
423
  export declare var ListCodeInterpreters$: StaticOperationSchema;
411
424
  export declare var ListEvaluators$: StaticOperationSchema;