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
@@ -640,6 +640,7 @@ module Aws::SageMaker
|
|
640
640
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
641
641
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
642
642
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
643
|
+
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
643
644
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
|
644
645
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
|
645
646
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment["EnvironmentKey"] #=> String
|
@@ -898,6 +899,9 @@ module Aws::SageMaker
|
|
898
899
|
# model_access_config: {
|
899
900
|
# accept_eula: false, # required
|
900
901
|
# },
|
902
|
+
# hub_access_config: {
|
903
|
+
# hub_content_arn: "HubContentArn", # required
|
904
|
+
# },
|
901
905
|
# },
|
902
906
|
# },
|
903
907
|
# product_id: "ProductId",
|
@@ -1814,6 +1818,13 @@ module Aws::SageMaker
|
|
1814
1818
|
# },
|
1815
1819
|
# execution_role: "RoleArn", # required
|
1816
1820
|
# threads_per_core: 1,
|
1821
|
+
# instance_storage_configs: [
|
1822
|
+
# {
|
1823
|
+
# ebs_volume_config: {
|
1824
|
+
# volume_size_in_gb: 1, # required
|
1825
|
+
# },
|
1826
|
+
# },
|
1827
|
+
# ],
|
1817
1828
|
# },
|
1818
1829
|
# ],
|
1819
1830
|
# vpc_config: {
|
@@ -3872,10 +3883,6 @@ module Aws::SageMaker
|
|
3872
3883
|
|
3873
3884
|
# Create a hub.
|
3874
3885
|
#
|
3875
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
3876
|
-
#
|
3877
|
-
# </note>
|
3878
|
-
#
|
3879
3886
|
# @option params [required, String] :hub_name
|
3880
3887
|
# The name of the hub to create.
|
3881
3888
|
#
|
@@ -3929,6 +3936,58 @@ module Aws::SageMaker
|
|
3929
3936
|
req.send_request(options)
|
3930
3937
|
end
|
3931
3938
|
|
3939
|
+
# Create a hub content reference in order to add a model in the
|
3940
|
+
# JumpStart public hub to a private hub.
|
3941
|
+
#
|
3942
|
+
# @option params [required, String] :hub_name
|
3943
|
+
# The name of the hub to add the hub content reference to.
|
3944
|
+
#
|
3945
|
+
# @option params [required, String] :sage_maker_public_hub_content_arn
|
3946
|
+
# The ARN of the public hub content to reference.
|
3947
|
+
#
|
3948
|
+
# @option params [String] :hub_content_name
|
3949
|
+
# The name of the hub content to reference.
|
3950
|
+
#
|
3951
|
+
# @option params [String] :min_version
|
3952
|
+
# The minimum version of the hub content to reference.
|
3953
|
+
#
|
3954
|
+
# @option params [Array<Types::Tag>] :tags
|
3955
|
+
# Any tags associated with the hub content to reference.
|
3956
|
+
#
|
3957
|
+
# @return [Types::CreateHubContentReferenceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3958
|
+
#
|
3959
|
+
# * {Types::CreateHubContentReferenceResponse#hub_arn #hub_arn} => String
|
3960
|
+
# * {Types::CreateHubContentReferenceResponse#hub_content_arn #hub_content_arn} => String
|
3961
|
+
#
|
3962
|
+
# @example Request syntax with placeholder values
|
3963
|
+
#
|
3964
|
+
# resp = client.create_hub_content_reference({
|
3965
|
+
# hub_name: "HubNameOrArn", # required
|
3966
|
+
# sage_maker_public_hub_content_arn: "SageMakerPublicHubContentArn", # required
|
3967
|
+
# hub_content_name: "HubContentName",
|
3968
|
+
# min_version: "HubContentVersion",
|
3969
|
+
# tags: [
|
3970
|
+
# {
|
3971
|
+
# key: "TagKey", # required
|
3972
|
+
# value: "TagValue", # required
|
3973
|
+
# },
|
3974
|
+
# ],
|
3975
|
+
# })
|
3976
|
+
#
|
3977
|
+
# @example Response structure
|
3978
|
+
#
|
3979
|
+
# resp.hub_arn #=> String
|
3980
|
+
# resp.hub_content_arn #=> String
|
3981
|
+
#
|
3982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentReference AWS API Documentation
|
3983
|
+
#
|
3984
|
+
# @overload create_hub_content_reference(params = {})
|
3985
|
+
# @param [Hash] params ({})
|
3986
|
+
def create_hub_content_reference(params = {}, options = {})
|
3987
|
+
req = build_request(:create_hub_content_reference, params)
|
3988
|
+
req.send_request(options)
|
3989
|
+
end
|
3990
|
+
|
3932
3991
|
# Defines the settings you will use for the human review workflow user
|
3933
3992
|
# interface. Reviewers will see a three-panel interface with an
|
3934
3993
|
# instruction area, the item to review, and an input area.
|
@@ -5401,6 +5460,103 @@ module Aws::SageMaker
|
|
5401
5460
|
req.send_request(options)
|
5402
5461
|
end
|
5403
5462
|
|
5463
|
+
# Creates an MLflow Tracking Server using a general purpose Amazon S3
|
5464
|
+
# bucket as the artifact store. For more information, see [Create an
|
5465
|
+
# MLflow Tracking Server][1].
|
5466
|
+
#
|
5467
|
+
#
|
5468
|
+
#
|
5469
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-create-tracking-server.html
|
5470
|
+
#
|
5471
|
+
# @option params [required, String] :tracking_server_name
|
5472
|
+
# A unique string identifying the tracking server name. This string is
|
5473
|
+
# part of the tracking server ARN.
|
5474
|
+
#
|
5475
|
+
# @option params [required, String] :artifact_store_uri
|
5476
|
+
# The S3 URI for a general purpose bucket to use as the MLflow Tracking
|
5477
|
+
# Server artifact store.
|
5478
|
+
#
|
5479
|
+
# @option params [String] :tracking_server_size
|
5480
|
+
# The size of the tracking server you want to create. You can choose
|
5481
|
+
# between `"Small"`, `"Medium"`, and `"Large"`. The default MLflow
|
5482
|
+
# Tracking Server configuration size is `"Small"`. You can choose a size
|
5483
|
+
# depending on the projected use of the tracking server such as the
|
5484
|
+
# volume of data logged, number of users, and frequency of use.
|
5485
|
+
#
|
5486
|
+
# We recommend using a small tracking server for teams of up to 25
|
5487
|
+
# users, a medium tracking server for teams of up to 50 users, and a
|
5488
|
+
# large tracking server for teams of up to 100 users.
|
5489
|
+
#
|
5490
|
+
# @option params [String] :mlflow_version
|
5491
|
+
# The version of MLflow that the tracking server uses. To see which
|
5492
|
+
# MLflow versions are available to use, see [How it works][1].
|
5493
|
+
#
|
5494
|
+
#
|
5495
|
+
#
|
5496
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow.html#mlflow-create-tracking-server-how-it-works
|
5497
|
+
#
|
5498
|
+
# @option params [required, String] :role_arn
|
5499
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
5500
|
+
# the MLflow Tracking Server uses to access the artifact store in Amazon
|
5501
|
+
# S3. The role should have `AmazonS3FullAccess` permissions. For more
|
5502
|
+
# information on IAM permissions for tracking server creation, see [Set
|
5503
|
+
# up IAM permissions for MLflow][1].
|
5504
|
+
#
|
5505
|
+
#
|
5506
|
+
#
|
5507
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-create-tracking-server-iam.html
|
5508
|
+
#
|
5509
|
+
# @option params [Boolean] :automatic_model_registration
|
5510
|
+
# Whether to enable or disable automatic registration of new MLflow
|
5511
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
5512
|
+
# registration, set this value to `True`. To disable automatic model
|
5513
|
+
# registration, set this value to `False`. If not specified,
|
5514
|
+
# `AutomaticModelRegistration` defaults to `False`.
|
5515
|
+
#
|
5516
|
+
# @option params [String] :weekly_maintenance_window_start
|
5517
|
+
# The day and time of the week in Coordinated Universal Time (UTC)
|
5518
|
+
# 24-hour standard time that weekly maintenance updates are scheduled.
|
5519
|
+
# For example: TUE:03:30.
|
5520
|
+
#
|
5521
|
+
# @option params [Array<Types::Tag>] :tags
|
5522
|
+
# Tags consisting of key-value pairs used to manage metadata for the
|
5523
|
+
# tracking server.
|
5524
|
+
#
|
5525
|
+
# @return [Types::CreateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5526
|
+
#
|
5527
|
+
# * {Types::CreateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
5528
|
+
#
|
5529
|
+
# @example Request syntax with placeholder values
|
5530
|
+
#
|
5531
|
+
# resp = client.create_mlflow_tracking_server({
|
5532
|
+
# tracking_server_name: "TrackingServerName", # required
|
5533
|
+
# artifact_store_uri: "S3Uri", # required
|
5534
|
+
# tracking_server_size: "Small", # accepts Small, Medium, Large
|
5535
|
+
# mlflow_version: "MlflowVersion",
|
5536
|
+
# role_arn: "RoleArn", # required
|
5537
|
+
# automatic_model_registration: false,
|
5538
|
+
# weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
|
5539
|
+
# tags: [
|
5540
|
+
# {
|
5541
|
+
# key: "TagKey", # required
|
5542
|
+
# value: "TagValue", # required
|
5543
|
+
# },
|
5544
|
+
# ],
|
5545
|
+
# })
|
5546
|
+
#
|
5547
|
+
# @example Response structure
|
5548
|
+
#
|
5549
|
+
# resp.tracking_server_arn #=> String
|
5550
|
+
#
|
5551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServer AWS API Documentation
|
5552
|
+
#
|
5553
|
+
# @overload create_mlflow_tracking_server(params = {})
|
5554
|
+
# @param [Hash] params ({})
|
5555
|
+
def create_mlflow_tracking_server(params = {}, options = {})
|
5556
|
+
req = build_request(:create_mlflow_tracking_server, params)
|
5557
|
+
req.send_request(options)
|
5558
|
+
end
|
5559
|
+
|
5404
5560
|
# Creates a model in SageMaker. In the request, you name the model and
|
5405
5561
|
# describe a primary container. For the primary container, you specify
|
5406
5562
|
# the Docker image that contains inference code, artifacts (from prior
|
@@ -5512,6 +5668,9 @@ module Aws::SageMaker
|
|
5512
5668
|
# model_access_config: {
|
5513
5669
|
# accept_eula: false, # required
|
5514
5670
|
# },
|
5671
|
+
# hub_access_config: {
|
5672
|
+
# hub_content_arn: "HubContentArn", # required
|
5673
|
+
# },
|
5515
5674
|
# },
|
5516
5675
|
# },
|
5517
5676
|
# environment: {
|
@@ -5543,6 +5702,9 @@ module Aws::SageMaker
|
|
5543
5702
|
# model_access_config: {
|
5544
5703
|
# accept_eula: false, # required
|
5545
5704
|
# },
|
5705
|
+
# hub_access_config: {
|
5706
|
+
# hub_content_arn: "HubContentArn", # required
|
5707
|
+
# },
|
5546
5708
|
# },
|
5547
5709
|
# },
|
5548
5710
|
# environment: {
|
@@ -6216,6 +6378,9 @@ module Aws::SageMaker
|
|
6216
6378
|
# model_access_config: {
|
6217
6379
|
# accept_eula: false, # required
|
6218
6380
|
# },
|
6381
|
+
# hub_access_config: {
|
6382
|
+
# hub_content_arn: "HubContentArn", # required
|
6383
|
+
# },
|
6219
6384
|
# },
|
6220
6385
|
# },
|
6221
6386
|
# product_id: "ProductId",
|
@@ -6290,6 +6455,9 @@ module Aws::SageMaker
|
|
6290
6455
|
# model_access_config: {
|
6291
6456
|
# accept_eula: false, # required
|
6292
6457
|
# },
|
6458
|
+
# hub_access_config: {
|
6459
|
+
# hub_content_arn: "HubContentArn", # required
|
6460
|
+
# },
|
6293
6461
|
# },
|
6294
6462
|
# },
|
6295
6463
|
# algorithm_name: "ArnOrName", # required
|
@@ -6440,6 +6608,9 @@ module Aws::SageMaker
|
|
6440
6608
|
# model_access_config: {
|
6441
6609
|
# accept_eula: false, # required
|
6442
6610
|
# },
|
6611
|
+
# hub_access_config: {
|
6612
|
+
# hub_content_arn: "HubContentArn", # required
|
6613
|
+
# },
|
6443
6614
|
# },
|
6444
6615
|
# },
|
6445
6616
|
# product_id: "ProductId",
|
@@ -7330,6 +7501,49 @@ module Aws::SageMaker
|
|
7330
7501
|
req.send_request(options)
|
7331
7502
|
end
|
7332
7503
|
|
7504
|
+
# Returns a presigned URL that you can use to connect to the MLflow UI
|
7505
|
+
# attached to your tracking server. For more information, see [Launch
|
7506
|
+
# the MLflow UI using a presigned URL][1].
|
7507
|
+
#
|
7508
|
+
#
|
7509
|
+
#
|
7510
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-launch-ui.html
|
7511
|
+
#
|
7512
|
+
# @option params [required, String] :tracking_server_name
|
7513
|
+
# The name of the tracking server to connect to your MLflow UI.
|
7514
|
+
#
|
7515
|
+
# @option params [Integer] :expires_in_seconds
|
7516
|
+
# The duration in seconds that your presigned URL is valid. The
|
7517
|
+
# presigned URL can be used only once.
|
7518
|
+
#
|
7519
|
+
# @option params [Integer] :session_expiration_duration_in_seconds
|
7520
|
+
# The duration in seconds that your MLflow UI session is valid.
|
7521
|
+
#
|
7522
|
+
# @return [Types::CreatePresignedMlflowTrackingServerUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7523
|
+
#
|
7524
|
+
# * {Types::CreatePresignedMlflowTrackingServerUrlResponse#authorized_url #authorized_url} => String
|
7525
|
+
#
|
7526
|
+
# @example Request syntax with placeholder values
|
7527
|
+
#
|
7528
|
+
# resp = client.create_presigned_mlflow_tracking_server_url({
|
7529
|
+
# tracking_server_name: "TrackingServerName", # required
|
7530
|
+
# expires_in_seconds: 1,
|
7531
|
+
# session_expiration_duration_in_seconds: 1,
|
7532
|
+
# })
|
7533
|
+
#
|
7534
|
+
# @example Response structure
|
7535
|
+
#
|
7536
|
+
# resp.authorized_url #=> String
|
7537
|
+
#
|
7538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowTrackingServerUrl AWS API Documentation
|
7539
|
+
#
|
7540
|
+
# @overload create_presigned_mlflow_tracking_server_url(params = {})
|
7541
|
+
# @param [Hash] params ({})
|
7542
|
+
def create_presigned_mlflow_tracking_server_url(params = {}, options = {})
|
7543
|
+
req = build_request(:create_presigned_mlflow_tracking_server_url, params)
|
7544
|
+
req.send_request(options)
|
7545
|
+
end
|
7546
|
+
|
7333
7547
|
# Returns a URL that you can use to connect to the Jupyter server from a
|
7334
7548
|
# notebook instance. In the SageMaker console, when you choose `Open`
|
7335
7549
|
# next to a notebook instance, SageMaker opens a new tab showing the
|
@@ -9032,7 +9246,7 @@ module Aws::SageMaker
|
|
9032
9246
|
# @option params [Types::SourceIpConfig] :source_ip_config
|
9033
9247
|
# A list of IP address ranges ([CIDRs][1]). Used to create an allow list
|
9034
9248
|
# of IP addresses for a private workforce. Workers will only be able to
|
9035
|
-
#
|
9249
|
+
# log in to their worker portal from an IP address within this range. By
|
9036
9250
|
# default, a workforce isn't restricted to specific IP addresses.
|
9037
9251
|
#
|
9038
9252
|
#
|
@@ -9070,6 +9284,10 @@ module Aws::SageMaker
|
|
9070
9284
|
# user_info_endpoint: "OidcEndpoint", # required
|
9071
9285
|
# logout_endpoint: "OidcEndpoint", # required
|
9072
9286
|
# jwks_uri: "OidcEndpoint", # required
|
9287
|
+
# scope: "Scope",
|
9288
|
+
# authentication_request_extra_params: {
|
9289
|
+
# "AuthenticationRequestExtraParamsKey" => "AuthenticationRequestExtraParamsValue",
|
9290
|
+
# },
|
9073
9291
|
# },
|
9074
9292
|
# source_ip_config: {
|
9075
9293
|
# cidrs: ["Cidr"], # required
|
@@ -9802,10 +10020,6 @@ module Aws::SageMaker
|
|
9802
10020
|
|
9803
10021
|
# Delete a hub.
|
9804
10022
|
#
|
9805
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
9806
|
-
#
|
9807
|
-
# </note>
|
9808
|
-
#
|
9809
10023
|
# @option params [required, String] :hub_name
|
9810
10024
|
# The name of the hub to delete.
|
9811
10025
|
#
|
@@ -9814,7 +10028,7 @@ module Aws::SageMaker
|
|
9814
10028
|
# @example Request syntax with placeholder values
|
9815
10029
|
#
|
9816
10030
|
# resp = client.delete_hub({
|
9817
|
-
# hub_name: "
|
10031
|
+
# hub_name: "HubNameOrArn", # required
|
9818
10032
|
# })
|
9819
10033
|
#
|
9820
10034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHub AWS API Documentation
|
@@ -9828,10 +10042,6 @@ module Aws::SageMaker
|
|
9828
10042
|
|
9829
10043
|
# Delete the contents of a hub.
|
9830
10044
|
#
|
9831
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
9832
|
-
#
|
9833
|
-
# </note>
|
9834
|
-
#
|
9835
10045
|
# @option params [required, String] :hub_name
|
9836
10046
|
# The name of the hub that you want to delete content in.
|
9837
10047
|
#
|
@@ -9849,8 +10059,8 @@ module Aws::SageMaker
|
|
9849
10059
|
# @example Request syntax with placeholder values
|
9850
10060
|
#
|
9851
10061
|
# resp = client.delete_hub_content({
|
9852
|
-
# hub_name: "
|
9853
|
-
# hub_content_type: "Model", # required, accepts Model, Notebook
|
10062
|
+
# hub_name: "HubNameOrArn", # required
|
10063
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
9854
10064
|
# hub_content_name: "HubContentName", # required
|
9855
10065
|
# hub_content_version: "HubContentVersion", # required
|
9856
10066
|
# })
|
@@ -9864,6 +10074,37 @@ module Aws::SageMaker
|
|
9864
10074
|
req.send_request(options)
|
9865
10075
|
end
|
9866
10076
|
|
10077
|
+
# Delete a hub content reference in order to remove a model from a
|
10078
|
+
# private hub.
|
10079
|
+
#
|
10080
|
+
# @option params [required, String] :hub_name
|
10081
|
+
# The name of the hub to delete the hub content reference from.
|
10082
|
+
#
|
10083
|
+
# @option params [required, String] :hub_content_type
|
10084
|
+
# The type of hub content to delete.
|
10085
|
+
#
|
10086
|
+
# @option params [required, String] :hub_content_name
|
10087
|
+
# The name of the hub content to delete.
|
10088
|
+
#
|
10089
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10090
|
+
#
|
10091
|
+
# @example Request syntax with placeholder values
|
10092
|
+
#
|
10093
|
+
# resp = client.delete_hub_content_reference({
|
10094
|
+
# hub_name: "HubNameOrArn", # required
|
10095
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
10096
|
+
# hub_content_name: "HubContentName", # required
|
10097
|
+
# })
|
10098
|
+
#
|
10099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHubContentReference AWS API Documentation
|
10100
|
+
#
|
10101
|
+
# @overload delete_hub_content_reference(params = {})
|
10102
|
+
# @param [Hash] params ({})
|
10103
|
+
def delete_hub_content_reference(params = {}, options = {})
|
10104
|
+
req = build_request(:delete_hub_content_reference, params)
|
10105
|
+
req.send_request(options)
|
10106
|
+
end
|
10107
|
+
|
9867
10108
|
# Use this operation to delete a human task user interface (worker task
|
9868
10109
|
# template).
|
9869
10110
|
#
|
@@ -10032,6 +10273,39 @@ module Aws::SageMaker
|
|
10032
10273
|
req.send_request(options)
|
10033
10274
|
end
|
10034
10275
|
|
10276
|
+
# Deletes an MLflow Tracking Server. For more information, see [Clean up
|
10277
|
+
# MLflow resources][1].
|
10278
|
+
#
|
10279
|
+
#
|
10280
|
+
#
|
10281
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-cleanup.html.html
|
10282
|
+
#
|
10283
|
+
# @option params [required, String] :tracking_server_name
|
10284
|
+
# The name of the the tracking server to delete.
|
10285
|
+
#
|
10286
|
+
# @return [Types::DeleteMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10287
|
+
#
|
10288
|
+
# * {Types::DeleteMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
10289
|
+
#
|
10290
|
+
# @example Request syntax with placeholder values
|
10291
|
+
#
|
10292
|
+
# resp = client.delete_mlflow_tracking_server({
|
10293
|
+
# tracking_server_name: "TrackingServerName", # required
|
10294
|
+
# })
|
10295
|
+
#
|
10296
|
+
# @example Response structure
|
10297
|
+
#
|
10298
|
+
# resp.tracking_server_arn #=> String
|
10299
|
+
#
|
10300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowTrackingServer AWS API Documentation
|
10301
|
+
#
|
10302
|
+
# @overload delete_mlflow_tracking_server(params = {})
|
10303
|
+
# @param [Hash] params ({})
|
10304
|
+
def delete_mlflow_tracking_server(params = {}, options = {})
|
10305
|
+
req = build_request(:delete_mlflow_tracking_server, params)
|
10306
|
+
req.send_request(options)
|
10307
|
+
end
|
10308
|
+
|
10035
10309
|
# Deletes a model. The `DeleteModel` API deletes only the model entry
|
10036
10310
|
# that was created in SageMaker when you called the `CreateModel` API.
|
10037
10311
|
# It does not delete model artifacts, inference code, or the IAM role
|
@@ -10555,7 +10829,7 @@ module Aws::SageMaker
|
|
10555
10829
|
# If a private workforce contains one or more work teams, you must use
|
10556
10830
|
# the [DeleteWorkteam][2] operation to delete all work teams before you
|
10557
10831
|
# delete the workforce. If you try to delete a workforce that contains
|
10558
|
-
# one or more work teams, you will
|
10832
|
+
# one or more work teams, you will receive a `ResourceInUse` error.
|
10559
10833
|
#
|
10560
10834
|
#
|
10561
10835
|
#
|
@@ -10783,6 +11057,7 @@ module Aws::SageMaker
|
|
10783
11057
|
# resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
10784
11058
|
# resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
10785
11059
|
# resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
11060
|
+
# resp.inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
10786
11061
|
# resp.inference_specification.containers[0].product_id #=> String
|
10787
11062
|
# resp.inference_specification.containers[0].environment #=> Hash
|
10788
11063
|
# resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
|
@@ -11431,6 +11706,8 @@ module Aws::SageMaker
|
|
11431
11706
|
# resp.instance_groups[0].life_cycle_config.on_create #=> String
|
11432
11707
|
# resp.instance_groups[0].execution_role #=> String
|
11433
11708
|
# resp.instance_groups[0].threads_per_core #=> Integer
|
11709
|
+
# resp.instance_groups[0].instance_storage_configs #=> Array
|
11710
|
+
# resp.instance_groups[0].instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
|
11434
11711
|
# resp.vpc_config.security_group_ids #=> Array
|
11435
11712
|
# resp.vpc_config.security_group_ids[0] #=> String
|
11436
11713
|
# resp.vpc_config.subnets #=> Array
|
@@ -11477,6 +11754,8 @@ module Aws::SageMaker
|
|
11477
11754
|
# resp.node_details.life_cycle_config.source_s3_uri #=> String
|
11478
11755
|
# resp.node_details.life_cycle_config.on_create #=> String
|
11479
11756
|
# resp.node_details.threads_per_core #=> Integer
|
11757
|
+
# resp.node_details.instance_storage_configs #=> Array
|
11758
|
+
# resp.node_details.instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
|
11480
11759
|
# resp.node_details.private_primary_ip #=> String
|
11481
11760
|
# resp.node_details.private_dns_hostname #=> String
|
11482
11761
|
# resp.node_details.placement.availability_zone #=> String
|
@@ -12810,11 +13089,7 @@ module Aws::SageMaker
|
|
12810
13089
|
req.send_request(options)
|
12811
13090
|
end
|
12812
13091
|
|
12813
|
-
#
|
12814
|
-
#
|
12815
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
12816
|
-
#
|
12817
|
-
# </note>
|
13092
|
+
# Describes a hub.
|
12818
13093
|
#
|
12819
13094
|
# @option params [required, String] :hub_name
|
12820
13095
|
# The name of the hub to describe.
|
@@ -12835,7 +13110,7 @@ module Aws::SageMaker
|
|
12835
13110
|
# @example Request syntax with placeholder values
|
12836
13111
|
#
|
12837
13112
|
# resp = client.describe_hub({
|
12838
|
-
# hub_name: "
|
13113
|
+
# hub_name: "HubNameOrArn", # required
|
12839
13114
|
# })
|
12840
13115
|
#
|
12841
13116
|
# @example Response structure
|
@@ -12863,10 +13138,6 @@ module Aws::SageMaker
|
|
12863
13138
|
|
12864
13139
|
# Describe the content of a hub.
|
12865
13140
|
#
|
12866
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
12867
|
-
#
|
12868
|
-
# </note>
|
12869
|
-
#
|
12870
13141
|
# @option params [required, String] :hub_name
|
12871
13142
|
# The name of the hub that contains the content to describe.
|
12872
13143
|
#
|
@@ -12892,6 +13163,9 @@ module Aws::SageMaker
|
|
12892
13163
|
# * {Types::DescribeHubContentResponse#hub_content_description #hub_content_description} => String
|
12893
13164
|
# * {Types::DescribeHubContentResponse#hub_content_markdown #hub_content_markdown} => String
|
12894
13165
|
# * {Types::DescribeHubContentResponse#hub_content_document #hub_content_document} => String
|
13166
|
+
# * {Types::DescribeHubContentResponse#sage_maker_public_hub_content_arn #sage_maker_public_hub_content_arn} => String
|
13167
|
+
# * {Types::DescribeHubContentResponse#reference_min_version #reference_min_version} => String
|
13168
|
+
# * {Types::DescribeHubContentResponse#support_status #support_status} => String
|
12895
13169
|
# * {Types::DescribeHubContentResponse#hub_content_search_keywords #hub_content_search_keywords} => Array<String>
|
12896
13170
|
# * {Types::DescribeHubContentResponse#hub_content_dependencies #hub_content_dependencies} => Array<Types::HubContentDependency>
|
12897
13171
|
# * {Types::DescribeHubContentResponse#hub_content_status #hub_content_status} => String
|
@@ -12901,8 +13175,8 @@ module Aws::SageMaker
|
|
12901
13175
|
# @example Request syntax with placeholder values
|
12902
13176
|
#
|
12903
13177
|
# resp = client.describe_hub_content({
|
12904
|
-
# hub_name: "
|
12905
|
-
# hub_content_type: "Model", # required, accepts Model, Notebook
|
13178
|
+
# hub_name: "HubNameOrArn", # required
|
13179
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
12906
13180
|
# hub_content_name: "HubContentName", # required
|
12907
13181
|
# hub_content_version: "HubContentVersion",
|
12908
13182
|
# })
|
@@ -12912,7 +13186,7 @@ module Aws::SageMaker
|
|
12912
13186
|
# resp.hub_content_name #=> String
|
12913
13187
|
# resp.hub_content_arn #=> String
|
12914
13188
|
# resp.hub_content_version #=> String
|
12915
|
-
# resp.hub_content_type #=> String, one of "Model", "Notebook"
|
13189
|
+
# resp.hub_content_type #=> String, one of "Model", "Notebook", "ModelReference"
|
12916
13190
|
# resp.document_schema_version #=> String
|
12917
13191
|
# resp.hub_name #=> String
|
12918
13192
|
# resp.hub_arn #=> String
|
@@ -12920,6 +13194,9 @@ module Aws::SageMaker
|
|
12920
13194
|
# resp.hub_content_description #=> String
|
12921
13195
|
# resp.hub_content_markdown #=> String
|
12922
13196
|
# resp.hub_content_document #=> String
|
13197
|
+
# resp.sage_maker_public_hub_content_arn #=> String
|
13198
|
+
# resp.reference_min_version #=> String
|
13199
|
+
# resp.support_status #=> String, one of "Supported", "Deprecated"
|
12923
13200
|
# resp.hub_content_search_keywords #=> Array
|
12924
13201
|
# resp.hub_content_search_keywords[0] #=> String
|
12925
13202
|
# resp.hub_content_dependencies #=> Array
|
@@ -13816,6 +14093,72 @@ module Aws::SageMaker
|
|
13816
14093
|
req.send_request(options)
|
13817
14094
|
end
|
13818
14095
|
|
14096
|
+
# Returns information about an MLflow Tracking Server.
|
14097
|
+
#
|
14098
|
+
# @option params [required, String] :tracking_server_name
|
14099
|
+
# The name of the MLflow Tracking Server to describe.
|
14100
|
+
#
|
14101
|
+
# @return [Types::DescribeMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14102
|
+
#
|
14103
|
+
# * {Types::DescribeMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
14104
|
+
# * {Types::DescribeMlflowTrackingServerResponse#tracking_server_name #tracking_server_name} => String
|
14105
|
+
# * {Types::DescribeMlflowTrackingServerResponse#artifact_store_uri #artifact_store_uri} => String
|
14106
|
+
# * {Types::DescribeMlflowTrackingServerResponse#tracking_server_size #tracking_server_size} => String
|
14107
|
+
# * {Types::DescribeMlflowTrackingServerResponse#mlflow_version #mlflow_version} => String
|
14108
|
+
# * {Types::DescribeMlflowTrackingServerResponse#role_arn #role_arn} => String
|
14109
|
+
# * {Types::DescribeMlflowTrackingServerResponse#tracking_server_status #tracking_server_status} => String
|
14110
|
+
# * {Types::DescribeMlflowTrackingServerResponse#is_active #is_active} => String
|
14111
|
+
# * {Types::DescribeMlflowTrackingServerResponse#tracking_server_url #tracking_server_url} => String
|
14112
|
+
# * {Types::DescribeMlflowTrackingServerResponse#weekly_maintenance_window_start #weekly_maintenance_window_start} => String
|
14113
|
+
# * {Types::DescribeMlflowTrackingServerResponse#automatic_model_registration #automatic_model_registration} => Boolean
|
14114
|
+
# * {Types::DescribeMlflowTrackingServerResponse#creation_time #creation_time} => Time
|
14115
|
+
# * {Types::DescribeMlflowTrackingServerResponse#created_by #created_by} => Types::UserContext
|
14116
|
+
# * {Types::DescribeMlflowTrackingServerResponse#last_modified_time #last_modified_time} => Time
|
14117
|
+
# * {Types::DescribeMlflowTrackingServerResponse#last_modified_by #last_modified_by} => Types::UserContext
|
14118
|
+
#
|
14119
|
+
# @example Request syntax with placeholder values
|
14120
|
+
#
|
14121
|
+
# resp = client.describe_mlflow_tracking_server({
|
14122
|
+
# tracking_server_name: "TrackingServerName", # required
|
14123
|
+
# })
|
14124
|
+
#
|
14125
|
+
# @example Response structure
|
14126
|
+
#
|
14127
|
+
# resp.tracking_server_arn #=> String
|
14128
|
+
# resp.tracking_server_name #=> String
|
14129
|
+
# resp.artifact_store_uri #=> String
|
14130
|
+
# resp.tracking_server_size #=> String, one of "Small", "Medium", "Large"
|
14131
|
+
# resp.mlflow_version #=> String
|
14132
|
+
# resp.role_arn #=> String
|
14133
|
+
# resp.tracking_server_status #=> String, one of "Creating", "Created", "CreateFailed", "Updating", "Updated", "UpdateFailed", "Deleting", "DeleteFailed", "Stopping", "Stopped", "StopFailed", "Starting", "Started", "StartFailed", "MaintenanceInProgress", "MaintenanceComplete", "MaintenanceFailed"
|
14134
|
+
# resp.is_active #=> String, one of "Active", "Inactive"
|
14135
|
+
# resp.tracking_server_url #=> String
|
14136
|
+
# resp.weekly_maintenance_window_start #=> String
|
14137
|
+
# resp.automatic_model_registration #=> Boolean
|
14138
|
+
# resp.creation_time #=> Time
|
14139
|
+
# resp.created_by.user_profile_arn #=> String
|
14140
|
+
# resp.created_by.user_profile_name #=> String
|
14141
|
+
# resp.created_by.domain_id #=> String
|
14142
|
+
# resp.created_by.iam_identity.arn #=> String
|
14143
|
+
# resp.created_by.iam_identity.principal_id #=> String
|
14144
|
+
# resp.created_by.iam_identity.source_identity #=> String
|
14145
|
+
# resp.last_modified_time #=> Time
|
14146
|
+
# resp.last_modified_by.user_profile_arn #=> String
|
14147
|
+
# resp.last_modified_by.user_profile_name #=> String
|
14148
|
+
# resp.last_modified_by.domain_id #=> String
|
14149
|
+
# resp.last_modified_by.iam_identity.arn #=> String
|
14150
|
+
# resp.last_modified_by.iam_identity.principal_id #=> String
|
14151
|
+
# resp.last_modified_by.iam_identity.source_identity #=> String
|
14152
|
+
#
|
14153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServer AWS API Documentation
|
14154
|
+
#
|
14155
|
+
# @overload describe_mlflow_tracking_server(params = {})
|
14156
|
+
# @param [Hash] params ({})
|
14157
|
+
def describe_mlflow_tracking_server(params = {}, options = {})
|
14158
|
+
req = build_request(:describe_mlflow_tracking_server, params)
|
14159
|
+
req.send_request(options)
|
14160
|
+
end
|
14161
|
+
|
13819
14162
|
# Describes a model that you created using the `CreateModel` API.
|
13820
14163
|
#
|
13821
14164
|
# @option params [required, String] :model_name
|
@@ -13853,6 +14196,7 @@ module Aws::SageMaker
|
|
13853
14196
|
# resp.primary_container.model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
13854
14197
|
# resp.primary_container.model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
13855
14198
|
# resp.primary_container.model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
14199
|
+
# resp.primary_container.model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
13856
14200
|
# resp.primary_container.environment #=> Hash
|
13857
14201
|
# resp.primary_container.environment["EnvironmentKey"] #=> String
|
13858
14202
|
# resp.primary_container.model_package_name #=> String
|
@@ -13869,6 +14213,7 @@ module Aws::SageMaker
|
|
13869
14213
|
# resp.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
13870
14214
|
# resp.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
13871
14215
|
# resp.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
14216
|
+
# resp.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
13872
14217
|
# resp.containers[0].environment #=> Hash
|
13873
14218
|
# resp.containers[0].environment["EnvironmentKey"] #=> String
|
13874
14219
|
# resp.containers[0].model_package_name #=> String
|
@@ -14266,6 +14611,7 @@ module Aws::SageMaker
|
|
14266
14611
|
# resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
14267
14612
|
# resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
14268
14613
|
# resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
14614
|
+
# resp.inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
14269
14615
|
# resp.inference_specification.containers[0].product_id #=> String
|
14270
14616
|
# resp.inference_specification.containers[0].environment #=> Hash
|
14271
14617
|
# resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
|
@@ -14290,6 +14636,7 @@ module Aws::SageMaker
|
|
14290
14636
|
# resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
14291
14637
|
# resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
14292
14638
|
# resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
14639
|
+
# resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
14293
14640
|
# resp.source_algorithm_specification.source_algorithms[0].algorithm_name #=> String
|
14294
14641
|
# resp.validation_specification.validation_role #=> String
|
14295
14642
|
# resp.validation_specification.validation_profiles #=> Array
|
@@ -14408,6 +14755,7 @@ module Aws::SageMaker
|
|
14408
14755
|
# resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
|
14409
14756
|
# resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
14410
14757
|
# resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
|
14758
|
+
# resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
|
14411
14759
|
# resp.additional_inference_specifications[0].containers[0].product_id #=> String
|
14412
14760
|
# resp.additional_inference_specifications[0].containers[0].environment #=> Hash
|
14413
14761
|
# resp.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
|
@@ -15978,6 +16326,9 @@ module Aws::SageMaker
|
|
15978
16326
|
# resp.workforce.oidc_config.user_info_endpoint #=> String
|
15979
16327
|
# resp.workforce.oidc_config.logout_endpoint #=> String
|
15980
16328
|
# resp.workforce.oidc_config.jwks_uri #=> String
|
16329
|
+
# resp.workforce.oidc_config.scope #=> String
|
16330
|
+
# resp.workforce.oidc_config.authentication_request_extra_params #=> Hash
|
16331
|
+
# resp.workforce.oidc_config.authentication_request_extra_params["AuthenticationRequestExtraParamsKey"] #=> String
|
15981
16332
|
# resp.workforce.create_date #=> Time
|
15982
16333
|
# resp.workforce.workforce_vpc_config.vpc_id #=> String
|
15983
16334
|
# resp.workforce.workforce_vpc_config.security_group_ids #=> Array
|
@@ -15998,7 +16349,7 @@ module Aws::SageMaker
|
|
15998
16349
|
end
|
15999
16350
|
|
16000
16351
|
# Gets information about a specific work team. You can see information
|
16001
|
-
# such as the
|
16352
|
+
# such as the creation date, the last updated date, membership
|
16002
16353
|
# information, and the work team's Amazon Resource Name (ARN).
|
16003
16354
|
#
|
16004
16355
|
# @option params [required, String] :workteam_name
|
@@ -16385,10 +16736,6 @@ module Aws::SageMaker
|
|
16385
16736
|
|
16386
16737
|
# Import hub content.
|
16387
16738
|
#
|
16388
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
16389
|
-
#
|
16390
|
-
# </note>
|
16391
|
-
#
|
16392
16739
|
# @option params [required, String] :hub_content_name
|
16393
16740
|
# The name of the hub content to import.
|
16394
16741
|
#
|
@@ -16434,9 +16781,9 @@ module Aws::SageMaker
|
|
16434
16781
|
# resp = client.import_hub_content({
|
16435
16782
|
# hub_content_name: "HubContentName", # required
|
16436
16783
|
# hub_content_version: "HubContentVersion",
|
16437
|
-
# hub_content_type: "Model", # required, accepts Model, Notebook
|
16784
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
16438
16785
|
# document_schema_version: "DocumentSchemaVersion", # required
|
16439
|
-
# hub_name: "
|
16786
|
+
# hub_name: "HubNameOrArn", # required
|
16440
16787
|
# hub_content_display_name: "HubContentDisplayName",
|
16441
16788
|
# hub_content_description: "HubContentDescription",
|
16442
16789
|
# hub_content_markdown: "HubContentMarkdown",
|
@@ -18389,10 +18736,6 @@ module Aws::SageMaker
|
|
18389
18736
|
|
18390
18737
|
# List hub content versions.
|
18391
18738
|
#
|
18392
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
18393
|
-
#
|
18394
|
-
# </note>
|
18395
|
-
#
|
18396
18739
|
# @option params [required, String] :hub_name
|
18397
18740
|
# The name of the hub to list the content versions of.
|
18398
18741
|
#
|
@@ -18438,8 +18781,8 @@ module Aws::SageMaker
|
|
18438
18781
|
# @example Request syntax with placeholder values
|
18439
18782
|
#
|
18440
18783
|
# resp = client.list_hub_content_versions({
|
18441
|
-
# hub_name: "
|
18442
|
-
# hub_content_type: "Model", # required, accepts Model, Notebook
|
18784
|
+
# hub_name: "HubNameOrArn", # required
|
18785
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
18443
18786
|
# hub_content_name: "HubContentName", # required
|
18444
18787
|
# min_version: "HubContentVersion",
|
18445
18788
|
# max_schema_version: "DocumentSchemaVersion",
|
@@ -18456,15 +18799,18 @@ module Aws::SageMaker
|
|
18456
18799
|
# resp.hub_content_summaries #=> Array
|
18457
18800
|
# resp.hub_content_summaries[0].hub_content_name #=> String
|
18458
18801
|
# resp.hub_content_summaries[0].hub_content_arn #=> String
|
18802
|
+
# resp.hub_content_summaries[0].sage_maker_public_hub_content_arn #=> String
|
18459
18803
|
# resp.hub_content_summaries[0].hub_content_version #=> String
|
18460
|
-
# resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook"
|
18804
|
+
# resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook", "ModelReference"
|
18461
18805
|
# resp.hub_content_summaries[0].document_schema_version #=> String
|
18462
18806
|
# resp.hub_content_summaries[0].hub_content_display_name #=> String
|
18463
18807
|
# resp.hub_content_summaries[0].hub_content_description #=> String
|
18808
|
+
# resp.hub_content_summaries[0].support_status #=> String, one of "Supported", "Deprecated"
|
18464
18809
|
# resp.hub_content_summaries[0].hub_content_search_keywords #=> Array
|
18465
18810
|
# resp.hub_content_summaries[0].hub_content_search_keywords[0] #=> String
|
18466
18811
|
# resp.hub_content_summaries[0].hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
|
18467
18812
|
# resp.hub_content_summaries[0].creation_time #=> Time
|
18813
|
+
# resp.hub_content_summaries[0].original_creation_time #=> Time
|
18468
18814
|
# resp.next_token #=> String
|
18469
18815
|
#
|
18470
18816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubContentVersions AWS API Documentation
|
@@ -18478,10 +18824,6 @@ module Aws::SageMaker
|
|
18478
18824
|
|
18479
18825
|
# List the contents of a hub.
|
18480
18826
|
#
|
18481
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
18482
|
-
#
|
18483
|
-
# </note>
|
18484
|
-
#
|
18485
18827
|
# @option params [required, String] :hub_name
|
18486
18828
|
# The name of the hub to list the contents of.
|
18487
18829
|
#
|
@@ -18522,8 +18864,8 @@ module Aws::SageMaker
|
|
18522
18864
|
# @example Request syntax with placeholder values
|
18523
18865
|
#
|
18524
18866
|
# resp = client.list_hub_contents({
|
18525
|
-
# hub_name: "
|
18526
|
-
# hub_content_type: "Model", # required, accepts Model, Notebook
|
18867
|
+
# hub_name: "HubNameOrArn", # required
|
18868
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
18527
18869
|
# name_contains: "NameContains",
|
18528
18870
|
# max_schema_version: "DocumentSchemaVersion",
|
18529
18871
|
# creation_time_before: Time.now,
|
@@ -18539,15 +18881,18 @@ module Aws::SageMaker
|
|
18539
18881
|
# resp.hub_content_summaries #=> Array
|
18540
18882
|
# resp.hub_content_summaries[0].hub_content_name #=> String
|
18541
18883
|
# resp.hub_content_summaries[0].hub_content_arn #=> String
|
18884
|
+
# resp.hub_content_summaries[0].sage_maker_public_hub_content_arn #=> String
|
18542
18885
|
# resp.hub_content_summaries[0].hub_content_version #=> String
|
18543
|
-
# resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook"
|
18886
|
+
# resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook", "ModelReference"
|
18544
18887
|
# resp.hub_content_summaries[0].document_schema_version #=> String
|
18545
18888
|
# resp.hub_content_summaries[0].hub_content_display_name #=> String
|
18546
18889
|
# resp.hub_content_summaries[0].hub_content_description #=> String
|
18890
|
+
# resp.hub_content_summaries[0].support_status #=> String, one of "Supported", "Deprecated"
|
18547
18891
|
# resp.hub_content_summaries[0].hub_content_search_keywords #=> Array
|
18548
18892
|
# resp.hub_content_summaries[0].hub_content_search_keywords[0] #=> String
|
18549
18893
|
# resp.hub_content_summaries[0].hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
|
18550
18894
|
# resp.hub_content_summaries[0].creation_time #=> Time
|
18895
|
+
# resp.hub_content_summaries[0].original_creation_time #=> Time
|
18551
18896
|
# resp.next_token #=> String
|
18552
18897
|
#
|
18553
18898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubContents AWS API Documentation
|
@@ -18561,10 +18906,6 @@ module Aws::SageMaker
|
|
18561
18906
|
|
18562
18907
|
# List all existing hubs.
|
18563
18908
|
#
|
18564
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
18565
|
-
#
|
18566
|
-
# </note>
|
18567
|
-
#
|
18568
18909
|
# @option params [String] :name_contains
|
18569
18910
|
# Only list hubs with names that contain the specified string.
|
18570
18911
|
#
|
@@ -19572,6 +19913,93 @@ module Aws::SageMaker
|
|
19572
19913
|
req.send_request(options)
|
19573
19914
|
end
|
19574
19915
|
|
19916
|
+
# Lists all MLflow Tracking Servers.
|
19917
|
+
#
|
19918
|
+
# @option params [Time,DateTime,Date,Integer,String] :created_after
|
19919
|
+
# Use the `CreatedAfter` filter to only list tracking servers created
|
19920
|
+
# after a specific date and time. Listed tracking servers are shown with
|
19921
|
+
# a date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
19922
|
+
# `CreatedAfter` parameter takes in a Unix timestamp. To convert a date
|
19923
|
+
# and time into a Unix timestamp, see [EpochConverter][1].
|
19924
|
+
#
|
19925
|
+
#
|
19926
|
+
#
|
19927
|
+
# [1]: https://www.epochconverter.com/
|
19928
|
+
#
|
19929
|
+
# @option params [Time,DateTime,Date,Integer,String] :created_before
|
19930
|
+
# Use the `CreatedBefore` filter to only list tracking servers created
|
19931
|
+
# before a specific date and time. Listed tracking servers are shown
|
19932
|
+
# with a date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
19933
|
+
# `CreatedBefore` parameter takes in a Unix timestamp. To convert a date
|
19934
|
+
# and time into a Unix timestamp, see [EpochConverter][1].
|
19935
|
+
#
|
19936
|
+
#
|
19937
|
+
#
|
19938
|
+
# [1]: https://www.epochconverter.com/
|
19939
|
+
#
|
19940
|
+
# @option params [String] :tracking_server_status
|
19941
|
+
# Filter for tracking servers with a specified creation status.
|
19942
|
+
#
|
19943
|
+
# @option params [String] :mlflow_version
|
19944
|
+
# Filter for tracking servers using the specified MLflow version.
|
19945
|
+
#
|
19946
|
+
# @option params [String] :sort_by
|
19947
|
+
# Filter for trackings servers sorting by name, creation time, or
|
19948
|
+
# creation status.
|
19949
|
+
#
|
19950
|
+
# @option params [String] :sort_order
|
19951
|
+
# Change the order of the listed tracking servers. By default, tracking
|
19952
|
+
# servers are listed in `Descending` order by creation time. To change
|
19953
|
+
# the list order, you can specify `SortOrder` to be `Ascending`.
|
19954
|
+
#
|
19955
|
+
# @option params [String] :next_token
|
19956
|
+
# If the previous response was truncated, you will receive this token.
|
19957
|
+
# Use it in your next request to receive the next set of results.
|
19958
|
+
#
|
19959
|
+
# @option params [Integer] :max_results
|
19960
|
+
# The maximum number of tracking servers to list.
|
19961
|
+
#
|
19962
|
+
# @return [Types::ListMlflowTrackingServersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19963
|
+
#
|
19964
|
+
# * {Types::ListMlflowTrackingServersResponse#tracking_server_summaries #tracking_server_summaries} => Array<Types::TrackingServerSummary>
|
19965
|
+
# * {Types::ListMlflowTrackingServersResponse#next_token #next_token} => String
|
19966
|
+
#
|
19967
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
19968
|
+
#
|
19969
|
+
# @example Request syntax with placeholder values
|
19970
|
+
#
|
19971
|
+
# resp = client.list_mlflow_tracking_servers({
|
19972
|
+
# created_after: Time.now,
|
19973
|
+
# created_before: Time.now,
|
19974
|
+
# tracking_server_status: "Creating", # accepts Creating, Created, CreateFailed, Updating, Updated, UpdateFailed, Deleting, DeleteFailed, Stopping, Stopped, StopFailed, Starting, Started, StartFailed, MaintenanceInProgress, MaintenanceComplete, MaintenanceFailed
|
19975
|
+
# mlflow_version: "MlflowVersion",
|
19976
|
+
# sort_by: "Name", # accepts Name, CreationTime, Status
|
19977
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
19978
|
+
# next_token: "NextToken",
|
19979
|
+
# max_results: 1,
|
19980
|
+
# })
|
19981
|
+
#
|
19982
|
+
# @example Response structure
|
19983
|
+
#
|
19984
|
+
# resp.tracking_server_summaries #=> Array
|
19985
|
+
# resp.tracking_server_summaries[0].tracking_server_arn #=> String
|
19986
|
+
# resp.tracking_server_summaries[0].tracking_server_name #=> String
|
19987
|
+
# resp.tracking_server_summaries[0].creation_time #=> Time
|
19988
|
+
# resp.tracking_server_summaries[0].last_modified_time #=> Time
|
19989
|
+
# resp.tracking_server_summaries[0].tracking_server_status #=> String, one of "Creating", "Created", "CreateFailed", "Updating", "Updated", "UpdateFailed", "Deleting", "DeleteFailed", "Stopping", "Stopped", "StopFailed", "Starting", "Started", "StartFailed", "MaintenanceInProgress", "MaintenanceComplete", "MaintenanceFailed"
|
19990
|
+
# resp.tracking_server_summaries[0].is_active #=> String, one of "Active", "Inactive"
|
19991
|
+
# resp.tracking_server_summaries[0].mlflow_version #=> String
|
19992
|
+
# resp.next_token #=> String
|
19993
|
+
#
|
19994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServers AWS API Documentation
|
19995
|
+
#
|
19996
|
+
# @overload list_mlflow_tracking_servers(params = {})
|
19997
|
+
# @param [Hash] params ({})
|
19998
|
+
def list_mlflow_tracking_servers(params = {}, options = {})
|
19999
|
+
req = build_request(:list_mlflow_tracking_servers, params)
|
20000
|
+
req.send_request(options)
|
20001
|
+
end
|
20002
|
+
|
19575
20003
|
# Lists model bias jobs definitions that satisfy various filters.
|
19576
20004
|
#
|
19577
20005
|
# @option params [String] :endpoint_name
|
@@ -20022,6 +20450,13 @@ module Aws::SageMaker
|
|
20022
20450
|
# @option params [String] :sort_order
|
20023
20451
|
# The sort order for results. The default is `Ascending`.
|
20024
20452
|
#
|
20453
|
+
# @option params [String] :cross_account_filter_option
|
20454
|
+
# A filter that returns either model groups shared with you or model
|
20455
|
+
# groups in your own account. When the value is `CrossAccount`, the
|
20456
|
+
# results show the resources made discoverable to you from other
|
20457
|
+
# accounts. When the value is `SameAccount` or `null`, the results show
|
20458
|
+
# resources from your account. The default is `SameAccount`.
|
20459
|
+
#
|
20025
20460
|
# @return [Types::ListModelPackageGroupsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20026
20461
|
#
|
20027
20462
|
# * {Types::ListModelPackageGroupsOutput#model_package_group_summary_list #model_package_group_summary_list} => Array<Types::ModelPackageGroupSummary>
|
@@ -20039,6 +20474,7 @@ module Aws::SageMaker
|
|
20039
20474
|
# next_token: "NextToken",
|
20040
20475
|
# sort_by: "Name", # accepts Name, CreationTime
|
20041
20476
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
20477
|
+
# cross_account_filter_option: "SameAccount", # accepts SameAccount, CrossAccount
|
20042
20478
|
# })
|
20043
20479
|
#
|
20044
20480
|
# @example Response structure
|
@@ -22194,6 +22630,9 @@ module Aws::SageMaker
|
|
22194
22630
|
# resp.workforces[0].oidc_config.user_info_endpoint #=> String
|
22195
22631
|
# resp.workforces[0].oidc_config.logout_endpoint #=> String
|
22196
22632
|
# resp.workforces[0].oidc_config.jwks_uri #=> String
|
22633
|
+
# resp.workforces[0].oidc_config.scope #=> String
|
22634
|
+
# resp.workforces[0].oidc_config.authentication_request_extra_params #=> Hash
|
22635
|
+
# resp.workforces[0].oidc_config.authentication_request_extra_params["AuthenticationRequestExtraParamsKey"] #=> String
|
22197
22636
|
# resp.workforces[0].create_date #=> Time
|
22198
22637
|
# resp.workforces[0].workforce_vpc_config.vpc_id #=> String
|
22199
22638
|
# resp.workforces[0].workforce_vpc_config.security_group_ids #=> Array
|
@@ -22845,6 +23284,34 @@ module Aws::SageMaker
|
|
22845
23284
|
req.send_request(options)
|
22846
23285
|
end
|
22847
23286
|
|
23287
|
+
# Programmatically start an MLflow Tracking Server.
|
23288
|
+
#
|
23289
|
+
# @option params [required, String] :tracking_server_name
|
23290
|
+
# The name of the tracking server to start.
|
23291
|
+
#
|
23292
|
+
# @return [Types::StartMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23293
|
+
#
|
23294
|
+
# * {Types::StartMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
23295
|
+
#
|
23296
|
+
# @example Request syntax with placeholder values
|
23297
|
+
#
|
23298
|
+
# resp = client.start_mlflow_tracking_server({
|
23299
|
+
# tracking_server_name: "TrackingServerName", # required
|
23300
|
+
# })
|
23301
|
+
#
|
23302
|
+
# @example Response structure
|
23303
|
+
#
|
23304
|
+
# resp.tracking_server_arn #=> String
|
23305
|
+
#
|
23306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartMlflowTrackingServer AWS API Documentation
|
23307
|
+
#
|
23308
|
+
# @overload start_mlflow_tracking_server(params = {})
|
23309
|
+
# @param [Hash] params ({})
|
23310
|
+
def start_mlflow_tracking_server(params = {}, options = {})
|
23311
|
+
req = build_request(:start_mlflow_tracking_server, params)
|
23312
|
+
req.send_request(options)
|
23313
|
+
end
|
23314
|
+
|
22848
23315
|
# Starts a previously stopped monitoring schedule.
|
22849
23316
|
#
|
22850
23317
|
# <note markdown="1"> By default, when you successfully create a new schedule, the status of
|
@@ -23219,6 +23686,34 @@ module Aws::SageMaker
|
|
23219
23686
|
req.send_request(options)
|
23220
23687
|
end
|
23221
23688
|
|
23689
|
+
# Programmatically stop an MLflow Tracking Server.
|
23690
|
+
#
|
23691
|
+
# @option params [required, String] :tracking_server_name
|
23692
|
+
# The name of the tracking server to stop.
|
23693
|
+
#
|
23694
|
+
# @return [Types::StopMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23695
|
+
#
|
23696
|
+
# * {Types::StopMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
23697
|
+
#
|
23698
|
+
# @example Request syntax with placeholder values
|
23699
|
+
#
|
23700
|
+
# resp = client.stop_mlflow_tracking_server({
|
23701
|
+
# tracking_server_name: "TrackingServerName", # required
|
23702
|
+
# })
|
23703
|
+
#
|
23704
|
+
# @example Response structure
|
23705
|
+
#
|
23706
|
+
# resp.tracking_server_arn #=> String
|
23707
|
+
#
|
23708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopMlflowTrackingServer AWS API Documentation
|
23709
|
+
#
|
23710
|
+
# @overload stop_mlflow_tracking_server(params = {})
|
23711
|
+
# @param [Hash] params ({})
|
23712
|
+
def stop_mlflow_tracking_server(params = {}, options = {})
|
23713
|
+
req = build_request(:stop_mlflow_tracking_server, params)
|
23714
|
+
req.send_request(options)
|
23715
|
+
end
|
23716
|
+
|
23222
23717
|
# Stops a previously started monitoring schedule.
|
23223
23718
|
#
|
23224
23719
|
# @option params [required, String] :monitoring_schedule_name
|
@@ -23608,6 +24103,13 @@ module Aws::SageMaker
|
|
23608
24103
|
# },
|
23609
24104
|
# execution_role: "RoleArn", # required
|
23610
24105
|
# threads_per_core: 1,
|
24106
|
+
# instance_storage_configs: [
|
24107
|
+
# {
|
24108
|
+
# ebs_volume_config: {
|
24109
|
+
# volume_size_in_gb: 1, # required
|
24110
|
+
# },
|
24111
|
+
# },
|
24112
|
+
# ],
|
23611
24113
|
# },
|
23612
24114
|
# ],
|
23613
24115
|
# })
|
@@ -24507,10 +25009,6 @@ module Aws::SageMaker
|
|
24507
25009
|
|
24508
25010
|
# Update a hub.
|
24509
25011
|
#
|
24510
|
-
# <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
|
24511
|
-
#
|
24512
|
-
# </note>
|
24513
|
-
#
|
24514
25012
|
# @option params [required, String] :hub_name
|
24515
25013
|
# The name of the hub to update.
|
24516
25014
|
#
|
@@ -24530,7 +25028,7 @@ module Aws::SageMaker
|
|
24530
25028
|
# @example Request syntax with placeholder values
|
24531
25029
|
#
|
24532
25030
|
# resp = client.update_hub({
|
24533
|
-
# hub_name: "
|
25031
|
+
# hub_name: "HubNameOrArn", # required
|
24534
25032
|
# hub_description: "HubDescription",
|
24535
25033
|
# hub_display_name: "HubDisplayName",
|
24536
25034
|
# hub_search_keywords: ["HubSearchKeyword"],
|
@@ -24887,6 +25385,57 @@ module Aws::SageMaker
|
|
24887
25385
|
req.send_request(options)
|
24888
25386
|
end
|
24889
25387
|
|
25388
|
+
# Updates properties of an existing MLflow Tracking Server.
|
25389
|
+
#
|
25390
|
+
# @option params [required, String] :tracking_server_name
|
25391
|
+
# The name of the MLflow Tracking Server to update.
|
25392
|
+
#
|
25393
|
+
# @option params [String] :artifact_store_uri
|
25394
|
+
# The new S3 URI for the general purpose bucket to use as the artifact
|
25395
|
+
# store for the MLflow Tracking Server.
|
25396
|
+
#
|
25397
|
+
# @option params [String] :tracking_server_size
|
25398
|
+
# The new size for the MLflow Tracking Server.
|
25399
|
+
#
|
25400
|
+
# @option params [Boolean] :automatic_model_registration
|
25401
|
+
# Whether to enable or disable automatic registration of new MLflow
|
25402
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
25403
|
+
# registration, set this value to `True`. To disable automatic model
|
25404
|
+
# registration, set this value to `False`. If not specified,
|
25405
|
+
# `AutomaticModelRegistration` defaults to `False`
|
25406
|
+
#
|
25407
|
+
# @option params [String] :weekly_maintenance_window_start
|
25408
|
+
# The new weekly maintenance window start day and time to update. The
|
25409
|
+
# maintenance window day and time should be in Coordinated Universal
|
25410
|
+
# Time (UTC) 24-hour standard time. For example: TUE:03:30.
|
25411
|
+
#
|
25412
|
+
# @return [Types::UpdateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25413
|
+
#
|
25414
|
+
# * {Types::UpdateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
25415
|
+
#
|
25416
|
+
# @example Request syntax with placeholder values
|
25417
|
+
#
|
25418
|
+
# resp = client.update_mlflow_tracking_server({
|
25419
|
+
# tracking_server_name: "TrackingServerName", # required
|
25420
|
+
# artifact_store_uri: "S3Uri",
|
25421
|
+
# tracking_server_size: "Small", # accepts Small, Medium, Large
|
25422
|
+
# automatic_model_registration: false,
|
25423
|
+
# weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
|
25424
|
+
# })
|
25425
|
+
#
|
25426
|
+
# @example Response structure
|
25427
|
+
#
|
25428
|
+
# resp.tracking_server_arn #=> String
|
25429
|
+
#
|
25430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServer AWS API Documentation
|
25431
|
+
#
|
25432
|
+
# @overload update_mlflow_tracking_server(params = {})
|
25433
|
+
# @param [Hash] params ({})
|
25434
|
+
def update_mlflow_tracking_server(params = {}, options = {})
|
25435
|
+
req = build_request(:update_mlflow_tracking_server, params)
|
25436
|
+
req.send_request(options)
|
25437
|
+
end
|
25438
|
+
|
24890
25439
|
# Update an Amazon SageMaker Model Card.
|
24891
25440
|
#
|
24892
25441
|
# You cannot update both model card content and model card status in a
|
@@ -25036,6 +25585,9 @@ module Aws::SageMaker
|
|
25036
25585
|
# model_access_config: {
|
25037
25586
|
# accept_eula: false, # required
|
25038
25587
|
# },
|
25588
|
+
# hub_access_config: {
|
25589
|
+
# hub_content_arn: "HubContentArn", # required
|
25590
|
+
# },
|
25039
25591
|
# },
|
25040
25592
|
# },
|
25041
25593
|
# product_id: "ProductId",
|
@@ -25076,6 +25628,9 @@ module Aws::SageMaker
|
|
25076
25628
|
# model_access_config: {
|
25077
25629
|
# accept_eula: false, # required
|
25078
25630
|
# },
|
25631
|
+
# hub_access_config: {
|
25632
|
+
# hub_content_arn: "HubContentArn", # required
|
25633
|
+
# },
|
25079
25634
|
# },
|
25080
25635
|
# },
|
25081
25636
|
# product_id: "ProductId",
|
@@ -26280,6 +26835,10 @@ module Aws::SageMaker
|
|
26280
26835
|
# user_info_endpoint: "OidcEndpoint", # required
|
26281
26836
|
# logout_endpoint: "OidcEndpoint", # required
|
26282
26837
|
# jwks_uri: "OidcEndpoint", # required
|
26838
|
+
# scope: "Scope",
|
26839
|
+
# authentication_request_extra_params: {
|
26840
|
+
# "AuthenticationRequestExtraParamsKey" => "AuthenticationRequestExtraParamsValue",
|
26841
|
+
# },
|
26283
26842
|
# },
|
26284
26843
|
# workforce_vpc_config: {
|
26285
26844
|
# vpc_id: "WorkforceVpcId",
|
@@ -26305,6 +26864,9 @@ module Aws::SageMaker
|
|
26305
26864
|
# resp.workforce.oidc_config.user_info_endpoint #=> String
|
26306
26865
|
# resp.workforce.oidc_config.logout_endpoint #=> String
|
26307
26866
|
# resp.workforce.oidc_config.jwks_uri #=> String
|
26867
|
+
# resp.workforce.oidc_config.scope #=> String
|
26868
|
+
# resp.workforce.oidc_config.authentication_request_extra_params #=> Hash
|
26869
|
+
# resp.workforce.oidc_config.authentication_request_extra_params["AuthenticationRequestExtraParamsKey"] #=> String
|
26308
26870
|
# resp.workforce.create_date #=> Time
|
26309
26871
|
# resp.workforce.workforce_vpc_config.vpc_id #=> String
|
26310
26872
|
# resp.workforce.workforce_vpc_config.security_group_ids #=> Array
|
@@ -26451,7 +27013,7 @@ module Aws::SageMaker
|
|
26451
27013
|
params: params,
|
26452
27014
|
config: config)
|
26453
27015
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
26454
|
-
context[:gem_version] = '1.
|
27016
|
+
context[:gem_version] = '1.248.0'
|
26455
27017
|
Seahorse::Client::Request.new(handlers, context)
|
26456
27018
|
end
|
26457
27019
|
|