aws-sdk-sagemaker 1.245.0 → 1.247.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1814,6 +1814,13 @@ module Aws::SageMaker
1814
1814
  # },
1815
1815
  # execution_role: "RoleArn", # required
1816
1816
  # threads_per_core: 1,
1817
+ # instance_storage_configs: [
1818
+ # {
1819
+ # ebs_volume_config: {
1820
+ # volume_size_in_gb: 1, # required
1821
+ # },
1822
+ # },
1823
+ # ],
1817
1824
  # },
1818
1825
  # ],
1819
1826
  # vpc_config: {
@@ -3336,6 +3343,7 @@ module Aws::SageMaker
3336
3343
  # routing_config: {
3337
3344
  # routing_strategy: "LEAST_OUTSTANDING_REQUESTS", # required, accepts LEAST_OUTSTANDING_REQUESTS, RANDOM
3338
3345
  # },
3346
+ # inference_ami_version: "al2-ami-sagemaker-inference-gpu-2", # accepts al2-ami-sagemaker-inference-gpu-2
3339
3347
  # },
3340
3348
  # ],
3341
3349
  # data_capture_config: {
@@ -3436,6 +3444,7 @@ module Aws::SageMaker
3436
3444
  # routing_config: {
3437
3445
  # routing_strategy: "LEAST_OUTSTANDING_REQUESTS", # required, accepts LEAST_OUTSTANDING_REQUESTS, RANDOM
3438
3446
  # },
3447
+ # inference_ami_version: "al2-ami-sagemaker-inference-gpu-2", # accepts al2-ami-sagemaker-inference-gpu-2
3439
3448
  # },
3440
3449
  # ],
3441
3450
  # execution_role_arn: "RoleArn",
@@ -5399,6 +5408,103 @@ module Aws::SageMaker
5399
5408
  req.send_request(options)
5400
5409
  end
5401
5410
 
5411
+ # Creates an MLflow Tracking Server using a general purpose Amazon S3
5412
+ # bucket as the artifact store. For more information, see [Create an
5413
+ # MLflow Tracking Server][1].
5414
+ #
5415
+ #
5416
+ #
5417
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-create-tracking-server.html
5418
+ #
5419
+ # @option params [required, String] :tracking_server_name
5420
+ # A unique string identifying the tracking server name. This string is
5421
+ # part of the tracking server ARN.
5422
+ #
5423
+ # @option params [required, String] :artifact_store_uri
5424
+ # The S3 URI for a general purpose bucket to use as the MLflow Tracking
5425
+ # Server artifact store.
5426
+ #
5427
+ # @option params [String] :tracking_server_size
5428
+ # The size of the tracking server you want to create. You can choose
5429
+ # between `"Small"`, `"Medium"`, and `"Large"`. The default MLflow
5430
+ # Tracking Server configuration size is `"Small"`. You can choose a size
5431
+ # depending on the projected use of the tracking server such as the
5432
+ # volume of data logged, number of users, and frequency of use.
5433
+ #
5434
+ # We recommend using a small tracking server for teams of up to 25
5435
+ # users, a medium tracking server for teams of up to 50 users, and a
5436
+ # large tracking server for teams of up to 100 users.
5437
+ #
5438
+ # @option params [String] :mlflow_version
5439
+ # The version of MLflow that the tracking server uses. To see which
5440
+ # MLflow versions are available to use, see [How it works][1].
5441
+ #
5442
+ #
5443
+ #
5444
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow.html#mlflow-create-tracking-server-how-it-works
5445
+ #
5446
+ # @option params [required, String] :role_arn
5447
+ # The Amazon Resource Name (ARN) for an IAM role in your account that
5448
+ # the MLflow Tracking Server uses to access the artifact store in Amazon
5449
+ # S3. The role should have `AmazonS3FullAccess` permissions. For more
5450
+ # information on IAM permissions for tracking server creation, see [Set
5451
+ # up IAM permissions for MLflow][1].
5452
+ #
5453
+ #
5454
+ #
5455
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-create-tracking-server-iam.html
5456
+ #
5457
+ # @option params [Boolean] :automatic_model_registration
5458
+ # Whether to enable or disable automatic registration of new MLflow
5459
+ # models to the SageMaker Model Registry. To enable automatic model
5460
+ # registration, set this value to `True`. To disable automatic model
5461
+ # registration, set this value to `False`. If not specified,
5462
+ # `AutomaticModelRegistration` defaults to `False`.
5463
+ #
5464
+ # @option params [String] :weekly_maintenance_window_start
5465
+ # The day and time of the week in Coordinated Universal Time (UTC)
5466
+ # 24-hour standard time that weekly maintenance updates are scheduled.
5467
+ # For example: TUE:03:30.
5468
+ #
5469
+ # @option params [Array<Types::Tag>] :tags
5470
+ # Tags consisting of key-value pairs used to manage metadata for the
5471
+ # tracking server.
5472
+ #
5473
+ # @return [Types::CreateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5474
+ #
5475
+ # * {Types::CreateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
5476
+ #
5477
+ # @example Request syntax with placeholder values
5478
+ #
5479
+ # resp = client.create_mlflow_tracking_server({
5480
+ # tracking_server_name: "TrackingServerName", # required
5481
+ # artifact_store_uri: "S3Uri", # required
5482
+ # tracking_server_size: "Small", # accepts Small, Medium, Large
5483
+ # mlflow_version: "MlflowVersion",
5484
+ # role_arn: "RoleArn", # required
5485
+ # automatic_model_registration: false,
5486
+ # weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
5487
+ # tags: [
5488
+ # {
5489
+ # key: "TagKey", # required
5490
+ # value: "TagValue", # required
5491
+ # },
5492
+ # ],
5493
+ # })
5494
+ #
5495
+ # @example Response structure
5496
+ #
5497
+ # resp.tracking_server_arn #=> String
5498
+ #
5499
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServer AWS API Documentation
5500
+ #
5501
+ # @overload create_mlflow_tracking_server(params = {})
5502
+ # @param [Hash] params ({})
5503
+ def create_mlflow_tracking_server(params = {}, options = {})
5504
+ req = build_request(:create_mlflow_tracking_server, params)
5505
+ req.send_request(options)
5506
+ end
5507
+
5402
5508
  # Creates a model in SageMaker. In the request, you name the model and
5403
5509
  # describe a primary container. For the primary container, you specify
5404
5510
  # the Docker image that contains inference code, artifacts (from prior
@@ -6179,12 +6285,15 @@ module Aws::SageMaker
6179
6285
  # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
6180
6286
  # include `model_package_details`, and `model_overview` is composed of
6181
6287
  # the `model_creator` and `model_artifact` properties. For more
6182
- # information about the model card associated with the model package,
6183
- # see [View the Details of a Model Version][1].
6288
+ # information about the model package model card schema, see [Model
6289
+ # package model card schema][1]. For more information about the model
6290
+ # card associated with the model package, see [View the Details of a
6291
+ # Model Version][2].
6184
6292
  #
6185
6293
  #
6186
6294
  #
6187
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
6295
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
6296
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
6188
6297
  #
6189
6298
  # @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6190
6299
  #
@@ -7325,6 +7434,49 @@ module Aws::SageMaker
7325
7434
  req.send_request(options)
7326
7435
  end
7327
7436
 
7437
+ # Returns a presigned URL that you can use to connect to the MLflow UI
7438
+ # attached to your tracking server. For more information, see [Launch
7439
+ # the MLflow UI using a presigned URL][1].
7440
+ #
7441
+ #
7442
+ #
7443
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-launch-ui.html
7444
+ #
7445
+ # @option params [required, String] :tracking_server_name
7446
+ # The name of the tracking server to connect to your MLflow UI.
7447
+ #
7448
+ # @option params [Integer] :expires_in_seconds
7449
+ # The duration in seconds that your presigned URL is valid. The
7450
+ # presigned URL can be used only once.
7451
+ #
7452
+ # @option params [Integer] :session_expiration_duration_in_seconds
7453
+ # The duration in seconds that your MLflow UI session is valid.
7454
+ #
7455
+ # @return [Types::CreatePresignedMlflowTrackingServerUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7456
+ #
7457
+ # * {Types::CreatePresignedMlflowTrackingServerUrlResponse#authorized_url #authorized_url} => String
7458
+ #
7459
+ # @example Request syntax with placeholder values
7460
+ #
7461
+ # resp = client.create_presigned_mlflow_tracking_server_url({
7462
+ # tracking_server_name: "TrackingServerName", # required
7463
+ # expires_in_seconds: 1,
7464
+ # session_expiration_duration_in_seconds: 1,
7465
+ # })
7466
+ #
7467
+ # @example Response structure
7468
+ #
7469
+ # resp.authorized_url #=> String
7470
+ #
7471
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowTrackingServerUrl AWS API Documentation
7472
+ #
7473
+ # @overload create_presigned_mlflow_tracking_server_url(params = {})
7474
+ # @param [Hash] params ({})
7475
+ def create_presigned_mlflow_tracking_server_url(params = {}, options = {})
7476
+ req = build_request(:create_presigned_mlflow_tracking_server_url, params)
7477
+ req.send_request(options)
7478
+ end
7479
+
7328
7480
  # Returns a URL that you can use to connect to the Jupyter server from a
7329
7481
  # notebook instance. In the SageMaker console, when you choose `Open`
7330
7482
  # next to a notebook instance, SageMaker opens a new tab showing the
@@ -9027,7 +9179,7 @@ module Aws::SageMaker
9027
9179
  # @option params [Types::SourceIpConfig] :source_ip_config
9028
9180
  # A list of IP address ranges ([CIDRs][1]). Used to create an allow list
9029
9181
  # of IP addresses for a private workforce. Workers will only be able to
9030
- # login to their worker portal from an IP address within this range. By
9182
+ # log in to their worker portal from an IP address within this range. By
9031
9183
  # default, a workforce isn't restricted to specific IP addresses.
9032
9184
  #
9033
9185
  #
@@ -9065,6 +9217,10 @@ module Aws::SageMaker
9065
9217
  # user_info_endpoint: "OidcEndpoint", # required
9066
9218
  # logout_endpoint: "OidcEndpoint", # required
9067
9219
  # jwks_uri: "OidcEndpoint", # required
9220
+ # scope: "Scope",
9221
+ # authentication_request_extra_params: {
9222
+ # "AuthenticationRequestExtraParamsKey" => "AuthenticationRequestExtraParamsValue",
9223
+ # },
9068
9224
  # },
9069
9225
  # source_ip_config: {
9070
9226
  # cidrs: ["Cidr"], # required
@@ -10027,6 +10183,39 @@ module Aws::SageMaker
10027
10183
  req.send_request(options)
10028
10184
  end
10029
10185
 
10186
+ # Deletes an MLflow Tracking Server. For more information, see [Clean up
10187
+ # MLflow resources][1].
10188
+ #
10189
+ #
10190
+ #
10191
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-cleanup.html.html
10192
+ #
10193
+ # @option params [required, String] :tracking_server_name
10194
+ # The name of the the tracking server to delete.
10195
+ #
10196
+ # @return [Types::DeleteMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10197
+ #
10198
+ # * {Types::DeleteMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
10199
+ #
10200
+ # @example Request syntax with placeholder values
10201
+ #
10202
+ # resp = client.delete_mlflow_tracking_server({
10203
+ # tracking_server_name: "TrackingServerName", # required
10204
+ # })
10205
+ #
10206
+ # @example Response structure
10207
+ #
10208
+ # resp.tracking_server_arn #=> String
10209
+ #
10210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowTrackingServer AWS API Documentation
10211
+ #
10212
+ # @overload delete_mlflow_tracking_server(params = {})
10213
+ # @param [Hash] params ({})
10214
+ def delete_mlflow_tracking_server(params = {}, options = {})
10215
+ req = build_request(:delete_mlflow_tracking_server, params)
10216
+ req.send_request(options)
10217
+ end
10218
+
10030
10219
  # Deletes a model. The `DeleteModel` API deletes only the model entry
10031
10220
  # that was created in SageMaker when you called the `CreateModel` API.
10032
10221
  # It does not delete model artifacts, inference code, or the IAM role
@@ -10550,7 +10739,7 @@ module Aws::SageMaker
10550
10739
  # If a private workforce contains one or more work teams, you must use
10551
10740
  # the [DeleteWorkteam][2] operation to delete all work teams before you
10552
10741
  # delete the workforce. If you try to delete a workforce that contains
10553
- # one or more work teams, you will recieve a `ResourceInUse` error.
10742
+ # one or more work teams, you will receive a `ResourceInUse` error.
10554
10743
  #
10555
10744
  #
10556
10745
  #
@@ -11426,6 +11615,8 @@ module Aws::SageMaker
11426
11615
  # resp.instance_groups[0].life_cycle_config.on_create #=> String
11427
11616
  # resp.instance_groups[0].execution_role #=> String
11428
11617
  # resp.instance_groups[0].threads_per_core #=> Integer
11618
+ # resp.instance_groups[0].instance_storage_configs #=> Array
11619
+ # resp.instance_groups[0].instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
11429
11620
  # resp.vpc_config.security_group_ids #=> Array
11430
11621
  # resp.vpc_config.security_group_ids[0] #=> String
11431
11622
  # resp.vpc_config.subnets #=> Array
@@ -11472,6 +11663,8 @@ module Aws::SageMaker
11472
11663
  # resp.node_details.life_cycle_config.source_s3_uri #=> String
11473
11664
  # resp.node_details.life_cycle_config.on_create #=> String
11474
11665
  # resp.node_details.threads_per_core #=> Integer
11666
+ # resp.node_details.instance_storage_configs #=> Array
11667
+ # resp.node_details.instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
11475
11668
  # resp.node_details.private_primary_ip #=> String
11476
11669
  # resp.node_details.private_dns_hostname #=> String
11477
11670
  # resp.node_details.placement.availability_zone #=> String
@@ -12473,6 +12666,7 @@ module Aws::SageMaker
12473
12666
  # resp.production_variants[0].managed_instance_scaling.min_instance_count #=> Integer
12474
12667
  # resp.production_variants[0].managed_instance_scaling.max_instance_count #=> Integer
12475
12668
  # resp.production_variants[0].routing_config.routing_strategy #=> String, one of "LEAST_OUTSTANDING_REQUESTS", "RANDOM"
12669
+ # resp.production_variants[0].inference_ami_version #=> String, one of "al2-ami-sagemaker-inference-gpu-2"
12476
12670
  # resp.data_capture_config.enable_capture #=> Boolean
12477
12671
  # resp.data_capture_config.initial_sampling_percentage #=> Integer
12478
12672
  # resp.data_capture_config.destination_s3_uri #=> String
@@ -12536,6 +12730,7 @@ module Aws::SageMaker
12536
12730
  # resp.shadow_production_variants[0].managed_instance_scaling.min_instance_count #=> Integer
12537
12731
  # resp.shadow_production_variants[0].managed_instance_scaling.max_instance_count #=> Integer
12538
12732
  # resp.shadow_production_variants[0].routing_config.routing_strategy #=> String, one of "LEAST_OUTSTANDING_REQUESTS", "RANDOM"
12733
+ # resp.shadow_production_variants[0].inference_ami_version #=> String, one of "al2-ami-sagemaker-inference-gpu-2"
12539
12734
  # resp.execution_role_arn #=> String
12540
12735
  # resp.vpc_config.security_group_ids #=> Array
12541
12736
  # resp.vpc_config.security_group_ids[0] #=> String
@@ -13809,6 +14004,72 @@ module Aws::SageMaker
13809
14004
  req.send_request(options)
13810
14005
  end
13811
14006
 
14007
+ # Returns information about an MLflow Tracking Server.
14008
+ #
14009
+ # @option params [required, String] :tracking_server_name
14010
+ # The name of the MLflow Tracking Server to describe.
14011
+ #
14012
+ # @return [Types::DescribeMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14013
+ #
14014
+ # * {Types::DescribeMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
14015
+ # * {Types::DescribeMlflowTrackingServerResponse#tracking_server_name #tracking_server_name} => String
14016
+ # * {Types::DescribeMlflowTrackingServerResponse#artifact_store_uri #artifact_store_uri} => String
14017
+ # * {Types::DescribeMlflowTrackingServerResponse#tracking_server_size #tracking_server_size} => String
14018
+ # * {Types::DescribeMlflowTrackingServerResponse#mlflow_version #mlflow_version} => String
14019
+ # * {Types::DescribeMlflowTrackingServerResponse#role_arn #role_arn} => String
14020
+ # * {Types::DescribeMlflowTrackingServerResponse#tracking_server_status #tracking_server_status} => String
14021
+ # * {Types::DescribeMlflowTrackingServerResponse#is_active #is_active} => String
14022
+ # * {Types::DescribeMlflowTrackingServerResponse#tracking_server_url #tracking_server_url} => String
14023
+ # * {Types::DescribeMlflowTrackingServerResponse#weekly_maintenance_window_start #weekly_maintenance_window_start} => String
14024
+ # * {Types::DescribeMlflowTrackingServerResponse#automatic_model_registration #automatic_model_registration} => Boolean
14025
+ # * {Types::DescribeMlflowTrackingServerResponse#creation_time #creation_time} => Time
14026
+ # * {Types::DescribeMlflowTrackingServerResponse#created_by #created_by} => Types::UserContext
14027
+ # * {Types::DescribeMlflowTrackingServerResponse#last_modified_time #last_modified_time} => Time
14028
+ # * {Types::DescribeMlflowTrackingServerResponse#last_modified_by #last_modified_by} => Types::UserContext
14029
+ #
14030
+ # @example Request syntax with placeholder values
14031
+ #
14032
+ # resp = client.describe_mlflow_tracking_server({
14033
+ # tracking_server_name: "TrackingServerName", # required
14034
+ # })
14035
+ #
14036
+ # @example Response structure
14037
+ #
14038
+ # resp.tracking_server_arn #=> String
14039
+ # resp.tracking_server_name #=> String
14040
+ # resp.artifact_store_uri #=> String
14041
+ # resp.tracking_server_size #=> String, one of "Small", "Medium", "Large"
14042
+ # resp.mlflow_version #=> String
14043
+ # resp.role_arn #=> String
14044
+ # resp.tracking_server_status #=> String, one of "Creating", "Created", "CreateFailed", "Updating", "Updated", "UpdateFailed", "Deleting", "DeleteFailed", "Stopping", "Stopped", "StopFailed", "Starting", "Started", "StartFailed", "MaintenanceInProgress", "MaintenanceComplete", "MaintenanceFailed"
14045
+ # resp.is_active #=> String, one of "Active", "Inactive"
14046
+ # resp.tracking_server_url #=> String
14047
+ # resp.weekly_maintenance_window_start #=> String
14048
+ # resp.automatic_model_registration #=> Boolean
14049
+ # resp.creation_time #=> Time
14050
+ # resp.created_by.user_profile_arn #=> String
14051
+ # resp.created_by.user_profile_name #=> String
14052
+ # resp.created_by.domain_id #=> String
14053
+ # resp.created_by.iam_identity.arn #=> String
14054
+ # resp.created_by.iam_identity.principal_id #=> String
14055
+ # resp.created_by.iam_identity.source_identity #=> String
14056
+ # resp.last_modified_time #=> Time
14057
+ # resp.last_modified_by.user_profile_arn #=> String
14058
+ # resp.last_modified_by.user_profile_name #=> String
14059
+ # resp.last_modified_by.domain_id #=> String
14060
+ # resp.last_modified_by.iam_identity.arn #=> String
14061
+ # resp.last_modified_by.iam_identity.principal_id #=> String
14062
+ # resp.last_modified_by.iam_identity.source_identity #=> String
14063
+ #
14064
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServer AWS API Documentation
14065
+ #
14066
+ # @overload describe_mlflow_tracking_server(params = {})
14067
+ # @param [Hash] params ({})
14068
+ def describe_mlflow_tracking_server(params = {}, options = {})
14069
+ req = build_request(:describe_mlflow_tracking_server, params)
14070
+ req.send_request(options)
14071
+ end
14072
+
13812
14073
  # Describes a model that you created using the `CreateModel` API.
13813
14074
  #
13814
14075
  # @option params [required, String] :model_name
@@ -15971,6 +16232,9 @@ module Aws::SageMaker
15971
16232
  # resp.workforce.oidc_config.user_info_endpoint #=> String
15972
16233
  # resp.workforce.oidc_config.logout_endpoint #=> String
15973
16234
  # resp.workforce.oidc_config.jwks_uri #=> String
16235
+ # resp.workforce.oidc_config.scope #=> String
16236
+ # resp.workforce.oidc_config.authentication_request_extra_params #=> Hash
16237
+ # resp.workforce.oidc_config.authentication_request_extra_params["AuthenticationRequestExtraParamsKey"] #=> String
15974
16238
  # resp.workforce.create_date #=> Time
15975
16239
  # resp.workforce.workforce_vpc_config.vpc_id #=> String
15976
16240
  # resp.workforce.workforce_vpc_config.security_group_ids #=> Array
@@ -15991,7 +16255,7 @@ module Aws::SageMaker
15991
16255
  end
15992
16256
 
15993
16257
  # Gets information about a specific work team. You can see information
15994
- # such as the create date, the last updated date, membership
16258
+ # such as the creation date, the last updated date, membership
15995
16259
  # information, and the work team's Amazon Resource Name (ARN).
15996
16260
  #
15997
16261
  # @option params [required, String] :workteam_name
@@ -19565,6 +19829,93 @@ module Aws::SageMaker
19565
19829
  req.send_request(options)
19566
19830
  end
19567
19831
 
19832
+ # Lists all MLflow Tracking Servers.
19833
+ #
19834
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
19835
+ # Use the `CreatedAfter` filter to only list tracking servers created
19836
+ # after a specific date and time. Listed tracking servers are shown with
19837
+ # a date and time such as `"2024-03-16T01:46:56+00:00"`. The
19838
+ # `CreatedAfter` parameter takes in a Unix timestamp. To convert a date
19839
+ # and time into a Unix timestamp, see [EpochConverter][1].
19840
+ #
19841
+ #
19842
+ #
19843
+ # [1]: https://www.epochconverter.com/
19844
+ #
19845
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
19846
+ # Use the `CreatedBefore` filter to only list tracking servers created
19847
+ # before a specific date and time. Listed tracking servers are shown
19848
+ # with a date and time such as `"2024-03-16T01:46:56+00:00"`. The
19849
+ # `CreatedBefore` parameter takes in a Unix timestamp. To convert a date
19850
+ # and time into a Unix timestamp, see [EpochConverter][1].
19851
+ #
19852
+ #
19853
+ #
19854
+ # [1]: https://www.epochconverter.com/
19855
+ #
19856
+ # @option params [String] :tracking_server_status
19857
+ # Filter for tracking servers with a specified creation status.
19858
+ #
19859
+ # @option params [String] :mlflow_version
19860
+ # Filter for tracking servers using the specified MLflow version.
19861
+ #
19862
+ # @option params [String] :sort_by
19863
+ # Filter for trackings servers sorting by name, creation time, or
19864
+ # creation status.
19865
+ #
19866
+ # @option params [String] :sort_order
19867
+ # Change the order of the listed tracking servers. By default, tracking
19868
+ # servers are listed in `Descending` order by creation time. To change
19869
+ # the list order, you can specify `SortOrder` to be `Ascending`.
19870
+ #
19871
+ # @option params [String] :next_token
19872
+ # If the previous response was truncated, you will receive this token.
19873
+ # Use it in your next request to receive the next set of results.
19874
+ #
19875
+ # @option params [Integer] :max_results
19876
+ # The maximum number of tracking servers to list.
19877
+ #
19878
+ # @return [Types::ListMlflowTrackingServersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
19879
+ #
19880
+ # * {Types::ListMlflowTrackingServersResponse#tracking_server_summaries #tracking_server_summaries} => Array&lt;Types::TrackingServerSummary&gt;
19881
+ # * {Types::ListMlflowTrackingServersResponse#next_token #next_token} => String
19882
+ #
19883
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19884
+ #
19885
+ # @example Request syntax with placeholder values
19886
+ #
19887
+ # resp = client.list_mlflow_tracking_servers({
19888
+ # created_after: Time.now,
19889
+ # created_before: Time.now,
19890
+ # tracking_server_status: "Creating", # accepts Creating, Created, CreateFailed, Updating, Updated, UpdateFailed, Deleting, DeleteFailed, Stopping, Stopped, StopFailed, Starting, Started, StartFailed, MaintenanceInProgress, MaintenanceComplete, MaintenanceFailed
19891
+ # mlflow_version: "MlflowVersion",
19892
+ # sort_by: "Name", # accepts Name, CreationTime, Status
19893
+ # sort_order: "Ascending", # accepts Ascending, Descending
19894
+ # next_token: "NextToken",
19895
+ # max_results: 1,
19896
+ # })
19897
+ #
19898
+ # @example Response structure
19899
+ #
19900
+ # resp.tracking_server_summaries #=> Array
19901
+ # resp.tracking_server_summaries[0].tracking_server_arn #=> String
19902
+ # resp.tracking_server_summaries[0].tracking_server_name #=> String
19903
+ # resp.tracking_server_summaries[0].creation_time #=> Time
19904
+ # resp.tracking_server_summaries[0].last_modified_time #=> Time
19905
+ # 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"
19906
+ # resp.tracking_server_summaries[0].is_active #=> String, one of "Active", "Inactive"
19907
+ # resp.tracking_server_summaries[0].mlflow_version #=> String
19908
+ # resp.next_token #=> String
19909
+ #
19910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServers AWS API Documentation
19911
+ #
19912
+ # @overload list_mlflow_tracking_servers(params = {})
19913
+ # @param [Hash] params ({})
19914
+ def list_mlflow_tracking_servers(params = {}, options = {})
19915
+ req = build_request(:list_mlflow_tracking_servers, params)
19916
+ req.send_request(options)
19917
+ end
19918
+
19568
19919
  # Lists model bias jobs definitions that satisfy various filters.
19569
19920
  #
19570
19921
  # @option params [String] :endpoint_name
@@ -20015,6 +20366,13 @@ module Aws::SageMaker
20015
20366
  # @option params [String] :sort_order
20016
20367
  # The sort order for results. The default is `Ascending`.
20017
20368
  #
20369
+ # @option params [String] :cross_account_filter_option
20370
+ # A filter that returns either model groups shared with you or model
20371
+ # groups in your own account. When the value is `CrossAccount`, the
20372
+ # results show the resources made discoverable to you from other
20373
+ # accounts. When the value is `SameAccount` or `null`, the results show
20374
+ # resources from your account. The default is `SameAccount`.
20375
+ #
20018
20376
  # @return [Types::ListModelPackageGroupsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
20019
20377
  #
20020
20378
  # * {Types::ListModelPackageGroupsOutput#model_package_group_summary_list #model_package_group_summary_list} => Array&lt;Types::ModelPackageGroupSummary&gt;
@@ -20032,6 +20390,7 @@ module Aws::SageMaker
20032
20390
  # next_token: "NextToken",
20033
20391
  # sort_by: "Name", # accepts Name, CreationTime
20034
20392
  # sort_order: "Ascending", # accepts Ascending, Descending
20393
+ # cross_account_filter_option: "SameAccount", # accepts SameAccount, CrossAccount
20035
20394
  # })
20036
20395
  #
20037
20396
  # @example Response structure
@@ -22187,6 +22546,9 @@ module Aws::SageMaker
22187
22546
  # resp.workforces[0].oidc_config.user_info_endpoint #=> String
22188
22547
  # resp.workforces[0].oidc_config.logout_endpoint #=> String
22189
22548
  # resp.workforces[0].oidc_config.jwks_uri #=> String
22549
+ # resp.workforces[0].oidc_config.scope #=> String
22550
+ # resp.workforces[0].oidc_config.authentication_request_extra_params #=> Hash
22551
+ # resp.workforces[0].oidc_config.authentication_request_extra_params["AuthenticationRequestExtraParamsKey"] #=> String
22190
22552
  # resp.workforces[0].create_date #=> Time
22191
22553
  # resp.workforces[0].workforce_vpc_config.vpc_id #=> String
22192
22554
  # resp.workforces[0].workforce_vpc_config.security_group_ids #=> Array
@@ -22838,6 +23200,34 @@ module Aws::SageMaker
22838
23200
  req.send_request(options)
22839
23201
  end
22840
23202
 
23203
+ # Programmatically start an MLflow Tracking Server.
23204
+ #
23205
+ # @option params [required, String] :tracking_server_name
23206
+ # The name of the tracking server to start.
23207
+ #
23208
+ # @return [Types::StartMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23209
+ #
23210
+ # * {Types::StartMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
23211
+ #
23212
+ # @example Request syntax with placeholder values
23213
+ #
23214
+ # resp = client.start_mlflow_tracking_server({
23215
+ # tracking_server_name: "TrackingServerName", # required
23216
+ # })
23217
+ #
23218
+ # @example Response structure
23219
+ #
23220
+ # resp.tracking_server_arn #=> String
23221
+ #
23222
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartMlflowTrackingServer AWS API Documentation
23223
+ #
23224
+ # @overload start_mlflow_tracking_server(params = {})
23225
+ # @param [Hash] params ({})
23226
+ def start_mlflow_tracking_server(params = {}, options = {})
23227
+ req = build_request(:start_mlflow_tracking_server, params)
23228
+ req.send_request(options)
23229
+ end
23230
+
22841
23231
  # Starts a previously stopped monitoring schedule.
22842
23232
  #
22843
23233
  # <note markdown="1"> By default, when you successfully create a new schedule, the status of
@@ -23212,6 +23602,34 @@ module Aws::SageMaker
23212
23602
  req.send_request(options)
23213
23603
  end
23214
23604
 
23605
+ # Programmatically stop an MLflow Tracking Server.
23606
+ #
23607
+ # @option params [required, String] :tracking_server_name
23608
+ # The name of the tracking server to stop.
23609
+ #
23610
+ # @return [Types::StopMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23611
+ #
23612
+ # * {Types::StopMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
23613
+ #
23614
+ # @example Request syntax with placeholder values
23615
+ #
23616
+ # resp = client.stop_mlflow_tracking_server({
23617
+ # tracking_server_name: "TrackingServerName", # required
23618
+ # })
23619
+ #
23620
+ # @example Response structure
23621
+ #
23622
+ # resp.tracking_server_arn #=> String
23623
+ #
23624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopMlflowTrackingServer AWS API Documentation
23625
+ #
23626
+ # @overload stop_mlflow_tracking_server(params = {})
23627
+ # @param [Hash] params ({})
23628
+ def stop_mlflow_tracking_server(params = {}, options = {})
23629
+ req = build_request(:stop_mlflow_tracking_server, params)
23630
+ req.send_request(options)
23631
+ end
23632
+
23215
23633
  # Stops a previously started monitoring schedule.
23216
23634
  #
23217
23635
  # @option params [required, String] :monitoring_schedule_name
@@ -23601,6 +24019,13 @@ module Aws::SageMaker
23601
24019
  # },
23602
24020
  # execution_role: "RoleArn", # required
23603
24021
  # threads_per_core: 1,
24022
+ # instance_storage_configs: [
24023
+ # {
24024
+ # ebs_volume_config: {
24025
+ # volume_size_in_gb: 1, # required
24026
+ # },
24027
+ # },
24028
+ # ],
23604
24029
  # },
23605
24030
  # ],
23606
24031
  # })
@@ -24880,6 +25305,57 @@ module Aws::SageMaker
24880
25305
  req.send_request(options)
24881
25306
  end
24882
25307
 
25308
+ # Updates properties of an existing MLflow Tracking Server.
25309
+ #
25310
+ # @option params [required, String] :tracking_server_name
25311
+ # The name of the MLflow Tracking Server to update.
25312
+ #
25313
+ # @option params [String] :artifact_store_uri
25314
+ # The new S3 URI for the general purpose bucket to use as the artifact
25315
+ # store for the MLflow Tracking Server.
25316
+ #
25317
+ # @option params [String] :tracking_server_size
25318
+ # The new size for the MLflow Tracking Server.
25319
+ #
25320
+ # @option params [Boolean] :automatic_model_registration
25321
+ # Whether to enable or disable automatic registration of new MLflow
25322
+ # models to the SageMaker Model Registry. To enable automatic model
25323
+ # registration, set this value to `True`. To disable automatic model
25324
+ # registration, set this value to `False`. If not specified,
25325
+ # `AutomaticModelRegistration` defaults to `False`
25326
+ #
25327
+ # @option params [String] :weekly_maintenance_window_start
25328
+ # The new weekly maintenance window start day and time to update. The
25329
+ # maintenance window day and time should be in Coordinated Universal
25330
+ # Time (UTC) 24-hour standard time. For example: TUE:03:30.
25331
+ #
25332
+ # @return [Types::UpdateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
25333
+ #
25334
+ # * {Types::UpdateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
25335
+ #
25336
+ # @example Request syntax with placeholder values
25337
+ #
25338
+ # resp = client.update_mlflow_tracking_server({
25339
+ # tracking_server_name: "TrackingServerName", # required
25340
+ # artifact_store_uri: "S3Uri",
25341
+ # tracking_server_size: "Small", # accepts Small, Medium, Large
25342
+ # automatic_model_registration: false,
25343
+ # weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
25344
+ # })
25345
+ #
25346
+ # @example Response structure
25347
+ #
25348
+ # resp.tracking_server_arn #=> String
25349
+ #
25350
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServer AWS API Documentation
25351
+ #
25352
+ # @overload update_mlflow_tracking_server(params = {})
25353
+ # @param [Hash] params ({})
25354
+ def update_mlflow_tracking_server(params = {}, options = {})
25355
+ req = build_request(:update_mlflow_tracking_server, params)
25356
+ req.send_request(options)
25357
+ end
25358
+
24883
25359
  # Update an Amazon SageMaker Model Card.
24884
25360
  #
24885
25361
  # You cannot update both model card content and model card status in a
@@ -24987,12 +25463,15 @@ module Aws::SageMaker
24987
25463
  # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
24988
25464
  # include `model_package_details`, and `model_overview` is composed of
24989
25465
  # the `model_creator` and `model_artifact` properties. For more
24990
- # information about the model card associated with the model package,
24991
- # see [View the Details of a Model Version][1].
25466
+ # information about the model package model card schema, see [Model
25467
+ # package model card schema][1]. For more information about the model
25468
+ # card associated with the model package, see [View the Details of a
25469
+ # Model Version][2].
24992
25470
  #
24993
25471
  #
24994
25472
  #
24995
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
25473
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
25474
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
24996
25475
  #
24997
25476
  # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
24998
25477
  #
@@ -26270,6 +26749,10 @@ module Aws::SageMaker
26270
26749
  # user_info_endpoint: "OidcEndpoint", # required
26271
26750
  # logout_endpoint: "OidcEndpoint", # required
26272
26751
  # jwks_uri: "OidcEndpoint", # required
26752
+ # scope: "Scope",
26753
+ # authentication_request_extra_params: {
26754
+ # "AuthenticationRequestExtraParamsKey" => "AuthenticationRequestExtraParamsValue",
26755
+ # },
26273
26756
  # },
26274
26757
  # workforce_vpc_config: {
26275
26758
  # vpc_id: "WorkforceVpcId",
@@ -26295,6 +26778,9 @@ module Aws::SageMaker
26295
26778
  # resp.workforce.oidc_config.user_info_endpoint #=> String
26296
26779
  # resp.workforce.oidc_config.logout_endpoint #=> String
26297
26780
  # resp.workforce.oidc_config.jwks_uri #=> String
26781
+ # resp.workforce.oidc_config.scope #=> String
26782
+ # resp.workforce.oidc_config.authentication_request_extra_params #=> Hash
26783
+ # resp.workforce.oidc_config.authentication_request_extra_params["AuthenticationRequestExtraParamsKey"] #=> String
26298
26784
  # resp.workforce.create_date #=> Time
26299
26785
  # resp.workforce.workforce_vpc_config.vpc_id #=> String
26300
26786
  # resp.workforce.workforce_vpc_config.security_group_ids #=> Array
@@ -26441,7 +26927,7 @@ module Aws::SageMaker
26441
26927
  params: params,
26442
26928
  config: config)
26443
26929
  context[:gem_name] = 'aws-sdk-sagemaker'
26444
- context[:gem_version] = '1.245.0'
26930
+ context[:gem_version] = '1.247.0'
26445
26931
  Seahorse::Client::Request.new(handlers, context)
26446
26932
  end
26447
26933