You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sample/sagemaker/2017-07-24/service-2.json
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5340,6 +5340,7 @@
5340
5340
"ml.trn1n.32xlarge",
5341
5341
"ml.p5.48xlarge",
5342
5342
"ml.p5en.48xlarge",
5343
+
"ml.p6-b200.48xlarge",
5343
5344
"ml.m6i.large",
5344
5345
"ml.m6i.xlarge",
5345
5346
"ml.m6i.2xlarge",
@@ -20468,6 +20469,10 @@
20468
20469
"UnifiedStudioSettings":{
20469
20470
"shape":"UnifiedStudioSettings",
20470
20471
"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>"
20471
20476
}
20472
20477
},
20473
20478
"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 @@
20502
20507
"UnifiedStudioSettings":{
20503
20508
"shape":"UnifiedStudioSettings",
20504
20509
"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>"
20505
20514
}
20506
20515
},
20507
20516
"documentation":"<p>A collection of <code>Domain</code> configuration settings to update.</p>"
Copy file name to clipboardExpand all lines: src/sagemaker_core/main/shapes.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5477,6 +5477,7 @@ class DomainSettings(Base):
5477
5477
docker_settings: A collection of settings that configure the domain's Docker interaction.
5478
5478
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.
5479
5479
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.
@@ -10311,6 +10313,7 @@ class DomainSettingsForUpdate(Base):
10311
10313
docker_settings: A collection of settings that configure the domain's Docker interaction.
10312
10314
amazon_q_settings: A collection of settings that configure the Amazon Q experience within the domain.
10313
10315
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.
0 commit comments