@aws-sdk/client-bedrock-agentcore-control 3.1039.0 → 3.1041.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 (28) hide show
  1. package/dist-cjs/index.js +24 -0
  2. package/dist-cjs/schemas/schemas_0.js +154 -49
  3. package/dist-es/models/enums.js +20 -0
  4. package/dist-es/schemas/schemas_0.js +144 -40
  5. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
  6. package/dist-types/commands/CreateHarnessCommand.d.ts +2 -2
  7. package/dist-types/commands/CreateMemoryCommand.d.ts +233 -2
  8. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +22 -2
  9. package/dist-types/commands/DeleteHarnessCommand.d.ts +1 -1
  10. package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
  11. package/dist-types/commands/GetHarnessCommand.d.ts +1 -1
  12. package/dist-types/commands/GetMemoryCommand.d.ts +69 -0
  13. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +10 -0
  14. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
  15. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
  16. package/dist-types/commands/UpdateHarnessCommand.d.ts +2 -2
  17. package/dist-types/commands/UpdateMemoryCommand.d.ts +235 -0
  18. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +22 -2
  19. package/dist-types/models/enums.d.ts +60 -0
  20. package/dist-types/models/models_0.d.ts +240 -250
  21. package/dist-types/models/models_1.d.ts +340 -4
  22. package/dist-types/schemas/schemas_0.d.ts +11 -0
  23. package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +1 -2
  24. package/dist-types/ts3.4/models/enums.d.ts +28 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +90 -103
  26. package/dist-types/ts3.4/models/models_1.d.ts +130 -4
  27. package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
  28. package/package.json +5 -5
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;