aws-sdk-sagemaker 1.246.0 → 1.247.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.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.246.0'
56
+ GEM_VERSION = '1.247.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -695,7 +695,14 @@ module Aws
695
695
  on_create: ::String
696
696
  },
697
697
  execution_role: ::String,
698
- threads_per_core: ::Integer?
698
+ threads_per_core: ::Integer?,
699
+ instance_storage_configs: Array[
700
+ {
701
+ ebs_volume_config: {
702
+ volume_size_in_gb: ::Integer
703
+ }?
704
+ },
705
+ ]?
699
706
  },
700
707
  ],
701
708
  ?vpc_config: {
@@ -2314,6 +2321,28 @@ module Aws
2314
2321
  ) -> _CreateLabelingJobResponseSuccess
2315
2322
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLabelingJobResponseSuccess
2316
2323
 
2324
+ interface _CreateMlflowTrackingServerResponseSuccess
2325
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMlflowTrackingServerResponse]
2326
+ def tracking_server_arn: () -> ::String
2327
+ end
2328
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_mlflow_tracking_server-instance_method
2329
+ def create_mlflow_tracking_server: (
2330
+ tracking_server_name: ::String,
2331
+ artifact_store_uri: ::String,
2332
+ ?tracking_server_size: ("Small" | "Medium" | "Large"),
2333
+ ?mlflow_version: ::String,
2334
+ role_arn: ::String,
2335
+ ?automatic_model_registration: bool,
2336
+ ?weekly_maintenance_window_start: ::String,
2337
+ ?tags: Array[
2338
+ {
2339
+ key: ::String,
2340
+ value: ::String
2341
+ },
2342
+ ]
2343
+ ) -> _CreateMlflowTrackingServerResponseSuccess
2344
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMlflowTrackingServerResponseSuccess
2345
+
2317
2346
  interface _CreateModelResponseSuccess
2318
2347
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateModelOutput]
2319
2348
  def model_arn: () -> ::String
@@ -3240,6 +3269,18 @@ module Aws
3240
3269
  ) -> _CreatePresignedDomainUrlResponseSuccess
3241
3270
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePresignedDomainUrlResponseSuccess
3242
3271
 
3272
+ interface _CreatePresignedMlflowTrackingServerUrlResponseSuccess
3273
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePresignedMlflowTrackingServerUrlResponse]
3274
+ def authorized_url: () -> ::String
3275
+ end
3276
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_presigned_mlflow_tracking_server_url-instance_method
3277
+ def create_presigned_mlflow_tracking_server_url: (
3278
+ tracking_server_name: ::String,
3279
+ ?expires_in_seconds: ::Integer,
3280
+ ?session_expiration_duration_in_seconds: ::Integer
3281
+ ) -> _CreatePresignedMlflowTrackingServerUrlResponseSuccess
3282
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePresignedMlflowTrackingServerUrlResponseSuccess
3283
+
3243
3284
  interface _CreatePresignedNotebookInstanceUrlResponseSuccess
3244
3285
  include ::Seahorse::Client::_ResponseSuccess[Types::CreatePresignedNotebookInstanceUrlOutput]
3245
3286
  def authorized_url: () -> ::String
@@ -3983,7 +4024,9 @@ module Aws
3983
4024
  token_endpoint: ::String,
3984
4025
  user_info_endpoint: ::String,
3985
4026
  logout_endpoint: ::String,
3986
- jwks_uri: ::String
4027
+ jwks_uri: ::String,
4028
+ scope: ::String?,
4029
+ authentication_request_extra_params: Hash[::String, ::String]?
3987
4030
  },
3988
4031
  ?source_ip_config: {
3989
4032
  cidrs: Array[::String]
@@ -4276,6 +4319,16 @@ module Aws
4276
4319
  ) -> _DeleteInferenceExperimentResponseSuccess
4277
4320
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInferenceExperimentResponseSuccess
4278
4321
 
4322
+ interface _DeleteMlflowTrackingServerResponseSuccess
4323
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMlflowTrackingServerResponse]
4324
+ def tracking_server_arn: () -> ::String
4325
+ end
4326
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_mlflow_tracking_server-instance_method
4327
+ def delete_mlflow_tracking_server: (
4328
+ tracking_server_name: ::String
4329
+ ) -> _DeleteMlflowTrackingServerResponseSuccess
4330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMlflowTrackingServerResponseSuccess
4331
+
4279
4332
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_model-instance_method
4280
4333
  def delete_model: (
4281
4334
  model_name: ::String
@@ -5195,6 +5248,30 @@ module Aws
5195
5248
  ) -> _DescribeLineageGroupResponseSuccess
5196
5249
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLineageGroupResponseSuccess
5197
5250
 
5251
+ interface _DescribeMlflowTrackingServerResponseSuccess
5252
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMlflowTrackingServerResponse]
5253
+ def tracking_server_arn: () -> ::String
5254
+ def tracking_server_name: () -> ::String
5255
+ def artifact_store_uri: () -> ::String
5256
+ def tracking_server_size: () -> ("Small" | "Medium" | "Large")
5257
+ def mlflow_version: () -> ::String
5258
+ def role_arn: () -> ::String
5259
+ def tracking_server_status: () -> ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed")
5260
+ def is_active: () -> ("Active" | "Inactive")
5261
+ def tracking_server_url: () -> ::String
5262
+ def weekly_maintenance_window_start: () -> ::String
5263
+ def automatic_model_registration: () -> bool
5264
+ def creation_time: () -> ::Time
5265
+ def created_by: () -> Types::UserContext
5266
+ def last_modified_time: () -> ::Time
5267
+ def last_modified_by: () -> Types::UserContext
5268
+ end
5269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_mlflow_tracking_server-instance_method
5270
+ def describe_mlflow_tracking_server: (
5271
+ tracking_server_name: ::String
5272
+ ) -> _DescribeMlflowTrackingServerResponseSuccess
5273
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMlflowTrackingServerResponseSuccess
5274
+
5198
5275
  interface _DescribeModelResponseSuccess
5199
5276
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeModelOutput]
5200
5277
  def model_name: () -> ::String
@@ -6606,6 +6683,24 @@ module Aws
6606
6683
  ) -> _ListLineageGroupsResponseSuccess
6607
6684
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLineageGroupsResponseSuccess
6608
6685
 
6686
+ interface _ListMlflowTrackingServersResponseSuccess
6687
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMlflowTrackingServersResponse]
6688
+ def tracking_server_summaries: () -> ::Array[Types::TrackingServerSummary]
6689
+ def next_token: () -> ::String
6690
+ end
6691
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_mlflow_tracking_servers-instance_method
6692
+ def list_mlflow_tracking_servers: (
6693
+ ?created_after: ::Time,
6694
+ ?created_before: ::Time,
6695
+ ?tracking_server_status: ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed"),
6696
+ ?mlflow_version: ::String,
6697
+ ?sort_by: ("Name" | "CreationTime" | "Status"),
6698
+ ?sort_order: ("Ascending" | "Descending"),
6699
+ ?next_token: ::String,
6700
+ ?max_results: ::Integer
6701
+ ) -> _ListMlflowTrackingServersResponseSuccess
6702
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMlflowTrackingServersResponseSuccess
6703
+
6609
6704
  interface _ListModelBiasJobDefinitionsResponseSuccess
6610
6705
  include ::Seahorse::Client::_ResponseSuccess[Types::ListModelBiasJobDefinitionsResponse]
6611
6706
  def job_definition_summaries: () -> ::Array[Types::MonitoringJobDefinitionSummary]
@@ -6731,7 +6826,8 @@ module Aws
6731
6826
  ?name_contains: ::String,
6732
6827
  ?next_token: ::String,
6733
6828
  ?sort_by: ("Name" | "CreationTime"),
6734
- ?sort_order: ("Ascending" | "Descending")
6829
+ ?sort_order: ("Ascending" | "Descending"),
6830
+ ?cross_account_filter_option: ("SameAccount" | "CrossAccount")
6735
6831
  ) -> _ListModelPackageGroupsResponseSuccess
6736
6832
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelPackageGroupsResponseSuccess
6737
6833
 
@@ -7425,6 +7521,16 @@ module Aws
7425
7521
  ) -> _StartInferenceExperimentResponseSuccess
7426
7522
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInferenceExperimentResponseSuccess
7427
7523
 
7524
+ interface _StartMlflowTrackingServerResponseSuccess
7525
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMlflowTrackingServerResponse]
7526
+ def tracking_server_arn: () -> ::String
7527
+ end
7528
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_mlflow_tracking_server-instance_method
7529
+ def start_mlflow_tracking_server: (
7530
+ tracking_server_name: ::String
7531
+ ) -> _StartMlflowTrackingServerResponseSuccess
7532
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMlflowTrackingServerResponseSuccess
7533
+
7428
7534
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_monitoring_schedule-instance_method
7429
7535
  def start_monitoring_schedule: (
7430
7536
  monitoring_schedule_name: ::String
@@ -7536,6 +7642,16 @@ module Aws
7536
7642
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
7537
7643
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
7538
7644
 
7645
+ interface _StopMlflowTrackingServerResponseSuccess
7646
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopMlflowTrackingServerResponse]
7647
+ def tracking_server_arn: () -> ::String
7648
+ end
7649
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_mlflow_tracking_server-instance_method
7650
+ def stop_mlflow_tracking_server: (
7651
+ tracking_server_name: ::String
7652
+ ) -> _StopMlflowTrackingServerResponseSuccess
7653
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopMlflowTrackingServerResponseSuccess
7654
+
7539
7655
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_monitoring_schedule-instance_method
7540
7656
  def stop_monitoring_schedule: (
7541
7657
  monitoring_schedule_name: ::String
@@ -7668,7 +7784,14 @@ module Aws
7668
7784
  on_create: ::String
7669
7785
  },
7670
7786
  execution_role: ::String,
7671
- threads_per_core: ::Integer?
7787
+ threads_per_core: ::Integer?,
7788
+ instance_storage_configs: Array[
7789
+ {
7790
+ ebs_volume_config: {
7791
+ volume_size_in_gb: ::Integer
7792
+ }?
7793
+ },
7794
+ ]?
7672
7795
  },
7673
7796
  ]
7674
7797
  ) -> _UpdateClusterResponseSuccess
@@ -8279,6 +8402,20 @@ module Aws
8279
8402
  ) -> _UpdateInferenceExperimentResponseSuccess
8280
8403
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInferenceExperimentResponseSuccess
8281
8404
 
8405
+ interface _UpdateMlflowTrackingServerResponseSuccess
8406
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMlflowTrackingServerResponse]
8407
+ def tracking_server_arn: () -> ::String
8408
+ end
8409
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#update_mlflow_tracking_server-instance_method
8410
+ def update_mlflow_tracking_server: (
8411
+ tracking_server_name: ::String,
8412
+ ?artifact_store_uri: ::String,
8413
+ ?tracking_server_size: ("Small" | "Medium" | "Large"),
8414
+ ?automatic_model_registration: bool,
8415
+ ?weekly_maintenance_window_start: ::String
8416
+ ) -> _UpdateMlflowTrackingServerResponseSuccess
8417
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMlflowTrackingServerResponseSuccess
8418
+
8282
8419
  interface _UpdateModelCardResponseSuccess
8283
8420
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateModelCardResponse]
8284
8421
  def model_card_arn: () -> ::String
@@ -8964,7 +9101,9 @@ module Aws
8964
9101
  token_endpoint: ::String,
8965
9102
  user_info_endpoint: ::String,
8966
9103
  logout_endpoint: ::String,
8967
- jwks_uri: ::String
9104
+ jwks_uri: ::String,
9105
+ scope: ::String?,
9106
+ authentication_request_extra_params: Hash[::String, ::String]?
8968
9107
  },
8969
9108
  ?workforce_vpc_config: {
8970
9109
  vpc_id: ::String?,
data/sig/types.rbs CHANGED
@@ -673,6 +673,11 @@ module Aws::SageMaker
673
673
  SENSITIVE: []
674
674
  end
675
675
 
676
+ class ClusterEbsVolumeConfig
677
+ attr_accessor volume_size_in_gb: ::Integer
678
+ SENSITIVE: []
679
+ end
680
+
676
681
  class ClusterInstanceGroupDetails
677
682
  attr_accessor current_count: ::Integer
678
683
  attr_accessor target_count: ::Integer
@@ -681,6 +686,7 @@ module Aws::SageMaker
681
686
  attr_accessor life_cycle_config: Types::ClusterLifeCycleConfig
682
687
  attr_accessor execution_role: ::String
683
688
  attr_accessor threads_per_core: ::Integer
689
+ attr_accessor instance_storage_configs: ::Array[Types::ClusterInstanceStorageConfig]
684
690
  SENSITIVE: []
685
691
  end
686
692
 
@@ -691,6 +697,7 @@ module Aws::SageMaker
691
697
  attr_accessor life_cycle_config: Types::ClusterLifeCycleConfig
692
698
  attr_accessor execution_role: ::String
693
699
  attr_accessor threads_per_core: ::Integer
700
+ attr_accessor instance_storage_configs: ::Array[Types::ClusterInstanceStorageConfig]
694
701
  SENSITIVE: []
695
702
  end
696
703
 
@@ -706,6 +713,17 @@ module Aws::SageMaker
706
713
  SENSITIVE: []
707
714
  end
708
715
 
716
+ class ClusterInstanceStorageConfig
717
+ attr_accessor ebs_volume_config: Types::ClusterEbsVolumeConfig
718
+ attr_accessor unknown: untyped
719
+ SENSITIVE: []
720
+
721
+ class EbsVolumeConfig < ClusterInstanceStorageConfig
722
+ end
723
+ class Unknown < ClusterInstanceStorageConfig
724
+ end
725
+ end
726
+
709
727
  class ClusterLifeCycleConfig
710
728
  attr_accessor source_s3_uri: ::String
711
729
  attr_accessor on_create: ::String
@@ -720,6 +738,7 @@ module Aws::SageMaker
720
738
  attr_accessor launch_time: ::Time
721
739
  attr_accessor life_cycle_config: Types::ClusterLifeCycleConfig
722
740
  attr_accessor threads_per_core: ::Integer
741
+ attr_accessor instance_storage_configs: ::Array[Types::ClusterInstanceStorageConfig]
723
742
  attr_accessor private_primary_ip: ::String
724
743
  attr_accessor private_dns_hostname: ::String
725
744
  attr_accessor placement: Types::ClusterInstancePlacement
@@ -1367,6 +1386,23 @@ module Aws::SageMaker
1367
1386
  SENSITIVE: []
1368
1387
  end
1369
1388
 
1389
+ class CreateMlflowTrackingServerRequest
1390
+ attr_accessor tracking_server_name: ::String
1391
+ attr_accessor artifact_store_uri: ::String
1392
+ attr_accessor tracking_server_size: ("Small" | "Medium" | "Large")
1393
+ attr_accessor mlflow_version: ::String
1394
+ attr_accessor role_arn: ::String
1395
+ attr_accessor automatic_model_registration: bool
1396
+ attr_accessor weekly_maintenance_window_start: ::String
1397
+ attr_accessor tags: ::Array[Types::Tag]
1398
+ SENSITIVE: []
1399
+ end
1400
+
1401
+ class CreateMlflowTrackingServerResponse
1402
+ attr_accessor tracking_server_arn: ::String
1403
+ SENSITIVE: []
1404
+ end
1405
+
1370
1406
  class CreateModelBiasJobDefinitionRequest
1371
1407
  attr_accessor job_definition_name: ::String
1372
1408
  attr_accessor model_bias_baseline_config: Types::ModelBiasBaselineConfig
@@ -1593,6 +1629,18 @@ module Aws::SageMaker
1593
1629
  SENSITIVE: []
1594
1630
  end
1595
1631
 
1632
+ class CreatePresignedMlflowTrackingServerUrlRequest
1633
+ attr_accessor tracking_server_name: ::String
1634
+ attr_accessor expires_in_seconds: ::Integer
1635
+ attr_accessor session_expiration_duration_in_seconds: ::Integer
1636
+ SENSITIVE: []
1637
+ end
1638
+
1639
+ class CreatePresignedMlflowTrackingServerUrlResponse
1640
+ attr_accessor authorized_url: ::String
1641
+ SENSITIVE: []
1642
+ end
1643
+
1596
1644
  class CreatePresignedNotebookInstanceUrlInput
1597
1645
  attr_accessor notebook_instance_name: ::String
1598
1646
  attr_accessor session_expiration_duration_in_seconds: ::Integer
@@ -2168,6 +2216,16 @@ module Aws::SageMaker
2168
2216
  SENSITIVE: []
2169
2217
  end
2170
2218
 
2219
+ class DeleteMlflowTrackingServerRequest
2220
+ attr_accessor tracking_server_name: ::String
2221
+ SENSITIVE: []
2222
+ end
2223
+
2224
+ class DeleteMlflowTrackingServerResponse
2225
+ attr_accessor tracking_server_arn: ::String
2226
+ SENSITIVE: []
2227
+ end
2228
+
2171
2229
  class DeleteModelBiasJobDefinitionRequest
2172
2230
  attr_accessor job_definition_name: ::String
2173
2231
  SENSITIVE: []
@@ -3109,6 +3167,30 @@ module Aws::SageMaker
3109
3167
  SENSITIVE: []
3110
3168
  end
3111
3169
 
3170
+ class DescribeMlflowTrackingServerRequest
3171
+ attr_accessor tracking_server_name: ::String
3172
+ SENSITIVE: []
3173
+ end
3174
+
3175
+ class DescribeMlflowTrackingServerResponse
3176
+ attr_accessor tracking_server_arn: ::String
3177
+ attr_accessor tracking_server_name: ::String
3178
+ attr_accessor artifact_store_uri: ::String
3179
+ attr_accessor tracking_server_size: ("Small" | "Medium" | "Large")
3180
+ attr_accessor mlflow_version: ::String
3181
+ attr_accessor role_arn: ::String
3182
+ attr_accessor tracking_server_status: ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed")
3183
+ attr_accessor is_active: ("Active" | "Inactive")
3184
+ attr_accessor tracking_server_url: ::String
3185
+ attr_accessor weekly_maintenance_window_start: ::String
3186
+ attr_accessor automatic_model_registration: bool
3187
+ attr_accessor creation_time: ::Time
3188
+ attr_accessor created_by: Types::UserContext
3189
+ attr_accessor last_modified_time: ::Time
3190
+ attr_accessor last_modified_by: Types::UserContext
3191
+ SENSITIVE: []
3192
+ end
3193
+
3112
3194
  class DescribeModelBiasJobDefinitionRequest
3113
3195
  attr_accessor job_definition_name: ::String
3114
3196
  SENSITIVE: []
@@ -5701,6 +5783,24 @@ module Aws::SageMaker
5701
5783
  SENSITIVE: []
5702
5784
  end
5703
5785
 
5786
+ class ListMlflowTrackingServersRequest
5787
+ attr_accessor created_after: ::Time
5788
+ attr_accessor created_before: ::Time
5789
+ attr_accessor tracking_server_status: ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed")
5790
+ attr_accessor mlflow_version: ::String
5791
+ attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
5792
+ attr_accessor sort_order: ("Ascending" | "Descending")
5793
+ attr_accessor next_token: ::String
5794
+ attr_accessor max_results: ::Integer
5795
+ SENSITIVE: []
5796
+ end
5797
+
5798
+ class ListMlflowTrackingServersResponse
5799
+ attr_accessor tracking_server_summaries: ::Array[Types::TrackingServerSummary]
5800
+ attr_accessor next_token: ::String
5801
+ SENSITIVE: []
5802
+ end
5803
+
5704
5804
  class ListModelBiasJobDefinitionsRequest
5705
5805
  attr_accessor endpoint_name: ::String
5706
5806
  attr_accessor sort_by: ("Name" | "CreationTime")
@@ -5814,6 +5914,7 @@ module Aws::SageMaker
5814
5914
  attr_accessor next_token: ::String
5815
5915
  attr_accessor sort_by: ("Name" | "CreationTime")
5816
5916
  attr_accessor sort_order: ("Ascending" | "Descending")
5917
+ attr_accessor cross_account_filter_option: ("SameAccount" | "CrossAccount")
5817
5918
  SENSITIVE: []
5818
5919
  end
5819
5920
 
@@ -7116,6 +7217,8 @@ module Aws::SageMaker
7116
7217
  attr_accessor user_info_endpoint: ::String
7117
7218
  attr_accessor logout_endpoint: ::String
7118
7219
  attr_accessor jwks_uri: ::String
7220
+ attr_accessor scope: ::String
7221
+ attr_accessor authentication_request_extra_params: ::Hash[::String, ::String]
7119
7222
  SENSITIVE: [:client_secret]
7120
7223
  end
7121
7224
 
@@ -7127,6 +7230,8 @@ module Aws::SageMaker
7127
7230
  attr_accessor user_info_endpoint: ::String
7128
7231
  attr_accessor logout_endpoint: ::String
7129
7232
  attr_accessor jwks_uri: ::String
7233
+ attr_accessor scope: ::String
7234
+ attr_accessor authentication_request_extra_params: ::Hash[::String, ::String]
7130
7235
  SENSITIVE: []
7131
7236
  end
7132
7237
 
@@ -8256,6 +8361,16 @@ module Aws::SageMaker
8256
8361
  SENSITIVE: []
8257
8362
  end
8258
8363
 
8364
+ class StartMlflowTrackingServerRequest
8365
+ attr_accessor tracking_server_name: ::String
8366
+ SENSITIVE: []
8367
+ end
8368
+
8369
+ class StartMlflowTrackingServerResponse
8370
+ attr_accessor tracking_server_arn: ::String
8371
+ SENSITIVE: []
8372
+ end
8373
+
8259
8374
  class StartMonitoringScheduleRequest
8260
8375
  attr_accessor monitoring_schedule_name: ::String
8261
8376
  SENSITIVE: []
@@ -8332,6 +8447,16 @@ module Aws::SageMaker
8332
8447
  SENSITIVE: []
8333
8448
  end
8334
8449
 
8450
+ class StopMlflowTrackingServerRequest
8451
+ attr_accessor tracking_server_name: ::String
8452
+ SENSITIVE: []
8453
+ end
8454
+
8455
+ class StopMlflowTrackingServerResponse
8456
+ attr_accessor tracking_server_arn: ::String
8457
+ SENSITIVE: []
8458
+ end
8459
+
8335
8460
  class StopMonitoringScheduleRequest
8336
8461
  attr_accessor monitoring_schedule_name: ::String
8337
8462
  SENSITIVE: []
@@ -8519,6 +8644,17 @@ module Aws::SageMaker
8519
8644
  SENSITIVE: []
8520
8645
  end
8521
8646
 
8647
+ class TrackingServerSummary
8648
+ attr_accessor tracking_server_arn: ::String
8649
+ attr_accessor tracking_server_name: ::String
8650
+ attr_accessor creation_time: ::Time
8651
+ attr_accessor last_modified_time: ::Time
8652
+ attr_accessor tracking_server_status: ("Creating" | "Created" | "CreateFailed" | "Updating" | "Updated" | "UpdateFailed" | "Deleting" | "DeleteFailed" | "Stopping" | "Stopped" | "StopFailed" | "Starting" | "Started" | "StartFailed" | "MaintenanceInProgress" | "MaintenanceComplete" | "MaintenanceFailed")
8653
+ attr_accessor is_active: ("Active" | "Inactive")
8654
+ attr_accessor mlflow_version: ::String
8655
+ SENSITIVE: []
8656
+ end
8657
+
8522
8658
  class TrafficPattern
8523
8659
  attr_accessor traffic_type: ("PHASES" | "STAIRS")
8524
8660
  attr_accessor phases: ::Array[Types::Phase]
@@ -9152,6 +9288,20 @@ module Aws::SageMaker
9152
9288
  SENSITIVE: []
9153
9289
  end
9154
9290
 
9291
+ class UpdateMlflowTrackingServerRequest
9292
+ attr_accessor tracking_server_name: ::String
9293
+ attr_accessor artifact_store_uri: ::String
9294
+ attr_accessor tracking_server_size: ("Small" | "Medium" | "Large")
9295
+ attr_accessor automatic_model_registration: bool
9296
+ attr_accessor weekly_maintenance_window_start: ::String
9297
+ SENSITIVE: []
9298
+ end
9299
+
9300
+ class UpdateMlflowTrackingServerResponse
9301
+ attr_accessor tracking_server_arn: ::String
9302
+ SENSITIVE: []
9303
+ end
9304
+
9155
9305
  class UpdateModelCardRequest
9156
9306
  attr_accessor model_card_name: ::String
9157
9307
  attr_accessor content: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.246.0
4
+ version: 1.247.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-07 00:00:00.000000000 Z
11
+ date: 2024-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core