@aws-sdk/client-sagemaker 3.844.0 → 3.846.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 +16 -0
- package/dist-cjs/index.js +223 -44
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/ListPipelineVersionsCommand.js +22 -0
- package/dist-es/commands/SearchCommand.js +1 -1
- package/dist-es/commands/UpdatePipelineVersionCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +0 -5
- package/dist-es/models/models_1.js +5 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/models/models_3.js +1 -10
- package/dist-es/models/models_4.js +10 -11
- package/dist-es/models/models_5.js +12 -0
- package/dist-es/pagination/ListPipelineVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +140 -0
- package/dist-types/SageMaker.d.ts +14 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/BatchDeleteClusterNodesCommand.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +55 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +59 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribePipelineCommand.d.ts +3 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +1 -0
- package/dist-types/commands/GetSearchSuggestionsCommand.d.ts +1 -1
- package/dist-types/commands/ListAppsCommand.d.ts +2 -1
- package/dist-types/commands/ListArtifactsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineVersionsCommand.d.ts +90 -0
- package/dist-types/commands/SearchCommand.d.ts +17 -3
- package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/SendPipelineExecutionStepFailureCommand.d.ts +1 -2
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +55 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +1 -0
- package/dist-types/commands/UpdatePipelineVersionCommand.d.ts +82 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +183 -130
- package/dist-types/models/models_1.d.ts +133 -87
- package/dist-types/models/models_2.d.ts +104 -164
- package/dist-types/models/models_3.d.ts +191 -120
- package/dist-types/models/models_4.d.ts +274 -394
- package/dist-types/models/models_5.d.ts +442 -4
- package/dist-types/pagination/ListPipelineVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/SageMaker.d.ts +34 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchTrainingPlanOfferingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendPipelineExecutionStepFailureCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdatePipelineVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -34
- package/dist-types/ts3.4/models/models_1.d.ts +40 -27
- package/dist-types/ts3.4/models/models_2.d.ts +36 -44
- package/dist-types/ts3.4/models/models_3.d.ts +48 -39
- package/dist-types/ts3.4/models/models_4.d.ts +74 -100
- package/dist-types/ts3.4/models/models_5.d.ts +131 -2
- package/dist-types/ts3.4/pagination/ListPipelineVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -2346,6 +2346,14 @@ ListPipelines
|
|
|
2346
2346
|
|
|
2347
2347
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/ListPipelinesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/ListPipelinesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/ListPipelinesCommandOutput/)
|
|
2348
2348
|
|
|
2349
|
+
</details>
|
|
2350
|
+
<details>
|
|
2351
|
+
<summary>
|
|
2352
|
+
ListPipelineVersions
|
|
2353
|
+
</summary>
|
|
2354
|
+
|
|
2355
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/ListPipelineVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/ListPipelineVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/ListPipelineVersionsCommandOutput/)
|
|
2356
|
+
|
|
2349
2357
|
</details>
|
|
2350
2358
|
<details>
|
|
2351
2359
|
<summary>
|
|
@@ -3018,6 +3026,14 @@ UpdatePipelineExecution
|
|
|
3018
3026
|
|
|
3019
3027
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/UpdatePipelineExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdatePipelineExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdatePipelineExecutionCommandOutput/)
|
|
3020
3028
|
|
|
3029
|
+
</details>
|
|
3030
|
+
<details>
|
|
3031
|
+
<summary>
|
|
3032
|
+
UpdatePipelineVersion
|
|
3033
|
+
</summary>
|
|
3034
|
+
|
|
3035
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/UpdatePipelineVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdatePipelineVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdatePipelineVersionCommandOutput/)
|
|
3036
|
+
|
|
3021
3037
|
</details>
|
|
3022
3038
|
<details>
|
|
3023
3039
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -439,6 +439,7 @@ __export(index_exports, {
|
|
|
439
439
|
ListPipelineExecutionStepsCommand: () => ListPipelineExecutionStepsCommand,
|
|
440
440
|
ListPipelineExecutionsCommand: () => ListPipelineExecutionsCommand,
|
|
441
441
|
ListPipelineParametersForExecutionCommand: () => ListPipelineParametersForExecutionCommand,
|
|
442
|
+
ListPipelineVersionsCommand: () => ListPipelineVersionsCommand,
|
|
442
443
|
ListPipelinesCommand: () => ListPipelinesCommand,
|
|
443
444
|
ListProcessingJobsCommand: () => ListProcessingJobsCommand,
|
|
444
445
|
ListProjectsCommand: () => ListProjectsCommand,
|
|
@@ -699,6 +700,7 @@ __export(index_exports, {
|
|
|
699
700
|
UpdatePartnerAppCommand: () => UpdatePartnerAppCommand,
|
|
700
701
|
UpdatePipelineCommand: () => UpdatePipelineCommand,
|
|
701
702
|
UpdatePipelineExecutionCommand: () => UpdatePipelineExecutionCommand,
|
|
703
|
+
UpdatePipelineVersionCommand: () => UpdatePipelineVersionCommand,
|
|
702
704
|
UpdateProjectCommand: () => UpdateProjectCommand,
|
|
703
705
|
UpdateSpaceCommand: () => UpdateSpaceCommand,
|
|
704
706
|
UpdateTrainingJobCommand: () => UpdateTrainingJobCommand,
|
|
@@ -778,6 +780,7 @@ __export(index_exports, {
|
|
|
778
780
|
paginateListPipelineExecutionSteps: () => paginateListPipelineExecutionSteps,
|
|
779
781
|
paginateListPipelineExecutions: () => paginateListPipelineExecutions,
|
|
780
782
|
paginateListPipelineParametersForExecution: () => paginateListPipelineParametersForExecution,
|
|
783
|
+
paginateListPipelineVersions: () => paginateListPipelineVersions,
|
|
781
784
|
paginateListPipelines: () => paginateListPipelines,
|
|
782
785
|
paginateListProcessingJobs: () => paginateListProcessingJobs,
|
|
783
786
|
paginateListProjects: () => paginateListProjects,
|
|
@@ -2488,14 +2491,14 @@ var PreemptTeamTasks = {
|
|
|
2488
2491
|
LOWERPRIORITY: "LowerPriority",
|
|
2489
2492
|
NEVER: "Never"
|
|
2490
2493
|
};
|
|
2494
|
+
|
|
2495
|
+
// src/models/models_1.ts
|
|
2496
|
+
|
|
2491
2497
|
var ResourceSharingStrategy = {
|
|
2492
2498
|
DONTLEND: "DontLend",
|
|
2493
2499
|
LEND: "Lend",
|
|
2494
2500
|
LENDANDBORROW: "LendAndBorrow"
|
|
2495
2501
|
};
|
|
2496
|
-
|
|
2497
|
-
// src/models/models_1.ts
|
|
2498
|
-
|
|
2499
2502
|
var ConditionOutcome = {
|
|
2500
2503
|
FALSE: "False",
|
|
2501
2504
|
TRUE: "True"
|
|
@@ -3078,10 +3081,6 @@ var ModelCardStatus = {
|
|
|
3078
3081
|
DRAFT: "Draft",
|
|
3079
3082
|
PENDINGREVIEW: "PendingReview"
|
|
3080
3083
|
};
|
|
3081
|
-
var SkipModelValidation = {
|
|
3082
|
-
ALL: "All",
|
|
3083
|
-
NONE: "None"
|
|
3084
|
-
};
|
|
3085
3084
|
var CreateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3086
3085
|
...obj,
|
|
3087
3086
|
...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -3093,6 +3092,10 @@ var ModelPackageModelCardFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
3093
3092
|
|
|
3094
3093
|
// src/models/models_2.ts
|
|
3095
3094
|
|
|
3095
|
+
var SkipModelValidation = {
|
|
3096
|
+
ALL: "All",
|
|
3097
|
+
NONE: "None"
|
|
3098
|
+
};
|
|
3096
3099
|
var MonitoringProblemType = {
|
|
3097
3100
|
BINARY_CLASSIFICATION: "BinaryClassification",
|
|
3098
3101
|
MULTICLASS_CLASSIFICATION: "MulticlassClassification",
|
|
@@ -4943,6 +4946,12 @@ var se_ListPipelinesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4943
4946
|
body = JSON.stringify(se_ListPipelinesRequest(input, context));
|
|
4944
4947
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
4945
4948
|
}, "se_ListPipelinesCommand");
|
|
4949
|
+
var se_ListPipelineVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4950
|
+
const headers = sharedHeaders("ListPipelineVersions");
|
|
4951
|
+
let body;
|
|
4952
|
+
body = JSON.stringify(se_ListPipelineVersionsRequest(input, context));
|
|
4953
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
4954
|
+
}, "se_ListPipelineVersionsCommand");
|
|
4946
4955
|
var se_ListProcessingJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4947
4956
|
const headers = sharedHeaders("ListProcessingJobs");
|
|
4948
4957
|
let body;
|
|
@@ -5447,6 +5456,12 @@ var se_UpdatePipelineExecutionCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5447
5456
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
5448
5457
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
5449
5458
|
}, "se_UpdatePipelineExecutionCommand");
|
|
5459
|
+
var se_UpdatePipelineVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5460
|
+
const headers = sharedHeaders("UpdatePipelineVersion");
|
|
5461
|
+
let body;
|
|
5462
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
5463
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
5464
|
+
}, "se_UpdatePipelineVersionCommand");
|
|
5450
5465
|
var se_UpdateProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5451
5466
|
const headers = sharedHeaders("UpdateProject");
|
|
5452
5467
|
let body;
|
|
@@ -8859,6 +8874,19 @@ var de_ListPipelinesCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
8859
8874
|
};
|
|
8860
8875
|
return response;
|
|
8861
8876
|
}, "de_ListPipelinesCommand");
|
|
8877
|
+
var de_ListPipelineVersionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
8878
|
+
if (output.statusCode >= 300) {
|
|
8879
|
+
return de_CommandError(output, context);
|
|
8880
|
+
}
|
|
8881
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
8882
|
+
let contents = {};
|
|
8883
|
+
contents = de_ListPipelineVersionsResponse(data, context);
|
|
8884
|
+
const response = {
|
|
8885
|
+
$metadata: deserializeMetadata(output),
|
|
8886
|
+
...contents
|
|
8887
|
+
};
|
|
8888
|
+
return response;
|
|
8889
|
+
}, "de_ListPipelineVersionsCommand");
|
|
8862
8890
|
var de_ListProcessingJobsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
8863
8891
|
if (output.statusCode >= 300) {
|
|
8864
8892
|
return de_CommandError(output, context);
|
|
@@ -9891,6 +9919,19 @@ var de_UpdatePipelineExecutionCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
9891
9919
|
};
|
|
9892
9920
|
return response;
|
|
9893
9921
|
}, "de_UpdatePipelineExecutionCommand");
|
|
9922
|
+
var de_UpdatePipelineVersionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
9923
|
+
if (output.statusCode >= 300) {
|
|
9924
|
+
return de_CommandError(output, context);
|
|
9925
|
+
}
|
|
9926
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
9927
|
+
let contents = {};
|
|
9928
|
+
contents = de_UpdatePipelineVersionResponse(data, context);
|
|
9929
|
+
const response = {
|
|
9930
|
+
$metadata: deserializeMetadata(output),
|
|
9931
|
+
...contents
|
|
9932
|
+
};
|
|
9933
|
+
return response;
|
|
9934
|
+
}, "de_UpdatePipelineVersionCommand");
|
|
9894
9935
|
var de_UpdateProjectCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
9895
9936
|
if (output.statusCode >= 300) {
|
|
9896
9937
|
return de_CommandError(output, context);
|
|
@@ -11117,6 +11158,16 @@ var se_ListPipelinesRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
11117
11158
|
SortOrder: []
|
|
11118
11159
|
});
|
|
11119
11160
|
}, "se_ListPipelinesRequest");
|
|
11161
|
+
var se_ListPipelineVersionsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
11162
|
+
return (0, import_smithy_client.take)(input, {
|
|
11163
|
+
CreatedAfter: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "CreatedAfter"),
|
|
11164
|
+
CreatedBefore: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "CreatedBefore"),
|
|
11165
|
+
MaxResults: [],
|
|
11166
|
+
NextToken: [],
|
|
11167
|
+
PipelineName: [],
|
|
11168
|
+
SortOrder: []
|
|
11169
|
+
});
|
|
11170
|
+
}, "se_ListPipelineVersionsRequest");
|
|
11120
11171
|
var se_ListProcessingJobsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
11121
11172
|
return (0, import_smithy_client.take)(input, {
|
|
11122
11173
|
CreationTimeAfter: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "CreationTimeAfter"),
|
|
@@ -11396,6 +11447,7 @@ var se_StartPipelineExecutionRequest = /* @__PURE__ */ __name((input, context) =
|
|
|
11396
11447
|
PipelineExecutionDisplayName: [],
|
|
11397
11448
|
PipelineName: [],
|
|
11398
11449
|
PipelineParameters: import_smithy_client._json,
|
|
11450
|
+
PipelineVersionId: [],
|
|
11399
11451
|
SelectiveExecutionConfig: import_smithy_client._json
|
|
11400
11452
|
});
|
|
11401
11453
|
}, "se_StartPipelineExecutionRequest");
|
|
@@ -12604,6 +12656,30 @@ var de_ClusterOrchestratorEksConfig = /* @__PURE__ */ __name((output, context) =
|
|
|
12604
12656
|
ClusterArn: import_smithy_client.expectString
|
|
12605
12657
|
});
|
|
12606
12658
|
}, "de_ClusterOrchestratorEksConfig");
|
|
12659
|
+
var de_ClusterRestrictedInstanceGroupDetails = /* @__PURE__ */ __name((output, context) => {
|
|
12660
|
+
return (0, import_smithy_client.take)(output, {
|
|
12661
|
+
CurrentCount: import_smithy_client.expectInt32,
|
|
12662
|
+
EnvironmentConfig: /* @__PURE__ */ __name((_) => de_EnvironmentConfigDetails(_, context), "EnvironmentConfig"),
|
|
12663
|
+
ExecutionRole: import_smithy_client.expectString,
|
|
12664
|
+
InstanceGroupName: import_smithy_client.expectString,
|
|
12665
|
+
InstanceStorageConfigs: /* @__PURE__ */ __name((_) => de_ClusterInstanceStorageConfigs(_, context), "InstanceStorageConfigs"),
|
|
12666
|
+
InstanceType: import_smithy_client.expectString,
|
|
12667
|
+
OnStartDeepHealthChecks: /* @__PURE__ */ __name((_) => de_OnStartDeepHealthChecks(_, context), "OnStartDeepHealthChecks"),
|
|
12668
|
+
OverrideVpcConfig: /* @__PURE__ */ __name((_) => de_VpcConfig(_, context), "OverrideVpcConfig"),
|
|
12669
|
+
ScheduledUpdateConfig: /* @__PURE__ */ __name((_) => de_ScheduledUpdateConfig(_, context), "ScheduledUpdateConfig"),
|
|
12670
|
+
Status: import_smithy_client.expectString,
|
|
12671
|
+
TargetCount: import_smithy_client.expectInt32,
|
|
12672
|
+
ThreadsPerCore: import_smithy_client.expectInt32,
|
|
12673
|
+
TrainingPlanArn: import_smithy_client.expectString,
|
|
12674
|
+
TrainingPlanStatus: import_smithy_client.expectString
|
|
12675
|
+
});
|
|
12676
|
+
}, "de_ClusterRestrictedInstanceGroupDetails");
|
|
12677
|
+
var de_ClusterRestrictedInstanceGroupDetailsList = /* @__PURE__ */ __name((output, context) => {
|
|
12678
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
12679
|
+
return de_ClusterRestrictedInstanceGroupDetails(entry, context);
|
|
12680
|
+
});
|
|
12681
|
+
return retVal;
|
|
12682
|
+
}, "de_ClusterRestrictedInstanceGroupDetailsList");
|
|
12607
12683
|
var de_ClusterSchedulerConfigSummary = /* @__PURE__ */ __name((output, context) => {
|
|
12608
12684
|
return (0, import_smithy_client.take)(output, {
|
|
12609
12685
|
ClusterArn: import_smithy_client.expectString,
|
|
@@ -13733,6 +13809,7 @@ var de_DescribeClusterResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
13733
13809
|
InstanceGroups: /* @__PURE__ */ __name((_) => de_ClusterInstanceGroupDetailsList(_, context), "InstanceGroups"),
|
|
13734
13810
|
NodeRecovery: import_smithy_client.expectString,
|
|
13735
13811
|
Orchestrator: /* @__PURE__ */ __name((_) => de_ClusterOrchestrator(_, context), "Orchestrator"),
|
|
13812
|
+
RestrictedInstanceGroups: /* @__PURE__ */ __name((_) => de_ClusterRestrictedInstanceGroupDetailsList(_, context), "RestrictedInstanceGroups"),
|
|
13736
13813
|
VpcConfig: /* @__PURE__ */ __name((_) => de_VpcConfig(_, context), "VpcConfig")
|
|
13737
13814
|
});
|
|
13738
13815
|
}, "de_DescribeClusterResponse");
|
|
@@ -14469,6 +14546,7 @@ var de_DescribePipelineExecutionResponse = /* @__PURE__ */ __name((output, conte
|
|
|
14469
14546
|
PipelineExecutionDisplayName: import_smithy_client.expectString,
|
|
14470
14547
|
PipelineExecutionStatus: import_smithy_client.expectString,
|
|
14471
14548
|
PipelineExperimentConfig: /* @__PURE__ */ __name((_) => de_PipelineExperimentConfig(_, context), "PipelineExperimentConfig"),
|
|
14549
|
+
PipelineVersionId: import_smithy_client.expectLong,
|
|
14472
14550
|
SelectiveExecutionConfig: /* @__PURE__ */ __name((_) => de_SelectiveExecutionConfig(_, context), "SelectiveExecutionConfig")
|
|
14473
14551
|
});
|
|
14474
14552
|
}, "de_DescribePipelineExecutionResponse");
|
|
@@ -14486,6 +14564,8 @@ var de_DescribePipelineResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
14486
14564
|
PipelineDisplayName: import_smithy_client.expectString,
|
|
14487
14565
|
PipelineName: import_smithy_client.expectString,
|
|
14488
14566
|
PipelineStatus: import_smithy_client.expectString,
|
|
14567
|
+
PipelineVersionDescription: import_smithy_client.expectString,
|
|
14568
|
+
PipelineVersionDisplayName: import_smithy_client.expectString,
|
|
14489
14569
|
RoleArn: import_smithy_client.expectString
|
|
14490
14570
|
});
|
|
14491
14571
|
}, "de_DescribePipelineResponse");
|
|
@@ -15198,6 +15278,12 @@ var de_EndpointSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
|
15198
15278
|
});
|
|
15199
15279
|
return retVal;
|
|
15200
15280
|
}, "de_EndpointSummaryList");
|
|
15281
|
+
var de_EnvironmentConfigDetails = /* @__PURE__ */ __name((output, context) => {
|
|
15282
|
+
return (0, import_smithy_client.take)(output, {
|
|
15283
|
+
FSxLustreConfig: /* @__PURE__ */ __name((_) => de_FSxLustreConfig(_, context), "FSxLustreConfig"),
|
|
15284
|
+
S3OutputPath: import_smithy_client.expectString
|
|
15285
|
+
});
|
|
15286
|
+
}, "de_EnvironmentConfigDetails");
|
|
15201
15287
|
var de_EnvironmentMap = /* @__PURE__ */ __name((output, context) => {
|
|
15202
15288
|
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
15203
15289
|
if (value === null) {
|
|
@@ -15466,6 +15552,12 @@ var de_ForecastQuantiles = /* @__PURE__ */ __name((output, context) => {
|
|
|
15466
15552
|
});
|
|
15467
15553
|
return retVal;
|
|
15468
15554
|
}, "de_ForecastQuantiles");
|
|
15555
|
+
var de_FSxLustreConfig = /* @__PURE__ */ __name((output, context) => {
|
|
15556
|
+
return (0, import_smithy_client.take)(output, {
|
|
15557
|
+
PerUnitStorageThroughput: import_smithy_client.expectInt32,
|
|
15558
|
+
SizeInGiB: import_smithy_client.expectInt32
|
|
15559
|
+
});
|
|
15560
|
+
}, "de_FSxLustreConfig");
|
|
15469
15561
|
var de_FSxLustreFileSystem = /* @__PURE__ */ __name((output, context) => {
|
|
15470
15562
|
return (0, import_smithy_client.take)(output, {
|
|
15471
15563
|
FileSystemId: import_smithy_client.expectString
|
|
@@ -16876,6 +16968,12 @@ var de_ListPipelinesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
16876
16968
|
PipelineSummaries: /* @__PURE__ */ __name((_) => de_PipelineSummaryList(_, context), "PipelineSummaries")
|
|
16877
16969
|
});
|
|
16878
16970
|
}, "de_ListPipelinesResponse");
|
|
16971
|
+
var de_ListPipelineVersionsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
16972
|
+
return (0, import_smithy_client.take)(output, {
|
|
16973
|
+
NextToken: import_smithy_client.expectString,
|
|
16974
|
+
PipelineVersionSummaries: /* @__PURE__ */ __name((_) => de_PipelineVersionSummaryList(_, context), "PipelineVersionSummaries")
|
|
16975
|
+
});
|
|
16976
|
+
}, "de_ListPipelineVersionsResponse");
|
|
16879
16977
|
var de_ListProcessingJobsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
16880
16978
|
return (0, import_smithy_client.take)(output, {
|
|
16881
16979
|
NextToken: import_smithy_client.expectString,
|
|
@@ -18325,6 +18423,8 @@ var de_PipelineExecution = /* @__PURE__ */ __name((output, context) => {
|
|
|
18325
18423
|
PipelineExecutionStatus: import_smithy_client.expectString,
|
|
18326
18424
|
PipelineExperimentConfig: /* @__PURE__ */ __name((_) => de_PipelineExperimentConfig(_, context), "PipelineExperimentConfig"),
|
|
18327
18425
|
PipelineParameters: /* @__PURE__ */ __name((_) => de_ParameterList(_, context), "PipelineParameters"),
|
|
18426
|
+
PipelineVersionDisplayName: import_smithy_client.expectString,
|
|
18427
|
+
PipelineVersionId: import_smithy_client.expectLong,
|
|
18328
18428
|
SelectiveExecutionConfig: /* @__PURE__ */ __name((_) => de_SelectiveExecutionConfig(_, context), "SelectiveExecutionConfig")
|
|
18329
18429
|
});
|
|
18330
18430
|
}, "de_PipelineExecution");
|
|
@@ -18409,6 +18509,37 @@ var de_PipelineSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
|
18409
18509
|
});
|
|
18410
18510
|
return retVal;
|
|
18411
18511
|
}, "de_PipelineSummaryList");
|
|
18512
|
+
var de_PipelineVersion = /* @__PURE__ */ __name((output, context) => {
|
|
18513
|
+
return (0, import_smithy_client.take)(output, {
|
|
18514
|
+
CreatedBy: /* @__PURE__ */ __name((_) => de_UserContext(_, context), "CreatedBy"),
|
|
18515
|
+
CreationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationTime"),
|
|
18516
|
+
LastExecutedPipelineExecutionArn: import_smithy_client.expectString,
|
|
18517
|
+
LastExecutedPipelineExecutionDisplayName: import_smithy_client.expectString,
|
|
18518
|
+
LastExecutedPipelineExecutionStatus: import_smithy_client.expectString,
|
|
18519
|
+
LastModifiedBy: /* @__PURE__ */ __name((_) => de_UserContext(_, context), "LastModifiedBy"),
|
|
18520
|
+
LastModifiedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedTime"),
|
|
18521
|
+
PipelineArn: import_smithy_client.expectString,
|
|
18522
|
+
PipelineVersionDescription: import_smithy_client.expectString,
|
|
18523
|
+
PipelineVersionDisplayName: import_smithy_client.expectString,
|
|
18524
|
+
PipelineVersionId: import_smithy_client.expectLong
|
|
18525
|
+
});
|
|
18526
|
+
}, "de_PipelineVersion");
|
|
18527
|
+
var de_PipelineVersionSummary = /* @__PURE__ */ __name((output, context) => {
|
|
18528
|
+
return (0, import_smithy_client.take)(output, {
|
|
18529
|
+
CreationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationTime"),
|
|
18530
|
+
LastExecutionPipelineExecutionArn: import_smithy_client.expectString,
|
|
18531
|
+
PipelineArn: import_smithy_client.expectString,
|
|
18532
|
+
PipelineVersionDescription: import_smithy_client.expectString,
|
|
18533
|
+
PipelineVersionDisplayName: import_smithy_client.expectString,
|
|
18534
|
+
PipelineVersionId: import_smithy_client.expectLong
|
|
18535
|
+
});
|
|
18536
|
+
}, "de_PipelineVersionSummary");
|
|
18537
|
+
var de_PipelineVersionSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
18538
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
18539
|
+
return de_PipelineVersionSummary(entry, context);
|
|
18540
|
+
});
|
|
18541
|
+
return retVal;
|
|
18542
|
+
}, "de_PipelineVersionSummaryList");
|
|
18412
18543
|
var de_PredefinedMetricSpecification = /* @__PURE__ */ __name((output, context) => {
|
|
18413
18544
|
return (0, import_smithy_client.take)(output, {
|
|
18414
18545
|
PredefinedMetricType: import_smithy_client.expectString
|
|
@@ -19232,6 +19363,7 @@ var de_SearchRecord = /* @__PURE__ */ __name((output, context) => {
|
|
|
19232
19363
|
ModelPackageGroup: /* @__PURE__ */ __name((_) => de_ModelPackageGroup(_, context), "ModelPackageGroup"),
|
|
19233
19364
|
Pipeline: /* @__PURE__ */ __name((_) => de_Pipeline(_, context), "Pipeline"),
|
|
19234
19365
|
PipelineExecution: /* @__PURE__ */ __name((_) => de_PipelineExecution(_, context), "PipelineExecution"),
|
|
19366
|
+
PipelineVersion: /* @__PURE__ */ __name((_) => de_PipelineVersion(_, context), "PipelineVersion"),
|
|
19235
19367
|
Project: /* @__PURE__ */ __name((_) => de_Project(_, context), "Project"),
|
|
19236
19368
|
TrainingJob: /* @__PURE__ */ __name((_) => de_TrainingJob(_, context), "TrainingJob"),
|
|
19237
19369
|
Trial: /* @__PURE__ */ __name((_) => de_Trial(_, context), "Trial"),
|
|
@@ -20400,9 +20532,16 @@ var de_UpdatePipelineExecutionResponse = /* @__PURE__ */ __name((output, context
|
|
|
20400
20532
|
}, "de_UpdatePipelineExecutionResponse");
|
|
20401
20533
|
var de_UpdatePipelineResponse = /* @__PURE__ */ __name((output, context) => {
|
|
20402
20534
|
return (0, import_smithy_client.take)(output, {
|
|
20403
|
-
PipelineArn: import_smithy_client.expectString
|
|
20535
|
+
PipelineArn: import_smithy_client.expectString,
|
|
20536
|
+
PipelineVersionId: import_smithy_client.expectLong
|
|
20404
20537
|
});
|
|
20405
20538
|
}, "de_UpdatePipelineResponse");
|
|
20539
|
+
var de_UpdatePipelineVersionResponse = /* @__PURE__ */ __name((output, context) => {
|
|
20540
|
+
return (0, import_smithy_client.take)(output, {
|
|
20541
|
+
PipelineArn: import_smithy_client.expectString,
|
|
20542
|
+
PipelineVersionId: import_smithy_client.expectLong
|
|
20543
|
+
});
|
|
20544
|
+
}, "de_UpdatePipelineVersionResponse");
|
|
20406
20545
|
var de_UpdateProjectOutput = /* @__PURE__ */ __name((output, context) => {
|
|
20407
20546
|
return (0, import_smithy_client.take)(output, {
|
|
20408
20547
|
ProjectArn: import_smithy_client.expectString
|
|
@@ -23563,6 +23702,7 @@ var ResourceType = {
|
|
|
23563
23702
|
MODEL_PACKAGE_GROUP: "ModelPackageGroup",
|
|
23564
23703
|
PIPELINE: "Pipeline",
|
|
23565
23704
|
PIPELINE_EXECUTION: "PipelineExecution",
|
|
23705
|
+
PIPELINE_VERSION: "PipelineVersion",
|
|
23566
23706
|
PROJECT: "Project",
|
|
23567
23707
|
TRAINING_JOB: "TrainingJob"
|
|
23568
23708
|
};
|
|
@@ -23626,16 +23766,6 @@ var SortOrder = {
|
|
|
23626
23766
|
ASCENDING: "Ascending",
|
|
23627
23767
|
DESCENDING: "Descending"
|
|
23628
23768
|
};
|
|
23629
|
-
var SortArtifactsBy = {
|
|
23630
|
-
CREATION_TIME: "CreationTime"
|
|
23631
|
-
};
|
|
23632
|
-
var SortAssociationsBy = {
|
|
23633
|
-
CREATION_TIME: "CreationTime",
|
|
23634
|
-
DESTINATION_ARN: "DestinationArn",
|
|
23635
|
-
DESTINATION_TYPE: "DestinationType",
|
|
23636
|
-
SOURCE_ARN: "SourceArn",
|
|
23637
|
-
SOURCE_TYPE: "SourceType"
|
|
23638
|
-
};
|
|
23639
23769
|
var DescribeModelCardResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
23640
23770
|
...obj,
|
|
23641
23771
|
...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -25172,6 +25302,21 @@ var ListPipelinesCommand = class extends import_smithy_client.Command.classBuild
|
|
|
25172
25302
|
}
|
|
25173
25303
|
};
|
|
25174
25304
|
|
|
25305
|
+
// src/commands/ListPipelineVersionsCommand.ts
|
|
25306
|
+
|
|
25307
|
+
|
|
25308
|
+
|
|
25309
|
+
var ListPipelineVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
25310
|
+
return [
|
|
25311
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
25312
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
25313
|
+
];
|
|
25314
|
+
}).s("SageMaker", "ListPipelineVersions", {}).n("SageMakerClient", "ListPipelineVersionsCommand").f(void 0, void 0).ser(se_ListPipelineVersionsCommand).de(de_ListPipelineVersionsCommand).build() {
|
|
25315
|
+
static {
|
|
25316
|
+
__name(this, "ListPipelineVersionsCommand");
|
|
25317
|
+
}
|
|
25318
|
+
};
|
|
25319
|
+
|
|
25175
25320
|
// src/commands/ListProcessingJobsCommand.ts
|
|
25176
25321
|
|
|
25177
25322
|
|
|
@@ -25507,8 +25652,21 @@ var RetryPipelineExecutionCommand = class extends import_smithy_client.Command.c
|
|
|
25507
25652
|
|
|
25508
25653
|
|
|
25509
25654
|
|
|
25655
|
+
// src/models/models_5.ts
|
|
25656
|
+
|
|
25657
|
+
|
|
25510
25658
|
// src/models/models_4.ts
|
|
25511
25659
|
|
|
25660
|
+
var SortArtifactsBy = {
|
|
25661
|
+
CREATION_TIME: "CreationTime"
|
|
25662
|
+
};
|
|
25663
|
+
var SortAssociationsBy = {
|
|
25664
|
+
CREATION_TIME: "CreationTime",
|
|
25665
|
+
DESTINATION_ARN: "DestinationArn",
|
|
25666
|
+
DESTINATION_TYPE: "DestinationType",
|
|
25667
|
+
SOURCE_ARN: "SourceArn",
|
|
25668
|
+
SOURCE_TYPE: "SourceType"
|
|
25669
|
+
};
|
|
25512
25670
|
var SortClusterSchedulerConfigBy = {
|
|
25513
25671
|
CREATION_TIME: "CreationTime",
|
|
25514
25672
|
NAME: "Name",
|
|
@@ -25769,6 +25927,13 @@ var ModelPackageFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
25769
25927
|
...obj,
|
|
25770
25928
|
...obj.ModelCard && { ModelCard: ModelPackageModelCardFilterSensitiveLog(obj.ModelCard) }
|
|
25771
25929
|
}), "ModelPackageFilterSensitiveLog");
|
|
25930
|
+
|
|
25931
|
+
// src/models/models_5.ts
|
|
25932
|
+
var VariantPropertyType = {
|
|
25933
|
+
DataCaptureConfig: "DataCaptureConfig",
|
|
25934
|
+
DesiredInstanceCount: "DesiredInstanceCount",
|
|
25935
|
+
DesiredWeight: "DesiredWeight"
|
|
25936
|
+
};
|
|
25772
25937
|
var SearchRecordFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
25773
25938
|
...obj,
|
|
25774
25939
|
...obj.TrialComponent && { TrialComponent: obj.TrialComponent },
|
|
@@ -25780,6 +25945,18 @@ var SearchResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
25780
25945
|
...obj,
|
|
25781
25946
|
...obj.Results && { Results: obj.Results.map((item) => SearchRecordFilterSensitiveLog(item)) }
|
|
25782
25947
|
}), "SearchResponseFilterSensitiveLog");
|
|
25948
|
+
var UpdateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
25949
|
+
...obj,
|
|
25950
|
+
...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
|
|
25951
|
+
}), "UpdateModelCardRequestFilterSensitiveLog");
|
|
25952
|
+
var UpdateModelPackageInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
25953
|
+
...obj,
|
|
25954
|
+
...obj.ModelCard && { ModelCard: ModelPackageModelCardFilterSensitiveLog(obj.ModelCard) }
|
|
25955
|
+
}), "UpdateModelPackageInputFilterSensitiveLog");
|
|
25956
|
+
var UpdateWorkforceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
25957
|
+
...obj,
|
|
25958
|
+
...obj.OidcConfig && { OidcConfig: OidcConfigFilterSensitiveLog(obj.OidcConfig) }
|
|
25959
|
+
}), "UpdateWorkforceRequestFilterSensitiveLog");
|
|
25783
25960
|
|
|
25784
25961
|
// src/commands/SearchCommand.ts
|
|
25785
25962
|
var SearchCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
@@ -26577,28 +26754,6 @@ var UpdateMlflowTrackingServerCommand = class extends import_smithy_client.Comma
|
|
|
26577
26754
|
|
|
26578
26755
|
|
|
26579
26756
|
|
|
26580
|
-
|
|
26581
|
-
// src/models/models_5.ts
|
|
26582
|
-
|
|
26583
|
-
var VariantPropertyType = {
|
|
26584
|
-
DataCaptureConfig: "DataCaptureConfig",
|
|
26585
|
-
DesiredInstanceCount: "DesiredInstanceCount",
|
|
26586
|
-
DesiredWeight: "DesiredWeight"
|
|
26587
|
-
};
|
|
26588
|
-
var UpdateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
26589
|
-
...obj,
|
|
26590
|
-
...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
|
|
26591
|
-
}), "UpdateModelCardRequestFilterSensitiveLog");
|
|
26592
|
-
var UpdateModelPackageInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
26593
|
-
...obj,
|
|
26594
|
-
...obj.ModelCard && { ModelCard: ModelPackageModelCardFilterSensitiveLog(obj.ModelCard) }
|
|
26595
|
-
}), "UpdateModelPackageInputFilterSensitiveLog");
|
|
26596
|
-
var UpdateWorkforceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
26597
|
-
...obj,
|
|
26598
|
-
...obj.OidcConfig && { OidcConfig: OidcConfigFilterSensitiveLog(obj.OidcConfig) }
|
|
26599
|
-
}), "UpdateWorkforceRequestFilterSensitiveLog");
|
|
26600
|
-
|
|
26601
|
-
// src/commands/UpdateModelCardCommand.ts
|
|
26602
26757
|
var UpdateModelCardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
26603
26758
|
return [
|
|
26604
26759
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
@@ -26730,6 +26885,21 @@ var UpdatePipelineExecutionCommand = class extends import_smithy_client.Command.
|
|
|
26730
26885
|
}
|
|
26731
26886
|
};
|
|
26732
26887
|
|
|
26888
|
+
// src/commands/UpdatePipelineVersionCommand.ts
|
|
26889
|
+
|
|
26890
|
+
|
|
26891
|
+
|
|
26892
|
+
var UpdatePipelineVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
26893
|
+
return [
|
|
26894
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
26895
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
26896
|
+
];
|
|
26897
|
+
}).s("SageMaker", "UpdatePipelineVersion", {}).n("SageMakerClient", "UpdatePipelineVersionCommand").f(void 0, void 0).ser(se_UpdatePipelineVersionCommand).de(de_UpdatePipelineVersionCommand).build() {
|
|
26898
|
+
static {
|
|
26899
|
+
__name(this, "UpdatePipelineVersionCommand");
|
|
26900
|
+
}
|
|
26901
|
+
};
|
|
26902
|
+
|
|
26733
26903
|
// src/commands/UpdateProjectCommand.ts
|
|
26734
26904
|
|
|
26735
26905
|
|
|
@@ -27120,6 +27290,7 @@ var commands = {
|
|
|
27120
27290
|
ListPipelineExecutionStepsCommand,
|
|
27121
27291
|
ListPipelineParametersForExecutionCommand,
|
|
27122
27292
|
ListPipelinesCommand,
|
|
27293
|
+
ListPipelineVersionsCommand,
|
|
27123
27294
|
ListProcessingJobsCommand,
|
|
27124
27295
|
ListProjectsCommand,
|
|
27125
27296
|
ListResourceCatalogsCommand,
|
|
@@ -27204,6 +27375,7 @@ var commands = {
|
|
|
27204
27375
|
UpdatePartnerAppCommand,
|
|
27205
27376
|
UpdatePipelineCommand,
|
|
27206
27377
|
UpdatePipelineExecutionCommand,
|
|
27378
|
+
UpdatePipelineVersionCommand,
|
|
27207
27379
|
UpdateProjectCommand,
|
|
27208
27380
|
UpdateSpaceCommand,
|
|
27209
27381
|
UpdateTrainingJobCommand,
|
|
@@ -27464,6 +27636,10 @@ var paginateListPipelineExecutions = (0, import_core.createPaginator)(SageMakerC
|
|
|
27464
27636
|
|
|
27465
27637
|
var paginateListPipelineParametersForExecution = (0, import_core.createPaginator)(SageMakerClient, ListPipelineParametersForExecutionCommand, "NextToken", "NextToken", "MaxResults");
|
|
27466
27638
|
|
|
27639
|
+
// src/pagination/ListPipelineVersionsPaginator.ts
|
|
27640
|
+
|
|
27641
|
+
var paginateListPipelineVersions = (0, import_core.createPaginator)(SageMakerClient, ListPipelineVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
27642
|
+
|
|
27467
27643
|
// src/pagination/ListPipelinesPaginator.ts
|
|
27468
27644
|
|
|
27469
27645
|
var paginateListPipelines = (0, import_core.createPaginator)(SageMakerClient, ListPipelinesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -28368,6 +28544,7 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
28368
28544
|
ListPipelineExecutionStepsCommand,
|
|
28369
28545
|
ListPipelineExecutionsCommand,
|
|
28370
28546
|
ListPipelineParametersForExecutionCommand,
|
|
28547
|
+
ListPipelineVersionsCommand,
|
|
28371
28548
|
ListPipelinesCommand,
|
|
28372
28549
|
ListProcessingJobsCommand,
|
|
28373
28550
|
ListProjectsCommand,
|
|
@@ -28453,6 +28630,7 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
28453
28630
|
UpdatePartnerAppCommand,
|
|
28454
28631
|
UpdatePipelineCommand,
|
|
28455
28632
|
UpdatePipelineExecutionCommand,
|
|
28633
|
+
UpdatePipelineVersionCommand,
|
|
28456
28634
|
UpdateProjectCommand,
|
|
28457
28635
|
UpdateSpaceCommand,
|
|
28458
28636
|
UpdateTrainingJobCommand,
|
|
@@ -28522,6 +28700,7 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
28522
28700
|
paginateListPipelineExecutionSteps,
|
|
28523
28701
|
paginateListPipelineExecutions,
|
|
28524
28702
|
paginateListPipelineParametersForExecution,
|
|
28703
|
+
paginateListPipelineVersions,
|
|
28525
28704
|
paginateListPipelines,
|
|
28526
28705
|
paginateListProcessingJobs,
|
|
28527
28706
|
paginateListProjects,
|
|
@@ -28724,9 +28903,9 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
28724
28903
|
TrackingServerSize,
|
|
28725
28904
|
InferenceExecutionMode,
|
|
28726
28905
|
ModelCardStatus,
|
|
28727
|
-
SkipModelValidation,
|
|
28728
28906
|
CreateModelCardRequestFilterSensitiveLog,
|
|
28729
28907
|
ModelPackageModelCardFilterSensitiveLog,
|
|
28908
|
+
SkipModelValidation,
|
|
28730
28909
|
MonitoringProblemType,
|
|
28731
28910
|
MonitoringType,
|
|
28732
28911
|
NotebookInstanceAcceleratorType,
|
|
@@ -28832,10 +29011,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
28832
29011
|
LineageType,
|
|
28833
29012
|
SortActionsBy,
|
|
28834
29013
|
SortOrder,
|
|
28835
|
-
SortArtifactsBy,
|
|
28836
|
-
SortAssociationsBy,
|
|
28837
29014
|
DescribeModelCardResponseFilterSensitiveLog,
|
|
28838
29015
|
DescribeModelPackageOutputFilterSensitiveLog,
|
|
29016
|
+
SortArtifactsBy,
|
|
29017
|
+
SortAssociationsBy,
|
|
28839
29018
|
SortClusterSchedulerConfigBy,
|
|
28840
29019
|
ListCompilationJobsSortBy,
|
|
28841
29020
|
SortQuotaBy,
|
|
@@ -28894,9 +29073,9 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
28894
29073
|
SearchSortOrder,
|
|
28895
29074
|
ModelCardFilterSensitiveLog,
|
|
28896
29075
|
ModelPackageFilterSensitiveLog,
|
|
29076
|
+
VariantPropertyType,
|
|
28897
29077
|
SearchRecordFilterSensitiveLog,
|
|
28898
29078
|
SearchResponseFilterSensitiveLog,
|
|
28899
|
-
VariantPropertyType,
|
|
28900
29079
|
UpdateModelCardRequestFilterSensitiveLog,
|
|
28901
29080
|
UpdateModelPackageInputFilterSensitiveLog,
|
|
28902
29081
|
UpdateWorkforceRequestFilterSensitiveLog
|
package/dist-es/SageMaker.js
CHANGED
|
@@ -267,6 +267,7 @@ import { ListPipelineExecutionsCommand, } from "./commands/ListPipelineExecution
|
|
|
267
267
|
import { ListPipelineExecutionStepsCommand, } from "./commands/ListPipelineExecutionStepsCommand";
|
|
268
268
|
import { ListPipelineParametersForExecutionCommand, } from "./commands/ListPipelineParametersForExecutionCommand";
|
|
269
269
|
import { ListPipelinesCommand, } from "./commands/ListPipelinesCommand";
|
|
270
|
+
import { ListPipelineVersionsCommand, } from "./commands/ListPipelineVersionsCommand";
|
|
270
271
|
import { ListProcessingJobsCommand, } from "./commands/ListProcessingJobsCommand";
|
|
271
272
|
import { ListProjectsCommand, } from "./commands/ListProjectsCommand";
|
|
272
273
|
import { ListResourceCatalogsCommand, } from "./commands/ListResourceCatalogsCommand";
|
|
@@ -351,6 +352,7 @@ import { UpdateNotebookInstanceLifecycleConfigCommand, } from "./commands/Update
|
|
|
351
352
|
import { UpdatePartnerAppCommand, } from "./commands/UpdatePartnerAppCommand";
|
|
352
353
|
import { UpdatePipelineCommand, } from "./commands/UpdatePipelineCommand";
|
|
353
354
|
import { UpdatePipelineExecutionCommand, } from "./commands/UpdatePipelineExecutionCommand";
|
|
355
|
+
import { UpdatePipelineVersionCommand, } from "./commands/UpdatePipelineVersionCommand";
|
|
354
356
|
import { UpdateProjectCommand, } from "./commands/UpdateProjectCommand";
|
|
355
357
|
import { UpdateSpaceCommand } from "./commands/UpdateSpaceCommand";
|
|
356
358
|
import { UpdateTrainingJobCommand, } from "./commands/UpdateTrainingJobCommand";
|
|
@@ -629,6 +631,7 @@ const commands = {
|
|
|
629
631
|
ListPipelineExecutionStepsCommand,
|
|
630
632
|
ListPipelineParametersForExecutionCommand,
|
|
631
633
|
ListPipelinesCommand,
|
|
634
|
+
ListPipelineVersionsCommand,
|
|
632
635
|
ListProcessingJobsCommand,
|
|
633
636
|
ListProjectsCommand,
|
|
634
637
|
ListResourceCatalogsCommand,
|
|
@@ -713,6 +716,7 @@ const commands = {
|
|
|
713
716
|
UpdatePartnerAppCommand,
|
|
714
717
|
UpdatePipelineCommand,
|
|
715
718
|
UpdatePipelineExecutionCommand,
|
|
719
|
+
UpdatePipelineVersionCommand,
|
|
716
720
|
UpdateProjectCommand,
|
|
717
721
|
UpdateSpaceCommand,
|
|
718
722
|
UpdateTrainingJobCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListPipelineVersionsCommand, se_ListPipelineVersionsCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListPipelineVersionsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("SageMaker", "ListPipelineVersions", {})
|
|
17
|
+
.n("SageMakerClient", "ListPipelineVersionsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListPipelineVersionsCommand)
|
|
20
|
+
.de(de_ListPipelineVersionsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { SearchResponseFilterSensitiveLog } from "../models/
|
|
5
|
+
import { SearchResponseFilterSensitiveLog } from "../models/models_5";
|
|
6
6
|
import { de_SearchCommand, se_SearchCommand } from "../protocols/Aws_json1_1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class SearchCommand extends $Command
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdatePipelineVersionCommand, se_UpdatePipelineVersionCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdatePipelineVersionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("SageMaker", "UpdatePipelineVersion", {})
|
|
17
|
+
.n("SageMakerClient", "UpdatePipelineVersionCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdatePipelineVersionCommand)
|
|
20
|
+
.de(de_UpdatePipelineVersionCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|