aws-sdk-sagemaker 1.303.0 → 1.305.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +37 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +271 -254
- data/lib/aws-sdk-sagemaker/types.rb +114 -19
- data/lib/aws-sdk-sagemaker/waiters.rb +76 -76
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +22 -2
- data/sig/types.rbs +15 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -4288,6 +4288,7 @@ module Aws::SageMaker
|
|
4288
4288
|
attr_accessor execution_role_identity_config: ("USER_PROFILE_NAME" | "DISABLED")
|
4289
4289
|
attr_accessor docker_settings: Types::DockerSettings
|
4290
4290
|
attr_accessor amazon_q_settings: Types::AmazonQSettings
|
4291
|
+
attr_accessor unified_studio_settings: Types::UnifiedStudioSettings
|
4291
4292
|
SENSITIVE: []
|
4292
4293
|
end
|
4293
4294
|
|
@@ -4297,6 +4298,7 @@ module Aws::SageMaker
|
|
4297
4298
|
attr_accessor security_group_ids: ::Array[::String]
|
4298
4299
|
attr_accessor docker_settings: Types::DockerSettings
|
4299
4300
|
attr_accessor amazon_q_settings: Types::AmazonQSettings
|
4301
|
+
attr_accessor unified_studio_settings: Types::UnifiedStudioSettings
|
4300
4302
|
SENSITIVE: []
|
4301
4303
|
end
|
4302
4304
|
|
@@ -7072,9 +7074,9 @@ module Aws::SageMaker
|
|
7072
7074
|
|
7073
7075
|
class MetricDatum
|
7074
7076
|
attr_accessor metric_name: ("Accuracy" | "MSE" | "F1" | "F1macro" | "AUC" | "RMSE" | "BalancedAccuracy" | "R2" | "Recall" | "RecallMacro" | "Precision" | "PrecisionMacro" | "MAE" | "MAPE" | "MASE" | "WAPE" | "AverageWeightedQuantileLoss")
|
7077
|
+
attr_accessor standard_metric_name: ("Accuracy" | "MSE" | "F1" | "F1macro" | "AUC" | "RMSE" | "MAE" | "R2" | "BalancedAccuracy" | "Precision" | "PrecisionMacro" | "Recall" | "RecallMacro" | "LogLoss" | "InferenceLatency" | "MAPE" | "MASE" | "WAPE" | "AverageWeightedQuantileLoss" | "Rouge1" | "Rouge2" | "RougeL" | "RougeLSum" | "Perplexity" | "ValidationLoss" | "TrainingLoss")
|
7075
7078
|
attr_accessor value: ::Float
|
7076
7079
|
attr_accessor set: ("Train" | "Validation" | "Test")
|
7077
|
-
attr_accessor standard_metric_name: ("Accuracy" | "MSE" | "F1" | "F1macro" | "AUC" | "RMSE" | "MAE" | "R2" | "BalancedAccuracy" | "Precision" | "PrecisionMacro" | "Recall" | "RecallMacro" | "LogLoss" | "InferenceLatency" | "MAPE" | "MASE" | "WAPE" | "AverageWeightedQuantileLoss" | "Rouge1" | "Rouge2" | "RougeL" | "RougeLSum" | "Perplexity" | "ValidationLoss" | "TrainingLoss")
|
7078
7080
|
SENSITIVE: []
|
7079
7081
|
end
|
7080
7082
|
|
@@ -9132,6 +9134,7 @@ module Aws::SageMaker
|
|
9132
9134
|
attr_accessor jupyter_lab_app_settings: Types::SpaceJupyterLabAppSettings
|
9133
9135
|
attr_accessor app_type: ("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")
|
9134
9136
|
attr_accessor space_storage_settings: Types::SpaceStorageSettings
|
9137
|
+
attr_accessor space_managed_resources: ("ENABLED" | "DISABLED")
|
9135
9138
|
attr_accessor custom_file_systems: ::Array[Types::CustomFileSystem]
|
9136
9139
|
SENSITIVE: []
|
9137
9140
|
end
|
@@ -9905,6 +9908,17 @@ module Aws::SageMaker
|
|
9905
9908
|
SENSITIVE: []
|
9906
9909
|
end
|
9907
9910
|
|
9911
|
+
class UnifiedStudioSettings
|
9912
|
+
attr_accessor studio_web_portal_access: ("ENABLED" | "DISABLED")
|
9913
|
+
attr_accessor domain_account_id: ::String
|
9914
|
+
attr_accessor domain_region: ::String
|
9915
|
+
attr_accessor domain_id: ::String
|
9916
|
+
attr_accessor project_id: ::String
|
9917
|
+
attr_accessor environment_id: ::String
|
9918
|
+
attr_accessor project_s3_path: ::String
|
9919
|
+
SENSITIVE: []
|
9920
|
+
end
|
9921
|
+
|
9908
9922
|
class UpdateActionRequest
|
9909
9923
|
attr_accessor action_name: ::String
|
9910
9924
|
attr_accessor description: ::String
|