@aws-sdk/client-sagemaker 3.461.0 → 3.464.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 +104 -0
- package/dist-cjs/SageMaker.js +26 -0
- package/dist-cjs/commands/CreateClusterCommand.js +51 -0
- package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
- package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
- package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
- package/dist-cjs/commands/ListClustersCommand.js +51 -0
- package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +77 -64
- package/dist-cjs/models/models_1.js +85 -51
- package/dist-cjs/models/models_2.js +58 -83
- package/dist-cjs/models/models_3.js +89 -64
- package/dist-cjs/models/models_4.js +65 -3
- package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1046 -36
- package/dist-es/SageMaker.js +26 -0
- package/dist-es/commands/CreateClusterCommand.js +47 -0
- package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/CreateWorkforceCommand.js +1 -1
- package/dist-es/commands/DeleteClusterCommand.js +47 -0
- package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
- package/dist-es/commands/DescribeClusterCommand.js +47 -0
- package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
- package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
- package/dist-es/commands/ListClusterNodesCommand.js +47 -0
- package/dist-es/commands/ListClustersCommand.js +47 -0
- package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
- package/dist-es/commands/UpdateClusterCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +74 -62
- package/dist-es/models/models_1.js +84 -48
- package/dist-es/models/models_2.js +55 -82
- package/dist-es/models/models_3.js +87 -62
- package/dist-es/models/models_4.js +63 -1
- package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1006 -22
- package/dist-types/SageMaker.d.ts +91 -0
- package/dist-types/SageMakerClient.d.ts +15 -2
- package/dist-types/commands/AddTagsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppCommand.d.ts +3 -2
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +64 -17
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +45 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +4 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +56 -2
- package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
- package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAppCommand.d.ts +3 -2
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +56 -9
- package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +46 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +5 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +55 -1
- package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +13 -0
- package/dist-types/commands/ListAppsCommand.d.ts +8 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
- package/dist-types/commands/ListClustersCommand.d.ts +87 -0
- package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +4 -4
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +58 -7
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
- package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +39 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +616 -544
- package/dist-types/models/models_1.d.ts +7904 -8160
- package/dist-types/models/models_2.d.ts +4780 -5344
- package/dist-types/models/models_3.d.ts +5386 -4662
- package/dist-types/models/models_4.d.ts +2031 -4
- package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
- package/dist-types/ts3.4/SageMaker.d.ts +227 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -175
- package/dist-types/ts3.4/models/models_1.d.ts +302 -309
- package/dist-types/ts3.4/models/models_2.d.ts +388 -490
- package/dist-types/ts3.4/models/models_3.d.ts +574 -472
- package/dist-types/ts3.4/models/models_4.d.ts +534 -29
- package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.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 +156 -0
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { CreateUserProfileRequest, CreateUserProfileResponse } from "../models/
|
|
4
|
+
import { CreateUserProfileRequest, CreateUserProfileResponse } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -25,7 +25,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Creates a user profile. A user profile represents a single user within a domain, and is
|
|
27
27
|
* the main way to reference a "person" for the purposes of sharing, reporting, and other
|
|
28
|
-
* user-oriented features. This entity is created when a user onboards to
|
|
28
|
+
* user-oriented features. This entity is created when a user onboards to a domain. If an
|
|
29
29
|
* administrator invites a person by email or imports them from IAM Identity Center, a user profile is
|
|
30
30
|
* automatically created. A user profile is the primary holder of settings for an individual
|
|
31
31
|
* user and has a reference to the user's private Amazon Elastic File System (EFS) home directory.
|
|
@@ -61,6 +61,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
61
61
|
* DefaultResourceSpec: { // ResourceSpec
|
|
62
62
|
* SageMakerImageArn: "STRING_VALUE",
|
|
63
63
|
* SageMakerImageVersionArn: "STRING_VALUE",
|
|
64
|
+
* SageMakerImageVersionAlias: "STRING_VALUE",
|
|
64
65
|
* InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge",
|
|
65
66
|
* LifecycleConfigArn: "STRING_VALUE",
|
|
66
67
|
* },
|
|
@@ -77,6 +78,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
77
78
|
* DefaultResourceSpec: {
|
|
78
79
|
* SageMakerImageArn: "STRING_VALUE",
|
|
79
80
|
* SageMakerImageVersionArn: "STRING_VALUE",
|
|
81
|
+
* SageMakerImageVersionAlias: "STRING_VALUE",
|
|
80
82
|
* InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge",
|
|
81
83
|
* LifecycleConfigArn: "STRING_VALUE",
|
|
82
84
|
* },
|
|
@@ -95,6 +97,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
95
97
|
* DefaultResourceSpec: {
|
|
96
98
|
* SageMakerImageArn: "STRING_VALUE",
|
|
97
99
|
* SageMakerImageVersionArn: "STRING_VALUE",
|
|
100
|
+
* SageMakerImageVersionAlias: "STRING_VALUE",
|
|
98
101
|
* InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge",
|
|
99
102
|
* LifecycleConfigArn: "STRING_VALUE",
|
|
100
103
|
* },
|
|
@@ -107,6 +110,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
107
110
|
* DefaultResourceSpec: {
|
|
108
111
|
* SageMakerImageArn: "STRING_VALUE",
|
|
109
112
|
* SageMakerImageVersionArn: "STRING_VALUE",
|
|
113
|
+
* SageMakerImageVersionAlias: "STRING_VALUE",
|
|
110
114
|
* InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge",
|
|
111
115
|
* LifecycleConfigArn: "STRING_VALUE",
|
|
112
116
|
* },
|
|
@@ -145,6 +149,56 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
145
149
|
* Status: "ENABLED" || "DISABLED",
|
|
146
150
|
* },
|
|
147
151
|
* },
|
|
152
|
+
* JupyterLabAppSettings: { // JupyterLabAppSettings
|
|
153
|
+
* DefaultResourceSpec: {
|
|
154
|
+
* SageMakerImageArn: "STRING_VALUE",
|
|
155
|
+
* SageMakerImageVersionArn: "STRING_VALUE",
|
|
156
|
+
* SageMakerImageVersionAlias: "STRING_VALUE",
|
|
157
|
+
* InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge",
|
|
158
|
+
* LifecycleConfigArn: "STRING_VALUE",
|
|
159
|
+
* },
|
|
160
|
+
* CustomImages: [
|
|
161
|
+
* {
|
|
162
|
+
* ImageName: "STRING_VALUE", // required
|
|
163
|
+
* ImageVersionNumber: Number("int"),
|
|
164
|
+
* AppImageConfigName: "STRING_VALUE", // required
|
|
165
|
+
* },
|
|
166
|
+
* ],
|
|
167
|
+
* LifecycleConfigArns: [
|
|
168
|
+
* "STRING_VALUE",
|
|
169
|
+
* ],
|
|
170
|
+
* CodeRepositories: [
|
|
171
|
+
* {
|
|
172
|
+
* RepositoryUrl: "STRING_VALUE", // required
|
|
173
|
+
* },
|
|
174
|
+
* ],
|
|
175
|
+
* },
|
|
176
|
+
* CodeEditorAppSettings: { // CodeEditorAppSettings
|
|
177
|
+
* DefaultResourceSpec: "<ResourceSpec>",
|
|
178
|
+
* LifecycleConfigArns: [
|
|
179
|
+
* "STRING_VALUE",
|
|
180
|
+
* ],
|
|
181
|
+
* },
|
|
182
|
+
* SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
183
|
+
* DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
184
|
+
* DefaultEbsVolumeSizeInGb: Number("int"), // required
|
|
185
|
+
* MaximumEbsVolumeSizeInGb: Number("int"), // required
|
|
186
|
+
* },
|
|
187
|
+
* },
|
|
188
|
+
* DefaultLandingUri: "STRING_VALUE",
|
|
189
|
+
* StudioWebPortal: "ENABLED" || "DISABLED",
|
|
190
|
+
* CustomPosixUserConfig: { // CustomPosixUserConfig
|
|
191
|
+
* Uid: Number("long"), // required
|
|
192
|
+
* Gid: Number("long"), // required
|
|
193
|
+
* },
|
|
194
|
+
* CustomFileSystemConfigs: [ // CustomFileSystemConfigs
|
|
195
|
+
* { // CustomFileSystemConfig Union: only one key present
|
|
196
|
+
* EFSFileSystemConfig: { // EFSFileSystemConfig
|
|
197
|
+
* FileSystemId: "STRING_VALUE", // required
|
|
198
|
+
* FileSystemPath: "STRING_VALUE",
|
|
199
|
+
* },
|
|
200
|
+
* },
|
|
201
|
+
* ],
|
|
148
202
|
* },
|
|
149
203
|
* };
|
|
150
204
|
* const command = new CreateUserProfileCommand(input);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { CreateWorkforceRequest, CreateWorkforceResponse } from "../models/
|
|
4
|
+
import { CreateWorkforceRequest, CreateWorkforceResponse } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { CreateWorkteamRequest, CreateWorkteamResponse } from "../models/
|
|
4
|
+
import { CreateWorkteamRequest, CreateWorkteamResponse } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteActionRequest, DeleteActionResponse } from "../models/
|
|
4
|
+
import { DeleteActionRequest, DeleteActionResponse } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteAlgorithmInput } from "../models/
|
|
4
|
+
import { DeleteAlgorithmInput } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteAppRequest } from "../models/
|
|
4
|
+
import { DeleteAppRequest } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -33,7 +33,7 @@ export interface DeleteAppCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* const input = { // DeleteAppRequest
|
|
34
34
|
* DomainId: "STRING_VALUE", // required
|
|
35
35
|
* UserProfileName: "STRING_VALUE",
|
|
36
|
-
* AppType: "JupyterServer" || "KernelGateway" || "TensorBoard" || "RStudioServerPro" || "RSessionGateway", // required
|
|
36
|
+
* AppType: "JupyterServer" || "KernelGateway" || "TensorBoard" || "RStudioServerPro" || "RSessionGateway" || "JupyterLab" || "CodeEditor", // required
|
|
37
37
|
* AppName: "STRING_VALUE", // required
|
|
38
38
|
* SpaceName: "STRING_VALUE",
|
|
39
39
|
* };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteAppImageConfigRequest } from "../models/
|
|
4
|
+
import { DeleteAppImageConfigRequest } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteArtifactRequest, DeleteArtifactResponse } from "../models/
|
|
4
|
+
import { DeleteArtifactRequest, DeleteArtifactResponse } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteAssociationRequest, DeleteAssociationResponse } from "../models/
|
|
4
|
+
import { DeleteAssociationRequest, DeleteAssociationResponse } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_2";
|
|
5
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteClusterCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteClusterCommandInput extends DeleteClusterRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteClusterCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Delete a SageMaker HyperPod cluster.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { SageMakerClient, DeleteClusterCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
31
|
+
* // const { SageMakerClient, DeleteClusterCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
32
|
+
* const client = new SageMakerClient(config);
|
|
33
|
+
* const input = { // DeleteClusterRequest
|
|
34
|
+
* ClusterName: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
36
|
+
* const command = new DeleteClusterCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // { // DeleteClusterResponse
|
|
39
|
+
* // ClusterArn: "STRING_VALUE", // required
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
|
|
45
|
+
* @returns {@link DeleteClusterCommandOutput}
|
|
46
|
+
* @see {@link DeleteClusterCommandInput} for command's `input` shape.
|
|
47
|
+
* @see {@link DeleteClusterCommandOutput} for command's `response` shape.
|
|
48
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ConflictException} (client fault)
|
|
51
|
+
* <p>There was a conflict when you attempted to modify a SageMaker entity such as an
|
|
52
|
+
* <code>Experiment</code> or <code>Artifact</code>.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
55
|
+
* <p>Resource being access is not found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link SageMakerServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
61
|
+
export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, SageMakerClientResolvedConfig> {
|
|
62
|
+
readonly input: DeleteClusterCommandInput;
|
|
63
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
constructor(input: DeleteClusterCommandInput);
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
private deserialize;
|
|
80
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DeleteInferenceComponentInput } from "../models/models_2";
|
|
5
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteInferenceComponentCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteInferenceComponentCommandInput extends DeleteInferenceComponentInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteInferenceComponentCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteInferenceComponentCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Deletes an inference component.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { SageMakerClient, DeleteInferenceComponentCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
31
|
+
* // const { SageMakerClient, DeleteInferenceComponentCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
32
|
+
* const client = new SageMakerClient(config);
|
|
33
|
+
* const input = { // DeleteInferenceComponentInput
|
|
34
|
+
* InferenceComponentName: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
36
|
+
* const command = new DeleteInferenceComponentCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* @param DeleteInferenceComponentCommandInput - {@link DeleteInferenceComponentCommandInput}
|
|
43
|
+
* @returns {@link DeleteInferenceComponentCommandOutput}
|
|
44
|
+
* @see {@link DeleteInferenceComponentCommandInput} for command's `input` shape.
|
|
45
|
+
* @see {@link DeleteInferenceComponentCommandOutput} for command's `response` shape.
|
|
46
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link SageMakerServiceException}
|
|
49
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
50
|
+
*
|
|
51
|
+
*/
|
|
52
|
+
export declare class DeleteInferenceComponentCommand extends $Command<DeleteInferenceComponentCommandInput, DeleteInferenceComponentCommandOutput, SageMakerClientResolvedConfig> {
|
|
53
|
+
readonly input: DeleteInferenceComponentCommandInput;
|
|
54
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
constructor(input: DeleteInferenceComponentCommandInput);
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteInferenceComponentCommandInput, DeleteInferenceComponentCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
70
|
+
private deserialize;
|
|
71
|
+
}
|
|
@@ -23,7 +23,7 @@ export interface DeleteStudioLifecycleConfigCommandOutput extends __MetadataBear
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Deletes the Studio Lifecycle Configuration. In order to delete the Lifecycle Configuration, there must be no running apps using the Lifecycle Configuration. You must also remove the Lifecycle Configuration from UserSettings in all Domains and UserProfiles.</p>
|
|
26
|
+
* <p>Deletes the Amazon SageMaker Studio Lifecycle Configuration. In order to delete the Lifecycle Configuration, there must be no running apps using the Lifecycle Configuration. You must also remove the Lifecycle Configuration from UserSettings in all Domains and UserProfiles.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -31,8 +31,8 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea
|
|
|
31
31
|
* launched before you called this API.</p>
|
|
32
32
|
* </note>
|
|
33
33
|
* <note>
|
|
34
|
-
* <p>When you call this API to delete tags from a SageMaker
|
|
35
|
-
* Profile, the deleted tags are not removed from Apps that the SageMaker
|
|
34
|
+
* <p>When you call this API to delete tags from a SageMaker Domain or User
|
|
35
|
+
* Profile, the deleted tags are not removed from Apps that the SageMaker Domain
|
|
36
36
|
* or User Profile launched before you called this API.</p>
|
|
37
37
|
* </note>
|
|
38
38
|
* @example
|
|
@@ -33,7 +33,7 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
|
|
|
33
33
|
* const input = { // DescribeAppRequest
|
|
34
34
|
* DomainId: "STRING_VALUE", // required
|
|
35
35
|
* UserProfileName: "STRING_VALUE",
|
|
36
|
-
* AppType: "JupyterServer" || "KernelGateway" || "TensorBoard" || "RStudioServerPro" || "RSessionGateway", // required
|
|
36
|
+
* AppType: "JupyterServer" || "KernelGateway" || "TensorBoard" || "RStudioServerPro" || "RSessionGateway" || "JupyterLab" || "CodeEditor", // required
|
|
37
37
|
* AppName: "STRING_VALUE", // required
|
|
38
38
|
* SpaceName: "STRING_VALUE",
|
|
39
39
|
* };
|
|
@@ -41,7 +41,7 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
|
|
|
41
41
|
* const response = await client.send(command);
|
|
42
42
|
* // { // DescribeAppResponse
|
|
43
43
|
* // AppArn: "STRING_VALUE",
|
|
44
|
-
* // AppType: "JupyterServer" || "KernelGateway" || "TensorBoard" || "RStudioServerPro" || "RSessionGateway",
|
|
44
|
+
* // AppType: "JupyterServer" || "KernelGateway" || "TensorBoard" || "RStudioServerPro" || "RSessionGateway" || "JupyterLab" || "CodeEditor",
|
|
45
45
|
* // AppName: "STRING_VALUE",
|
|
46
46
|
* // DomainId: "STRING_VALUE",
|
|
47
47
|
* // UserProfileName: "STRING_VALUE",
|
|
@@ -53,6 +53,7 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
|
|
|
53
53
|
* // ResourceSpec: { // ResourceSpec
|
|
54
54
|
* // SageMakerImageArn: "STRING_VALUE",
|
|
55
55
|
* // SageMakerImageVersionArn: "STRING_VALUE",
|
|
56
|
+
* // SageMakerImageVersionAlias: "STRING_VALUE",
|
|
56
57
|
* // InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge",
|
|
57
58
|
* // LifecycleConfigArn: "STRING_VALUE",
|
|
58
59
|
* // },
|
|
@@ -53,6 +53,19 @@ export interface DescribeAppImageConfigCommandOutput extends DescribeAppImageCon
|
|
|
53
53
|
* // DefaultGid: Number("int"),
|
|
54
54
|
* // },
|
|
55
55
|
* // },
|
|
56
|
+
* // JupyterLabAppImageConfig: { // JupyterLabAppImageConfig
|
|
57
|
+
* // ContainerConfig: { // ContainerConfig
|
|
58
|
+
* // ContainerArguments: [ // CustomImageContainerArguments
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // ContainerEntrypoint: [ // CustomImageContainerEntrypoint
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // ContainerEnvironmentVariables: { // CustomImageContainerEnvironmentVariables
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
56
69
|
* // };
|
|
57
70
|
*
|
|
58
71
|
* ```
|
|
@@ -142,6 +142,9 @@ export interface DescribeAutoMLJobV2CommandOutput extends DescribeAutoMLJobV2Res
|
|
|
142
142
|
* // MaxAutoMLJobRuntimeInSeconds: Number("int"),
|
|
143
143
|
* // },
|
|
144
144
|
* // BaseModelName: "STRING_VALUE",
|
|
145
|
+
* // TextGenerationHyperParameters: { // TextGenerationHyperParameters
|
|
146
|
+
* // "<keys>": "STRING_VALUE",
|
|
147
|
+
* // },
|
|
145
148
|
* // },
|
|
146
149
|
* // },
|
|
147
150
|
* // CreationTime: new Date("TIMESTAMP"), // required
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_2";
|
|
5
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeClusterCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeClusterCommandInput extends DescribeClusterRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeClusterCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeClusterCommandOutput extends DescribeClusterResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves information of a SageMaker HyperPod cluster.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { SageMakerClient, DescribeClusterCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
31
|
+
* // const { SageMakerClient, DescribeClusterCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
32
|
+
* const client = new SageMakerClient(config);
|
|
33
|
+
* const input = { // DescribeClusterRequest
|
|
34
|
+
* ClusterName: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
36
|
+
* const command = new DescribeClusterCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeClusterResponse
|
|
39
|
+
* // ClusterArn: "STRING_VALUE", // required
|
|
40
|
+
* // ClusterName: "STRING_VALUE",
|
|
41
|
+
* // ClusterStatus: "Creating" || "Deleting" || "Failed" || "InService" || "RollingBack" || "SystemUpdating" || "Updating", // required
|
|
42
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // FailureMessage: "STRING_VALUE",
|
|
44
|
+
* // InstanceGroups: [ // ClusterInstanceGroupDetailsList // required
|
|
45
|
+
* // { // ClusterInstanceGroupDetails
|
|
46
|
+
* // CurrentCount: Number("int"),
|
|
47
|
+
* // TargetCount: Number("int"),
|
|
48
|
+
* // InstanceGroupName: "STRING_VALUE",
|
|
49
|
+
* // InstanceType: "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.p5.48xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.c5n.large" || "ml.c5n.2xlarge" || "ml.c5n.4xlarge" || "ml.c5n.9xlarge" || "ml.c5n.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge",
|
|
50
|
+
* // LifeCycleConfig: { // ClusterLifeCycleConfig
|
|
51
|
+
* // SourceS3Uri: "STRING_VALUE", // required
|
|
52
|
+
* // OnCreate: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ExecutionRole: "STRING_VALUE",
|
|
55
|
+
* // ThreadsPerCore: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // VpcConfig: { // VpcConfig
|
|
59
|
+
* // SecurityGroupIds: [ // VpcSecurityGroupIds // required
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // Subnets: [ // Subnets // required
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
68
|
+
* ```
|
|
69
|
+
*
|
|
70
|
+
* @param DescribeClusterCommandInput - {@link DescribeClusterCommandInput}
|
|
71
|
+
* @returns {@link DescribeClusterCommandOutput}
|
|
72
|
+
* @see {@link DescribeClusterCommandInput} for command's `input` shape.
|
|
73
|
+
* @see {@link DescribeClusterCommandOutput} for command's `response` shape.
|
|
74
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
77
|
+
* <p>Resource being access is not found.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link SageMakerServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
81
|
+
*
|
|
82
|
+
*/
|
|
83
|
+
export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, SageMakerClientResolvedConfig> {
|
|
84
|
+
readonly input: DescribeClusterCommandInput;
|
|
85
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
constructor(input: DescribeClusterCommandInput);
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
private deserialize;
|
|
102
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DescribeClusterNodeRequest, DescribeClusterNodeResponse } from "../models/models_2";
|
|
5
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeClusterNodeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeClusterNodeCommandInput extends DescribeClusterNodeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeClusterNodeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeClusterNodeCommandOutput extends DescribeClusterNodeResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves information of an instance (also called a <i>node</i>
|
|
27
|
+
* interchangeably) of a SageMaker HyperPod cluster.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { SageMakerClient, DescribeClusterNodeCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
32
|
+
* // const { SageMakerClient, DescribeClusterNodeCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
33
|
+
* const client = new SageMakerClient(config);
|
|
34
|
+
* const input = { // DescribeClusterNodeRequest
|
|
35
|
+
* ClusterName: "STRING_VALUE", // required
|
|
36
|
+
* NodeId: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new DescribeClusterNodeCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // DescribeClusterNodeResponse
|
|
41
|
+
* // NodeDetails: { // ClusterNodeDetails
|
|
42
|
+
* // InstanceGroupName: "STRING_VALUE",
|
|
43
|
+
* // InstanceId: "STRING_VALUE",
|
|
44
|
+
* // InstanceStatus: { // ClusterInstanceStatusDetails
|
|
45
|
+
* // Status: "Running" || "Failure" || "Pending" || "ShuttingDown" || "SystemUpdating", // required
|
|
46
|
+
* // Message: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // InstanceType: "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.p5.48xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.c5n.large" || "ml.c5n.2xlarge" || "ml.c5n.4xlarge" || "ml.c5n.9xlarge" || "ml.c5n.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge",
|
|
49
|
+
* // LaunchTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // LifeCycleConfig: { // ClusterLifeCycleConfig
|
|
51
|
+
* // SourceS3Uri: "STRING_VALUE", // required
|
|
52
|
+
* // OnCreate: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ThreadsPerCore: Number("int"),
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param DescribeClusterNodeCommandInput - {@link DescribeClusterNodeCommandInput}
|
|
61
|
+
* @returns {@link DescribeClusterNodeCommandOutput}
|
|
62
|
+
* @see {@link DescribeClusterNodeCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link DescribeClusterNodeCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
67
|
+
* <p>Resource being access is not found.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link SageMakerServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
71
|
+
*
|
|
72
|
+
*/
|
|
73
|
+
export declare class DescribeClusterNodeCommand extends $Command<DescribeClusterNodeCommandInput, DescribeClusterNodeCommandOutput, SageMakerClientResolvedConfig> {
|
|
74
|
+
readonly input: DescribeClusterNodeCommandInput;
|
|
75
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
constructor(input: DescribeClusterNodeCommandInput);
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClusterNodeCommandInput, DescribeClusterNodeCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
private deserialize;
|
|
92
|
+
}
|