@aws-sdk/client-bedrock-agentcore-control 3.1039.0 → 3.1040.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 +24 -0
- package/dist-cjs/schemas/schemas_0.js +154 -49
- package/dist-es/models/enums.js +20 -0
- package/dist-es/schemas/schemas_0.js +144 -40
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/CreateHarnessCommand.d.ts +2 -2
- package/dist-types/commands/CreateMemoryCommand.d.ts +233 -2
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +22 -2
- package/dist-types/commands/DeleteHarnessCommand.d.ts +1 -1
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +1 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +69 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +10 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHarnessCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMemoryCommand.d.ts +235 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +22 -2
- package/dist-types/models/enums.d.ts +60 -0
- package/dist-types/models/models_0.d.ts +240 -250
- package/dist-types/models/models_1.d.ts +340 -4
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/enums.d.ts +28 -0
- package/dist-types/ts3.4/models/models_0.d.ts +90 -103
- package/dist-types/ts3.4/models/models_1.d.ts +130 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -2000,6 +2000,11 @@ class BedrockAgentCoreControl extends BedrockAgentCoreControlClient {
|
|
|
2000
2000
|
}
|
|
2001
2001
|
smithyClient.createAggregatedClient(commands, BedrockAgentCoreControl, { paginators, waiters });
|
|
2002
2002
|
|
|
2003
|
+
const ActorTokenContentType = {
|
|
2004
|
+
AWS_IAM_ID_TOKEN_JWT: "AWS_IAM_ID_TOKEN_JWT",
|
|
2005
|
+
M2M: "M2M",
|
|
2006
|
+
NONE: "NONE",
|
|
2007
|
+
};
|
|
2003
2008
|
const AgentRuntimeEndpointStatus = {
|
|
2004
2009
|
CREATE_FAILED: "CREATE_FAILED",
|
|
2005
2010
|
CREATING: "CREATING",
|
|
@@ -2172,6 +2177,7 @@ const ApiKeyCredentialLocation = {
|
|
|
2172
2177
|
const OAuthGrantType = {
|
|
2173
2178
|
AUTHORIZATION_CODE: "AUTHORIZATION_CODE",
|
|
2174
2179
|
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
2180
|
+
TOKEN_EXCHANGE: "TOKEN_EXCHANGE",
|
|
2175
2181
|
};
|
|
2176
2182
|
const CredentialProviderType = {
|
|
2177
2183
|
API_KEY: "API_KEY",
|
|
@@ -2243,6 +2249,11 @@ const HarnessStatus = {
|
|
|
2243
2249
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
2244
2250
|
UPDATING: "UPDATING",
|
|
2245
2251
|
};
|
|
2252
|
+
const MetadataValueType = {
|
|
2253
|
+
NUMBER: "NUMBER",
|
|
2254
|
+
STRING: "STRING",
|
|
2255
|
+
STRINGLIST: "STRINGLIST",
|
|
2256
|
+
};
|
|
2246
2257
|
const ContentLevel = {
|
|
2247
2258
|
FULL_CONTENT: "FULL_CONTENT",
|
|
2248
2259
|
METADATA_ONLY: "METADATA_ONLY",
|
|
@@ -2307,6 +2318,15 @@ const CredentialProviderVendorType = {
|
|
|
2307
2318
|
YandexOauth2: "YandexOauth2",
|
|
2308
2319
|
ZoomOauth2: "ZoomOauth2",
|
|
2309
2320
|
};
|
|
2321
|
+
const ClientAuthenticationMethodType = {
|
|
2322
|
+
AWS_IAM_ID_TOKEN_JWT: "AWS_IAM_ID_TOKEN_JWT",
|
|
2323
|
+
CLIENT_SECRET_BASIC: "CLIENT_SECRET_BASIC",
|
|
2324
|
+
CLIENT_SECRET_POST: "CLIENT_SECRET_POST",
|
|
2325
|
+
};
|
|
2326
|
+
const OnBehalfOfTokenExchangeGrantTypeType = {
|
|
2327
|
+
JWT_AUTHORIZATION_GRANT: "JWT_AUTHORIZATION_GRANT",
|
|
2328
|
+
TOKEN_EXCHANGE: "TOKEN_EXCHANGE",
|
|
2329
|
+
};
|
|
2310
2330
|
const Status = {
|
|
2311
2331
|
CREATE_FAILED: "CREATE_FAILED",
|
|
2312
2332
|
CREATING: "CREATING",
|
|
@@ -2420,6 +2440,7 @@ const RegistryStatus = {
|
|
|
2420
2440
|
exports.$Command = smithyClient.Command;
|
|
2421
2441
|
exports.__Client = smithyClient.Client;
|
|
2422
2442
|
exports.BedrockAgentCoreControlServiceException = BedrockAgentCoreControlServiceException.BedrockAgentCoreControlServiceException;
|
|
2443
|
+
exports.ActorTokenContentType = ActorTokenContentType;
|
|
2423
2444
|
exports.AgentManagedRuntimeType = AgentManagedRuntimeType;
|
|
2424
2445
|
exports.AgentRuntimeEndpointStatus = AgentRuntimeEndpointStatus;
|
|
2425
2446
|
exports.AgentRuntimeStatus = AgentRuntimeStatus;
|
|
@@ -2432,6 +2453,7 @@ exports.BrowserNetworkMode = BrowserNetworkMode;
|
|
|
2432
2453
|
exports.BrowserProfileStatus = BrowserProfileStatus;
|
|
2433
2454
|
exports.BrowserStatus = BrowserStatus;
|
|
2434
2455
|
exports.ClaimMatchOperatorType = ClaimMatchOperatorType;
|
|
2456
|
+
exports.ClientAuthenticationMethodType = ClientAuthenticationMethodType;
|
|
2435
2457
|
exports.CodeInterpreterNetworkMode = CodeInterpreterNetworkMode;
|
|
2436
2458
|
exports.CodeInterpreterStatus = CodeInterpreterStatus;
|
|
2437
2459
|
exports.ConfigurationBundleStatus = ConfigurationBundleStatus;
|
|
@@ -2553,8 +2575,10 @@ exports.MemoryStatus = MemoryStatus;
|
|
|
2553
2575
|
exports.MemoryStrategyStatus = MemoryStrategyStatus;
|
|
2554
2576
|
exports.MemoryStrategyType = MemoryStrategyType;
|
|
2555
2577
|
exports.MemoryView = MemoryView;
|
|
2578
|
+
exports.MetadataValueType = MetadataValueType;
|
|
2556
2579
|
exports.NetworkMode = NetworkMode;
|
|
2557
2580
|
exports.OAuthGrantType = OAuthGrantType;
|
|
2581
|
+
exports.OnBehalfOfTokenExchangeGrantTypeType = OnBehalfOfTokenExchangeGrantTypeType;
|
|
2558
2582
|
exports.OnlineEvaluationConfigStatus = OnlineEvaluationConfigStatus;
|
|
2559
2583
|
exports.OnlineEvaluationExecutionStatus = OnlineEvaluationExecutionStatus;
|
|
2560
2584
|
exports.OverrideType = OverrideType;
|