From ac6305bfc6a1546f56079113e6a47eed1c96072c Mon Sep 17 00:00:00 2001 From: sagemaker-bot Date: Thu, 21 Aug 2025 10:09:55 +0000 Subject: [PATCH] Daily Sync with Botocore v1.40.14 on 2025/08/21 --- sample/sagemaker/2017-07-24/service-2.json | 11 ++++++++--- src/sagemaker_core/main/shapes.py | 4 ++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/sample/sagemaker/2017-07-24/service-2.json b/sample/sagemaker/2017-07-24/service-2.json index 5a8c8ad..89e52a2 100644 --- a/sample/sagemaker/2017-07-24/service-2.json +++ b/sample/sagemaker/2017-07-24/service-2.json @@ -35721,7 +35721,8 @@ "ml.r7i.12xlarge", "ml.r7i.16xlarge", "ml.r7i.24xlarge", - "ml.r7i.48xlarge" + "ml.r7i.48xlarge", + "ml.p5.4xlarge" ] }, "ProcessingJob":{ @@ -38028,7 +38029,8 @@ "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge", - "ml.p6e-gb200.36xlarge" + "ml.p6e-gb200.36xlarge", + "ml.p5.4xlarge" ] }, "ReservedCapacityOffering":{ @@ -38653,6 +38655,7 @@ }, "S3FileSystem":{ "type":"structure", + "required":["S3Uri"], "members":{ "S3Uri":{ "shape":"S3SchemaUri", @@ -38663,6 +38666,7 @@ }, "S3FileSystemConfig":{ "type":"structure", + "required":["S3Uri"], "members":{ "MountPath":{ "shape":"String1024", @@ -41603,7 +41607,8 @@ "ml.r7i.16xlarge", "ml.r7i.24xlarge", "ml.r7i.48xlarge", - "ml.p6e-gb200.36xlarge" + "ml.p6e-gb200.36xlarge", + "ml.p5.4xlarge" ] }, "TrainingInstanceTypes":{ diff --git a/src/sagemaker_core/main/shapes.py b/src/sagemaker_core/main/shapes.py index 7aef01a..9379dc7 100644 --- a/src/sagemaker_core/main/shapes.py +++ b/src/sagemaker_core/main/shapes.py @@ -5236,8 +5236,8 @@ class S3FileSystemConfig(Base): s3_uri: The Amazon S3 URI of the S3 file system configuration. """ + s3_uri: str mount_path: Optional[str] = Unassigned() - s3_uri: Optional[str] = Unassigned() class CustomFileSystemConfig(Base): @@ -8126,7 +8126,7 @@ class S3FileSystem(Base): s3_uri: The Amazon S3 URI that specifies the location in S3 where files are stored, which is mounted within the Studio environment. For example: s3://<bucket-name>/<prefix>/. """ - s3_uri: Optional[str] = Unassigned() + s3_uri: str class CustomFileSystem(Base):