aws-sdk-sagemaker 1.246.0 → 1.248.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +623 -61
- data/lib/aws-sdk-sagemaker/client_api.rb +299 -13
- data/lib/aws-sdk-sagemaker/endpoints.rb +140 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-sagemaker/types.rb +714 -11
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +205 -11
- data/sig/types.rbs +191 -7
- metadata +2 -2
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -234,6 +234,9 @@ module Aws
|
|
234
234
|
compression_type: ("None" | "Gzip"),
|
235
235
|
model_access_config: {
|
236
236
|
accept_eula: bool
|
237
|
+
}?,
|
238
|
+
hub_access_config: {
|
239
|
+
hub_content_arn: ::String
|
237
240
|
}?
|
238
241
|
}?
|
239
242
|
}?,
|
@@ -695,7 +698,14 @@ module Aws
|
|
695
698
|
on_create: ::String
|
696
699
|
},
|
697
700
|
execution_role: ::String,
|
698
|
-
threads_per_core: ::Integer
|
701
|
+
threads_per_core: ::Integer?,
|
702
|
+
instance_storage_configs: Array[
|
703
|
+
{
|
704
|
+
ebs_volume_config: {
|
705
|
+
volume_size_in_gb: ::Integer
|
706
|
+
}?
|
707
|
+
},
|
708
|
+
]?
|
699
709
|
},
|
700
710
|
],
|
701
711
|
?vpc_config: {
|
@@ -1634,6 +1644,26 @@ module Aws
|
|
1634
1644
|
) -> _CreateHubResponseSuccess
|
1635
1645
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHubResponseSuccess
|
1636
1646
|
|
1647
|
+
interface _CreateHubContentReferenceResponseSuccess
|
1648
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHubContentReferenceResponse]
|
1649
|
+
def hub_arn: () -> ::String
|
1650
|
+
def hub_content_arn: () -> ::String
|
1651
|
+
end
|
1652
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_hub_content_reference-instance_method
|
1653
|
+
def create_hub_content_reference: (
|
1654
|
+
hub_name: ::String,
|
1655
|
+
sage_maker_public_hub_content_arn: ::String,
|
1656
|
+
?hub_content_name: ::String,
|
1657
|
+
?min_version: ::String,
|
1658
|
+
?tags: Array[
|
1659
|
+
{
|
1660
|
+
key: ::String,
|
1661
|
+
value: ::String
|
1662
|
+
},
|
1663
|
+
]
|
1664
|
+
) -> _CreateHubContentReferenceResponseSuccess
|
1665
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHubContentReferenceResponseSuccess
|
1666
|
+
|
1637
1667
|
interface _CreateHumanTaskUiResponseSuccess
|
1638
1668
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHumanTaskUiResponse]
|
1639
1669
|
def human_task_ui_arn: () -> ::String
|
@@ -2314,6 +2344,28 @@ module Aws
|
|
2314
2344
|
) -> _CreateLabelingJobResponseSuccess
|
2315
2345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLabelingJobResponseSuccess
|
2316
2346
|
|
2347
|
+
interface _CreateMlflowTrackingServerResponseSuccess
|
2348
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMlflowTrackingServerResponse]
|
2349
|
+
def tracking_server_arn: () -> ::String
|
2350
|
+
end
|
2351
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_mlflow_tracking_server-instance_method
|
2352
|
+
def create_mlflow_tracking_server: (
|
2353
|
+
tracking_server_name: ::String,
|
2354
|
+
artifact_store_uri: ::String,
|
2355
|
+
?tracking_server_size: ("Small" | "Medium" | "Large"),
|
2356
|
+
?mlflow_version: ::String,
|
2357
|
+
role_arn: ::String,
|
2358
|
+
?automatic_model_registration: bool,
|
2359
|
+
?weekly_maintenance_window_start: ::String,
|
2360
|
+
?tags: Array[
|
2361
|
+
{
|
2362
|
+
key: ::String,
|
2363
|
+
value: ::String
|
2364
|
+
},
|
2365
|
+
]
|
2366
|
+
) -> _CreateMlflowTrackingServerResponseSuccess
|
2367
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMlflowTrackingServerResponseSuccess
|
2368
|
+
|
2317
2369
|
interface _CreateModelResponseSuccess
|
2318
2370
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateModelOutput]
|
2319
2371
|
def model_arn: () -> ::String
|
@@ -2339,6 +2391,9 @@ module Aws
|
|
2339
2391
|
compression_type: ("None" | "Gzip"),
|
2340
2392
|
model_access_config: {
|
2341
2393
|
accept_eula: bool
|
2394
|
+
}?,
|
2395
|
+
hub_access_config: {
|
2396
|
+
hub_content_arn: ::String
|
2342
2397
|
}?
|
2343
2398
|
}?
|
2344
2399
|
}?,
|
@@ -2368,6 +2423,9 @@ module Aws
|
|
2368
2423
|
compression_type: ("None" | "Gzip"),
|
2369
2424
|
model_access_config: {
|
2370
2425
|
accept_eula: bool
|
2426
|
+
}?,
|
2427
|
+
hub_access_config: {
|
2428
|
+
hub_content_arn: ::String
|
2371
2429
|
}?
|
2372
2430
|
}?
|
2373
2431
|
}?,
|
@@ -2653,6 +2711,9 @@ module Aws
|
|
2653
2711
|
compression_type: ("None" | "Gzip"),
|
2654
2712
|
model_access_config: {
|
2655
2713
|
accept_eula: bool
|
2714
|
+
}?,
|
2715
|
+
hub_access_config: {
|
2716
|
+
hub_content_arn: ::String
|
2656
2717
|
}?
|
2657
2718
|
}?
|
2658
2719
|
}?,
|
@@ -2723,6 +2784,9 @@ module Aws
|
|
2723
2784
|
compression_type: ("None" | "Gzip"),
|
2724
2785
|
model_access_config: {
|
2725
2786
|
accept_eula: bool
|
2787
|
+
}?,
|
2788
|
+
hub_access_config: {
|
2789
|
+
hub_content_arn: ::String
|
2726
2790
|
}?
|
2727
2791
|
}?
|
2728
2792
|
}?,
|
@@ -2871,6 +2935,9 @@ module Aws
|
|
2871
2935
|
compression_type: ("None" | "Gzip"),
|
2872
2936
|
model_access_config: {
|
2873
2937
|
accept_eula: bool
|
2938
|
+
}?,
|
2939
|
+
hub_access_config: {
|
2940
|
+
hub_content_arn: ::String
|
2874
2941
|
}?
|
2875
2942
|
}?
|
2876
2943
|
}?,
|
@@ -3240,6 +3307,18 @@ module Aws
|
|
3240
3307
|
) -> _CreatePresignedDomainUrlResponseSuccess
|
3241
3308
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePresignedDomainUrlResponseSuccess
|
3242
3309
|
|
3310
|
+
interface _CreatePresignedMlflowTrackingServerUrlResponseSuccess
|
3311
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePresignedMlflowTrackingServerUrlResponse]
|
3312
|
+
def authorized_url: () -> ::String
|
3313
|
+
end
|
3314
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_presigned_mlflow_tracking_server_url-instance_method
|
3315
|
+
def create_presigned_mlflow_tracking_server_url: (
|
3316
|
+
tracking_server_name: ::String,
|
3317
|
+
?expires_in_seconds: ::Integer,
|
3318
|
+
?session_expiration_duration_in_seconds: ::Integer
|
3319
|
+
) -> _CreatePresignedMlflowTrackingServerUrlResponseSuccess
|
3320
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePresignedMlflowTrackingServerUrlResponseSuccess
|
3321
|
+
|
3243
3322
|
interface _CreatePresignedNotebookInstanceUrlResponseSuccess
|
3244
3323
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePresignedNotebookInstanceUrlOutput]
|
3245
3324
|
def authorized_url: () -> ::String
|
@@ -3983,7 +4062,9 @@ module Aws
|
|
3983
4062
|
token_endpoint: ::String,
|
3984
4063
|
user_info_endpoint: ::String,
|
3985
4064
|
logout_endpoint: ::String,
|
3986
|
-
jwks_uri: ::String
|
4065
|
+
jwks_uri: ::String,
|
4066
|
+
scope: ::String?,
|
4067
|
+
authentication_request_extra_params: Hash[::String, ::String]?
|
3987
4068
|
},
|
3988
4069
|
?source_ip_config: {
|
3989
4070
|
cidrs: Array[::String]
|
@@ -4219,12 +4300,20 @@ module Aws
|
|
4219
4300
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_hub_content-instance_method
|
4220
4301
|
def delete_hub_content: (
|
4221
4302
|
hub_name: ::String,
|
4222
|
-
hub_content_type: ("Model" | "Notebook"),
|
4303
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
4223
4304
|
hub_content_name: ::String,
|
4224
4305
|
hub_content_version: ::String
|
4225
4306
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4226
4307
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4227
4308
|
|
4309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_hub_content_reference-instance_method
|
4310
|
+
def delete_hub_content_reference: (
|
4311
|
+
hub_name: ::String,
|
4312
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
4313
|
+
hub_content_name: ::String
|
4314
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4315
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4316
|
+
|
4228
4317
|
interface _DeleteHumanTaskUiResponseSuccess
|
4229
4318
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteHumanTaskUiResponse]
|
4230
4319
|
end
|
@@ -4276,6 +4365,16 @@ module Aws
|
|
4276
4365
|
) -> _DeleteInferenceExperimentResponseSuccess
|
4277
4366
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInferenceExperimentResponseSuccess
|
4278
4367
|
|
4368
|
+
interface _DeleteMlflowTrackingServerResponseSuccess
|
4369
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMlflowTrackingServerResponse]
|
4370
|
+
def tracking_server_arn: () -> ::String
|
4371
|
+
end
|
4372
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_mlflow_tracking_server-instance_method
|
4373
|
+
def delete_mlflow_tracking_server: (
|
4374
|
+
tracking_server_name: ::String
|
4375
|
+
) -> _DeleteMlflowTrackingServerResponseSuccess
|
4376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMlflowTrackingServerResponseSuccess
|
4377
|
+
|
4279
4378
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_model-instance_method
|
4280
4379
|
def delete_model: (
|
4281
4380
|
model_name: ::String
|
@@ -4974,7 +5073,7 @@ module Aws
|
|
4974
5073
|
def hub_content_name: () -> ::String
|
4975
5074
|
def hub_content_arn: () -> ::String
|
4976
5075
|
def hub_content_version: () -> ::String
|
4977
|
-
def hub_content_type: () -> ("Model" | "Notebook")
|
5076
|
+
def hub_content_type: () -> ("Model" | "Notebook" | "ModelReference")
|
4978
5077
|
def document_schema_version: () -> ::String
|
4979
5078
|
def hub_name: () -> ::String
|
4980
5079
|
def hub_arn: () -> ::String
|
@@ -4982,6 +5081,9 @@ module Aws
|
|
4982
5081
|
def hub_content_description: () -> ::String
|
4983
5082
|
def hub_content_markdown: () -> ::String
|
4984
5083
|
def hub_content_document: () -> ::String
|
5084
|
+
def sage_maker_public_hub_content_arn: () -> ::String
|
5085
|
+
def reference_min_version: () -> ::String
|
5086
|
+
def support_status: () -> ("Supported" | "Deprecated")
|
4985
5087
|
def hub_content_search_keywords: () -> ::Array[::String]
|
4986
5088
|
def hub_content_dependencies: () -> ::Array[Types::HubContentDependency]
|
4987
5089
|
def hub_content_status: () -> ("Available" | "Importing" | "Deleting" | "ImportFailed" | "DeleteFailed")
|
@@ -4991,7 +5093,7 @@ module Aws
|
|
4991
5093
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_hub_content-instance_method
|
4992
5094
|
def describe_hub_content: (
|
4993
5095
|
hub_name: ::String,
|
4994
|
-
hub_content_type: ("Model" | "Notebook"),
|
5096
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
4995
5097
|
hub_content_name: ::String,
|
4996
5098
|
?hub_content_version: ::String
|
4997
5099
|
) -> _DescribeHubContentResponseSuccess
|
@@ -5195,6 +5297,30 @@ module Aws
|
|
5195
5297
|
) -> _DescribeLineageGroupResponseSuccess
|
5196
5298
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLineageGroupResponseSuccess
|
5197
5299
|
|
5300
|
+
interface _DescribeMlflowTrackingServerResponseSuccess
|
5301
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMlflowTrackingServerResponse]
|
5302
|
+
def tracking_server_arn: () -> ::String
|
5303
|
+
def tracking_server_name: () -> ::String
|
5304
|
+
def artifact_store_uri: () -> ::String
|
5305
|
+
def tracking_server_size: () -> ("Small" | "Medium" | "Large")
|
5306
|
+
def mlflow_version: () -> ::String
|
5307
|
+
def role_arn: () -> ::String
|
5308
|
+
def tracking_server_status: () -> ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed")
|
5309
|
+
def is_active: () -> ("Active" | "Inactive")
|
5310
|
+
def tracking_server_url: () -> ::String
|
5311
|
+
def weekly_maintenance_window_start: () -> ::String
|
5312
|
+
def automatic_model_registration: () -> bool
|
5313
|
+
def creation_time: () -> ::Time
|
5314
|
+
def created_by: () -> Types::UserContext
|
5315
|
+
def last_modified_time: () -> ::Time
|
5316
|
+
def last_modified_by: () -> Types::UserContext
|
5317
|
+
end
|
5318
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_mlflow_tracking_server-instance_method
|
5319
|
+
def describe_mlflow_tracking_server: (
|
5320
|
+
tracking_server_name: ::String
|
5321
|
+
) -> _DescribeMlflowTrackingServerResponseSuccess
|
5322
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMlflowTrackingServerResponseSuccess
|
5323
|
+
|
5198
5324
|
interface _DescribeModelResponseSuccess
|
5199
5325
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeModelOutput]
|
5200
5326
|
def model_name: () -> ::String
|
@@ -5876,7 +6002,7 @@ module Aws
|
|
5876
6002
|
def import_hub_content: (
|
5877
6003
|
hub_content_name: ::String,
|
5878
6004
|
?hub_content_version: ::String,
|
5879
|
-
hub_content_type: ("Model" | "Notebook"),
|
6005
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
5880
6006
|
document_schema_version: ::String,
|
5881
6007
|
hub_name: ::String,
|
5882
6008
|
?hub_content_display_name: ::String,
|
@@ -6347,7 +6473,7 @@ module Aws
|
|
6347
6473
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_hub_content_versions-instance_method
|
6348
6474
|
def list_hub_content_versions: (
|
6349
6475
|
hub_name: ::String,
|
6350
|
-
hub_content_type: ("Model" | "Notebook"),
|
6476
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
6351
6477
|
hub_content_name: ::String,
|
6352
6478
|
?min_version: ::String,
|
6353
6479
|
?max_schema_version: ::String,
|
@@ -6368,7 +6494,7 @@ module Aws
|
|
6368
6494
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_hub_contents-instance_method
|
6369
6495
|
def list_hub_contents: (
|
6370
6496
|
hub_name: ::String,
|
6371
|
-
hub_content_type: ("Model" | "Notebook"),
|
6497
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
6372
6498
|
?name_contains: ::String,
|
6373
6499
|
?max_schema_version: ::String,
|
6374
6500
|
?creation_time_before: ::Time,
|
@@ -6606,6 +6732,24 @@ module Aws
|
|
6606
6732
|
) -> _ListLineageGroupsResponseSuccess
|
6607
6733
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLineageGroupsResponseSuccess
|
6608
6734
|
|
6735
|
+
interface _ListMlflowTrackingServersResponseSuccess
|
6736
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMlflowTrackingServersResponse]
|
6737
|
+
def tracking_server_summaries: () -> ::Array[Types::TrackingServerSummary]
|
6738
|
+
def next_token: () -> ::String
|
6739
|
+
end
|
6740
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_mlflow_tracking_servers-instance_method
|
6741
|
+
def list_mlflow_tracking_servers: (
|
6742
|
+
?created_after: ::Time,
|
6743
|
+
?created_before: ::Time,
|
6744
|
+
?tracking_server_status: ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed"),
|
6745
|
+
?mlflow_version: ::String,
|
6746
|
+
?sort_by: ("Name" | "CreationTime" | "Status"),
|
6747
|
+
?sort_order: ("Ascending" | "Descending"),
|
6748
|
+
?next_token: ::String,
|
6749
|
+
?max_results: ::Integer
|
6750
|
+
) -> _ListMlflowTrackingServersResponseSuccess
|
6751
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMlflowTrackingServersResponseSuccess
|
6752
|
+
|
6609
6753
|
interface _ListModelBiasJobDefinitionsResponseSuccess
|
6610
6754
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListModelBiasJobDefinitionsResponse]
|
6611
6755
|
def job_definition_summaries: () -> ::Array[Types::MonitoringJobDefinitionSummary]
|
@@ -6731,7 +6875,8 @@ module Aws
|
|
6731
6875
|
?name_contains: ::String,
|
6732
6876
|
?next_token: ::String,
|
6733
6877
|
?sort_by: ("Name" | "CreationTime"),
|
6734
|
-
?sort_order: ("Ascending" | "Descending")
|
6878
|
+
?sort_order: ("Ascending" | "Descending"),
|
6879
|
+
?cross_account_filter_option: ("SameAccount" | "CrossAccount")
|
6735
6880
|
) -> _ListModelPackageGroupsResponseSuccess
|
6736
6881
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelPackageGroupsResponseSuccess
|
6737
6882
|
|
@@ -7425,6 +7570,16 @@ module Aws
|
|
7425
7570
|
) -> _StartInferenceExperimentResponseSuccess
|
7426
7571
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInferenceExperimentResponseSuccess
|
7427
7572
|
|
7573
|
+
interface _StartMlflowTrackingServerResponseSuccess
|
7574
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMlflowTrackingServerResponse]
|
7575
|
+
def tracking_server_arn: () -> ::String
|
7576
|
+
end
|
7577
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_mlflow_tracking_server-instance_method
|
7578
|
+
def start_mlflow_tracking_server: (
|
7579
|
+
tracking_server_name: ::String
|
7580
|
+
) -> _StartMlflowTrackingServerResponseSuccess
|
7581
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMlflowTrackingServerResponseSuccess
|
7582
|
+
|
7428
7583
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_monitoring_schedule-instance_method
|
7429
7584
|
def start_monitoring_schedule: (
|
7430
7585
|
monitoring_schedule_name: ::String
|
@@ -7536,6 +7691,16 @@ module Aws
|
|
7536
7691
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
7537
7692
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
7538
7693
|
|
7694
|
+
interface _StopMlflowTrackingServerResponseSuccess
|
7695
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopMlflowTrackingServerResponse]
|
7696
|
+
def tracking_server_arn: () -> ::String
|
7697
|
+
end
|
7698
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_mlflow_tracking_server-instance_method
|
7699
|
+
def stop_mlflow_tracking_server: (
|
7700
|
+
tracking_server_name: ::String
|
7701
|
+
) -> _StopMlflowTrackingServerResponseSuccess
|
7702
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopMlflowTrackingServerResponseSuccess
|
7703
|
+
|
7539
7704
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_monitoring_schedule-instance_method
|
7540
7705
|
def stop_monitoring_schedule: (
|
7541
7706
|
monitoring_schedule_name: ::String
|
@@ -7668,7 +7833,14 @@ module Aws
|
|
7668
7833
|
on_create: ::String
|
7669
7834
|
},
|
7670
7835
|
execution_role: ::String,
|
7671
|
-
threads_per_core: ::Integer
|
7836
|
+
threads_per_core: ::Integer?,
|
7837
|
+
instance_storage_configs: Array[
|
7838
|
+
{
|
7839
|
+
ebs_volume_config: {
|
7840
|
+
volume_size_in_gb: ::Integer
|
7841
|
+
}?
|
7842
|
+
},
|
7843
|
+
]?
|
7672
7844
|
},
|
7673
7845
|
]
|
7674
7846
|
) -> _UpdateClusterResponseSuccess
|
@@ -8279,6 +8451,20 @@ module Aws
|
|
8279
8451
|
) -> _UpdateInferenceExperimentResponseSuccess
|
8280
8452
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInferenceExperimentResponseSuccess
|
8281
8453
|
|
8454
|
+
interface _UpdateMlflowTrackingServerResponseSuccess
|
8455
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMlflowTrackingServerResponse]
|
8456
|
+
def tracking_server_arn: () -> ::String
|
8457
|
+
end
|
8458
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#update_mlflow_tracking_server-instance_method
|
8459
|
+
def update_mlflow_tracking_server: (
|
8460
|
+
tracking_server_name: ::String,
|
8461
|
+
?artifact_store_uri: ::String,
|
8462
|
+
?tracking_server_size: ("Small" | "Medium" | "Large"),
|
8463
|
+
?automatic_model_registration: bool,
|
8464
|
+
?weekly_maintenance_window_start: ::String
|
8465
|
+
) -> _UpdateMlflowTrackingServerResponseSuccess
|
8466
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMlflowTrackingServerResponseSuccess
|
8467
|
+
|
8282
8468
|
interface _UpdateModelCardResponseSuccess
|
8283
8469
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateModelCardResponse]
|
8284
8470
|
def model_card_arn: () -> ::String
|
@@ -8319,6 +8505,9 @@ module Aws
|
|
8319
8505
|
compression_type: ("None" | "Gzip"),
|
8320
8506
|
model_access_config: {
|
8321
8507
|
accept_eula: bool
|
8508
|
+
}?,
|
8509
|
+
hub_access_config: {
|
8510
|
+
hub_content_arn: ::String
|
8322
8511
|
}?
|
8323
8512
|
}?
|
8324
8513
|
}?,
|
@@ -8357,6 +8546,9 @@ module Aws
|
|
8357
8546
|
compression_type: ("None" | "Gzip"),
|
8358
8547
|
model_access_config: {
|
8359
8548
|
accept_eula: bool
|
8549
|
+
}?,
|
8550
|
+
hub_access_config: {
|
8551
|
+
hub_content_arn: ::String
|
8360
8552
|
}?
|
8361
8553
|
}?
|
8362
8554
|
}?,
|
@@ -8964,7 +9156,9 @@ module Aws
|
|
8964
9156
|
token_endpoint: ::String,
|
8965
9157
|
user_info_endpoint: ::String,
|
8966
9158
|
logout_endpoint: ::String,
|
8967
|
-
jwks_uri: ::String
|
9159
|
+
jwks_uri: ::String,
|
9160
|
+
scope: ::String?,
|
9161
|
+
authentication_request_extra_params: Hash[::String, ::String]?
|
8968
9162
|
},
|
8969
9163
|
?workforce_vpc_config: {
|
8970
9164
|
vpc_id: ::String?,
|