Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions sample/sagemaker/2017-07-24/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -35721,7 +35721,8 @@
"ml.r7i.12xlarge",
"ml.r7i.16xlarge",
"ml.r7i.24xlarge",
"ml.r7i.48xlarge"
"ml.r7i.48xlarge",
"ml.p5.4xlarge"
]
},
"ProcessingJob":{
Expand Down Expand Up @@ -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":{
Expand Down Expand Up @@ -38653,6 +38655,7 @@
},
"S3FileSystem":{
"type":"structure",
"required":["S3Uri"],
"members":{
"S3Uri":{
"shape":"S3SchemaUri",
Expand All @@ -38663,6 +38666,7 @@
},
"S3FileSystemConfig":{
"type":"structure",
"required":["S3Uri"],
"members":{
"MountPath":{
"shape":"String1024",
Expand Down Expand Up @@ -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":{
Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker_core/main/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down
Loading