@aws-sdk/client-bedrock-agentcore-control 3.1093.0 → 3.1094.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 +39 -11
- package/dist-es/schemas/schemas_0.js +35 -10
- package/dist-types/commands/CreateBrowserCommand.d.ts +14 -0
- package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +14 -0
- package/dist-types/commands/GetBrowserCommand.d.ts +14 -0
- package/dist-types/commands/GetCodeInterpreterCommand.d.ts +14 -0
- package/dist-types/commands/GetRegistryRecordCommand.d.ts +2 -1
- package/dist-types/commands/ListRegistryRecordsCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +108 -128
- package/dist-types/models/models_1.d.ts +129 -168
- package/dist-types/models/models_2.d.ts +167 -1
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +40 -63
- package/dist-types/ts3.4/models/models_1.d.ts +66 -38
- package/dist-types/ts3.4/models/models_2.d.ts +36 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,6 +1,172 @@
|
|
|
1
1
|
import type { DescriptorType, RegistryAuthorizerType, RegistryRecordStatus, RegistryStatus, SchemaType, SynchronizationType, TargetProtocolType, TargetStatus } from "./enums";
|
|
2
2
|
import type { A2aDescriptor, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, AuthorizerConfiguration, ConnectorTargetConfiguration, CredentialProviderConfiguration, HttpTargetConfiguration, InferenceTargetConfiguration, KmsConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration, SkillDefinition, SkillMdDefinition } from "./models_0";
|
|
3
|
-
import type { CustomDescriptor, Descriptors,
|
|
3
|
+
import type { CustomDescriptor, Descriptors, ServerDefinition, SynchronizationConfiguration, ToolsDefinition, UpdatedAuthorizerConfiguration, UpdatedDescription } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface GetRegistryRecordResponse {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The Amazon Resource Name (ARN) of the registry that contains the record.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
registryArn: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The Amazon Resource Name (ARN) of the registry record.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
recordArn: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The unique identifier of the registry record.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
recordId: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The name of the registry record.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
name: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The description of the registry record.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
description?: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The descriptor type of the registry record. Possible values are <code>MCP</code>, <code>A2A</code>, <code>CUSTOM</code>, and <code>AGENT_SKILLS</code>.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
descriptorType: DescriptorType | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The descriptor-type-specific configuration containing the resource schema and metadata. For details, see the <code>Descriptors</code> data type.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
descriptors: Descriptors | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The version of the registry record.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
recordVersion?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The current status of the registry record. Possible values include <code>CREATING</code>, <code>DRAFT</code>, <code>APPROVED</code>, <code>PENDING_APPROVAL</code>, <code>REJECTED</code>, <code>DEPRECATED</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, and <code>UPDATE_FAILED</code>. A record transitions from <code>CREATING</code> to <code>DRAFT</code>, then to <code>PENDING_APPROVAL</code> (via <code>SubmitRegistryRecordForApproval</code>), and finally to <code>APPROVED</code> upon approval.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
status: RegistryRecordStatus | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The timestamp when the registry record was created.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
createdAt: Date | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The timestamp when the registry record was last updated.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
updatedAt: Date | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The reason for the current status, typically set when the status is a failure state.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
statusReason?: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>The type of synchronization used for this record.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
synchronizationType?: SynchronizationType | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The configuration for synchronizing registry record metadata from an external source.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
synchronizationConfiguration?: SynchronizationConfiguration | undefined;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export interface ListRegistryRecordsRequest {
|
|
83
|
+
/**
|
|
84
|
+
* <p>The identifier of the registry to list records from. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
registryId: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the <code>nextToken</code> field when making another request to return the next batch of results.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
maxResults?: number | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, enter the token returned in the <code>nextToken</code> field in the response in this field to return the next batch of results.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
nextToken?: string | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>Filter registry records by name.</p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
name?: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* <p>Filter registry records by their current status. Possible values include <code>CREATING</code>, <code>DRAFT</code>, <code>APPROVED</code>, <code>PENDING_APPROVAL</code>, <code>REJECTED</code>, <code>DEPRECATED</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, and <code>UPDATE_FAILED</code>.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
status?: RegistryRecordStatus | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>Filter registry records by their descriptor type. Possible values are <code>MCP</code>, <code>A2A</code>, <code>CUSTOM</code>, and <code>AGENT_SKILLS</code>.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
descriptorType?: DescriptorType | undefined;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* <p>Contains summary information about a registry record.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export interface RegistryRecordSummary {
|
|
119
|
+
/**
|
|
120
|
+
* <p>The Amazon Resource Name (ARN) of the registry that contains the record.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
registryArn: string | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* <p>The Amazon Resource Name (ARN) of the registry record.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
recordArn: string | undefined;
|
|
129
|
+
/**
|
|
130
|
+
* <p>The unique identifier of the registry record.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
recordId: string | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* <p>The name of the registry record.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
name: string | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* <p>The description of the registry record.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
description?: string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* <p>The descriptor type of the registry record. Possible values are <code>MCP</code>, <code>A2A</code>, <code>CUSTOM</code>, and <code>AGENT_SKILLS</code>.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
descriptorType: DescriptorType | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* <p>The version of the registry record.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
recordVersion: string | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* <p>The current status of the registry record. Possible values include <code>CREATING</code>, <code>DRAFT</code>, <code>APPROVED</code>, <code>PENDING_APPROVAL</code>, <code>REJECTED</code>, <code>DEPRECATED</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, and <code>UPDATE_FAILED</code>.</p>
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
status: RegistryRecordStatus | undefined;
|
|
159
|
+
/**
|
|
160
|
+
* <p>The timestamp when the registry record was created.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
createdAt: Date | undefined;
|
|
164
|
+
/**
|
|
165
|
+
* <p>The timestamp when the registry record was last updated.</p>
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
updatedAt: Date | undefined;
|
|
169
|
+
}
|
|
4
170
|
/**
|
|
5
171
|
* @public
|
|
6
172
|
*/
|
|
@@ -185,6 +185,7 @@ export declare var DeleteWorkloadIdentityRequest$: StaticStructureSchema;
|
|
|
185
185
|
export declare var DeleteWorkloadIdentityResponse$: StaticStructureSchema;
|
|
186
186
|
export declare var Descriptors$: StaticStructureSchema;
|
|
187
187
|
export declare var EfsAccessPointConfiguration$: StaticStructureSchema;
|
|
188
|
+
export declare var EfsConfiguration$: StaticStructureSchema;
|
|
188
189
|
export declare var EpisodicConsolidationOverride$: StaticStructureSchema;
|
|
189
190
|
export declare var EpisodicExtractionOverride$: StaticStructureSchema;
|
|
190
191
|
export declare var EpisodicMemoryStrategyInput$: StaticStructureSchema;
|
|
@@ -465,6 +466,7 @@ export declare var RuntimeMetadataConfiguration$: StaticStructureSchema;
|
|
|
465
466
|
export declare var RuntimeTargetConfiguration$: StaticStructureSchema;
|
|
466
467
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
467
468
|
export declare var S3FilesAccessPointConfiguration$: StaticStructureSchema;
|
|
469
|
+
export declare var S3FilesConfiguration$: StaticStructureSchema;
|
|
468
470
|
export declare var S3Location$: StaticStructureSchema;
|
|
469
471
|
export declare var S3Source$: StaticStructureSchema;
|
|
470
472
|
export declare var SalesforceOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
@@ -682,6 +684,7 @@ export declare var SelfManagedLatticeResource$: StaticUnionSchema;
|
|
|
682
684
|
export declare var StreamDeliveryResource$: StaticUnionSchema;
|
|
683
685
|
export declare var TargetConfiguration$: StaticUnionSchema;
|
|
684
686
|
export declare var ToolSchema$: StaticUnionSchema;
|
|
687
|
+
export declare var ToolsFileSystemConfiguration$: StaticUnionSchema;
|
|
685
688
|
export declare var TriggerCondition$: StaticUnionSchema;
|
|
686
689
|
export declare var TriggerConditionInput$: StaticUnionSchema;
|
|
687
690
|
export declare var Validation$: StaticUnionSchema;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { GetRegistryRecordRequest
|
|
2
|
+
import { GetRegistryRecordRequest } from "../models/models_1";
|
|
3
|
+
import { GetRegistryRecordResponse } from "../models/models_2";
|
|
3
4
|
export { __MetadataBearer };
|
|
4
5
|
export interface GetRegistryRecordCommandInput extends GetRegistryRecordRequest {}
|
|
5
6
|
export interface GetRegistryRecordCommandOutput
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { ListRegistryRecordsRequest } from "../models/
|
|
3
|
-
import { ListRegistryRecordsResponse } from "../models/models_2";
|
|
2
|
+
import { ListRegistryRecordsRequest, ListRegistryRecordsResponse } from "../models/models_2";
|
|
4
3
|
export { __MetadataBearer };
|
|
5
4
|
export interface ListRegistryRecordsCommandInput extends ListRegistryRecordsRequest {}
|
|
6
5
|
export interface ListRegistryRecordsCommandOutput
|
|
@@ -30,7 +30,6 @@ import {
|
|
|
30
30
|
HarnessBedrockApiFormat,
|
|
31
31
|
HarnessEndpointStatus,
|
|
32
32
|
HarnessManagedMemoryStrategyType,
|
|
33
|
-
HarnessOpenAiApiFormat,
|
|
34
33
|
InboundTokenClaimValueType,
|
|
35
34
|
IncludedData,
|
|
36
35
|
InterceptorPayloadExclusion,
|
|
@@ -849,6 +848,42 @@ export interface BrowserEnterprisePolicy {
|
|
|
849
848
|
location: ResourceLocation | undefined;
|
|
850
849
|
type?: BrowserEnterprisePolicyType | undefined;
|
|
851
850
|
}
|
|
851
|
+
export interface EfsConfiguration {
|
|
852
|
+
accessPointArn: string | undefined;
|
|
853
|
+
mountPath: string | undefined;
|
|
854
|
+
fileSystemArn: string | undefined;
|
|
855
|
+
}
|
|
856
|
+
export interface S3FilesConfiguration {
|
|
857
|
+
accessPointArn: string | undefined;
|
|
858
|
+
mountPath: string | undefined;
|
|
859
|
+
fileSystemArn: string | undefined;
|
|
860
|
+
}
|
|
861
|
+
export type ToolsFileSystemConfiguration =
|
|
862
|
+
| ToolsFileSystemConfiguration.EfsConfigurationMember
|
|
863
|
+
| ToolsFileSystemConfiguration.S3FilesConfigurationMember
|
|
864
|
+
| ToolsFileSystemConfiguration.$UnknownMember;
|
|
865
|
+
export declare namespace ToolsFileSystemConfiguration {
|
|
866
|
+
interface S3FilesConfigurationMember {
|
|
867
|
+
s3FilesConfiguration: S3FilesConfiguration;
|
|
868
|
+
efsConfiguration?: never;
|
|
869
|
+
$unknown?: never;
|
|
870
|
+
}
|
|
871
|
+
interface EfsConfigurationMember {
|
|
872
|
+
s3FilesConfiguration?: never;
|
|
873
|
+
efsConfiguration: EfsConfiguration;
|
|
874
|
+
$unknown?: never;
|
|
875
|
+
}
|
|
876
|
+
interface $UnknownMember {
|
|
877
|
+
s3FilesConfiguration?: never;
|
|
878
|
+
efsConfiguration?: never;
|
|
879
|
+
$unknown: [string, any];
|
|
880
|
+
}
|
|
881
|
+
interface Visitor<T> {
|
|
882
|
+
s3FilesConfiguration: (value: S3FilesConfiguration) => T;
|
|
883
|
+
efsConfiguration: (value: EfsConfiguration) => T;
|
|
884
|
+
_: (name: string, value: any) => T;
|
|
885
|
+
}
|
|
886
|
+
}
|
|
852
887
|
export interface BrowserNetworkConfiguration {
|
|
853
888
|
networkMode: BrowserNetworkMode | undefined;
|
|
854
889
|
vpcConfig?: VpcConfig | undefined;
|
|
@@ -866,6 +901,7 @@ export interface CreateBrowserRequest {
|
|
|
866
901
|
browserSigning?: BrowserSigningConfigInput | undefined;
|
|
867
902
|
enterprisePolicies?: BrowserEnterprisePolicy[] | undefined;
|
|
868
903
|
certificates?: Certificate[] | undefined;
|
|
904
|
+
filesystemConfigurations?: ToolsFileSystemConfiguration[] | undefined;
|
|
869
905
|
clientToken?: string | undefined;
|
|
870
906
|
tags?: Record<string, string> | undefined;
|
|
871
907
|
}
|
|
@@ -901,6 +937,7 @@ export interface GetBrowserResponse {
|
|
|
901
937
|
browserSigning?: BrowserSigningConfigOutput | undefined;
|
|
902
938
|
enterprisePolicies?: BrowserEnterprisePolicy[] | undefined;
|
|
903
939
|
certificates?: Certificate[] | undefined;
|
|
940
|
+
filesystemConfigurations?: ToolsFileSystemConfiguration[] | undefined;
|
|
904
941
|
status: BrowserStatus | undefined;
|
|
905
942
|
failureReason?: string | undefined;
|
|
906
943
|
createdAt: Date | undefined;
|
|
@@ -934,6 +971,7 @@ export interface CreateCodeInterpreterRequest {
|
|
|
934
971
|
executionRoleArn?: string | undefined;
|
|
935
972
|
networkConfiguration: CodeInterpreterNetworkConfiguration | undefined;
|
|
936
973
|
certificates?: Certificate[] | undefined;
|
|
974
|
+
filesystemConfigurations?: ToolsFileSystemConfiguration[] | undefined;
|
|
937
975
|
clientToken?: string | undefined;
|
|
938
976
|
tags?: Record<string, string> | undefined;
|
|
939
977
|
}
|
|
@@ -964,6 +1002,7 @@ export interface GetCodeInterpreterResponse {
|
|
|
964
1002
|
networkConfiguration: CodeInterpreterNetworkConfiguration | undefined;
|
|
965
1003
|
status: CodeInterpreterStatus | undefined;
|
|
966
1004
|
certificates?: Certificate[] | undefined;
|
|
1005
|
+
filesystemConfigurations?: ToolsFileSystemConfiguration[] | undefined;
|
|
967
1006
|
failureReason?: string | undefined;
|
|
968
1007
|
createdAt: Date | undefined;
|
|
969
1008
|
lastUpdatedAt: Date | undefined;
|
|
@@ -2328,66 +2367,4 @@ export interface HarnessLiteLlmModelConfig {
|
|
|
2328
2367
|
topP?: number | undefined;
|
|
2329
2368
|
additionalParams?: __DocumentType | undefined;
|
|
2330
2369
|
}
|
|
2331
|
-
export interface HarnessOpenAiModelConfig {
|
|
2332
|
-
modelId: string | undefined;
|
|
2333
|
-
apiKeyArn: string | undefined;
|
|
2334
|
-
maxTokens?: number | undefined;
|
|
2335
|
-
temperature?: number | undefined;
|
|
2336
|
-
topP?: number | undefined;
|
|
2337
|
-
apiFormat?: HarnessOpenAiApiFormat | undefined;
|
|
2338
|
-
additionalParams?: __DocumentType | undefined;
|
|
2339
|
-
}
|
|
2340
|
-
export type HarnessModelConfiguration =
|
|
2341
|
-
| HarnessModelConfiguration.BedrockModelConfigMember
|
|
2342
|
-
| HarnessModelConfiguration.GeminiModelConfigMember
|
|
2343
|
-
| HarnessModelConfiguration.LiteLlmModelConfigMember
|
|
2344
|
-
| HarnessModelConfiguration.OpenAiModelConfigMember
|
|
2345
|
-
| HarnessModelConfiguration.$UnknownMember;
|
|
2346
|
-
export declare namespace HarnessModelConfiguration {
|
|
2347
|
-
interface BedrockModelConfigMember {
|
|
2348
|
-
bedrockModelConfig: HarnessBedrockModelConfig;
|
|
2349
|
-
openAiModelConfig?: never;
|
|
2350
|
-
geminiModelConfig?: never;
|
|
2351
|
-
liteLlmModelConfig?: never;
|
|
2352
|
-
$unknown?: never;
|
|
2353
|
-
}
|
|
2354
|
-
interface OpenAiModelConfigMember {
|
|
2355
|
-
bedrockModelConfig?: never;
|
|
2356
|
-
openAiModelConfig: HarnessOpenAiModelConfig;
|
|
2357
|
-
geminiModelConfig?: never;
|
|
2358
|
-
liteLlmModelConfig?: never;
|
|
2359
|
-
$unknown?: never;
|
|
2360
|
-
}
|
|
2361
|
-
interface GeminiModelConfigMember {
|
|
2362
|
-
bedrockModelConfig?: never;
|
|
2363
|
-
openAiModelConfig?: never;
|
|
2364
|
-
geminiModelConfig: HarnessGeminiModelConfig;
|
|
2365
|
-
liteLlmModelConfig?: never;
|
|
2366
|
-
$unknown?: never;
|
|
2367
|
-
}
|
|
2368
|
-
interface LiteLlmModelConfigMember {
|
|
2369
|
-
bedrockModelConfig?: never;
|
|
2370
|
-
openAiModelConfig?: never;
|
|
2371
|
-
geminiModelConfig?: never;
|
|
2372
|
-
liteLlmModelConfig: HarnessLiteLlmModelConfig;
|
|
2373
|
-
$unknown?: never;
|
|
2374
|
-
}
|
|
2375
|
-
interface $UnknownMember {
|
|
2376
|
-
bedrockModelConfig?: never;
|
|
2377
|
-
openAiModelConfig?: never;
|
|
2378
|
-
geminiModelConfig?: never;
|
|
2379
|
-
liteLlmModelConfig?: never;
|
|
2380
|
-
$unknown: [string, any];
|
|
2381
|
-
}
|
|
2382
|
-
interface Visitor<T> {
|
|
2383
|
-
bedrockModelConfig: (value: HarnessBedrockModelConfig) => T;
|
|
2384
|
-
openAiModelConfig: (value: HarnessOpenAiModelConfig) => T;
|
|
2385
|
-
geminiModelConfig: (value: HarnessGeminiModelConfig) => T;
|
|
2386
|
-
liteLlmModelConfig: (value: HarnessLiteLlmModelConfig) => T;
|
|
2387
|
-
_: (name: string, value: any) => T;
|
|
2388
|
-
}
|
|
2389
|
-
}
|
|
2390
|
-
export interface HarnessSkillAwsSkillsSource {
|
|
2391
|
-
paths?: string[] | undefined;
|
|
2392
|
-
}
|
|
2393
2370
|
export interface Unit {}
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
ExtractionType,
|
|
12
12
|
FilterOperator,
|
|
13
13
|
FindingType,
|
|
14
|
+
HarnessOpenAiApiFormat,
|
|
14
15
|
HarnessStatus,
|
|
15
16
|
HarnessToolType,
|
|
16
17
|
HarnessTruncationStrategy,
|
|
@@ -44,11 +45,12 @@ import {
|
|
|
44
45
|
AgentSkillsDescriptor,
|
|
45
46
|
AuthorizerConfiguration,
|
|
46
47
|
FilesystemConfiguration,
|
|
48
|
+
HarnessBedrockModelConfig,
|
|
47
49
|
HarnessEnvironmentArtifact,
|
|
48
50
|
HarnessEnvironmentProviderRequest,
|
|
51
|
+
HarnessGeminiModelConfig,
|
|
52
|
+
HarnessLiteLlmModelConfig,
|
|
49
53
|
HarnessMemoryConfiguration,
|
|
50
|
-
HarnessModelConfiguration,
|
|
51
|
-
HarnessSkillAwsSkillsSource,
|
|
52
54
|
LifecycleConfiguration,
|
|
53
55
|
NetworkConfiguration,
|
|
54
56
|
OAuthCredentialProvider,
|
|
@@ -59,6 +61,68 @@ import {
|
|
|
59
61
|
Unit,
|
|
60
62
|
WorkloadIdentityDetails,
|
|
61
63
|
} from "./models_0";
|
|
64
|
+
export interface HarnessOpenAiModelConfig {
|
|
65
|
+
modelId: string | undefined;
|
|
66
|
+
apiKeyArn: string | undefined;
|
|
67
|
+
maxTokens?: number | undefined;
|
|
68
|
+
temperature?: number | undefined;
|
|
69
|
+
topP?: number | undefined;
|
|
70
|
+
apiFormat?: HarnessOpenAiApiFormat | undefined;
|
|
71
|
+
additionalParams?: __DocumentType | undefined;
|
|
72
|
+
}
|
|
73
|
+
export type HarnessModelConfiguration =
|
|
74
|
+
| HarnessModelConfiguration.BedrockModelConfigMember
|
|
75
|
+
| HarnessModelConfiguration.GeminiModelConfigMember
|
|
76
|
+
| HarnessModelConfiguration.LiteLlmModelConfigMember
|
|
77
|
+
| HarnessModelConfiguration.OpenAiModelConfigMember
|
|
78
|
+
| HarnessModelConfiguration.$UnknownMember;
|
|
79
|
+
export declare namespace HarnessModelConfiguration {
|
|
80
|
+
interface BedrockModelConfigMember {
|
|
81
|
+
bedrockModelConfig: HarnessBedrockModelConfig;
|
|
82
|
+
openAiModelConfig?: never;
|
|
83
|
+
geminiModelConfig?: never;
|
|
84
|
+
liteLlmModelConfig?: never;
|
|
85
|
+
$unknown?: never;
|
|
86
|
+
}
|
|
87
|
+
interface OpenAiModelConfigMember {
|
|
88
|
+
bedrockModelConfig?: never;
|
|
89
|
+
openAiModelConfig: HarnessOpenAiModelConfig;
|
|
90
|
+
geminiModelConfig?: never;
|
|
91
|
+
liteLlmModelConfig?: never;
|
|
92
|
+
$unknown?: never;
|
|
93
|
+
}
|
|
94
|
+
interface GeminiModelConfigMember {
|
|
95
|
+
bedrockModelConfig?: never;
|
|
96
|
+
openAiModelConfig?: never;
|
|
97
|
+
geminiModelConfig: HarnessGeminiModelConfig;
|
|
98
|
+
liteLlmModelConfig?: never;
|
|
99
|
+
$unknown?: never;
|
|
100
|
+
}
|
|
101
|
+
interface LiteLlmModelConfigMember {
|
|
102
|
+
bedrockModelConfig?: never;
|
|
103
|
+
openAiModelConfig?: never;
|
|
104
|
+
geminiModelConfig?: never;
|
|
105
|
+
liteLlmModelConfig: HarnessLiteLlmModelConfig;
|
|
106
|
+
$unknown?: never;
|
|
107
|
+
}
|
|
108
|
+
interface $UnknownMember {
|
|
109
|
+
bedrockModelConfig?: never;
|
|
110
|
+
openAiModelConfig?: never;
|
|
111
|
+
geminiModelConfig?: never;
|
|
112
|
+
liteLlmModelConfig?: never;
|
|
113
|
+
$unknown: [string, any];
|
|
114
|
+
}
|
|
115
|
+
interface Visitor<T> {
|
|
116
|
+
bedrockModelConfig: (value: HarnessBedrockModelConfig) => T;
|
|
117
|
+
openAiModelConfig: (value: HarnessOpenAiModelConfig) => T;
|
|
118
|
+
geminiModelConfig: (value: HarnessGeminiModelConfig) => T;
|
|
119
|
+
liteLlmModelConfig: (value: HarnessLiteLlmModelConfig) => T;
|
|
120
|
+
_: (name: string, value: any) => T;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
export interface HarnessSkillAwsSkillsSource {
|
|
124
|
+
paths?: string[] | undefined;
|
|
125
|
+
}
|
|
62
126
|
export interface HarnessSkillGitAuth {
|
|
63
127
|
credentialArn: string | undefined;
|
|
64
128
|
username?: string | undefined;
|
|
@@ -2969,39 +3033,3 @@ export interface GetRegistryRecordRequest {
|
|
|
2969
3033
|
registryId: string | undefined;
|
|
2970
3034
|
recordId: string | undefined;
|
|
2971
3035
|
}
|
|
2972
|
-
export interface GetRegistryRecordResponse {
|
|
2973
|
-
registryArn: string | undefined;
|
|
2974
|
-
recordArn: string | undefined;
|
|
2975
|
-
recordId: string | undefined;
|
|
2976
|
-
name: string | undefined;
|
|
2977
|
-
description?: string | undefined;
|
|
2978
|
-
descriptorType: DescriptorType | undefined;
|
|
2979
|
-
descriptors: Descriptors | undefined;
|
|
2980
|
-
recordVersion?: string | undefined;
|
|
2981
|
-
status: RegistryRecordStatus | undefined;
|
|
2982
|
-
createdAt: Date | undefined;
|
|
2983
|
-
updatedAt: Date | undefined;
|
|
2984
|
-
statusReason?: string | undefined;
|
|
2985
|
-
synchronizationType?: SynchronizationType | undefined;
|
|
2986
|
-
synchronizationConfiguration?: SynchronizationConfiguration | undefined;
|
|
2987
|
-
}
|
|
2988
|
-
export interface ListRegistryRecordsRequest {
|
|
2989
|
-
registryId: string | undefined;
|
|
2990
|
-
maxResults?: number | undefined;
|
|
2991
|
-
nextToken?: string | undefined;
|
|
2992
|
-
name?: string | undefined;
|
|
2993
|
-
status?: RegistryRecordStatus | undefined;
|
|
2994
|
-
descriptorType?: DescriptorType | undefined;
|
|
2995
|
-
}
|
|
2996
|
-
export interface RegistryRecordSummary {
|
|
2997
|
-
registryArn: string | undefined;
|
|
2998
|
-
recordArn: string | undefined;
|
|
2999
|
-
recordId: string | undefined;
|
|
3000
|
-
name: string | undefined;
|
|
3001
|
-
description?: string | undefined;
|
|
3002
|
-
descriptorType: DescriptorType | undefined;
|
|
3003
|
-
recordVersion: string | undefined;
|
|
3004
|
-
status: RegistryRecordStatus | undefined;
|
|
3005
|
-
createdAt: Date | undefined;
|
|
3006
|
-
updatedAt: Date | undefined;
|
|
3007
|
-
}
|
|
@@ -30,13 +30,48 @@ import {
|
|
|
30
30
|
import {
|
|
31
31
|
CustomDescriptor,
|
|
32
32
|
Descriptors,
|
|
33
|
-
RegistryRecordSummary,
|
|
34
33
|
ServerDefinition,
|
|
35
34
|
SynchronizationConfiguration,
|
|
36
35
|
ToolsDefinition,
|
|
37
36
|
UpdatedAuthorizerConfiguration,
|
|
38
37
|
UpdatedDescription,
|
|
39
38
|
} from "./models_1";
|
|
39
|
+
export interface GetRegistryRecordResponse {
|
|
40
|
+
registryArn: string | undefined;
|
|
41
|
+
recordArn: string | undefined;
|
|
42
|
+
recordId: string | undefined;
|
|
43
|
+
name: string | undefined;
|
|
44
|
+
description?: string | undefined;
|
|
45
|
+
descriptorType: DescriptorType | undefined;
|
|
46
|
+
descriptors: Descriptors | undefined;
|
|
47
|
+
recordVersion?: string | undefined;
|
|
48
|
+
status: RegistryRecordStatus | undefined;
|
|
49
|
+
createdAt: Date | undefined;
|
|
50
|
+
updatedAt: Date | undefined;
|
|
51
|
+
statusReason?: string | undefined;
|
|
52
|
+
synchronizationType?: SynchronizationType | undefined;
|
|
53
|
+
synchronizationConfiguration?: SynchronizationConfiguration | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface ListRegistryRecordsRequest {
|
|
56
|
+
registryId: string | undefined;
|
|
57
|
+
maxResults?: number | undefined;
|
|
58
|
+
nextToken?: string | undefined;
|
|
59
|
+
name?: string | undefined;
|
|
60
|
+
status?: RegistryRecordStatus | undefined;
|
|
61
|
+
descriptorType?: DescriptorType | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface RegistryRecordSummary {
|
|
64
|
+
registryArn: string | undefined;
|
|
65
|
+
recordArn: string | undefined;
|
|
66
|
+
recordId: string | undefined;
|
|
67
|
+
name: string | undefined;
|
|
68
|
+
description?: string | undefined;
|
|
69
|
+
descriptorType: DescriptorType | undefined;
|
|
70
|
+
recordVersion: string | undefined;
|
|
71
|
+
status: RegistryRecordStatus | undefined;
|
|
72
|
+
createdAt: Date | undefined;
|
|
73
|
+
updatedAt: Date | undefined;
|
|
74
|
+
}
|
|
40
75
|
export interface ListRegistryRecordsResponse {
|
|
41
76
|
registryRecords: RegistryRecordSummary[] | undefined;
|
|
42
77
|
nextToken?: string | undefined;
|
|
@@ -185,6 +185,7 @@ export declare var DeleteWorkloadIdentityRequest$: StaticStructureSchema;
|
|
|
185
185
|
export declare var DeleteWorkloadIdentityResponse$: StaticStructureSchema;
|
|
186
186
|
export declare var Descriptors$: StaticStructureSchema;
|
|
187
187
|
export declare var EfsAccessPointConfiguration$: StaticStructureSchema;
|
|
188
|
+
export declare var EfsConfiguration$: StaticStructureSchema;
|
|
188
189
|
export declare var EpisodicConsolidationOverride$: StaticStructureSchema;
|
|
189
190
|
export declare var EpisodicExtractionOverride$: StaticStructureSchema;
|
|
190
191
|
export declare var EpisodicMemoryStrategyInput$: StaticStructureSchema;
|
|
@@ -465,6 +466,7 @@ export declare var RuntimeMetadataConfiguration$: StaticStructureSchema;
|
|
|
465
466
|
export declare var RuntimeTargetConfiguration$: StaticStructureSchema;
|
|
466
467
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
467
468
|
export declare var S3FilesAccessPointConfiguration$: StaticStructureSchema;
|
|
469
|
+
export declare var S3FilesConfiguration$: StaticStructureSchema;
|
|
468
470
|
export declare var S3Location$: StaticStructureSchema;
|
|
469
471
|
export declare var S3Source$: StaticStructureSchema;
|
|
470
472
|
export declare var SalesforceOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
@@ -682,6 +684,7 @@ export declare var SelfManagedLatticeResource$: StaticUnionSchema;
|
|
|
682
684
|
export declare var StreamDeliveryResource$: StaticUnionSchema;
|
|
683
685
|
export declare var TargetConfiguration$: StaticUnionSchema;
|
|
684
686
|
export declare var ToolSchema$: StaticUnionSchema;
|
|
687
|
+
export declare var ToolsFileSystemConfiguration$: StaticUnionSchema;
|
|
685
688
|
export declare var TriggerCondition$: StaticUnionSchema;
|
|
686
689
|
export declare var TriggerConditionInput$: StaticUnionSchema;
|
|
687
690
|
export declare var Validation$: StaticUnionSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1094.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bedrock-agentcore-control",
|
|
6
6
|
"license": "Apache-2.0",
|