@aws-sdk/client-bedrock-agentcore-control 3.1012.0 → 3.1013.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.
- package/dist-cjs/index.js +5 -0
- package/dist-cjs/schemas/schemas_0.js +73 -31
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +63 -21
- package/dist-types/commands/CreateBrowserCommand.d.ts +21 -0
- package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +9 -0
- package/dist-types/commands/GetBrowserCommand.d.ts +21 -0
- package/dist-types/commands/GetCodeInterpreterCommand.d.ts +9 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -2
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +135 -141
- package/dist-types/models/models_1.d.ts +141 -1
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +51 -41
- package/dist-types/ts3.4/models/models_1.d.ts +40 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +5 -5
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
AgentRuntimeStatus,
|
|
6
6
|
ApiKeyCredentialLocation,
|
|
7
7
|
AuthorizerType,
|
|
8
|
+
BrowserEnterprisePolicyType,
|
|
8
9
|
BrowserNetworkMode,
|
|
9
10
|
BrowserProfileStatus,
|
|
10
11
|
BrowserStatus,
|
|
@@ -36,7 +37,6 @@ import {
|
|
|
36
37
|
OnlineEvaluationExecutionStatus,
|
|
37
38
|
OverrideType,
|
|
38
39
|
PolicyEngineStatus,
|
|
39
|
-
PolicyGenerationStatus,
|
|
40
40
|
ResourceType,
|
|
41
41
|
RestApiMethod,
|
|
42
42
|
SearchType,
|
|
@@ -496,6 +496,50 @@ export interface ListBrowserProfilesResponse {
|
|
|
496
496
|
export interface BrowserSigningConfigInput {
|
|
497
497
|
enabled: boolean | undefined;
|
|
498
498
|
}
|
|
499
|
+
export interface SecretsManagerLocation {
|
|
500
|
+
secretArn: string | undefined;
|
|
501
|
+
}
|
|
502
|
+
export type CertificateLocation =
|
|
503
|
+
| CertificateLocation.SecretsManagerMember
|
|
504
|
+
| CertificateLocation.$UnknownMember;
|
|
505
|
+
export declare namespace CertificateLocation {
|
|
506
|
+
interface SecretsManagerMember {
|
|
507
|
+
secretsManager: SecretsManagerLocation;
|
|
508
|
+
$unknown?: never;
|
|
509
|
+
}
|
|
510
|
+
interface $UnknownMember {
|
|
511
|
+
secretsManager?: never;
|
|
512
|
+
$unknown: [string, any];
|
|
513
|
+
}
|
|
514
|
+
interface Visitor<T> {
|
|
515
|
+
secretsManager: (value: SecretsManagerLocation) => T;
|
|
516
|
+
_: (name: string, value: any) => T;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
export interface Certificate {
|
|
520
|
+
location: CertificateLocation | undefined;
|
|
521
|
+
}
|
|
522
|
+
export type ResourceLocation =
|
|
523
|
+
| ResourceLocation.S3Member
|
|
524
|
+
| ResourceLocation.$UnknownMember;
|
|
525
|
+
export declare namespace ResourceLocation {
|
|
526
|
+
interface S3Member {
|
|
527
|
+
s3: S3Location;
|
|
528
|
+
$unknown?: never;
|
|
529
|
+
}
|
|
530
|
+
interface $UnknownMember {
|
|
531
|
+
s3?: never;
|
|
532
|
+
$unknown: [string, any];
|
|
533
|
+
}
|
|
534
|
+
interface Visitor<T> {
|
|
535
|
+
s3: (value: S3Location) => T;
|
|
536
|
+
_: (name: string, value: any) => T;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
export interface BrowserEnterprisePolicy {
|
|
540
|
+
location: ResourceLocation | undefined;
|
|
541
|
+
type?: BrowserEnterprisePolicyType | undefined;
|
|
542
|
+
}
|
|
499
543
|
export interface BrowserNetworkConfiguration {
|
|
500
544
|
networkMode: BrowserNetworkMode | undefined;
|
|
501
545
|
vpcConfig?: VpcConfig | undefined;
|
|
@@ -511,6 +555,8 @@ export interface CreateBrowserRequest {
|
|
|
511
555
|
networkConfiguration: BrowserNetworkConfiguration | undefined;
|
|
512
556
|
recording?: RecordingConfig | undefined;
|
|
513
557
|
browserSigning?: BrowserSigningConfigInput | undefined;
|
|
558
|
+
enterprisePolicies?: BrowserEnterprisePolicy[] | undefined;
|
|
559
|
+
certificates?: Certificate[] | undefined;
|
|
514
560
|
clientToken?: string | undefined;
|
|
515
561
|
tags?: Record<string, string> | undefined;
|
|
516
562
|
}
|
|
@@ -544,6 +590,8 @@ export interface GetBrowserResponse {
|
|
|
544
590
|
networkConfiguration: BrowserNetworkConfiguration | undefined;
|
|
545
591
|
recording?: RecordingConfig | undefined;
|
|
546
592
|
browserSigning?: BrowserSigningConfigOutput | undefined;
|
|
593
|
+
enterprisePolicies?: BrowserEnterprisePolicy[] | undefined;
|
|
594
|
+
certificates?: Certificate[] | undefined;
|
|
547
595
|
status: BrowserStatus | undefined;
|
|
548
596
|
failureReason?: string | undefined;
|
|
549
597
|
createdAt: Date | undefined;
|
|
@@ -576,6 +624,7 @@ export interface CreateCodeInterpreterRequest {
|
|
|
576
624
|
description?: string | undefined;
|
|
577
625
|
executionRoleArn?: string | undefined;
|
|
578
626
|
networkConfiguration: CodeInterpreterNetworkConfiguration | undefined;
|
|
627
|
+
certificates?: Certificate[] | undefined;
|
|
579
628
|
clientToken?: string | undefined;
|
|
580
629
|
tags?: Record<string, string> | undefined;
|
|
581
630
|
}
|
|
@@ -605,6 +654,7 @@ export interface GetCodeInterpreterResponse {
|
|
|
605
654
|
executionRoleArn?: string | undefined;
|
|
606
655
|
networkConfiguration: CodeInterpreterNetworkConfiguration | undefined;
|
|
607
656
|
status: CodeInterpreterStatus | undefined;
|
|
657
|
+
certificates?: Certificate[] | undefined;
|
|
608
658
|
failureReason?: string | undefined;
|
|
609
659
|
createdAt: Date | undefined;
|
|
610
660
|
lastUpdatedAt: Date | undefined;
|
|
@@ -2748,43 +2798,3 @@ export interface GetPolicyGenerationRequest {
|
|
|
2748
2798
|
policyGenerationId: string | undefined;
|
|
2749
2799
|
policyEngineId: string | undefined;
|
|
2750
2800
|
}
|
|
2751
|
-
export type Resource = Resource.ArnMember | Resource.$UnknownMember;
|
|
2752
|
-
export declare namespace Resource {
|
|
2753
|
-
interface ArnMember {
|
|
2754
|
-
arn: string;
|
|
2755
|
-
$unknown?: never;
|
|
2756
|
-
}
|
|
2757
|
-
interface $UnknownMember {
|
|
2758
|
-
arn?: never;
|
|
2759
|
-
$unknown: [string, any];
|
|
2760
|
-
}
|
|
2761
|
-
interface Visitor<T> {
|
|
2762
|
-
arn: (value: string) => T;
|
|
2763
|
-
_: (name: string, value: any) => T;
|
|
2764
|
-
}
|
|
2765
|
-
}
|
|
2766
|
-
export interface GetPolicyGenerationResponse {
|
|
2767
|
-
policyEngineId: string | undefined;
|
|
2768
|
-
policyGenerationId: string | undefined;
|
|
2769
|
-
name: string | undefined;
|
|
2770
|
-
policyGenerationArn: string | undefined;
|
|
2771
|
-
resource: Resource | undefined;
|
|
2772
|
-
createdAt: Date | undefined;
|
|
2773
|
-
updatedAt: Date | undefined;
|
|
2774
|
-
status: PolicyGenerationStatus | undefined;
|
|
2775
|
-
statusReasons: string[] | undefined;
|
|
2776
|
-
findings?: string | undefined;
|
|
2777
|
-
}
|
|
2778
|
-
export interface ListPolicyGenerationAssetsRequest {
|
|
2779
|
-
policyGenerationId: string | undefined;
|
|
2780
|
-
policyEngineId: string | undefined;
|
|
2781
|
-
nextToken?: string | undefined;
|
|
2782
|
-
maxResults?: number | undefined;
|
|
2783
|
-
}
|
|
2784
|
-
export interface CedarPolicy {
|
|
2785
|
-
statement: string | undefined;
|
|
2786
|
-
}
|
|
2787
|
-
export interface PolicyGenerationDetails {
|
|
2788
|
-
policyGenerationId: string | undefined;
|
|
2789
|
-
policyGenerationAssetId: string | undefined;
|
|
2790
|
-
}
|
|
@@ -9,16 +9,53 @@ import {
|
|
|
9
9
|
import {
|
|
10
10
|
KmsConfiguration,
|
|
11
11
|
MetadataConfiguration,
|
|
12
|
-
Resource,
|
|
13
12
|
UpdatedDescription,
|
|
14
13
|
ApiGatewayTargetConfiguration,
|
|
15
14
|
ApiSchemaConfiguration,
|
|
16
|
-
CedarPolicy,
|
|
17
15
|
CredentialProviderConfiguration,
|
|
18
16
|
McpServerTargetConfiguration,
|
|
19
|
-
PolicyGenerationDetails,
|
|
20
17
|
S3Configuration,
|
|
21
18
|
} from "./models_0";
|
|
19
|
+
export type Resource = Resource.ArnMember | Resource.$UnknownMember;
|
|
20
|
+
export declare namespace Resource {
|
|
21
|
+
interface ArnMember {
|
|
22
|
+
arn: string;
|
|
23
|
+
$unknown?: never;
|
|
24
|
+
}
|
|
25
|
+
interface $UnknownMember {
|
|
26
|
+
arn?: never;
|
|
27
|
+
$unknown: [string, any];
|
|
28
|
+
}
|
|
29
|
+
interface Visitor<T> {
|
|
30
|
+
arn: (value: string) => T;
|
|
31
|
+
_: (name: string, value: any) => T;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
export interface GetPolicyGenerationResponse {
|
|
35
|
+
policyEngineId: string | undefined;
|
|
36
|
+
policyGenerationId: string | undefined;
|
|
37
|
+
name: string | undefined;
|
|
38
|
+
policyGenerationArn: string | undefined;
|
|
39
|
+
resource: Resource | undefined;
|
|
40
|
+
createdAt: Date | undefined;
|
|
41
|
+
updatedAt: Date | undefined;
|
|
42
|
+
status: PolicyGenerationStatus | undefined;
|
|
43
|
+
statusReasons: string[] | undefined;
|
|
44
|
+
findings?: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
export interface ListPolicyGenerationAssetsRequest {
|
|
47
|
+
policyGenerationId: string | undefined;
|
|
48
|
+
policyEngineId: string | undefined;
|
|
49
|
+
nextToken?: string | undefined;
|
|
50
|
+
maxResults?: number | undefined;
|
|
51
|
+
}
|
|
52
|
+
export interface CedarPolicy {
|
|
53
|
+
statement: string | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface PolicyGenerationDetails {
|
|
56
|
+
policyGenerationId: string | undefined;
|
|
57
|
+
policyGenerationAssetId: string | undefined;
|
|
58
|
+
}
|
|
22
59
|
export type PolicyDefinition =
|
|
23
60
|
| PolicyDefinition.CedarMember
|
|
24
61
|
| PolicyDefinition.PolicyGenerationMember
|
|
@@ -32,6 +32,7 @@ export declare var AtlassianOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
|
32
32
|
export declare var AtlassianOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
33
33
|
export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
|
|
34
34
|
export declare var BedrockEvaluatorModelConfig$: StaticStructureSchema;
|
|
35
|
+
export declare var BrowserEnterprisePolicy$: StaticStructureSchema;
|
|
35
36
|
export declare var BrowserNetworkConfiguration$: StaticStructureSchema;
|
|
36
37
|
export declare var BrowserProfileSummary$: StaticStructureSchema;
|
|
37
38
|
export declare var BrowserSigningConfigInput$: StaticStructureSchema;
|
|
@@ -39,6 +40,7 @@ export declare var BrowserSigningConfigOutput$: StaticStructureSchema;
|
|
|
39
40
|
export declare var BrowserSummary$: StaticStructureSchema;
|
|
40
41
|
export declare var CategoricalScaleDefinition$: StaticStructureSchema;
|
|
41
42
|
export declare var CedarPolicy$: StaticStructureSchema;
|
|
43
|
+
export declare var Certificate$: StaticStructureSchema;
|
|
42
44
|
export declare var CloudWatchLogsInputConfig$: StaticStructureSchema;
|
|
43
45
|
export declare var CloudWatchOutputConfig$: StaticStructureSchema;
|
|
44
46
|
export declare var CodeConfiguration$: StaticStructureSchema;
|
|
@@ -265,6 +267,7 @@ export declare var SalesforceOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
|
265
267
|
export declare var SamplingConfig$: StaticStructureSchema;
|
|
266
268
|
export declare var SchemaDefinition$: StaticStructureSchema;
|
|
267
269
|
export declare var Secret$: StaticStructureSchema;
|
|
270
|
+
export declare var SecretsManagerLocation$: StaticStructureSchema;
|
|
268
271
|
export declare var SelfManagedConfiguration$: StaticStructureSchema;
|
|
269
272
|
export declare var SelfManagedConfigurationInput$: StaticStructureSchema;
|
|
270
273
|
export declare var SemanticConsolidationOverride$: StaticStructureSchema;
|
|
@@ -336,6 +339,7 @@ export declare var WorkloadIdentityType$: StaticStructureSchema;
|
|
|
336
339
|
export declare var AgentRuntimeArtifact$: StaticUnionSchema;
|
|
337
340
|
export declare var ApiSchemaConfiguration$: StaticUnionSchema;
|
|
338
341
|
export declare var AuthorizerConfiguration$: StaticUnionSchema;
|
|
342
|
+
export declare var CertificateLocation$: StaticUnionSchema;
|
|
339
343
|
export declare var ClaimMatchValueType$: StaticUnionSchema;
|
|
340
344
|
export declare var Code$: StaticUnionSchema;
|
|
341
345
|
export declare var ConsolidationConfiguration$: StaticUnionSchema;
|
|
@@ -369,6 +373,7 @@ export declare var RatingScale$: StaticUnionSchema;
|
|
|
369
373
|
export declare var ReflectionConfiguration$: StaticUnionSchema;
|
|
370
374
|
export declare var RequestHeaderConfiguration$: StaticUnionSchema;
|
|
371
375
|
export declare var Resource$: StaticUnionSchema;
|
|
376
|
+
export declare var ResourceLocation$: StaticUnionSchema;
|
|
372
377
|
export declare var StreamDeliveryResource$: StaticUnionSchema;
|
|
373
378
|
export declare var TargetConfiguration$: StaticUnionSchema;
|
|
374
379
|
export declare var ToolSchema$: StaticUnionSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1013.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.22",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.23",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.23",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.8",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.9",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.11",
|
|
36
36
|
"@smithy/core": "^3.23.12",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|