@aws-sdk/client-sagemaker 3.565.0 → 3.566.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +18 -10
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/models/models_2.js +0 -9
- package/dist-es/models/models_3.js +9 -0
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateInferenceRecommendationsJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +2 -2
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -2
- package/dist-types/commands/SearchCommand.d.ts +3 -3
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +8 -0
- package/dist-types/models/models_2.d.ts +19 -17
- package/dist-types/models/models_3.d.ts +18 -27
- package/dist-types/models/models_4.d.ts +28 -2
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +8 -0
- package/dist-types/ts3.4/models/models_2.d.ts +4 -10
- package/dist-types/ts3.4/models/models_3.d.ts +10 -7
- package/dist-types/ts3.4/models/models_4.d.ts +7 -1
- package/package.json +1 -1
|
@@ -115,7 +115,6 @@ import {
|
|
|
115
115
|
SelectiveExecutionConfig,
|
|
116
116
|
ServiceCatalogProvisionedProductDetails,
|
|
117
117
|
SourceIpConfig,
|
|
118
|
-
SpaceStatus,
|
|
119
118
|
TensorBoardOutputConfig,
|
|
120
119
|
TrainingJobStatus,
|
|
121
120
|
TrialComponentArtifact,
|
|
@@ -149,6 +148,7 @@ import {
|
|
|
149
148
|
SecondaryStatusTransition,
|
|
150
149
|
SortBy,
|
|
151
150
|
SortOrder,
|
|
151
|
+
SpaceStatus,
|
|
152
152
|
SubscribedWorkteam,
|
|
153
153
|
TransformJobStatus,
|
|
154
154
|
TrialComponentMetricSummary,
|
|
@@ -160,6 +160,12 @@ import {
|
|
|
160
160
|
Workforce,
|
|
161
161
|
Workteam,
|
|
162
162
|
} from "./models_3";
|
|
163
|
+
export interface ListPipelineExecutionStepsRequest {
|
|
164
|
+
PipelineExecutionArn?: string;
|
|
165
|
+
NextToken?: string;
|
|
166
|
+
MaxResults?: number;
|
|
167
|
+
SortOrder?: SortOrder;
|
|
168
|
+
}
|
|
163
169
|
export interface ModelStepMetadata {
|
|
164
170
|
Arn?: string;
|
|
165
171
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.566.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|