@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.
Files changed (54) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist-cjs/commands/CreateFlowDefinitionCommand.js +3 -3
  3. package/dist-cjs/commands/CreateHumanTaskUiCommand.js +3 -3
  4. package/dist-cjs/commands/DescribeEndpointConfigCommand.js +2 -1
  5. package/dist-cjs/commands/DescribeExperimentCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeFeatureGroupCommand.js +1 -2
  7. package/dist-cjs/commands/ListModelsCommand.js +3 -3
  8. package/dist-cjs/commands/ListMonitoringExecutionsCommand.js +3 -3
  9. package/dist-cjs/commands/ListMonitoringSchedulesCommand.js +3 -3
  10. package/dist-cjs/models/models_0.js +104 -41
  11. package/dist-cjs/models/models_1.js +43 -51
  12. package/dist-cjs/models/models_2.js +61 -56
  13. package/dist-cjs/models/models_3.js +58 -4
  14. package/dist-cjs/protocols/Aws_json1_1.js +470 -263
  15. package/dist-es/commands/CreateFlowDefinitionCommand.js +1 -1
  16. package/dist-es/commands/CreateHumanTaskUiCommand.js +1 -1
  17. package/dist-es/commands/DescribeEndpointConfigCommand.js +2 -1
  18. package/dist-es/commands/DescribeExperimentCommand.js +1 -1
  19. package/dist-es/commands/DescribeFeatureGroupCommand.js +1 -2
  20. package/dist-es/commands/ListModelsCommand.js +1 -1
  21. package/dist-es/commands/ListMonitoringExecutionsCommand.js +1 -1
  22. package/dist-es/commands/ListMonitoringSchedulesCommand.js +1 -1
  23. package/dist-es/models/models_0.js +81 -9
  24. package/dist-es/models/models_1.js +9 -26
  25. package/dist-es/models/models_2.js +34 -26
  26. package/dist-es/models/models_3.js +27 -0
  27. package/dist-es/protocols/Aws_json1_1.js +447 -270
  28. package/dist-types/SageMaker.d.ts +1 -1
  29. package/dist-types/commands/CreateFlowDefinitionCommand.d.ts +1 -1
  30. package/dist-types/commands/CreateHumanTaskUiCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +2 -1
  32. package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
  34. package/dist-types/commands/ListModelsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
  38. package/dist-types/models/models_0.d.ts +352 -528
  39. package/dist-types/models/models_1.d.ts +529 -155
  40. package/dist-types/models/models_2.d.ts +214 -294
  41. package/dist-types/models/models_3.d.ts +324 -3
  42. package/dist-types/ts3.4/commands/CreateFlowDefinitionCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/CreateHumanTaskUiCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
  47. package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/models/models_0.d.ts +129 -75
  51. package/dist-types/ts3.4/models/models_1.d.ts +80 -73
  52. package/dist-types/ts3.4/models/models_2.d.ts +93 -112
  53. package/dist-types/ts3.4/models/models_3.d.ts +123 -2
  54. 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/models_0";
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/models_0";
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, DescribeEndpointConfigOutput } from "../models/models_1";
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/models_1";
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/models_1";
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/models_2";
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/models_2";
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/models_2";
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