aws-sdk-sagemaker 1.341.0 → 1.342.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +399 -38
- data/lib/aws-sdk-sagemaker/client_api.rb +173 -2
- data/lib/aws-sdk-sagemaker/types.rb +450 -2
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +126 -22
- data/sig/types.rbs +130 -21
- metadata +1 -1
|
@@ -5467,12 +5467,35 @@ module Aws::SageMaker
|
|
|
5467
5467
|
# @return [Types::ClusterCapacityRequirements]
|
|
5468
5468
|
#
|
|
5469
5469
|
# @!attribute [rw] target_state_count
|
|
5470
|
-
#
|
|
5471
|
-
#
|
|
5470
|
+
# Represents the number of running nodes using the desired Image ID.
|
|
5471
|
+
#
|
|
5472
|
+
# 1. **During software update operations:** This count shows the
|
|
5473
|
+
# number of nodes running on the desired Image ID. If a rollback
|
|
5474
|
+
# occurs, the current image ID and desired image ID (both included
|
|
5475
|
+
# in the describe cluster response) swap values. The
|
|
5476
|
+
# TargetStateCount then shows the number of nodes running on the
|
|
5477
|
+
# newly designated desired image ID (which was previously the
|
|
5478
|
+
# current image ID).
|
|
5479
|
+
#
|
|
5480
|
+
# 2. **During simultaneous scaling and software update operations:**
|
|
5481
|
+
# This count shows the number of instances running on the desired
|
|
5482
|
+
# image ID, including any new instances created as part of the
|
|
5483
|
+
# scaling request. New nodes are always created using the desired
|
|
5484
|
+
# image ID, so TargetStateCount reflects the total count of nodes
|
|
5485
|
+
# running on the desired image ID, even during rollback scenarios.
|
|
5472
5486
|
# @return [Integer]
|
|
5473
5487
|
#
|
|
5474
5488
|
# @!attribute [rw] software_update_status
|
|
5475
5489
|
# Status of the last software udpate request.
|
|
5490
|
+
#
|
|
5491
|
+
# Status transitions follow these possible sequences:
|
|
5492
|
+
#
|
|
5493
|
+
# * Pending -> InProgress -> Succeeded
|
|
5494
|
+
#
|
|
5495
|
+
# * Pending -> InProgress -> RollbackInProgress ->
|
|
5496
|
+
# RollbackComplete
|
|
5497
|
+
#
|
|
5498
|
+
# * Pending -> InProgress -> RollbackInProgress -> Failed
|
|
5476
5499
|
# @return [String]
|
|
5477
5500
|
#
|
|
5478
5501
|
# @!attribute [rw] active_software_update_config
|
|
@@ -10287,6 +10310,80 @@ module Aws::SageMaker
|
|
|
10287
10310
|
include Aws::Structure
|
|
10288
10311
|
end
|
|
10289
10312
|
|
|
10313
|
+
# @!attribute [rw] name
|
|
10314
|
+
# A string identifying the MLflow app name. This string is not part of
|
|
10315
|
+
# the tracking server ARN.
|
|
10316
|
+
# @return [String]
|
|
10317
|
+
#
|
|
10318
|
+
# @!attribute [rw] artifact_store_uri
|
|
10319
|
+
# The S3 URI for a general purpose bucket to use as the MLflow App
|
|
10320
|
+
# artifact store.
|
|
10321
|
+
# @return [String]
|
|
10322
|
+
#
|
|
10323
|
+
# @!attribute [rw] role_arn
|
|
10324
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
|
10325
|
+
# the MLflow App uses to access the artifact store in Amazon S3. The
|
|
10326
|
+
# role should have the `AmazonS3FullAccess` permission.
|
|
10327
|
+
# @return [String]
|
|
10328
|
+
#
|
|
10329
|
+
# @!attribute [rw] model_registration_mode
|
|
10330
|
+
# Whether to enable or disable automatic registration of new MLflow
|
|
10331
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
|
10332
|
+
# registration, set this value to `AutoModelRegistrationEnabled`. To
|
|
10333
|
+
# disable automatic model registration, set this value to
|
|
10334
|
+
# `AutoModelRegistrationDisabled`. If not specified,
|
|
10335
|
+
# `AutomaticModelRegistration` defaults to
|
|
10336
|
+
# `AutoModelRegistrationDisabled`.
|
|
10337
|
+
# @return [String]
|
|
10338
|
+
#
|
|
10339
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
|
10340
|
+
# The day and time of the week in Coordinated Universal Time (UTC)
|
|
10341
|
+
# 24-hour standard time that weekly maintenance updates are scheduled.
|
|
10342
|
+
# For example: TUE:03:30.
|
|
10343
|
+
# @return [String]
|
|
10344
|
+
#
|
|
10345
|
+
# @!attribute [rw] account_default_status
|
|
10346
|
+
# Indicates whether this MLflow app is the default for the entire
|
|
10347
|
+
# account.
|
|
10348
|
+
# @return [String]
|
|
10349
|
+
#
|
|
10350
|
+
# @!attribute [rw] default_domain_id_list
|
|
10351
|
+
# List of SageMaker domain IDs for which this MLflow App is used as
|
|
10352
|
+
# the default.
|
|
10353
|
+
# @return [Array<String>]
|
|
10354
|
+
#
|
|
10355
|
+
# @!attribute [rw] tags
|
|
10356
|
+
# Tags consisting of key-value pairs used to manage metadata for the
|
|
10357
|
+
# MLflow App.
|
|
10358
|
+
# @return [Array<Types::Tag>]
|
|
10359
|
+
#
|
|
10360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowAppRequest AWS API Documentation
|
|
10361
|
+
#
|
|
10362
|
+
class CreateMlflowAppRequest < Struct.new(
|
|
10363
|
+
:name,
|
|
10364
|
+
:artifact_store_uri,
|
|
10365
|
+
:role_arn,
|
|
10366
|
+
:model_registration_mode,
|
|
10367
|
+
:weekly_maintenance_window_start,
|
|
10368
|
+
:account_default_status,
|
|
10369
|
+
:default_domain_id_list,
|
|
10370
|
+
:tags)
|
|
10371
|
+
SENSITIVE = []
|
|
10372
|
+
include Aws::Structure
|
|
10373
|
+
end
|
|
10374
|
+
|
|
10375
|
+
# @!attribute [rw] arn
|
|
10376
|
+
# The ARN of the MLflow App.
|
|
10377
|
+
# @return [String]
|
|
10378
|
+
#
|
|
10379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowAppResponse AWS API Documentation
|
|
10380
|
+
#
|
|
10381
|
+
class CreateMlflowAppResponse < Struct.new(
|
|
10382
|
+
:arn)
|
|
10383
|
+
SENSITIVE = []
|
|
10384
|
+
include Aws::Structure
|
|
10385
|
+
end
|
|
10386
|
+
|
|
10290
10387
|
# @!attribute [rw] tracking_server_name
|
|
10291
10388
|
# A unique string identifying the tracking server name. This string is
|
|
10292
10389
|
# part of the tracking server ARN.
|
|
@@ -11766,6 +11863,42 @@ module Aws::SageMaker
|
|
|
11766
11863
|
include Aws::Structure
|
|
11767
11864
|
end
|
|
11768
11865
|
|
|
11866
|
+
# @!attribute [rw] arn
|
|
11867
|
+
# The ARN of the MLflow App to connect to your MLflow UI.
|
|
11868
|
+
# @return [String]
|
|
11869
|
+
#
|
|
11870
|
+
# @!attribute [rw] expires_in_seconds
|
|
11871
|
+
# The duration in seconds that your presigned URL is valid. The
|
|
11872
|
+
# presigned URL can be used only once.
|
|
11873
|
+
# @return [Integer]
|
|
11874
|
+
#
|
|
11875
|
+
# @!attribute [rw] session_expiration_duration_in_seconds
|
|
11876
|
+
# The duration in seconds that your presigned URL is valid. The
|
|
11877
|
+
# presigned URL can be used only once.
|
|
11878
|
+
# @return [Integer]
|
|
11879
|
+
#
|
|
11880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowAppUrlRequest AWS API Documentation
|
|
11881
|
+
#
|
|
11882
|
+
class CreatePresignedMlflowAppUrlRequest < Struct.new(
|
|
11883
|
+
:arn,
|
|
11884
|
+
:expires_in_seconds,
|
|
11885
|
+
:session_expiration_duration_in_seconds)
|
|
11886
|
+
SENSITIVE = []
|
|
11887
|
+
include Aws::Structure
|
|
11888
|
+
end
|
|
11889
|
+
|
|
11890
|
+
# @!attribute [rw] authorized_url
|
|
11891
|
+
# A presigned URL with an authorization token.
|
|
11892
|
+
# @return [String]
|
|
11893
|
+
#
|
|
11894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowAppUrlResponse AWS API Documentation
|
|
11895
|
+
#
|
|
11896
|
+
class CreatePresignedMlflowAppUrlResponse < Struct.new(
|
|
11897
|
+
:authorized_url)
|
|
11898
|
+
SENSITIVE = []
|
|
11899
|
+
include Aws::Structure
|
|
11900
|
+
end
|
|
11901
|
+
|
|
11769
11902
|
# @!attribute [rw] tracking_server_name
|
|
11770
11903
|
# The name of the tracking server to connect to your MLflow UI.
|
|
11771
11904
|
# @return [String]
|
|
@@ -14320,6 +14453,30 @@ module Aws::SageMaker
|
|
|
14320
14453
|
include Aws::Structure
|
|
14321
14454
|
end
|
|
14322
14455
|
|
|
14456
|
+
# @!attribute [rw] arn
|
|
14457
|
+
# The ARN of the MLflow App to delete.
|
|
14458
|
+
# @return [String]
|
|
14459
|
+
#
|
|
14460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowAppRequest AWS API Documentation
|
|
14461
|
+
#
|
|
14462
|
+
class DeleteMlflowAppRequest < Struct.new(
|
|
14463
|
+
:arn)
|
|
14464
|
+
SENSITIVE = []
|
|
14465
|
+
include Aws::Structure
|
|
14466
|
+
end
|
|
14467
|
+
|
|
14468
|
+
# @!attribute [rw] arn
|
|
14469
|
+
# The ARN of the deleted MLflow App.
|
|
14470
|
+
# @return [String]
|
|
14471
|
+
#
|
|
14472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowAppResponse AWS API Documentation
|
|
14473
|
+
#
|
|
14474
|
+
class DeleteMlflowAppResponse < Struct.new(
|
|
14475
|
+
:arn)
|
|
14476
|
+
SENSITIVE = []
|
|
14477
|
+
include Aws::Structure
|
|
14478
|
+
end
|
|
14479
|
+
|
|
14323
14480
|
# @!attribute [rw] tracking_server_name
|
|
14324
14481
|
# The name of the the tracking server to delete.
|
|
14325
14482
|
# @return [String]
|
|
@@ -18698,6 +18855,107 @@ module Aws::SageMaker
|
|
|
18698
18855
|
include Aws::Structure
|
|
18699
18856
|
end
|
|
18700
18857
|
|
|
18858
|
+
# @!attribute [rw] arn
|
|
18859
|
+
# The ARN of the MLflow App for which to get information.
|
|
18860
|
+
# @return [String]
|
|
18861
|
+
#
|
|
18862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowAppRequest AWS API Documentation
|
|
18863
|
+
#
|
|
18864
|
+
class DescribeMlflowAppRequest < Struct.new(
|
|
18865
|
+
:arn)
|
|
18866
|
+
SENSITIVE = []
|
|
18867
|
+
include Aws::Structure
|
|
18868
|
+
end
|
|
18869
|
+
|
|
18870
|
+
# @!attribute [rw] arn
|
|
18871
|
+
# The ARN of the MLflow App.
|
|
18872
|
+
# @return [String]
|
|
18873
|
+
#
|
|
18874
|
+
# @!attribute [rw] name
|
|
18875
|
+
# The name of the MLflow App.
|
|
18876
|
+
# @return [String]
|
|
18877
|
+
#
|
|
18878
|
+
# @!attribute [rw] artifact_store_uri
|
|
18879
|
+
# The S3 URI of the general purpose bucket used as the MLflow App
|
|
18880
|
+
# artifact store.
|
|
18881
|
+
# @return [String]
|
|
18882
|
+
#
|
|
18883
|
+
# @!attribute [rw] mlflow_version
|
|
18884
|
+
# The MLflow version used.
|
|
18885
|
+
# @return [String]
|
|
18886
|
+
#
|
|
18887
|
+
# @!attribute [rw] role_arn
|
|
18888
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
|
18889
|
+
# the MLflow App uses to access the artifact store in Amazon S3.
|
|
18890
|
+
# @return [String]
|
|
18891
|
+
#
|
|
18892
|
+
# @!attribute [rw] status
|
|
18893
|
+
# The current creation status of the described MLflow App.
|
|
18894
|
+
# @return [String]
|
|
18895
|
+
#
|
|
18896
|
+
# @!attribute [rw] model_registration_mode
|
|
18897
|
+
# Whether automatic registration of new MLflow models to the SageMaker
|
|
18898
|
+
# Model Registry is enabled.
|
|
18899
|
+
# @return [String]
|
|
18900
|
+
#
|
|
18901
|
+
# @!attribute [rw] account_default_status
|
|
18902
|
+
# Indicates whether this MLflow app is the default for the entire
|
|
18903
|
+
# account.
|
|
18904
|
+
# @return [String]
|
|
18905
|
+
#
|
|
18906
|
+
# @!attribute [rw] default_domain_id_list
|
|
18907
|
+
# List of SageMaker Domain IDs for which this MLflow App is the
|
|
18908
|
+
# default.
|
|
18909
|
+
# @return [Array<String>]
|
|
18910
|
+
#
|
|
18911
|
+
# @!attribute [rw] creation_time
|
|
18912
|
+
# The timestamp when the MLflow App was created.
|
|
18913
|
+
# @return [Time]
|
|
18914
|
+
#
|
|
18915
|
+
# @!attribute [rw] created_by
|
|
18916
|
+
# Information about the user who created or modified a SageMaker
|
|
18917
|
+
# resource.
|
|
18918
|
+
# @return [Types::UserContext]
|
|
18919
|
+
#
|
|
18920
|
+
# @!attribute [rw] last_modified_time
|
|
18921
|
+
# The timestamp when the MLflow App was last modified.
|
|
18922
|
+
# @return [Time]
|
|
18923
|
+
#
|
|
18924
|
+
# @!attribute [rw] last_modified_by
|
|
18925
|
+
# Information about the user who created or modified a SageMaker
|
|
18926
|
+
# resource.
|
|
18927
|
+
# @return [Types::UserContext]
|
|
18928
|
+
#
|
|
18929
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
|
18930
|
+
# The day and time of the week when weekly maintenance occurs.
|
|
18931
|
+
# @return [String]
|
|
18932
|
+
#
|
|
18933
|
+
# @!attribute [rw] maintenance_status
|
|
18934
|
+
# Current maintenance status of the MLflow App.
|
|
18935
|
+
# @return [String]
|
|
18936
|
+
#
|
|
18937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowAppResponse AWS API Documentation
|
|
18938
|
+
#
|
|
18939
|
+
class DescribeMlflowAppResponse < Struct.new(
|
|
18940
|
+
:arn,
|
|
18941
|
+
:name,
|
|
18942
|
+
:artifact_store_uri,
|
|
18943
|
+
:mlflow_version,
|
|
18944
|
+
:role_arn,
|
|
18945
|
+
:status,
|
|
18946
|
+
:model_registration_mode,
|
|
18947
|
+
:account_default_status,
|
|
18948
|
+
:default_domain_id_list,
|
|
18949
|
+
:creation_time,
|
|
18950
|
+
:created_by,
|
|
18951
|
+
:last_modified_time,
|
|
18952
|
+
:last_modified_by,
|
|
18953
|
+
:weekly_maintenance_window_start,
|
|
18954
|
+
:maintenance_status)
|
|
18955
|
+
SENSITIVE = []
|
|
18956
|
+
include Aws::Structure
|
|
18957
|
+
end
|
|
18958
|
+
|
|
18701
18959
|
# @!attribute [rw] tracking_server_name
|
|
18702
18960
|
# The name of the MLflow Tracking Server to describe.
|
|
18703
18961
|
# @return [String]
|
|
@@ -33454,6 +33712,92 @@ module Aws::SageMaker
|
|
|
33454
33712
|
include Aws::Structure
|
|
33455
33713
|
end
|
|
33456
33714
|
|
|
33715
|
+
# @!attribute [rw] created_after
|
|
33716
|
+
# Use the `CreatedAfter` filter to only list MLflow Apps created after
|
|
33717
|
+
# a specific date and time. Listed MLflow Apps are shown with a date
|
|
33718
|
+
# and time such as `"2024-03-16T01:46:56+00:00"`. The `CreatedAfter`
|
|
33719
|
+
# parameter takes in a Unix timestamp.
|
|
33720
|
+
# @return [Time]
|
|
33721
|
+
#
|
|
33722
|
+
# @!attribute [rw] created_before
|
|
33723
|
+
# Use the `CreatedBefore` filter to only list MLflow Apps created
|
|
33724
|
+
# before a specific date and time. Listed MLflow Apps are shown with a
|
|
33725
|
+
# date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
|
33726
|
+
# `CreatedAfter` parameter takes in a Unix timestamp.
|
|
33727
|
+
# @return [Time]
|
|
33728
|
+
#
|
|
33729
|
+
# @!attribute [rw] status
|
|
33730
|
+
# Filter for Mlflow apps with a specific creation status.
|
|
33731
|
+
# @return [String]
|
|
33732
|
+
#
|
|
33733
|
+
# @!attribute [rw] mlflow_version
|
|
33734
|
+
# Filter for Mlflow Apps with the specified version.
|
|
33735
|
+
# @return [String]
|
|
33736
|
+
#
|
|
33737
|
+
# @!attribute [rw] default_for_domain_id
|
|
33738
|
+
# Filter for MLflow Apps with the specified default SageMaker Domain
|
|
33739
|
+
# ID.
|
|
33740
|
+
# @return [String]
|
|
33741
|
+
#
|
|
33742
|
+
# @!attribute [rw] account_default_status
|
|
33743
|
+
# Filter for MLflow Apps with the specified `AccountDefaultStatus`.
|
|
33744
|
+
# @return [String]
|
|
33745
|
+
#
|
|
33746
|
+
# @!attribute [rw] sort_by
|
|
33747
|
+
# Filter for MLflow Apps sorting by name, creation time, or creation
|
|
33748
|
+
# status.
|
|
33749
|
+
# @return [String]
|
|
33750
|
+
#
|
|
33751
|
+
# @!attribute [rw] sort_order
|
|
33752
|
+
# Change the order of the listed MLflow Apps. By default, MLflow Apps
|
|
33753
|
+
# are listed in `Descending` order by creation time. To change the
|
|
33754
|
+
# list order, specify `SortOrder` to be `Ascending`.
|
|
33755
|
+
# @return [String]
|
|
33756
|
+
#
|
|
33757
|
+
# @!attribute [rw] next_token
|
|
33758
|
+
# If the previous response was truncated, use this token in your next
|
|
33759
|
+
# request to receive the next set of results.
|
|
33760
|
+
# @return [String]
|
|
33761
|
+
#
|
|
33762
|
+
# @!attribute [rw] max_results
|
|
33763
|
+
# The maximum number of MLflow Apps to list.
|
|
33764
|
+
# @return [Integer]
|
|
33765
|
+
#
|
|
33766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowAppsRequest AWS API Documentation
|
|
33767
|
+
#
|
|
33768
|
+
class ListMlflowAppsRequest < Struct.new(
|
|
33769
|
+
:created_after,
|
|
33770
|
+
:created_before,
|
|
33771
|
+
:status,
|
|
33772
|
+
:mlflow_version,
|
|
33773
|
+
:default_for_domain_id,
|
|
33774
|
+
:account_default_status,
|
|
33775
|
+
:sort_by,
|
|
33776
|
+
:sort_order,
|
|
33777
|
+
:next_token,
|
|
33778
|
+
:max_results)
|
|
33779
|
+
SENSITIVE = []
|
|
33780
|
+
include Aws::Structure
|
|
33781
|
+
end
|
|
33782
|
+
|
|
33783
|
+
# @!attribute [rw] summaries
|
|
33784
|
+
# A list of MLflow Apps according to chosen filters.
|
|
33785
|
+
# @return [Array<Types::MlflowAppSummary>]
|
|
33786
|
+
#
|
|
33787
|
+
# @!attribute [rw] next_token
|
|
33788
|
+
# If the previous response was truncated, you will receive this token.
|
|
33789
|
+
# Use it in your next request to receive the next set of results.
|
|
33790
|
+
# @return [String]
|
|
33791
|
+
#
|
|
33792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowAppsResponse AWS API Documentation
|
|
33793
|
+
#
|
|
33794
|
+
class ListMlflowAppsResponse < Struct.new(
|
|
33795
|
+
:summaries,
|
|
33796
|
+
:next_token)
|
|
33797
|
+
SENSITIVE = []
|
|
33798
|
+
include Aws::Structure
|
|
33799
|
+
end
|
|
33800
|
+
|
|
33457
33801
|
# @!attribute [rw] created_after
|
|
33458
33802
|
# Use the `CreatedAfter` filter to only list tracking servers created
|
|
33459
33803
|
# after a specific date and time. Listed tracking servers are shown
|
|
@@ -36630,6 +36974,45 @@ module Aws::SageMaker
|
|
|
36630
36974
|
include Aws::Structure
|
|
36631
36975
|
end
|
|
36632
36976
|
|
|
36977
|
+
# The summary of the Mlflow App to list.
|
|
36978
|
+
#
|
|
36979
|
+
# @!attribute [rw] arn
|
|
36980
|
+
# The ARN of a listed MLflow App.
|
|
36981
|
+
# @return [String]
|
|
36982
|
+
#
|
|
36983
|
+
# @!attribute [rw] name
|
|
36984
|
+
# The name of the MLflow App.
|
|
36985
|
+
# @return [String]
|
|
36986
|
+
#
|
|
36987
|
+
# @!attribute [rw] status
|
|
36988
|
+
# The status of the MLflow App.
|
|
36989
|
+
# @return [String]
|
|
36990
|
+
#
|
|
36991
|
+
# @!attribute [rw] creation_time
|
|
36992
|
+
# The creation time of a listed MLflow App.
|
|
36993
|
+
# @return [Time]
|
|
36994
|
+
#
|
|
36995
|
+
# @!attribute [rw] last_modified_time
|
|
36996
|
+
# The last modified time of a listed MLflow App.
|
|
36997
|
+
# @return [Time]
|
|
36998
|
+
#
|
|
36999
|
+
# @!attribute [rw] mlflow_version
|
|
37000
|
+
# The version of a listed MLflow App.
|
|
37001
|
+
# @return [String]
|
|
37002
|
+
#
|
|
37003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MlflowAppSummary AWS API Documentation
|
|
37004
|
+
#
|
|
37005
|
+
class MlflowAppSummary < Struct.new(
|
|
37006
|
+
:arn,
|
|
37007
|
+
:name,
|
|
37008
|
+
:status,
|
|
37009
|
+
:creation_time,
|
|
37010
|
+
:last_modified_time,
|
|
37011
|
+
:mlflow_version)
|
|
37012
|
+
SENSITIVE = []
|
|
37013
|
+
include Aws::Structure
|
|
37014
|
+
end
|
|
37015
|
+
|
|
36633
37016
|
# The properties of a model as returned by the [Search][1] API.
|
|
36634
37017
|
#
|
|
36635
37018
|
#
|
|
@@ -52790,6 +53173,71 @@ module Aws::SageMaker
|
|
|
52790
53173
|
include Aws::Structure
|
|
52791
53174
|
end
|
|
52792
53175
|
|
|
53176
|
+
# @!attribute [rw] arn
|
|
53177
|
+
# The ARN of the MLflow App to update.
|
|
53178
|
+
# @return [String]
|
|
53179
|
+
#
|
|
53180
|
+
# @!attribute [rw] name
|
|
53181
|
+
# The name of the MLflow App to update.
|
|
53182
|
+
# @return [String]
|
|
53183
|
+
#
|
|
53184
|
+
# @!attribute [rw] artifact_store_uri
|
|
53185
|
+
# The new S3 URI for the general purpose bucket to use as the artifact
|
|
53186
|
+
# store for the MLflow App.
|
|
53187
|
+
# @return [String]
|
|
53188
|
+
#
|
|
53189
|
+
# @!attribute [rw] model_registration_mode
|
|
53190
|
+
# Whether to enable or disable automatic registration of new MLflow
|
|
53191
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
|
53192
|
+
# registration, set this value to `AutoModelRegistrationEnabled`. To
|
|
53193
|
+
# disable automatic model registration, set this value to
|
|
53194
|
+
# `AutoModelRegistrationDisabled`. If not specified,
|
|
53195
|
+
# `AutomaticModelRegistration` defaults to
|
|
53196
|
+
# `AutoModelRegistrationEnabled`
|
|
53197
|
+
# @return [String]
|
|
53198
|
+
#
|
|
53199
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
|
53200
|
+
# The new weekly maintenance window start day and time to update. The
|
|
53201
|
+
# maintenance window day and time should be in Coordinated Universal
|
|
53202
|
+
# Time (UTC) 24-hour standard time. For example: TUE:03:30.
|
|
53203
|
+
# @return [String]
|
|
53204
|
+
#
|
|
53205
|
+
# @!attribute [rw] default_domain_id_list
|
|
53206
|
+
# List of SageMaker Domain IDs for which this MLflow App is the
|
|
53207
|
+
# default.
|
|
53208
|
+
# @return [Array<String>]
|
|
53209
|
+
#
|
|
53210
|
+
# @!attribute [rw] account_default_status
|
|
53211
|
+
# Indicates whether this this MLflow App is the default for the
|
|
53212
|
+
# account.
|
|
53213
|
+
# @return [String]
|
|
53214
|
+
#
|
|
53215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowAppRequest AWS API Documentation
|
|
53216
|
+
#
|
|
53217
|
+
class UpdateMlflowAppRequest < Struct.new(
|
|
53218
|
+
:arn,
|
|
53219
|
+
:name,
|
|
53220
|
+
:artifact_store_uri,
|
|
53221
|
+
:model_registration_mode,
|
|
53222
|
+
:weekly_maintenance_window_start,
|
|
53223
|
+
:default_domain_id_list,
|
|
53224
|
+
:account_default_status)
|
|
53225
|
+
SENSITIVE = []
|
|
53226
|
+
include Aws::Structure
|
|
53227
|
+
end
|
|
53228
|
+
|
|
53229
|
+
# @!attribute [rw] arn
|
|
53230
|
+
# The ARN of the updated MLflow App.
|
|
53231
|
+
# @return [String]
|
|
53232
|
+
#
|
|
53233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowAppResponse AWS API Documentation
|
|
53234
|
+
#
|
|
53235
|
+
class UpdateMlflowAppResponse < Struct.new(
|
|
53236
|
+
:arn)
|
|
53237
|
+
SENSITIVE = []
|
|
53238
|
+
include Aws::Structure
|
|
53239
|
+
end
|
|
53240
|
+
|
|
52793
53241
|
# @!attribute [rw] tracking_server_name
|
|
52794
53242
|
# The name of the MLflow Tracking Server to update.
|
|
52795
53243
|
# @return [String]
|