@aws-sdk/client-sagemaker 3.513.0 → 3.515.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 +8 -0
- package/dist-cjs/commands/UpdateClusterSoftwareCommand.js +1 -0
- package/dist-cjs/index.js +44 -0
- package/dist-es/SageMaker.js +2 -0
- package/dist-es/commands/UpdateClusterSoftwareCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +24 -0
- package/dist-types/SageMaker.d.ts +7 -0
- package/dist-types/SageMakerClient.d.ts +3 -2
- package/dist-types/commands/AddTagsCommand.d.ts +7 -7
- package/dist-types/commands/DeleteHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +3 -3
- package/dist-types/commands/UpdateClusterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterSoftwareCommand.d.ts +66 -0
- package/dist-types/commands/UpdateEndpointCommand.d.ts +9 -10
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/models/models_2.d.ts +13 -9
- package/dist-types/models/models_3.d.ts +4 -3
- package/dist-types/models/models_4.d.ts +31 -8
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/SageMaker.d.ts +17 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/UpdateClusterSoftwareCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_4.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -2513,6 +2513,14 @@ UpdateCluster
|
|
|
2513
2513
|
|
|
2514
2514
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/UpdateClusterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdateClusterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdateClusterCommandOutput/)
|
|
2515
2515
|
|
|
2516
|
+
</details>
|
|
2517
|
+
<details>
|
|
2518
|
+
<summary>
|
|
2519
|
+
UpdateClusterSoftware
|
|
2520
|
+
</summary>
|
|
2521
|
+
|
|
2522
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/UpdateClusterSoftwareCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdateClusterSoftwareCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/UpdateClusterSoftwareCommandOutput/)
|
|
2523
|
+
|
|
2516
2524
|
</details>
|
|
2517
2525
|
<details>
|
|
2518
2526
|
<summary>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/index.js
CHANGED
|
@@ -585,6 +585,7 @@ __export(src_exports, {
|
|
|
585
585
|
UpdateAppImageConfigCommand: () => UpdateAppImageConfigCommand,
|
|
586
586
|
UpdateArtifactCommand: () => UpdateArtifactCommand,
|
|
587
587
|
UpdateClusterCommand: () => UpdateClusterCommand,
|
|
588
|
+
UpdateClusterSoftwareCommand: () => UpdateClusterSoftwareCommand,
|
|
588
589
|
UpdateCodeRepositoryCommand: () => UpdateCodeRepositoryCommand,
|
|
589
590
|
UpdateContextCommand: () => UpdateContextCommand,
|
|
590
591
|
UpdateDeviceFleetCommand: () => UpdateDeviceFleetCommand,
|
|
@@ -4056,6 +4057,12 @@ var se_UpdateClusterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4056
4057
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
4057
4058
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
4058
4059
|
}, "se_UpdateClusterCommand");
|
|
4060
|
+
var se_UpdateClusterSoftwareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4061
|
+
const headers = sharedHeaders("UpdateClusterSoftware");
|
|
4062
|
+
let body;
|
|
4063
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
4064
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
4065
|
+
}, "se_UpdateClusterSoftwareCommand");
|
|
4059
4066
|
var se_UpdateCodeRepositoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4060
4067
|
const headers = sharedHeaders("UpdateCodeRepository");
|
|
4061
4068
|
let body;
|
|
@@ -7823,6 +7830,19 @@ var de_UpdateClusterCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
7823
7830
|
};
|
|
7824
7831
|
return response;
|
|
7825
7832
|
}, "de_UpdateClusterCommand");
|
|
7833
|
+
var de_UpdateClusterSoftwareCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
7834
|
+
if (output.statusCode >= 300) {
|
|
7835
|
+
return de_CommandError(output, context);
|
|
7836
|
+
}
|
|
7837
|
+
const data = await parseBody(output.body, context);
|
|
7838
|
+
let contents = {};
|
|
7839
|
+
contents = de_UpdateClusterSoftwareResponse(data, context);
|
|
7840
|
+
const response = {
|
|
7841
|
+
$metadata: deserializeMetadata(output),
|
|
7842
|
+
...contents
|
|
7843
|
+
};
|
|
7844
|
+
return response;
|
|
7845
|
+
}, "de_UpdateClusterSoftwareCommand");
|
|
7826
7846
|
var de_UpdateCodeRepositoryCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
7827
7847
|
if (output.statusCode >= 300) {
|
|
7828
7848
|
return de_CommandError(output, context);
|
|
@@ -17269,6 +17289,11 @@ var de_UpdateClusterResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
17269
17289
|
ClusterArn: import_smithy_client.expectString
|
|
17270
17290
|
});
|
|
17271
17291
|
}, "de_UpdateClusterResponse");
|
|
17292
|
+
var de_UpdateClusterSoftwareResponse = /* @__PURE__ */ __name((output, context) => {
|
|
17293
|
+
return (0, import_smithy_client.take)(output, {
|
|
17294
|
+
ClusterArn: import_smithy_client.expectString
|
|
17295
|
+
});
|
|
17296
|
+
}, "de_UpdateClusterSoftwareResponse");
|
|
17272
17297
|
var de_UpdateCodeRepositoryOutput = /* @__PURE__ */ __name((output, context) => {
|
|
17273
17298
|
return (0, import_smithy_client.take)(output, {
|
|
17274
17299
|
CodeRepositoryArn: import_smithy_client.expectString
|
|
@@ -22980,6 +23005,23 @@ var _UpdateClusterCommand = class _UpdateClusterCommand extends import_smithy_cl
|
|
|
22980
23005
|
__name(_UpdateClusterCommand, "UpdateClusterCommand");
|
|
22981
23006
|
var UpdateClusterCommand = _UpdateClusterCommand;
|
|
22982
23007
|
|
|
23008
|
+
// src/commands/UpdateClusterSoftwareCommand.ts
|
|
23009
|
+
|
|
23010
|
+
|
|
23011
|
+
|
|
23012
|
+
|
|
23013
|
+
var _UpdateClusterSoftwareCommand = class _UpdateClusterSoftwareCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
23014
|
+
...commonParams
|
|
23015
|
+
}).m(function(Command, cs, config, o) {
|
|
23016
|
+
return [
|
|
23017
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
23018
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
23019
|
+
];
|
|
23020
|
+
}).s("SageMaker", "UpdateClusterSoftware", {}).n("SageMakerClient", "UpdateClusterSoftwareCommand").f(void 0, void 0).ser(se_UpdateClusterSoftwareCommand).de(de_UpdateClusterSoftwareCommand).build() {
|
|
23021
|
+
};
|
|
23022
|
+
__name(_UpdateClusterSoftwareCommand, "UpdateClusterSoftwareCommand");
|
|
23023
|
+
var UpdateClusterSoftwareCommand = _UpdateClusterSoftwareCommand;
|
|
23024
|
+
|
|
22983
23025
|
// src/commands/UpdateCodeRepositoryCommand.ts
|
|
22984
23026
|
|
|
22985
23027
|
|
|
@@ -23813,6 +23855,7 @@ var commands = {
|
|
|
23813
23855
|
UpdateAppImageConfigCommand,
|
|
23814
23856
|
UpdateArtifactCommand,
|
|
23815
23857
|
UpdateClusterCommand,
|
|
23858
|
+
UpdateClusterSoftwareCommand,
|
|
23816
23859
|
UpdateCodeRepositoryCommand,
|
|
23817
23860
|
UpdateContextCommand,
|
|
23818
23861
|
UpdateDeviceFleetCommand,
|
|
@@ -25340,6 +25383,7 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
25340
25383
|
UpdateAppImageConfigCommand,
|
|
25341
25384
|
UpdateArtifactCommand,
|
|
25342
25385
|
UpdateClusterCommand,
|
|
25386
|
+
UpdateClusterSoftwareCommand,
|
|
25343
25387
|
UpdateCodeRepositoryCommand,
|
|
25344
25388
|
UpdateContextCommand,
|
|
25345
25389
|
UpdateDeviceFleetCommand,
|
package/dist-es/SageMaker.js
CHANGED
|
@@ -286,6 +286,7 @@ import { UpdateActionCommand, } from "./commands/UpdateActionCommand";
|
|
|
286
286
|
import { UpdateAppImageConfigCommand, } from "./commands/UpdateAppImageConfigCommand";
|
|
287
287
|
import { UpdateArtifactCommand, } from "./commands/UpdateArtifactCommand";
|
|
288
288
|
import { UpdateClusterCommand, } from "./commands/UpdateClusterCommand";
|
|
289
|
+
import { UpdateClusterSoftwareCommand, } from "./commands/UpdateClusterSoftwareCommand";
|
|
289
290
|
import { UpdateCodeRepositoryCommand, } from "./commands/UpdateCodeRepositoryCommand";
|
|
290
291
|
import { UpdateContextCommand, } from "./commands/UpdateContextCommand";
|
|
291
292
|
import { UpdateDeviceFleetCommand, } from "./commands/UpdateDeviceFleetCommand";
|
|
@@ -607,6 +608,7 @@ const commands = {
|
|
|
607
608
|
UpdateAppImageConfigCommand,
|
|
608
609
|
UpdateArtifactCommand,
|
|
609
610
|
UpdateClusterCommand,
|
|
611
|
+
UpdateClusterSoftwareCommand,
|
|
610
612
|
UpdateCodeRepositoryCommand,
|
|
611
613
|
UpdateContextCommand,
|
|
612
614
|
UpdateDeviceFleetCommand,
|
|
@@ -0,0 +1,24 @@
|
|
|
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_UpdateClusterSoftwareCommand, se_UpdateClusterSoftwareCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateClusterSoftwareCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SageMaker", "UpdateClusterSoftware", {})
|
|
19
|
+
.n("SageMakerClient", "UpdateClusterSoftwareCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateClusterSoftwareCommand)
|
|
22
|
+
.de(de_UpdateClusterSoftwareCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -285,6 +285,7 @@ export * from "./UpdateActionCommand";
|
|
|
285
285
|
export * from "./UpdateAppImageConfigCommand";
|
|
286
286
|
export * from "./UpdateArtifactCommand";
|
|
287
287
|
export * from "./UpdateClusterCommand";
|
|
288
|
+
export * from "./UpdateClusterSoftwareCommand";
|
|
288
289
|
export * from "./UpdateCodeRepositoryCommand";
|
|
289
290
|
export * from "./UpdateContextCommand";
|
|
290
291
|
export * from "./UpdateDeviceFleetCommand";
|
|
@@ -1727,6 +1727,12 @@ export const se_UpdateClusterCommand = async (input, context) => {
|
|
|
1727
1727
|
body = JSON.stringify(_json(input));
|
|
1728
1728
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1729
1729
|
};
|
|
1730
|
+
export const se_UpdateClusterSoftwareCommand = async (input, context) => {
|
|
1731
|
+
const headers = sharedHeaders("UpdateClusterSoftware");
|
|
1732
|
+
let body;
|
|
1733
|
+
body = JSON.stringify(_json(input));
|
|
1734
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1735
|
+
};
|
|
1730
1736
|
export const se_UpdateCodeRepositoryCommand = async (input, context) => {
|
|
1731
1737
|
const headers = sharedHeaders("UpdateCodeRepository");
|
|
1732
1738
|
let body;
|
|
@@ -5494,6 +5500,19 @@ export const de_UpdateClusterCommand = async (output, context) => {
|
|
|
5494
5500
|
};
|
|
5495
5501
|
return response;
|
|
5496
5502
|
};
|
|
5503
|
+
export const de_UpdateClusterSoftwareCommand = async (output, context) => {
|
|
5504
|
+
if (output.statusCode >= 300) {
|
|
5505
|
+
return de_CommandError(output, context);
|
|
5506
|
+
}
|
|
5507
|
+
const data = await parseBody(output.body, context);
|
|
5508
|
+
let contents = {};
|
|
5509
|
+
contents = de_UpdateClusterSoftwareResponse(data, context);
|
|
5510
|
+
const response = {
|
|
5511
|
+
$metadata: deserializeMetadata(output),
|
|
5512
|
+
...contents,
|
|
5513
|
+
};
|
|
5514
|
+
return response;
|
|
5515
|
+
};
|
|
5497
5516
|
export const de_UpdateCodeRepositoryCommand = async (output, context) => {
|
|
5498
5517
|
if (output.statusCode >= 300) {
|
|
5499
5518
|
return de_CommandError(output, context);
|
|
@@ -15365,6 +15384,11 @@ const de_UpdateClusterResponse = (output, context) => {
|
|
|
15365
15384
|
ClusterArn: __expectString,
|
|
15366
15385
|
});
|
|
15367
15386
|
};
|
|
15387
|
+
const de_UpdateClusterSoftwareResponse = (output, context) => {
|
|
15388
|
+
return take(output, {
|
|
15389
|
+
ClusterArn: __expectString,
|
|
15390
|
+
});
|
|
15391
|
+
};
|
|
15368
15392
|
const de_UpdateCodeRepositoryOutput = (output, context) => {
|
|
15369
15393
|
return take(output, {
|
|
15370
15394
|
CodeRepositoryArn: __expectString,
|
|
@@ -286,6 +286,7 @@ import { UpdateActionCommandInput, UpdateActionCommandOutput } from "./commands/
|
|
|
286
286
|
import { UpdateAppImageConfigCommandInput, UpdateAppImageConfigCommandOutput } from "./commands/UpdateAppImageConfigCommand";
|
|
287
287
|
import { UpdateArtifactCommandInput, UpdateArtifactCommandOutput } from "./commands/UpdateArtifactCommand";
|
|
288
288
|
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
|
|
289
|
+
import { UpdateClusterSoftwareCommandInput, UpdateClusterSoftwareCommandOutput } from "./commands/UpdateClusterSoftwareCommand";
|
|
289
290
|
import { UpdateCodeRepositoryCommandInput, UpdateCodeRepositoryCommandOutput } from "./commands/UpdateCodeRepositoryCommand";
|
|
290
291
|
import { UpdateContextCommandInput, UpdateContextCommandOutput } from "./commands/UpdateContextCommand";
|
|
291
292
|
import { UpdateDeviceFleetCommandInput, UpdateDeviceFleetCommandOutput } from "./commands/UpdateDeviceFleetCommand";
|
|
@@ -2042,6 +2043,12 @@ export interface SageMaker {
|
|
|
2042
2043
|
updateCluster(args: UpdateClusterCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterCommandOutput>;
|
|
2043
2044
|
updateCluster(args: UpdateClusterCommandInput, cb: (err: any, data?: UpdateClusterCommandOutput) => void): void;
|
|
2044
2045
|
updateCluster(args: UpdateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterCommandOutput) => void): void;
|
|
2046
|
+
/**
|
|
2047
|
+
* @see {@link UpdateClusterSoftwareCommand}
|
|
2048
|
+
*/
|
|
2049
|
+
updateClusterSoftware(args: UpdateClusterSoftwareCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterSoftwareCommandOutput>;
|
|
2050
|
+
updateClusterSoftware(args: UpdateClusterSoftwareCommandInput, cb: (err: any, data?: UpdateClusterSoftwareCommandOutput) => void): void;
|
|
2051
|
+
updateClusterSoftware(args: UpdateClusterSoftwareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterSoftwareCommandOutput) => void): void;
|
|
2045
2052
|
/**
|
|
2046
2053
|
* @see {@link UpdateCodeRepositoryCommand}
|
|
2047
2054
|
*/
|
|
@@ -294,6 +294,7 @@ import { UpdateActionCommandInput, UpdateActionCommandOutput } from "./commands/
|
|
|
294
294
|
import { UpdateAppImageConfigCommandInput, UpdateAppImageConfigCommandOutput } from "./commands/UpdateAppImageConfigCommand";
|
|
295
295
|
import { UpdateArtifactCommandInput, UpdateArtifactCommandOutput } from "./commands/UpdateArtifactCommand";
|
|
296
296
|
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
|
|
297
|
+
import { UpdateClusterSoftwareCommandInput, UpdateClusterSoftwareCommandOutput } from "./commands/UpdateClusterSoftwareCommand";
|
|
297
298
|
import { UpdateCodeRepositoryCommandInput, UpdateCodeRepositoryCommandOutput } from "./commands/UpdateCodeRepositoryCommand";
|
|
298
299
|
import { UpdateContextCommandInput, UpdateContextCommandOutput } from "./commands/UpdateContextCommand";
|
|
299
300
|
import { UpdateDeviceFleetCommandInput, UpdateDeviceFleetCommandOutput } from "./commands/UpdateDeviceFleetCommand";
|
|
@@ -332,11 +333,11 @@ export { __Client };
|
|
|
332
333
|
/**
|
|
333
334
|
* @public
|
|
334
335
|
*/
|
|
335
|
-
export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterNodeCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterNodesCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | 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 | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
336
|
+
export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterNodeCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterNodesCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | 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 | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
336
337
|
/**
|
|
337
338
|
* @public
|
|
338
339
|
*/
|
|
339
|
-
export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterNodeCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterNodesCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | 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 | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
340
|
+
export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterNodeCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterNodesCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | 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 | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
340
341
|
/**
|
|
341
342
|
* @public
|
|
342
343
|
*/
|
|
@@ -43,13 +43,13 @@ declare const AddTagsCommand_base: {
|
|
|
43
43
|
* </p>
|
|
44
44
|
* </note>
|
|
45
45
|
* <note>
|
|
46
|
-
* <p>Tags that you add to a SageMaker Domain or User Profile by calling this API
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
46
|
+
* <p>Tags that you add to a SageMaker Domain or User Profile by calling this API are
|
|
47
|
+
* also added to any Apps that the Domain or User Profile launches after you call this
|
|
48
|
+
* API, but not to Apps that the Domain or User Profile launched before you called this
|
|
49
|
+
* API. To make sure that the tags associated with a Domain or User Profile are also
|
|
50
|
+
* added to all Apps that the Domain or User Profile launches, add the tags when you
|
|
51
|
+
* first create the Domain or User Profile by specifying them in the <code>Tags</code>
|
|
52
|
+
* parameter of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateDomain.html">CreateDomain</a>
|
|
53
53
|
* or <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateUserProfile.html">CreateUserProfile</a>.</p>
|
|
54
54
|
* </note>
|
|
55
55
|
* @example
|
|
@@ -28,7 +28,7 @@ declare const DeleteHyperParameterTuningJobCommand_base: {
|
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Deletes a hyperparameter tuning job. The <code>DeleteHyperParameterTuningJob</code>
|
|
30
30
|
* API deletes only the tuning job entry that was created in SageMaker when you called the
|
|
31
|
-
*
|
|
31
|
+
* <code>CreateHyperParameterTuningJob</code> API. It does not delete training jobs,
|
|
32
32
|
* artifacts, or the IAM role that you specified when creating the model.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -34,9 +34,9 @@ declare const DeleteTagsCommand_base: {
|
|
|
34
34
|
* launched before you called this API.</p>
|
|
35
35
|
* </note>
|
|
36
36
|
* <note>
|
|
37
|
-
* <p>When you call this API to delete tags from a SageMaker Domain or User
|
|
38
|
-
*
|
|
39
|
-
*
|
|
37
|
+
* <p>When you call this API to delete tags from a SageMaker Domain or User Profile, the
|
|
38
|
+
* deleted tags are not removed from Apps that the SageMaker Domain or User Profile
|
|
39
|
+
* launched before you called this API.</p>
|
|
40
40
|
* </note>
|
|
41
41
|
* @example
|
|
42
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -26,7 +26,7 @@ declare const UpdateClusterCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
29
|
+
* <p>Updates a SageMaker HyperPod cluster.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateClusterSoftwareRequest, UpdateClusterSoftwareResponse } from "../models/models_4";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UpdateClusterSoftwareCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateClusterSoftwareCommandInput extends UpdateClusterSoftwareRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UpdateClusterSoftwareCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateClusterSoftwareCommandOutput extends UpdateClusterSoftwareResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UpdateClusterSoftwareCommand_base: {
|
|
24
|
+
new (input: UpdateClusterSoftwareCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateClusterSoftwareCommandInput, UpdateClusterSoftwareCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* <p>Updates the platform software of a SageMaker HyperPod cluster for security patching. To learn how to
|
|
30
|
+
* use this API, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-operate.html#sagemaker-hyperpod-operate-cli-command-update-cluster-software">Update the SageMaker HyperPod platform software of a cluster</a>.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SageMakerClient, UpdateClusterSoftwareCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
35
|
+
* // const { SageMakerClient, UpdateClusterSoftwareCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
36
|
+
* const client = new SageMakerClient(config);
|
|
37
|
+
* const input = { // UpdateClusterSoftwareRequest
|
|
38
|
+
* ClusterName: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new UpdateClusterSoftwareCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateClusterSoftwareResponse
|
|
43
|
+
* // ClusterArn: "STRING_VALUE", // required
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param UpdateClusterSoftwareCommandInput - {@link UpdateClusterSoftwareCommandInput}
|
|
49
|
+
* @returns {@link UpdateClusterSoftwareCommandOutput}
|
|
50
|
+
* @see {@link UpdateClusterSoftwareCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link UpdateClusterSoftwareCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ConflictException} (client fault)
|
|
55
|
+
* <p>There was a conflict when you attempted to modify a SageMaker entity such as an
|
|
56
|
+
* <code>Experiment</code> or <code>Artifact</code>.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
59
|
+
* <p>Resource being access is not found.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link SageMakerServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
export declare class UpdateClusterSoftwareCommand extends UpdateClusterSoftwareCommand_base {
|
|
66
|
+
}
|
|
@@ -26,16 +26,15 @@ declare const UpdateEndpointCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Deploys the <code>EndpointConfig</code> specified in the request
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
* <code>InService</code>. To check the status of an endpoint, use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpoint.html">DescribeEndpoint</a> API.
|
|
29
|
+
* <p>Deploys the <code>EndpointConfig</code> specified in the request to a new fleet of
|
|
30
|
+
* instances. SageMaker shifts endpoint traffic to the new instances with the updated endpoint
|
|
31
|
+
* configuration and then deletes the old instances using the previous
|
|
32
|
+
* <code>EndpointConfig</code> (there is no availability loss). For more information
|
|
33
|
+
* about how to control the update and traffic shifting process, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/deployment-guardrails.html"> Update
|
|
34
|
+
* models in production</a>.</p>
|
|
35
|
+
* <p>When SageMaker receives the request, it sets the endpoint status to <code>Updating</code>.
|
|
36
|
+
* After updating the endpoint, it sets the status to <code>InService</code>. To check the
|
|
37
|
+
* status of an endpoint, use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpoint.html">DescribeEndpoint</a> API.
|
|
39
38
|
*
|
|
40
39
|
* </p>
|
|
41
40
|
* <note>
|
|
@@ -285,6 +285,7 @@ export * from "./UpdateActionCommand";
|
|
|
285
285
|
export * from "./UpdateAppImageConfigCommand";
|
|
286
286
|
export * from "./UpdateArtifactCommand";
|
|
287
287
|
export * from "./UpdateClusterCommand";
|
|
288
|
+
export * from "./UpdateClusterSoftwareCommand";
|
|
288
289
|
export * from "./UpdateCodeRepositoryCommand";
|
|
289
290
|
export * from "./UpdateContextCommand";
|
|
290
291
|
export * from "./UpdateDeviceFleetCommand";
|
|
@@ -1119,7 +1119,7 @@ export interface S3DataSource {
|
|
|
1119
1119
|
* <ul>
|
|
1120
1120
|
* <li>
|
|
1121
1121
|
* <p> A key name prefix might look like this:
|
|
1122
|
-
*
|
|
1122
|
+
* <code>s3://bucketname/exampleprefix/</code>
|
|
1123
1123
|
* </p>
|
|
1124
1124
|
* </li>
|
|
1125
1125
|
* <li>
|
|
@@ -1383,8 +1383,8 @@ export interface OutputDataConfig {
|
|
|
1383
1383
|
*
|
|
1384
1384
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingKMSEncryption.html">KMS-Managed Encryption
|
|
1385
1385
|
* Keys</a> in the <i>Amazon Simple Storage Service Developer Guide</i>. If the output
|
|
1386
|
-
* data is stored in Amazon S3 Express One Zone, it is encrypted with server-side
|
|
1387
|
-
*
|
|
1386
|
+
* data is stored in Amazon S3 Express One Zone, it is encrypted with server-side encryption with Amazon S3
|
|
1387
|
+
* managed keys (SSE-S3). KMS key is not supported for Amazon S3 Express One Zone</p>
|
|
1388
1388
|
* <p>The KMS key policy must grant permission to the IAM role that you specify in your
|
|
1389
1389
|
* <code>CreateTrainingJob</code>, <code>CreateTransformJob</code>, or
|
|
1390
1390
|
* <code>CreateHyperParameterTuningJob</code> requests. For more information, see
|
|
@@ -166,9 +166,10 @@ export interface ProfilerRuleConfiguration {
|
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* @public
|
|
169
|
-
* <p>Configuration for remote debugging for the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a> API. To learn more about the remote
|
|
170
|
-
*
|
|
171
|
-
* for remote
|
|
169
|
+
* <p>Configuration for remote debugging for the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a> API. To learn more about the remote debugging
|
|
170
|
+
* functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
|
|
171
|
+
* through Amazon Web Services Systems Manager (SSM) for remote
|
|
172
|
+
* debugging</a>.</p>
|
|
172
173
|
*/
|
|
173
174
|
export interface RemoteDebugConfig {
|
|
174
175
|
/**
|
|
@@ -407,9 +408,10 @@ export interface CreateTrainingJobRequest {
|
|
|
407
408
|
RetryStrategy?: RetryStrategy;
|
|
408
409
|
/**
|
|
409
410
|
* @public
|
|
410
|
-
* <p>Configuration for remote debugging. To learn more about the remote
|
|
411
|
-
*
|
|
412
|
-
* for remote
|
|
411
|
+
* <p>Configuration for remote debugging. To learn more about the remote debugging
|
|
412
|
+
* functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
|
|
413
|
+
* through Amazon Web Services Systems Manager (SSM) for remote
|
|
414
|
+
* debugging</a>.</p>
|
|
413
415
|
*/
|
|
414
416
|
RemoteDebugConfig?: RemoteDebugConfig;
|
|
415
417
|
/**
|
|
@@ -3080,9 +3082,11 @@ export interface DescribeCompilationJobRequest {
|
|
|
3080
3082
|
* @public
|
|
3081
3083
|
* <p>Provides information about the location that is configured for storing model
|
|
3082
3084
|
* artifacts. </p>
|
|
3083
|
-
* <p>Model artifacts are
|
|
3084
|
-
*
|
|
3085
|
-
*
|
|
3085
|
+
* <p>Model artifacts are outputs that result from training a model. They typically consist
|
|
3086
|
+
* of trained parameters, a model definition that describes how to compute inferences, and
|
|
3087
|
+
* other metadata. A SageMaker container stores your trained model artifacts in the
|
|
3088
|
+
* <code>/opt/ml/model</code> directory. After training has completed, by default, these artifacts
|
|
3089
|
+
* are uploaded to your Amazon S3 bucket as compressed files.</p>
|
|
3086
3090
|
*/
|
|
3087
3091
|
export interface ModelArtifacts {
|
|
3088
3092
|
/**
|
|
@@ -858,9 +858,10 @@ export interface DescribeTrainingJobResponse {
|
|
|
858
858
|
RetryStrategy?: RetryStrategy;
|
|
859
859
|
/**
|
|
860
860
|
* @public
|
|
861
|
-
* <p>Configuration for remote debugging. To learn more about the remote
|
|
862
|
-
*
|
|
863
|
-
* for remote
|
|
861
|
+
* <p>Configuration for remote debugging. To learn more about the remote debugging
|
|
862
|
+
* functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
|
|
863
|
+
* through Amazon Web Services Systems Manager (SSM) for remote
|
|
864
|
+
* debugging</a>.</p>
|
|
864
865
|
*/
|
|
865
866
|
RemoteDebugConfig?: RemoteDebugConfig;
|
|
866
867
|
/**
|
|
@@ -3586,9 +3586,10 @@ export interface RegisterDevicesRequest {
|
|
|
3586
3586
|
}
|
|
3587
3587
|
/**
|
|
3588
3588
|
* @public
|
|
3589
|
-
* <p>Configuration for remote debugging for the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateTrainingJob.html">UpdateTrainingJob</a> API. To learn more about the remote
|
|
3590
|
-
*
|
|
3591
|
-
* for remote
|
|
3589
|
+
* <p>Configuration for remote debugging for the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateTrainingJob.html">UpdateTrainingJob</a> API. To learn more about the remote debugging
|
|
3590
|
+
* functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
|
|
3591
|
+
* through Amazon Web Services Systems Manager (SSM) for remote
|
|
3592
|
+
* debugging</a>.</p>
|
|
3592
3593
|
*/
|
|
3593
3594
|
export interface RemoteDebugConfigForUpdate {
|
|
3594
3595
|
/**
|
|
@@ -4989,6 +4990,27 @@ export interface UpdateClusterResponse {
|
|
|
4989
4990
|
*/
|
|
4990
4991
|
ClusterArn: string | undefined;
|
|
4991
4992
|
}
|
|
4993
|
+
/**
|
|
4994
|
+
* @public
|
|
4995
|
+
*/
|
|
4996
|
+
export interface UpdateClusterSoftwareRequest {
|
|
4997
|
+
/**
|
|
4998
|
+
* @public
|
|
4999
|
+
* <p>Specify the name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster you want to update for security
|
|
5000
|
+
* patching.</p>
|
|
5001
|
+
*/
|
|
5002
|
+
ClusterName: string | undefined;
|
|
5003
|
+
}
|
|
5004
|
+
/**
|
|
5005
|
+
* @public
|
|
5006
|
+
*/
|
|
5007
|
+
export interface UpdateClusterSoftwareResponse {
|
|
5008
|
+
/**
|
|
5009
|
+
* @public
|
|
5010
|
+
* <p>The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster being updated for security patching.</p>
|
|
5011
|
+
*/
|
|
5012
|
+
ClusterArn: string | undefined;
|
|
5013
|
+
}
|
|
4992
5014
|
/**
|
|
4993
5015
|
* @public
|
|
4994
5016
|
*/
|
|
@@ -6276,11 +6298,12 @@ export interface UpdateTrainingJobRequest {
|
|
|
6276
6298
|
ResourceConfig?: ResourceConfigForUpdate;
|
|
6277
6299
|
/**
|
|
6278
6300
|
* @public
|
|
6279
|
-
* <p>Configuration for remote debugging while the training job is running. You can
|
|
6280
|
-
*
|
|
6281
|
-
*
|
|
6282
|
-
* debugging functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
|
|
6283
|
-
* for remote
|
|
6301
|
+
* <p>Configuration for remote debugging while the training job is running. You can update
|
|
6302
|
+
* the remote debugging configuration when the <code>SecondaryStatus</code> of the job is
|
|
6303
|
+
* <code>Downloading</code> or <code>Training</code>.To learn more about the remote
|
|
6304
|
+
* debugging functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
|
|
6305
|
+
* through Amazon Web Services Systems Manager (SSM) for remote
|
|
6306
|
+
* debugging</a>.</p>
|
|
6284
6307
|
*/
|
|
6285
6308
|
RemoteDebugConfig?: RemoteDebugConfigForUpdate;
|
|
6286
6309
|
}
|
|
@@ -287,6 +287,7 @@ import { UpdateActionCommandInput, UpdateActionCommandOutput } from "../commands
|
|
|
287
287
|
import { UpdateAppImageConfigCommandInput, UpdateAppImageConfigCommandOutput } from "../commands/UpdateAppImageConfigCommand";
|
|
288
288
|
import { UpdateArtifactCommandInput, UpdateArtifactCommandOutput } from "../commands/UpdateArtifactCommand";
|
|
289
289
|
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "../commands/UpdateClusterCommand";
|
|
290
|
+
import { UpdateClusterSoftwareCommandInput, UpdateClusterSoftwareCommandOutput } from "../commands/UpdateClusterSoftwareCommand";
|
|
290
291
|
import { UpdateCodeRepositoryCommandInput, UpdateCodeRepositoryCommandOutput } from "../commands/UpdateCodeRepositoryCommand";
|
|
291
292
|
import { UpdateContextCommandInput, UpdateContextCommandOutput } from "../commands/UpdateContextCommand";
|
|
292
293
|
import { UpdateDeviceFleetCommandInput, UpdateDeviceFleetCommandOutput } from "../commands/UpdateDeviceFleetCommand";
|
|
@@ -1467,6 +1468,10 @@ export declare const se_UpdateArtifactCommand: (input: UpdateArtifactCommandInpu
|
|
|
1467
1468
|
* serializeAws_json1_1UpdateClusterCommand
|
|
1468
1469
|
*/
|
|
1469
1470
|
export declare const se_UpdateClusterCommand: (input: UpdateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1471
|
+
/**
|
|
1472
|
+
* serializeAws_json1_1UpdateClusterSoftwareCommand
|
|
1473
|
+
*/
|
|
1474
|
+
export declare const se_UpdateClusterSoftwareCommand: (input: UpdateClusterSoftwareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1470
1475
|
/**
|
|
1471
1476
|
* serializeAws_json1_1UpdateCodeRepositoryCommand
|
|
1472
1477
|
*/
|
|
@@ -2743,6 +2748,10 @@ export declare const de_UpdateArtifactCommand: (output: __HttpResponse, context:
|
|
|
2743
2748
|
* deserializeAws_json1_1UpdateClusterCommand
|
|
2744
2749
|
*/
|
|
2745
2750
|
export declare const de_UpdateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterCommandOutput>;
|
|
2751
|
+
/**
|
|
2752
|
+
* deserializeAws_json1_1UpdateClusterSoftwareCommand
|
|
2753
|
+
*/
|
|
2754
|
+
export declare const de_UpdateClusterSoftwareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterSoftwareCommandOutput>;
|
|
2746
2755
|
/**
|
|
2747
2756
|
* deserializeAws_json1_1UpdateCodeRepositoryCommand
|
|
2748
2757
|
*/
|
|
@@ -1147,6 +1147,10 @@ import {
|
|
|
1147
1147
|
UpdateClusterCommandInput,
|
|
1148
1148
|
UpdateClusterCommandOutput,
|
|
1149
1149
|
} from "./commands/UpdateClusterCommand";
|
|
1150
|
+
import {
|
|
1151
|
+
UpdateClusterSoftwareCommandInput,
|
|
1152
|
+
UpdateClusterSoftwareCommandOutput,
|
|
1153
|
+
} from "./commands/UpdateClusterSoftwareCommand";
|
|
1150
1154
|
import {
|
|
1151
1155
|
UpdateCodeRepositoryCommandInput,
|
|
1152
1156
|
UpdateCodeRepositoryCommandOutput,
|
|
@@ -5128,6 +5132,19 @@ export interface SageMaker {
|
|
|
5128
5132
|
options: __HttpHandlerOptions,
|
|
5129
5133
|
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
5130
5134
|
): void;
|
|
5135
|
+
updateClusterSoftware(
|
|
5136
|
+
args: UpdateClusterSoftwareCommandInput,
|
|
5137
|
+
options?: __HttpHandlerOptions
|
|
5138
|
+
): Promise<UpdateClusterSoftwareCommandOutput>;
|
|
5139
|
+
updateClusterSoftware(
|
|
5140
|
+
args: UpdateClusterSoftwareCommandInput,
|
|
5141
|
+
cb: (err: any, data?: UpdateClusterSoftwareCommandOutput) => void
|
|
5142
|
+
): void;
|
|
5143
|
+
updateClusterSoftware(
|
|
5144
|
+
args: UpdateClusterSoftwareCommandInput,
|
|
5145
|
+
options: __HttpHandlerOptions,
|
|
5146
|
+
cb: (err: any, data?: UpdateClusterSoftwareCommandOutput) => void
|
|
5147
|
+
): void;
|
|
5131
5148
|
updateCodeRepository(
|
|
5132
5149
|
args: UpdateCodeRepositoryCommandInput,
|
|
5133
5150
|
options?: __HttpHandlerOptions
|
|
@@ -1193,6 +1193,10 @@ import {
|
|
|
1193
1193
|
UpdateClusterCommandInput,
|
|
1194
1194
|
UpdateClusterCommandOutput,
|
|
1195
1195
|
} from "./commands/UpdateClusterCommand";
|
|
1196
|
+
import {
|
|
1197
|
+
UpdateClusterSoftwareCommandInput,
|
|
1198
|
+
UpdateClusterSoftwareCommandOutput,
|
|
1199
|
+
} from "./commands/UpdateClusterSoftwareCommand";
|
|
1196
1200
|
import {
|
|
1197
1201
|
UpdateCodeRepositoryCommandInput,
|
|
1198
1202
|
UpdateCodeRepositoryCommandOutput,
|
|
@@ -1616,6 +1620,7 @@ export type ServiceInputTypes =
|
|
|
1616
1620
|
| UpdateAppImageConfigCommandInput
|
|
1617
1621
|
| UpdateArtifactCommandInput
|
|
1618
1622
|
| UpdateClusterCommandInput
|
|
1623
|
+
| UpdateClusterSoftwareCommandInput
|
|
1619
1624
|
| UpdateCodeRepositoryCommandInput
|
|
1620
1625
|
| UpdateContextCommandInput
|
|
1621
1626
|
| UpdateDeviceFleetCommandInput
|
|
@@ -1936,6 +1941,7 @@ export type ServiceOutputTypes =
|
|
|
1936
1941
|
| UpdateAppImageConfigCommandOutput
|
|
1937
1942
|
| UpdateArtifactCommandOutput
|
|
1938
1943
|
| UpdateClusterCommandOutput
|
|
1944
|
+
| UpdateClusterSoftwareCommandOutput
|
|
1939
1945
|
| UpdateCodeRepositoryCommandOutput
|
|
1940
1946
|
| UpdateContextCommandOutput
|
|
1941
1947
|
| UpdateDeviceFleetCommandOutput
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateClusterSoftwareRequest,
|
|
5
|
+
UpdateClusterSoftwareResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
SageMakerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../SageMakerClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateClusterSoftwareCommandInput
|
|
14
|
+
extends UpdateClusterSoftwareRequest {}
|
|
15
|
+
export interface UpdateClusterSoftwareCommandOutput
|
|
16
|
+
extends UpdateClusterSoftwareResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateClusterSoftwareCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateClusterSoftwareCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateClusterSoftwareCommandInput,
|
|
23
|
+
UpdateClusterSoftwareCommandOutput,
|
|
24
|
+
SageMakerClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class UpdateClusterSoftwareCommand extends UpdateClusterSoftwareCommand_base {}
|
|
@@ -285,6 +285,7 @@ export * from "./UpdateActionCommand";
|
|
|
285
285
|
export * from "./UpdateAppImageConfigCommand";
|
|
286
286
|
export * from "./UpdateArtifactCommand";
|
|
287
287
|
export * from "./UpdateClusterCommand";
|
|
288
|
+
export * from "./UpdateClusterSoftwareCommand";
|
|
288
289
|
export * from "./UpdateCodeRepositoryCommand";
|
|
289
290
|
export * from "./UpdateContextCommand";
|
|
290
291
|
export * from "./UpdateDeviceFleetCommand";
|
|
@@ -1200,6 +1200,12 @@ export interface UpdateClusterRequest {
|
|
|
1200
1200
|
export interface UpdateClusterResponse {
|
|
1201
1201
|
ClusterArn: string | undefined;
|
|
1202
1202
|
}
|
|
1203
|
+
export interface UpdateClusterSoftwareRequest {
|
|
1204
|
+
ClusterName: string | undefined;
|
|
1205
|
+
}
|
|
1206
|
+
export interface UpdateClusterSoftwareResponse {
|
|
1207
|
+
ClusterArn: string | undefined;
|
|
1208
|
+
}
|
|
1203
1209
|
export interface UpdateCodeRepositoryInput {
|
|
1204
1210
|
CodeRepositoryName: string | undefined;
|
|
1205
1211
|
GitConfig?: GitConfigForUpdate;
|
|
@@ -1151,6 +1151,10 @@ import {
|
|
|
1151
1151
|
UpdateClusterCommandInput,
|
|
1152
1152
|
UpdateClusterCommandOutput,
|
|
1153
1153
|
} from "../commands/UpdateClusterCommand";
|
|
1154
|
+
import {
|
|
1155
|
+
UpdateClusterSoftwareCommandInput,
|
|
1156
|
+
UpdateClusterSoftwareCommandOutput,
|
|
1157
|
+
} from "../commands/UpdateClusterSoftwareCommand";
|
|
1154
1158
|
import {
|
|
1155
1159
|
UpdateCodeRepositoryCommandInput,
|
|
1156
1160
|
UpdateCodeRepositoryCommandOutput,
|
|
@@ -2427,6 +2431,10 @@ export declare const se_UpdateClusterCommand: (
|
|
|
2427
2431
|
input: UpdateClusterCommandInput,
|
|
2428
2432
|
context: __SerdeContext
|
|
2429
2433
|
) => Promise<__HttpRequest>;
|
|
2434
|
+
export declare const se_UpdateClusterSoftwareCommand: (
|
|
2435
|
+
input: UpdateClusterSoftwareCommandInput,
|
|
2436
|
+
context: __SerdeContext
|
|
2437
|
+
) => Promise<__HttpRequest>;
|
|
2430
2438
|
export declare const se_UpdateCodeRepositoryCommand: (
|
|
2431
2439
|
input: UpdateCodeRepositoryCommandInput,
|
|
2432
2440
|
context: __SerdeContext
|
|
@@ -3703,6 +3711,10 @@ export declare const de_UpdateClusterCommand: (
|
|
|
3703
3711
|
output: __HttpResponse,
|
|
3704
3712
|
context: __SerdeContext
|
|
3705
3713
|
) => Promise<UpdateClusterCommandOutput>;
|
|
3714
|
+
export declare const de_UpdateClusterSoftwareCommand: (
|
|
3715
|
+
output: __HttpResponse,
|
|
3716
|
+
context: __SerdeContext
|
|
3717
|
+
) => Promise<UpdateClusterSoftwareCommandOutput>;
|
|
3706
3718
|
export declare const de_UpdateCodeRepositoryCommand: (
|
|
3707
3719
|
output: __HttpResponse,
|
|
3708
3720
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.515.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.515.0",
|
|
24
24
|
"@aws-sdk/core": "3.513.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.515.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.515.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.515.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.515.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.515.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.515.0",
|
|
31
|
+
"@aws-sdk/types": "3.515.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.515.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.515.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.515.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.1.1",
|
|
36
36
|
"@smithy/core": "^1.3.2",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.4.1",
|
|
@@ -59,13 +59,13 @@
|
|
|
59
59
|
"@smithy/util-utf8": "^2.1.1",
|
|
60
60
|
"@smithy/util-waiter": "^2.1.1",
|
|
61
61
|
"tslib": "^2.5.0",
|
|
62
|
-
"uuid": "^
|
|
62
|
+
"uuid": "^9.0.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@smithy/service-client-documentation-generator": "^2.1.1",
|
|
66
66
|
"@tsconfig/node14": "1.0.3",
|
|
67
67
|
"@types/node": "^14.14.31",
|
|
68
|
-
"@types/uuid": "^
|
|
68
|
+
"@types/uuid": "^9.0.4",
|
|
69
69
|
"concurrently": "7.0.0",
|
|
70
70
|
"downlevel-dts": "0.10.1",
|
|
71
71
|
"rimraf": "3.0.2",
|