Skip to content

Commit b527f8c

Browse files
author
awstools
committed
feat(client-sagemaker): SageMaker AI Studio users can now migrate to SageMaker Unified Studio, which offers a unified web-based development experience that integrates AWS data, analytics, artificial intelligence (AI), and machine learning (ML) services, as well as additional tools and resource
1 parent 338d401 commit b527f8c

17 files changed

+379
-140
lines changed

clients/client-sagemaker/src/commands/CreateDomainCommand.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,15 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
319319
* Status: "ENABLED" || "DISABLED",
320320
* QProfileArn: "STRING_VALUE",
321321
* },
322+
* UnifiedStudioSettings: { // UnifiedStudioSettings
323+
* StudioWebPortalAccess: "ENABLED" || "DISABLED",
324+
* DomainAccountId: "STRING_VALUE",
325+
* DomainRegion: "STRING_VALUE",
326+
* DomainId: "STRING_VALUE",
327+
* ProjectId: "STRING_VALUE",
328+
* EnvironmentId: "STRING_VALUE",
329+
* ProjectS3Path: "STRING_VALUE",
330+
* },
322331
* },
323332
* SubnetIds: [ // Subnets // required
324333
* "STRING_VALUE",

clients/client-sagemaker/src/commands/CreateSpaceCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ export interface CreateSpaceCommandOutput extends CreateSpaceResponse, __Metadat
120120
* EbsVolumeSizeInGb: Number("int"), // required
121121
* },
122122
* },
123+
* SpaceManagedResources: "ENABLED" || "DISABLED",
123124
* CustomFileSystems: [ // CustomFileSystems
124125
* { // CustomFileSystem Union: only one key present
125126
* EFSFileSystem: { // EFSFileSystem

clients/client-sagemaker/src/commands/DescribeDomainCommand.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,15 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
291291
* // Status: "ENABLED" || "DISABLED",
292292
* // QProfileArn: "STRING_VALUE",
293293
* // },
294+
* // UnifiedStudioSettings: { // UnifiedStudioSettings
295+
* // StudioWebPortalAccess: "ENABLED" || "DISABLED",
296+
* // DomainAccountId: "STRING_VALUE",
297+
* // DomainRegion: "STRING_VALUE",
298+
* // DomainId: "STRING_VALUE",
299+
* // ProjectId: "STRING_VALUE",
300+
* // EnvironmentId: "STRING_VALUE",
301+
* // ProjectS3Path: "STRING_VALUE",
302+
* // },
294303
* // },
295304
* // AppNetworkAccessType: "PublicInternetOnly" || "VpcOnly",
296305
* // HomeEfsFileSystemKmsKeyId: "STRING_VALUE",

clients/client-sagemaker/src/commands/DescribeHubCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { Command as $Command } from "@smithy/smithy-client";
55
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import { DescribeHubRequest, DescribeHubResponse } from "../models/models_2";
8+
import { DescribeHubRequest } from "../models/models_2";
9+
import { DescribeHubResponse } from "../models/models_3";
910
import { de_DescribeHubCommand, se_DescribeHubCommand } from "../protocols/Aws_json1_1";
1011
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
1112

clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ export interface DescribeSpaceCommandOutput extends DescribeSpaceResponse, __Met
126126
* // EbsVolumeSizeInGb: Number("int"), // required
127127
* // },
128128
* // },
129+
* // SpaceManagedResources: "ENABLED" || "DISABLED",
129130
* // CustomFileSystems: [ // CustomFileSystems
130131
* // { // CustomFileSystem Union: only one key present
131132
* // EFSFileSystem: { // EFSFileSystem

clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export interface SearchTrainingPlanOfferingsCommandOutput
5252
* // const { SageMakerClient, SearchTrainingPlanOfferingsCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
5353
* const client = new SageMakerClient(config);
5454
* const input = { // SearchTrainingPlanOfferingsRequest
55-
* InstanceType: "ml.p4d.24xlarge" || "ml.p5.48xlarge" || "ml.p5e.48xlarge" || "ml.p5en.48xlarge" || "ml.trn1.32xlarge" || "ml.trn2.48xlarge", // required
56-
* InstanceCount: Number("int"), // required
55+
* InstanceType: "ml.p4d.24xlarge" || "ml.p5.48xlarge" || "ml.p5e.48xlarge" || "ml.p5en.48xlarge" || "ml.trn1.32xlarge" || "ml.trn2.48xlarge",
56+
* InstanceCount: Number("int"),
5757
* StartTimeAfter: new Date("TIMESTAMP"),
5858
* EndTimeBefore: new Date("TIMESTAMP"),
5959
* DurationHours: Number("long"), // required

clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { Command as $Command } from "@smithy/smithy-client";
55
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import { StopInferenceExperimentRequest, StopInferenceExperimentResponse } from "../models/models_4";
8+
import { StopInferenceExperimentRequest } from "../models/models_4";
9+
import { StopInferenceExperimentResponse } from "../models/models_5";
910
import { de_StopInferenceExperimentCommand, se_StopInferenceExperimentCommand } from "../protocols/Aws_json1_1";
1011
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
1112

clients/client-sagemaker/src/commands/UpdateDomainCommand.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,15 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
275275
* Status: "ENABLED" || "DISABLED",
276276
* QProfileArn: "STRING_VALUE",
277277
* },
278+
* UnifiedStudioSettings: { // UnifiedStudioSettings
279+
* StudioWebPortalAccess: "ENABLED" || "DISABLED",
280+
* DomainAccountId: "STRING_VALUE",
281+
* DomainRegion: "STRING_VALUE",
282+
* DomainId: "STRING_VALUE",
283+
* ProjectId: "STRING_VALUE",
284+
* EnvironmentId: "STRING_VALUE",
285+
* ProjectS3Path: "STRING_VALUE",
286+
* },
278287
* },
279288
* AppSecurityGroupManagement: "Service" || "Customer",
280289
* DefaultSpaceSettings: { // DefaultSpaceSettings

clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ export interface UpdateSpaceCommandOutput extends UpdateSpaceResponse, __Metadat
117117
* EbsVolumeSizeInGb: Number("int"), // required
118118
* },
119119
* },
120+
* SpaceManagedResources: "ENABLED" || "DISABLED",
120121
* CustomFileSystems: [ // CustomFileSystems
121122
* { // CustomFileSystem Union: only one key present
122123
* EFSFileSystem: { // EFSFileSystem

clients/client-sagemaker/src/models/models_0.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10151,7 +10151,7 @@ export interface ClusterNodeDetails {
1015110151
LaunchTime?: Date | undefined;
1015210152

1015310153
/**
10154-
* <p>The time of when the cluster was last updated.</p>
10154+
* <p>The time when the cluster was last updated.</p>
1015510155
* @public
1015610156
*/
1015710157
LastSoftwareUpdateTime?: Date | undefined;
@@ -10255,7 +10255,7 @@ export interface ClusterNodeSummary {
1025510255
LaunchTime: Date | undefined;
1025610256

1025710257
/**
10258-
* <p>The time of when SageMaker last updated the software of the instances in the cluster.</p>
10258+
* <p>The time when SageMaker last updated the software of the instances in the cluster.</p>
1025910259
* @public
1026010260
*/
1026110261
LastSoftwareUpdateTime?: Date | undefined;

0 commit comments

Comments
 (0)