@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import type { AgentManagedRuntimeType, AgentRuntimeEndpointStatus, AgentRuntimeStatus, ApiKeyCredentialLocation, AuthorizerType, BrowserEnterprisePolicyType, BrowserNetworkMode, BrowserProfileStatus, BrowserStatus, ClaimMatchOperatorType, CodeInterpreterNetworkMode, CodeInterpreterStatus, ConfigurationBundleStatus, CredentialProviderType, DatasetSchemaType, DatasetStatus, DraftStatus, EndpointIpAddressType, EvaluatorLevel, EvaluatorStatus, EvaluatorType, ExceptionLevel, GatewayInterceptionPoint, GatewayPolicyEngineMode, GatewayProtocolType, GatewayRuleStatus, GatewayStatus, HarnessStatus, HarnessToolType, HarnessTruncationStrategy, InboundTokenClaimValueType, IncludedData, KeyType, ListingMode,
|
|
2
|
+
import type { AgentManagedRuntimeType, AgentRuntimeEndpointStatus, AgentRuntimeStatus, ApiKeyCredentialLocation, AuthorizerType, BrowserEnterprisePolicyType, BrowserNetworkMode, BrowserProfileStatus, BrowserStatus, ClaimMatchOperatorType, CodeInterpreterNetworkMode, CodeInterpreterStatus, ConfigurationBundleStatus, CredentialProviderType, DatasetSchemaType, DatasetStatus, DraftStatus, EndpointIpAddressType, EvaluatorLevel, EvaluatorStatus, EvaluatorType, ExceptionLevel, GatewayInterceptionPoint, GatewayPolicyEngineMode, GatewayProtocolType, GatewayRuleStatus, GatewayStatus, HarnessBedrockApiFormat, HarnessOpenAiApiFormat, HarnessStatus, HarnessToolType, HarnessTruncationStrategy, InboundTokenClaimValueType, IncludedData, KeyType, ListingMode, NetworkMode, OAuthGrantType, PrincipalMatchOperator, ResourceType, RestApiMethod, SearchType, SecretSourceType, ServerProtocol, TargetStatus } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* <p>The agent card definition for an A2A descriptor. Contains the schema version and inline content for the agent card.</p>
|
|
5
5
|
* @public
|
|
@@ -1932,6 +1932,22 @@ export interface AgentSkillsDescriptor {
|
|
|
1932
1932
|
*/
|
|
1933
1933
|
skillDefinition?: SkillDefinition | undefined;
|
|
1934
1934
|
}
|
|
1935
|
+
/**
|
|
1936
|
+
* <p>Contains a reference to a secret stored in AWS Secrets Manager.</p>
|
|
1937
|
+
* @public
|
|
1938
|
+
*/
|
|
1939
|
+
export interface SecretReference {
|
|
1940
|
+
/**
|
|
1941
|
+
* <p>The ID of the AWS Secrets Manager secret that stores the secret value.</p>
|
|
1942
|
+
* @public
|
|
1943
|
+
*/
|
|
1944
|
+
secretId: string | undefined;
|
|
1945
|
+
/**
|
|
1946
|
+
* <p>The JSON key used to extract the secret value from the AWS Secrets Manager secret.</p>
|
|
1947
|
+
* @public
|
|
1948
|
+
*/
|
|
1949
|
+
jsonKey: string | undefined;
|
|
1950
|
+
}
|
|
1935
1951
|
/**
|
|
1936
1952
|
* @public
|
|
1937
1953
|
*/
|
|
@@ -1945,7 +1961,17 @@ export interface CreateApiKeyCredentialProviderRequest {
|
|
|
1945
1961
|
* <p>The API key to use for authentication. This value is encrypted and stored securely.</p>
|
|
1946
1962
|
* @public
|
|
1947
1963
|
*/
|
|
1948
|
-
apiKey
|
|
1964
|
+
apiKey?: string | undefined;
|
|
1965
|
+
/**
|
|
1966
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the API key. This includes the secret ID and the JSON key used to extract the API key value from the secret. Required when <code>apiKeySecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
1967
|
+
* @public
|
|
1968
|
+
*/
|
|
1969
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
1970
|
+
/**
|
|
1971
|
+
* <p>The source type of the API key secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
1972
|
+
* @public
|
|
1973
|
+
*/
|
|
1974
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
1949
1975
|
/**
|
|
1950
1976
|
* <p>A map of tag keys and values to assign to the API key credential provider. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
|
|
1951
1977
|
* @public
|
|
@@ -1972,6 +1998,16 @@ export interface CreateApiKeyCredentialProviderResponse {
|
|
|
1972
1998
|
* @public
|
|
1973
1999
|
*/
|
|
1974
2000
|
apiKeySecretArn: Secret | undefined;
|
|
2001
|
+
/**
|
|
2002
|
+
* <p>The JSON key used to extract the API key value from the AWS Secrets Manager secret.</p>
|
|
2003
|
+
* @public
|
|
2004
|
+
*/
|
|
2005
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
2006
|
+
/**
|
|
2007
|
+
* <p>The source type of the API key secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
2008
|
+
* @public
|
|
2009
|
+
*/
|
|
2010
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
1975
2011
|
/**
|
|
1976
2012
|
* <p>The name of the created API key credential provider.</p>
|
|
1977
2013
|
* @public
|
|
@@ -2017,6 +2053,16 @@ export interface GetApiKeyCredentialProviderResponse {
|
|
|
2017
2053
|
* @public
|
|
2018
2054
|
*/
|
|
2019
2055
|
apiKeySecretArn: Secret | undefined;
|
|
2056
|
+
/**
|
|
2057
|
+
* <p>The JSON key used to extract the API key value from the AWS Secrets Manager secret.</p>
|
|
2058
|
+
* @public
|
|
2059
|
+
*/
|
|
2060
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
2061
|
+
/**
|
|
2062
|
+
* <p>The source type of the API key secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
2063
|
+
* @public
|
|
2064
|
+
*/
|
|
2065
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
2020
2066
|
/**
|
|
2021
2067
|
* <p>The name of the API key credential provider.</p>
|
|
2022
2068
|
* @public
|
|
@@ -2107,7 +2153,17 @@ export interface UpdateApiKeyCredentialProviderRequest {
|
|
|
2107
2153
|
* <p>The new API key to use for authentication. This value replaces the existing API key and is encrypted and stored securely.</p>
|
|
2108
2154
|
* @public
|
|
2109
2155
|
*/
|
|
2110
|
-
apiKey
|
|
2156
|
+
apiKey?: string | undefined;
|
|
2157
|
+
/**
|
|
2158
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the API key. This includes the secret ID and the JSON key used to extract the API key value from the secret. Required when <code>apiKeySecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2159
|
+
* @public
|
|
2160
|
+
*/
|
|
2161
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
2162
|
+
/**
|
|
2163
|
+
* <p>The source type of the API key secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2164
|
+
* @public
|
|
2165
|
+
*/
|
|
2166
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
2111
2167
|
}
|
|
2112
2168
|
/**
|
|
2113
2169
|
* @public
|
|
@@ -2118,6 +2174,16 @@ export interface UpdateApiKeyCredentialProviderResponse {
|
|
|
2118
2174
|
* @public
|
|
2119
2175
|
*/
|
|
2120
2176
|
apiKeySecretArn: Secret | undefined;
|
|
2177
|
+
/**
|
|
2178
|
+
* <p>The JSON key used to extract the API key value from the AWS Secrets Manager secret.</p>
|
|
2179
|
+
* @public
|
|
2180
|
+
*/
|
|
2181
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
2182
|
+
/**
|
|
2183
|
+
* <p>The source type of the API key secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
2184
|
+
* @public
|
|
2185
|
+
*/
|
|
2186
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
2121
2187
|
/**
|
|
2122
2188
|
* <p>The name of the API key credential provider.</p>
|
|
2123
2189
|
* @public
|
|
@@ -3404,6 +3470,11 @@ export interface ConfigurationBundleSummary {
|
|
|
3404
3470
|
* @public
|
|
3405
3471
|
*/
|
|
3406
3472
|
description?: string | undefined;
|
|
3473
|
+
/**
|
|
3474
|
+
* <p>The timestamp when the configuration bundle was created.</p>
|
|
3475
|
+
* @public
|
|
3476
|
+
*/
|
|
3477
|
+
createdAt?: Date | undefined;
|
|
3407
3478
|
}
|
|
3408
3479
|
/**
|
|
3409
3480
|
* @public
|
|
@@ -6950,6 +7021,16 @@ export interface HarnessBedrockModelConfig {
|
|
|
6950
7021
|
* @public
|
|
6951
7022
|
*/
|
|
6952
7023
|
topP?: number | undefined;
|
|
7024
|
+
/**
|
|
7025
|
+
* <p>The API format to use when calling the Bedrock provider.</p>
|
|
7026
|
+
* @public
|
|
7027
|
+
*/
|
|
7028
|
+
apiFormat?: HarnessBedrockApiFormat | undefined;
|
|
7029
|
+
/**
|
|
7030
|
+
* <p>Provider-specific parameters passed through to the model provider unchanged.</p>
|
|
7031
|
+
* @public
|
|
7032
|
+
*/
|
|
7033
|
+
additionalParams?: __DocumentType | undefined;
|
|
6953
7034
|
}
|
|
6954
7035
|
/**
|
|
6955
7036
|
* <p>Configuration for a Google Gemini model provider. Requires an API key stored in AgentCore Identity.</p>
|
|
@@ -6987,6 +7068,47 @@ export interface HarnessGeminiModelConfig {
|
|
|
6987
7068
|
*/
|
|
6988
7069
|
topK?: number | undefined;
|
|
6989
7070
|
}
|
|
7071
|
+
/**
|
|
7072
|
+
* <p>Configuration for a LiteLLM model provider, enabling connection to third-party model providers.</p>
|
|
7073
|
+
* @public
|
|
7074
|
+
*/
|
|
7075
|
+
export interface HarnessLiteLlmModelConfig {
|
|
7076
|
+
/**
|
|
7077
|
+
* <p>The LiteLLM model identifier (e.g., "anthropic/claude-3-sonnet").</p>
|
|
7078
|
+
* @public
|
|
7079
|
+
*/
|
|
7080
|
+
modelId: string | undefined;
|
|
7081
|
+
/**
|
|
7082
|
+
* <p>The ARN of the API key in AgentCore Identity for authenticating with the model provider.</p>
|
|
7083
|
+
* @public
|
|
7084
|
+
*/
|
|
7085
|
+
apiKeyArn?: string | undefined;
|
|
7086
|
+
/**
|
|
7087
|
+
* <p>The base URL for the model provider's API endpoint.</p>
|
|
7088
|
+
* @public
|
|
7089
|
+
*/
|
|
7090
|
+
apiBase?: string | undefined;
|
|
7091
|
+
/**
|
|
7092
|
+
* <p>The maximum number of tokens to allow in the generated response per iteration.</p>
|
|
7093
|
+
* @public
|
|
7094
|
+
*/
|
|
7095
|
+
maxTokens?: number | undefined;
|
|
7096
|
+
/**
|
|
7097
|
+
* <p>The temperature to set when calling the model.</p>
|
|
7098
|
+
* @public
|
|
7099
|
+
*/
|
|
7100
|
+
temperature?: number | undefined;
|
|
7101
|
+
/**
|
|
7102
|
+
* <p>The topP set when calling the model.</p>
|
|
7103
|
+
* @public
|
|
7104
|
+
*/
|
|
7105
|
+
topP?: number | undefined;
|
|
7106
|
+
/**
|
|
7107
|
+
* <p>Provider-specific parameters passed through to the model provider unchanged.</p>
|
|
7108
|
+
* @public
|
|
7109
|
+
*/
|
|
7110
|
+
additionalParams?: __DocumentType | undefined;
|
|
7111
|
+
}
|
|
6990
7112
|
/**
|
|
6991
7113
|
* <p>Configuration for an OpenAI model provider. Requires an API key stored in AgentCore Identity.</p>
|
|
6992
7114
|
* @public
|
|
@@ -7017,12 +7139,22 @@ export interface HarnessOpenAiModelConfig {
|
|
|
7017
7139
|
* @public
|
|
7018
7140
|
*/
|
|
7019
7141
|
topP?: number | undefined;
|
|
7142
|
+
/**
|
|
7143
|
+
* <p>The API format to use when calling the OpenAI provider.</p>
|
|
7144
|
+
* @public
|
|
7145
|
+
*/
|
|
7146
|
+
apiFormat?: HarnessOpenAiApiFormat | undefined;
|
|
7147
|
+
/**
|
|
7148
|
+
* <p>Provider-specific parameters passed through to the model provider unchanged.</p>
|
|
7149
|
+
* @public
|
|
7150
|
+
*/
|
|
7151
|
+
additionalParams?: __DocumentType | undefined;
|
|
7020
7152
|
}
|
|
7021
7153
|
/**
|
|
7022
7154
|
* <p>Specification of which model to use.</p>
|
|
7023
7155
|
* @public
|
|
7024
7156
|
*/
|
|
7025
|
-
export type HarnessModelConfiguration = HarnessModelConfiguration.BedrockModelConfigMember | HarnessModelConfiguration.GeminiModelConfigMember | HarnessModelConfiguration.OpenAiModelConfigMember | HarnessModelConfiguration.$UnknownMember;
|
|
7157
|
+
export type HarnessModelConfiguration = HarnessModelConfiguration.BedrockModelConfigMember | HarnessModelConfiguration.GeminiModelConfigMember | HarnessModelConfiguration.LiteLlmModelConfigMember | HarnessModelConfiguration.OpenAiModelConfigMember | HarnessModelConfiguration.$UnknownMember;
|
|
7026
7158
|
/**
|
|
7027
7159
|
* @public
|
|
7028
7160
|
*/
|
|
@@ -7035,6 +7167,7 @@ export declare namespace HarnessModelConfiguration {
|
|
|
7035
7167
|
bedrockModelConfig: HarnessBedrockModelConfig;
|
|
7036
7168
|
openAiModelConfig?: never;
|
|
7037
7169
|
geminiModelConfig?: never;
|
|
7170
|
+
liteLlmModelConfig?: never;
|
|
7038
7171
|
$unknown?: never;
|
|
7039
7172
|
}
|
|
7040
7173
|
/**
|
|
@@ -7045,6 +7178,7 @@ export declare namespace HarnessModelConfiguration {
|
|
|
7045
7178
|
bedrockModelConfig?: never;
|
|
7046
7179
|
openAiModelConfig: HarnessOpenAiModelConfig;
|
|
7047
7180
|
geminiModelConfig?: never;
|
|
7181
|
+
liteLlmModelConfig?: never;
|
|
7048
7182
|
$unknown?: never;
|
|
7049
7183
|
}
|
|
7050
7184
|
/**
|
|
@@ -7055,6 +7189,18 @@ export declare namespace HarnessModelConfiguration {
|
|
|
7055
7189
|
bedrockModelConfig?: never;
|
|
7056
7190
|
openAiModelConfig?: never;
|
|
7057
7191
|
geminiModelConfig: HarnessGeminiModelConfig;
|
|
7192
|
+
liteLlmModelConfig?: never;
|
|
7193
|
+
$unknown?: never;
|
|
7194
|
+
}
|
|
7195
|
+
/**
|
|
7196
|
+
* <p>The LiteLLM model configuration for connecting to third-party model providers.</p>
|
|
7197
|
+
* @public
|
|
7198
|
+
*/
|
|
7199
|
+
interface LiteLlmModelConfigMember {
|
|
7200
|
+
bedrockModelConfig?: never;
|
|
7201
|
+
openAiModelConfig?: never;
|
|
7202
|
+
geminiModelConfig?: never;
|
|
7203
|
+
liteLlmModelConfig: HarnessLiteLlmModelConfig;
|
|
7058
7204
|
$unknown?: never;
|
|
7059
7205
|
}
|
|
7060
7206
|
/**
|
|
@@ -7064,6 +7210,7 @@ export declare namespace HarnessModelConfiguration {
|
|
|
7064
7210
|
bedrockModelConfig?: never;
|
|
7065
7211
|
openAiModelConfig?: never;
|
|
7066
7212
|
geminiModelConfig?: never;
|
|
7213
|
+
liteLlmModelConfig?: never;
|
|
7067
7214
|
$unknown: [string, any];
|
|
7068
7215
|
}
|
|
7069
7216
|
/**
|
|
@@ -7074,14 +7221,63 @@ export declare namespace HarnessModelConfiguration {
|
|
|
7074
7221
|
bedrockModelConfig: (value: HarnessBedrockModelConfig) => T;
|
|
7075
7222
|
openAiModelConfig: (value: HarnessOpenAiModelConfig) => T;
|
|
7076
7223
|
geminiModelConfig: (value: HarnessGeminiModelConfig) => T;
|
|
7224
|
+
liteLlmModelConfig: (value: HarnessLiteLlmModelConfig) => T;
|
|
7077
7225
|
_: (name: string, value: any) => T;
|
|
7078
7226
|
}
|
|
7079
7227
|
}
|
|
7228
|
+
/**
|
|
7229
|
+
* <p>Authentication configuration for accessing a private git repository.</p>
|
|
7230
|
+
* @public
|
|
7231
|
+
*/
|
|
7232
|
+
export interface HarnessSkillGitAuth {
|
|
7233
|
+
/**
|
|
7234
|
+
* <p>The ARN of the credential in AgentCore Identity containing the password or personal access token.</p>
|
|
7235
|
+
* @public
|
|
7236
|
+
*/
|
|
7237
|
+
credentialArn: string | undefined;
|
|
7238
|
+
/**
|
|
7239
|
+
* <p>Username for authentication. Defaults to 'oauth2' if not specified.</p>
|
|
7240
|
+
* @public
|
|
7241
|
+
*/
|
|
7242
|
+
username?: string | undefined;
|
|
7243
|
+
}
|
|
7244
|
+
/**
|
|
7245
|
+
* <p>A git repository source for a skill.</p>
|
|
7246
|
+
* @public
|
|
7247
|
+
*/
|
|
7248
|
+
export interface HarnessSkillGitSource {
|
|
7249
|
+
/**
|
|
7250
|
+
* <p>The HTTPS URL of the git repository.</p>
|
|
7251
|
+
* @public
|
|
7252
|
+
*/
|
|
7253
|
+
url: string | undefined;
|
|
7254
|
+
/**
|
|
7255
|
+
* <p>Subdirectory within the repository containing the skill.</p>
|
|
7256
|
+
* @public
|
|
7257
|
+
*/
|
|
7258
|
+
path?: string | undefined;
|
|
7259
|
+
/**
|
|
7260
|
+
* <p>Authentication configuration for private repositories.</p>
|
|
7261
|
+
* @public
|
|
7262
|
+
*/
|
|
7263
|
+
auth?: HarnessSkillGitAuth | undefined;
|
|
7264
|
+
}
|
|
7265
|
+
/**
|
|
7266
|
+
* <p>An S3 source for a skill.</p>
|
|
7267
|
+
* @public
|
|
7268
|
+
*/
|
|
7269
|
+
export interface HarnessSkillS3Source {
|
|
7270
|
+
/**
|
|
7271
|
+
* <p>The S3 URI pointing to the skill directory (e.g., s3://bucket/skills/my-skill/).</p>
|
|
7272
|
+
* @public
|
|
7273
|
+
*/
|
|
7274
|
+
uri: string | undefined;
|
|
7275
|
+
}
|
|
7080
7276
|
/**
|
|
7081
7277
|
* <p>A skill available to the agent.</p>
|
|
7082
7278
|
* @public
|
|
7083
7279
|
*/
|
|
7084
|
-
export type HarnessSkill = HarnessSkill.PathMember | HarnessSkill.$UnknownMember;
|
|
7280
|
+
export type HarnessSkill = HarnessSkill.GitMember | HarnessSkill.PathMember | HarnessSkill.S3Member | HarnessSkill.$UnknownMember;
|
|
7085
7281
|
/**
|
|
7086
7282
|
* @public
|
|
7087
7283
|
*/
|
|
@@ -7092,6 +7288,28 @@ export declare namespace HarnessSkill {
|
|
|
7092
7288
|
*/
|
|
7093
7289
|
interface PathMember {
|
|
7094
7290
|
path: string;
|
|
7291
|
+
s3?: never;
|
|
7292
|
+
git?: never;
|
|
7293
|
+
$unknown?: never;
|
|
7294
|
+
}
|
|
7295
|
+
/**
|
|
7296
|
+
* <p>An S3 source containing the skill.</p>
|
|
7297
|
+
* @public
|
|
7298
|
+
*/
|
|
7299
|
+
interface S3Member {
|
|
7300
|
+
path?: never;
|
|
7301
|
+
s3: HarnessSkillS3Source;
|
|
7302
|
+
git?: never;
|
|
7303
|
+
$unknown?: never;
|
|
7304
|
+
}
|
|
7305
|
+
/**
|
|
7306
|
+
* <p>A git repository containing the skill.</p>
|
|
7307
|
+
* @public
|
|
7308
|
+
*/
|
|
7309
|
+
interface GitMember {
|
|
7310
|
+
path?: never;
|
|
7311
|
+
s3?: never;
|
|
7312
|
+
git: HarnessSkillGitSource;
|
|
7095
7313
|
$unknown?: never;
|
|
7096
7314
|
}
|
|
7097
7315
|
/**
|
|
@@ -7099,6 +7317,8 @@ export declare namespace HarnessSkill {
|
|
|
7099
7317
|
*/
|
|
7100
7318
|
interface $UnknownMember {
|
|
7101
7319
|
path?: never;
|
|
7320
|
+
s3?: never;
|
|
7321
|
+
git?: never;
|
|
7102
7322
|
$unknown: [string, any];
|
|
7103
7323
|
}
|
|
7104
7324
|
/**
|
|
@@ -7107,6 +7327,8 @@ export declare namespace HarnessSkill {
|
|
|
7107
7327
|
*/
|
|
7108
7328
|
interface Visitor<T> {
|
|
7109
7329
|
path: (value: string) => T;
|
|
7330
|
+
s3: (value: HarnessSkillS3Source) => T;
|
|
7331
|
+
git: (value: HarnessSkillGitSource) => T;
|
|
7110
7332
|
_: (name: string, value: any) => T;
|
|
7111
7333
|
}
|
|
7112
7334
|
}
|
|
@@ -7200,7 +7422,7 @@ export declare namespace HarnessGatewayOutboundAuth {
|
|
|
7200
7422
|
$unknown?: never;
|
|
7201
7423
|
}
|
|
7202
7424
|
/**
|
|
7203
|
-
* <p>
|
|
7425
|
+
* <p>Use OAuth credentials for outbound authentication to the gateway.</p>
|
|
7204
7426
|
* @public
|
|
7205
7427
|
*/
|
|
7206
7428
|
interface OauthMember {
|
|
@@ -8038,83 +8260,3 @@ export interface ListTagsForResourceResponse {
|
|
|
8038
8260
|
*/
|
|
8039
8261
|
tags?: Record<string, string> | undefined;
|
|
8040
8262
|
}
|
|
8041
|
-
/**
|
|
8042
|
-
* <p>A metadata key indexed for filtering.</p>
|
|
8043
|
-
* @public
|
|
8044
|
-
*/
|
|
8045
|
-
export interface IndexedKey {
|
|
8046
|
-
/**
|
|
8047
|
-
* <p>The metadata key name to index.</p>
|
|
8048
|
-
* @public
|
|
8049
|
-
*/
|
|
8050
|
-
key: string | undefined;
|
|
8051
|
-
/**
|
|
8052
|
-
* <p>The data type of the indexed key.</p>
|
|
8053
|
-
* @public
|
|
8054
|
-
*/
|
|
8055
|
-
type: MetadataValueType | undefined;
|
|
8056
|
-
}
|
|
8057
|
-
/**
|
|
8058
|
-
* <p>Configurations for overriding the consolidation step of the episodic memory strategy.</p>
|
|
8059
|
-
* @public
|
|
8060
|
-
*/
|
|
8061
|
-
export interface EpisodicOverrideConsolidationConfigurationInput {
|
|
8062
|
-
/**
|
|
8063
|
-
* <p>The text to append to the prompt for the consolidation step of the episodic memory strategy.</p>
|
|
8064
|
-
* @public
|
|
8065
|
-
*/
|
|
8066
|
-
appendToPrompt: string | undefined;
|
|
8067
|
-
/**
|
|
8068
|
-
* <p>The model ID to use for the consolidation step of the episodic memory strategy.</p>
|
|
8069
|
-
* @public
|
|
8070
|
-
*/
|
|
8071
|
-
modelId: string | undefined;
|
|
8072
|
-
}
|
|
8073
|
-
/**
|
|
8074
|
-
* <p>Configurations for overriding the extraction step of the episodic memory strategy.</p>
|
|
8075
|
-
* @public
|
|
8076
|
-
*/
|
|
8077
|
-
export interface EpisodicOverrideExtractionConfigurationInput {
|
|
8078
|
-
/**
|
|
8079
|
-
* <p>The text to append to the prompt for the extraction step of the episodic memory strategy.</p>
|
|
8080
|
-
* @public
|
|
8081
|
-
*/
|
|
8082
|
-
appendToPrompt: string | undefined;
|
|
8083
|
-
/**
|
|
8084
|
-
* <p>The model ID to use for the extraction step of the episodic memory strategy.</p>
|
|
8085
|
-
* @public
|
|
8086
|
-
*/
|
|
8087
|
-
modelId: string | undefined;
|
|
8088
|
-
}
|
|
8089
|
-
/**
|
|
8090
|
-
* <p>Validation for NUMBER fields.</p>
|
|
8091
|
-
* @public
|
|
8092
|
-
*/
|
|
8093
|
-
export interface NumberValidation {
|
|
8094
|
-
/**
|
|
8095
|
-
* <p>Minimum allowed value.</p>
|
|
8096
|
-
* @public
|
|
8097
|
-
*/
|
|
8098
|
-
minValue?: number | undefined;
|
|
8099
|
-
/**
|
|
8100
|
-
* <p>Maximum allowed value.</p>
|
|
8101
|
-
* @public
|
|
8102
|
-
*/
|
|
8103
|
-
maxValue?: number | undefined;
|
|
8104
|
-
}
|
|
8105
|
-
/**
|
|
8106
|
-
* <p>Validation for STRINGLIST fields.</p>
|
|
8107
|
-
* @public
|
|
8108
|
-
*/
|
|
8109
|
-
export interface StringListValidation {
|
|
8110
|
-
/**
|
|
8111
|
-
* <p>Allowed values for items in this STRINGLIST field.</p>
|
|
8112
|
-
* @public
|
|
8113
|
-
*/
|
|
8114
|
-
allowedValues?: string[] | undefined;
|
|
8115
|
-
/**
|
|
8116
|
-
* <p>Maximum number of items in the string list.</p>
|
|
8117
|
-
* @public
|
|
8118
|
-
*/
|
|
8119
|
-
maxItems?: number | undefined;
|
|
8120
|
-
}
|