@aws-sdk/client-bedrock 3.1063.0 → 3.1065.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/README.md +14 -0
- package/dist-cjs/index.js +35 -0
- package/dist-cjs/schemas/schemas_0.js +41 -8
- package/dist-es/Bedrock.js +4 -0
- package/dist-es/commands/GetAccountDataRetentionCommand.js +16 -0
- package/dist-es/commands/PutAccountDataRetentionCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/schemas/schemas_0.js +33 -0
- package/dist-types/Bedrock.d.ts +15 -0
- package/dist-types/BedrockClient.d.ts +4 -2
- package/dist-types/commands/GetAccountDataRetentionCommand.d.ts +87 -0
- package/dist-types/commands/PutAccountDataRetentionCommand.d.ts +89 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +46 -120
- package/dist-types/models/models_1.d.ts +120 -1
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/Bedrock.d.ts +35 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetAccountDataRetentionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutAccountDataRetentionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -30
- package/dist-types/ts3.4/models/models_1.d.ts +28 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -447,6 +447,13 @@ ExportAutomatedReasoningPolicyVersion
|
|
|
447
447
|
</details>
|
|
448
448
|
<details>
|
|
449
449
|
<summary>
|
|
450
|
+
GetAccountDataRetention
|
|
451
|
+
</summary>
|
|
452
|
+
|
|
453
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock/command/GetAccountDataRetentionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock/Interface/GetAccountDataRetentionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock/Interface/GetAccountDataRetentionCommandOutput/)
|
|
454
|
+
</details>
|
|
455
|
+
<details>
|
|
456
|
+
<summary>
|
|
450
457
|
GetAdvancedPromptOptimizationJob
|
|
451
458
|
</summary>
|
|
452
459
|
|
|
@@ -783,6 +790,13 @@ ListTagsForResource
|
|
|
783
790
|
</details>
|
|
784
791
|
<details>
|
|
785
792
|
<summary>
|
|
793
|
+
PutAccountDataRetention
|
|
794
|
+
</summary>
|
|
795
|
+
|
|
796
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock/command/PutAccountDataRetentionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock/Interface/PutAccountDataRetentionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock/Interface/PutAccountDataRetentionCommandOutput/)
|
|
797
|
+
</details>
|
|
798
|
+
<details>
|
|
799
|
+
<summary>
|
|
786
800
|
PutEnforcedGuardrailConfiguration
|
|
787
801
|
</summary>
|
|
788
802
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -573,6 +573,18 @@ class ExportAutomatedReasoningPolicyVersionCommand extends client.Command
|
|
|
573
573
|
.build() {
|
|
574
574
|
}
|
|
575
575
|
|
|
576
|
+
class GetAccountDataRetentionCommand extends client.Command
|
|
577
|
+
.classBuilder()
|
|
578
|
+
.ep(commonParams)
|
|
579
|
+
.m(function (Command, cs, config, o) {
|
|
580
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
581
|
+
})
|
|
582
|
+
.s("AmazonBedrockControlPlaneService", "GetAccountDataRetention", {})
|
|
583
|
+
.n("BedrockClient", "GetAccountDataRetentionCommand")
|
|
584
|
+
.sc(schemas_0.GetAccountDataRetention$)
|
|
585
|
+
.build() {
|
|
586
|
+
}
|
|
587
|
+
|
|
576
588
|
class GetAdvancedPromptOptimizationJobCommand extends client.Command
|
|
577
589
|
.classBuilder()
|
|
578
590
|
.ep(commonParams)
|
|
@@ -1149,6 +1161,18 @@ class ListTagsForResourceCommand extends client.Command
|
|
|
1149
1161
|
.build() {
|
|
1150
1162
|
}
|
|
1151
1163
|
|
|
1164
|
+
class PutAccountDataRetentionCommand extends client.Command
|
|
1165
|
+
.classBuilder()
|
|
1166
|
+
.ep(commonParams)
|
|
1167
|
+
.m(function (Command, cs, config, o) {
|
|
1168
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1169
|
+
})
|
|
1170
|
+
.s("AmazonBedrockControlPlaneService", "PutAccountDataRetention", {})
|
|
1171
|
+
.n("BedrockClient", "PutAccountDataRetentionCommand")
|
|
1172
|
+
.sc(schemas_0.PutAccountDataRetention$)
|
|
1173
|
+
.build() {
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1152
1176
|
class PutEnforcedGuardrailConfigurationCommand extends client.Command
|
|
1153
1177
|
.classBuilder()
|
|
1154
1178
|
.ep(commonParams)
|
|
@@ -1466,6 +1490,7 @@ const commands = {
|
|
|
1466
1490
|
DeleteResourcePolicyCommand,
|
|
1467
1491
|
DeregisterMarketplaceModelEndpointCommand,
|
|
1468
1492
|
ExportAutomatedReasoningPolicyVersionCommand,
|
|
1493
|
+
GetAccountDataRetentionCommand,
|
|
1469
1494
|
GetAdvancedPromptOptimizationJobCommand,
|
|
1470
1495
|
GetAutomatedReasoningPolicyCommand,
|
|
1471
1496
|
GetAutomatedReasoningPolicyAnnotationsCommand,
|
|
@@ -1514,6 +1539,7 @@ const commands = {
|
|
|
1514
1539
|
ListPromptRoutersCommand,
|
|
1515
1540
|
ListProvisionedModelThroughputsCommand,
|
|
1516
1541
|
ListTagsForResourceCommand,
|
|
1542
|
+
PutAccountDataRetentionCommand,
|
|
1517
1543
|
PutEnforcedGuardrailConfigurationCommand,
|
|
1518
1544
|
PutModelInvocationLoggingConfigurationCommand,
|
|
1519
1545
|
PutResourcePolicyCommand,
|
|
@@ -1693,6 +1719,12 @@ const ModelStatus = {
|
|
|
1693
1719
|
CREATING: "Creating",
|
|
1694
1720
|
FAILED: "Failed",
|
|
1695
1721
|
};
|
|
1722
|
+
const DataRetentionMode = {
|
|
1723
|
+
DEFAULT: "default",
|
|
1724
|
+
INHERIT: "inherit",
|
|
1725
|
+
NONE: "none",
|
|
1726
|
+
PROVIDER_DATA_SHARE: "provider_data_share",
|
|
1727
|
+
};
|
|
1696
1728
|
const EvaluationJobStatus = {
|
|
1697
1729
|
COMPLETED: "Completed",
|
|
1698
1730
|
DELETING: "Deleting",
|
|
@@ -2005,6 +2037,7 @@ exports.CreateProvisionedModelThroughputCommand = CreateProvisionedModelThroughp
|
|
|
2005
2037
|
exports.CustomModelDeploymentStatus = CustomModelDeploymentStatus;
|
|
2006
2038
|
exports.CustomModelDeploymentUpdateStatus = CustomModelDeploymentUpdateStatus;
|
|
2007
2039
|
exports.CustomizationType = CustomizationType;
|
|
2040
|
+
exports.DataRetentionMode = DataRetentionMode;
|
|
2008
2041
|
exports.DeleteAutomatedReasoningPolicyBuildWorkflowCommand = DeleteAutomatedReasoningPolicyBuildWorkflowCommand;
|
|
2009
2042
|
exports.DeleteAutomatedReasoningPolicyCommand = DeleteAutomatedReasoningPolicyCommand;
|
|
2010
2043
|
exports.DeleteAutomatedReasoningPolicyTestCaseCommand = DeleteAutomatedReasoningPolicyTestCaseCommand;
|
|
@@ -2029,6 +2062,7 @@ exports.ExportAutomatedReasoningPolicyVersionCommand = ExportAutomatedReasoningP
|
|
|
2029
2062
|
exports.ExternalSourceType = ExternalSourceType;
|
|
2030
2063
|
exports.FineTuningJobStatus = FineTuningJobStatus;
|
|
2031
2064
|
exports.FoundationModelLifecycleStatus = FoundationModelLifecycleStatus;
|
|
2065
|
+
exports.GetAccountDataRetentionCommand = GetAccountDataRetentionCommand;
|
|
2032
2066
|
exports.GetAdvancedPromptOptimizationJobCommand = GetAdvancedPromptOptimizationJobCommand;
|
|
2033
2067
|
exports.GetAutomatedReasoningPolicyAnnotationsCommand = GetAutomatedReasoningPolicyAnnotationsCommand;
|
|
2034
2068
|
exports.GetAutomatedReasoningPolicyBuildWorkflowCommand = GetAutomatedReasoningPolicyBuildWorkflowCommand;
|
|
@@ -2110,6 +2144,7 @@ exports.PerformanceConfigLatency = PerformanceConfigLatency;
|
|
|
2110
2144
|
exports.PromptRouterStatus = PromptRouterStatus;
|
|
2111
2145
|
exports.PromptRouterType = PromptRouterType;
|
|
2112
2146
|
exports.ProvisionedModelStatus = ProvisionedModelStatus;
|
|
2147
|
+
exports.PutAccountDataRetentionCommand = PutAccountDataRetentionCommand;
|
|
2113
2148
|
exports.PutEnforcedGuardrailConfigurationCommand = PutEnforcedGuardrailConfigurationCommand;
|
|
2114
2149
|
exports.PutModelInvocationLoggingConfigurationCommand = PutModelInvocationLoggingConfigurationCommand;
|
|
2115
2150
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
@@ -4,14 +4,14 @@ exports.AutomatedReasoningPolicyBuildStep$ = exports.AutomatedReasoningPolicyBui
|
|
|
4
4
|
exports.BatchDeleteAdvancedPromptOptimizationJobResponse$ = exports.BatchDeleteAdvancedPromptOptimizationJobRequest$ = exports.BatchDeleteAdvancedPromptOptimizationJobItem$ = exports.BatchDeleteAdvancedPromptOptimizationJobError$ = exports.AutomatedReasoningPolicyVariableReport$ = exports.AutomatedReasoningPolicyUpdateVariableMutation$ = exports.AutomatedReasoningPolicyUpdateVariableAnnotation$ = exports.AutomatedReasoningPolicyUpdateTypeValue$ = exports.AutomatedReasoningPolicyUpdateTypeMutation$ = exports.AutomatedReasoningPolicyUpdateTypeAnnotation$ = exports.AutomatedReasoningPolicyUpdateRuleMutation$ = exports.AutomatedReasoningPolicyUpdateRuleAnnotation$ = exports.AutomatedReasoningPolicyUpdateFromScenarioFeedbackAnnotation$ = exports.AutomatedReasoningPolicyUpdateFromRuleFeedbackAnnotation$ = exports.AutomatedReasoningPolicyTestResult$ = exports.AutomatedReasoningPolicyTestCase$ = exports.AutomatedReasoningPolicySummary$ = exports.AutomatedReasoningPolicyStatementReference$ = exports.AutomatedReasoningPolicyStatementLocation$ = exports.AutomatedReasoningPolicySourceDocument$ = exports.AutomatedReasoningPolicyScenarios$ = exports.AutomatedReasoningPolicyScenario$ = exports.AutomatedReasoningPolicyRuleReport$ = exports.AutomatedReasoningPolicyReportSourceDocument$ = exports.AutomatedReasoningPolicyPlanning$ = exports.AutomatedReasoningPolicyIterativeRefinementContent$ = exports.AutomatedReasoningPolicyIngestContentAnnotation$ = exports.AutomatedReasoningPolicyGeneratedTestCases$ = exports.AutomatedReasoningPolicyGeneratedTestCase$ = exports.AutomatedReasoningPolicyFidelityReport$ = exports.AutomatedReasoningPolicyDisjointRuleSet$ = exports.AutomatedReasoningPolicyDeleteVariableMutation$ = exports.AutomatedReasoningPolicyDeleteVariableAnnotation$ = exports.AutomatedReasoningPolicyDeleteTypeValue$ = exports.AutomatedReasoningPolicyDeleteTypeMutation$ = exports.AutomatedReasoningPolicyDeleteTypeAnnotation$ = exports.AutomatedReasoningPolicyDeleteRuleMutation$ = exports.AutomatedReasoningPolicyDeleteRuleAnnotation$ = exports.AutomatedReasoningPolicyDefinitionVariable$ = exports.AutomatedReasoningPolicyDefinitionTypeValuePair$ = exports.AutomatedReasoningPolicyDefinitionTypeValue$ = exports.AutomatedReasoningPolicyDefinitionType$ = exports.AutomatedReasoningPolicyDefinitionRule$ = exports.AutomatedReasoningPolicyDefinitionQualityReport$ = exports.AutomatedReasoningPolicyDefinition$ = exports.AutomatedReasoningPolicyBuildWorkflowSummary$ = exports.AutomatedReasoningPolicyBuildWorkflowSource$ = exports.AutomatedReasoningPolicyBuildWorkflowRepairContent$ = exports.AutomatedReasoningPolicyBuildWorkflowDocument$ = exports.AutomatedReasoningPolicyBuildStepMessage$ = void 0;
|
|
5
5
|
exports.CustomModelDeploymentUpdateDetails$ = exports.CustomModelDeploymentSummary$ = exports.CustomMetricEvaluatorModelConfig$ = exports.CustomMetricDefinition$ = exports.CustomMetricBedrockEvaluatorModel$ = exports.CreateProvisionedModelThroughputResponse$ = exports.CreateProvisionedModelThroughputRequest$ = exports.CreatePromptRouterResponse$ = exports.CreatePromptRouterRequest$ = exports.CreateModelInvocationJobResponse$ = exports.CreateModelInvocationJobRequest$ = exports.CreateModelImportJobResponse$ = exports.CreateModelImportJobRequest$ = exports.CreateModelCustomizationJobResponse$ = exports.CreateModelCustomizationJobRequest$ = exports.CreateModelCopyJobResponse$ = exports.CreateModelCopyJobRequest$ = exports.CreateMarketplaceModelEndpointResponse$ = exports.CreateMarketplaceModelEndpointRequest$ = exports.CreateInferenceProfileResponse$ = exports.CreateInferenceProfileRequest$ = exports.CreateGuardrailVersionResponse$ = exports.CreateGuardrailVersionRequest$ = exports.CreateGuardrailResponse$ = exports.CreateGuardrailRequest$ = exports.CreateFoundationModelAgreementResponse$ = exports.CreateFoundationModelAgreementRequest$ = exports.CreateEvaluationJobResponse$ = exports.CreateEvaluationJobRequest$ = exports.CreateCustomModelResponse$ = exports.CreateCustomModelRequest$ = exports.CreateCustomModelDeploymentResponse$ = exports.CreateCustomModelDeploymentRequest$ = exports.CreateAutomatedReasoningPolicyVersionResponse$ = exports.CreateAutomatedReasoningPolicyVersionRequest$ = exports.CreateAutomatedReasoningPolicyTestCaseResponse$ = exports.CreateAutomatedReasoningPolicyTestCaseRequest$ = exports.CreateAutomatedReasoningPolicyResponse$ = exports.CreateAutomatedReasoningPolicyRequest$ = exports.CreateAdvancedPromptOptimizationJobResponse$ = exports.CreateAdvancedPromptOptimizationJobRequest$ = exports.CloudWatchConfig$ = exports.CancelAutomatedReasoningPolicyBuildWorkflowResponse$ = exports.CancelAutomatedReasoningPolicyBuildWorkflowRequest$ = exports.ByteContentDoc$ = exports.BedrockEvaluatorModel$ = exports.BatchDeleteEvaluationJobResponse$ = exports.BatchDeleteEvaluationJobRequest$ = exports.BatchDeleteEvaluationJobItem$ = exports.BatchDeleteEvaluationJobError$ = void 0;
|
|
6
6
|
exports.ExportAutomatedReasoningPolicyVersionResponse$ = exports.ExportAutomatedReasoningPolicyVersionRequest$ = exports.EvaluationSummary$ = exports.EvaluationRagConfigSummary$ = exports.EvaluationPrecomputedRetrieveSourceConfig$ = exports.EvaluationPrecomputedRetrieveAndGenerateSourceConfig$ = exports.EvaluationPrecomputedInferenceSource$ = exports.EvaluationOutputDataConfig$ = exports.EvaluationModelConfigSummary$ = exports.EvaluationInferenceConfigSummary$ = exports.EvaluationDatasetMetricConfig$ = exports.EvaluationDataset$ = exports.EvaluationBedrockModel$ = exports.DistillationConfig$ = exports.DimensionalPriceRate$ = exports.DeregisterMarketplaceModelEndpointResponse$ = exports.DeregisterMarketplaceModelEndpointRequest$ = exports.DeleteResourcePolicyResponse$ = exports.DeleteResourcePolicyRequest$ = exports.DeleteProvisionedModelThroughputResponse$ = exports.DeleteProvisionedModelThroughputRequest$ = exports.DeletePromptRouterResponse$ = exports.DeletePromptRouterRequest$ = exports.DeleteModelInvocationLoggingConfigurationResponse$ = exports.DeleteModelInvocationLoggingConfigurationRequest$ = exports.DeleteMarketplaceModelEndpointResponse$ = exports.DeleteMarketplaceModelEndpointRequest$ = exports.DeleteInferenceProfileResponse$ = exports.DeleteInferenceProfileRequest$ = exports.DeleteImportedModelResponse$ = exports.DeleteImportedModelRequest$ = exports.DeleteGuardrailResponse$ = exports.DeleteGuardrailRequest$ = exports.DeleteFoundationModelAgreementResponse$ = exports.DeleteFoundationModelAgreementRequest$ = exports.DeleteEnforcedGuardrailConfigurationResponse$ = exports.DeleteEnforcedGuardrailConfigurationRequest$ = exports.DeleteCustomModelResponse$ = exports.DeleteCustomModelRequest$ = exports.DeleteCustomModelDeploymentResponse$ = exports.DeleteCustomModelDeploymentRequest$ = exports.DeleteAutomatedReasoningPolicyTestCaseResponse$ = exports.DeleteAutomatedReasoningPolicyTestCaseRequest$ = exports.DeleteAutomatedReasoningPolicyResponse$ = exports.DeleteAutomatedReasoningPolicyRequest$ = exports.DeleteAutomatedReasoningPolicyBuildWorkflowResponse$ = exports.DeleteAutomatedReasoningPolicyBuildWorkflowRequest$ = exports.DataProcessingDetails$ = exports.CustomModelUnits$ = exports.CustomModelSummary$ = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.UpdateProvisionedModelThroughput$ = exports.UpdateMarketplaceModelEndpoint$ = exports.UpdateGuardrail$ = exports.UpdateCustomModelDeployment$ = exports.UpdateAutomatedReasoningPolicyTestCase$ = exports.UpdateAutomatedReasoningPolicyAnnotations$ = exports.UpdateAutomatedReasoningPolicy$ = exports.UntagResource$ = exports.TagResource$ = exports.StopModelInvocationJob$ = exports.StopModelCustomizationJob$ = exports.StopEvaluationJob$ = exports.StopAdvancedPromptOptimizationJob$ = exports.StartAutomatedReasoningPolicyTestWorkflow$ = exports.StartAutomatedReasoningPolicyBuildWorkflow$ = exports.RegisterMarketplaceModelEndpoint$ = exports.PutUseCaseForModelAccess$ = exports.PutResourcePolicy$ = exports.PutModelInvocationLoggingConfiguration$ = exports.PutEnforcedGuardrailConfiguration$ = exports.ListTagsForResource$ = exports.ListProvisionedModelThroughputs$ = exports.ListPromptRouters$ = exports.ListModelInvocationJobs$ = exports.ListModelImportJobs$ = exports.ListModelCustomizationJobs$ = exports.ListModelCopyJobs$ = exports.ListMarketplaceModelEndpoints$ = exports.ListInferenceProfiles$ = exports.ListImportedModels$ = exports.ListGuardrails$ = exports.ListFoundationModels$ = exports.ListFoundationModelAgreementOffers$ = exports.ListEvaluationJobs$ = exports.ListEnforcedGuardrailsConfiguration$ = exports.ListCustomModels$ = void 0;
|
|
7
|
+
exports.GetModelImportJobRequest$ = exports.GetModelCustomizationJobResponse$ = exports.GetModelCustomizationJobRequest$ = exports.GetModelCopyJobResponse$ = exports.GetModelCopyJobRequest$ = exports.GetMarketplaceModelEndpointResponse$ = exports.GetMarketplaceModelEndpointRequest$ = exports.GetInferenceProfileResponse$ = exports.GetInferenceProfileRequest$ = exports.GetImportedModelResponse$ = exports.GetImportedModelRequest$ = exports.GetGuardrailResponse$ = exports.GetGuardrailRequest$ = exports.GetFoundationModelResponse$ = exports.GetFoundationModelRequest$ = exports.GetFoundationModelAvailabilityResponse$ = exports.GetFoundationModelAvailabilityRequest$ = exports.GetEvaluationJobResponse$ = exports.GetEvaluationJobRequest$ = exports.GetCustomModelResponse$ = exports.GetCustomModelRequest$ = exports.GetCustomModelDeploymentResponse$ = exports.GetCustomModelDeploymentRequest$ = exports.GetAutomatedReasoningPolicyTestResultResponse$ = exports.GetAutomatedReasoningPolicyTestResultRequest$ = exports.GetAutomatedReasoningPolicyTestCaseResponse$ = exports.GetAutomatedReasoningPolicyTestCaseRequest$ = exports.GetAutomatedReasoningPolicyResponse$ = exports.GetAutomatedReasoningPolicyRequest$ = exports.GetAutomatedReasoningPolicyNextScenarioResponse$ = exports.GetAutomatedReasoningPolicyNextScenarioRequest$ = exports.GetAutomatedReasoningPolicyBuildWorkflowResultAssetsResponse$ = exports.GetAutomatedReasoningPolicyBuildWorkflowResultAssetsRequest$ = exports.GetAutomatedReasoningPolicyBuildWorkflowResponse$ = exports.GetAutomatedReasoningPolicyBuildWorkflowRequest$ = exports.GetAutomatedReasoningPolicyAnnotationsResponse$ = exports.GetAutomatedReasoningPolicyAnnotationsRequest$ = exports.GetAdvancedPromptOptimizationJobResponse$ = exports.GetAdvancedPromptOptimizationJobRequest$ = exports.GetAccountDataRetentionResponse$ = exports.GetAccountDataRetentionRequest$ = exports.GenerationConfiguration$ = exports.FoundationModelSummary$ = exports.FoundationModelLifecycle$ = exports.FoundationModelDetails$ = exports.FilterAttribute$ = exports.FieldForReranking$ = exports.ExternalSourcesRetrieveAndGenerateConfiguration$ = exports.ExternalSourcesGenerationConfiguration$ = exports.ExternalSource$ = void 0;
|
|
8
|
+
exports.HumanWorkflowConfig$ = exports.HumanEvaluationCustomMetric$ = exports.HumanEvaluationConfig$ = exports.GuardrailWordPolicyConfig$ = exports.GuardrailWordPolicy$ = exports.GuardrailWordConfig$ = exports.GuardrailWord$ = exports.GuardrailTopicsTierConfig$ = exports.GuardrailTopicsTier$ = exports.GuardrailTopicPolicyConfig$ = exports.GuardrailTopicPolicy$ = exports.GuardrailTopicConfig$ = exports.GuardrailTopic$ = exports.GuardrailSummary$ = exports.GuardrailSensitiveInformationPolicyConfig$ = exports.GuardrailSensitiveInformationPolicy$ = exports.GuardrailRegexConfig$ = exports.GuardrailRegex$ = exports.GuardrailPiiEntityConfig$ = exports.GuardrailPiiEntity$ = exports.GuardrailManagedWordsConfig$ = exports.GuardrailManagedWords$ = exports.GuardrailCrossRegionDetails$ = exports.GuardrailCrossRegionConfig$ = exports.GuardrailContextualGroundingPolicyConfig$ = exports.GuardrailContextualGroundingPolicy$ = exports.GuardrailContextualGroundingFilterConfig$ = exports.GuardrailContextualGroundingFilter$ = exports.GuardrailContentPolicyConfig$ = exports.GuardrailContentPolicy$ = exports.GuardrailContentFiltersTierConfig$ = exports.GuardrailContentFiltersTier$ = exports.GuardrailContentFilterConfig$ = exports.GuardrailContentFilter$ = exports.GuardrailConfiguration$ = exports.GuardrailAutomatedReasoningPolicyConfig$ = exports.GuardrailAutomatedReasoningPolicy$ = exports.GetUseCaseForModelAccessResponse$ = exports.GetUseCaseForModelAccessRequest$ = exports.GetResourcePolicyResponse$ = exports.GetResourcePolicyRequest$ = exports.GetProvisionedModelThroughputResponse$ = exports.GetProvisionedModelThroughputRequest$ = exports.GetPromptRouterResponse$ = exports.GetPromptRouterRequest$ = exports.GetModelInvocationLoggingConfigurationResponse$ = exports.GetModelInvocationLoggingConfigurationRequest$ = exports.GetModelInvocationJobResponse$ = exports.GetModelInvocationJobRequest$ = exports.GetModelImportJobResponse$ = void 0;
|
|
9
|
+
exports.ListModelInvocationJobsResponse$ = exports.ListModelInvocationJobsRequest$ = exports.ListModelImportJobsResponse$ = exports.ListModelImportJobsRequest$ = exports.ListModelCustomizationJobsResponse$ = exports.ListModelCustomizationJobsRequest$ = exports.ListModelCopyJobsResponse$ = exports.ListModelCopyJobsRequest$ = exports.ListMarketplaceModelEndpointsResponse$ = exports.ListMarketplaceModelEndpointsRequest$ = exports.ListInferenceProfilesResponse$ = exports.ListInferenceProfilesRequest$ = exports.ListImportedModelsResponse$ = exports.ListImportedModelsRequest$ = exports.ListGuardrailsResponse$ = exports.ListGuardrailsRequest$ = exports.ListFoundationModelsResponse$ = exports.ListFoundationModelsRequest$ = exports.ListFoundationModelAgreementOffersResponse$ = exports.ListFoundationModelAgreementOffersRequest$ = exports.ListEvaluationJobsResponse$ = exports.ListEvaluationJobsRequest$ = exports.ListEnforcedGuardrailsConfigurationResponse$ = exports.ListEnforcedGuardrailsConfigurationRequest$ = exports.ListCustomModelsResponse$ = exports.ListCustomModelsRequest$ = exports.ListCustomModelDeploymentsResponse$ = exports.ListCustomModelDeploymentsRequest$ = exports.ListAutomatedReasoningPolicyTestResultsResponse$ = exports.ListAutomatedReasoningPolicyTestResultsRequest$ = exports.ListAutomatedReasoningPolicyTestCasesResponse$ = exports.ListAutomatedReasoningPolicyTestCasesRequest$ = exports.ListAutomatedReasoningPolicyBuildWorkflowsResponse$ = exports.ListAutomatedReasoningPolicyBuildWorkflowsRequest$ = exports.ListAutomatedReasoningPoliciesResponse$ = exports.ListAutomatedReasoningPoliciesRequest$ = exports.ListAdvancedPromptOptimizationJobsResponse$ = exports.ListAdvancedPromptOptimizationJobsRequest$ = exports.LegalTerm$ = exports.LambdaGraderConfig$ = exports.KnowledgeBaseVectorSearchConfiguration$ = exports.KnowledgeBaseRetrieveAndGenerateConfiguration$ = exports.KnowledgeBaseRetrievalConfiguration$ = exports.KbInferenceConfig$ = exports.InvocationLogsConfig$ = exports.InferenceProfileSummary$ = exports.InferenceProfileModel$ = exports.InferenceConfiguration$ = exports.ImportedModelSummary$ = exports.ImplicitFilterConfiguration$ = void 0;
|
|
10
|
+
exports.S3Config$ = exports.RoutingCriteria$ = exports.RFTHyperParameters$ = exports.RFTConfig$ = exports.RetrieveConfig$ = exports.RetrieveAndGenerateConfiguration$ = exports.RequestMetadataBaseFilters$ = exports.RegisterMarketplaceModelEndpointResponse$ = exports.RegisterMarketplaceModelEndpointRequest$ = exports.RatingScaleItem$ = exports.QueryTransformationConfiguration$ = exports.PutUseCaseForModelAccessResponse$ = exports.PutUseCaseForModelAccessRequest$ = exports.PutResourcePolicyResponse$ = exports.PutResourcePolicyRequest$ = exports.PutModelInvocationLoggingConfigurationResponse$ = exports.PutModelInvocationLoggingConfigurationRequest$ = exports.PutEnforcedGuardrailConfigurationResponse$ = exports.PutEnforcedGuardrailConfigurationRequest$ = exports.PutAccountDataRetentionResponse$ = exports.PutAccountDataRetentionRequest$ = exports.ProvisionedModelSummary$ = exports.PromptTemplate$ = exports.PromptRouterTargetModel$ = exports.PromptRouterSummary$ = exports.PricingTerm$ = exports.PerformanceConfiguration$ = exports.OutputDataConfig$ = exports.OrchestrationConfiguration$ = exports.Offer$ = exports.ModelPackageArnDataSource$ = exports.ModelInvocationJobSummary$ = exports.ModelInvocationJobS3OutputDataConfig$ = exports.ModelInvocationJobS3InputDataConfig$ = exports.ModelImportJobSummary$ = exports.ModelEnforcement$ = exports.ModelCustomizationJobSummary$ = exports.ModelCopyJobSummary$ = exports.ModelConfiguration$ = exports.MetadataConfigurationForReranking$ = exports.MetadataAttributeSchema$ = exports.MarketplaceModelEndpointSummary$ = exports.MarketplaceModelEndpoint$ = exports.LoggingConfig$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListProvisionedModelThroughputsResponse$ = exports.ListProvisionedModelThroughputsRequest$ = exports.ListPromptRoutersResponse$ = exports.ListPromptRoutersRequest$ = void 0;
|
|
11
|
+
exports.VectorSearchBedrockRerankingModelConfiguration$ = exports.VectorSearchBedrockRerankingConfiguration$ = exports.ValidityTerm$ = exports.ValidatorMetric$ = exports.Validator$ = exports.ValidationDetails$ = exports.ValidationDataConfig$ = exports.UpdateProvisionedModelThroughputResponse$ = exports.UpdateProvisionedModelThroughputRequest$ = exports.UpdateMarketplaceModelEndpointResponse$ = exports.UpdateMarketplaceModelEndpointRequest$ = exports.UpdateGuardrailResponse$ = exports.UpdateGuardrailRequest$ = exports.UpdateCustomModelDeploymentResponse$ = exports.UpdateCustomModelDeploymentRequest$ = exports.UpdateAutomatedReasoningPolicyTestCaseResponse$ = exports.UpdateAutomatedReasoningPolicyTestCaseRequest$ = exports.UpdateAutomatedReasoningPolicyResponse$ = exports.UpdateAutomatedReasoningPolicyRequest$ = exports.UpdateAutomatedReasoningPolicyAnnotationsResponse$ = exports.UpdateAutomatedReasoningPolicyAnnotationsRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TrainingMetrics$ = exports.TrainingDetails$ = exports.TrainingDataConfig$ = exports.TextInferenceConfig$ = exports.TermDetails$ = exports.TeacherModelConfig$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SupportTerm$ = exports.StopModelInvocationJobResponse$ = exports.StopModelInvocationJobRequest$ = exports.StopModelCustomizationJobResponse$ = exports.StopModelCustomizationJobRequest$ = exports.StopEvaluationJobResponse$ = exports.StopEvaluationJobRequest$ = exports.StopAdvancedPromptOptimizationJobResponse$ = exports.StopAdvancedPromptOptimizationJobRequest$ = exports.StatusDetails$ = exports.StartAutomatedReasoningPolicyTestWorkflowResponse$ = exports.StartAutomatedReasoningPolicyTestWorkflowRequest$ = exports.StartAutomatedReasoningPolicyBuildWorkflowResponse$ = exports.StartAutomatedReasoningPolicyBuildWorkflowRequest$ = exports.SelectiveContentGuarding$ = exports.SageMakerEndpoint$ = exports.S3ObjectDoc$ = exports.S3DataSource$ = void 0;
|
|
12
|
+
exports.CreateModelCopyJob$ = exports.CreateMarketplaceModelEndpoint$ = exports.CreateInferenceProfile$ = exports.CreateGuardrailVersion$ = exports.CreateGuardrail$ = exports.CreateFoundationModelAgreement$ = exports.CreateEvaluationJob$ = exports.CreateCustomModelDeployment$ = exports.CreateCustomModel$ = exports.CreateAutomatedReasoningPolicyVersion$ = exports.CreateAutomatedReasoningPolicyTestCase$ = exports.CreateAutomatedReasoningPolicy$ = exports.CreateAdvancedPromptOptimizationJob$ = exports.CancelAutomatedReasoningPolicyBuildWorkflow$ = exports.BatchDeleteEvaluationJob$ = exports.BatchDeleteAdvancedPromptOptimizationJob$ = exports.RetrievalFilter$ = exports.RerankingMetadataSelectiveModeConfiguration$ = exports.RequestMetadataFilters$ = exports.RatingScaleItemValue$ = exports.RAGConfig$ = exports.ModelInvocationJobOutputDataConfig$ = exports.ModelInvocationJobInputDataConfig$ = exports.ModelDataSource$ = exports.KnowledgeBaseConfig$ = exports.InvocationLogSource$ = exports.InferenceProfileModelSource$ = exports.GraderConfig$ = exports.EvaluatorModelConfig$ = exports.EvaluationPrecomputedRagSourceConfig$ = exports.EvaluationModelConfig$ = exports.EvaluationInferenceConfig$ = exports.EvaluationDatasetLocation$ = exports.EvaluationConfig$ = exports.EndpointConfig$ = exports.CustomModelDataSource$ = exports.CustomizationConfig$ = exports.AutomatedReasoningPolicyWorkflowTypeContent$ = exports.AutomatedReasoningPolicyTypeValueAnnotation$ = exports.AutomatedReasoningPolicyMutation$ = exports.AutomatedReasoningPolicyGenerateFidelityReportContent$ = exports.AutomatedReasoningPolicyDefinitionElement$ = exports.AutomatedReasoningPolicyBuildStepContext$ = exports.AutomatedReasoningPolicyBuildResultAssets$ = exports.AutomatedReasoningPolicyAnnotation$ = exports.AutomatedReasoningPolicyAnnotatedContent$ = exports.AutomatedReasoningCheckFinding$ = exports.AutomatedEvaluationCustomMetricSource$ = exports.VpcConfig$ = exports.VectorSearchRerankingConfiguration$ = void 0;
|
|
13
|
+
exports.ListAdvancedPromptOptimizationJobs$ = exports.GetUseCaseForModelAccess$ = exports.GetResourcePolicy$ = exports.GetProvisionedModelThroughput$ = exports.GetPromptRouter$ = exports.GetModelInvocationLoggingConfiguration$ = exports.GetModelInvocationJob$ = exports.GetModelImportJob$ = exports.GetModelCustomizationJob$ = exports.GetModelCopyJob$ = exports.GetMarketplaceModelEndpoint$ = exports.GetInferenceProfile$ = exports.GetImportedModel$ = exports.GetGuardrail$ = exports.GetFoundationModelAvailability$ = exports.GetFoundationModel$ = exports.GetEvaluationJob$ = exports.GetCustomModelDeployment$ = exports.GetCustomModel$ = exports.GetAutomatedReasoningPolicyTestResult$ = exports.GetAutomatedReasoningPolicyTestCase$ = exports.GetAutomatedReasoningPolicyNextScenario$ = exports.GetAutomatedReasoningPolicyBuildWorkflowResultAssets$ = exports.GetAutomatedReasoningPolicyBuildWorkflow$ = exports.GetAutomatedReasoningPolicyAnnotations$ = exports.GetAutomatedReasoningPolicy$ = exports.GetAdvancedPromptOptimizationJob$ = exports.GetAccountDataRetention$ = exports.ExportAutomatedReasoningPolicyVersion$ = exports.DeregisterMarketplaceModelEndpoint$ = exports.DeleteResourcePolicy$ = exports.DeleteProvisionedModelThroughput$ = exports.DeletePromptRouter$ = exports.DeleteModelInvocationLoggingConfiguration$ = exports.DeleteMarketplaceModelEndpoint$ = exports.DeleteInferenceProfile$ = exports.DeleteImportedModel$ = exports.DeleteGuardrail$ = exports.DeleteFoundationModelAgreement$ = exports.DeleteEnforcedGuardrailConfiguration$ = exports.DeleteCustomModelDeployment$ = exports.DeleteCustomModel$ = exports.DeleteAutomatedReasoningPolicyTestCase$ = exports.DeleteAutomatedReasoningPolicyBuildWorkflow$ = exports.DeleteAutomatedReasoningPolicy$ = exports.CreateProvisionedModelThroughput$ = exports.CreatePromptRouter$ = exports.CreateModelInvocationJob$ = exports.CreateModelImportJob$ = exports.CreateModelCustomizationJob$ = void 0;
|
|
14
|
+
exports.UpdateProvisionedModelThroughput$ = exports.UpdateMarketplaceModelEndpoint$ = exports.UpdateGuardrail$ = exports.UpdateCustomModelDeployment$ = exports.UpdateAutomatedReasoningPolicyTestCase$ = exports.UpdateAutomatedReasoningPolicyAnnotations$ = exports.UpdateAutomatedReasoningPolicy$ = exports.UntagResource$ = exports.TagResource$ = exports.StopModelInvocationJob$ = exports.StopModelCustomizationJob$ = exports.StopEvaluationJob$ = exports.StopAdvancedPromptOptimizationJob$ = exports.StartAutomatedReasoningPolicyTestWorkflow$ = exports.StartAutomatedReasoningPolicyBuildWorkflow$ = exports.RegisterMarketplaceModelEndpoint$ = exports.PutUseCaseForModelAccess$ = exports.PutResourcePolicy$ = exports.PutModelInvocationLoggingConfiguration$ = exports.PutEnforcedGuardrailConfiguration$ = exports.PutAccountDataRetention$ = exports.ListTagsForResource$ = exports.ListProvisionedModelThroughputs$ = exports.ListPromptRouters$ = exports.ListModelInvocationJobs$ = exports.ListModelImportJobs$ = exports.ListModelCustomizationJobs$ = exports.ListModelCopyJobs$ = exports.ListMarketplaceModelEndpoints$ = exports.ListInferenceProfiles$ = exports.ListImportedModels$ = exports.ListGuardrails$ = exports.ListFoundationModels$ = exports.ListFoundationModelAgreementOffers$ = exports.ListEvaluationJobs$ = exports.ListEnforcedGuardrailsConfiguration$ = exports.ListCustomModels$ = exports.ListCustomModelDeployments$ = exports.ListAutomatedReasoningPolicyTestResults$ = exports.ListAutomatedReasoningPolicyTestCases$ = exports.ListAutomatedReasoningPolicyBuildWorkflows$ = exports.ListAutomatedReasoningPolicies$ = void 0;
|
|
15
15
|
const _AA = "AgreementAvailability";
|
|
16
16
|
const _ADE = "AccessDeniedException";
|
|
17
17
|
const _AEC = "AutomatedEvaluationConfig";
|
|
@@ -358,6 +358,9 @@ const _FMD = "FoundationModelDetails";
|
|
|
358
358
|
const _FML = "FoundationModelLifecycle";
|
|
359
359
|
const _FMS = "FoundationModelSummary";
|
|
360
360
|
const _FMSL = "FoundationModelSummaryList";
|
|
361
|
+
const _GADR = "GetAccountDataRetention";
|
|
362
|
+
const _GADRR = "GetAccountDataRetentionRequest";
|
|
363
|
+
const _GADRRe = "GetAccountDataRetentionResponse";
|
|
361
364
|
const _GAPOJ = "GetAdvancedPromptOptimizationJob";
|
|
362
365
|
const _GAPOJR = "GetAdvancedPromptOptimizationJobRequest";
|
|
363
366
|
const _GAPOJRe = "GetAdvancedPromptOptimizationJobResponse";
|
|
@@ -628,6 +631,9 @@ const _O = "Offer";
|
|
|
628
631
|
const _OC = "OrchestrationConfiguration";
|
|
629
632
|
const _ODC = "OutputDataConfig";
|
|
630
633
|
const _Of = "Offers";
|
|
634
|
+
const _PADR = "PutAccountDataRetention";
|
|
635
|
+
const _PADRR = "PutAccountDataRetentionRequest";
|
|
636
|
+
const _PADRRu = "PutAccountDataRetentionResponse";
|
|
631
637
|
const _PC = "PerformanceConfiguration";
|
|
632
638
|
const _PEGC = "PutEnforcedGuardrailConfiguration";
|
|
633
639
|
const _PEGCR = "PutEnforcedGuardrailConfigurationRequest";
|
|
@@ -1098,6 +1104,7 @@ const _mWL = "managedWordLists";
|
|
|
1098
1104
|
const _mWLC = "managedWordListsConfig";
|
|
1099
1105
|
const _me = "messages";
|
|
1100
1106
|
const _mo = "models";
|
|
1107
|
+
const _mod = "mode";
|
|
1101
1108
|
const _mu = "mutation";
|
|
1102
1109
|
const _n = "name";
|
|
1103
1110
|
const _nC = "nameContains";
|
|
@@ -2460,6 +2467,16 @@ exports.GenerationConfiguration$ = [3, n0, _GC,
|
|
|
2460
2467
|
[_pT, _gCu, _kIC, _aMRF],
|
|
2461
2468
|
[[() => exports.PromptTemplate$, 0], () => exports.GuardrailConfiguration$, () => exports.KbInferenceConfig$, 128 | 15]
|
|
2462
2469
|
];
|
|
2470
|
+
exports.GetAccountDataRetentionRequest$ = [3, n0, _GADRR,
|
|
2471
|
+
0,
|
|
2472
|
+
[],
|
|
2473
|
+
[]
|
|
2474
|
+
];
|
|
2475
|
+
exports.GetAccountDataRetentionResponse$ = [3, n0, _GADRRe,
|
|
2476
|
+
0,
|
|
2477
|
+
[_mod, _uA],
|
|
2478
|
+
[0, 5], 1
|
|
2479
|
+
];
|
|
2463
2480
|
exports.GetAdvancedPromptOptimizationJobRequest$ = [3, n0, _GAPOJR,
|
|
2464
2481
|
0,
|
|
2465
2482
|
[_jI],
|
|
@@ -3300,6 +3317,16 @@ exports.ProvisionedModelSummary$ = [3, n0, _PMS,
|
|
|
3300
3317
|
[_pMN, _pMA, _mA, _dMA, _fMA, _mU, _dMU, _st, _cT, _lMT, _cD, _cET],
|
|
3301
3318
|
[0, 0, 0, 0, 0, 1, 1, 0, 5, 5, 0, 5], 10
|
|
3302
3319
|
];
|
|
3320
|
+
exports.PutAccountDataRetentionRequest$ = [3, n0, _PADRR,
|
|
3321
|
+
0,
|
|
3322
|
+
[_mod],
|
|
3323
|
+
[0], 1
|
|
3324
|
+
];
|
|
3325
|
+
exports.PutAccountDataRetentionResponse$ = [3, n0, _PADRRu,
|
|
3326
|
+
0,
|
|
3327
|
+
[_mod, _uA],
|
|
3328
|
+
[0, 5], 1
|
|
3329
|
+
];
|
|
3303
3330
|
exports.PutEnforcedGuardrailConfigurationRequest$ = [3, n0, _PEGCR,
|
|
3304
3331
|
0,
|
|
3305
3332
|
[_gIC, _cI],
|
|
@@ -4324,6 +4351,9 @@ exports.DeregisterMarketplaceModelEndpoint$ = [9, n0, _DMMEe,
|
|
|
4324
4351
|
exports.ExportAutomatedReasoningPolicyVersion$ = [9, n0, _EARPV,
|
|
4325
4352
|
{ [_ht]: ["GET", "/automated-reasoning-policies/{policyArn}/export", 200] }, () => exports.ExportAutomatedReasoningPolicyVersionRequest$, () => exports.ExportAutomatedReasoningPolicyVersionResponse$
|
|
4326
4353
|
];
|
|
4354
|
+
exports.GetAccountDataRetention$ = [9, n0, _GADR,
|
|
4355
|
+
{ [_ht]: ["GET", "/data-retention", 200] }, () => exports.GetAccountDataRetentionRequest$, () => exports.GetAccountDataRetentionResponse$
|
|
4356
|
+
];
|
|
4327
4357
|
exports.GetAdvancedPromptOptimizationJob$ = [9, n0, _GAPOJ,
|
|
4328
4358
|
{ [_ht]: ["GET", "/advanced-prompt-optimization-jobs/{jobIdentifier}", 200] }, () => exports.GetAdvancedPromptOptimizationJobRequest$, () => exports.GetAdvancedPromptOptimizationJobResponse$
|
|
4329
4359
|
];
|
|
@@ -4468,6 +4498,9 @@ exports.ListProvisionedModelThroughputs$ = [9, n0, _LPMT,
|
|
|
4468
4498
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
4469
4499
|
{ [_ht]: ["POST", "/listTagsForResource", 200] }, () => exports.ListTagsForResourceRequest$, () => exports.ListTagsForResourceResponse$
|
|
4470
4500
|
];
|
|
4501
|
+
exports.PutAccountDataRetention$ = [9, n0, _PADR,
|
|
4502
|
+
{ [_ht]: ["PUT", "/data-retention", 200] }, () => exports.PutAccountDataRetentionRequest$, () => exports.PutAccountDataRetentionResponse$
|
|
4503
|
+
];
|
|
4471
4504
|
exports.PutEnforcedGuardrailConfiguration$ = [9, n0, _PEGC,
|
|
4472
4505
|
{ [_ht]: ["PUT", "/enforcedGuardrailsConfiguration", 200] }, () => exports.PutEnforcedGuardrailConfigurationRequest$, () => exports.PutEnforcedGuardrailConfigurationResponse$
|
|
4473
4506
|
];
|
package/dist-es/Bedrock.js
CHANGED
|
@@ -38,6 +38,7 @@ import { DeleteProvisionedModelThroughputCommand, } from "./commands/DeleteProvi
|
|
|
38
38
|
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
39
39
|
import { DeregisterMarketplaceModelEndpointCommand, } from "./commands/DeregisterMarketplaceModelEndpointCommand";
|
|
40
40
|
import { ExportAutomatedReasoningPolicyVersionCommand, } from "./commands/ExportAutomatedReasoningPolicyVersionCommand";
|
|
41
|
+
import { GetAccountDataRetentionCommand, } from "./commands/GetAccountDataRetentionCommand";
|
|
41
42
|
import { GetAdvancedPromptOptimizationJobCommand, } from "./commands/GetAdvancedPromptOptimizationJobCommand";
|
|
42
43
|
import { GetAutomatedReasoningPolicyAnnotationsCommand, } from "./commands/GetAutomatedReasoningPolicyAnnotationsCommand";
|
|
43
44
|
import { GetAutomatedReasoningPolicyBuildWorkflowCommand, } from "./commands/GetAutomatedReasoningPolicyBuildWorkflowCommand";
|
|
@@ -86,6 +87,7 @@ import { ListModelInvocationJobsCommand, } from "./commands/ListModelInvocationJ
|
|
|
86
87
|
import { ListPromptRoutersCommand, } from "./commands/ListPromptRoutersCommand";
|
|
87
88
|
import { ListProvisionedModelThroughputsCommand, } from "./commands/ListProvisionedModelThroughputsCommand";
|
|
88
89
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
90
|
+
import { PutAccountDataRetentionCommand, } from "./commands/PutAccountDataRetentionCommand";
|
|
89
91
|
import { PutEnforcedGuardrailConfigurationCommand, } from "./commands/PutEnforcedGuardrailConfigurationCommand";
|
|
90
92
|
import { PutModelInvocationLoggingConfigurationCommand, } from "./commands/PutModelInvocationLoggingConfigurationCommand";
|
|
91
93
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
@@ -164,6 +166,7 @@ const commands = {
|
|
|
164
166
|
DeleteResourcePolicyCommand,
|
|
165
167
|
DeregisterMarketplaceModelEndpointCommand,
|
|
166
168
|
ExportAutomatedReasoningPolicyVersionCommand,
|
|
169
|
+
GetAccountDataRetentionCommand,
|
|
167
170
|
GetAdvancedPromptOptimizationJobCommand,
|
|
168
171
|
GetAutomatedReasoningPolicyCommand,
|
|
169
172
|
GetAutomatedReasoningPolicyAnnotationsCommand,
|
|
@@ -212,6 +215,7 @@ const commands = {
|
|
|
212
215
|
ListPromptRoutersCommand,
|
|
213
216
|
ListProvisionedModelThroughputsCommand,
|
|
214
217
|
ListTagsForResourceCommand,
|
|
218
|
+
PutAccountDataRetentionCommand,
|
|
215
219
|
PutEnforcedGuardrailConfigurationCommand,
|
|
216
220
|
PutModelInvocationLoggingConfigurationCommand,
|
|
217
221
|
PutResourcePolicyCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetAccountDataRetention$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetAccountDataRetentionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockControlPlaneService", "GetAccountDataRetention", {})
|
|
13
|
+
.n("BedrockClient", "GetAccountDataRetentionCommand")
|
|
14
|
+
.sc(GetAccountDataRetention$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutAccountDataRetention$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutAccountDataRetentionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockControlPlaneService", "PutAccountDataRetention", {})
|
|
13
|
+
.n("BedrockClient", "PutAccountDataRetentionCommand")
|
|
14
|
+
.sc(PutAccountDataRetention$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -36,6 +36,7 @@ export * from "./DeleteProvisionedModelThroughputCommand";
|
|
|
36
36
|
export * from "./DeleteResourcePolicyCommand";
|
|
37
37
|
export * from "./DeregisterMarketplaceModelEndpointCommand";
|
|
38
38
|
export * from "./ExportAutomatedReasoningPolicyVersionCommand";
|
|
39
|
+
export * from "./GetAccountDataRetentionCommand";
|
|
39
40
|
export * from "./GetAdvancedPromptOptimizationJobCommand";
|
|
40
41
|
export * from "./GetAutomatedReasoningPolicyAnnotationsCommand";
|
|
41
42
|
export * from "./GetAutomatedReasoningPolicyBuildWorkflowCommand";
|
|
@@ -84,6 +85,7 @@ export * from "./ListModelInvocationJobsCommand";
|
|
|
84
85
|
export * from "./ListPromptRoutersCommand";
|
|
85
86
|
export * from "./ListProvisionedModelThroughputsCommand";
|
|
86
87
|
export * from "./ListTagsForResourceCommand";
|
|
88
|
+
export * from "./PutAccountDataRetentionCommand";
|
|
87
89
|
export * from "./PutEnforcedGuardrailConfigurationCommand";
|
|
88
90
|
export * from "./PutModelInvocationLoggingConfigurationCommand";
|
|
89
91
|
export * from "./PutResourcePolicyCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -131,6 +131,12 @@ export const ModelStatus = {
|
|
|
131
131
|
CREATING: "Creating",
|
|
132
132
|
FAILED: "Failed",
|
|
133
133
|
};
|
|
134
|
+
export const DataRetentionMode = {
|
|
135
|
+
DEFAULT: "default",
|
|
136
|
+
INHERIT: "inherit",
|
|
137
|
+
NONE: "none",
|
|
138
|
+
PROVIDER_DATA_SHARE: "provider_data_share",
|
|
139
|
+
};
|
|
134
140
|
export const EvaluationJobStatus = {
|
|
135
141
|
COMPLETED: "Completed",
|
|
136
142
|
DELETING: "Deleting",
|
|
@@ -344,6 +344,9 @@ const _FMD = "FoundationModelDetails";
|
|
|
344
344
|
const _FML = "FoundationModelLifecycle";
|
|
345
345
|
const _FMS = "FoundationModelSummary";
|
|
346
346
|
const _FMSL = "FoundationModelSummaryList";
|
|
347
|
+
const _GADR = "GetAccountDataRetention";
|
|
348
|
+
const _GADRR = "GetAccountDataRetentionRequest";
|
|
349
|
+
const _GADRRe = "GetAccountDataRetentionResponse";
|
|
347
350
|
const _GAPOJ = "GetAdvancedPromptOptimizationJob";
|
|
348
351
|
const _GAPOJR = "GetAdvancedPromptOptimizationJobRequest";
|
|
349
352
|
const _GAPOJRe = "GetAdvancedPromptOptimizationJobResponse";
|
|
@@ -614,6 +617,9 @@ const _O = "Offer";
|
|
|
614
617
|
const _OC = "OrchestrationConfiguration";
|
|
615
618
|
const _ODC = "OutputDataConfig";
|
|
616
619
|
const _Of = "Offers";
|
|
620
|
+
const _PADR = "PutAccountDataRetention";
|
|
621
|
+
const _PADRR = "PutAccountDataRetentionRequest";
|
|
622
|
+
const _PADRRu = "PutAccountDataRetentionResponse";
|
|
617
623
|
const _PC = "PerformanceConfiguration";
|
|
618
624
|
const _PEGC = "PutEnforcedGuardrailConfiguration";
|
|
619
625
|
const _PEGCR = "PutEnforcedGuardrailConfigurationRequest";
|
|
@@ -1084,6 +1090,7 @@ const _mWL = "managedWordLists";
|
|
|
1084
1090
|
const _mWLC = "managedWordListsConfig";
|
|
1085
1091
|
const _me = "messages";
|
|
1086
1092
|
const _mo = "models";
|
|
1093
|
+
const _mod = "mode";
|
|
1087
1094
|
const _mu = "mutation";
|
|
1088
1095
|
const _n = "name";
|
|
1089
1096
|
const _nC = "nameContains";
|
|
@@ -2446,6 +2453,16 @@ export var GenerationConfiguration$ = [3, n0, _GC,
|
|
|
2446
2453
|
[_pT, _gCu, _kIC, _aMRF],
|
|
2447
2454
|
[[() => PromptTemplate$, 0], () => GuardrailConfiguration$, () => KbInferenceConfig$, 128 | 15]
|
|
2448
2455
|
];
|
|
2456
|
+
export var GetAccountDataRetentionRequest$ = [3, n0, _GADRR,
|
|
2457
|
+
0,
|
|
2458
|
+
[],
|
|
2459
|
+
[]
|
|
2460
|
+
];
|
|
2461
|
+
export var GetAccountDataRetentionResponse$ = [3, n0, _GADRRe,
|
|
2462
|
+
0,
|
|
2463
|
+
[_mod, _uA],
|
|
2464
|
+
[0, 5], 1
|
|
2465
|
+
];
|
|
2449
2466
|
export var GetAdvancedPromptOptimizationJobRequest$ = [3, n0, _GAPOJR,
|
|
2450
2467
|
0,
|
|
2451
2468
|
[_jI],
|
|
@@ -3286,6 +3303,16 @@ export var ProvisionedModelSummary$ = [3, n0, _PMS,
|
|
|
3286
3303
|
[_pMN, _pMA, _mA, _dMA, _fMA, _mU, _dMU, _st, _cT, _lMT, _cD, _cET],
|
|
3287
3304
|
[0, 0, 0, 0, 0, 1, 1, 0, 5, 5, 0, 5], 10
|
|
3288
3305
|
];
|
|
3306
|
+
export var PutAccountDataRetentionRequest$ = [3, n0, _PADRR,
|
|
3307
|
+
0,
|
|
3308
|
+
[_mod],
|
|
3309
|
+
[0], 1
|
|
3310
|
+
];
|
|
3311
|
+
export var PutAccountDataRetentionResponse$ = [3, n0, _PADRRu,
|
|
3312
|
+
0,
|
|
3313
|
+
[_mod, _uA],
|
|
3314
|
+
[0, 5], 1
|
|
3315
|
+
];
|
|
3289
3316
|
export var PutEnforcedGuardrailConfigurationRequest$ = [3, n0, _PEGCR,
|
|
3290
3317
|
0,
|
|
3291
3318
|
[_gIC, _cI],
|
|
@@ -4310,6 +4337,9 @@ export var DeregisterMarketplaceModelEndpoint$ = [9, n0, _DMMEe,
|
|
|
4310
4337
|
export var ExportAutomatedReasoningPolicyVersion$ = [9, n0, _EARPV,
|
|
4311
4338
|
{ [_ht]: ["GET", "/automated-reasoning-policies/{policyArn}/export", 200] }, () => ExportAutomatedReasoningPolicyVersionRequest$, () => ExportAutomatedReasoningPolicyVersionResponse$
|
|
4312
4339
|
];
|
|
4340
|
+
export var GetAccountDataRetention$ = [9, n0, _GADR,
|
|
4341
|
+
{ [_ht]: ["GET", "/data-retention", 200] }, () => GetAccountDataRetentionRequest$, () => GetAccountDataRetentionResponse$
|
|
4342
|
+
];
|
|
4313
4343
|
export var GetAdvancedPromptOptimizationJob$ = [9, n0, _GAPOJ,
|
|
4314
4344
|
{ [_ht]: ["GET", "/advanced-prompt-optimization-jobs/{jobIdentifier}", 200] }, () => GetAdvancedPromptOptimizationJobRequest$, () => GetAdvancedPromptOptimizationJobResponse$
|
|
4315
4345
|
];
|
|
@@ -4454,6 +4484,9 @@ export var ListProvisionedModelThroughputs$ = [9, n0, _LPMT,
|
|
|
4454
4484
|
export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
4455
4485
|
{ [_ht]: ["POST", "/listTagsForResource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
4456
4486
|
];
|
|
4487
|
+
export var PutAccountDataRetention$ = [9, n0, _PADR,
|
|
4488
|
+
{ [_ht]: ["PUT", "/data-retention", 200] }, () => PutAccountDataRetentionRequest$, () => PutAccountDataRetentionResponse$
|
|
4489
|
+
];
|
|
4457
4490
|
export var PutEnforcedGuardrailConfiguration$ = [9, n0, _PEGC,
|
|
4458
4491
|
{ [_ht]: ["PUT", "/enforcedGuardrailsConfiguration", 200] }, () => PutEnforcedGuardrailConfigurationRequest$, () => PutEnforcedGuardrailConfigurationResponse$
|
|
4459
4492
|
];
|
package/dist-types/Bedrock.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ import { type DeleteProvisionedModelThroughputCommandInput, type DeleteProvision
|
|
|
38
38
|
import { type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
39
39
|
import { type DeregisterMarketplaceModelEndpointCommandInput, type DeregisterMarketplaceModelEndpointCommandOutput } from "./commands/DeregisterMarketplaceModelEndpointCommand";
|
|
40
40
|
import { type ExportAutomatedReasoningPolicyVersionCommandInput, type ExportAutomatedReasoningPolicyVersionCommandOutput } from "./commands/ExportAutomatedReasoningPolicyVersionCommand";
|
|
41
|
+
import { type GetAccountDataRetentionCommandInput, type GetAccountDataRetentionCommandOutput } from "./commands/GetAccountDataRetentionCommand";
|
|
41
42
|
import { type GetAdvancedPromptOptimizationJobCommandInput, type GetAdvancedPromptOptimizationJobCommandOutput } from "./commands/GetAdvancedPromptOptimizationJobCommand";
|
|
42
43
|
import { type GetAutomatedReasoningPolicyAnnotationsCommandInput, type GetAutomatedReasoningPolicyAnnotationsCommandOutput } from "./commands/GetAutomatedReasoningPolicyAnnotationsCommand";
|
|
43
44
|
import { type GetAutomatedReasoningPolicyBuildWorkflowCommandInput, type GetAutomatedReasoningPolicyBuildWorkflowCommandOutput } from "./commands/GetAutomatedReasoningPolicyBuildWorkflowCommand";
|
|
@@ -86,6 +87,7 @@ import { type ListModelInvocationJobsCommandInput, type ListModelInvocationJobsC
|
|
|
86
87
|
import { type ListPromptRoutersCommandInput, type ListPromptRoutersCommandOutput } from "./commands/ListPromptRoutersCommand";
|
|
87
88
|
import { type ListProvisionedModelThroughputsCommandInput, type ListProvisionedModelThroughputsCommandOutput } from "./commands/ListProvisionedModelThroughputsCommand";
|
|
88
89
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
90
|
+
import { type PutAccountDataRetentionCommandInput, type PutAccountDataRetentionCommandOutput } from "./commands/PutAccountDataRetentionCommand";
|
|
89
91
|
import { type PutEnforcedGuardrailConfigurationCommandInput, type PutEnforcedGuardrailConfigurationCommandOutput } from "./commands/PutEnforcedGuardrailConfigurationCommand";
|
|
90
92
|
import { type PutModelInvocationLoggingConfigurationCommandInput, type PutModelInvocationLoggingConfigurationCommandOutput } from "./commands/PutModelInvocationLoggingConfigurationCommand";
|
|
91
93
|
import { type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
@@ -336,6 +338,13 @@ export interface Bedrock {
|
|
|
336
338
|
exportAutomatedReasoningPolicyVersion(args: ExportAutomatedReasoningPolicyVersionCommandInput, options?: __HttpHandlerOptions): Promise<ExportAutomatedReasoningPolicyVersionCommandOutput>;
|
|
337
339
|
exportAutomatedReasoningPolicyVersion(args: ExportAutomatedReasoningPolicyVersionCommandInput, cb: (err: any, data?: ExportAutomatedReasoningPolicyVersionCommandOutput) => void): void;
|
|
338
340
|
exportAutomatedReasoningPolicyVersion(args: ExportAutomatedReasoningPolicyVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportAutomatedReasoningPolicyVersionCommandOutput) => void): void;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link GetAccountDataRetentionCommand}
|
|
343
|
+
*/
|
|
344
|
+
getAccountDataRetention(): Promise<GetAccountDataRetentionCommandOutput>;
|
|
345
|
+
getAccountDataRetention(args: GetAccountDataRetentionCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountDataRetentionCommandOutput>;
|
|
346
|
+
getAccountDataRetention(args: GetAccountDataRetentionCommandInput, cb: (err: any, data?: GetAccountDataRetentionCommandOutput) => void): void;
|
|
347
|
+
getAccountDataRetention(args: GetAccountDataRetentionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountDataRetentionCommandOutput) => void): void;
|
|
339
348
|
/**
|
|
340
349
|
* @see {@link GetAdvancedPromptOptimizationJobCommand}
|
|
341
350
|
*/
|
|
@@ -643,6 +652,12 @@ export interface Bedrock {
|
|
|
643
652
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
644
653
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
645
654
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
655
|
+
/**
|
|
656
|
+
* @see {@link PutAccountDataRetentionCommand}
|
|
657
|
+
*/
|
|
658
|
+
putAccountDataRetention(args: PutAccountDataRetentionCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountDataRetentionCommandOutput>;
|
|
659
|
+
putAccountDataRetention(args: PutAccountDataRetentionCommandInput, cb: (err: any, data?: PutAccountDataRetentionCommandOutput) => void): void;
|
|
660
|
+
putAccountDataRetention(args: PutAccountDataRetentionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountDataRetentionCommandOutput) => void): void;
|
|
646
661
|
/**
|
|
647
662
|
* @see {@link PutEnforcedGuardrailConfigurationCommand}
|
|
648
663
|
*/
|
|
@@ -44,6 +44,7 @@ import type { DeleteProvisionedModelThroughputCommandInput, DeleteProvisionedMod
|
|
|
44
44
|
import type { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
45
45
|
import type { DeregisterMarketplaceModelEndpointCommandInput, DeregisterMarketplaceModelEndpointCommandOutput } from "./commands/DeregisterMarketplaceModelEndpointCommand";
|
|
46
46
|
import type { ExportAutomatedReasoningPolicyVersionCommandInput, ExportAutomatedReasoningPolicyVersionCommandOutput } from "./commands/ExportAutomatedReasoningPolicyVersionCommand";
|
|
47
|
+
import type { GetAccountDataRetentionCommandInput, GetAccountDataRetentionCommandOutput } from "./commands/GetAccountDataRetentionCommand";
|
|
47
48
|
import type { GetAdvancedPromptOptimizationJobCommandInput, GetAdvancedPromptOptimizationJobCommandOutput } from "./commands/GetAdvancedPromptOptimizationJobCommand";
|
|
48
49
|
import type { GetAutomatedReasoningPolicyAnnotationsCommandInput, GetAutomatedReasoningPolicyAnnotationsCommandOutput } from "./commands/GetAutomatedReasoningPolicyAnnotationsCommand";
|
|
49
50
|
import type { GetAutomatedReasoningPolicyBuildWorkflowCommandInput, GetAutomatedReasoningPolicyBuildWorkflowCommandOutput } from "./commands/GetAutomatedReasoningPolicyBuildWorkflowCommand";
|
|
@@ -92,6 +93,7 @@ import type { ListModelInvocationJobsCommandInput, ListModelInvocationJobsComman
|
|
|
92
93
|
import type { ListPromptRoutersCommandInput, ListPromptRoutersCommandOutput } from "./commands/ListPromptRoutersCommand";
|
|
93
94
|
import type { ListProvisionedModelThroughputsCommandInput, ListProvisionedModelThroughputsCommandOutput } from "./commands/ListProvisionedModelThroughputsCommand";
|
|
94
95
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
96
|
+
import type { PutAccountDataRetentionCommandInput, PutAccountDataRetentionCommandOutput } from "./commands/PutAccountDataRetentionCommand";
|
|
95
97
|
import type { PutEnforcedGuardrailConfigurationCommandInput, PutEnforcedGuardrailConfigurationCommandOutput } from "./commands/PutEnforcedGuardrailConfigurationCommand";
|
|
96
98
|
import type { PutModelInvocationLoggingConfigurationCommandInput, PutModelInvocationLoggingConfigurationCommandOutput } from "./commands/PutModelInvocationLoggingConfigurationCommand";
|
|
97
99
|
import type { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
@@ -118,11 +120,11 @@ export { __Client };
|
|
|
118
120
|
/**
|
|
119
121
|
* @public
|
|
120
122
|
*/
|
|
121
|
-
export type ServiceInputTypes = BatchDeleteAdvancedPromptOptimizationJobCommandInput | BatchDeleteEvaluationJobCommandInput | CancelAutomatedReasoningPolicyBuildWorkflowCommandInput | CreateAdvancedPromptOptimizationJobCommandInput | CreateAutomatedReasoningPolicyCommandInput | CreateAutomatedReasoningPolicyTestCaseCommandInput | CreateAutomatedReasoningPolicyVersionCommandInput | CreateCustomModelCommandInput | CreateCustomModelDeploymentCommandInput | CreateEvaluationJobCommandInput | CreateFoundationModelAgreementCommandInput | CreateGuardrailCommandInput | CreateGuardrailVersionCommandInput | CreateInferenceProfileCommandInput | CreateMarketplaceModelEndpointCommandInput | CreateModelCopyJobCommandInput | CreateModelCustomizationJobCommandInput | CreateModelImportJobCommandInput | CreateModelInvocationJobCommandInput | CreatePromptRouterCommandInput | CreateProvisionedModelThroughputCommandInput | DeleteAutomatedReasoningPolicyBuildWorkflowCommandInput | DeleteAutomatedReasoningPolicyCommandInput | DeleteAutomatedReasoningPolicyTestCaseCommandInput | DeleteCustomModelCommandInput | DeleteCustomModelDeploymentCommandInput | DeleteEnforcedGuardrailConfigurationCommandInput | DeleteFoundationModelAgreementCommandInput | DeleteGuardrailCommandInput | DeleteImportedModelCommandInput | DeleteInferenceProfileCommandInput | DeleteMarketplaceModelEndpointCommandInput | DeleteModelInvocationLoggingConfigurationCommandInput | DeletePromptRouterCommandInput | DeleteProvisionedModelThroughputCommandInput | DeleteResourcePolicyCommandInput | DeregisterMarketplaceModelEndpointCommandInput | ExportAutomatedReasoningPolicyVersionCommandInput | GetAdvancedPromptOptimizationJobCommandInput | GetAutomatedReasoningPolicyAnnotationsCommandInput | GetAutomatedReasoningPolicyBuildWorkflowCommandInput | GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandInput | GetAutomatedReasoningPolicyCommandInput | GetAutomatedReasoningPolicyNextScenarioCommandInput | GetAutomatedReasoningPolicyTestCaseCommandInput | GetAutomatedReasoningPolicyTestResultCommandInput | GetCustomModelCommandInput | GetCustomModelDeploymentCommandInput | GetEvaluationJobCommandInput | GetFoundationModelAvailabilityCommandInput | GetFoundationModelCommandInput | GetGuardrailCommandInput | GetImportedModelCommandInput | GetInferenceProfileCommandInput | GetMarketplaceModelEndpointCommandInput | GetModelCopyJobCommandInput | GetModelCustomizationJobCommandInput | GetModelImportJobCommandInput | GetModelInvocationJobCommandInput | GetModelInvocationLoggingConfigurationCommandInput | GetPromptRouterCommandInput | GetProvisionedModelThroughputCommandInput | GetResourcePolicyCommandInput | GetUseCaseForModelAccessCommandInput | ListAdvancedPromptOptimizationJobsCommandInput | ListAutomatedReasoningPoliciesCommandInput | ListAutomatedReasoningPolicyBuildWorkflowsCommandInput | ListAutomatedReasoningPolicyTestCasesCommandInput | ListAutomatedReasoningPolicyTestResultsCommandInput | ListCustomModelDeploymentsCommandInput | ListCustomModelsCommandInput | ListEnforcedGuardrailsConfigurationCommandInput | ListEvaluationJobsCommandInput | ListFoundationModelAgreementOffersCommandInput | ListFoundationModelsCommandInput | ListGuardrailsCommandInput | ListImportedModelsCommandInput | ListInferenceProfilesCommandInput | ListMarketplaceModelEndpointsCommandInput | ListModelCopyJobsCommandInput | ListModelCustomizationJobsCommandInput | ListModelImportJobsCommandInput | ListModelInvocationJobsCommandInput | ListPromptRoutersCommandInput | ListProvisionedModelThroughputsCommandInput | ListTagsForResourceCommandInput | PutEnforcedGuardrailConfigurationCommandInput | PutModelInvocationLoggingConfigurationCommandInput | PutResourcePolicyCommandInput | PutUseCaseForModelAccessCommandInput | RegisterMarketplaceModelEndpointCommandInput | StartAutomatedReasoningPolicyBuildWorkflowCommandInput | StartAutomatedReasoningPolicyTestWorkflowCommandInput | StopAdvancedPromptOptimizationJobCommandInput | StopEvaluationJobCommandInput | StopModelCustomizationJobCommandInput | StopModelInvocationJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAutomatedReasoningPolicyAnnotationsCommandInput | UpdateAutomatedReasoningPolicyCommandInput | UpdateAutomatedReasoningPolicyTestCaseCommandInput | UpdateCustomModelDeploymentCommandInput | UpdateGuardrailCommandInput | UpdateMarketplaceModelEndpointCommandInput | UpdateProvisionedModelThroughputCommandInput;
|
|
123
|
+
export type ServiceInputTypes = BatchDeleteAdvancedPromptOptimizationJobCommandInput | BatchDeleteEvaluationJobCommandInput | CancelAutomatedReasoningPolicyBuildWorkflowCommandInput | CreateAdvancedPromptOptimizationJobCommandInput | CreateAutomatedReasoningPolicyCommandInput | CreateAutomatedReasoningPolicyTestCaseCommandInput | CreateAutomatedReasoningPolicyVersionCommandInput | CreateCustomModelCommandInput | CreateCustomModelDeploymentCommandInput | CreateEvaluationJobCommandInput | CreateFoundationModelAgreementCommandInput | CreateGuardrailCommandInput | CreateGuardrailVersionCommandInput | CreateInferenceProfileCommandInput | CreateMarketplaceModelEndpointCommandInput | CreateModelCopyJobCommandInput | CreateModelCustomizationJobCommandInput | CreateModelImportJobCommandInput | CreateModelInvocationJobCommandInput | CreatePromptRouterCommandInput | CreateProvisionedModelThroughputCommandInput | DeleteAutomatedReasoningPolicyBuildWorkflowCommandInput | DeleteAutomatedReasoningPolicyCommandInput | DeleteAutomatedReasoningPolicyTestCaseCommandInput | DeleteCustomModelCommandInput | DeleteCustomModelDeploymentCommandInput | DeleteEnforcedGuardrailConfigurationCommandInput | DeleteFoundationModelAgreementCommandInput | DeleteGuardrailCommandInput | DeleteImportedModelCommandInput | DeleteInferenceProfileCommandInput | DeleteMarketplaceModelEndpointCommandInput | DeleteModelInvocationLoggingConfigurationCommandInput | DeletePromptRouterCommandInput | DeleteProvisionedModelThroughputCommandInput | DeleteResourcePolicyCommandInput | DeregisterMarketplaceModelEndpointCommandInput | ExportAutomatedReasoningPolicyVersionCommandInput | GetAccountDataRetentionCommandInput | GetAdvancedPromptOptimizationJobCommandInput | GetAutomatedReasoningPolicyAnnotationsCommandInput | GetAutomatedReasoningPolicyBuildWorkflowCommandInput | GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandInput | GetAutomatedReasoningPolicyCommandInput | GetAutomatedReasoningPolicyNextScenarioCommandInput | GetAutomatedReasoningPolicyTestCaseCommandInput | GetAutomatedReasoningPolicyTestResultCommandInput | GetCustomModelCommandInput | GetCustomModelDeploymentCommandInput | GetEvaluationJobCommandInput | GetFoundationModelAvailabilityCommandInput | GetFoundationModelCommandInput | GetGuardrailCommandInput | GetImportedModelCommandInput | GetInferenceProfileCommandInput | GetMarketplaceModelEndpointCommandInput | GetModelCopyJobCommandInput | GetModelCustomizationJobCommandInput | GetModelImportJobCommandInput | GetModelInvocationJobCommandInput | GetModelInvocationLoggingConfigurationCommandInput | GetPromptRouterCommandInput | GetProvisionedModelThroughputCommandInput | GetResourcePolicyCommandInput | GetUseCaseForModelAccessCommandInput | ListAdvancedPromptOptimizationJobsCommandInput | ListAutomatedReasoningPoliciesCommandInput | ListAutomatedReasoningPolicyBuildWorkflowsCommandInput | ListAutomatedReasoningPolicyTestCasesCommandInput | ListAutomatedReasoningPolicyTestResultsCommandInput | ListCustomModelDeploymentsCommandInput | ListCustomModelsCommandInput | ListEnforcedGuardrailsConfigurationCommandInput | ListEvaluationJobsCommandInput | ListFoundationModelAgreementOffersCommandInput | ListFoundationModelsCommandInput | ListGuardrailsCommandInput | ListImportedModelsCommandInput | ListInferenceProfilesCommandInput | ListMarketplaceModelEndpointsCommandInput | ListModelCopyJobsCommandInput | ListModelCustomizationJobsCommandInput | ListModelImportJobsCommandInput | ListModelInvocationJobsCommandInput | ListPromptRoutersCommandInput | ListProvisionedModelThroughputsCommandInput | ListTagsForResourceCommandInput | PutAccountDataRetentionCommandInput | PutEnforcedGuardrailConfigurationCommandInput | PutModelInvocationLoggingConfigurationCommandInput | PutResourcePolicyCommandInput | PutUseCaseForModelAccessCommandInput | RegisterMarketplaceModelEndpointCommandInput | StartAutomatedReasoningPolicyBuildWorkflowCommandInput | StartAutomatedReasoningPolicyTestWorkflowCommandInput | StopAdvancedPromptOptimizationJobCommandInput | StopEvaluationJobCommandInput | StopModelCustomizationJobCommandInput | StopModelInvocationJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAutomatedReasoningPolicyAnnotationsCommandInput | UpdateAutomatedReasoningPolicyCommandInput | UpdateAutomatedReasoningPolicyTestCaseCommandInput | UpdateCustomModelDeploymentCommandInput | UpdateGuardrailCommandInput | UpdateMarketplaceModelEndpointCommandInput | UpdateProvisionedModelThroughputCommandInput;
|
|
122
124
|
/**
|
|
123
125
|
* @public
|
|
124
126
|
*/
|
|
125
|
-
export type ServiceOutputTypes = BatchDeleteAdvancedPromptOptimizationJobCommandOutput | BatchDeleteEvaluationJobCommandOutput | CancelAutomatedReasoningPolicyBuildWorkflowCommandOutput | CreateAdvancedPromptOptimizationJobCommandOutput | CreateAutomatedReasoningPolicyCommandOutput | CreateAutomatedReasoningPolicyTestCaseCommandOutput | CreateAutomatedReasoningPolicyVersionCommandOutput | CreateCustomModelCommandOutput | CreateCustomModelDeploymentCommandOutput | CreateEvaluationJobCommandOutput | CreateFoundationModelAgreementCommandOutput | CreateGuardrailCommandOutput | CreateGuardrailVersionCommandOutput | CreateInferenceProfileCommandOutput | CreateMarketplaceModelEndpointCommandOutput | CreateModelCopyJobCommandOutput | CreateModelCustomizationJobCommandOutput | CreateModelImportJobCommandOutput | CreateModelInvocationJobCommandOutput | CreatePromptRouterCommandOutput | CreateProvisionedModelThroughputCommandOutput | DeleteAutomatedReasoningPolicyBuildWorkflowCommandOutput | DeleteAutomatedReasoningPolicyCommandOutput | DeleteAutomatedReasoningPolicyTestCaseCommandOutput | DeleteCustomModelCommandOutput | DeleteCustomModelDeploymentCommandOutput | DeleteEnforcedGuardrailConfigurationCommandOutput | DeleteFoundationModelAgreementCommandOutput | DeleteGuardrailCommandOutput | DeleteImportedModelCommandOutput | DeleteInferenceProfileCommandOutput | DeleteMarketplaceModelEndpointCommandOutput | DeleteModelInvocationLoggingConfigurationCommandOutput | DeletePromptRouterCommandOutput | DeleteProvisionedModelThroughputCommandOutput | DeleteResourcePolicyCommandOutput | DeregisterMarketplaceModelEndpointCommandOutput | ExportAutomatedReasoningPolicyVersionCommandOutput | GetAdvancedPromptOptimizationJobCommandOutput | GetAutomatedReasoningPolicyAnnotationsCommandOutput | GetAutomatedReasoningPolicyBuildWorkflowCommandOutput | GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandOutput | GetAutomatedReasoningPolicyCommandOutput | GetAutomatedReasoningPolicyNextScenarioCommandOutput | GetAutomatedReasoningPolicyTestCaseCommandOutput | GetAutomatedReasoningPolicyTestResultCommandOutput | GetCustomModelCommandOutput | GetCustomModelDeploymentCommandOutput | GetEvaluationJobCommandOutput | GetFoundationModelAvailabilityCommandOutput | GetFoundationModelCommandOutput | GetGuardrailCommandOutput | GetImportedModelCommandOutput | GetInferenceProfileCommandOutput | GetMarketplaceModelEndpointCommandOutput | GetModelCopyJobCommandOutput | GetModelCustomizationJobCommandOutput | GetModelImportJobCommandOutput | GetModelInvocationJobCommandOutput | GetModelInvocationLoggingConfigurationCommandOutput | GetPromptRouterCommandOutput | GetProvisionedModelThroughputCommandOutput | GetResourcePolicyCommandOutput | GetUseCaseForModelAccessCommandOutput | ListAdvancedPromptOptimizationJobsCommandOutput | ListAutomatedReasoningPoliciesCommandOutput | ListAutomatedReasoningPolicyBuildWorkflowsCommandOutput | ListAutomatedReasoningPolicyTestCasesCommandOutput | ListAutomatedReasoningPolicyTestResultsCommandOutput | ListCustomModelDeploymentsCommandOutput | ListCustomModelsCommandOutput | ListEnforcedGuardrailsConfigurationCommandOutput | ListEvaluationJobsCommandOutput | ListFoundationModelAgreementOffersCommandOutput | ListFoundationModelsCommandOutput | ListGuardrailsCommandOutput | ListImportedModelsCommandOutput | ListInferenceProfilesCommandOutput | ListMarketplaceModelEndpointsCommandOutput | ListModelCopyJobsCommandOutput | ListModelCustomizationJobsCommandOutput | ListModelImportJobsCommandOutput | ListModelInvocationJobsCommandOutput | ListPromptRoutersCommandOutput | ListProvisionedModelThroughputsCommandOutput | ListTagsForResourceCommandOutput | PutEnforcedGuardrailConfigurationCommandOutput | PutModelInvocationLoggingConfigurationCommandOutput | PutResourcePolicyCommandOutput | PutUseCaseForModelAccessCommandOutput | RegisterMarketplaceModelEndpointCommandOutput | StartAutomatedReasoningPolicyBuildWorkflowCommandOutput | StartAutomatedReasoningPolicyTestWorkflowCommandOutput | StopAdvancedPromptOptimizationJobCommandOutput | StopEvaluationJobCommandOutput | StopModelCustomizationJobCommandOutput | StopModelInvocationJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAutomatedReasoningPolicyAnnotationsCommandOutput | UpdateAutomatedReasoningPolicyCommandOutput | UpdateAutomatedReasoningPolicyTestCaseCommandOutput | UpdateCustomModelDeploymentCommandOutput | UpdateGuardrailCommandOutput | UpdateMarketplaceModelEndpointCommandOutput | UpdateProvisionedModelThroughputCommandOutput;
|
|
127
|
+
export type ServiceOutputTypes = BatchDeleteAdvancedPromptOptimizationJobCommandOutput | BatchDeleteEvaluationJobCommandOutput | CancelAutomatedReasoningPolicyBuildWorkflowCommandOutput | CreateAdvancedPromptOptimizationJobCommandOutput | CreateAutomatedReasoningPolicyCommandOutput | CreateAutomatedReasoningPolicyTestCaseCommandOutput | CreateAutomatedReasoningPolicyVersionCommandOutput | CreateCustomModelCommandOutput | CreateCustomModelDeploymentCommandOutput | CreateEvaluationJobCommandOutput | CreateFoundationModelAgreementCommandOutput | CreateGuardrailCommandOutput | CreateGuardrailVersionCommandOutput | CreateInferenceProfileCommandOutput | CreateMarketplaceModelEndpointCommandOutput | CreateModelCopyJobCommandOutput | CreateModelCustomizationJobCommandOutput | CreateModelImportJobCommandOutput | CreateModelInvocationJobCommandOutput | CreatePromptRouterCommandOutput | CreateProvisionedModelThroughputCommandOutput | DeleteAutomatedReasoningPolicyBuildWorkflowCommandOutput | DeleteAutomatedReasoningPolicyCommandOutput | DeleteAutomatedReasoningPolicyTestCaseCommandOutput | DeleteCustomModelCommandOutput | DeleteCustomModelDeploymentCommandOutput | DeleteEnforcedGuardrailConfigurationCommandOutput | DeleteFoundationModelAgreementCommandOutput | DeleteGuardrailCommandOutput | DeleteImportedModelCommandOutput | DeleteInferenceProfileCommandOutput | DeleteMarketplaceModelEndpointCommandOutput | DeleteModelInvocationLoggingConfigurationCommandOutput | DeletePromptRouterCommandOutput | DeleteProvisionedModelThroughputCommandOutput | DeleteResourcePolicyCommandOutput | DeregisterMarketplaceModelEndpointCommandOutput | ExportAutomatedReasoningPolicyVersionCommandOutput | GetAccountDataRetentionCommandOutput | GetAdvancedPromptOptimizationJobCommandOutput | GetAutomatedReasoningPolicyAnnotationsCommandOutput | GetAutomatedReasoningPolicyBuildWorkflowCommandOutput | GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandOutput | GetAutomatedReasoningPolicyCommandOutput | GetAutomatedReasoningPolicyNextScenarioCommandOutput | GetAutomatedReasoningPolicyTestCaseCommandOutput | GetAutomatedReasoningPolicyTestResultCommandOutput | GetCustomModelCommandOutput | GetCustomModelDeploymentCommandOutput | GetEvaluationJobCommandOutput | GetFoundationModelAvailabilityCommandOutput | GetFoundationModelCommandOutput | GetGuardrailCommandOutput | GetImportedModelCommandOutput | GetInferenceProfileCommandOutput | GetMarketplaceModelEndpointCommandOutput | GetModelCopyJobCommandOutput | GetModelCustomizationJobCommandOutput | GetModelImportJobCommandOutput | GetModelInvocationJobCommandOutput | GetModelInvocationLoggingConfigurationCommandOutput | GetPromptRouterCommandOutput | GetProvisionedModelThroughputCommandOutput | GetResourcePolicyCommandOutput | GetUseCaseForModelAccessCommandOutput | ListAdvancedPromptOptimizationJobsCommandOutput | ListAutomatedReasoningPoliciesCommandOutput | ListAutomatedReasoningPolicyBuildWorkflowsCommandOutput | ListAutomatedReasoningPolicyTestCasesCommandOutput | ListAutomatedReasoningPolicyTestResultsCommandOutput | ListCustomModelDeploymentsCommandOutput | ListCustomModelsCommandOutput | ListEnforcedGuardrailsConfigurationCommandOutput | ListEvaluationJobsCommandOutput | ListFoundationModelAgreementOffersCommandOutput | ListFoundationModelsCommandOutput | ListGuardrailsCommandOutput | ListImportedModelsCommandOutput | ListInferenceProfilesCommandOutput | ListMarketplaceModelEndpointsCommandOutput | ListModelCopyJobsCommandOutput | ListModelCustomizationJobsCommandOutput | ListModelImportJobsCommandOutput | ListModelInvocationJobsCommandOutput | ListPromptRoutersCommandOutput | ListProvisionedModelThroughputsCommandOutput | ListTagsForResourceCommandOutput | PutAccountDataRetentionCommandOutput | PutEnforcedGuardrailConfigurationCommandOutput | PutModelInvocationLoggingConfigurationCommandOutput | PutResourcePolicyCommandOutput | PutUseCaseForModelAccessCommandOutput | RegisterMarketplaceModelEndpointCommandOutput | StartAutomatedReasoningPolicyBuildWorkflowCommandOutput | StartAutomatedReasoningPolicyTestWorkflowCommandOutput | StopAdvancedPromptOptimizationJobCommandOutput | StopEvaluationJobCommandOutput | StopModelCustomizationJobCommandOutput | StopModelInvocationJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAutomatedReasoningPolicyAnnotationsCommandOutput | UpdateAutomatedReasoningPolicyCommandOutput | UpdateAutomatedReasoningPolicyTestCaseCommandOutput | UpdateCustomModelDeploymentCommandOutput | UpdateGuardrailCommandOutput | UpdateMarketplaceModelEndpointCommandOutput | UpdateProvisionedModelThroughputCommandOutput;
|
|
126
128
|
/**
|
|
127
129
|
* @public
|
|
128
130
|
*/
|