@aws-sdk/client-sagemaker 3.1005.0 → 3.1007.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 +32 -0
- package/dist-cjs/schemas/schemas_0.js +92 -33
- package/dist-es/SageMaker.js +6 -0
- package/dist-es/commands/DescribeTrainingPlanExtensionHistoryCommand.js +16 -0
- package/dist-es/commands/ExtendTrainingPlanCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/pagination/DescribeTrainingPlanExtensionHistoryPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +65 -6
- package/dist-types/SageMaker.d.ts +21 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/DescribeTrainingPlanExtensionHistoryCommand.d.ts +94 -0
- package/dist-types/commands/ExtendTrainingPlanCommand.d.ts +91 -0
- package/dist-types/commands/ListPipelineVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +2 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -2
- package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +14 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_3.d.ts +116 -156
- package/dist-types/models/models_4.d.ts +218 -1
- package/dist-types/pagination/DescribeTrainingPlanExtensionHistoryPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/SageMaker.d.ts +47 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeTrainingPlanExtensionHistoryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExtendTrainingPlanCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPipelineVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_3.d.ts +28 -36
- package/dist-types/ts3.4/models/models_4.d.ts +50 -0
- package/dist-types/ts3.4/pagination/DescribeTrainingPlanExtensionHistoryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +3 -3
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeTrainingPlanExtensionHistory$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeTrainingPlanExtensionHistoryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("SageMaker", "DescribeTrainingPlanExtensionHistory", {})
|
|
13
|
+
.n("SageMakerClient", "DescribeTrainingPlanExtensionHistoryCommand")
|
|
14
|
+
.sc(DescribeTrainingPlanExtensionHistory$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ExtendTrainingPlan$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ExtendTrainingPlanCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("SageMaker", "ExtendTrainingPlan", {})
|
|
13
|
+
.n("SageMakerClient", "ExtendTrainingPlanCommand")
|
|
14
|
+
.sc(ExtendTrainingPlan$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -198,6 +198,7 @@ export * from "./DescribeStudioLifecycleConfigCommand";
|
|
|
198
198
|
export * from "./DescribeSubscribedWorkteamCommand";
|
|
199
199
|
export * from "./DescribeTrainingJobCommand";
|
|
200
200
|
export * from "./DescribeTrainingPlanCommand";
|
|
201
|
+
export * from "./DescribeTrainingPlanExtensionHistoryCommand";
|
|
201
202
|
export * from "./DescribeTransformJobCommand";
|
|
202
203
|
export * from "./DescribeTrialCommand";
|
|
203
204
|
export * from "./DescribeTrialComponentCommand";
|
|
@@ -208,6 +209,7 @@ export * from "./DetachClusterNodeVolumeCommand";
|
|
|
208
209
|
export * from "./DisableSagemakerServicecatalogPortfolioCommand";
|
|
209
210
|
export * from "./DisassociateTrialComponentCommand";
|
|
210
211
|
export * from "./EnableSagemakerServicecatalogPortfolioCommand";
|
|
212
|
+
export * from "./ExtendTrainingPlanCommand";
|
|
211
213
|
export * from "./GetDeviceFleetReportCommand";
|
|
212
214
|
export * from "./GetLineageGroupPolicyCommand";
|
|
213
215
|
export * from "./GetModelPackageGroupPolicyCommand";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { DescribeTrainingPlanExtensionHistoryCommand, } from "../commands/DescribeTrainingPlanExtensionHistoryCommand";
|
|
3
|
+
import { SageMakerClient } from "../SageMakerClient";
|
|
4
|
+
export const paginateDescribeTrainingPlanExtensionHistory = createPaginator(SageMakerClient, DescribeTrainingPlanExtensionHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./CreateHubContentPresignedUrlsPaginator";
|
|
3
|
+
export * from "./DescribeTrainingPlanExtensionHistoryPaginator";
|
|
3
4
|
export * from "./ListActionsPaginator";
|
|
4
5
|
export * from "./ListAlgorithmsPaginator";
|
|
5
6
|
export * from "./ListAliasesPaginator";
|
|
@@ -1184,6 +1184,9 @@ const _DTJe = "DescribeTrainingJob";
|
|
|
1184
1184
|
const _DTJes = "DescribeTransformJob";
|
|
1185
1185
|
const _DTO = "DeleteTagsOutput";
|
|
1186
1186
|
const _DTP = "DescribeTrainingPlan";
|
|
1187
|
+
const _DTPEH = "DescribeTrainingPlanExtensionHistory";
|
|
1188
|
+
const _DTPEHR = "DescribeTrainingPlanExtensionHistoryRequest";
|
|
1189
|
+
const _DTPEHRe = "DescribeTrainingPlanExtensionHistoryResponse";
|
|
1187
1190
|
const _DTPR = "DescribeTrainingPlanRequest";
|
|
1188
1191
|
const _DTPRe = "DescribeTrainingPlanResponse";
|
|
1189
1192
|
const _DTR = "DeleteTrialRequest";
|
|
@@ -1234,6 +1237,7 @@ const _EAMVU = "EnableAutoMinorVersionUpgrade";
|
|
|
1234
1237
|
const _EAv = "EvaluatorArn";
|
|
1235
1238
|
const _EAx = "ExperimentArn";
|
|
1236
1239
|
const _EAxp = "ExportArtifacts";
|
|
1240
|
+
const _EAxt = "ExtendedAt";
|
|
1237
1241
|
const _EC = "ErrorCode";
|
|
1238
1242
|
const _ECA = "EndpointConfigArn";
|
|
1239
1243
|
const _ECD = "EnvironmentConfigDetails";
|
|
@@ -1273,8 +1277,10 @@ const _EDSIS = "EdgeDeploymentSuccessInStage";
|
|
|
1273
1277
|
const _EDSM = "EdgeDeploymentStatusMessage";
|
|
1274
1278
|
const _EDSST = "EdgeDeploymentStageStartTime";
|
|
1275
1279
|
const _EDSd = "EdgeDeploymentStatus";
|
|
1280
|
+
const _EDn = "EndDate";
|
|
1276
1281
|
const _EE = "EfaEnis";
|
|
1277
1282
|
const _EEM = "EnableEnhancedMetrics";
|
|
1283
|
+
const _EET = "ExtensionEndTime";
|
|
1278
1284
|
const _EEn = "EnableExplanations";
|
|
1279
1285
|
const _EFA = "ExcludeFeaturesAttribute";
|
|
1280
1286
|
const _EFSFS = "EFSFileSystem";
|
|
@@ -1346,6 +1352,7 @@ const _ESSP = "EnableSagemakerServicecatalogPortfolio";
|
|
|
1346
1352
|
const _ESSPI = "EnableSagemakerServicecatalogPortfolioInput";
|
|
1347
1353
|
const _ESSPO = "EnableSagemakerServicecatalogPortfolioOutput";
|
|
1348
1354
|
const _ESSb = "EbsStorageSettings";
|
|
1355
|
+
const _EST = "ExtensionStartTime";
|
|
1349
1356
|
const _ESTC = "EnableSessionTagChaining";
|
|
1350
1357
|
const _ESU = "ExpectedS3Url";
|
|
1351
1358
|
const _ESm = "EmrSettings";
|
|
@@ -1360,6 +1367,9 @@ const _ETBn = "EndTimeBefore";
|
|
|
1360
1367
|
const _ETFN = "EventTimeFeatureName";
|
|
1361
1368
|
const _ETIPS = "EffectiveTrustedIdentityPropagationStatus";
|
|
1362
1369
|
const _ETO = "EndTimeOffset";
|
|
1370
|
+
const _ETP = "ExtendTrainingPlan";
|
|
1371
|
+
const _ETPR = "ExtendTrainingPlanRequest";
|
|
1372
|
+
const _ETPRx = "ExtendTrainingPlanResponse";
|
|
1363
1373
|
const _ETn = "EndTime";
|
|
1364
1374
|
const _ETr = "ErrorTopic";
|
|
1365
1375
|
const _ETv = "EventTime";
|
|
@@ -2560,6 +2570,7 @@ const _PSLi = "PipelineSummaryList";
|
|
|
2560
2570
|
const _PSO = "ProcessingS3Output";
|
|
2561
2571
|
const _PSP = "ProjectS3Path";
|
|
2562
2572
|
const _PST = "ProcessingStartTime";
|
|
2573
|
+
const _PSa = "PaymentStatus";
|
|
2563
2574
|
const _PSi = "PipelineSummaries";
|
|
2564
2575
|
const _PSip = "PipelineSummary";
|
|
2565
2576
|
const _PSl = "PlacementSpecifications";
|
|
@@ -2807,6 +2818,7 @@ const _SDo = "SourceDetail";
|
|
|
2807
2818
|
const _SDp = "SpaceDetails";
|
|
2808
2819
|
const _SDt = "StatusDetails";
|
|
2809
2820
|
const _SDta = "StageDescription";
|
|
2821
|
+
const _SDtar = "StartDate";
|
|
2810
2822
|
const _SDtd = "StdDev";
|
|
2811
2823
|
const _SDte = "StepDescription";
|
|
2812
2824
|
const _SDu = "SubDomain";
|
|
@@ -3154,6 +3166,11 @@ const _TPC = "ThreadsPerCore";
|
|
|
3154
3166
|
const _TPD = "TemplateProviderDetails";
|
|
3155
3167
|
const _TPDL = "TemplateProviderDetailList";
|
|
3156
3168
|
const _TPDe = "TemplateProviderDetail";
|
|
3169
|
+
const _TPE = "TrainingPlanExtensions";
|
|
3170
|
+
const _TPEO = "TrainingPlanExtensionOfferings";
|
|
3171
|
+
const _TPEOI = "TrainingPlanExtensionOfferingId";
|
|
3172
|
+
const _TPEOr = "TrainingPlanExtensionOffering";
|
|
3173
|
+
const _TPEr = "TrainingPlanExtension";
|
|
3157
3174
|
const _TPF = "TrainingPlanFilter";
|
|
3158
3175
|
const _TPFr = "TrainingPlanFilters";
|
|
3159
3176
|
const _TPI = "TrainingProgressInfo";
|
|
@@ -6209,6 +6226,16 @@ export var DescribeTrainingJobResponse$ = [3, n0, _DTJRes,
|
|
|
6209
6226
|
[_TJN, _TJA, _MAo, _TJS, _SSe, _SCt, _CT, _TJAu, _LJA, _AMLJAu, _FR, _HP, _ASl, _RAo, _IDC, _ODC, _RCe, _WPS, _VC, _TST, _TET, _LMT, _SST, _FMDL, _ENI, _EICTE, _EMST, _CCh, _TTIS, _BTIS, _BTC, _DHC, _ECxp, _DRC, _TBOC, _DRESe, _PCr, _PRC, _PRES, _PSro, _E, _RSe, _RDC, _ICC, _SJC, _MCl, _MPC, _MDl, _PIrog, _OMPA],
|
|
6210
6227
|
[0, 0, () => ModelArtifacts$, 0, 0, () => StoppingCondition$, 4, 0, 0, 0, 0, 128 | 0, () => AlgorithmSpecification$, 0, () => InputDataConfig, () => OutputDataConfig$, () => ResourceConfig$, () => WarmPoolStatus$, () => VpcConfig$, 4, 4, 4, () => SecondaryStatusTransitions, () => FinalMetricDataList, 2, 2, 2, () => CheckpointConfig$, 1, 1, 1, () => DebugHookConfig$, () => ExperimentConfig$, () => DebugRuleConfigurations, () => TensorBoardOutputConfig$, () => DebugRuleEvaluationStatuses, () => ProfilerConfig$, () => ProfilerRuleConfigurations, () => ProfilerRuleEvaluationStatuses, 0, 128 | 0, () => RetryStrategy$, () => RemoteDebugConfig$, () => InfraCheckConfig$, () => ServerlessJobConfig$, () => MlflowConfig$, () => ModelPackageConfig$, () => MlflowDetails$, () => TrainingProgressInfo$, 0], 7
|
|
6211
6228
|
];
|
|
6229
|
+
export var DescribeTrainingPlanExtensionHistoryRequest$ = [3, n0, _DTPEHR,
|
|
6230
|
+
0,
|
|
6231
|
+
[_TPA, _NTe, _MR],
|
|
6232
|
+
[0, 0, 1], 1
|
|
6233
|
+
];
|
|
6234
|
+
export var DescribeTrainingPlanExtensionHistoryResponse$ = [3, n0, _DTPEHRe,
|
|
6235
|
+
0,
|
|
6236
|
+
[_TPE, _NTe],
|
|
6237
|
+
[() => TrainingPlanExtensions, 0], 1
|
|
6238
|
+
];
|
|
6212
6239
|
export var DescribeTrainingPlanRequest$ = [3, n0, _DTPR,
|
|
6213
6240
|
0,
|
|
6214
6241
|
[_TPN],
|
|
@@ -6619,6 +6646,16 @@ export var ExplainerConfig$ = [3, n0, _ECx,
|
|
|
6619
6646
|
[_CEC],
|
|
6620
6647
|
[() => ClarifyExplainerConfig$]
|
|
6621
6648
|
];
|
|
6649
|
+
export var ExtendTrainingPlanRequest$ = [3, n0, _ETPR,
|
|
6650
|
+
0,
|
|
6651
|
+
[_TPEOI],
|
|
6652
|
+
[0], 1
|
|
6653
|
+
];
|
|
6654
|
+
export var ExtendTrainingPlanResponse$ = [3, n0, _ETPRx,
|
|
6655
|
+
0,
|
|
6656
|
+
[_TPE],
|
|
6657
|
+
[() => TrainingPlanExtensions], 1
|
|
6658
|
+
];
|
|
6622
6659
|
export var FailStepMetadata$ = [3, n0, _FSM,
|
|
6623
6660
|
0,
|
|
6624
6661
|
[_EMr],
|
|
@@ -9201,8 +9238,8 @@ export var RepositoryAuthConfig$ = [3, n0, _RAC,
|
|
|
9201
9238
|
];
|
|
9202
9239
|
export var ReservedCapacityOffering$ = [3, n0, _RCO,
|
|
9203
9240
|
0,
|
|
9204
|
-
[_IT, _ICns, _RCT, _UST, _USC, _AZ, _DH, _DM, _STt, _ETn],
|
|
9205
|
-
[0, 1, 0, 0, 1, 0, 1, 1, 4, 4], 2
|
|
9241
|
+
[_IT, _ICns, _RCT, _UST, _USC, _AZ, _DH, _DM, _STt, _ETn, _EST, _EET],
|
|
9242
|
+
[0, 1, 0, 0, 1, 0, 1, 1, 4, 4, 4, 4], 2
|
|
9206
9243
|
];
|
|
9207
9244
|
export var ReservedCapacitySummary$ = [3, n0, _RCSe,
|
|
9208
9245
|
0,
|
|
@@ -9376,13 +9413,13 @@ export var SearchResponse$ = [3, n0, _SRear,
|
|
|
9376
9413
|
];
|
|
9377
9414
|
export var SearchTrainingPlanOfferingsRequest$ = [3, n0, _STPOR,
|
|
9378
9415
|
0,
|
|
9379
|
-
[_IT, _ICns, _UST, _USC, _STAt, _ETBn, _DH, _TRa],
|
|
9380
|
-
[0, 1, 0, 1, 4, 4, 1, 64 | 0]
|
|
9416
|
+
[_IT, _ICns, _UST, _USC, _STAt, _ETBn, _DH, _TRa, _TPA],
|
|
9417
|
+
[0, 1, 0, 1, 4, 4, 1, 64 | 0, 0]
|
|
9381
9418
|
];
|
|
9382
9419
|
export var SearchTrainingPlanOfferingsResponse$ = [3, n0, _STPORe,
|
|
9383
9420
|
0,
|
|
9384
|
-
[_TPO],
|
|
9385
|
-
[() => TrainingPlanOfferings], 1
|
|
9421
|
+
[_TPO, _TPEO],
|
|
9422
|
+
[() => TrainingPlanOfferings, () => TrainingPlanExtensionOfferings], 1
|
|
9386
9423
|
];
|
|
9387
9424
|
export var SecondaryStatusTransition$ = [3, n0, _SSTe,
|
|
9388
9425
|
0,
|
|
@@ -9854,6 +9891,16 @@ export var TrainingJobSummary$ = [3, n0, _TJSrai,
|
|
|
9854
9891
|
[_TJN, _TJA, _CT, _TJS, _TET, _LMT, _SSe, _WPS, _TPA],
|
|
9855
9892
|
[0, 0, 4, 0, 4, 4, 0, () => WarmPoolStatus$, 0], 4
|
|
9856
9893
|
];
|
|
9894
|
+
export var TrainingPlanExtension$ = [3, n0, _TPEr,
|
|
9895
|
+
0,
|
|
9896
|
+
[_TPEOI, _EAxt, _SDtar, _EDn, _St, _PSa, _AZ, _AZI, _DH, _UF, _CCur],
|
|
9897
|
+
[0, 4, 4, 4, 0, 0, 0, 0, 1, 0, 0], 1
|
|
9898
|
+
];
|
|
9899
|
+
export var TrainingPlanExtensionOffering$ = [3, n0, _TPEOr,
|
|
9900
|
+
0,
|
|
9901
|
+
[_TPEOI, _AZ, _SDtar, _EDn, _DH, _UF, _CCur],
|
|
9902
|
+
[0, 0, 4, 4, 1, 0, 0], 1
|
|
9903
|
+
];
|
|
9857
9904
|
export var TrainingPlanFilter$ = [3, n0, _TPF,
|
|
9858
9905
|
0,
|
|
9859
9906
|
[_N, _Va],
|
|
@@ -11259,6 +11306,12 @@ var TrainingJobSummaries = [1, n0, _TJSra,
|
|
|
11259
11306
|
0, () => TrainingJobSummary$
|
|
11260
11307
|
];
|
|
11261
11308
|
var TrainingPlanArns = 64 | 0;
|
|
11309
|
+
var TrainingPlanExtensionOfferings = [1, n0, _TPEO,
|
|
11310
|
+
0, () => TrainingPlanExtensionOffering$
|
|
11311
|
+
];
|
|
11312
|
+
var TrainingPlanExtensions = [1, n0, _TPE,
|
|
11313
|
+
0, () => TrainingPlanExtension$
|
|
11314
|
+
];
|
|
11262
11315
|
var TrainingPlanFilters = [1, n0, _TPFr,
|
|
11263
11316
|
0, () => TrainingPlanFilter$
|
|
11264
11317
|
];
|
|
@@ -12019,6 +12072,9 @@ export var DescribeTrainingJob$ = [9, n0, _DTJe,
|
|
|
12019
12072
|
export var DescribeTrainingPlan$ = [9, n0, _DTP,
|
|
12020
12073
|
0, () => DescribeTrainingPlanRequest$, () => DescribeTrainingPlanResponse$
|
|
12021
12074
|
];
|
|
12075
|
+
export var DescribeTrainingPlanExtensionHistory$ = [9, n0, _DTPEH,
|
|
12076
|
+
0, () => DescribeTrainingPlanExtensionHistoryRequest$, () => DescribeTrainingPlanExtensionHistoryResponse$
|
|
12077
|
+
];
|
|
12022
12078
|
export var DescribeTransformJob$ = [9, n0, _DTJes,
|
|
12023
12079
|
0, () => DescribeTransformJobRequest$, () => DescribeTransformJobResponse$
|
|
12024
12080
|
];
|
|
@@ -12049,6 +12105,9 @@ export var DisassociateTrialComponent$ = [9, n0, _DTCi,
|
|
|
12049
12105
|
export var EnableSagemakerServicecatalogPortfolio$ = [9, n0, _ESSP,
|
|
12050
12106
|
0, () => EnableSagemakerServicecatalogPortfolioInput$, () => EnableSagemakerServicecatalogPortfolioOutput$
|
|
12051
12107
|
];
|
|
12108
|
+
export var ExtendTrainingPlan$ = [9, n0, _ETP,
|
|
12109
|
+
0, () => ExtendTrainingPlanRequest$, () => ExtendTrainingPlanResponse$
|
|
12110
|
+
];
|
|
12052
12111
|
export var GetDeviceFleetReport$ = [9, n0, _GDFR,
|
|
12053
12112
|
0, () => GetDeviceFleetReportRequest$, () => GetDeviceFleetReportResponse$
|
|
12054
12113
|
];
|
|
@@ -200,6 +200,7 @@ import { DescribeStudioLifecycleConfigCommandInput, DescribeStudioLifecycleConfi
|
|
|
200
200
|
import { DescribeSubscribedWorkteamCommandInput, DescribeSubscribedWorkteamCommandOutput } from "./commands/DescribeSubscribedWorkteamCommand";
|
|
201
201
|
import { DescribeTrainingJobCommandInput, DescribeTrainingJobCommandOutput } from "./commands/DescribeTrainingJobCommand";
|
|
202
202
|
import { DescribeTrainingPlanCommandInput, DescribeTrainingPlanCommandOutput } from "./commands/DescribeTrainingPlanCommand";
|
|
203
|
+
import { DescribeTrainingPlanExtensionHistoryCommandInput, DescribeTrainingPlanExtensionHistoryCommandOutput } from "./commands/DescribeTrainingPlanExtensionHistoryCommand";
|
|
203
204
|
import { DescribeTransformJobCommandInput, DescribeTransformJobCommandOutput } from "./commands/DescribeTransformJobCommand";
|
|
204
205
|
import { DescribeTrialCommandInput, DescribeTrialCommandOutput } from "./commands/DescribeTrialCommand";
|
|
205
206
|
import { DescribeTrialComponentCommandInput, DescribeTrialComponentCommandOutput } from "./commands/DescribeTrialComponentCommand";
|
|
@@ -210,6 +211,7 @@ import { DetachClusterNodeVolumeCommandInput, DetachClusterNodeVolumeCommandOutp
|
|
|
210
211
|
import { DisableSagemakerServicecatalogPortfolioCommandInput, DisableSagemakerServicecatalogPortfolioCommandOutput } from "./commands/DisableSagemakerServicecatalogPortfolioCommand";
|
|
211
212
|
import { DisassociateTrialComponentCommandInput, DisassociateTrialComponentCommandOutput } from "./commands/DisassociateTrialComponentCommand";
|
|
212
213
|
import { EnableSagemakerServicecatalogPortfolioCommandInput, EnableSagemakerServicecatalogPortfolioCommandOutput } from "./commands/EnableSagemakerServicecatalogPortfolioCommand";
|
|
214
|
+
import { ExtendTrainingPlanCommandInput, ExtendTrainingPlanCommandOutput } from "./commands/ExtendTrainingPlanCommand";
|
|
213
215
|
import { GetDeviceFleetReportCommandInput, GetDeviceFleetReportCommandOutput } from "./commands/GetDeviceFleetReportCommand";
|
|
214
216
|
import { GetLineageGroupPolicyCommandInput, GetLineageGroupPolicyCommandOutput } from "./commands/GetLineageGroupPolicyCommand";
|
|
215
217
|
import { GetModelPackageGroupPolicyCommandInput, GetModelPackageGroupPolicyCommandOutput } from "./commands/GetModelPackageGroupPolicyCommand";
|
|
@@ -1583,6 +1585,12 @@ export interface SageMaker {
|
|
|
1583
1585
|
describeTrainingPlan(args: DescribeTrainingPlanCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrainingPlanCommandOutput>;
|
|
1584
1586
|
describeTrainingPlan(args: DescribeTrainingPlanCommandInput, cb: (err: any, data?: DescribeTrainingPlanCommandOutput) => void): void;
|
|
1585
1587
|
describeTrainingPlan(args: DescribeTrainingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrainingPlanCommandOutput) => void): void;
|
|
1588
|
+
/**
|
|
1589
|
+
* @see {@link DescribeTrainingPlanExtensionHistoryCommand}
|
|
1590
|
+
*/
|
|
1591
|
+
describeTrainingPlanExtensionHistory(args: DescribeTrainingPlanExtensionHistoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrainingPlanExtensionHistoryCommandOutput>;
|
|
1592
|
+
describeTrainingPlanExtensionHistory(args: DescribeTrainingPlanExtensionHistoryCommandInput, cb: (err: any, data?: DescribeTrainingPlanExtensionHistoryCommandOutput) => void): void;
|
|
1593
|
+
describeTrainingPlanExtensionHistory(args: DescribeTrainingPlanExtensionHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrainingPlanExtensionHistoryCommandOutput) => void): void;
|
|
1586
1594
|
/**
|
|
1587
1595
|
* @see {@link DescribeTransformJobCommand}
|
|
1588
1596
|
*/
|
|
@@ -1645,6 +1653,12 @@ export interface SageMaker {
|
|
|
1645
1653
|
enableSagemakerServicecatalogPortfolio(args: EnableSagemakerServicecatalogPortfolioCommandInput, options?: __HttpHandlerOptions): Promise<EnableSagemakerServicecatalogPortfolioCommandOutput>;
|
|
1646
1654
|
enableSagemakerServicecatalogPortfolio(args: EnableSagemakerServicecatalogPortfolioCommandInput, cb: (err: any, data?: EnableSagemakerServicecatalogPortfolioCommandOutput) => void): void;
|
|
1647
1655
|
enableSagemakerServicecatalogPortfolio(args: EnableSagemakerServicecatalogPortfolioCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableSagemakerServicecatalogPortfolioCommandOutput) => void): void;
|
|
1656
|
+
/**
|
|
1657
|
+
* @see {@link ExtendTrainingPlanCommand}
|
|
1658
|
+
*/
|
|
1659
|
+
extendTrainingPlan(args: ExtendTrainingPlanCommandInput, options?: __HttpHandlerOptions): Promise<ExtendTrainingPlanCommandOutput>;
|
|
1660
|
+
extendTrainingPlan(args: ExtendTrainingPlanCommandInput, cb: (err: any, data?: ExtendTrainingPlanCommandOutput) => void): void;
|
|
1661
|
+
extendTrainingPlan(args: ExtendTrainingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExtendTrainingPlanCommandOutput) => void): void;
|
|
1648
1662
|
/**
|
|
1649
1663
|
* @see {@link GetDeviceFleetReportCommand}
|
|
1650
1664
|
*/
|
|
@@ -2735,6 +2749,13 @@ export interface SageMaker {
|
|
|
2735
2749
|
* @returns AsyncIterable of {@link CreateHubContentPresignedUrlsCommandOutput}.
|
|
2736
2750
|
*/
|
|
2737
2751
|
paginateCreateHubContentPresignedUrls(args: CreateHubContentPresignedUrlsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<CreateHubContentPresignedUrlsCommandOutput>;
|
|
2752
|
+
/**
|
|
2753
|
+
* @see {@link DescribeTrainingPlanExtensionHistoryCommand}
|
|
2754
|
+
* @param args - command input.
|
|
2755
|
+
* @param paginationConfig - optional pagination config.
|
|
2756
|
+
* @returns AsyncIterable of {@link DescribeTrainingPlanExtensionHistoryCommandOutput}.
|
|
2757
|
+
*/
|
|
2758
|
+
paginateDescribeTrainingPlanExtensionHistory(args: DescribeTrainingPlanExtensionHistoryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTrainingPlanExtensionHistoryCommandOutput>;
|
|
2738
2759
|
/**
|
|
2739
2760
|
* @see {@link ListActionsCommand}
|
|
2740
2761
|
* @param args - command input.
|
|
@@ -207,6 +207,7 @@ import { DescribeStudioLifecycleConfigCommandInput, DescribeStudioLifecycleConfi
|
|
|
207
207
|
import { DescribeSubscribedWorkteamCommandInput, DescribeSubscribedWorkteamCommandOutput } from "./commands/DescribeSubscribedWorkteamCommand";
|
|
208
208
|
import { DescribeTrainingJobCommandInput, DescribeTrainingJobCommandOutput } from "./commands/DescribeTrainingJobCommand";
|
|
209
209
|
import { DescribeTrainingPlanCommandInput, DescribeTrainingPlanCommandOutput } from "./commands/DescribeTrainingPlanCommand";
|
|
210
|
+
import { DescribeTrainingPlanExtensionHistoryCommandInput, DescribeTrainingPlanExtensionHistoryCommandOutput } from "./commands/DescribeTrainingPlanExtensionHistoryCommand";
|
|
210
211
|
import { DescribeTransformJobCommandInput, DescribeTransformJobCommandOutput } from "./commands/DescribeTransformJobCommand";
|
|
211
212
|
import { DescribeTrialCommandInput, DescribeTrialCommandOutput } from "./commands/DescribeTrialCommand";
|
|
212
213
|
import { DescribeTrialComponentCommandInput, DescribeTrialComponentCommandOutput } from "./commands/DescribeTrialComponentCommand";
|
|
@@ -217,6 +218,7 @@ import { DetachClusterNodeVolumeCommandInput, DetachClusterNodeVolumeCommandOutp
|
|
|
217
218
|
import { DisableSagemakerServicecatalogPortfolioCommandInput, DisableSagemakerServicecatalogPortfolioCommandOutput } from "./commands/DisableSagemakerServicecatalogPortfolioCommand";
|
|
218
219
|
import { DisassociateTrialComponentCommandInput, DisassociateTrialComponentCommandOutput } from "./commands/DisassociateTrialComponentCommand";
|
|
219
220
|
import { EnableSagemakerServicecatalogPortfolioCommandInput, EnableSagemakerServicecatalogPortfolioCommandOutput } from "./commands/EnableSagemakerServicecatalogPortfolioCommand";
|
|
221
|
+
import { ExtendTrainingPlanCommandInput, ExtendTrainingPlanCommandOutput } from "./commands/ExtendTrainingPlanCommand";
|
|
220
222
|
import { GetDeviceFleetReportCommandInput, GetDeviceFleetReportCommandOutput } from "./commands/GetDeviceFleetReportCommand";
|
|
221
223
|
import { GetLineageGroupPolicyCommandInput, GetLineageGroupPolicyCommandOutput } from "./commands/GetLineageGroupPolicyCommand";
|
|
222
224
|
import { GetModelPackageGroupPolicyCommandInput, GetModelPackageGroupPolicyCommandOutput } from "./commands/GetModelPackageGroupPolicyCommand";
|
|
@@ -392,11 +394,11 @@ export { __Client };
|
|
|
392
394
|
/**
|
|
393
395
|
* @public
|
|
394
396
|
*/
|
|
395
|
-
export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | AttachClusterNodeVolumeCommandInput | BatchAddClusterNodesCommandInput | BatchDeleteClusterNodesCommandInput | BatchDescribeModelPackageCommandInput | BatchRebootClusterNodesCommandInput | BatchReplaceClusterNodesCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateClusterSchedulerConfigCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateComputeQuotaCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHubContentPresignedUrlsCommandInput | CreateHubContentReferenceCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateMlflowAppCommandInput | CreateMlflowTrackingServerCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreateOptimizationJobCommandInput | CreatePartnerAppCommandInput | CreatePartnerAppPresignedUrlCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedMlflowAppUrlCommandInput | CreatePresignedMlflowTrackingServerUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTrainingPlanCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteClusterSchedulerConfigCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteComputeQuotaCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHubContentReferenceCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteMlflowAppCommandInput | DeleteMlflowTrackingServerCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeleteOptimizationJobCommandInput | DeletePartnerAppCommandInput | DeletePipelineCommandInput | DeleteProcessingJobCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrainingJobCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterEventCommandInput | DescribeClusterNodeCommandInput | DescribeClusterSchedulerConfigCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeComputeQuotaCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeMlflowAppCommandInput | DescribeMlflowTrackingServerCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribeOptimizationJobCommandInput | DescribePartnerAppCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeReservedCapacityCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTrainingPlanCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DetachClusterNodeVolumeCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterEventsCommandInput | ListClusterNodesCommandInput | ListClusterSchedulerConfigsCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListComputeQuotasCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHubContentVersionsCommandInput | ListHubContentsCommandInput | ListHubsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceComponentsCommandInput | ListInferenceExperimentsCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListMlflowAppsCommandInput | ListMlflowTrackingServersCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListOptimizationJobsCommandInput | ListPartnerAppsCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelineVersionsCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTrainingPlansCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUltraServersByReservedCapacityCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SearchTrainingPlanOfferingsCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMlflowTrackingServerCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StartSessionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMlflowTrackingServerCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopOptimizationJobCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSchedulerConfigCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateComputeQuotaCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateHubContentCommandInput | UpdateHubContentReferenceCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateMlflowAppCommandInput | UpdateMlflowTrackingServerCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePartnerAppCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdatePipelineVersionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
397
|
+
export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | AttachClusterNodeVolumeCommandInput | BatchAddClusterNodesCommandInput | BatchDeleteClusterNodesCommandInput | BatchDescribeModelPackageCommandInput | BatchRebootClusterNodesCommandInput | BatchReplaceClusterNodesCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateClusterSchedulerConfigCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateComputeQuotaCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHubContentPresignedUrlsCommandInput | CreateHubContentReferenceCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateMlflowAppCommandInput | CreateMlflowTrackingServerCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreateOptimizationJobCommandInput | CreatePartnerAppCommandInput | CreatePartnerAppPresignedUrlCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedMlflowAppUrlCommandInput | CreatePresignedMlflowTrackingServerUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTrainingPlanCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteClusterSchedulerConfigCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteComputeQuotaCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHubContentReferenceCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteMlflowAppCommandInput | DeleteMlflowTrackingServerCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeleteOptimizationJobCommandInput | DeletePartnerAppCommandInput | DeletePipelineCommandInput | DeleteProcessingJobCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrainingJobCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterEventCommandInput | DescribeClusterNodeCommandInput | DescribeClusterSchedulerConfigCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeComputeQuotaCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeMlflowAppCommandInput | DescribeMlflowTrackingServerCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribeOptimizationJobCommandInput | DescribePartnerAppCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeReservedCapacityCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTrainingPlanCommandInput | DescribeTrainingPlanExtensionHistoryCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DetachClusterNodeVolumeCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | ExtendTrainingPlanCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterEventsCommandInput | ListClusterNodesCommandInput | ListClusterSchedulerConfigsCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListComputeQuotasCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHubContentVersionsCommandInput | ListHubContentsCommandInput | ListHubsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceComponentsCommandInput | ListInferenceExperimentsCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListMlflowAppsCommandInput | ListMlflowTrackingServersCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListOptimizationJobsCommandInput | ListPartnerAppsCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelineVersionsCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTrainingPlansCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUltraServersByReservedCapacityCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SearchTrainingPlanOfferingsCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMlflowTrackingServerCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StartSessionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMlflowTrackingServerCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopOptimizationJobCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSchedulerConfigCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateComputeQuotaCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateHubContentCommandInput | UpdateHubContentReferenceCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateMlflowAppCommandInput | UpdateMlflowTrackingServerCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePartnerAppCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdatePipelineVersionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
396
398
|
/**
|
|
397
399
|
* @public
|
|
398
400
|
*/
|
|
399
|
-
export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | AttachClusterNodeVolumeCommandOutput | BatchAddClusterNodesCommandOutput | BatchDeleteClusterNodesCommandOutput | BatchDescribeModelPackageCommandOutput | BatchRebootClusterNodesCommandOutput | BatchReplaceClusterNodesCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateClusterSchedulerConfigCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateComputeQuotaCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHubContentPresignedUrlsCommandOutput | CreateHubContentReferenceCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateMlflowAppCommandOutput | CreateMlflowTrackingServerCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreateOptimizationJobCommandOutput | CreatePartnerAppCommandOutput | CreatePartnerAppPresignedUrlCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedMlflowAppUrlCommandOutput | CreatePresignedMlflowTrackingServerUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTrainingPlanCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteClusterSchedulerConfigCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteComputeQuotaCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHubContentReferenceCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteMlflowAppCommandOutput | DeleteMlflowTrackingServerCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeleteOptimizationJobCommandOutput | DeletePartnerAppCommandOutput | DeletePipelineCommandOutput | DeleteProcessingJobCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrainingJobCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterEventCommandOutput | DescribeClusterNodeCommandOutput | DescribeClusterSchedulerConfigCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeComputeQuotaCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeMlflowAppCommandOutput | DescribeMlflowTrackingServerCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribeOptimizationJobCommandOutput | DescribePartnerAppCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeReservedCapacityCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTrainingPlanCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DetachClusterNodeVolumeCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterEventsCommandOutput | ListClusterNodesCommandOutput | ListClusterSchedulerConfigsCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListComputeQuotasCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHubContentVersionsCommandOutput | ListHubContentsCommandOutput | ListHubsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceComponentsCommandOutput | ListInferenceExperimentsCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListMlflowAppsCommandOutput | ListMlflowTrackingServersCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListOptimizationJobsCommandOutput | ListPartnerAppsCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelineVersionsCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTrainingPlansCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUltraServersByReservedCapacityCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SearchTrainingPlanOfferingsCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMlflowTrackingServerCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StartSessionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMlflowTrackingServerCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopOptimizationJobCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSchedulerConfigCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateComputeQuotaCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateHubContentCommandOutput | UpdateHubContentReferenceCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateMlflowAppCommandOutput | UpdateMlflowTrackingServerCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePartnerAppCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdatePipelineVersionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
401
|
+
export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | AttachClusterNodeVolumeCommandOutput | BatchAddClusterNodesCommandOutput | BatchDeleteClusterNodesCommandOutput | BatchDescribeModelPackageCommandOutput | BatchRebootClusterNodesCommandOutput | BatchReplaceClusterNodesCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateClusterSchedulerConfigCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateComputeQuotaCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHubContentPresignedUrlsCommandOutput | CreateHubContentReferenceCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateMlflowAppCommandOutput | CreateMlflowTrackingServerCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreateOptimizationJobCommandOutput | CreatePartnerAppCommandOutput | CreatePartnerAppPresignedUrlCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedMlflowAppUrlCommandOutput | CreatePresignedMlflowTrackingServerUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTrainingPlanCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteClusterSchedulerConfigCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteComputeQuotaCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHubContentReferenceCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteMlflowAppCommandOutput | DeleteMlflowTrackingServerCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeleteOptimizationJobCommandOutput | DeletePartnerAppCommandOutput | DeletePipelineCommandOutput | DeleteProcessingJobCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrainingJobCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterEventCommandOutput | DescribeClusterNodeCommandOutput | DescribeClusterSchedulerConfigCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeComputeQuotaCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeMlflowAppCommandOutput | DescribeMlflowTrackingServerCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribeOptimizationJobCommandOutput | DescribePartnerAppCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeReservedCapacityCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTrainingPlanCommandOutput | DescribeTrainingPlanExtensionHistoryCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DetachClusterNodeVolumeCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | ExtendTrainingPlanCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterEventsCommandOutput | ListClusterNodesCommandOutput | ListClusterSchedulerConfigsCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListComputeQuotasCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHubContentVersionsCommandOutput | ListHubContentsCommandOutput | ListHubsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceComponentsCommandOutput | ListInferenceExperimentsCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListMlflowAppsCommandOutput | ListMlflowTrackingServersCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListOptimizationJobsCommandOutput | ListPartnerAppsCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelineVersionsCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTrainingPlansCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUltraServersByReservedCapacityCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SearchTrainingPlanOfferingsCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMlflowTrackingServerCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StartSessionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMlflowTrackingServerCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopOptimizationJobCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSchedulerConfigCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateComputeQuotaCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateHubContentCommandOutput | UpdateHubContentReferenceCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateMlflowAppCommandOutput | UpdateMlflowTrackingServerCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePartnerAppCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdatePipelineVersionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
400
402
|
/**
|
|
401
403
|
* @public
|
|
402
404
|
*/
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DescribeTrainingPlanExtensionHistoryRequest, DescribeTrainingPlanExtensionHistoryResponse } from "../models/models_3";
|
|
4
|
+
import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeTrainingPlanExtensionHistoryCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeTrainingPlanExtensionHistoryCommandInput extends DescribeTrainingPlanExtensionHistoryRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeTrainingPlanExtensionHistoryCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeTrainingPlanExtensionHistoryCommandOutput extends DescribeTrainingPlanExtensionHistoryResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeTrainingPlanExtensionHistoryCommand_base: {
|
|
25
|
+
new (input: DescribeTrainingPlanExtensionHistoryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTrainingPlanExtensionHistoryCommandInput, DescribeTrainingPlanExtensionHistoryCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DescribeTrainingPlanExtensionHistoryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTrainingPlanExtensionHistoryCommandInput, DescribeTrainingPlanExtensionHistoryCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieves the extension history for a specified training plan. The response includes details about each extension, such as the offering ID, start and end dates, status, payment status, and cost information.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SageMakerClient, DescribeTrainingPlanExtensionHistoryCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
35
|
+
* // const { SageMakerClient, DescribeTrainingPlanExtensionHistoryCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
36
|
+
* // import type { SageMakerClientConfig } from "@aws-sdk/client-sagemaker";
|
|
37
|
+
* const config = {}; // type is SageMakerClientConfig
|
|
38
|
+
* const client = new SageMakerClient(config);
|
|
39
|
+
* const input = { // DescribeTrainingPlanExtensionHistoryRequest
|
|
40
|
+
* TrainingPlanArn: "STRING_VALUE", // required
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* MaxResults: Number("int"),
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DescribeTrainingPlanExtensionHistoryCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // DescribeTrainingPlanExtensionHistoryResponse
|
|
47
|
+
* // TrainingPlanExtensions: [ // TrainingPlanExtensions // required
|
|
48
|
+
* // { // TrainingPlanExtension
|
|
49
|
+
* // TrainingPlanExtensionOfferingId: "STRING_VALUE", // required
|
|
50
|
+
* // ExtendedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // StartDate: new Date("TIMESTAMP"),
|
|
52
|
+
* // EndDate: new Date("TIMESTAMP"),
|
|
53
|
+
* // Status: "STRING_VALUE",
|
|
54
|
+
* // PaymentStatus: "STRING_VALUE",
|
|
55
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
56
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
57
|
+
* // DurationHours: Number("int"),
|
|
58
|
+
* // UpfrontFee: "STRING_VALUE",
|
|
59
|
+
* // CurrencyCode: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param DescribeTrainingPlanExtensionHistoryCommandInput - {@link DescribeTrainingPlanExtensionHistoryCommandInput}
|
|
68
|
+
* @returns {@link DescribeTrainingPlanExtensionHistoryCommandOutput}
|
|
69
|
+
* @see {@link DescribeTrainingPlanExtensionHistoryCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link DescribeTrainingPlanExtensionHistoryCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
74
|
+
* <p>Resource being access is not found.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link SageMakerServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class DescribeTrainingPlanExtensionHistoryCommand extends DescribeTrainingPlanExtensionHistoryCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: DescribeTrainingPlanExtensionHistoryRequest;
|
|
87
|
+
output: DescribeTrainingPlanExtensionHistoryResponse;
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: DescribeTrainingPlanExtensionHistoryCommandInput;
|
|
91
|
+
output: DescribeTrainingPlanExtensionHistoryCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|