Skip to content

Commit

Permalink
feat(client-sagemaker): Amazon SageMaker Inference now supports P4de …
Browse files Browse the repository at this point in the history
…instance types.
  • Loading branch information
awstools committed Jan 23, 2023
1 parent a3fb14e commit e3a9fba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion clients/client-sagemaker/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ export enum ProductionVariantInstanceType {
ML_P3_16XLARGE = "ml.p3.16xlarge",
ML_P3_2XLARGE = "ml.p3.2xlarge",
ML_P3_8XLARGE = "ml.p3.8xlarge",
ML_P4DE_24XLARGE = "ml.p4de.24xlarge",
ML_P4D_24XLARGE = "ml.p4d.24xlarge",
ML_R5D_12XLARGE = "ml.r5d.12xlarge",
ML_R5D_24XLARGE = "ml.r5d.24xlarge",
Expand Down Expand Up @@ -9264,7 +9265,7 @@ export interface ProductionVariant {

/**
* <p>The size, in GB, of the ML storage volume attached to individual inference instance
* associated with the production variant. Currenly only Amazon EBS gp2 storage volumes are
* associated with the production variant. Currently only Amazon EBS gp2 storage volumes are
* supported.</p>
*/
VolumeSizeInGB?: number;
Expand Down
2 changes: 1 addition & 1 deletion clients/client-sagemaker/src/models/models_2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7560,7 +7560,7 @@ export interface Endpoint {

/**
* <p>A list of the shadow variants hosted on the endpoint. Each shadow variant is a model
* in shadow mode with production traffic replicated from the proudction variant.</p>
* in shadow mode with production traffic replicated from the production variant.</p>
*/
ShadowProductionVariants?: ProductionVariantSummary[];
}
Expand Down
4 changes: 2 additions & 2 deletions clients/client-sagemaker/src/models/models_3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8241,8 +8241,8 @@ export interface UpdateDomainRequest {
/**
* <p>The entity that creates and manages the required security groups for inter-app
* communication in <code>VPCOnly</code> mode. Required when
* <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and
* <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is
* <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and
* <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is
* provided.</p>
*/
AppSecurityGroupManagement?: AppSecurityGroupManagement | string;
Expand Down
12 changes: 9 additions & 3 deletions codegen/sdk-codegen/aws-models/sagemaker.json
Original file line number Diff line number Diff line change
Expand Up @@ -20821,7 +20821,7 @@
"ShadowProductionVariants": {
"target": "com.amazonaws.sagemaker#ProductionVariantSummaryList",
"traits": {
"smithy.api#documentation": "<p>A list of the shadow variants hosted on the endpoint. Each shadow variant is a model\n in shadow mode with production traffic replicated from the proudction variant.</p>"
"smithy.api#documentation": "<p>A list of the shadow variants hosted on the endpoint. Each shadow variant is a model\n in shadow mode with production traffic replicated from the production variant.</p>"
}
}
},
Expand Down Expand Up @@ -41429,7 +41429,7 @@
"VolumeSizeInGB": {
"target": "com.amazonaws.sagemaker#ProductionVariantVolumeSizeInGB",
"traits": {
"smithy.api#documentation": "<p>The size, in GB, of the ML storage volume attached to individual inference instance\n associated with the production variant. Currenly only Amazon EBS gp2 storage volumes are\n supported.</p>"
"smithy.api#documentation": "<p>The size, in GB, of the ML storage volume attached to individual inference instance\n associated with the production variant. Currently only Amazon EBS gp2 storage volumes are\n supported.</p>"
}
},
"ModelDataDownloadTimeoutInSeconds": {
Expand Down Expand Up @@ -42362,6 +42362,12 @@
"traits": {
"smithy.api#enumValue": "ml.r6gd.16xlarge"
}
},
"ML_P4DE_24XLARGE": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "ml.p4de.24xlarge"
}
}
}
},
Expand Down Expand Up @@ -54040,7 +54046,7 @@
"AppSecurityGroupManagement": {
"target": "com.amazonaws.sagemaker#AppSecurityGroupManagement",
"traits": {
"smithy.api#documentation": "<p>The entity that creates and manages the required security groups for inter-app\n communication in <code>VPCOnly</code> mode. Required when\n <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and\n <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is\n provided.</p>"
"smithy.api#documentation": "<p>The entity that creates and manages the required security groups for inter-app\n communication in <code>VPCOnly</code> mode. Required when\n <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and\n <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is\n provided.</p>"
}
}
}
Expand Down

0 comments on commit e3a9fba

Please sign in to comment.