Skip to content

Commit 55ba9a5

Browse files
Daily Sync with Botocore v1.40.27 on 2025/09/10 (#343)
1 parent d539c05 commit 55ba9a5

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

sample/sagemaker/2017-07-24/service-2.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5340,6 +5340,7 @@
53405340
"ml.trn1n.32xlarge",
53415341
"ml.p5.48xlarge",
53425342
"ml.p5en.48xlarge",
5343+
"ml.p6-b200.48xlarge",
53435344
"ml.m6i.large",
53445345
"ml.m6i.xlarge",
53455346
"ml.m6i.2xlarge",
@@ -20468,6 +20469,10 @@
2046820469
"UnifiedStudioSettings":{
2046920470
"shape":"UnifiedStudioSettings",
2047020471
"documentation":"<p>The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.</p>"
20472+
},
20473+
"IpAddressType":{
20474+
"shape":"IPAddressType",
20475+
"documentation":"<p>The IP address type for the domain. Specify <code>ipv4</code> for IPv4-only connectivity or <code>dualstack</code> for both IPv4 and IPv6 connectivity. When you specify <code>dualstack</code>, the subnet must support IPv6 CIDR blocks. If not specified, defaults to <code>ipv4</code>.</p>"
2047120476
}
2047220477
},
2047320478
"documentation":"<p>A collection of settings that apply to the <code>SageMaker Domain</code>. These settings are specified through the <code>CreateDomain</code> API call.</p>"
@@ -20502,6 +20507,10 @@
2050220507
"UnifiedStudioSettings":{
2050320508
"shape":"UnifiedStudioSettings",
2050420509
"documentation":"<p>The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.</p>"
20510+
},
20511+
"IpAddressType":{
20512+
"shape":"IPAddressType",
20513+
"documentation":"<p>The IP address type for the domain. Specify <code>ipv4</code> for IPv4-only connectivity or <code>dualstack</code> for both IPv4 and IPv6 connectivity. When you specify <code>dualstack</code>, the subnet must support IPv6 CIDR blocks.</p>"
2050520514
}
2050620515
},
2050720516
"documentation":"<p>A collection of <code>Domain</code> configuration settings to update.</p>"

src/sagemaker_core/main/code_injection/shape_dag.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6708,6 +6708,7 @@
67086708
"shape": "UnifiedStudioSettings",
67096709
"type": "structure",
67106710
},
6711+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
67116712
],
67126713
"type": "structure",
67136714
},
@@ -6736,6 +6737,7 @@
67366737
"shape": "UnifiedStudioSettings",
67376738
"type": "structure",
67386739
},
6740+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
67396741
],
67406742
"type": "structure",
67416743
},

src/sagemaker_core/main/shapes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5477,6 +5477,7 @@ class DomainSettings(Base):
54775477
docker_settings: A collection of settings that configure the domain's Docker interaction.
54785478
amazon_q_settings: A collection of settings that configure the Amazon Q experience within the domain. The AuthMode that you use to create the domain must be SSO.
54795479
unified_studio_settings: The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
5480+
ip_address_type: The IP address type for the domain. Specify ipv4 for IPv4-only connectivity or dualstack for both IPv4 and IPv6 connectivity. When you specify dualstack, the subnet must support IPv6 CIDR blocks. If not specified, defaults to ipv4.
54805481
"""
54815482

54825483
security_group_ids: Optional[List[str]] = Unassigned()
@@ -5488,6 +5489,7 @@ class DomainSettings(Base):
54885489
docker_settings: Optional[DockerSettings] = Unassigned()
54895490
amazon_q_settings: Optional[AmazonQSettings] = Unassigned()
54905491
unified_studio_settings: Optional[UnifiedStudioSettings] = Unassigned()
5492+
ip_address_type: Optional[str] = Unassigned()
54915493

54925494

54935495
class DefaultSpaceSettings(Base):
@@ -10311,6 +10313,7 @@ class DomainSettingsForUpdate(Base):
1031110313
docker_settings: A collection of settings that configure the domain's Docker interaction.
1031210314
amazon_q_settings: A collection of settings that configure the Amazon Q experience within the domain.
1031310315
unified_studio_settings: The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
10316+
ip_address_type: The IP address type for the domain. Specify ipv4 for IPv4-only connectivity or dualstack for both IPv4 and IPv6 connectivity. When you specify dualstack, the subnet must support IPv6 CIDR blocks.
1031410317
"""
1031510318

1031610319
r_studio_server_pro_domain_settings_for_update: Optional[
@@ -10324,6 +10327,7 @@ class DomainSettingsForUpdate(Base):
1032410327
docker_settings: Optional[DockerSettings] = Unassigned()
1032510328
amazon_q_settings: Optional[AmazonQSettings] = Unassigned()
1032610329
unified_studio_settings: Optional[UnifiedStudioSettings] = Unassigned()
10330+
ip_address_type: Optional[str] = Unassigned()
1032710331

1032810332

1032910333
class PredefinedMetricSpecification(Base):

0 commit comments

Comments
 (0)