@aws-sdk/client-sagemaker 3.180.0 → 3.182.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/CHANGELOG.md +28 -0
- package/dist-cjs/commands/CreateFlowDefinitionCommand.js +3 -3
- package/dist-cjs/commands/CreateHumanTaskUiCommand.js +3 -3
- package/dist-cjs/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-cjs/commands/DescribeExperimentCommand.js +3 -3
- package/dist-cjs/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-cjs/commands/ListModelsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringSchedulesCommand.js +3 -3
- package/dist-cjs/models/models_0.js +104 -41
- package/dist-cjs/models/models_1.js +43 -51
- package/dist-cjs/models/models_2.js +61 -56
- package/dist-cjs/models/models_3.js +58 -4
- package/dist-cjs/protocols/Aws_json1_1.js +470 -263
- package/dist-es/commands/CreateFlowDefinitionCommand.js +1 -1
- package/dist-es/commands/CreateHumanTaskUiCommand.js +1 -1
- package/dist-es/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-es/commands/DescribeExperimentCommand.js +1 -1
- package/dist-es/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-es/commands/ListModelsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringExecutionsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringSchedulesCommand.js +1 -1
- package/dist-es/models/models_0.js +81 -9
- package/dist-es/models/models_1.js +9 -26
- package/dist-es/models/models_2.js +34 -26
- package/dist-es/models/models_3.js +27 -0
- package/dist-es/protocols/Aws_json1_1.js +447 -270
- package/dist-types/SageMaker.d.ts +1 -1
- package/dist-types/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +2 -1
- package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
- package/dist-types/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/models/models_1.d.ts +529 -155
- package/dist-types/models/models_2.d.ts +214 -294
- package/dist-types/models/models_3.d.ts +324 -3
- package/dist-types/ts3.4/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +129 -75
- package/dist-types/ts3.4/models/models_1.d.ts +80 -73
- package/dist-types/ts3.4/models/models_2.d.ts +93 -112
- package/dist-types/ts3.4/models/models_3.d.ts +123 -2
- package/package.json +3 -3
|
@@ -2711,7 +2711,7 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
2711
2711
|
updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
2712
2712
|
updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
2713
2713
|
/**
|
|
2714
|
-
* <p>Update a model training job to request a new Debugger profiling configuration.</p>
|
|
2714
|
+
* <p>Update a model training job to request a new Debugger profiling configuration or to change warm pool retention length.</p>
|
|
2715
2715
|
*/
|
|
2716
2716
|
updateTrainingJob(args: UpdateTrainingJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrainingJobCommandOutput>;
|
|
2717
2717
|
updateTrainingJob(args: UpdateTrainingJobCommandInput, cb: (err: any, data?: UpdateTrainingJobCommandOutput) => void): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { CreateFlowDefinitionRequest, CreateFlowDefinitionResponse } from "../models/
|
|
3
|
+
import { CreateFlowDefinitionRequest, CreateFlowDefinitionResponse } from "../models/models_1";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface CreateFlowDefinitionCommandInput extends CreateFlowDefinitionRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { CreateHumanTaskUiRequest, CreateHumanTaskUiResponse } from "../models/
|
|
3
|
+
import { CreateHumanTaskUiRequest, CreateHumanTaskUiResponse } from "../models/models_1";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface CreateHumanTaskUiCommandInput extends CreateHumanTaskUiRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeEndpointConfigInput
|
|
3
|
+
import { DescribeEndpointConfigInput } from "../models/models_1";
|
|
4
|
+
import { DescribeEndpointConfigOutput } from "../models/models_2";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface DescribeEndpointConfigCommandInput extends DescribeEndpointConfigInput {
|
|
6
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeExperimentRequest, DescribeExperimentResponse } from "../models/
|
|
3
|
+
import { DescribeExperimentRequest, DescribeExperimentResponse } from "../models/models_2";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface DescribeExperimentCommandInput extends DescribeExperimentRequest {
|
|
6
6
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeFeatureGroupRequest } from "../models/
|
|
4
|
-
import { DescribeFeatureGroupResponse } from "../models/models_2";
|
|
3
|
+
import { DescribeFeatureGroupRequest, DescribeFeatureGroupResponse } from "../models/models_2";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface DescribeFeatureGroupCommandInput extends DescribeFeatureGroupRequest {
|
|
7
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListModelsInput, ListModelsOutput } from "../models/
|
|
3
|
+
import { ListModelsInput, ListModelsOutput } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListModelsCommandInput extends ListModelsInput {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListMonitoringExecutionsRequest, ListMonitoringExecutionsResponse } from "../models/
|
|
3
|
+
import { ListMonitoringExecutionsRequest, ListMonitoringExecutionsResponse } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListMonitoringExecutionsCommandInput extends ListMonitoringExecutionsRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListMonitoringSchedulesRequest, ListMonitoringSchedulesResponse } from "../models/
|
|
3
|
+
import { ListMonitoringSchedulesRequest, ListMonitoringSchedulesResponse } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListMonitoringSchedulesCommandInput extends ListMonitoringSchedulesRequest {
|
|
6
6
|
}
|
|
@@ -7,7 +7,7 @@ export interface UpdateTrainingJobCommandInput extends UpdateTrainingJobRequest
|
|
|
7
7
|
export interface UpdateTrainingJobCommandOutput extends UpdateTrainingJobResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Update a model training job to request a new Debugger profiling configuration.</p>
|
|
10
|
+
* <p>Update a model training job to request a new Debugger profiling configuration or to change warm pool retention length.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|