@aws-sdk/client-sagemaker 3.863.0 → 3.866.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 +582 -392
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/DescribeReservedCapacityCommand.js +22 -0
- package/dist-es/commands/ListUltraServersByReservedCapacityCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +1 -13
- package/dist-es/models/models_1.js +13 -0
- package/dist-es/models/models_3.js +22 -33
- package/dist-es/models/models_4.js +21 -14
- package/dist-es/models/models_5.js +12 -1
- package/dist-es/pagination/ListUltraServersByReservedCapacityPaginator.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/AttachClusterNodeVolumeCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +12 -3
- package/dist-types/commands/CreateDomainCommand.d.ts +3 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +26 -8
- package/dist-types/commands/CreateModelBiasJobDefinitionCommand.d.ts +1 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +11 -2
- package/dist-types/commands/CreateTrainingPlanCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +12 -3
- package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +3 -0
- package/dist-types/commands/DescribeCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContextCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDomainCommand.d.ts +3 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +26 -8
- package/dist-types/commands/DescribeReservedCapacityCommand.d.ts +93 -0
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +11 -2
- package/dist-types/commands/DescribeTrainingPlanCommand.d.ts +7 -1
- package/dist-types/commands/DetachClusterNodeVolumeCommand.d.ts +1 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +3 -0
- package/dist-types/commands/ListTrainingPlansCommand.d.ts +5 -1
- package/dist-types/commands/ListUltraServersByReservedCapacityCommand.d.ts +92 -0
- package/dist-types/commands/ListWorkforcesCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +26 -8
- package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +7 -2
- package/dist-types/commands/UpdateDomainCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +71 -87
- package/dist-types/models/models_1.d.ts +94 -106
- package/dist-types/models/models_2.d.ts +115 -202
- package/dist-types/models/models_3.d.ts +463 -409
- package/dist-types/models/models_4.d.ts +414 -683
- package/dist-types/models/models_5.d.ts +718 -5
- package/dist-types/pagination/ListUltraServersByReservedCapacityPaginator.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 +40 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateModelBiasJobDefinitionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeComputeQuotaCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeContextCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeReservedCapacityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListUltraServersByReservedCapacityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -25
- package/dist-types/ts3.4/models/models_1.d.ts +31 -25
- package/dist-types/ts3.4/models/models_2.d.ts +28 -53
- package/dist-types/ts3.4/models/models_3.d.ts +119 -104
- package/dist-types/ts3.4/models/models_4.d.ts +123 -190
- package/dist-types/ts3.4/models/models_5.d.ts +187 -5
- package/dist-types/ts3.4/pagination/ListUltraServersByReservedCapacityPaginator.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 +5 -5
package/dist-es/SageMaker.js
CHANGED
|
@@ -185,6 +185,7 @@ import { DescribePipelineDefinitionForExecutionCommand, } from "./commands/Descr
|
|
|
185
185
|
import { DescribePipelineExecutionCommand, } from "./commands/DescribePipelineExecutionCommand";
|
|
186
186
|
import { DescribeProcessingJobCommand, } from "./commands/DescribeProcessingJobCommand";
|
|
187
187
|
import { DescribeProjectCommand, } from "./commands/DescribeProjectCommand";
|
|
188
|
+
import { DescribeReservedCapacityCommand, } from "./commands/DescribeReservedCapacityCommand";
|
|
188
189
|
import { DescribeSpaceCommand, } from "./commands/DescribeSpaceCommand";
|
|
189
190
|
import { DescribeStudioLifecycleConfigCommand, } from "./commands/DescribeStudioLifecycleConfigCommand";
|
|
190
191
|
import { DescribeSubscribedWorkteamCommand, } from "./commands/DescribeSubscribedWorkteamCommand";
|
|
@@ -287,6 +288,7 @@ import { ListTrainingPlansCommand, } from "./commands/ListTrainingPlansCommand";
|
|
|
287
288
|
import { ListTransformJobsCommand, } from "./commands/ListTransformJobsCommand";
|
|
288
289
|
import { ListTrialComponentsCommand, } from "./commands/ListTrialComponentsCommand";
|
|
289
290
|
import { ListTrialsCommand } from "./commands/ListTrialsCommand";
|
|
291
|
+
import { ListUltraServersByReservedCapacityCommand, } from "./commands/ListUltraServersByReservedCapacityCommand";
|
|
290
292
|
import { ListUserProfilesCommand, } from "./commands/ListUserProfilesCommand";
|
|
291
293
|
import { ListWorkforcesCommand, } from "./commands/ListWorkforcesCommand";
|
|
292
294
|
import { ListWorkteamsCommand, } from "./commands/ListWorkteamsCommand";
|
|
@@ -554,6 +556,7 @@ const commands = {
|
|
|
554
556
|
DescribePipelineExecutionCommand,
|
|
555
557
|
DescribeProcessingJobCommand,
|
|
556
558
|
DescribeProjectCommand,
|
|
559
|
+
DescribeReservedCapacityCommand,
|
|
557
560
|
DescribeSpaceCommand,
|
|
558
561
|
DescribeStudioLifecycleConfigCommand,
|
|
559
562
|
DescribeSubscribedWorkteamCommand,
|
|
@@ -656,6 +659,7 @@ const commands = {
|
|
|
656
659
|
ListTransformJobsCommand,
|
|
657
660
|
ListTrialComponentsCommand,
|
|
658
661
|
ListTrialsCommand,
|
|
662
|
+
ListUltraServersByReservedCapacityCommand,
|
|
659
663
|
ListUserProfilesCommand,
|
|
660
664
|
ListWorkforcesCommand,
|
|
661
665
|
ListWorkteamsCommand,
|
|
@@ -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_DescribeReservedCapacityCommand, se_DescribeReservedCapacityCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeReservedCapacityCommand 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", "DescribeReservedCapacity", {})
|
|
17
|
+
.n("SageMakerClient", "DescribeReservedCapacityCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DescribeReservedCapacityCommand)
|
|
20
|
+
.de(de_DescribeReservedCapacityCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -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_ListUltraServersByReservedCapacityCommand, se_ListUltraServersByReservedCapacityCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListUltraServersByReservedCapacityCommand 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", "ListUltraServersByReservedCapacity", {})
|
|
17
|
+
.n("SageMakerClient", "ListUltraServersByReservedCapacityCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListUltraServersByReservedCapacityCommand)
|
|
20
|
+
.de(de_ListUltraServersByReservedCapacityCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -184,6 +184,7 @@ export * from "./DescribePipelineDefinitionForExecutionCommand";
|
|
|
184
184
|
export * from "./DescribePipelineExecutionCommand";
|
|
185
185
|
export * from "./DescribeProcessingJobCommand";
|
|
186
186
|
export * from "./DescribeProjectCommand";
|
|
187
|
+
export * from "./DescribeReservedCapacityCommand";
|
|
187
188
|
export * from "./DescribeSpaceCommand";
|
|
188
189
|
export * from "./DescribeStudioLifecycleConfigCommand";
|
|
189
190
|
export * from "./DescribeSubscribedWorkteamCommand";
|
|
@@ -286,6 +287,7 @@ export * from "./ListTrainingPlansCommand";
|
|
|
286
287
|
export * from "./ListTransformJobsCommand";
|
|
287
288
|
export * from "./ListTrialComponentsCommand";
|
|
288
289
|
export * from "./ListTrialsCommand";
|
|
290
|
+
export * from "./ListUltraServersByReservedCapacityCommand";
|
|
289
291
|
export * from "./ListUserProfilesCommand";
|
|
290
292
|
export * from "./ListWorkforcesCommand";
|
|
291
293
|
export * from "./ListWorkteamsCommand";
|
|
@@ -591,6 +591,7 @@ export const TrainingInstanceType = {
|
|
|
591
591
|
ML_P5EN_48XLARGE: "ml.p5en.48xlarge",
|
|
592
592
|
ML_P5E_48XLARGE: "ml.p5e.48xlarge",
|
|
593
593
|
ML_P5_48XLARGE: "ml.p5.48xlarge",
|
|
594
|
+
ML_P6E_GB200_36XLARGE: "ml.p6e-gb200.36xlarge",
|
|
594
595
|
ML_P6_B200_48XLARGE: "ml.p6-b200.48xlarge",
|
|
595
596
|
ML_R5D_12XLARGE: "ml.r5d.12xlarge",
|
|
596
597
|
ML_R5D_16XLARGE: "ml.r5d.16xlarge",
|
|
@@ -1411,16 +1412,3 @@ export const SchedulerResourceStatus = {
|
|
|
1411
1412
|
UPDATE_ROLLBACK_FAILED: "UpdateRollbackFailed",
|
|
1412
1413
|
UPDATING: "Updating",
|
|
1413
1414
|
};
|
|
1414
|
-
export const ClusterSortBy = {
|
|
1415
|
-
CREATION_TIME: "CREATION_TIME",
|
|
1416
|
-
NAME: "NAME",
|
|
1417
|
-
};
|
|
1418
|
-
export const ClusterStatus = {
|
|
1419
|
-
CREATING: "Creating",
|
|
1420
|
-
DELETING: "Deleting",
|
|
1421
|
-
FAILED: "Failed",
|
|
1422
|
-
INSERVICE: "InService",
|
|
1423
|
-
ROLLINGBACK: "RollingBack",
|
|
1424
|
-
SYSTEMUPDATING: "SystemUpdating",
|
|
1425
|
-
UPDATING: "Updating",
|
|
1426
|
-
};
|
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
2
|
+
export const ClusterSortBy = {
|
|
3
|
+
CREATION_TIME: "CREATION_TIME",
|
|
4
|
+
NAME: "NAME",
|
|
5
|
+
};
|
|
6
|
+
export const ClusterStatus = {
|
|
7
|
+
CREATING: "Creating",
|
|
8
|
+
DELETING: "Deleting",
|
|
9
|
+
FAILED: "Failed",
|
|
10
|
+
INSERVICE: "InService",
|
|
11
|
+
ROLLINGBACK: "RollingBack",
|
|
12
|
+
SYSTEMUPDATING: "SystemUpdating",
|
|
13
|
+
UPDATING: "Updating",
|
|
14
|
+
};
|
|
2
15
|
export const CodeRepositorySortBy = {
|
|
3
16
|
CREATION_TIME: "CreationTime",
|
|
4
17
|
LAST_MODIFIED_TIME: "LastModifiedTime",
|
|
@@ -291,6 +291,28 @@ export const ProjectStatus = {
|
|
|
291
291
|
UPDATE_FAILED: "UpdateFailed",
|
|
292
292
|
UPDATE_IN_PROGRESS: "UpdateInProgress",
|
|
293
293
|
};
|
|
294
|
+
export const ReservedCapacityInstanceType = {
|
|
295
|
+
ML_P4DE_24XLARGE: "ml.p4de.24xlarge",
|
|
296
|
+
ML_P4D_24XLARGE: "ml.p4d.24xlarge",
|
|
297
|
+
ML_P5EN_48XLARGE: "ml.p5en.48xlarge",
|
|
298
|
+
ML_P5E_48XLARGE: "ml.p5e.48xlarge",
|
|
299
|
+
ML_P5_48XLARGE: "ml.p5.48xlarge",
|
|
300
|
+
ML_P6E_GB200_36XLARGE: "ml.p6e-gb200.36xlarge",
|
|
301
|
+
ML_P6_B200_48XLARGE: "ml.p6-b200.48xlarge",
|
|
302
|
+
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
303
|
+
ML_TRN2_48XLARGE: "ml.trn2.48xlarge",
|
|
304
|
+
};
|
|
305
|
+
export const ReservedCapacityType = {
|
|
306
|
+
INSTANCE: "Instance",
|
|
307
|
+
ULTRASERVER: "UltraServer",
|
|
308
|
+
};
|
|
309
|
+
export const ReservedCapacityStatus = {
|
|
310
|
+
ACTIVE: "Active",
|
|
311
|
+
EXPIRED: "Expired",
|
|
312
|
+
FAILED: "Failed",
|
|
313
|
+
PENDING: "Pending",
|
|
314
|
+
SCHEDULED: "Scheduled",
|
|
315
|
+
};
|
|
294
316
|
export const SpaceStatus = {
|
|
295
317
|
Delete_Failed: "Delete_Failed",
|
|
296
318
|
Deleting: "Deleting",
|
|
@@ -329,23 +351,6 @@ export const WarmPoolResourceStatus = {
|
|
|
329
351
|
REUSED: "Reused",
|
|
330
352
|
TERMINATED: "Terminated",
|
|
331
353
|
};
|
|
332
|
-
export const ReservedCapacityInstanceType = {
|
|
333
|
-
ML_P4DE_24XLARGE: "ml.p4de.24xlarge",
|
|
334
|
-
ML_P4D_24XLARGE: "ml.p4d.24xlarge",
|
|
335
|
-
ML_P5EN_48XLARGE: "ml.p5en.48xlarge",
|
|
336
|
-
ML_P5E_48XLARGE: "ml.p5e.48xlarge",
|
|
337
|
-
ML_P5_48XLARGE: "ml.p5.48xlarge",
|
|
338
|
-
ML_P6_B200_48XLARGE: "ml.p6-b200.48xlarge",
|
|
339
|
-
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
340
|
-
ML_TRN2_48XLARGE: "ml.trn2.48xlarge",
|
|
341
|
-
};
|
|
342
|
-
export const ReservedCapacityStatus = {
|
|
343
|
-
ACTIVE: "Active",
|
|
344
|
-
EXPIRED: "Expired",
|
|
345
|
-
FAILED: "Failed",
|
|
346
|
-
PENDING: "Pending",
|
|
347
|
-
SCHEDULED: "Scheduled",
|
|
348
|
-
};
|
|
349
354
|
export const TrainingPlanStatus = {
|
|
350
355
|
ACTIVE: "Active",
|
|
351
356
|
EXPIRED: "Expired",
|
|
@@ -474,22 +479,6 @@ export const HubContentSortBy = {
|
|
|
474
479
|
HUB_CONTENT_NAME: "HubContentName",
|
|
475
480
|
HUB_CONTENT_STATUS: "HubContentStatus",
|
|
476
481
|
};
|
|
477
|
-
export const HubSortBy = {
|
|
478
|
-
ACCOUNT_ID_OWNER: "AccountIdOwner",
|
|
479
|
-
CREATION_TIME: "CreationTime",
|
|
480
|
-
HUB_NAME: "HubName",
|
|
481
|
-
HUB_STATUS: "HubStatus",
|
|
482
|
-
};
|
|
483
|
-
export const HyperParameterTuningJobSortByOptions = {
|
|
484
|
-
CreationTime: "CreationTime",
|
|
485
|
-
Name: "Name",
|
|
486
|
-
Status: "Status",
|
|
487
|
-
};
|
|
488
|
-
export const ImageSortBy = {
|
|
489
|
-
CREATION_TIME: "CREATION_TIME",
|
|
490
|
-
IMAGE_NAME: "IMAGE_NAME",
|
|
491
|
-
LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME",
|
|
492
|
-
};
|
|
493
482
|
export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
|
|
494
483
|
...obj,
|
|
495
484
|
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export const HubSortBy = {
|
|
2
|
+
ACCOUNT_ID_OWNER: "AccountIdOwner",
|
|
3
|
+
CREATION_TIME: "CreationTime",
|
|
4
|
+
HUB_NAME: "HubName",
|
|
5
|
+
HUB_STATUS: "HubStatus",
|
|
6
|
+
};
|
|
7
|
+
export const HyperParameterTuningJobSortByOptions = {
|
|
8
|
+
CreationTime: "CreationTime",
|
|
9
|
+
Name: "Name",
|
|
10
|
+
Status: "Status",
|
|
11
|
+
};
|
|
12
|
+
export const ImageSortBy = {
|
|
13
|
+
CREATION_TIME: "CREATION_TIME",
|
|
14
|
+
IMAGE_NAME: "IMAGE_NAME",
|
|
15
|
+
LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME",
|
|
16
|
+
};
|
|
3
17
|
export const ImageSortOrder = {
|
|
4
18
|
ASCENDING: "ASCENDING",
|
|
5
19
|
DESCENDING: "DESCENDING",
|
|
@@ -276,6 +290,11 @@ export const SortTrialsBy = {
|
|
|
276
290
|
CREATION_TIME: "CreationTime",
|
|
277
291
|
NAME: "Name",
|
|
278
292
|
};
|
|
293
|
+
export const UltraServerHealthStatus = {
|
|
294
|
+
IMPAIRED: "Impaired",
|
|
295
|
+
INSUFFICIENT_DATA: "Insufficient-Data",
|
|
296
|
+
OK: "OK",
|
|
297
|
+
};
|
|
279
298
|
export const UserProfileSortKey = {
|
|
280
299
|
CreationTime: "CreationTime",
|
|
281
300
|
LastModifiedTime: "LastModifiedTime",
|
|
@@ -284,15 +303,3 @@ export const ListWorkforcesSortByOptions = {
|
|
|
284
303
|
CreateDate: "CreateDate",
|
|
285
304
|
Name: "Name",
|
|
286
305
|
};
|
|
287
|
-
export const ListWorkteamsSortByOptions = {
|
|
288
|
-
CreateDate: "CreateDate",
|
|
289
|
-
Name: "Name",
|
|
290
|
-
};
|
|
291
|
-
export const ModelCardFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
294
|
-
});
|
|
295
|
-
export const ModelPackageFilterSensitiveLog = (obj) => ({
|
|
296
|
-
...obj,
|
|
297
|
-
...(obj.ModelCard && { ModelCard: ModelPackageModelCardFilterSensitiveLog(obj.ModelCard) }),
|
|
298
|
-
});
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { ModelPackageModelCardFilterSensitiveLog, OidcConfigFilterSensitiveLog, } from "./models_2";
|
|
3
|
-
|
|
3
|
+
export const ListWorkteamsSortByOptions = {
|
|
4
|
+
CreateDate: "CreateDate",
|
|
5
|
+
Name: "Name",
|
|
6
|
+
};
|
|
4
7
|
export const ModelVariantAction = {
|
|
5
8
|
PROMOTE: "Promote",
|
|
6
9
|
REMOVE: "Remove",
|
|
@@ -19,6 +22,14 @@ export const VariantPropertyType = {
|
|
|
19
22
|
DesiredInstanceCount: "DesiredInstanceCount",
|
|
20
23
|
DesiredWeight: "DesiredWeight",
|
|
21
24
|
};
|
|
25
|
+
export const ModelCardFilterSensitiveLog = (obj) => ({
|
|
26
|
+
...obj,
|
|
27
|
+
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
28
|
+
});
|
|
29
|
+
export const ModelPackageFilterSensitiveLog = (obj) => ({
|
|
30
|
+
...obj,
|
|
31
|
+
...(obj.ModelCard && { ModelCard: ModelPackageModelCardFilterSensitiveLog(obj.ModelCard) }),
|
|
32
|
+
});
|
|
22
33
|
export const SearchRecordFilterSensitiveLog = (obj) => ({
|
|
23
34
|
...obj,
|
|
24
35
|
...(obj.TrialComponent && { TrialComponent: obj.TrialComponent }),
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListUltraServersByReservedCapacityCommand, } from "../commands/ListUltraServersByReservedCapacityCommand";
|
|
3
|
+
import { SageMakerClient } from "../SageMakerClient";
|
|
4
|
+
export const paginateListUltraServersByReservedCapacity = createPaginator(SageMakerClient, ListUltraServersByReservedCapacityCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -77,6 +77,7 @@ export * from "./ListTrainingPlansPaginator";
|
|
|
77
77
|
export * from "./ListTransformJobsPaginator";
|
|
78
78
|
export * from "./ListTrialComponentsPaginator";
|
|
79
79
|
export * from "./ListTrialsPaginator";
|
|
80
|
+
export * from "./ListUltraServersByReservedCapacityPaginator";
|
|
80
81
|
export * from "./ListUserProfilesPaginator";
|
|
81
82
|
export * from "./ListWorkforcesPaginator";
|
|
82
83
|
export * from "./ListWorkteamsPaginator";
|
|
@@ -1122,6 +1122,12 @@ export const se_DescribeProjectCommand = async (input, context) => {
|
|
|
1122
1122
|
body = JSON.stringify(_json(input));
|
|
1123
1123
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1124
1124
|
};
|
|
1125
|
+
export const se_DescribeReservedCapacityCommand = async (input, context) => {
|
|
1126
|
+
const headers = sharedHeaders("DescribeReservedCapacity");
|
|
1127
|
+
let body;
|
|
1128
|
+
body = JSON.stringify(_json(input));
|
|
1129
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1130
|
+
};
|
|
1125
1131
|
export const se_DescribeSpaceCommand = async (input, context) => {
|
|
1126
1132
|
const headers = sharedHeaders("DescribeSpace");
|
|
1127
1133
|
let body;
|
|
@@ -1734,6 +1740,12 @@ export const se_ListTrialsCommand = async (input, context) => {
|
|
|
1734
1740
|
body = JSON.stringify(se_ListTrialsRequest(input, context));
|
|
1735
1741
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1736
1742
|
};
|
|
1743
|
+
export const se_ListUltraServersByReservedCapacityCommand = async (input, context) => {
|
|
1744
|
+
const headers = sharedHeaders("ListUltraServersByReservedCapacity");
|
|
1745
|
+
let body;
|
|
1746
|
+
body = JSON.stringify(_json(input));
|
|
1747
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1748
|
+
};
|
|
1737
1749
|
export const se_ListUserProfilesCommand = async (input, context) => {
|
|
1738
1750
|
const headers = sharedHeaders("ListUserProfiles");
|
|
1739
1751
|
let body;
|
|
@@ -4506,6 +4518,19 @@ export const de_DescribeProjectCommand = async (output, context) => {
|
|
|
4506
4518
|
};
|
|
4507
4519
|
return response;
|
|
4508
4520
|
};
|
|
4521
|
+
export const de_DescribeReservedCapacityCommand = async (output, context) => {
|
|
4522
|
+
if (output.statusCode >= 300) {
|
|
4523
|
+
return de_CommandError(output, context);
|
|
4524
|
+
}
|
|
4525
|
+
const data = await parseBody(output.body, context);
|
|
4526
|
+
let contents = {};
|
|
4527
|
+
contents = de_DescribeReservedCapacityResponse(data, context);
|
|
4528
|
+
const response = {
|
|
4529
|
+
$metadata: deserializeMetadata(output),
|
|
4530
|
+
...contents,
|
|
4531
|
+
};
|
|
4532
|
+
return response;
|
|
4533
|
+
};
|
|
4509
4534
|
export const de_DescribeSpaceCommand = async (output, context) => {
|
|
4510
4535
|
if (output.statusCode >= 300) {
|
|
4511
4536
|
return de_CommandError(output, context);
|
|
@@ -5832,6 +5857,19 @@ export const de_ListTrialsCommand = async (output, context) => {
|
|
|
5832
5857
|
};
|
|
5833
5858
|
return response;
|
|
5834
5859
|
};
|
|
5860
|
+
export const de_ListUltraServersByReservedCapacityCommand = async (output, context) => {
|
|
5861
|
+
if (output.statusCode >= 300) {
|
|
5862
|
+
return de_CommandError(output, context);
|
|
5863
|
+
}
|
|
5864
|
+
const data = await parseBody(output.body, context);
|
|
5865
|
+
let contents = {};
|
|
5866
|
+
contents = de_ListUltraServersByReservedCapacityResponse(data, context);
|
|
5867
|
+
const response = {
|
|
5868
|
+
$metadata: deserializeMetadata(output),
|
|
5869
|
+
...contents,
|
|
5870
|
+
};
|
|
5871
|
+
return response;
|
|
5872
|
+
};
|
|
5835
5873
|
export const de_ListUserProfilesCommand = async (output, context) => {
|
|
5836
5874
|
if (output.statusCode >= 300) {
|
|
5837
5875
|
return de_CommandError(output, context);
|
|
@@ -8216,6 +8254,8 @@ const se_SearchTrainingPlanOfferingsRequest = (input, context) => {
|
|
|
8216
8254
|
InstanceType: [],
|
|
8217
8255
|
StartTimeAfter: (_) => _.getTime() / 1_000,
|
|
8218
8256
|
TargetResources: _json,
|
|
8257
|
+
UltraServerCount: [],
|
|
8258
|
+
UltraServerType: [],
|
|
8219
8259
|
});
|
|
8220
8260
|
};
|
|
8221
8261
|
const se_SendPipelineExecutionStepFailureRequest = (input, context) => {
|
|
@@ -9592,6 +9632,7 @@ const de_ClusterNodeDetails = (output, context) => {
|
|
|
9592
9632
|
PrivatePrimaryIp: __expectString,
|
|
9593
9633
|
PrivatePrimaryIpv6: __expectString,
|
|
9594
9634
|
ThreadsPerCore: __expectInt32,
|
|
9635
|
+
UltraServerInfo: (_) => de_UltraServerInfo(_, context),
|
|
9595
9636
|
});
|
|
9596
9637
|
};
|
|
9597
9638
|
const de_ClusterNodeIds = (output, context) => {
|
|
@@ -9627,6 +9668,7 @@ const de_ClusterNodeSummary = (output, context) => {
|
|
|
9627
9668
|
LastSoftwareUpdateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
9628
9669
|
LaunchTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
9629
9670
|
NodeLogicalId: __expectString,
|
|
9671
|
+
UltraServerInfo: (_) => de_UltraServerInfo(_, context),
|
|
9630
9672
|
});
|
|
9631
9673
|
};
|
|
9632
9674
|
const de_ClusterOrchestrator = (output, context) => {
|
|
@@ -10769,6 +10811,7 @@ const de_DescribeAppResponse = (output, context) => {
|
|
|
10769
10811
|
BuiltInLifecycleConfigArn: __expectString,
|
|
10770
10812
|
CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
10771
10813
|
DomainId: __expectString,
|
|
10814
|
+
EffectiveTrustedIdentityPropagationStatus: __expectString,
|
|
10772
10815
|
FailureReason: __expectString,
|
|
10773
10816
|
LastHealthCheckTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
10774
10817
|
LastUserActivityTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -11668,6 +11711,23 @@ const de_DescribeProjectOutput = (output, context) => {
|
|
|
11668
11711
|
TemplateProviderDetails: (_) => de_TemplateProviderDetailList(_, context),
|
|
11669
11712
|
});
|
|
11670
11713
|
};
|
|
11714
|
+
const de_DescribeReservedCapacityResponse = (output, context) => {
|
|
11715
|
+
return take(output, {
|
|
11716
|
+
AvailabilityZone: __expectString,
|
|
11717
|
+
AvailableInstanceCount: __expectInt32,
|
|
11718
|
+
DurationHours: __expectLong,
|
|
11719
|
+
DurationMinutes: __expectLong,
|
|
11720
|
+
EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
11721
|
+
InUseInstanceCount: __expectInt32,
|
|
11722
|
+
InstanceType: __expectString,
|
|
11723
|
+
ReservedCapacityArn: __expectString,
|
|
11724
|
+
ReservedCapacityType: __expectString,
|
|
11725
|
+
StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
11726
|
+
Status: __expectString,
|
|
11727
|
+
TotalInstanceCount: __expectInt32,
|
|
11728
|
+
UltraServerSummary: (_) => de_UltraServerSummary(_, context),
|
|
11729
|
+
});
|
|
11730
|
+
};
|
|
11671
11731
|
const de_DescribeSpaceResponse = (output, context) => {
|
|
11672
11732
|
return take(output, {
|
|
11673
11733
|
CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -11750,6 +11810,7 @@ const de_DescribeTrainingJobResponse = (output, context) => {
|
|
|
11750
11810
|
const de_DescribeTrainingPlanResponse = (output, context) => {
|
|
11751
11811
|
return take(output, {
|
|
11752
11812
|
AvailableInstanceCount: __expectInt32,
|
|
11813
|
+
AvailableSpareInstanceCount: __expectInt32,
|
|
11753
11814
|
CurrencyCode: __expectString,
|
|
11754
11815
|
DurationHours: __expectLong,
|
|
11755
11816
|
DurationMinutes: __expectLong,
|
|
@@ -11761,8 +11822,10 @@ const de_DescribeTrainingPlanResponse = (output, context) => {
|
|
|
11761
11822
|
StatusMessage: __expectString,
|
|
11762
11823
|
TargetResources: (_) => de_SageMakerResourceNames(_, context),
|
|
11763
11824
|
TotalInstanceCount: __expectInt32,
|
|
11825
|
+
TotalUltraServerCount: __expectInt32,
|
|
11764
11826
|
TrainingPlanArn: __expectString,
|
|
11765
11827
|
TrainingPlanName: __expectString,
|
|
11828
|
+
UnhealthyInstanceCount: __expectInt32,
|
|
11766
11829
|
UpfrontFee: __expectString,
|
|
11767
11830
|
});
|
|
11768
11831
|
};
|
|
@@ -11998,6 +12061,7 @@ const de_DomainSettings = (output, context) => {
|
|
|
11998
12061
|
ExecutionRoleIdentityConfig: __expectString,
|
|
11999
12062
|
RStudioServerProDomainSettings: (_) => de_RStudioServerProDomainSettings(_, context),
|
|
12000
12063
|
SecurityGroupIds: (_) => de_DomainSecurityGroupIds(_, context),
|
|
12064
|
+
TrustedIdentityPropagationSettings: (_) => de_TrustedIdentityPropagationSettings(_, context),
|
|
12001
12065
|
UnifiedStudioSettings: (_) => de_UnifiedStudioSettings(_, context),
|
|
12002
12066
|
});
|
|
12003
12067
|
};
|
|
@@ -13605,6 +13669,12 @@ const de_InstanceMetadataServiceConfiguration = (output, context) => {
|
|
|
13605
13669
|
MinimumInstanceMetadataServiceVersion: __expectString,
|
|
13606
13670
|
});
|
|
13607
13671
|
};
|
|
13672
|
+
const de_InstancePlacementConfig = (output, context) => {
|
|
13673
|
+
return take(output, {
|
|
13674
|
+
EnableMultipleJobs: __expectBoolean,
|
|
13675
|
+
PlacementSpecifications: (_) => de_PlacementSpecifications(_, context),
|
|
13676
|
+
});
|
|
13677
|
+
};
|
|
13608
13678
|
const de_IntegerParameterRange = (output, context) => {
|
|
13609
13679
|
return take(output, {
|
|
13610
13680
|
MaxValue: __expectString,
|
|
@@ -14334,6 +14404,12 @@ const de_ListTrialsResponse = (output, context) => {
|
|
|
14334
14404
|
TrialSummaries: (_) => de_TrialSummaries(_, context),
|
|
14335
14405
|
});
|
|
14336
14406
|
};
|
|
14407
|
+
const de_ListUltraServersByReservedCapacityResponse = (output, context) => {
|
|
14408
|
+
return take(output, {
|
|
14409
|
+
NextToken: __expectString,
|
|
14410
|
+
UltraServers: (_) => de_UltraServers(_, context),
|
|
14411
|
+
});
|
|
14412
|
+
};
|
|
14337
14413
|
const de_ListUserProfilesResponse = (output, context) => {
|
|
14338
14414
|
return take(output, {
|
|
14339
14415
|
NextToken: __expectString,
|
|
@@ -15930,6 +16006,20 @@ const de_PipelineVersionSummaryList = (output, context) => {
|
|
|
15930
16006
|
});
|
|
15931
16007
|
return retVal;
|
|
15932
16008
|
};
|
|
16009
|
+
const de_PlacementSpecification = (output, context) => {
|
|
16010
|
+
return take(output, {
|
|
16011
|
+
InstanceCount: __expectInt32,
|
|
16012
|
+
UltraServerId: __expectString,
|
|
16013
|
+
});
|
|
16014
|
+
};
|
|
16015
|
+
const de_PlacementSpecifications = (output, context) => {
|
|
16016
|
+
const retVal = (output || [])
|
|
16017
|
+
.filter((e) => e != null)
|
|
16018
|
+
.map((entry) => {
|
|
16019
|
+
return de_PlacementSpecification(entry, context);
|
|
16020
|
+
});
|
|
16021
|
+
return retVal;
|
|
16022
|
+
};
|
|
15933
16023
|
const de_PredefinedMetricSpecification = (output, context) => {
|
|
15934
16024
|
return take(output, {
|
|
15935
16025
|
PredefinedMetricType: __expectString,
|
|
@@ -16549,7 +16639,10 @@ const de_ReservedCapacityOffering = (output, context) => {
|
|
|
16549
16639
|
EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
16550
16640
|
InstanceCount: __expectInt32,
|
|
16551
16641
|
InstanceType: __expectString,
|
|
16642
|
+
ReservedCapacityType: __expectString,
|
|
16552
16643
|
StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
16644
|
+
UltraServerCount: __expectInt32,
|
|
16645
|
+
UltraServerType: __expectString,
|
|
16553
16646
|
});
|
|
16554
16647
|
};
|
|
16555
16648
|
const de_ReservedCapacityOfferings = (output, context) => {
|
|
@@ -16576,9 +16669,12 @@ const de_ReservedCapacitySummary = (output, context) => {
|
|
|
16576
16669
|
EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
16577
16670
|
InstanceType: __expectString,
|
|
16578
16671
|
ReservedCapacityArn: __expectString,
|
|
16672
|
+
ReservedCapacityType: __expectString,
|
|
16579
16673
|
StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
16580
16674
|
Status: __expectString,
|
|
16581
16675
|
TotalInstanceCount: __expectInt32,
|
|
16676
|
+
UltraServerCount: __expectInt32,
|
|
16677
|
+
UltraServerType: __expectString,
|
|
16582
16678
|
});
|
|
16583
16679
|
};
|
|
16584
16680
|
const de_ResolvedAttributes = (output, context) => {
|
|
@@ -16608,6 +16704,7 @@ const de_ResourceConfig = (output, context) => {
|
|
|
16608
16704
|
return take(output, {
|
|
16609
16705
|
InstanceCount: __expectInt32,
|
|
16610
16706
|
InstanceGroups: (_) => de_InstanceGroups(_, context),
|
|
16707
|
+
InstancePlacementConfig: (_) => de_InstancePlacementConfig(_, context),
|
|
16611
16708
|
InstanceType: __expectString,
|
|
16612
16709
|
KeepAlivePeriodInSeconds: __expectInt32,
|
|
16613
16710
|
TrainingPlanArn: __expectString,
|
|
@@ -17534,6 +17631,7 @@ const de_TrainingPlanSummary = (output, context) => {
|
|
|
17534
17631
|
StatusMessage: __expectString,
|
|
17535
17632
|
TargetResources: (_) => de_SageMakerResourceNames(_, context),
|
|
17536
17633
|
TotalInstanceCount: __expectInt32,
|
|
17634
|
+
TotalUltraServerCount: __expectInt32,
|
|
17537
17635
|
TrainingPlanArn: __expectString,
|
|
17538
17636
|
TrainingPlanName: __expectString,
|
|
17539
17637
|
UpfrontFee: __expectString,
|
|
@@ -17857,6 +17955,11 @@ const de_TrialSummary = (output, context) => {
|
|
|
17857
17955
|
TrialSource: (_) => de_TrialSource(_, context),
|
|
17858
17956
|
});
|
|
17859
17957
|
};
|
|
17958
|
+
const de_TrustedIdentityPropagationSettings = (output, context) => {
|
|
17959
|
+
return take(output, {
|
|
17960
|
+
Status: __expectString,
|
|
17961
|
+
});
|
|
17962
|
+
};
|
|
17860
17963
|
const de_TtlDuration = (output, context) => {
|
|
17861
17964
|
return take(output, {
|
|
17862
17965
|
Unit: __expectString,
|
|
@@ -17887,6 +17990,43 @@ const de_UiTemplateInfo = (output, context) => {
|
|
|
17887
17990
|
Url: __expectString,
|
|
17888
17991
|
});
|
|
17889
17992
|
};
|
|
17993
|
+
const de_UltraServer = (output, context) => {
|
|
17994
|
+
return take(output, {
|
|
17995
|
+
AvailabilityZone: __expectString,
|
|
17996
|
+
AvailableInstanceCount: __expectInt32,
|
|
17997
|
+
AvailableSpareInstanceCount: __expectInt32,
|
|
17998
|
+
ConfiguredSpareInstanceCount: __expectInt32,
|
|
17999
|
+
HealthStatus: __expectString,
|
|
18000
|
+
InUseInstanceCount: __expectInt32,
|
|
18001
|
+
InstanceType: __expectString,
|
|
18002
|
+
TotalInstanceCount: __expectInt32,
|
|
18003
|
+
UltraServerId: __expectString,
|
|
18004
|
+
UltraServerType: __expectString,
|
|
18005
|
+
UnhealthyInstanceCount: __expectInt32,
|
|
18006
|
+
});
|
|
18007
|
+
};
|
|
18008
|
+
const de_UltraServerInfo = (output, context) => {
|
|
18009
|
+
return take(output, {
|
|
18010
|
+
Id: __expectString,
|
|
18011
|
+
});
|
|
18012
|
+
};
|
|
18013
|
+
const de_UltraServers = (output, context) => {
|
|
18014
|
+
const retVal = (output || [])
|
|
18015
|
+
.filter((e) => e != null)
|
|
18016
|
+
.map((entry) => {
|
|
18017
|
+
return de_UltraServer(entry, context);
|
|
18018
|
+
});
|
|
18019
|
+
return retVal;
|
|
18020
|
+
};
|
|
18021
|
+
const de_UltraServerSummary = (output, context) => {
|
|
18022
|
+
return take(output, {
|
|
18023
|
+
AvailableSpareInstanceCount: __expectInt32,
|
|
18024
|
+
InstanceType: __expectString,
|
|
18025
|
+
UltraServerCount: __expectInt32,
|
|
18026
|
+
UltraServerType: __expectString,
|
|
18027
|
+
UnhealthyInstanceCount: __expectInt32,
|
|
18028
|
+
});
|
|
18029
|
+
};
|
|
17890
18030
|
const de_UnifiedStudioSettings = (output, context) => {
|
|
17891
18031
|
return take(output, {
|
|
17892
18032
|
DomainAccountId: __expectString,
|
|
@@ -185,6 +185,7 @@ import { DescribePipelineDefinitionForExecutionCommandInput, DescribePipelineDef
|
|
|
185
185
|
import { DescribePipelineExecutionCommandInput, DescribePipelineExecutionCommandOutput } from "./commands/DescribePipelineExecutionCommand";
|
|
186
186
|
import { DescribeProcessingJobCommandInput, DescribeProcessingJobCommandOutput } from "./commands/DescribeProcessingJobCommand";
|
|
187
187
|
import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "./commands/DescribeProjectCommand";
|
|
188
|
+
import { DescribeReservedCapacityCommandInput, DescribeReservedCapacityCommandOutput } from "./commands/DescribeReservedCapacityCommand";
|
|
188
189
|
import { DescribeSpaceCommandInput, DescribeSpaceCommandOutput } from "./commands/DescribeSpaceCommand";
|
|
189
190
|
import { DescribeStudioLifecycleConfigCommandInput, DescribeStudioLifecycleConfigCommandOutput } from "./commands/DescribeStudioLifecycleConfigCommand";
|
|
190
191
|
import { DescribeSubscribedWorkteamCommandInput, DescribeSubscribedWorkteamCommandOutput } from "./commands/DescribeSubscribedWorkteamCommand";
|
|
@@ -287,6 +288,7 @@ import { ListTrainingPlansCommandInput, ListTrainingPlansCommandOutput } from ".
|
|
|
287
288
|
import { ListTransformJobsCommandInput, ListTransformJobsCommandOutput } from "./commands/ListTransformJobsCommand";
|
|
288
289
|
import { ListTrialComponentsCommandInput, ListTrialComponentsCommandOutput } from "./commands/ListTrialComponentsCommand";
|
|
289
290
|
import { ListTrialsCommandInput, ListTrialsCommandOutput } from "./commands/ListTrialsCommand";
|
|
291
|
+
import { ListUltraServersByReservedCapacityCommandInput, ListUltraServersByReservedCapacityCommandOutput } from "./commands/ListUltraServersByReservedCapacityCommand";
|
|
290
292
|
import { ListUserProfilesCommandInput, ListUserProfilesCommandOutput } from "./commands/ListUserProfilesCommand";
|
|
291
293
|
import { ListWorkforcesCommandInput, ListWorkforcesCommandOutput } from "./commands/ListWorkforcesCommand";
|
|
292
294
|
import { ListWorkteamsCommandInput, ListWorkteamsCommandOutput } from "./commands/ListWorkteamsCommand";
|
|
@@ -1486,6 +1488,12 @@ export interface SageMaker {
|
|
|
1486
1488
|
describeProject(args: DescribeProjectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProjectCommandOutput>;
|
|
1487
1489
|
describeProject(args: DescribeProjectCommandInput, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
|
|
1488
1490
|
describeProject(args: DescribeProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
|
|
1491
|
+
/**
|
|
1492
|
+
* @see {@link DescribeReservedCapacityCommand}
|
|
1493
|
+
*/
|
|
1494
|
+
describeReservedCapacity(args: DescribeReservedCapacityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedCapacityCommandOutput>;
|
|
1495
|
+
describeReservedCapacity(args: DescribeReservedCapacityCommandInput, cb: (err: any, data?: DescribeReservedCapacityCommandOutput) => void): void;
|
|
1496
|
+
describeReservedCapacity(args: DescribeReservedCapacityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedCapacityCommandOutput) => void): void;
|
|
1489
1497
|
/**
|
|
1490
1498
|
* @see {@link DescribeSpaceCommand}
|
|
1491
1499
|
*/
|
|
@@ -2163,6 +2171,12 @@ export interface SageMaker {
|
|
|
2163
2171
|
listTrials(args: ListTrialsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrialsCommandOutput>;
|
|
2164
2172
|
listTrials(args: ListTrialsCommandInput, cb: (err: any, data?: ListTrialsCommandOutput) => void): void;
|
|
2165
2173
|
listTrials(args: ListTrialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrialsCommandOutput) => void): void;
|
|
2174
|
+
/**
|
|
2175
|
+
* @see {@link ListUltraServersByReservedCapacityCommand}
|
|
2176
|
+
*/
|
|
2177
|
+
listUltraServersByReservedCapacity(args: ListUltraServersByReservedCapacityCommandInput, options?: __HttpHandlerOptions): Promise<ListUltraServersByReservedCapacityCommandOutput>;
|
|
2178
|
+
listUltraServersByReservedCapacity(args: ListUltraServersByReservedCapacityCommandInput, cb: (err: any, data?: ListUltraServersByReservedCapacityCommandOutput) => void): void;
|
|
2179
|
+
listUltraServersByReservedCapacity(args: ListUltraServersByReservedCapacityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUltraServersByReservedCapacityCommandOutput) => void): void;
|
|
2166
2180
|
/**
|
|
2167
2181
|
* @see {@link ListUserProfilesCommand}
|
|
2168
2182
|
*/
|