@aws-sdk/client-bedrock-agentcore-control 3.1018.0 → 3.1020.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/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +24 -9
- package/dist-es/BedrockAgentCoreControl.js +3 -3
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/models/enums.js +1 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/schemas/schemas_0.js +17 -2
- package/dist-es/waiters/waitForMemoryCreated.js +1 -1
- package/dist-es/waiters/waitForPolicyActive.js +1 -1
- package/dist-es/waiters/waitForPolicyDeleted.js +1 -1
- package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +1 -1
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +2 -2
- package/dist-types/BedrockAgentCoreControl.d.ts +86 -86
- package/dist-types/BedrockAgentCoreControlClient.d.ts +89 -89
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +7 -1
- package/dist-types/commands/GetEvaluatorCommand.d.ts +6 -0
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +6 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +1 -2
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/errors.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +67 -35
- package/dist-types/models/models_1.d.ts +31 -2
- package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBrowserProfilesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBrowsersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -7
- package/dist-types/ts3.4/models/models_1.d.ts +9 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/dist-types/waiters/waitForMemoryCreated.d.ts +3 -3
- package/dist-types/waiters/waitForPolicyActive.d.ts +3 -3
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +3 -3
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +3 -3
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +3 -3
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +3 -3
- package/package.json +14 -14
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultBedrockAgentCoreControlHttpAuthSchemeProvider = exports.defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultBedrockAgentCoreControlHttpAuthSchemeProvider = (authParameters) =>
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultBedrockAgentCoreControlHttpAuthSchemeProvider = defaultBedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
package/dist-cjs/index.js
CHANGED
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -3,13 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CreateBrowserProfileRequest$ = exports.CreateApiKeyCredentialProviderResponse$ = exports.CreateApiKeyCredentialProviderRequest$ = exports.CreateAgentRuntimeResponse$ = exports.CreateAgentRuntimeRequest$ = exports.CreateAgentRuntimeEndpointResponse$ = exports.CreateAgentRuntimeEndpointRequest$ = exports.ContentConfiguration$ = exports.ContainerConfiguration$ = exports.CodeInterpreterSummary$ = exports.CodeInterpreterNetworkConfiguration$ = exports.CodeConfiguration$ = exports.CloudWatchOutputConfig$ = exports.CloudWatchLogsInputConfig$ = exports.Certificate$ = exports.CedarPolicy$ = exports.CategoricalScaleDefinition$ = exports.BrowserSummary$ = exports.BrowserSigningConfigOutput$ = exports.BrowserSigningConfigInput$ = exports.BrowserProfileSummary$ = exports.BrowserNetworkConfiguration$ = exports.BrowserEnterprisePolicy$ = exports.BedrockEvaluatorModelConfig$ = exports.AuthorizingClaimMatchValueType$ = exports.AtlassianOauth2ProviderConfigOutput$ = exports.AtlassianOauth2ProviderConfigInput$ = exports.ApiKeyCredentialProviderItem$ = exports.ApiGatewayToolOverride$ = exports.ApiGatewayToolFilter$ = exports.ApiGatewayToolConfiguration$ = exports.ApiGatewayTargetConfiguration$ = exports.AgentRuntimeEndpoint$ = exports.AgentRuntime$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnauthorizedException$ = exports.ThrottlingException$ = exports.ThrottledException$ = exports.ServiceQuotaExceededException$ = exports.ServiceException$ = exports.ResourceNotFoundException$ = exports.ResourceLimitExceededException$ = exports.InternalServerException$ = exports.EncryptionFailure$ = exports.DecryptionFailure$ = exports.ConflictException$ = exports.ConcurrentModificationException$ = exports.AccessDeniedException$ = exports.BedrockAgentCoreControlServiceException$ = void 0;
|
|
4
4
|
exports.DeleteMemoryStrategyInput$ = exports.DeleteMemoryOutput$ = exports.DeleteMemoryInput$ = exports.DeleteGatewayTargetResponse$ = exports.DeleteGatewayTargetRequest$ = exports.DeleteGatewayResponse$ = exports.DeleteGatewayRequest$ = exports.DeleteEvaluatorResponse$ = exports.DeleteEvaluatorRequest$ = exports.DeleteCodeInterpreterResponse$ = exports.DeleteCodeInterpreterRequest$ = exports.DeleteBrowserResponse$ = exports.DeleteBrowserRequest$ = exports.DeleteBrowserProfileResponse$ = exports.DeleteBrowserProfileRequest$ = exports.DeleteApiKeyCredentialProviderResponse$ = exports.DeleteApiKeyCredentialProviderRequest$ = exports.DeleteAgentRuntimeResponse$ = exports.DeleteAgentRuntimeRequest$ = exports.DeleteAgentRuntimeEndpointResponse$ = exports.DeleteAgentRuntimeEndpointRequest$ = exports.CustomOauth2ProviderConfigOutput$ = exports.CustomOauth2ProviderConfigInput$ = exports.CustomMemoryStrategyInput$ = exports.CustomJWTAuthorizerConfiguration$ = exports.CustomClaimValidationType$ = exports.CredentialProviderConfiguration$ = exports.CreateWorkloadIdentityResponse$ = exports.CreateWorkloadIdentityRequest$ = exports.CreatePolicyResponse$ = exports.CreatePolicyRequest$ = exports.CreatePolicyEngineResponse$ = exports.CreatePolicyEngineRequest$ = exports.CreateOnlineEvaluationConfigResponse$ = exports.CreateOnlineEvaluationConfigRequest$ = exports.CreateOauth2CredentialProviderResponse$ = exports.CreateOauth2CredentialProviderRequest$ = exports.CreateMemoryOutput$ = exports.CreateMemoryInput$ = exports.CreateGatewayTargetResponse$ = exports.CreateGatewayTargetRequest$ = exports.CreateGatewayResponse$ = exports.CreateGatewayRequest$ = exports.CreateEvaluatorResponse$ = exports.CreateEvaluatorRequest$ = exports.CreateCodeInterpreterResponse$ = exports.CreateCodeInterpreterRequest$ = exports.CreateBrowserResponse$ = exports.CreateBrowserRequest$ = exports.CreateBrowserProfileResponse$ = void 0;
|
|
5
5
|
exports.GetMemoryOutput$ = exports.GetMemoryInput$ = exports.GetGatewayTargetResponse$ = exports.GetGatewayTargetRequest$ = exports.GetGatewayResponse$ = exports.GetGatewayRequest$ = exports.GetEvaluatorResponse$ = exports.GetEvaluatorRequest$ = exports.GetCodeInterpreterResponse$ = exports.GetCodeInterpreterRequest$ = exports.GetBrowserResponse$ = exports.GetBrowserRequest$ = exports.GetBrowserProfileResponse$ = exports.GetBrowserProfileRequest$ = exports.GetApiKeyCredentialProviderResponse$ = exports.GetApiKeyCredentialProviderRequest$ = exports.GetAgentRuntimeResponse$ = exports.GetAgentRuntimeRequest$ = exports.GetAgentRuntimeEndpointResponse$ = exports.GetAgentRuntimeEndpointRequest$ = exports.GatewayTarget$ = exports.GatewaySummary$ = exports.GatewayPolicyEngineConfiguration$ = exports.GatewayInterceptorConfiguration$ = exports.GatewayApiKeyCredentialProvider$ = exports.Finding$ = exports.Filter$ = exports.EvaluatorSummary$ = exports.EpisodicReflectionOverride$ = exports.EpisodicReflectionConfigurationInput$ = exports.EpisodicReflectionConfiguration$ = exports.EpisodicOverrideReflectionConfigurationInput$ = exports.EpisodicOverrideExtractionConfigurationInput$ = exports.EpisodicOverrideConsolidationConfigurationInput$ = exports.EpisodicOverrideConfigurationInput$ = exports.EpisodicMemoryStrategyInput$ = exports.EpisodicExtractionOverride$ = exports.EpisodicConsolidationOverride$ = exports.DeleteWorkloadIdentityResponse$ = exports.DeleteWorkloadIdentityRequest$ = exports.DeleteResourcePolicyResponse$ = exports.DeleteResourcePolicyRequest$ = exports.DeletePolicyResponse$ = exports.DeletePolicyRequest$ = exports.DeletePolicyEngineResponse$ = exports.DeletePolicyEngineRequest$ = exports.DeleteOnlineEvaluationConfigResponse$ = exports.DeleteOnlineEvaluationConfigRequest$ = exports.DeleteOauth2CredentialProviderResponse$ = exports.DeleteOauth2CredentialProviderRequest$ = void 0;
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.UpdateWorkloadIdentity$ = exports.UpdatePolicyEngine$ = exports.UpdatePolicy$ = exports.UpdateOnlineEvaluationConfig$ = exports.UpdateOauth2CredentialProvider$ = exports.UpdateMemory$ = exports.UpdateGatewayTarget$ = exports.UpdateGateway$ = exports.UpdateEvaluator$ = exports.UpdateApiKeyCredentialProvider$ = exports.UpdateAgentRuntimeEndpoint$ = exports.UpdateAgentRuntime$ = void 0;
|
|
6
|
+
exports.ListGatewaysRequest$ = exports.ListEvaluatorsResponse$ = exports.ListEvaluatorsRequest$ = exports.ListCodeInterpretersResponse$ = exports.ListCodeInterpretersRequest$ = exports.ListBrowsersResponse$ = exports.ListBrowsersRequest$ = exports.ListBrowserProfilesResponse$ = exports.ListBrowserProfilesRequest$ = exports.ListApiKeyCredentialProvidersResponse$ = exports.ListApiKeyCredentialProvidersRequest$ = exports.ListAgentRuntimeVersionsResponse$ = exports.ListAgentRuntimeVersionsRequest$ = exports.ListAgentRuntimesResponse$ = exports.ListAgentRuntimesRequest$ = exports.ListAgentRuntimeEndpointsResponse$ = exports.ListAgentRuntimeEndpointsRequest$ = exports.LinkedinOauth2ProviderConfigOutput$ = exports.LinkedinOauth2ProviderConfigInput$ = exports.LifecycleConfiguration$ = exports.LambdaInterceptorConfiguration$ = exports.LambdaEvaluatorConfig$ = exports.KmsConfiguration$ = exports.KinesisResource$ = exports.InvocationConfigurationInput$ = exports.InvocationConfiguration$ = exports.InterceptorInputConfiguration$ = exports.InferenceConfiguration$ = exports.IncludedOauth2ProviderConfigOutput$ = exports.IncludedOauth2ProviderConfigInput$ = exports.GoogleOauth2ProviderConfigOutput$ = exports.GoogleOauth2ProviderConfigInput$ = exports.GithubOauth2ProviderConfigOutput$ = exports.GithubOauth2ProviderConfigInput$ = exports.GetWorkloadIdentityResponse$ = exports.GetWorkloadIdentityRequest$ = exports.GetTokenVaultResponse$ = exports.GetTokenVaultRequest$ = exports.GetResourcePolicyResponse$ = exports.GetResourcePolicyRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetPolicyGenerationResponse$ = exports.GetPolicyGenerationRequest$ = exports.GetPolicyEngineResponse$ = exports.GetPolicyEngineRequest$ = exports.GetOnlineEvaluationConfigResponse$ = exports.GetOnlineEvaluationConfigRequest$ = exports.GetOauth2CredentialProviderResponse$ = exports.GetOauth2CredentialProviderRequest$ = void 0;
|
|
7
|
+
exports.PolicyGenerationDetails$ = exports.PolicyGenerationAsset$ = exports.PolicyGeneration$ = exports.PolicyEngine$ = exports.Policy$ = exports.OutputConfig$ = exports.OnlineEvaluationConfigSummary$ = exports.OAuthCredentialProvider$ = exports.Oauth2CredentialProviderItem$ = exports.Oauth2AuthorizationServerMetadata$ = exports.NumericalScaleDefinition$ = exports.NetworkConfiguration$ = exports.ModifyStrategyConfiguration$ = exports.ModifySelfManagedConfiguration$ = exports.ModifyMemoryStrategyInput$ = exports.ModifyMemoryStrategies$ = exports.ModifyInvocationConfigurationInput$ = exports.MicrosoftOauth2ProviderConfigOutput$ = exports.MicrosoftOauth2ProviderConfigInput$ = exports.MetadataConfiguration$ = exports.MessageBasedTriggerInput$ = exports.MessageBasedTrigger$ = exports.MemorySummary$ = exports.MemoryStrategy$ = exports.Memory$ = exports.McpServerTargetConfiguration$ = exports.McpLambdaTargetConfiguration$ = exports.MCPGatewayConfiguration$ = exports.LlmAsAJudgeEvaluatorConfig$ = exports.ListWorkloadIdentitiesResponse$ = exports.ListWorkloadIdentitiesRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListPolicyGenerationsResponse$ = exports.ListPolicyGenerationsRequest$ = exports.ListPolicyGenerationAssetsResponse$ = exports.ListPolicyGenerationAssetsRequest$ = exports.ListPolicyEnginesResponse$ = exports.ListPolicyEnginesRequest$ = exports.ListPoliciesResponse$ = exports.ListPoliciesRequest$ = exports.ListOnlineEvaluationConfigsResponse$ = exports.ListOnlineEvaluationConfigsRequest$ = exports.ListOauth2CredentialProvidersResponse$ = exports.ListOauth2CredentialProvidersRequest$ = exports.ListMemoriesOutput$ = exports.ListMemoriesInput$ = exports.ListGatewayTargetsResponse$ = exports.ListGatewayTargetsRequest$ = exports.ListGatewaysResponse$ = void 0;
|
|
8
|
+
exports.UpdateAgentRuntimeEndpointResponse$ = exports.UpdateAgentRuntimeEndpointRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.ToolDefinition$ = exports.TokenBasedTriggerInput$ = exports.TokenBasedTrigger$ = exports.TimeBasedTriggerInput$ = exports.TimeBasedTrigger$ = exports.TargetSummary$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.SynchronizeGatewayTargetsResponse$ = exports.SynchronizeGatewayTargetsRequest$ = exports.SummaryOverrideConsolidationConfigurationInput$ = exports.SummaryOverrideConfigurationInput$ = exports.SummaryMemoryStrategyInput$ = exports.SummaryConsolidationOverride$ = exports.StreamDeliveryResources$ = exports.StrategyConfiguration$ = exports.StartPolicyGenerationResponse$ = exports.StartPolicyGenerationRequest$ = exports.SlackOauth2ProviderConfigOutput$ = exports.SlackOauth2ProviderConfigInput$ = exports.SetTokenVaultCMKResponse$ = exports.SetTokenVaultCMKRequest$ = exports.SessionStorageConfiguration$ = exports.SessionConfig$ = exports.SemanticOverrideExtractionConfigurationInput$ = exports.SemanticOverrideConsolidationConfigurationInput$ = exports.SemanticOverrideConfigurationInput$ = exports.SemanticMemoryStrategyInput$ = exports.SemanticExtractionOverride$ = exports.SemanticConsolidationOverride$ = exports.SelfManagedConfigurationInput$ = exports.SelfManagedConfiguration$ = exports.SecretsManagerLocation$ = exports.Secret$ = exports.SchemaDefinition$ = exports.SamplingConfig$ = exports.SalesforceOauth2ProviderConfigOutput$ = exports.SalesforceOauth2ProviderConfigInput$ = exports.S3Location$ = exports.S3Configuration$ = exports.RuntimeMetadataConfiguration$ = exports.Rule$ = exports.RecordingConfig$ = exports.PutResourcePolicyResponse$ = exports.PutResourcePolicyRequest$ = exports.ProtocolConfiguration$ = void 0;
|
|
9
|
+
exports.CustomReflectionConfigurationInput$ = exports.CustomReflectionConfiguration$ = exports.CustomExtractionConfigurationInput$ = exports.CustomExtractionConfiguration$ = exports.CustomConsolidationConfigurationInput$ = exports.CustomConsolidationConfiguration$ = exports.CustomConfigurationInput$ = exports.CredentialProvider$ = exports.Content$ = exports.ConsolidationConfiguration$ = exports.CodeBasedEvaluatorConfig$ = exports.Code$ = exports.ClaimMatchValueType$ = exports.CertificateLocation$ = exports.AuthorizerConfiguration$ = exports.ApiSchemaConfiguration$ = exports.AgentRuntimeArtifact$ = exports.WorkloadIdentityType$ = exports.WorkloadIdentityDetails$ = exports.VpcConfig$ = exports.ValidationExceptionField$ = exports.UserPreferenceOverrideExtractionConfigurationInput$ = exports.UserPreferenceOverrideConsolidationConfigurationInput$ = exports.UserPreferenceOverrideConfigurationInput$ = exports.UserPreferenceMemoryStrategyInput$ = exports.UserPreferenceExtractionOverride$ = exports.UserPreferenceConsolidationOverride$ = exports.UpdateWorkloadIdentityResponse$ = exports.UpdateWorkloadIdentityRequest$ = exports.UpdatePolicyResponse$ = exports.UpdatePolicyRequest$ = exports.UpdatePolicyEngineResponse$ = exports.UpdatePolicyEngineRequest$ = exports.UpdateOnlineEvaluationConfigResponse$ = exports.UpdateOnlineEvaluationConfigRequest$ = exports.UpdateOauth2CredentialProviderResponse$ = exports.UpdateOauth2CredentialProviderRequest$ = exports.UpdateMemoryOutput$ = exports.UpdateMemoryInput$ = exports.UpdateGatewayTargetResponse$ = exports.UpdateGatewayTargetRequest$ = exports.UpdateGatewayResponse$ = exports.UpdateGatewayRequest$ = exports.UpdateEvaluatorResponse$ = exports.UpdateEvaluatorRequest$ = exports.UpdatedDescription$ = exports.UpdateApiKeyCredentialProviderResponse$ = exports.UpdateApiKeyCredentialProviderRequest$ = exports.UpdateAgentRuntimeResponse$ = exports.UpdateAgentRuntimeRequest$ = void 0;
|
|
10
|
+
exports.DeleteEvaluator$ = exports.DeleteCodeInterpreter$ = exports.DeleteBrowserProfile$ = exports.DeleteBrowser$ = exports.DeleteApiKeyCredentialProvider$ = exports.DeleteAgentRuntimeEndpoint$ = exports.DeleteAgentRuntime$ = exports.CreateWorkloadIdentity$ = exports.CreatePolicyEngine$ = exports.CreatePolicy$ = exports.CreateOnlineEvaluationConfig$ = exports.CreateOauth2CredentialProvider$ = exports.CreateMemory$ = exports.CreateGatewayTarget$ = exports.CreateGateway$ = exports.CreateEvaluator$ = exports.CreateCodeInterpreter$ = exports.CreateBrowserProfile$ = exports.CreateBrowser$ = exports.CreateApiKeyCredentialProvider$ = exports.CreateAgentRuntimeEndpoint$ = exports.CreateAgentRuntime$ = exports.TriggerConditionInput$ = exports.TriggerCondition$ = exports.ToolSchema$ = exports.TargetConfiguration$ = exports.StreamDeliveryResource$ = exports.ResourceLocation$ = exports.Resource$ = exports.RequestHeaderConfiguration$ = exports.ReflectionConfiguration$ = exports.RatingScale$ = exports.PolicyDefinition$ = exports.Oauth2ProviderConfigOutput$ = exports.Oauth2ProviderConfigInput$ = exports.Oauth2Discovery$ = exports.ModifyReflectionConfiguration$ = exports.ModifyExtractionConfiguration$ = exports.ModifyConsolidationConfiguration$ = exports.MemoryStrategyInput$ = exports.McpTargetConfiguration$ = exports.InterceptorConfiguration$ = exports.GatewayProtocolConfiguration$ = exports.FilterValue$ = exports.FilesystemConfiguration$ = exports.ExtractionConfiguration$ = exports.EvaluatorReference$ = exports.EvaluatorModelConfig$ = exports.EvaluatorConfig$ = exports.DataSourceConfig$ = void 0;
|
|
11
|
+
exports.SynchronizeGatewayTargets$ = exports.StartPolicyGeneration$ = exports.SetTokenVaultCMK$ = exports.PutResourcePolicy$ = exports.ListWorkloadIdentities$ = exports.ListTagsForResource$ = exports.ListPolicyGenerations$ = exports.ListPolicyGenerationAssets$ = exports.ListPolicyEngines$ = exports.ListPolicies$ = exports.ListOnlineEvaluationConfigs$ = exports.ListOauth2CredentialProviders$ = exports.ListMemories$ = exports.ListGatewayTargets$ = exports.ListGateways$ = exports.ListEvaluators$ = exports.ListCodeInterpreters$ = exports.ListBrowsers$ = exports.ListBrowserProfiles$ = exports.ListApiKeyCredentialProviders$ = exports.ListAgentRuntimeVersions$ = exports.ListAgentRuntimes$ = exports.ListAgentRuntimeEndpoints$ = exports.GetWorkloadIdentity$ = exports.GetTokenVault$ = exports.GetResourcePolicy$ = exports.GetPolicyGeneration$ = exports.GetPolicyEngine$ = exports.GetPolicy$ = exports.GetOnlineEvaluationConfig$ = exports.GetOauth2CredentialProvider$ = exports.GetMemory$ = exports.GetGatewayTarget$ = exports.GetGateway$ = exports.GetEvaluator$ = exports.GetCodeInterpreter$ = exports.GetBrowserProfile$ = exports.GetBrowser$ = exports.GetApiKeyCredentialProvider$ = exports.GetAgentRuntimeEndpoint$ = exports.GetAgentRuntime$ = exports.DeleteWorkloadIdentity$ = exports.DeleteResourcePolicy$ = exports.DeletePolicyEngine$ = exports.DeletePolicy$ = exports.DeleteOnlineEvaluationConfig$ = exports.DeleteOauth2CredentialProvider$ = exports.DeleteMemory$ = exports.DeleteGatewayTarget$ = exports.DeleteGateway$ = void 0;
|
|
12
|
+
exports.UpdateWorkloadIdentity$ = exports.UpdatePolicyEngine$ = exports.UpdatePolicy$ = exports.UpdateOnlineEvaluationConfig$ = exports.UpdateOauth2CredentialProvider$ = exports.UpdateMemory$ = exports.UpdateGatewayTarget$ = exports.UpdateGateway$ = exports.UpdateEvaluator$ = exports.UpdateApiKeyCredentialProvider$ = exports.UpdateAgentRuntimeEndpoint$ = exports.UpdateAgentRuntime$ = exports.UntagResource$ = exports.TagResource$ = void 0;
|
|
13
13
|
const _AC = "AuthorizerConfiguration";
|
|
14
14
|
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
15
15
|
const _ADE = "AccessDeniedException";
|
|
@@ -51,6 +51,7 @@ const _CARERr = "CreateAgentRuntimeEndpointResponse";
|
|
|
51
51
|
const _CARR = "CreateAgentRuntimeRequest";
|
|
52
52
|
const _CARRr = "CreateAgentRuntimeResponse";
|
|
53
53
|
const _CB = "CreateBrowser";
|
|
54
|
+
const _CBEC = "CodeBasedEvaluatorConfig";
|
|
54
55
|
const _CBP = "CreateBrowserProfile";
|
|
55
56
|
const _CBPR = "CreateBrowserProfileRequest";
|
|
56
57
|
const _CBPRr = "CreateBrowserProfileResponse";
|
|
@@ -310,6 +311,7 @@ const _LCI = "ListCodeInterpreters";
|
|
|
310
311
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
311
312
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
312
313
|
const _LE = "ListEvaluators";
|
|
314
|
+
const _LEC = "LambdaEvaluatorConfig";
|
|
313
315
|
const _LER = "ListEvaluatorsRequest";
|
|
314
316
|
const _LERi = "ListEvaluatorsResponse";
|
|
315
317
|
const _LG = "ListGateways";
|
|
@@ -567,6 +569,7 @@ const _bSr = "browserSummaries";
|
|
|
567
569
|
const _bV = "booleanValue";
|
|
568
570
|
const _c = "client";
|
|
569
571
|
const _cA = "createdAt";
|
|
572
|
+
const _cB = "codeBased";
|
|
570
573
|
const _cC = "customClaims";
|
|
571
574
|
const _cCC = "customConsolidationConfiguration";
|
|
572
575
|
const _cCo = "contentConfigurations";
|
|
@@ -687,6 +690,7 @@ const _l = "location";
|
|
|
687
690
|
const _lA = "lambdaArn";
|
|
688
691
|
const _lAAJ = "llmAsAJudge";
|
|
689
692
|
const _lC = "lifecycleConfiguration";
|
|
693
|
+
const _lCa = "lambdaConfig";
|
|
690
694
|
const _lFM = "lockedForModification";
|
|
691
695
|
const _lGN = "logGroupNames";
|
|
692
696
|
const _lGNo = "logGroupName";
|
|
@@ -696,6 +700,7 @@ const _lSA = "lastSavedAt";
|
|
|
696
700
|
const _lSAa = "lastSynchronizedAt";
|
|
697
701
|
const _lSBI = "lastSavedBrowserId";
|
|
698
702
|
const _lSBSI = "lastSavedBrowserSessionId";
|
|
703
|
+
const _lTIS = "lambdaTimeoutInSeconds";
|
|
699
704
|
const _lUA = "lastUpdatedAt";
|
|
700
705
|
const _lUT = "lastUpdatedTime";
|
|
701
706
|
const _lV = "liveVersion";
|
|
@@ -1789,6 +1794,11 @@ exports.KmsConfiguration$ = [3, n0, _KC,
|
|
|
1789
1794
|
[_kT, _kKA],
|
|
1790
1795
|
[0, 0], 1
|
|
1791
1796
|
];
|
|
1797
|
+
exports.LambdaEvaluatorConfig$ = [3, n0, _LEC,
|
|
1798
|
+
0,
|
|
1799
|
+
[_lA, _lTIS],
|
|
1800
|
+
[0, 1], 1
|
|
1801
|
+
];
|
|
1792
1802
|
exports.LambdaInterceptorConfiguration$ = [3, n0, _LIC,
|
|
1793
1803
|
0,
|
|
1794
1804
|
[_a],
|
|
@@ -2768,6 +2778,11 @@ exports.Code$ = [4, n0, _Co,
|
|
|
2768
2778
|
[_s_],
|
|
2769
2779
|
[() => exports.S3Location$]
|
|
2770
2780
|
];
|
|
2781
|
+
exports.CodeBasedEvaluatorConfig$ = [4, n0, _CBEC,
|
|
2782
|
+
0,
|
|
2783
|
+
[_lCa],
|
|
2784
|
+
[() => exports.LambdaEvaluatorConfig$]
|
|
2785
|
+
];
|
|
2771
2786
|
exports.ConsolidationConfiguration$ = [4, n0, _CCons,
|
|
2772
2787
|
0,
|
|
2773
2788
|
[_cCC],
|
|
@@ -2825,8 +2840,8 @@ exports.DataSourceConfig$ = [4, n0, _DSC,
|
|
|
2825
2840
|
];
|
|
2826
2841
|
exports.EvaluatorConfig$ = [4, n0, _EC,
|
|
2827
2842
|
0,
|
|
2828
|
-
[_lAAJ],
|
|
2829
|
-
[[() => exports.LlmAsAJudgeEvaluatorConfig$, 0]]
|
|
2843
|
+
[_lAAJ, _cB],
|
|
2844
|
+
[[() => exports.LlmAsAJudgeEvaluatorConfig$, 0], () => exports.CodeBasedEvaluatorConfig$]
|
|
2830
2845
|
];
|
|
2831
2846
|
exports.EvaluatorModelConfig$ = [4, n0, _EMC,
|
|
2832
2847
|
0,
|
|
@@ -34,11 +34,11 @@ import { DeleteWorkloadIdentityCommand, } from "./commands/DeleteWorkloadIdentit
|
|
|
34
34
|
import { GetAgentRuntimeCommand, } from "./commands/GetAgentRuntimeCommand";
|
|
35
35
|
import { GetAgentRuntimeEndpointCommand, } from "./commands/GetAgentRuntimeEndpointCommand";
|
|
36
36
|
import { GetApiKeyCredentialProviderCommand, } from "./commands/GetApiKeyCredentialProviderCommand";
|
|
37
|
-
import { GetBrowserCommand } from "./commands/GetBrowserCommand";
|
|
37
|
+
import { GetBrowserCommand, } from "./commands/GetBrowserCommand";
|
|
38
38
|
import { GetBrowserProfileCommand, } from "./commands/GetBrowserProfileCommand";
|
|
39
39
|
import { GetCodeInterpreterCommand, } from "./commands/GetCodeInterpreterCommand";
|
|
40
40
|
import { GetEvaluatorCommand, } from "./commands/GetEvaluatorCommand";
|
|
41
|
-
import { GetGatewayCommand } from "./commands/GetGatewayCommand";
|
|
41
|
+
import { GetGatewayCommand, } from "./commands/GetGatewayCommand";
|
|
42
42
|
import { GetGatewayTargetCommand, } from "./commands/GetGatewayTargetCommand";
|
|
43
43
|
import { GetMemoryCommand } from "./commands/GetMemoryCommand";
|
|
44
44
|
import { GetOauth2CredentialProviderCommand, } from "./commands/GetOauth2CredentialProviderCommand";
|
|
@@ -72,7 +72,7 @@ import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
|
72
72
|
import { SetTokenVaultCMKCommand, } from "./commands/SetTokenVaultCMKCommand";
|
|
73
73
|
import { StartPolicyGenerationCommand, } from "./commands/StartPolicyGenerationCommand";
|
|
74
74
|
import { SynchronizeGatewayTargetsCommand, } from "./commands/SynchronizeGatewayTargetsCommand";
|
|
75
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
75
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
76
76
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
77
77
|
import { UpdateAgentRuntimeCommand, } from "./commands/UpdateAgentRuntimeCommand";
|
|
78
78
|
import { UpdateAgentRuntimeEndpointCommand, } from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/models/enums.js
CHANGED
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -39,6 +39,7 @@ const _CARERr = "CreateAgentRuntimeEndpointResponse";
|
|
|
39
39
|
const _CARR = "CreateAgentRuntimeRequest";
|
|
40
40
|
const _CARRr = "CreateAgentRuntimeResponse";
|
|
41
41
|
const _CB = "CreateBrowser";
|
|
42
|
+
const _CBEC = "CodeBasedEvaluatorConfig";
|
|
42
43
|
const _CBP = "CreateBrowserProfile";
|
|
43
44
|
const _CBPR = "CreateBrowserProfileRequest";
|
|
44
45
|
const _CBPRr = "CreateBrowserProfileResponse";
|
|
@@ -298,6 +299,7 @@ const _LCI = "ListCodeInterpreters";
|
|
|
298
299
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
299
300
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
300
301
|
const _LE = "ListEvaluators";
|
|
302
|
+
const _LEC = "LambdaEvaluatorConfig";
|
|
301
303
|
const _LER = "ListEvaluatorsRequest";
|
|
302
304
|
const _LERi = "ListEvaluatorsResponse";
|
|
303
305
|
const _LG = "ListGateways";
|
|
@@ -555,6 +557,7 @@ const _bSr = "browserSummaries";
|
|
|
555
557
|
const _bV = "booleanValue";
|
|
556
558
|
const _c = "client";
|
|
557
559
|
const _cA = "createdAt";
|
|
560
|
+
const _cB = "codeBased";
|
|
558
561
|
const _cC = "customClaims";
|
|
559
562
|
const _cCC = "customConsolidationConfiguration";
|
|
560
563
|
const _cCo = "contentConfigurations";
|
|
@@ -675,6 +678,7 @@ const _l = "location";
|
|
|
675
678
|
const _lA = "lambdaArn";
|
|
676
679
|
const _lAAJ = "llmAsAJudge";
|
|
677
680
|
const _lC = "lifecycleConfiguration";
|
|
681
|
+
const _lCa = "lambdaConfig";
|
|
678
682
|
const _lFM = "lockedForModification";
|
|
679
683
|
const _lGN = "logGroupNames";
|
|
680
684
|
const _lGNo = "logGroupName";
|
|
@@ -684,6 +688,7 @@ const _lSA = "lastSavedAt";
|
|
|
684
688
|
const _lSAa = "lastSynchronizedAt";
|
|
685
689
|
const _lSBI = "lastSavedBrowserId";
|
|
686
690
|
const _lSBSI = "lastSavedBrowserSessionId";
|
|
691
|
+
const _lTIS = "lambdaTimeoutInSeconds";
|
|
687
692
|
const _lUA = "lastUpdatedAt";
|
|
688
693
|
const _lUT = "lastUpdatedTime";
|
|
689
694
|
const _lV = "liveVersion";
|
|
@@ -1777,6 +1782,11 @@ export var KmsConfiguration$ = [3, n0, _KC,
|
|
|
1777
1782
|
[_kT, _kKA],
|
|
1778
1783
|
[0, 0], 1
|
|
1779
1784
|
];
|
|
1785
|
+
export var LambdaEvaluatorConfig$ = [3, n0, _LEC,
|
|
1786
|
+
0,
|
|
1787
|
+
[_lA, _lTIS],
|
|
1788
|
+
[0, 1], 1
|
|
1789
|
+
];
|
|
1780
1790
|
export var LambdaInterceptorConfiguration$ = [3, n0, _LIC,
|
|
1781
1791
|
0,
|
|
1782
1792
|
[_a],
|
|
@@ -2756,6 +2766,11 @@ export var Code$ = [4, n0, _Co,
|
|
|
2756
2766
|
[_s_],
|
|
2757
2767
|
[() => S3Location$]
|
|
2758
2768
|
];
|
|
2769
|
+
export var CodeBasedEvaluatorConfig$ = [4, n0, _CBEC,
|
|
2770
|
+
0,
|
|
2771
|
+
[_lCa],
|
|
2772
|
+
[() => LambdaEvaluatorConfig$]
|
|
2773
|
+
];
|
|
2759
2774
|
export var ConsolidationConfiguration$ = [4, n0, _CCons,
|
|
2760
2775
|
0,
|
|
2761
2776
|
[_cCC],
|
|
@@ -2813,8 +2828,8 @@ export var DataSourceConfig$ = [4, n0, _DSC,
|
|
|
2813
2828
|
];
|
|
2814
2829
|
export var EvaluatorConfig$ = [4, n0, _EC,
|
|
2815
2830
|
0,
|
|
2816
|
-
[_lAAJ],
|
|
2817
|
-
[[() => LlmAsAJudgeEvaluatorConfig$, 0]]
|
|
2831
|
+
[_lAAJ, _cB],
|
|
2832
|
+
[[() => LlmAsAJudgeEvaluatorConfig$, 0], () => CodeBasedEvaluatorConfig$]
|
|
2818
2833
|
];
|
|
2819
2834
|
export var EvaluatorModelConfig$ = [4, n0, _EMC,
|
|
2820
2835
|
0,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetMemoryCommand } from "../commands/GetMemoryCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetPolicyCommand } from "../commands/GetPolicyCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetPolicyCommand } from "../commands/GetPolicyCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetPolicyEngineCommand } from "../commands/GetPolicyEngineCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetPolicyEngineCommand } from "../commands/GetPolicyEngineCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
2
|
-
import { GetPolicyGenerationCommand } from "../commands/GetPolicyGenerationCommand";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
+
import { GetPolicyGenerationCommand, } from "../commands/GetPolicyGenerationCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,92 +1,92 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
2
|
import type { WaiterResult } from "@smithy/util-waiter";
|
|
3
3
|
import { BedrockAgentCoreControlClient } from "./BedrockAgentCoreControlClient";
|
|
4
|
-
import { CreateAgentRuntimeCommandInput, CreateAgentRuntimeCommandOutput } from "./commands/CreateAgentRuntimeCommand";
|
|
5
|
-
import { CreateAgentRuntimeEndpointCommandInput, CreateAgentRuntimeEndpointCommandOutput } from "./commands/CreateAgentRuntimeEndpointCommand";
|
|
6
|
-
import { CreateApiKeyCredentialProviderCommandInput, CreateApiKeyCredentialProviderCommandOutput } from "./commands/CreateApiKeyCredentialProviderCommand";
|
|
7
|
-
import { CreateBrowserCommandInput, CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
|
|
8
|
-
import { CreateBrowserProfileCommandInput, CreateBrowserProfileCommandOutput } from "./commands/CreateBrowserProfileCommand";
|
|
9
|
-
import { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
|
|
10
|
-
import { CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
|
|
11
|
-
import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
12
|
-
import { CreateGatewayTargetCommandInput, CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
|
|
13
|
-
import { CreateMemoryCommandInput, CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
|
|
14
|
-
import { CreateOauth2CredentialProviderCommandInput, CreateOauth2CredentialProviderCommandOutput } from "./commands/CreateOauth2CredentialProviderCommand";
|
|
15
|
-
import { CreateOnlineEvaluationConfigCommandInput, CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
16
|
-
import { CreatePolicyCommandInput, CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
|
|
17
|
-
import { CreatePolicyEngineCommandInput, CreatePolicyEngineCommandOutput } from "./commands/CreatePolicyEngineCommand";
|
|
18
|
-
import { CreateWorkloadIdentityCommandInput, CreateWorkloadIdentityCommandOutput } from "./commands/CreateWorkloadIdentityCommand";
|
|
19
|
-
import { DeleteAgentRuntimeCommandInput, DeleteAgentRuntimeCommandOutput } from "./commands/DeleteAgentRuntimeCommand";
|
|
20
|
-
import { DeleteAgentRuntimeEndpointCommandInput, DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
|
|
21
|
-
import { DeleteApiKeyCredentialProviderCommandInput, DeleteApiKeyCredentialProviderCommandOutput } from "./commands/DeleteApiKeyCredentialProviderCommand";
|
|
22
|
-
import { DeleteBrowserCommandInput, DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
|
|
23
|
-
import { DeleteBrowserProfileCommandInput, DeleteBrowserProfileCommandOutput } from "./commands/DeleteBrowserProfileCommand";
|
|
24
|
-
import { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
|
|
25
|
-
import { DeleteEvaluatorCommandInput, DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
|
|
26
|
-
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
27
|
-
import { DeleteGatewayTargetCommandInput, DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
|
|
28
|
-
import { DeleteMemoryCommandInput, DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
|
|
29
|
-
import { DeleteOauth2CredentialProviderCommandInput, DeleteOauth2CredentialProviderCommandOutput } from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
30
|
-
import { DeleteOnlineEvaluationConfigCommandInput, DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
31
|
-
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
32
|
-
import { DeletePolicyEngineCommandInput, DeletePolicyEngineCommandOutput } from "./commands/DeletePolicyEngineCommand";
|
|
33
|
-
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
34
|
-
import { DeleteWorkloadIdentityCommandInput, DeleteWorkloadIdentityCommandOutput } from "./commands/DeleteWorkloadIdentityCommand";
|
|
35
|
-
import { GetAgentRuntimeCommandInput, GetAgentRuntimeCommandOutput } from "./commands/GetAgentRuntimeCommand";
|
|
36
|
-
import { GetAgentRuntimeEndpointCommandInput, GetAgentRuntimeEndpointCommandOutput } from "./commands/GetAgentRuntimeEndpointCommand";
|
|
37
|
-
import { GetApiKeyCredentialProviderCommandInput, GetApiKeyCredentialProviderCommandOutput } from "./commands/GetApiKeyCredentialProviderCommand";
|
|
38
|
-
import { GetBrowserCommandInput, GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
|
|
39
|
-
import { GetBrowserProfileCommandInput, GetBrowserProfileCommandOutput } from "./commands/GetBrowserProfileCommand";
|
|
40
|
-
import { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
|
|
41
|
-
import { GetEvaluatorCommandInput, GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
|
|
42
|
-
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
43
|
-
import { GetGatewayTargetCommandInput, GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
|
|
44
|
-
import { GetMemoryCommandInput, GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
|
|
45
|
-
import { GetOauth2CredentialProviderCommandInput, GetOauth2CredentialProviderCommandOutput } from "./commands/GetOauth2CredentialProviderCommand";
|
|
46
|
-
import { GetOnlineEvaluationConfigCommandInput, GetOnlineEvaluationConfigCommandOutput } from "./commands/GetOnlineEvaluationConfigCommand";
|
|
47
|
-
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
48
|
-
import { GetPolicyEngineCommandInput, GetPolicyEngineCommandOutput } from "./commands/GetPolicyEngineCommand";
|
|
49
|
-
import { GetPolicyGenerationCommandInput, GetPolicyGenerationCommandOutput } from "./commands/GetPolicyGenerationCommand";
|
|
50
|
-
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
|
|
51
|
-
import { GetTokenVaultCommandInput, GetTokenVaultCommandOutput } from "./commands/GetTokenVaultCommand";
|
|
52
|
-
import { GetWorkloadIdentityCommandInput, GetWorkloadIdentityCommandOutput } from "./commands/GetWorkloadIdentityCommand";
|
|
53
|
-
import { ListAgentRuntimeEndpointsCommandInput, ListAgentRuntimeEndpointsCommandOutput } from "./commands/ListAgentRuntimeEndpointsCommand";
|
|
54
|
-
import { ListAgentRuntimesCommandInput, ListAgentRuntimesCommandOutput } from "./commands/ListAgentRuntimesCommand";
|
|
55
|
-
import { ListAgentRuntimeVersionsCommandInput, ListAgentRuntimeVersionsCommandOutput } from "./commands/ListAgentRuntimeVersionsCommand";
|
|
56
|
-
import { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialProvidersCommandOutput } from "./commands/ListApiKeyCredentialProvidersCommand";
|
|
57
|
-
import { ListBrowserProfilesCommandInput, ListBrowserProfilesCommandOutput } from "./commands/ListBrowserProfilesCommand";
|
|
58
|
-
import { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
|
|
59
|
-
import { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
|
|
60
|
-
import { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
|
|
61
|
-
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
62
|
-
import { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
|
|
63
|
-
import { ListMemoriesCommandInput, ListMemoriesCommandOutput } from "./commands/ListMemoriesCommand";
|
|
64
|
-
import { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvidersCommandOutput } from "./commands/ListOauth2CredentialProvidersCommand";
|
|
65
|
-
import { ListOnlineEvaluationConfigsCommandInput, ListOnlineEvaluationConfigsCommandOutput } from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
66
|
-
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
67
|
-
import { ListPolicyEnginesCommandInput, ListPolicyEnginesCommandOutput } from "./commands/ListPolicyEnginesCommand";
|
|
68
|
-
import { ListPolicyGenerationAssetsCommandInput, ListPolicyGenerationAssetsCommandOutput } from "./commands/ListPolicyGenerationAssetsCommand";
|
|
69
|
-
import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "./commands/ListPolicyGenerationsCommand";
|
|
70
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
71
|
-
import { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "./commands/ListWorkloadIdentitiesCommand";
|
|
72
|
-
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
73
|
-
import { SetTokenVaultCMKCommandInput, SetTokenVaultCMKCommandOutput } from "./commands/SetTokenVaultCMKCommand";
|
|
74
|
-
import { StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput } from "./commands/StartPolicyGenerationCommand";
|
|
75
|
-
import { SynchronizeGatewayTargetsCommandInput, SynchronizeGatewayTargetsCommandOutput } from "./commands/SynchronizeGatewayTargetsCommand";
|
|
76
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
77
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
78
|
-
import { UpdateAgentRuntimeCommandInput, UpdateAgentRuntimeCommandOutput } from "./commands/UpdateAgentRuntimeCommand";
|
|
79
|
-
import { UpdateAgentRuntimeEndpointCommandInput, UpdateAgentRuntimeEndpointCommandOutput } from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
80
|
-
import { UpdateApiKeyCredentialProviderCommandInput, UpdateApiKeyCredentialProviderCommandOutput } from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
81
|
-
import { UpdateEvaluatorCommandInput, UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
|
|
82
|
-
import { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
83
|
-
import { UpdateGatewayTargetCommandInput, UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
|
|
84
|
-
import { UpdateMemoryCommandInput, UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
|
|
85
|
-
import { UpdateOauth2CredentialProviderCommandInput, UpdateOauth2CredentialProviderCommandOutput } from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
86
|
-
import { UpdateOnlineEvaluationConfigCommandInput, UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
87
|
-
import { UpdatePolicyCommandInput, UpdatePolicyCommandOutput } from "./commands/UpdatePolicyCommand";
|
|
88
|
-
import { UpdatePolicyEngineCommandInput, UpdatePolicyEngineCommandOutput } from "./commands/UpdatePolicyEngineCommand";
|
|
89
|
-
import { UpdateWorkloadIdentityCommandInput, UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
|
|
4
|
+
import { type CreateAgentRuntimeCommandInput, type CreateAgentRuntimeCommandOutput } from "./commands/CreateAgentRuntimeCommand";
|
|
5
|
+
import { type CreateAgentRuntimeEndpointCommandInput, type CreateAgentRuntimeEndpointCommandOutput } from "./commands/CreateAgentRuntimeEndpointCommand";
|
|
6
|
+
import { type CreateApiKeyCredentialProviderCommandInput, type CreateApiKeyCredentialProviderCommandOutput } from "./commands/CreateApiKeyCredentialProviderCommand";
|
|
7
|
+
import { type CreateBrowserCommandInput, type CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
|
|
8
|
+
import { type CreateBrowserProfileCommandInput, type CreateBrowserProfileCommandOutput } from "./commands/CreateBrowserProfileCommand";
|
|
9
|
+
import { type CreateCodeInterpreterCommandInput, type CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
|
|
10
|
+
import { type CreateEvaluatorCommandInput, type CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
|
|
11
|
+
import { type CreateGatewayCommandInput, type CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
12
|
+
import { type CreateGatewayTargetCommandInput, type CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
|
|
13
|
+
import { type CreateMemoryCommandInput, type CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
|
|
14
|
+
import { type CreateOauth2CredentialProviderCommandInput, type CreateOauth2CredentialProviderCommandOutput } from "./commands/CreateOauth2CredentialProviderCommand";
|
|
15
|
+
import { type CreateOnlineEvaluationConfigCommandInput, type CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
16
|
+
import { type CreatePolicyCommandInput, type CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
|
|
17
|
+
import { type CreatePolicyEngineCommandInput, type CreatePolicyEngineCommandOutput } from "./commands/CreatePolicyEngineCommand";
|
|
18
|
+
import { type CreateWorkloadIdentityCommandInput, type CreateWorkloadIdentityCommandOutput } from "./commands/CreateWorkloadIdentityCommand";
|
|
19
|
+
import { type DeleteAgentRuntimeCommandInput, type DeleteAgentRuntimeCommandOutput } from "./commands/DeleteAgentRuntimeCommand";
|
|
20
|
+
import { type DeleteAgentRuntimeEndpointCommandInput, type DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
|
|
21
|
+
import { type DeleteApiKeyCredentialProviderCommandInput, type DeleteApiKeyCredentialProviderCommandOutput } from "./commands/DeleteApiKeyCredentialProviderCommand";
|
|
22
|
+
import { type DeleteBrowserCommandInput, type DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
|
|
23
|
+
import { type DeleteBrowserProfileCommandInput, type DeleteBrowserProfileCommandOutput } from "./commands/DeleteBrowserProfileCommand";
|
|
24
|
+
import { type DeleteCodeInterpreterCommandInput, type DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
|
|
25
|
+
import { type DeleteEvaluatorCommandInput, type DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
|
|
26
|
+
import { type DeleteGatewayCommandInput, type DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
27
|
+
import { type DeleteGatewayTargetCommandInput, type DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
|
|
28
|
+
import { type DeleteMemoryCommandInput, type DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
|
|
29
|
+
import { type DeleteOauth2CredentialProviderCommandInput, type DeleteOauth2CredentialProviderCommandOutput } from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
30
|
+
import { type DeleteOnlineEvaluationConfigCommandInput, type DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
31
|
+
import { type DeletePolicyCommandInput, type DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
32
|
+
import { type DeletePolicyEngineCommandInput, type DeletePolicyEngineCommandOutput } from "./commands/DeletePolicyEngineCommand";
|
|
33
|
+
import { type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
34
|
+
import { type DeleteWorkloadIdentityCommandInput, type DeleteWorkloadIdentityCommandOutput } from "./commands/DeleteWorkloadIdentityCommand";
|
|
35
|
+
import { type GetAgentRuntimeCommandInput, type GetAgentRuntimeCommandOutput } from "./commands/GetAgentRuntimeCommand";
|
|
36
|
+
import { type GetAgentRuntimeEndpointCommandInput, type GetAgentRuntimeEndpointCommandOutput } from "./commands/GetAgentRuntimeEndpointCommand";
|
|
37
|
+
import { type GetApiKeyCredentialProviderCommandInput, type GetApiKeyCredentialProviderCommandOutput } from "./commands/GetApiKeyCredentialProviderCommand";
|
|
38
|
+
import { type GetBrowserCommandInput, type GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
|
|
39
|
+
import { type GetBrowserProfileCommandInput, type GetBrowserProfileCommandOutput } from "./commands/GetBrowserProfileCommand";
|
|
40
|
+
import { type GetCodeInterpreterCommandInput, type GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
|
|
41
|
+
import { type GetEvaluatorCommandInput, type GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
|
|
42
|
+
import { type GetGatewayCommandInput, type GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
43
|
+
import { type GetGatewayTargetCommandInput, type GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
|
|
44
|
+
import { type GetMemoryCommandInput, type GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
|
|
45
|
+
import { type GetOauth2CredentialProviderCommandInput, type GetOauth2CredentialProviderCommandOutput } from "./commands/GetOauth2CredentialProviderCommand";
|
|
46
|
+
import { type GetOnlineEvaluationConfigCommandInput, type GetOnlineEvaluationConfigCommandOutput } from "./commands/GetOnlineEvaluationConfigCommand";
|
|
47
|
+
import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
48
|
+
import { type GetPolicyEngineCommandInput, type GetPolicyEngineCommandOutput } from "./commands/GetPolicyEngineCommand";
|
|
49
|
+
import { type GetPolicyGenerationCommandInput, type GetPolicyGenerationCommandOutput } from "./commands/GetPolicyGenerationCommand";
|
|
50
|
+
import { type GetResourcePolicyCommandInput, type GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
|
|
51
|
+
import { type GetTokenVaultCommandInput, type GetTokenVaultCommandOutput } from "./commands/GetTokenVaultCommand";
|
|
52
|
+
import { type GetWorkloadIdentityCommandInput, type GetWorkloadIdentityCommandOutput } from "./commands/GetWorkloadIdentityCommand";
|
|
53
|
+
import { type ListAgentRuntimeEndpointsCommandInput, type ListAgentRuntimeEndpointsCommandOutput } from "./commands/ListAgentRuntimeEndpointsCommand";
|
|
54
|
+
import { type ListAgentRuntimesCommandInput, type ListAgentRuntimesCommandOutput } from "./commands/ListAgentRuntimesCommand";
|
|
55
|
+
import { type ListAgentRuntimeVersionsCommandInput, type ListAgentRuntimeVersionsCommandOutput } from "./commands/ListAgentRuntimeVersionsCommand";
|
|
56
|
+
import { type ListApiKeyCredentialProvidersCommandInput, type ListApiKeyCredentialProvidersCommandOutput } from "./commands/ListApiKeyCredentialProvidersCommand";
|
|
57
|
+
import { type ListBrowserProfilesCommandInput, type ListBrowserProfilesCommandOutput } from "./commands/ListBrowserProfilesCommand";
|
|
58
|
+
import { type ListBrowsersCommandInput, type ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
|
|
59
|
+
import { type ListCodeInterpretersCommandInput, type ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
|
|
60
|
+
import { type ListEvaluatorsCommandInput, type ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
|
|
61
|
+
import { type ListGatewaysCommandInput, type ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
62
|
+
import { type ListGatewayTargetsCommandInput, type ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
|
|
63
|
+
import { type ListMemoriesCommandInput, type ListMemoriesCommandOutput } from "./commands/ListMemoriesCommand";
|
|
64
|
+
import { type ListOauth2CredentialProvidersCommandInput, type ListOauth2CredentialProvidersCommandOutput } from "./commands/ListOauth2CredentialProvidersCommand";
|
|
65
|
+
import { type ListOnlineEvaluationConfigsCommandInput, type ListOnlineEvaluationConfigsCommandOutput } from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
66
|
+
import { type ListPoliciesCommandInput, type ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
67
|
+
import { type ListPolicyEnginesCommandInput, type ListPolicyEnginesCommandOutput } from "./commands/ListPolicyEnginesCommand";
|
|
68
|
+
import { type ListPolicyGenerationAssetsCommandInput, type ListPolicyGenerationAssetsCommandOutput } from "./commands/ListPolicyGenerationAssetsCommand";
|
|
69
|
+
import { type ListPolicyGenerationsCommandInput, type ListPolicyGenerationsCommandOutput } from "./commands/ListPolicyGenerationsCommand";
|
|
70
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
71
|
+
import { type ListWorkloadIdentitiesCommandInput, type ListWorkloadIdentitiesCommandOutput } from "./commands/ListWorkloadIdentitiesCommand";
|
|
72
|
+
import { type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
73
|
+
import { type SetTokenVaultCMKCommandInput, type SetTokenVaultCMKCommandOutput } from "./commands/SetTokenVaultCMKCommand";
|
|
74
|
+
import { type StartPolicyGenerationCommandInput, type StartPolicyGenerationCommandOutput } from "./commands/StartPolicyGenerationCommand";
|
|
75
|
+
import { type SynchronizeGatewayTargetsCommandInput, type SynchronizeGatewayTargetsCommandOutput } from "./commands/SynchronizeGatewayTargetsCommand";
|
|
76
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
77
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
78
|
+
import { type UpdateAgentRuntimeCommandInput, type UpdateAgentRuntimeCommandOutput } from "./commands/UpdateAgentRuntimeCommand";
|
|
79
|
+
import { type UpdateAgentRuntimeEndpointCommandInput, type UpdateAgentRuntimeEndpointCommandOutput } from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
80
|
+
import { type UpdateApiKeyCredentialProviderCommandInput, type UpdateApiKeyCredentialProviderCommandOutput } from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
81
|
+
import { type UpdateEvaluatorCommandInput, type UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
|
|
82
|
+
import { type UpdateGatewayCommandInput, type UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
83
|
+
import { type UpdateGatewayTargetCommandInput, type UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
|
|
84
|
+
import { type UpdateMemoryCommandInput, type UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
|
|
85
|
+
import { type UpdateOauth2CredentialProviderCommandInput, type UpdateOauth2CredentialProviderCommandOutput } from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
86
|
+
import { type UpdateOnlineEvaluationConfigCommandInput, type UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
87
|
+
import { type UpdatePolicyCommandInput, type UpdatePolicyCommandOutput } from "./commands/UpdatePolicyCommand";
|
|
88
|
+
import { type UpdatePolicyEngineCommandInput, type UpdatePolicyEngineCommandOutput } from "./commands/UpdatePolicyEngineCommand";
|
|
89
|
+
import { type UpdateWorkloadIdentityCommandInput, type UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
|
|
90
90
|
export interface BedrockAgentCoreControl {
|
|
91
91
|
/**
|
|
92
92
|
* @see {@link CreateAgentRuntimeCommand}
|