@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.
- package/dist-cjs/index.js +16 -0
- package/dist-cjs/schemas/schemas_0.js +135 -80
- package/dist-es/models/enums.js +13 -0
- package/dist-es/schemas/schemas_0.js +124 -69
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/CreateHarnessCommand.d.ts +48 -0
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/commands/DeleteHarnessCommand.d.ts +24 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetHarnessCommand.d.ts +24 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +1 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/UpdateHarnessCommand.d.ts +48 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/models/enums.d.ts +52 -0
- package/dist-types/models/models_0.d.ts +228 -86
- package/dist-types/models/models_1.d.ts +298 -88
- package/dist-types/models/models_2.d.ts +70 -0
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -23
- package/dist-types/ts3.4/models/models_1.d.ts +76 -37
- package/dist-types/ts3.4/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- 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;
|