@aws-sdk/client-bedrock-agentcore-control 3.1055.0 → 3.1057.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 (35) hide show
  1. package/dist-cjs/index.js +16 -0
  2. package/dist-cjs/schemas/schemas_0.js +135 -80
  3. package/dist-es/models/enums.js +13 -0
  4. package/dist-es/schemas/schemas_0.js +124 -69
  5. package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
  6. package/dist-types/commands/CreateHarnessCommand.d.ts +48 -0
  7. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
  8. package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
  9. package/dist-types/commands/DeleteHarnessCommand.d.ts +24 -0
  10. package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
  11. package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
  12. package/dist-types/commands/GetHarnessCommand.d.ts +24 -0
  13. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
  14. package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
  15. package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
  16. package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +1 -0
  17. package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -2
  18. package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
  19. package/dist-types/commands/UpdateHarnessCommand.d.ts +48 -0
  20. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +53 -18
  21. package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +32 -4
  22. package/dist-types/models/enums.d.ts +52 -0
  23. package/dist-types/models/models_0.d.ts +228 -86
  24. package/dist-types/models/models_1.d.ts +298 -88
  25. package/dist-types/models/models_2.d.ts +70 -0
  26. package/dist-types/schemas/schemas_0.d.ts +5 -0
  27. package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/models/enums.d.ts +19 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +78 -23
  32. package/dist-types/ts3.4/models/models_1.d.ts +76 -37
  33. package/dist-types/ts3.4/models/models_2.d.ts +18 -0
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
  35. package/package.json +6 -6
package/dist-cjs/index.js CHANGED
@@ -2505,6 +2505,10 @@ const AgentRuntimeStatus = {
2505
2505
  UPDATE_FAILED: "UPDATE_FAILED",
2506
2506
  UPDATING: "UPDATING",
2507
2507
  };
2508
+ const SecretSourceType = {
2509
+ EXTERNAL: "EXTERNAL",
2510
+ MANAGED: "MANAGED",
2511
+ };
2508
2512
  const BrowserProfileStatus = {
2509
2513
  DELETED: "DELETED",
2510
2514
  DELETING: "DELETING",
@@ -2682,6 +2686,15 @@ const KeyType = {
2682
2686
  CustomerManagedKey: "CustomerManagedKey",
2683
2687
  ServiceManagedKey: "ServiceManagedKey",
2684
2688
  };
2689
+ const HarnessBedrockApiFormat = {
2690
+ CHAT_COMPLETIONS: "chat_completions",
2691
+ CONVERSE_STREAM: "converse_stream",
2692
+ RESPONSES: "responses",
2693
+ };
2694
+ const HarnessOpenAiApiFormat = {
2695
+ CHAT_COMPLETIONS: "chat_completions",
2696
+ RESPONSES: "responses",
2697
+ };
2685
2698
  const HarnessToolType = {
2686
2699
  AGENTCORE_BROWSER: "agentcore_browser",
2687
2700
  AGENTCORE_CODE_INTERPRETER: "agentcore_code_interpreter",
@@ -3044,6 +3057,8 @@ exports.GetRegistryRecordCommand = GetRegistryRecordCommand;
3044
3057
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
3045
3058
  exports.GetTokenVaultCommand = GetTokenVaultCommand;
3046
3059
  exports.GetWorkloadIdentityCommand = GetWorkloadIdentityCommand;
3060
+ exports.HarnessBedrockApiFormat = HarnessBedrockApiFormat;
3061
+ exports.HarnessOpenAiApiFormat = HarnessOpenAiApiFormat;
3047
3062
  exports.HarnessStatus = HarnessStatus;
3048
3063
  exports.HarnessToolType = HarnessToolType;
3049
3064
  exports.HarnessTruncationStrategy = HarnessTruncationStrategy;
@@ -3116,6 +3131,7 @@ exports.ResourceType = ResourceType;
3116
3131
  exports.RestApiMethod = RestApiMethod;
3117
3132
  exports.SchemaType = SchemaType;
3118
3133
  exports.SearchType = SearchType;
3134
+ exports.SecretSourceType = SecretSourceType;
3119
3135
  exports.ServerProtocol = ServerProtocol;
3120
3136
  exports.SetTokenVaultCMKCommand = SetTokenVaultCMKCommand;
3121
3137
  exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;