aws-sdk-sagemaker 1.328.0 → 1.329.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +73 -70
- data/lib/aws-sdk-sagemaker/client_api.rb +2 -0
- data/lib/aws-sdk-sagemaker/types.rb +18 -2
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +49 -47
- data/sig/types.rbs +4 -2
- metadata +1 -1
@@ -6403,6 +6403,7 @@ module Aws::SageMaker
|
|
6403
6403
|
DomainSettings.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
|
6404
6404
|
DomainSettings.add_member(:amazon_q_settings, Shapes::ShapeRef.new(shape: AmazonQSettings, location_name: "AmazonQSettings"))
|
6405
6405
|
DomainSettings.add_member(:unified_studio_settings, Shapes::ShapeRef.new(shape: UnifiedStudioSettings, location_name: "UnifiedStudioSettings"))
|
6406
|
+
DomainSettings.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
|
6406
6407
|
DomainSettings.struct_class = Types::DomainSettings
|
6407
6408
|
|
6408
6409
|
DomainSettingsForUpdate.add_member(:r_studio_server_pro_domain_settings_for_update, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettingsForUpdate, location_name: "RStudioServerProDomainSettingsForUpdate"))
|
@@ -6412,6 +6413,7 @@ module Aws::SageMaker
|
|
6412
6413
|
DomainSettingsForUpdate.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
|
6413
6414
|
DomainSettingsForUpdate.add_member(:amazon_q_settings, Shapes::ShapeRef.new(shape: AmazonQSettings, location_name: "AmazonQSettings"))
|
6414
6415
|
DomainSettingsForUpdate.add_member(:unified_studio_settings, Shapes::ShapeRef.new(shape: UnifiedStudioSettings, location_name: "UnifiedStudioSettings"))
|
6416
|
+
DomainSettingsForUpdate.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
|
6415
6417
|
DomainSettingsForUpdate.struct_class = Types::DomainSettingsForUpdate
|
6416
6418
|
|
6417
6419
|
DriftCheckBaselines.add_member(:bias, Shapes::ShapeRef.new(shape: DriftCheckBias, location_name: "Bias"))
|
@@ -21751,6 +21751,13 @@ module Aws::SageMaker
|
|
21751
21751
|
# Amazon SageMaker Unified Studio.
|
21752
21752
|
# @return [Types::UnifiedStudioSettings]
|
21753
21753
|
#
|
21754
|
+
# @!attribute [rw] ip_address_type
|
21755
|
+
# The IP address type for the domain. Specify `ipv4` for IPv4-only
|
21756
|
+
# connectivity or `dualstack` for both IPv4 and IPv6 connectivity.
|
21757
|
+
# When you specify `dualstack`, the subnet must support IPv6 CIDR
|
21758
|
+
# blocks. If not specified, defaults to `ipv4`.
|
21759
|
+
# @return [String]
|
21760
|
+
#
|
21754
21761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
|
21755
21762
|
#
|
21756
21763
|
class DomainSettings < Struct.new(
|
@@ -21760,7 +21767,8 @@ module Aws::SageMaker
|
|
21760
21767
|
:trusted_identity_propagation_settings,
|
21761
21768
|
:docker_settings,
|
21762
21769
|
:amazon_q_settings,
|
21763
|
-
:unified_studio_settings
|
21770
|
+
:unified_studio_settings,
|
21771
|
+
:ip_address_type)
|
21764
21772
|
SENSITIVE = []
|
21765
21773
|
include Aws::Structure
|
21766
21774
|
end
|
@@ -21812,6 +21820,13 @@ module Aws::SageMaker
|
|
21812
21820
|
# Amazon SageMaker Unified Studio.
|
21813
21821
|
# @return [Types::UnifiedStudioSettings]
|
21814
21822
|
#
|
21823
|
+
# @!attribute [rw] ip_address_type
|
21824
|
+
# The IP address type for the domain. Specify `ipv4` for IPv4-only
|
21825
|
+
# connectivity or `dualstack` for both IPv4 and IPv6 connectivity.
|
21826
|
+
# When you specify `dualstack`, the subnet must support IPv6 CIDR
|
21827
|
+
# blocks.
|
21828
|
+
# @return [String]
|
21829
|
+
#
|
21815
21830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
|
21816
21831
|
#
|
21817
21832
|
class DomainSettingsForUpdate < Struct.new(
|
@@ -21821,7 +21836,8 @@ module Aws::SageMaker
|
|
21821
21836
|
:trusted_identity_propagation_settings,
|
21822
21837
|
:docker_settings,
|
21823
21838
|
:amazon_q_settings,
|
21824
|
-
:unified_studio_settings
|
21839
|
+
:unified_studio_settings,
|
21840
|
+
:ip_address_type)
|
21825
21841
|
SENSITIVE = []
|
21826
21842
|
include Aws::Structure
|
21827
21843
|
end
|