aws-sdk-sagemaker 1.276.0 → 1.277.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +1434 -51
- data/lib/aws-sdk-sagemaker/client_api.rb +741 -0
- data/lib/aws-sdk-sagemaker/types.rb +2070 -5
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +469 -25
- data/sig/types.rbs +507 -10
- metadata +2 -2
@@ -4227,6 +4227,38 @@ module Aws::SageMaker
|
|
4227
4227
|
# when the cluster instance group is created or updated.
|
4228
4228
|
# @return [Array<String>]
|
4229
4229
|
#
|
4230
|
+
# @!attribute [rw] status
|
4231
|
+
# The current status of the cluster instance group.
|
4232
|
+
#
|
4233
|
+
# * `InService`: The instance group is active and healthy.
|
4234
|
+
#
|
4235
|
+
# * `Creating`: The instance group is being provisioned.
|
4236
|
+
#
|
4237
|
+
# * `Updating`: The instance group is being updated.
|
4238
|
+
#
|
4239
|
+
# * `Failed`: The instance group has failed to provision or is no
|
4240
|
+
# longer healthy.
|
4241
|
+
#
|
4242
|
+
# * `Degraded`: The instance group is degraded, meaning that some
|
4243
|
+
# instances have failed to provision or are no longer healthy.
|
4244
|
+
#
|
4245
|
+
# * `Deleting`: The instance group is being deleted.
|
4246
|
+
# @return [String]
|
4247
|
+
#
|
4248
|
+
# @!attribute [rw] training_plan_arn
|
4249
|
+
# The Amazon Resource Name (ARN); of the training plan associated with
|
4250
|
+
# this cluster instance group.
|
4251
|
+
#
|
4252
|
+
# For more information about how to reserve GPU capacity for your
|
4253
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan,
|
4254
|
+
# see ` CreateTrainingPlan `.
|
4255
|
+
# @return [String]
|
4256
|
+
#
|
4257
|
+
# @!attribute [rw] training_plan_status
|
4258
|
+
# The current status of the training plan associated with this cluster
|
4259
|
+
# instance group.
|
4260
|
+
# @return [String]
|
4261
|
+
#
|
4230
4262
|
# @!attribute [rw] override_vpc_config
|
4231
4263
|
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
4232
4264
|
# jobs, hosted models, and compute resources have access to. You can
|
@@ -4251,6 +4283,9 @@ module Aws::SageMaker
|
|
4251
4283
|
:threads_per_core,
|
4252
4284
|
:instance_storage_configs,
|
4253
4285
|
:on_start_deep_health_checks,
|
4286
|
+
:status,
|
4287
|
+
:training_plan_arn,
|
4288
|
+
:training_plan_status,
|
4254
4289
|
:override_vpc_config)
|
4255
4290
|
SENSITIVE = []
|
4256
4291
|
include Aws::Structure
|
@@ -4303,6 +4338,15 @@ module Aws::SageMaker
|
|
4303
4338
|
# when the cluster instance group is created or updated.
|
4304
4339
|
# @return [Array<String>]
|
4305
4340
|
#
|
4341
|
+
# @!attribute [rw] training_plan_arn
|
4342
|
+
# The Amazon Resource Name (ARN); of the training plan to use for this
|
4343
|
+
# cluster instance group.
|
4344
|
+
#
|
4345
|
+
# For more information about how to reserve GPU capacity for your
|
4346
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan,
|
4347
|
+
# see ` CreateTrainingPlan `.
|
4348
|
+
# @return [String]
|
4349
|
+
#
|
4306
4350
|
# @!attribute [rw] override_vpc_config
|
4307
4351
|
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
4308
4352
|
# jobs, hosted models, and compute resources have access to. You can
|
@@ -4326,6 +4370,7 @@ module Aws::SageMaker
|
|
4326
4370
|
:threads_per_core,
|
4327
4371
|
:instance_storage_configs,
|
4328
4372
|
:on_start_deep_health_checks,
|
4373
|
+
:training_plan_arn,
|
4329
4374
|
:override_vpc_config)
|
4330
4375
|
SENSITIVE = []
|
4331
4376
|
include Aws::Structure
|
@@ -4583,6 +4628,55 @@ module Aws::SageMaker
|
|
4583
4628
|
include Aws::Structure
|
4584
4629
|
end
|
4585
4630
|
|
4631
|
+
# Summary of the cluster policy.
|
4632
|
+
#
|
4633
|
+
# @!attribute [rw] cluster_scheduler_config_arn
|
4634
|
+
# ARN of the cluster policy.
|
4635
|
+
# @return [String]
|
4636
|
+
#
|
4637
|
+
# @!attribute [rw] cluster_scheduler_config_id
|
4638
|
+
# ID of the cluster policy.
|
4639
|
+
# @return [String]
|
4640
|
+
#
|
4641
|
+
# @!attribute [rw] cluster_scheduler_config_version
|
4642
|
+
# Version of the cluster policy.
|
4643
|
+
# @return [Integer]
|
4644
|
+
#
|
4645
|
+
# @!attribute [rw] name
|
4646
|
+
# Name of the cluster policy.
|
4647
|
+
# @return [String]
|
4648
|
+
#
|
4649
|
+
# @!attribute [rw] creation_time
|
4650
|
+
# Creation time of the cluster policy.
|
4651
|
+
# @return [Time]
|
4652
|
+
#
|
4653
|
+
# @!attribute [rw] last_modified_time
|
4654
|
+
# Last modified time of the cluster policy.
|
4655
|
+
# @return [Time]
|
4656
|
+
#
|
4657
|
+
# @!attribute [rw] status
|
4658
|
+
# Status of the cluster policy.
|
4659
|
+
# @return [String]
|
4660
|
+
#
|
4661
|
+
# @!attribute [rw] cluster_arn
|
4662
|
+
# ARN of the cluster.
|
4663
|
+
# @return [String]
|
4664
|
+
#
|
4665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSchedulerConfigSummary AWS API Documentation
|
4666
|
+
#
|
4667
|
+
class ClusterSchedulerConfigSummary < Struct.new(
|
4668
|
+
:cluster_scheduler_config_arn,
|
4669
|
+
:cluster_scheduler_config_id,
|
4670
|
+
:cluster_scheduler_config_version,
|
4671
|
+
:name,
|
4672
|
+
:creation_time,
|
4673
|
+
:last_modified_time,
|
4674
|
+
:status,
|
4675
|
+
:cluster_arn)
|
4676
|
+
SENSITIVE = []
|
4677
|
+
include Aws::Structure
|
4678
|
+
end
|
4679
|
+
|
4586
4680
|
# Lists a summary of the properties of a SageMaker HyperPod cluster.
|
4587
4681
|
#
|
4588
4682
|
# @!attribute [rw] cluster_arn
|
@@ -4601,13 +4695,23 @@ module Aws::SageMaker
|
|
4601
4695
|
# The status of the SageMaker HyperPod cluster.
|
4602
4696
|
# @return [String]
|
4603
4697
|
#
|
4698
|
+
# @!attribute [rw] training_plan_arns
|
4699
|
+
# A list of Amazon Resource Names (ARNs) of the training plans
|
4700
|
+
# associated with this cluster.
|
4701
|
+
#
|
4702
|
+
# For more information about how to reserve GPU capacity for your
|
4703
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan,
|
4704
|
+
# see ` CreateTrainingPlan `.
|
4705
|
+
# @return [Array<String>]
|
4706
|
+
#
|
4604
4707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSummary AWS API Documentation
|
4605
4708
|
#
|
4606
4709
|
class ClusterSummary < Struct.new(
|
4607
4710
|
:cluster_arn,
|
4608
4711
|
:cluster_name,
|
4609
4712
|
:creation_time,
|
4610
|
-
:cluster_status
|
4713
|
+
:cluster_status,
|
4714
|
+
:training_plan_arns)
|
4611
4715
|
SENSITIVE = []
|
4612
4716
|
include Aws::Structure
|
4613
4717
|
end
|
@@ -4911,6 +5015,151 @@ module Aws::SageMaker
|
|
4911
5015
|
include Aws::Structure
|
4912
5016
|
end
|
4913
5017
|
|
5018
|
+
# Configuration of the compute allocation definition for an entity. This
|
5019
|
+
# includes the resource sharing option and the setting to preempt low
|
5020
|
+
# priority tasks.
|
5021
|
+
#
|
5022
|
+
# @!attribute [rw] compute_quota_resources
|
5023
|
+
# Allocate compute resources by instance types.
|
5024
|
+
# @return [Array<Types::ComputeQuotaResourceConfig>]
|
5025
|
+
#
|
5026
|
+
# @!attribute [rw] resource_sharing_config
|
5027
|
+
# Resource sharing configuration. This defines how an entity can lend
|
5028
|
+
# and borrow idle compute with other entities within the cluster.
|
5029
|
+
# @return [Types::ResourceSharingConfig]
|
5030
|
+
#
|
5031
|
+
# @!attribute [rw] preempt_team_tasks
|
5032
|
+
# Allows workloads from within an entity to preempt same-team
|
5033
|
+
# workloads. When set to `LowerPriority`, the entity's lower priority
|
5034
|
+
# tasks are preempted by their own higher priority tasks.
|
5035
|
+
#
|
5036
|
+
# Default is `LowerPriority`.
|
5037
|
+
# @return [String]
|
5038
|
+
#
|
5039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ComputeQuotaConfig AWS API Documentation
|
5040
|
+
#
|
5041
|
+
class ComputeQuotaConfig < Struct.new(
|
5042
|
+
:compute_quota_resources,
|
5043
|
+
:resource_sharing_config,
|
5044
|
+
:preempt_team_tasks)
|
5045
|
+
SENSITIVE = []
|
5046
|
+
include Aws::Structure
|
5047
|
+
end
|
5048
|
+
|
5049
|
+
# Configuration of the resources used for the compute allocation
|
5050
|
+
# definition.
|
5051
|
+
#
|
5052
|
+
# @!attribute [rw] instance_type
|
5053
|
+
# The instance type of the instance group for the cluster.
|
5054
|
+
# @return [String]
|
5055
|
+
#
|
5056
|
+
# @!attribute [rw] count
|
5057
|
+
# The number of instances to add to the instance group of a SageMaker
|
5058
|
+
# HyperPod cluster.
|
5059
|
+
# @return [Integer]
|
5060
|
+
#
|
5061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ComputeQuotaResourceConfig AWS API Documentation
|
5062
|
+
#
|
5063
|
+
class ComputeQuotaResourceConfig < Struct.new(
|
5064
|
+
:instance_type,
|
5065
|
+
:count)
|
5066
|
+
SENSITIVE = []
|
5067
|
+
include Aws::Structure
|
5068
|
+
end
|
5069
|
+
|
5070
|
+
# Summary of the compute allocation definition.
|
5071
|
+
#
|
5072
|
+
# @!attribute [rw] compute_quota_arn
|
5073
|
+
# ARN of the compute allocation definition.
|
5074
|
+
# @return [String]
|
5075
|
+
#
|
5076
|
+
# @!attribute [rw] compute_quota_id
|
5077
|
+
# ID of the compute allocation definition.
|
5078
|
+
# @return [String]
|
5079
|
+
#
|
5080
|
+
# @!attribute [rw] name
|
5081
|
+
# Name of the compute allocation definition.
|
5082
|
+
# @return [String]
|
5083
|
+
#
|
5084
|
+
# @!attribute [rw] compute_quota_version
|
5085
|
+
# Version of the compute allocation definition.
|
5086
|
+
# @return [Integer]
|
5087
|
+
#
|
5088
|
+
# @!attribute [rw] status
|
5089
|
+
# Status of the compute allocation definition.
|
5090
|
+
# @return [String]
|
5091
|
+
#
|
5092
|
+
# @!attribute [rw] cluster_arn
|
5093
|
+
# ARN of the cluster.
|
5094
|
+
# @return [String]
|
5095
|
+
#
|
5096
|
+
# @!attribute [rw] compute_quota_config
|
5097
|
+
# Configuration of the compute allocation definition. This includes
|
5098
|
+
# the resource sharing option, and the setting to preempt low priority
|
5099
|
+
# tasks.
|
5100
|
+
# @return [Types::ComputeQuotaConfig]
|
5101
|
+
#
|
5102
|
+
# @!attribute [rw] compute_quota_target
|
5103
|
+
# The target entity to allocate compute resources to.
|
5104
|
+
# @return [Types::ComputeQuotaTarget]
|
5105
|
+
#
|
5106
|
+
# @!attribute [rw] activation_state
|
5107
|
+
# The state of the compute allocation being described. Use to enable
|
5108
|
+
# or disable compute allocation.
|
5109
|
+
#
|
5110
|
+
# Default is `Enabled`.
|
5111
|
+
# @return [String]
|
5112
|
+
#
|
5113
|
+
# @!attribute [rw] creation_time
|
5114
|
+
# Creation time of the compute allocation definition.
|
5115
|
+
# @return [Time]
|
5116
|
+
#
|
5117
|
+
# @!attribute [rw] last_modified_time
|
5118
|
+
# Last modified time of the compute allocation definition.
|
5119
|
+
# @return [Time]
|
5120
|
+
#
|
5121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ComputeQuotaSummary AWS API Documentation
|
5122
|
+
#
|
5123
|
+
class ComputeQuotaSummary < Struct.new(
|
5124
|
+
:compute_quota_arn,
|
5125
|
+
:compute_quota_id,
|
5126
|
+
:name,
|
5127
|
+
:compute_quota_version,
|
5128
|
+
:status,
|
5129
|
+
:cluster_arn,
|
5130
|
+
:compute_quota_config,
|
5131
|
+
:compute_quota_target,
|
5132
|
+
:activation_state,
|
5133
|
+
:creation_time,
|
5134
|
+
:last_modified_time)
|
5135
|
+
SENSITIVE = []
|
5136
|
+
include Aws::Structure
|
5137
|
+
end
|
5138
|
+
|
5139
|
+
# The target entity to allocate compute resources to.
|
5140
|
+
#
|
5141
|
+
# @!attribute [rw] team_name
|
5142
|
+
# Name of the team to allocate compute resources to.
|
5143
|
+
# @return [String]
|
5144
|
+
#
|
5145
|
+
# @!attribute [rw] fair_share_weight
|
5146
|
+
# Assigned entity fair-share weight. Idle compute will be shared
|
5147
|
+
# across entities based on these assigned weights. This weight is only
|
5148
|
+
# used when `FairShare` is enabled.
|
5149
|
+
#
|
5150
|
+
# A weight of 0 is the lowest priority and 100 is the highest. Weight
|
5151
|
+
# 0 is the default.
|
5152
|
+
# @return [Integer]
|
5153
|
+
#
|
5154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ComputeQuotaTarget AWS API Documentation
|
5155
|
+
#
|
5156
|
+
class ComputeQuotaTarget < Struct.new(
|
5157
|
+
:team_name,
|
5158
|
+
:fair_share_weight)
|
5159
|
+
SENSITIVE = []
|
5160
|
+
include Aws::Structure
|
5161
|
+
end
|
5162
|
+
|
4914
5163
|
# Metadata for a Condition step.
|
4915
5164
|
#
|
4916
5165
|
# @!attribute [rw] outcome
|
@@ -5931,6 +6180,55 @@ module Aws::SageMaker
|
|
5931
6180
|
include Aws::Structure
|
5932
6181
|
end
|
5933
6182
|
|
6183
|
+
# @!attribute [rw] name
|
6184
|
+
# Name for the cluster policy.
|
6185
|
+
# @return [String]
|
6186
|
+
#
|
6187
|
+
# @!attribute [rw] cluster_arn
|
6188
|
+
# ARN of the cluster.
|
6189
|
+
# @return [String]
|
6190
|
+
#
|
6191
|
+
# @!attribute [rw] scheduler_config
|
6192
|
+
# Configuration about the monitoring schedule.
|
6193
|
+
# @return [Types::SchedulerConfig]
|
6194
|
+
#
|
6195
|
+
# @!attribute [rw] description
|
6196
|
+
# Description of the cluster policy.
|
6197
|
+
# @return [String]
|
6198
|
+
#
|
6199
|
+
# @!attribute [rw] tags
|
6200
|
+
# Tags of the cluster policy.
|
6201
|
+
# @return [Array<Types::Tag>]
|
6202
|
+
#
|
6203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterSchedulerConfigRequest AWS API Documentation
|
6204
|
+
#
|
6205
|
+
class CreateClusterSchedulerConfigRequest < Struct.new(
|
6206
|
+
:name,
|
6207
|
+
:cluster_arn,
|
6208
|
+
:scheduler_config,
|
6209
|
+
:description,
|
6210
|
+
:tags)
|
6211
|
+
SENSITIVE = []
|
6212
|
+
include Aws::Structure
|
6213
|
+
end
|
6214
|
+
|
6215
|
+
# @!attribute [rw] cluster_scheduler_config_arn
|
6216
|
+
# ARN of the cluster policy.
|
6217
|
+
# @return [String]
|
6218
|
+
#
|
6219
|
+
# @!attribute [rw] cluster_scheduler_config_id
|
6220
|
+
# ID of the cluster policy.
|
6221
|
+
# @return [String]
|
6222
|
+
#
|
6223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterSchedulerConfigResponse AWS API Documentation
|
6224
|
+
#
|
6225
|
+
class CreateClusterSchedulerConfigResponse < Struct.new(
|
6226
|
+
:cluster_scheduler_config_arn,
|
6227
|
+
:cluster_scheduler_config_id)
|
6228
|
+
SENSITIVE = []
|
6229
|
+
include Aws::Structure
|
6230
|
+
end
|
6231
|
+
|
5934
6232
|
# @!attribute [rw] code_repository_name
|
5935
6233
|
# The name of the Git repository. The name must have 1 to 63
|
5936
6234
|
# characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
@@ -6086,6 +6384,70 @@ module Aws::SageMaker
|
|
6086
6384
|
include Aws::Structure
|
6087
6385
|
end
|
6088
6386
|
|
6387
|
+
# @!attribute [rw] name
|
6388
|
+
# Name to the compute allocation definition.
|
6389
|
+
# @return [String]
|
6390
|
+
#
|
6391
|
+
# @!attribute [rw] description
|
6392
|
+
# Description of the compute allocation definition.
|
6393
|
+
# @return [String]
|
6394
|
+
#
|
6395
|
+
# @!attribute [rw] cluster_arn
|
6396
|
+
# ARN of the cluster.
|
6397
|
+
# @return [String]
|
6398
|
+
#
|
6399
|
+
# @!attribute [rw] compute_quota_config
|
6400
|
+
# Configuration of the compute allocation definition. This includes
|
6401
|
+
# the resource sharing option, and the setting to preempt low priority
|
6402
|
+
# tasks.
|
6403
|
+
# @return [Types::ComputeQuotaConfig]
|
6404
|
+
#
|
6405
|
+
# @!attribute [rw] compute_quota_target
|
6406
|
+
# The target entity to allocate compute resources to.
|
6407
|
+
# @return [Types::ComputeQuotaTarget]
|
6408
|
+
#
|
6409
|
+
# @!attribute [rw] activation_state
|
6410
|
+
# The state of the compute allocation being described. Use to enable
|
6411
|
+
# or disable compute allocation.
|
6412
|
+
#
|
6413
|
+
# Default is `Enabled`.
|
6414
|
+
# @return [String]
|
6415
|
+
#
|
6416
|
+
# @!attribute [rw] tags
|
6417
|
+
# Tags of the compute allocation definition.
|
6418
|
+
# @return [Array<Types::Tag>]
|
6419
|
+
#
|
6420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateComputeQuotaRequest AWS API Documentation
|
6421
|
+
#
|
6422
|
+
class CreateComputeQuotaRequest < Struct.new(
|
6423
|
+
:name,
|
6424
|
+
:description,
|
6425
|
+
:cluster_arn,
|
6426
|
+
:compute_quota_config,
|
6427
|
+
:compute_quota_target,
|
6428
|
+
:activation_state,
|
6429
|
+
:tags)
|
6430
|
+
SENSITIVE = []
|
6431
|
+
include Aws::Structure
|
6432
|
+
end
|
6433
|
+
|
6434
|
+
# @!attribute [rw] compute_quota_arn
|
6435
|
+
# ARN of the compute allocation definition.
|
6436
|
+
# @return [String]
|
6437
|
+
#
|
6438
|
+
# @!attribute [rw] compute_quota_id
|
6439
|
+
# ID of the compute allocation definition.
|
6440
|
+
# @return [String]
|
6441
|
+
#
|
6442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateComputeQuotaResponse AWS API Documentation
|
6443
|
+
#
|
6444
|
+
class CreateComputeQuotaResponse < Struct.new(
|
6445
|
+
:compute_quota_arn,
|
6446
|
+
:compute_quota_id)
|
6447
|
+
SENSITIVE = []
|
6448
|
+
include Aws::Structure
|
6449
|
+
end
|
6450
|
+
|
6089
6451
|
# @!attribute [rw] context_name
|
6090
6452
|
# The name of the context. Must be unique to your account in an Amazon
|
6091
6453
|
# Web Services Region.
|
@@ -9095,6 +9457,123 @@ module Aws::SageMaker
|
|
9095
9457
|
include Aws::Structure
|
9096
9458
|
end
|
9097
9459
|
|
9460
|
+
# @!attribute [rw] arn
|
9461
|
+
# The ARN of the SageMaker Partner AI App to create the presigned URL
|
9462
|
+
# for.
|
9463
|
+
# @return [String]
|
9464
|
+
#
|
9465
|
+
# @!attribute [rw] expires_in_seconds
|
9466
|
+
# The time that will pass before the presigned URL expires.
|
9467
|
+
# @return [Integer]
|
9468
|
+
#
|
9469
|
+
# @!attribute [rw] session_expiration_duration_in_seconds
|
9470
|
+
# Indicates how long the Amazon SageMaker Partner AI App session can
|
9471
|
+
# be accessed for after logging in.
|
9472
|
+
# @return [Integer]
|
9473
|
+
#
|
9474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePartnerAppPresignedUrlRequest AWS API Documentation
|
9475
|
+
#
|
9476
|
+
class CreatePartnerAppPresignedUrlRequest < Struct.new(
|
9477
|
+
:arn,
|
9478
|
+
:expires_in_seconds,
|
9479
|
+
:session_expiration_duration_in_seconds)
|
9480
|
+
SENSITIVE = []
|
9481
|
+
include Aws::Structure
|
9482
|
+
end
|
9483
|
+
|
9484
|
+
# @!attribute [rw] url
|
9485
|
+
# The presigned URL that you can use to access the SageMaker Partner
|
9486
|
+
# AI App.
|
9487
|
+
# @return [String]
|
9488
|
+
#
|
9489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePartnerAppPresignedUrlResponse AWS API Documentation
|
9490
|
+
#
|
9491
|
+
class CreatePartnerAppPresignedUrlResponse < Struct.new(
|
9492
|
+
:url)
|
9493
|
+
SENSITIVE = []
|
9494
|
+
include Aws::Structure
|
9495
|
+
end
|
9496
|
+
|
9497
|
+
# @!attribute [rw] name
|
9498
|
+
# The name to give the SageMaker Partner AI App.
|
9499
|
+
# @return [String]
|
9500
|
+
#
|
9501
|
+
# @!attribute [rw] type
|
9502
|
+
# The type of SageMaker Partner AI App to create. Must be one of the
|
9503
|
+
# following: `lakera-guard`, `comet`, `deepchecks-llm-evaluation`, or
|
9504
|
+
# `fiddler`.
|
9505
|
+
# @return [String]
|
9506
|
+
#
|
9507
|
+
# @!attribute [rw] execution_role_arn
|
9508
|
+
# The ARN of the IAM role that the partner application uses.
|
9509
|
+
# @return [String]
|
9510
|
+
#
|
9511
|
+
# @!attribute [rw] maintenance_config
|
9512
|
+
# Maintenance configuration settings for the SageMaker Partner AI App.
|
9513
|
+
# @return [Types::PartnerAppMaintenanceConfig]
|
9514
|
+
#
|
9515
|
+
# @!attribute [rw] tier
|
9516
|
+
# Indicates the instance type and size of the cluster attached to the
|
9517
|
+
# SageMaker Partner AI App.
|
9518
|
+
# @return [String]
|
9519
|
+
#
|
9520
|
+
# @!attribute [rw] application_config
|
9521
|
+
# Configuration settings for the SageMaker Partner AI App.
|
9522
|
+
# @return [Types::PartnerAppConfig]
|
9523
|
+
#
|
9524
|
+
# @!attribute [rw] auth_type
|
9525
|
+
# The authorization type that users use to access the SageMaker
|
9526
|
+
# Partner AI App.
|
9527
|
+
# @return [String]
|
9528
|
+
#
|
9529
|
+
# @!attribute [rw] enable_iam_session_based_identity
|
9530
|
+
# When set to `TRUE`, the SageMaker Partner AI App sets the Amazon Web
|
9531
|
+
# Services IAM session name or the authenticated IAM user as the
|
9532
|
+
# identity of the SageMaker Partner AI App user.
|
9533
|
+
# @return [Boolean]
|
9534
|
+
#
|
9535
|
+
# @!attribute [rw] client_token
|
9536
|
+
# A unique token that guarantees that the call to this API is
|
9537
|
+
# idempotent.
|
9538
|
+
#
|
9539
|
+
# **A suitable default value is auto-generated.** You should normally
|
9540
|
+
# not need to pass this option.
|
9541
|
+
# @return [String]
|
9542
|
+
#
|
9543
|
+
# @!attribute [rw] tags
|
9544
|
+
# Each tag consists of a key and an optional value. Tag keys must be
|
9545
|
+
# unique per resource.
|
9546
|
+
# @return [Array<Types::Tag>]
|
9547
|
+
#
|
9548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePartnerAppRequest AWS API Documentation
|
9549
|
+
#
|
9550
|
+
class CreatePartnerAppRequest < Struct.new(
|
9551
|
+
:name,
|
9552
|
+
:type,
|
9553
|
+
:execution_role_arn,
|
9554
|
+
:maintenance_config,
|
9555
|
+
:tier,
|
9556
|
+
:application_config,
|
9557
|
+
:auth_type,
|
9558
|
+
:enable_iam_session_based_identity,
|
9559
|
+
:client_token,
|
9560
|
+
:tags)
|
9561
|
+
SENSITIVE = []
|
9562
|
+
include Aws::Structure
|
9563
|
+
end
|
9564
|
+
|
9565
|
+
# @!attribute [rw] arn
|
9566
|
+
# The ARN of the SageMaker Partner AI App.
|
9567
|
+
# @return [String]
|
9568
|
+
#
|
9569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePartnerAppResponse AWS API Documentation
|
9570
|
+
#
|
9571
|
+
class CreatePartnerAppResponse < Struct.new(
|
9572
|
+
:arn)
|
9573
|
+
SENSITIVE = []
|
9574
|
+
include Aws::Structure
|
9575
|
+
end
|
9576
|
+
|
9098
9577
|
# @!attribute [rw] pipeline_name
|
9099
9578
|
# The name of the pipeline.
|
9100
9579
|
# @return [String]
|
@@ -9873,6 +10352,41 @@ module Aws::SageMaker
|
|
9873
10352
|
include Aws::Structure
|
9874
10353
|
end
|
9875
10354
|
|
10355
|
+
# @!attribute [rw] training_plan_name
|
10356
|
+
# The name of the training plan to create.
|
10357
|
+
# @return [String]
|
10358
|
+
#
|
10359
|
+
# @!attribute [rw] training_plan_offering_id
|
10360
|
+
# The unique identifier of the training plan offering to use for
|
10361
|
+
# creating this plan.
|
10362
|
+
# @return [String]
|
10363
|
+
#
|
10364
|
+
# @!attribute [rw] tags
|
10365
|
+
# An array of key-value pairs to apply to this training plan.
|
10366
|
+
# @return [Array<Types::Tag>]
|
10367
|
+
#
|
10368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTrainingPlanRequest AWS API Documentation
|
10369
|
+
#
|
10370
|
+
class CreateTrainingPlanRequest < Struct.new(
|
10371
|
+
:training_plan_name,
|
10372
|
+
:training_plan_offering_id,
|
10373
|
+
:tags)
|
10374
|
+
SENSITIVE = []
|
10375
|
+
include Aws::Structure
|
10376
|
+
end
|
10377
|
+
|
10378
|
+
# @!attribute [rw] training_plan_arn
|
10379
|
+
# The Amazon Resource Name (ARN); of the created training plan.
|
10380
|
+
# @return [String]
|
10381
|
+
#
|
10382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTrainingPlanResponse AWS API Documentation
|
10383
|
+
#
|
10384
|
+
class CreateTrainingPlanResponse < Struct.new(
|
10385
|
+
:training_plan_arn)
|
10386
|
+
SENSITIVE = []
|
10387
|
+
include Aws::Structure
|
10388
|
+
end
|
10389
|
+
|
9876
10390
|
# @!attribute [rw] transform_job_name
|
9877
10391
|
# The name of the transform job. The name must be unique within an
|
9878
10392
|
# Amazon Web Services Region in an Amazon Web Services account.
|
@@ -10415,16 +10929,22 @@ module Aws::SageMaker
|
|
10415
10929
|
# A custom file system in Amazon EFS.
|
10416
10930
|
# @return [Types::EFSFileSystem]
|
10417
10931
|
#
|
10932
|
+
# @!attribute [rw] f_sx_lustre_file_system
|
10933
|
+
# A custom file system in Amazon FSx for Lustre.
|
10934
|
+
# @return [Types::FSxLustreFileSystem]
|
10935
|
+
#
|
10418
10936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystem AWS API Documentation
|
10419
10937
|
#
|
10420
10938
|
class CustomFileSystem < Struct.new(
|
10421
10939
|
:efs_file_system,
|
10940
|
+
:f_sx_lustre_file_system,
|
10422
10941
|
:unknown)
|
10423
10942
|
SENSITIVE = []
|
10424
10943
|
include Aws::Structure
|
10425
10944
|
include Aws::Structure::Union
|
10426
10945
|
|
10427
10946
|
class EfsFileSystem < CustomFileSystem; end
|
10947
|
+
class FSxLustreFileSystem < CustomFileSystem; end
|
10428
10948
|
class Unknown < CustomFileSystem; end
|
10429
10949
|
end
|
10430
10950
|
|
@@ -10440,16 +10960,22 @@ module Aws::SageMaker
|
|
10440
10960
|
# The settings for a custom Amazon EFS file system.
|
10441
10961
|
# @return [Types::EFSFileSystemConfig]
|
10442
10962
|
#
|
10963
|
+
# @!attribute [rw] f_sx_lustre_file_system_config
|
10964
|
+
# The settings for a custom Amazon FSx for Lustre file system.
|
10965
|
+
# @return [Types::FSxLustreFileSystemConfig]
|
10966
|
+
#
|
10443
10967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystemConfig AWS API Documentation
|
10444
10968
|
#
|
10445
10969
|
class CustomFileSystemConfig < Struct.new(
|
10446
10970
|
:efs_file_system_config,
|
10971
|
+
:f_sx_lustre_file_system_config,
|
10447
10972
|
:unknown)
|
10448
10973
|
SENSITIVE = []
|
10449
10974
|
include Aws::Structure
|
10450
10975
|
include Aws::Structure::Union
|
10451
10976
|
|
10452
10977
|
class EfsFileSystemConfig < CustomFileSystemConfig; end
|
10978
|
+
class FSxLustreFileSystemConfig < CustomFileSystemConfig; end
|
10453
10979
|
class Unknown < CustomFileSystemConfig; end
|
10454
10980
|
end
|
10455
10981
|
|
@@ -11282,6 +11808,18 @@ module Aws::SageMaker
|
|
11282
11808
|
include Aws::Structure
|
11283
11809
|
end
|
11284
11810
|
|
11811
|
+
# @!attribute [rw] cluster_scheduler_config_id
|
11812
|
+
# ID of the cluster policy.
|
11813
|
+
# @return [String]
|
11814
|
+
#
|
11815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteClusterSchedulerConfigRequest AWS API Documentation
|
11816
|
+
#
|
11817
|
+
class DeleteClusterSchedulerConfigRequest < Struct.new(
|
11818
|
+
:cluster_scheduler_config_id)
|
11819
|
+
SENSITIVE = []
|
11820
|
+
include Aws::Structure
|
11821
|
+
end
|
11822
|
+
|
11285
11823
|
# @!attribute [rw] code_repository_name
|
11286
11824
|
# The name of the Git repository to delete.
|
11287
11825
|
# @return [String]
|
@@ -11306,6 +11844,18 @@ module Aws::SageMaker
|
|
11306
11844
|
include Aws::Structure
|
11307
11845
|
end
|
11308
11846
|
|
11847
|
+
# @!attribute [rw] compute_quota_id
|
11848
|
+
# ID of the compute allocation definition.
|
11849
|
+
# @return [String]
|
11850
|
+
#
|
11851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteComputeQuotaRequest AWS API Documentation
|
11852
|
+
#
|
11853
|
+
class DeleteComputeQuotaRequest < Struct.new(
|
11854
|
+
:compute_quota_id)
|
11855
|
+
SENSITIVE = []
|
11856
|
+
include Aws::Structure
|
11857
|
+
end
|
11858
|
+
|
11309
11859
|
# @!attribute [rw] context_name
|
11310
11860
|
# The name of the context to delete.
|
11311
11861
|
# @return [String]
|
@@ -11824,6 +12374,39 @@ module Aws::SageMaker
|
|
11824
12374
|
include Aws::Structure
|
11825
12375
|
end
|
11826
12376
|
|
12377
|
+
# @!attribute [rw] arn
|
12378
|
+
# The ARN of the SageMaker Partner AI App to delete.
|
12379
|
+
# @return [String]
|
12380
|
+
#
|
12381
|
+
# @!attribute [rw] client_token
|
12382
|
+
# A unique token that guarantees that the call to this API is
|
12383
|
+
# idempotent.
|
12384
|
+
#
|
12385
|
+
# **A suitable default value is auto-generated.** You should normally
|
12386
|
+
# not need to pass this option.
|
12387
|
+
# @return [String]
|
12388
|
+
#
|
12389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeletePartnerAppRequest AWS API Documentation
|
12390
|
+
#
|
12391
|
+
class DeletePartnerAppRequest < Struct.new(
|
12392
|
+
:arn,
|
12393
|
+
:client_token)
|
12394
|
+
SENSITIVE = []
|
12395
|
+
include Aws::Structure
|
12396
|
+
end
|
12397
|
+
|
12398
|
+
# @!attribute [rw] arn
|
12399
|
+
# The ARN of the SageMaker Partner AI App that was deleted.
|
12400
|
+
# @return [String]
|
12401
|
+
#
|
12402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeletePartnerAppResponse AWS API Documentation
|
12403
|
+
#
|
12404
|
+
class DeletePartnerAppResponse < Struct.new(
|
12405
|
+
:arn)
|
12406
|
+
SENSITIVE = []
|
12407
|
+
include Aws::Structure
|
12408
|
+
end
|
12409
|
+
|
11827
12410
|
# @!attribute [rw] pipeline_name
|
11828
12411
|
# The name of the pipeline to delete.
|
11829
12412
|
# @return [String]
|
@@ -13022,6 +13605,99 @@ module Aws::SageMaker
|
|
13022
13605
|
include Aws::Structure
|
13023
13606
|
end
|
13024
13607
|
|
13608
|
+
# @!attribute [rw] cluster_scheduler_config_id
|
13609
|
+
# ID of the cluster policy.
|
13610
|
+
# @return [String]
|
13611
|
+
#
|
13612
|
+
# @!attribute [rw] cluster_scheduler_config_version
|
13613
|
+
# Version of the cluster policy.
|
13614
|
+
# @return [Integer]
|
13615
|
+
#
|
13616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterSchedulerConfigRequest AWS API Documentation
|
13617
|
+
#
|
13618
|
+
class DescribeClusterSchedulerConfigRequest < Struct.new(
|
13619
|
+
:cluster_scheduler_config_id,
|
13620
|
+
:cluster_scheduler_config_version)
|
13621
|
+
SENSITIVE = []
|
13622
|
+
include Aws::Structure
|
13623
|
+
end
|
13624
|
+
|
13625
|
+
# @!attribute [rw] cluster_scheduler_config_arn
|
13626
|
+
# ARN of the cluster policy.
|
13627
|
+
# @return [String]
|
13628
|
+
#
|
13629
|
+
# @!attribute [rw] cluster_scheduler_config_id
|
13630
|
+
# ID of the cluster policy.
|
13631
|
+
# @return [String]
|
13632
|
+
#
|
13633
|
+
# @!attribute [rw] name
|
13634
|
+
# Name of the cluster policy.
|
13635
|
+
# @return [String]
|
13636
|
+
#
|
13637
|
+
# @!attribute [rw] cluster_scheduler_config_version
|
13638
|
+
# Version of the cluster policy.
|
13639
|
+
# @return [Integer]
|
13640
|
+
#
|
13641
|
+
# @!attribute [rw] status
|
13642
|
+
# Status of the cluster policy.
|
13643
|
+
# @return [String]
|
13644
|
+
#
|
13645
|
+
# @!attribute [rw] failure_reason
|
13646
|
+
# Failure reason of the cluster policy.
|
13647
|
+
# @return [String]
|
13648
|
+
#
|
13649
|
+
# @!attribute [rw] cluster_arn
|
13650
|
+
# ARN of the cluster where the cluster policy is applied.
|
13651
|
+
# @return [String]
|
13652
|
+
#
|
13653
|
+
# @!attribute [rw] scheduler_config
|
13654
|
+
# Cluster policy configuration. This policy is used for task
|
13655
|
+
# prioritization and fair-share allocation. This helps prioritize
|
13656
|
+
# critical workloads and distributes idle compute across entities.
|
13657
|
+
# @return [Types::SchedulerConfig]
|
13658
|
+
#
|
13659
|
+
# @!attribute [rw] description
|
13660
|
+
# Description of the cluster policy.
|
13661
|
+
# @return [String]
|
13662
|
+
#
|
13663
|
+
# @!attribute [rw] creation_time
|
13664
|
+
# Creation time of the cluster policy.
|
13665
|
+
# @return [Time]
|
13666
|
+
#
|
13667
|
+
# @!attribute [rw] created_by
|
13668
|
+
# Information about the user who created or modified an experiment,
|
13669
|
+
# trial, trial component, lineage group, project, or model card.
|
13670
|
+
# @return [Types::UserContext]
|
13671
|
+
#
|
13672
|
+
# @!attribute [rw] last_modified_time
|
13673
|
+
# Last modified time of the cluster policy.
|
13674
|
+
# @return [Time]
|
13675
|
+
#
|
13676
|
+
# @!attribute [rw] last_modified_by
|
13677
|
+
# Information about the user who created or modified an experiment,
|
13678
|
+
# trial, trial component, lineage group, project, or model card.
|
13679
|
+
# @return [Types::UserContext]
|
13680
|
+
#
|
13681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterSchedulerConfigResponse AWS API Documentation
|
13682
|
+
#
|
13683
|
+
class DescribeClusterSchedulerConfigResponse < Struct.new(
|
13684
|
+
:cluster_scheduler_config_arn,
|
13685
|
+
:cluster_scheduler_config_id,
|
13686
|
+
:name,
|
13687
|
+
:cluster_scheduler_config_version,
|
13688
|
+
:status,
|
13689
|
+
:failure_reason,
|
13690
|
+
:cluster_arn,
|
13691
|
+
:scheduler_config,
|
13692
|
+
:description,
|
13693
|
+
:creation_time,
|
13694
|
+
:created_by,
|
13695
|
+
:last_modified_time,
|
13696
|
+
:last_modified_by)
|
13697
|
+
SENSITIVE = []
|
13698
|
+
include Aws::Structure
|
13699
|
+
end
|
13700
|
+
|
13025
13701
|
# @!attribute [rw] code_repository_name
|
13026
13702
|
# The name of the Git repository to describe.
|
13027
13703
|
# @return [String]
|
@@ -13209,6 +13885,112 @@ module Aws::SageMaker
|
|
13209
13885
|
include Aws::Structure
|
13210
13886
|
end
|
13211
13887
|
|
13888
|
+
# @!attribute [rw] compute_quota_id
|
13889
|
+
# ID of the compute allocation definition.
|
13890
|
+
# @return [String]
|
13891
|
+
#
|
13892
|
+
# @!attribute [rw] compute_quota_version
|
13893
|
+
# Version of the compute allocation definition.
|
13894
|
+
# @return [Integer]
|
13895
|
+
#
|
13896
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeComputeQuotaRequest AWS API Documentation
|
13897
|
+
#
|
13898
|
+
class DescribeComputeQuotaRequest < Struct.new(
|
13899
|
+
:compute_quota_id,
|
13900
|
+
:compute_quota_version)
|
13901
|
+
SENSITIVE = []
|
13902
|
+
include Aws::Structure
|
13903
|
+
end
|
13904
|
+
|
13905
|
+
# @!attribute [rw] compute_quota_arn
|
13906
|
+
# ARN of the compute allocation definition.
|
13907
|
+
# @return [String]
|
13908
|
+
#
|
13909
|
+
# @!attribute [rw] compute_quota_id
|
13910
|
+
# ID of the compute allocation definition.
|
13911
|
+
# @return [String]
|
13912
|
+
#
|
13913
|
+
# @!attribute [rw] name
|
13914
|
+
# Name of the compute allocation definition.
|
13915
|
+
# @return [String]
|
13916
|
+
#
|
13917
|
+
# @!attribute [rw] description
|
13918
|
+
# Description of the compute allocation definition.
|
13919
|
+
# @return [String]
|
13920
|
+
#
|
13921
|
+
# @!attribute [rw] compute_quota_version
|
13922
|
+
# Version of the compute allocation definition.
|
13923
|
+
# @return [Integer]
|
13924
|
+
#
|
13925
|
+
# @!attribute [rw] status
|
13926
|
+
# Status of the compute allocation definition.
|
13927
|
+
# @return [String]
|
13928
|
+
#
|
13929
|
+
# @!attribute [rw] failure_reason
|
13930
|
+
# Failure reason of the compute allocation definition.
|
13931
|
+
# @return [String]
|
13932
|
+
#
|
13933
|
+
# @!attribute [rw] cluster_arn
|
13934
|
+
# ARN of the cluster.
|
13935
|
+
# @return [String]
|
13936
|
+
#
|
13937
|
+
# @!attribute [rw] compute_quota_config
|
13938
|
+
# Configuration of the compute allocation definition. This includes
|
13939
|
+
# the resource sharing option, and the setting to preempt low priority
|
13940
|
+
# tasks.
|
13941
|
+
# @return [Types::ComputeQuotaConfig]
|
13942
|
+
#
|
13943
|
+
# @!attribute [rw] compute_quota_target
|
13944
|
+
# The target entity to allocate compute resources to.
|
13945
|
+
# @return [Types::ComputeQuotaTarget]
|
13946
|
+
#
|
13947
|
+
# @!attribute [rw] activation_state
|
13948
|
+
# The state of the compute allocation being described. Use to enable
|
13949
|
+
# or disable compute allocation.
|
13950
|
+
#
|
13951
|
+
# Default is `Enabled`.
|
13952
|
+
# @return [String]
|
13953
|
+
#
|
13954
|
+
# @!attribute [rw] creation_time
|
13955
|
+
# Creation time of the compute allocation configuration.
|
13956
|
+
# @return [Time]
|
13957
|
+
#
|
13958
|
+
# @!attribute [rw] created_by
|
13959
|
+
# Information about the user who created or modified an experiment,
|
13960
|
+
# trial, trial component, lineage group, project, or model card.
|
13961
|
+
# @return [Types::UserContext]
|
13962
|
+
#
|
13963
|
+
# @!attribute [rw] last_modified_time
|
13964
|
+
# Last modified time of the compute allocation configuration.
|
13965
|
+
# @return [Time]
|
13966
|
+
#
|
13967
|
+
# @!attribute [rw] last_modified_by
|
13968
|
+
# Information about the user who created or modified an experiment,
|
13969
|
+
# trial, trial component, lineage group, project, or model card.
|
13970
|
+
# @return [Types::UserContext]
|
13971
|
+
#
|
13972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeComputeQuotaResponse AWS API Documentation
|
13973
|
+
#
|
13974
|
+
class DescribeComputeQuotaResponse < Struct.new(
|
13975
|
+
:compute_quota_arn,
|
13976
|
+
:compute_quota_id,
|
13977
|
+
:name,
|
13978
|
+
:description,
|
13979
|
+
:compute_quota_version,
|
13980
|
+
:status,
|
13981
|
+
:failure_reason,
|
13982
|
+
:cluster_arn,
|
13983
|
+
:compute_quota_config,
|
13984
|
+
:compute_quota_target,
|
13985
|
+
:activation_state,
|
13986
|
+
:creation_time,
|
13987
|
+
:created_by,
|
13988
|
+
:last_modified_time,
|
13989
|
+
:last_modified_by)
|
13990
|
+
SENSITIVE = []
|
13991
|
+
include Aws::Structure
|
13992
|
+
end
|
13993
|
+
|
13212
13994
|
# @!attribute [rw] context_name
|
13213
13995
|
# The name of the context to describe.
|
13214
13996
|
# @return [String]
|
@@ -16972,6 +17754,103 @@ module Aws::SageMaker
|
|
16972
17754
|
include Aws::Structure
|
16973
17755
|
end
|
16974
17756
|
|
17757
|
+
# @!attribute [rw] arn
|
17758
|
+
# The ARN of the SageMaker Partner AI App to describe.
|
17759
|
+
# @return [String]
|
17760
|
+
#
|
17761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePartnerAppRequest AWS API Documentation
|
17762
|
+
#
|
17763
|
+
class DescribePartnerAppRequest < Struct.new(
|
17764
|
+
:arn)
|
17765
|
+
SENSITIVE = []
|
17766
|
+
include Aws::Structure
|
17767
|
+
end
|
17768
|
+
|
17769
|
+
# @!attribute [rw] arn
|
17770
|
+
# The ARN of the SageMaker Partner AI App that was described.
|
17771
|
+
# @return [String]
|
17772
|
+
#
|
17773
|
+
# @!attribute [rw] name
|
17774
|
+
# The name of the SageMaker Partner AI App.
|
17775
|
+
# @return [String]
|
17776
|
+
#
|
17777
|
+
# @!attribute [rw] type
|
17778
|
+
# The type of SageMaker Partner AI App. Must be one of the following:
|
17779
|
+
# `lakera-guard`, `comet`, `deepchecks-llm-evaluation`, or `fiddler`.
|
17780
|
+
# @return [String]
|
17781
|
+
#
|
17782
|
+
# @!attribute [rw] status
|
17783
|
+
# The status of the SageMaker Partner AI App.
|
17784
|
+
# @return [String]
|
17785
|
+
#
|
17786
|
+
# @!attribute [rw] creation_time
|
17787
|
+
# The time that the SageMaker Partner AI App was created.
|
17788
|
+
# @return [Time]
|
17789
|
+
#
|
17790
|
+
# @!attribute [rw] execution_role_arn
|
17791
|
+
# The ARN of the IAM role associated with the SageMaker Partner AI
|
17792
|
+
# App.
|
17793
|
+
# @return [String]
|
17794
|
+
#
|
17795
|
+
# @!attribute [rw] base_url
|
17796
|
+
# The URL of the SageMaker Partner AI App that the Application SDK
|
17797
|
+
# uses to support in-app calls for the user.
|
17798
|
+
# @return [String]
|
17799
|
+
#
|
17800
|
+
# @!attribute [rw] maintenance_config
|
17801
|
+
# Maintenance configuration settings for the SageMaker Partner AI App.
|
17802
|
+
# @return [Types::PartnerAppMaintenanceConfig]
|
17803
|
+
#
|
17804
|
+
# @!attribute [rw] tier
|
17805
|
+
# The instance type and size of the cluster attached to the SageMaker
|
17806
|
+
# Partner AI App.
|
17807
|
+
# @return [String]
|
17808
|
+
#
|
17809
|
+
# @!attribute [rw] version
|
17810
|
+
# The version of the SageMaker Partner AI App.
|
17811
|
+
# @return [String]
|
17812
|
+
#
|
17813
|
+
# @!attribute [rw] application_config
|
17814
|
+
# Configuration settings for the SageMaker Partner AI App.
|
17815
|
+
# @return [Types::PartnerAppConfig]
|
17816
|
+
#
|
17817
|
+
# @!attribute [rw] auth_type
|
17818
|
+
# The authorization type that users use to access the SageMaker
|
17819
|
+
# Partner AI App.
|
17820
|
+
# @return [String]
|
17821
|
+
#
|
17822
|
+
# @!attribute [rw] enable_iam_session_based_identity
|
17823
|
+
# When set to `TRUE`, the SageMaker Partner AI App sets the Amazon Web
|
17824
|
+
# Services IAM session name or the authenticated IAM user as the
|
17825
|
+
# identity of the SageMaker Partner AI App user.
|
17826
|
+
# @return [Boolean]
|
17827
|
+
#
|
17828
|
+
# @!attribute [rw] error
|
17829
|
+
# This is an error field object that contains the error code and the
|
17830
|
+
# reason for an operation failure.
|
17831
|
+
# @return [Types::ErrorInfo]
|
17832
|
+
#
|
17833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePartnerAppResponse AWS API Documentation
|
17834
|
+
#
|
17835
|
+
class DescribePartnerAppResponse < Struct.new(
|
17836
|
+
:arn,
|
17837
|
+
:name,
|
17838
|
+
:type,
|
17839
|
+
:status,
|
17840
|
+
:creation_time,
|
17841
|
+
:execution_role_arn,
|
17842
|
+
:base_url,
|
17843
|
+
:maintenance_config,
|
17844
|
+
:tier,
|
17845
|
+
:version,
|
17846
|
+
:application_config,
|
17847
|
+
:auth_type,
|
17848
|
+
:enable_iam_session_based_identity,
|
17849
|
+
:error)
|
17850
|
+
SENSITIVE = []
|
17851
|
+
include Aws::Structure
|
17852
|
+
end
|
17853
|
+
|
16975
17854
|
# @!attribute [rw] pipeline_execution_arn
|
16976
17855
|
# The Amazon Resource Name (ARN) of the pipeline execution.
|
16977
17856
|
# @return [String]
|
@@ -17976,6 +18855,117 @@ module Aws::SageMaker
|
|
17976
18855
|
include Aws::Structure
|
17977
18856
|
end
|
17978
18857
|
|
18858
|
+
# @!attribute [rw] training_plan_name
|
18859
|
+
# The name of the training plan to describe.
|
18860
|
+
# @return [String]
|
18861
|
+
#
|
18862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingPlanRequest AWS API Documentation
|
18863
|
+
#
|
18864
|
+
class DescribeTrainingPlanRequest < Struct.new(
|
18865
|
+
:training_plan_name)
|
18866
|
+
SENSITIVE = []
|
18867
|
+
include Aws::Structure
|
18868
|
+
end
|
18869
|
+
|
18870
|
+
# @!attribute [rw] training_plan_arn
|
18871
|
+
# The Amazon Resource Name (ARN); of the training plan.
|
18872
|
+
# @return [String]
|
18873
|
+
#
|
18874
|
+
# @!attribute [rw] training_plan_name
|
18875
|
+
# The name of the training plan.
|
18876
|
+
# @return [String]
|
18877
|
+
#
|
18878
|
+
# @!attribute [rw] status
|
18879
|
+
# The current status of the training plan (e.g., Pending, Active,
|
18880
|
+
# Expired). To see the complete list of status values available for a
|
18881
|
+
# training plan, refer to the `Status` attribute within the `
|
18882
|
+
# TrainingPlanSummary ` object.
|
18883
|
+
# @return [String]
|
18884
|
+
#
|
18885
|
+
# @!attribute [rw] status_message
|
18886
|
+
# A message providing additional information about the current status
|
18887
|
+
# of the training plan.
|
18888
|
+
# @return [String]
|
18889
|
+
#
|
18890
|
+
# @!attribute [rw] duration_hours
|
18891
|
+
# The number of whole hours in the total duration for this training
|
18892
|
+
# plan.
|
18893
|
+
# @return [Integer]
|
18894
|
+
#
|
18895
|
+
# @!attribute [rw] duration_minutes
|
18896
|
+
# The additional minutes beyond whole hours in the total duration for
|
18897
|
+
# this training plan.
|
18898
|
+
# @return [Integer]
|
18899
|
+
#
|
18900
|
+
# @!attribute [rw] start_time
|
18901
|
+
# The start time of the training plan.
|
18902
|
+
# @return [Time]
|
18903
|
+
#
|
18904
|
+
# @!attribute [rw] end_time
|
18905
|
+
# The end time of the training plan.
|
18906
|
+
# @return [Time]
|
18907
|
+
#
|
18908
|
+
# @!attribute [rw] upfront_fee
|
18909
|
+
# The upfront fee for the training plan.
|
18910
|
+
# @return [String]
|
18911
|
+
#
|
18912
|
+
# @!attribute [rw] currency_code
|
18913
|
+
# The currency code for the upfront fee (e.g., USD).
|
18914
|
+
# @return [String]
|
18915
|
+
#
|
18916
|
+
# @!attribute [rw] total_instance_count
|
18917
|
+
# The total number of instances reserved in this training plan.
|
18918
|
+
# @return [Integer]
|
18919
|
+
#
|
18920
|
+
# @!attribute [rw] available_instance_count
|
18921
|
+
# The number of instances currently available for use in this training
|
18922
|
+
# plan.
|
18923
|
+
# @return [Integer]
|
18924
|
+
#
|
18925
|
+
# @!attribute [rw] in_use_instance_count
|
18926
|
+
# The number of instances currently in use from this training plan.
|
18927
|
+
# @return [Integer]
|
18928
|
+
#
|
18929
|
+
# @!attribute [rw] target_resources
|
18930
|
+
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
18931
|
+
# HyperPod) that can use this training plan.
|
18932
|
+
#
|
18933
|
+
# Training plans are specific to their target resource.
|
18934
|
+
#
|
18935
|
+
# * A training plan designed for SageMaker training jobs can only be
|
18936
|
+
# used to schedule and run training jobs.
|
18937
|
+
#
|
18938
|
+
# * A training plan for HyperPod clusters can be used exclusively to
|
18939
|
+
# provide compute resources to a cluster's instance group.
|
18940
|
+
# @return [Array<String>]
|
18941
|
+
#
|
18942
|
+
# @!attribute [rw] reserved_capacity_summaries
|
18943
|
+
# The list of Reserved Capacity providing the underlying compute
|
18944
|
+
# resources of the plan.
|
18945
|
+
# @return [Array<Types::ReservedCapacitySummary>]
|
18946
|
+
#
|
18947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingPlanResponse AWS API Documentation
|
18948
|
+
#
|
18949
|
+
class DescribeTrainingPlanResponse < Struct.new(
|
18950
|
+
:training_plan_arn,
|
18951
|
+
:training_plan_name,
|
18952
|
+
:status,
|
18953
|
+
:status_message,
|
18954
|
+
:duration_hours,
|
18955
|
+
:duration_minutes,
|
18956
|
+
:start_time,
|
18957
|
+
:end_time,
|
18958
|
+
:upfront_fee,
|
18959
|
+
:currency_code,
|
18960
|
+
:total_instance_count,
|
18961
|
+
:available_instance_count,
|
18962
|
+
:in_use_instance_count,
|
18963
|
+
:target_resources,
|
18964
|
+
:reserved_capacity_summaries)
|
18965
|
+
SENSITIVE = []
|
18966
|
+
include Aws::Structure
|
18967
|
+
end
|
18968
|
+
|
17979
18969
|
# @!attribute [rw] transform_job_name
|
17980
18970
|
# The name of the transform job that you want to view details of.
|
17981
18971
|
# @return [String]
|
@@ -20174,6 +21164,26 @@ module Aws::SageMaker
|
|
20174
21164
|
include Aws::Structure
|
20175
21165
|
end
|
20176
21166
|
|
21167
|
+
# This is an error field object that contains the error code and the
|
21168
|
+
# reason for an operation failure.
|
21169
|
+
#
|
21170
|
+
# @!attribute [rw] code
|
21171
|
+
# The error code for an invalid or failed operation.
|
21172
|
+
# @return [String]
|
21173
|
+
#
|
21174
|
+
# @!attribute [rw] reason
|
21175
|
+
# The failure reason for the operation.
|
21176
|
+
# @return [String]
|
21177
|
+
#
|
21178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ErrorInfo AWS API Documentation
|
21179
|
+
#
|
21180
|
+
class ErrorInfo < Struct.new(
|
21181
|
+
:code,
|
21182
|
+
:reason)
|
21183
|
+
SENSITIVE = []
|
21184
|
+
include Aws::Structure
|
21185
|
+
end
|
21186
|
+
|
20177
21187
|
# The properties of an experiment as returned by the [Search][1] API.
|
20178
21188
|
#
|
20179
21189
|
#
|
@@ -20384,6 +21394,43 @@ module Aws::SageMaker
|
|
20384
21394
|
include Aws::Structure
|
20385
21395
|
end
|
20386
21396
|
|
21397
|
+
# A custom file system in Amazon FSx for Lustre.
|
21398
|
+
#
|
21399
|
+
# @!attribute [rw] file_system_id
|
21400
|
+
# Amazon FSx for Lustre file system ID.
|
21401
|
+
# @return [String]
|
21402
|
+
#
|
21403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FSxLustreFileSystem AWS API Documentation
|
21404
|
+
#
|
21405
|
+
class FSxLustreFileSystem < Struct.new(
|
21406
|
+
:file_system_id)
|
21407
|
+
SENSITIVE = []
|
21408
|
+
include Aws::Structure
|
21409
|
+
end
|
21410
|
+
|
21411
|
+
# The settings for assigning a custom Amazon FSx for Lustre file system
|
21412
|
+
# to a user profile or space for an Amazon SageMaker Domain.
|
21413
|
+
#
|
21414
|
+
# @!attribute [rw] file_system_id
|
21415
|
+
# The globally unique, 17-digit, ID of the file system, assigned by
|
21416
|
+
# Amazon FSx for Lustre.
|
21417
|
+
# @return [String]
|
21418
|
+
#
|
21419
|
+
# @!attribute [rw] file_system_path
|
21420
|
+
# The path to the file system directory that is accessible in Amazon
|
21421
|
+
# SageMaker Studio. Permitted users can access only this directory and
|
21422
|
+
# below.
|
21423
|
+
# @return [String]
|
21424
|
+
#
|
21425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FSxLustreFileSystemConfig AWS API Documentation
|
21426
|
+
#
|
21427
|
+
class FSxLustreFileSystemConfig < Struct.new(
|
21428
|
+
:file_system_id,
|
21429
|
+
:file_system_path)
|
21430
|
+
SENSITIVE = []
|
21431
|
+
include Aws::Structure
|
21432
|
+
end
|
21433
|
+
|
20387
21434
|
# The container for the metadata for Fail step.
|
20388
21435
|
#
|
20389
21436
|
# @!attribute [rw] error_message
|
@@ -26814,6 +27861,92 @@ module Aws::SageMaker
|
|
26814
27861
|
include Aws::Structure
|
26815
27862
|
end
|
26816
27863
|
|
27864
|
+
# @!attribute [rw] created_after
|
27865
|
+
# Filter for after this creation time. The input for this parameter is
|
27866
|
+
# a Unix timestamp. To convert a date and time into a Unix timestamp,
|
27867
|
+
# see [EpochConverter][1].
|
27868
|
+
#
|
27869
|
+
#
|
27870
|
+
#
|
27871
|
+
# [1]: https://www.epochconverter.com/
|
27872
|
+
# @return [Time]
|
27873
|
+
#
|
27874
|
+
# @!attribute [rw] created_before
|
27875
|
+
# Filter for before this creation time. The input for this parameter
|
27876
|
+
# is a Unix timestamp. To convert a date and time into a Unix
|
27877
|
+
# timestamp, see [EpochConverter][1].
|
27878
|
+
#
|
27879
|
+
#
|
27880
|
+
#
|
27881
|
+
# [1]: https://www.epochconverter.com/
|
27882
|
+
# @return [Time]
|
27883
|
+
#
|
27884
|
+
# @!attribute [rw] name_contains
|
27885
|
+
# Filter for name containing this string.
|
27886
|
+
# @return [String]
|
27887
|
+
#
|
27888
|
+
# @!attribute [rw] cluster_arn
|
27889
|
+
# Filter for ARN of the cluster.
|
27890
|
+
# @return [String]
|
27891
|
+
#
|
27892
|
+
# @!attribute [rw] status
|
27893
|
+
# Filter for status.
|
27894
|
+
# @return [String]
|
27895
|
+
#
|
27896
|
+
# @!attribute [rw] sort_by
|
27897
|
+
# Filter for sorting the list by a given value. For example, sort by
|
27898
|
+
# name, creation time, or status.
|
27899
|
+
# @return [String]
|
27900
|
+
#
|
27901
|
+
# @!attribute [rw] sort_order
|
27902
|
+
# The order of the list. By default, listed in `Descending` order
|
27903
|
+
# according to by `SortBy`. To change the list order, you can specify
|
27904
|
+
# `SortOrder` to be `Ascending`.
|
27905
|
+
# @return [String]
|
27906
|
+
#
|
27907
|
+
# @!attribute [rw] next_token
|
27908
|
+
# If the previous response was truncated, you will receive this token.
|
27909
|
+
# Use it in your next request to receive the next set of results.
|
27910
|
+
# @return [String]
|
27911
|
+
#
|
27912
|
+
# @!attribute [rw] max_results
|
27913
|
+
# The maximum number of cluster policies to list.
|
27914
|
+
# @return [Integer]
|
27915
|
+
#
|
27916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterSchedulerConfigsRequest AWS API Documentation
|
27917
|
+
#
|
27918
|
+
class ListClusterSchedulerConfigsRequest < Struct.new(
|
27919
|
+
:created_after,
|
27920
|
+
:created_before,
|
27921
|
+
:name_contains,
|
27922
|
+
:cluster_arn,
|
27923
|
+
:status,
|
27924
|
+
:sort_by,
|
27925
|
+
:sort_order,
|
27926
|
+
:next_token,
|
27927
|
+
:max_results)
|
27928
|
+
SENSITIVE = []
|
27929
|
+
include Aws::Structure
|
27930
|
+
end
|
27931
|
+
|
27932
|
+
# @!attribute [rw] cluster_scheduler_config_summaries
|
27933
|
+
# Summaries of the cluster policies.
|
27934
|
+
# @return [Array<Types::ClusterSchedulerConfigSummary>]
|
27935
|
+
#
|
27936
|
+
# @!attribute [rw] next_token
|
27937
|
+
# If the previous response was truncated, you will receive this token.
|
27938
|
+
# Use it in your next request to receive the next set of results.
|
27939
|
+
# @return [String]
|
27940
|
+
#
|
27941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterSchedulerConfigsResponse AWS API Documentation
|
27942
|
+
#
|
27943
|
+
class ListClusterSchedulerConfigsResponse < Struct.new(
|
27944
|
+
:cluster_scheduler_config_summaries,
|
27945
|
+
:next_token)
|
27946
|
+
SENSITIVE = []
|
27947
|
+
include Aws::Structure
|
27948
|
+
end
|
27949
|
+
|
26817
27950
|
# @!attribute [rw] creation_time_after
|
26818
27951
|
# Set a start time for the time range during which you want to list
|
26819
27952
|
# SageMaker HyperPod clusters. Timestamps are formatted according to
|
@@ -26877,6 +28010,13 @@ module Aws::SageMaker
|
|
26877
28010
|
# The sort order for results. The default value is `Ascending`.
|
26878
28011
|
# @return [String]
|
26879
28012
|
#
|
28013
|
+
# @!attribute [rw] training_plan_arn
|
28014
|
+
# The Amazon Resource Name (ARN); of the training plan to filter
|
28015
|
+
# clusters by. For more information about reserving GPU capacity for
|
28016
|
+
# your SageMaker HyperPod clusters using Amazon SageMaker Training
|
28017
|
+
# Plan, see ` CreateTrainingPlan `.
|
28018
|
+
# @return [String]
|
28019
|
+
#
|
26880
28020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClustersRequest AWS API Documentation
|
26881
28021
|
#
|
26882
28022
|
class ListClustersRequest < Struct.new(
|
@@ -26886,7 +28026,8 @@ module Aws::SageMaker
|
|
26886
28026
|
:name_contains,
|
26887
28027
|
:next_token,
|
26888
28028
|
:sort_by,
|
26889
|
-
:sort_order
|
28029
|
+
:sort_order,
|
28030
|
+
:training_plan_arn)
|
26890
28031
|
SENSITIVE = []
|
26891
28032
|
include Aws::Structure
|
26892
28033
|
end
|
@@ -27092,6 +28233,92 @@ module Aws::SageMaker
|
|
27092
28233
|
include Aws::Structure
|
27093
28234
|
end
|
27094
28235
|
|
28236
|
+
# @!attribute [rw] created_after
|
28237
|
+
# Filter for after this creation time. The input for this parameter is
|
28238
|
+
# a Unix timestamp. To convert a date and time into a Unix timestamp,
|
28239
|
+
# see [EpochConverter][1].
|
28240
|
+
#
|
28241
|
+
#
|
28242
|
+
#
|
28243
|
+
# [1]: https://www.epochconverter.com/
|
28244
|
+
# @return [Time]
|
28245
|
+
#
|
28246
|
+
# @!attribute [rw] created_before
|
28247
|
+
# Filter for before this creation time. The input for this parameter
|
28248
|
+
# is a Unix timestamp. To convert a date and time into a Unix
|
28249
|
+
# timestamp, see [EpochConverter][1].
|
28250
|
+
#
|
28251
|
+
#
|
28252
|
+
#
|
28253
|
+
# [1]: https://www.epochconverter.com/
|
28254
|
+
# @return [Time]
|
28255
|
+
#
|
28256
|
+
# @!attribute [rw] name_contains
|
28257
|
+
# Filter for name containing this string.
|
28258
|
+
# @return [String]
|
28259
|
+
#
|
28260
|
+
# @!attribute [rw] status
|
28261
|
+
# Filter for status.
|
28262
|
+
# @return [String]
|
28263
|
+
#
|
28264
|
+
# @!attribute [rw] cluster_arn
|
28265
|
+
# Filter for ARN of the cluster.
|
28266
|
+
# @return [String]
|
28267
|
+
#
|
28268
|
+
# @!attribute [rw] sort_by
|
28269
|
+
# Filter for sorting the list by a given value. For example, sort by
|
28270
|
+
# name, creation time, or status.
|
28271
|
+
# @return [String]
|
28272
|
+
#
|
28273
|
+
# @!attribute [rw] sort_order
|
28274
|
+
# The order of the list. By default, listed in `Descending` order
|
28275
|
+
# according to by `SortBy`. To change the list order, you can specify
|
28276
|
+
# `SortOrder` to be `Ascending`.
|
28277
|
+
# @return [String]
|
28278
|
+
#
|
28279
|
+
# @!attribute [rw] next_token
|
28280
|
+
# If the previous response was truncated, you will receive this token.
|
28281
|
+
# Use it in your next request to receive the next set of results.
|
28282
|
+
# @return [String]
|
28283
|
+
#
|
28284
|
+
# @!attribute [rw] max_results
|
28285
|
+
# The maximum number of compute allocation definitions to list.
|
28286
|
+
# @return [Integer]
|
28287
|
+
#
|
28288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListComputeQuotasRequest AWS API Documentation
|
28289
|
+
#
|
28290
|
+
class ListComputeQuotasRequest < Struct.new(
|
28291
|
+
:created_after,
|
28292
|
+
:created_before,
|
28293
|
+
:name_contains,
|
28294
|
+
:status,
|
28295
|
+
:cluster_arn,
|
28296
|
+
:sort_by,
|
28297
|
+
:sort_order,
|
28298
|
+
:next_token,
|
28299
|
+
:max_results)
|
28300
|
+
SENSITIVE = []
|
28301
|
+
include Aws::Structure
|
28302
|
+
end
|
28303
|
+
|
28304
|
+
# @!attribute [rw] compute_quota_summaries
|
28305
|
+
# Summaries of the compute allocation definitions.
|
28306
|
+
# @return [Array<Types::ComputeQuotaSummary>]
|
28307
|
+
#
|
28308
|
+
# @!attribute [rw] next_token
|
28309
|
+
# If the previous response was truncated, you will receive this token.
|
28310
|
+
# Use it in your next request to receive the next set of results.
|
28311
|
+
# @return [String]
|
28312
|
+
#
|
28313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListComputeQuotasResponse AWS API Documentation
|
28314
|
+
#
|
28315
|
+
class ListComputeQuotasResponse < Struct.new(
|
28316
|
+
:compute_quota_summaries,
|
28317
|
+
:next_token)
|
28318
|
+
SENSITIVE = []
|
28319
|
+
include Aws::Structure
|
28320
|
+
end
|
28321
|
+
|
27095
28322
|
# @!attribute [rw] source_uri
|
27096
28323
|
# A filter that returns only contexts with the specified source URI.
|
27097
28324
|
# @return [String]
|
@@ -30429,6 +31656,49 @@ module Aws::SageMaker
|
|
30429
31656
|
include Aws::Structure
|
30430
31657
|
end
|
30431
31658
|
|
31659
|
+
# @!attribute [rw] max_results
|
31660
|
+
# This parameter defines the maximum number of results that can be
|
31661
|
+
# returned in a single response. The `MaxResults` parameter is an
|
31662
|
+
# upper bound, not a target. If there are more results available than
|
31663
|
+
# the value specified, a `NextToken` is provided in the response. The
|
31664
|
+
# `NextToken` indicates that the user should get the next set of
|
31665
|
+
# results by providing this token as a part of a subsequent call. The
|
31666
|
+
# default value for `MaxResults` is 10.
|
31667
|
+
# @return [Integer]
|
31668
|
+
#
|
31669
|
+
# @!attribute [rw] next_token
|
31670
|
+
# If the previous response was truncated, you will receive this token.
|
31671
|
+
# Use it in your next request to receive the next set of results.
|
31672
|
+
# @return [String]
|
31673
|
+
#
|
31674
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPartnerAppsRequest AWS API Documentation
|
31675
|
+
#
|
31676
|
+
class ListPartnerAppsRequest < Struct.new(
|
31677
|
+
:max_results,
|
31678
|
+
:next_token)
|
31679
|
+
SENSITIVE = []
|
31680
|
+
include Aws::Structure
|
31681
|
+
end
|
31682
|
+
|
31683
|
+
# @!attribute [rw] summaries
|
31684
|
+
# The information related to each of the SageMaker Partner AI Apps in
|
31685
|
+
# an account.
|
31686
|
+
# @return [Array<Types::PartnerAppSummary>]
|
31687
|
+
#
|
31688
|
+
# @!attribute [rw] next_token
|
31689
|
+
# If the previous response was truncated, you will receive this token.
|
31690
|
+
# Use it in your next request to receive the next set of results.
|
31691
|
+
# @return [String]
|
31692
|
+
#
|
31693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPartnerAppsResponse AWS API Documentation
|
31694
|
+
#
|
31695
|
+
class ListPartnerAppsResponse < Struct.new(
|
31696
|
+
:summaries,
|
31697
|
+
:next_token)
|
31698
|
+
SENSITIVE = []
|
31699
|
+
include Aws::Structure
|
31700
|
+
end
|
31701
|
+
|
30432
31702
|
# @!attribute [rw] pipeline_execution_arn
|
30433
31703
|
# The Amazon Resource Name (ARN) of the pipeline execution.
|
30434
31704
|
# @return [String]
|
@@ -31291,6 +32561,13 @@ module Aws::SageMaker
|
|
31291
32561
|
# status.
|
31292
32562
|
# @return [String]
|
31293
32563
|
#
|
32564
|
+
# @!attribute [rw] training_plan_arn_equals
|
32565
|
+
# The Amazon Resource Name (ARN); of the training plan to filter
|
32566
|
+
# training jobs by. For more information about reserving GPU capacity
|
32567
|
+
# for your SageMaker training jobs using Amazon SageMaker Training
|
32568
|
+
# Plan, see ` CreateTrainingPlan `.
|
32569
|
+
# @return [String]
|
32570
|
+
#
|
31294
32571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListTrainingJobsRequest AWS API Documentation
|
31295
32572
|
#
|
31296
32573
|
class ListTrainingJobsRequest < Struct.new(
|
@@ -31304,7 +32581,8 @@ module Aws::SageMaker
|
|
31304
32581
|
:status_equals,
|
31305
32582
|
:sort_by,
|
31306
32583
|
:sort_order,
|
31307
|
-
:warm_pool_status_equals
|
32584
|
+
:warm_pool_status_equals,
|
32585
|
+
:training_plan_arn_equals)
|
31308
32586
|
SENSITIVE = []
|
31309
32587
|
include Aws::Structure
|
31310
32588
|
end
|
@@ -31329,6 +32607,68 @@ module Aws::SageMaker
|
|
31329
32607
|
include Aws::Structure
|
31330
32608
|
end
|
31331
32609
|
|
32610
|
+
# @!attribute [rw] next_token
|
32611
|
+
# A token to continue pagination if more results are available.
|
32612
|
+
# @return [String]
|
32613
|
+
#
|
32614
|
+
# @!attribute [rw] max_results
|
32615
|
+
# The maximum number of results to return in the response.
|
32616
|
+
# @return [Integer]
|
32617
|
+
#
|
32618
|
+
# @!attribute [rw] start_time_after
|
32619
|
+
# Filter to list only training plans with an actual start time after
|
32620
|
+
# this date.
|
32621
|
+
# @return [Time]
|
32622
|
+
#
|
32623
|
+
# @!attribute [rw] start_time_before
|
32624
|
+
# Filter to list only training plans with an actual start time before
|
32625
|
+
# this date.
|
32626
|
+
# @return [Time]
|
32627
|
+
#
|
32628
|
+
# @!attribute [rw] sort_by
|
32629
|
+
# The training plan field to sort the results by (e.g., StartTime,
|
32630
|
+
# Status).
|
32631
|
+
# @return [String]
|
32632
|
+
#
|
32633
|
+
# @!attribute [rw] sort_order
|
32634
|
+
# The order to sort the results (Ascending or Descending).
|
32635
|
+
# @return [String]
|
32636
|
+
#
|
32637
|
+
# @!attribute [rw] filters
|
32638
|
+
# Additional filters to apply to the list of training plans.
|
32639
|
+
# @return [Array<Types::TrainingPlanFilter>]
|
32640
|
+
#
|
32641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListTrainingPlansRequest AWS API Documentation
|
32642
|
+
#
|
32643
|
+
class ListTrainingPlansRequest < Struct.new(
|
32644
|
+
:next_token,
|
32645
|
+
:max_results,
|
32646
|
+
:start_time_after,
|
32647
|
+
:start_time_before,
|
32648
|
+
:sort_by,
|
32649
|
+
:sort_order,
|
32650
|
+
:filters)
|
32651
|
+
SENSITIVE = []
|
32652
|
+
include Aws::Structure
|
32653
|
+
end
|
32654
|
+
|
32655
|
+
# @!attribute [rw] next_token
|
32656
|
+
# A token to continue pagination if more results are available.
|
32657
|
+
# @return [String]
|
32658
|
+
#
|
32659
|
+
# @!attribute [rw] training_plan_summaries
|
32660
|
+
# A list of summary information for the training plans.
|
32661
|
+
# @return [Array<Types::TrainingPlanSummary>]
|
32662
|
+
#
|
32663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListTrainingPlansResponse AWS API Documentation
|
32664
|
+
#
|
32665
|
+
class ListTrainingPlansResponse < Struct.new(
|
32666
|
+
:next_token,
|
32667
|
+
:training_plan_summaries)
|
32668
|
+
SENSITIVE = []
|
32669
|
+
include Aws::Structure
|
32670
|
+
end
|
32671
|
+
|
31332
32672
|
# @!attribute [rw] creation_time_after
|
31333
32673
|
# A filter that returns only transform jobs created after the
|
31334
32674
|
# specified time.
|
@@ -36183,6 +37523,82 @@ module Aws::SageMaker
|
|
36183
37523
|
include Aws::Structure
|
36184
37524
|
end
|
36185
37525
|
|
37526
|
+
# Configuration settings for the SageMaker Partner AI App.
|
37527
|
+
#
|
37528
|
+
# @!attribute [rw] admin_users
|
37529
|
+
# The list of users that are given admin access to the SageMaker
|
37530
|
+
# Partner AI App.
|
37531
|
+
# @return [Array<String>]
|
37532
|
+
#
|
37533
|
+
# @!attribute [rw] arguments
|
37534
|
+
# This is a map of required inputs for a SageMaker Partner AI App.
|
37535
|
+
# Based on the application type, the map is populated with a key and
|
37536
|
+
# value pair that is specific to the user and application.
|
37537
|
+
# @return [Hash<String,String>]
|
37538
|
+
#
|
37539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PartnerAppConfig AWS API Documentation
|
37540
|
+
#
|
37541
|
+
class PartnerAppConfig < Struct.new(
|
37542
|
+
:admin_users,
|
37543
|
+
:arguments)
|
37544
|
+
SENSITIVE = []
|
37545
|
+
include Aws::Structure
|
37546
|
+
end
|
37547
|
+
|
37548
|
+
# Maintenance configuration settings for the SageMaker Partner AI App.
|
37549
|
+
#
|
37550
|
+
# @!attribute [rw] maintenance_window_start
|
37551
|
+
# The day and time of the week in Coordinated Universal Time (UTC)
|
37552
|
+
# 24-hour standard time that weekly maintenance updates are scheduled.
|
37553
|
+
# This value must take the following format:
|
37554
|
+
# `3-letter-day:24-h-hour:minute`. For example: `TUE:03:30`.
|
37555
|
+
# @return [String]
|
37556
|
+
#
|
37557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PartnerAppMaintenanceConfig AWS API Documentation
|
37558
|
+
#
|
37559
|
+
class PartnerAppMaintenanceConfig < Struct.new(
|
37560
|
+
:maintenance_window_start)
|
37561
|
+
SENSITIVE = []
|
37562
|
+
include Aws::Structure
|
37563
|
+
end
|
37564
|
+
|
37565
|
+
# A subset of information related to a SageMaker Partner AI App. This
|
37566
|
+
# information is used as part of the `ListPartnerApps` API response.
|
37567
|
+
#
|
37568
|
+
# @!attribute [rw] arn
|
37569
|
+
# The ARN of the SageMaker Partner AI App.
|
37570
|
+
# @return [String]
|
37571
|
+
#
|
37572
|
+
# @!attribute [rw] name
|
37573
|
+
# The name of the SageMaker Partner AI App.
|
37574
|
+
# @return [String]
|
37575
|
+
#
|
37576
|
+
# @!attribute [rw] type
|
37577
|
+
# The type of SageMaker Partner AI App to create. Must be one of the
|
37578
|
+
# following: `lakera-guard`, `comet`, `deepchecks-llm-evaluation`, or
|
37579
|
+
# `fiddler`.
|
37580
|
+
# @return [String]
|
37581
|
+
#
|
37582
|
+
# @!attribute [rw] status
|
37583
|
+
# The status of the SageMaker Partner AI App.
|
37584
|
+
# @return [String]
|
37585
|
+
#
|
37586
|
+
# @!attribute [rw] creation_time
|
37587
|
+
# The creation time of the SageMaker Partner AI App.
|
37588
|
+
# @return [Time]
|
37589
|
+
#
|
37590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PartnerAppSummary AWS API Documentation
|
37591
|
+
#
|
37592
|
+
class PartnerAppSummary < Struct.new(
|
37593
|
+
:arn,
|
37594
|
+
:name,
|
37595
|
+
:type,
|
37596
|
+
:status,
|
37597
|
+
:creation_time)
|
37598
|
+
SENSITIVE = []
|
37599
|
+
include Aws::Structure
|
37600
|
+
end
|
37601
|
+
|
36186
37602
|
# The summary of an in-progress deployment when an endpoint is creating
|
36187
37603
|
# or updating with a new endpoint configuration.
|
36188
37604
|
#
|
@@ -36881,6 +38297,30 @@ module Aws::SageMaker
|
|
36881
38297
|
include Aws::Structure
|
36882
38298
|
end
|
36883
38299
|
|
38300
|
+
# Priority class configuration. When included in `PriorityClasses`,
|
38301
|
+
# these class configurations define how tasks are queued.
|
38302
|
+
#
|
38303
|
+
# @!attribute [rw] name
|
38304
|
+
# Name of the priority class.
|
38305
|
+
# @return [String]
|
38306
|
+
#
|
38307
|
+
# @!attribute [rw] weight
|
38308
|
+
# Weight of the priority class. The value is within a range from 0 to
|
38309
|
+
# 100, where 0 is the default.
|
38310
|
+
#
|
38311
|
+
# A weight of 0 is the lowest priority and 100 is the highest. Weight
|
38312
|
+
# 0 is the default.
|
38313
|
+
# @return [Integer]
|
38314
|
+
#
|
38315
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PriorityClass AWS API Documentation
|
38316
|
+
#
|
38317
|
+
class PriorityClass < Struct.new(
|
38318
|
+
:name,
|
38319
|
+
:weight)
|
38320
|
+
SENSITIVE = []
|
38321
|
+
include Aws::Structure
|
38322
|
+
end
|
38323
|
+
|
36884
38324
|
# Configuration for the cluster used to run a processing job.
|
36885
38325
|
#
|
36886
38326
|
# @!attribute [rw] instance_count
|
@@ -39542,6 +40982,117 @@ module Aws::SageMaker
|
|
39542
40982
|
include Aws::Structure
|
39543
40983
|
end
|
39544
40984
|
|
40985
|
+
# Details about a reserved capacity offering for a training plan
|
40986
|
+
# offering.
|
40987
|
+
#
|
40988
|
+
# For more information about how to reserve GPU capacity for your
|
40989
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see
|
40990
|
+
# ` CreateTrainingPlan `.
|
40991
|
+
#
|
40992
|
+
# @!attribute [rw] instance_type
|
40993
|
+
# The instance type for the reserved capacity offering.
|
40994
|
+
# @return [String]
|
40995
|
+
#
|
40996
|
+
# @!attribute [rw] instance_count
|
40997
|
+
# The number of instances in the reserved capacity offering.
|
40998
|
+
# @return [Integer]
|
40999
|
+
#
|
41000
|
+
# @!attribute [rw] availability_zone
|
41001
|
+
# The availability zone for the reserved capacity offering.
|
41002
|
+
# @return [String]
|
41003
|
+
#
|
41004
|
+
# @!attribute [rw] duration_hours
|
41005
|
+
# The number of whole hours in the total duration for this reserved
|
41006
|
+
# capacity offering.
|
41007
|
+
# @return [Integer]
|
41008
|
+
#
|
41009
|
+
# @!attribute [rw] duration_minutes
|
41010
|
+
# The additional minutes beyond whole hours in the total duration for
|
41011
|
+
# this reserved capacity offering.
|
41012
|
+
# @return [Integer]
|
41013
|
+
#
|
41014
|
+
# @!attribute [rw] start_time
|
41015
|
+
# The start time of the reserved capacity offering.
|
41016
|
+
# @return [Time]
|
41017
|
+
#
|
41018
|
+
# @!attribute [rw] end_time
|
41019
|
+
# The end time of the reserved capacity offering.
|
41020
|
+
# @return [Time]
|
41021
|
+
#
|
41022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ReservedCapacityOffering AWS API Documentation
|
41023
|
+
#
|
41024
|
+
class ReservedCapacityOffering < Struct.new(
|
41025
|
+
:instance_type,
|
41026
|
+
:instance_count,
|
41027
|
+
:availability_zone,
|
41028
|
+
:duration_hours,
|
41029
|
+
:duration_minutes,
|
41030
|
+
:start_time,
|
41031
|
+
:end_time)
|
41032
|
+
SENSITIVE = []
|
41033
|
+
include Aws::Structure
|
41034
|
+
end
|
41035
|
+
|
41036
|
+
# Details of a reserved capacity for the training plan.
|
41037
|
+
#
|
41038
|
+
# For more information about how to reserve GPU capacity for your
|
41039
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see
|
41040
|
+
# ` CreateTrainingPlan `.
|
41041
|
+
#
|
41042
|
+
# @!attribute [rw] reserved_capacity_arn
|
41043
|
+
# The Amazon Resource Name (ARN); of the reserved capacity.
|
41044
|
+
# @return [String]
|
41045
|
+
#
|
41046
|
+
# @!attribute [rw] instance_type
|
41047
|
+
# The instance type for the reserved capacity.
|
41048
|
+
# @return [String]
|
41049
|
+
#
|
41050
|
+
# @!attribute [rw] total_instance_count
|
41051
|
+
# The total number of instances in the reserved capacity.
|
41052
|
+
# @return [Integer]
|
41053
|
+
#
|
41054
|
+
# @!attribute [rw] status
|
41055
|
+
# The current status of the reserved capacity.
|
41056
|
+
# @return [String]
|
41057
|
+
#
|
41058
|
+
# @!attribute [rw] availability_zone
|
41059
|
+
# The availability zone for the reserved capacity.
|
41060
|
+
# @return [String]
|
41061
|
+
#
|
41062
|
+
# @!attribute [rw] duration_hours
|
41063
|
+
# The number of whole hours in the total duration for this reserved
|
41064
|
+
# capacity.
|
41065
|
+
# @return [Integer]
|
41066
|
+
#
|
41067
|
+
# @!attribute [rw] duration_minutes
|
41068
|
+
# The additional minutes beyond whole hours in the total duration for
|
41069
|
+
# this reserved capacity.
|
41070
|
+
# @return [Integer]
|
41071
|
+
#
|
41072
|
+
# @!attribute [rw] start_time
|
41073
|
+
# The start time of the reserved capacity.
|
41074
|
+
# @return [Time]
|
41075
|
+
#
|
41076
|
+
# @!attribute [rw] end_time
|
41077
|
+
# The end time of the reserved capacity.
|
41078
|
+
# @return [Time]
|
41079
|
+
#
|
41080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ReservedCapacitySummary AWS API Documentation
|
41081
|
+
#
|
41082
|
+
class ReservedCapacitySummary < Struct.new(
|
41083
|
+
:reserved_capacity_arn,
|
41084
|
+
:instance_type,
|
41085
|
+
:total_instance_count,
|
41086
|
+
:status,
|
41087
|
+
:availability_zone,
|
41088
|
+
:duration_hours,
|
41089
|
+
:duration_minutes,
|
41090
|
+
:start_time,
|
41091
|
+
:end_time)
|
41092
|
+
SENSITIVE = []
|
41093
|
+
include Aws::Structure
|
41094
|
+
end
|
41095
|
+
|
39545
41096
|
# The resolved attributes.
|
39546
41097
|
#
|
39547
41098
|
# @!attribute [rw] auto_ml_job_objective
|
@@ -39723,6 +41274,11 @@ module Aws::SageMaker
|
|
39723
41274
|
# The configuration of a heterogeneous cluster in JSON format.
|
39724
41275
|
# @return [Array<Types::InstanceGroup>]
|
39725
41276
|
#
|
41277
|
+
# @!attribute [rw] training_plan_arn
|
41278
|
+
# The Amazon Resource Name (ARN); of the training plan to use for this
|
41279
|
+
# resource configuration.
|
41280
|
+
# @return [String]
|
41281
|
+
#
|
39726
41282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceConfig AWS API Documentation
|
39727
41283
|
#
|
39728
41284
|
class ResourceConfig < Struct.new(
|
@@ -39731,7 +41287,8 @@ module Aws::SageMaker
|
|
39731
41287
|
:volume_size_in_gb,
|
39732
41288
|
:volume_kms_key_id,
|
39733
41289
|
:keep_alive_period_in_seconds,
|
39734
|
-
:instance_groups
|
41290
|
+
:instance_groups,
|
41291
|
+
:training_plan_arn)
|
39735
41292
|
SENSITIVE = []
|
39736
41293
|
include Aws::Structure
|
39737
41294
|
end
|
@@ -39820,6 +41377,39 @@ module Aws::SageMaker
|
|
39820
41377
|
include Aws::Structure
|
39821
41378
|
end
|
39822
41379
|
|
41380
|
+
# Resource sharing configuration.
|
41381
|
+
#
|
41382
|
+
# @!attribute [rw] strategy
|
41383
|
+
# The strategy of how idle compute is shared within the cluster. The
|
41384
|
+
# following are the options of strategies.
|
41385
|
+
#
|
41386
|
+
# * `DontLend`: entities do not lend idle compute.
|
41387
|
+
#
|
41388
|
+
# * `Lend`: entities can lend idle compute to entities that can
|
41389
|
+
# borrow.
|
41390
|
+
#
|
41391
|
+
# * `LendandBorrow`: entities can lend idle compute and borrow idle
|
41392
|
+
# compute from other entities.
|
41393
|
+
#
|
41394
|
+
# Default is `LendandBorrow`.
|
41395
|
+
# @return [String]
|
41396
|
+
#
|
41397
|
+
# @!attribute [rw] borrow_limit
|
41398
|
+
# The limit on how much idle compute can be borrowed.The values can be
|
41399
|
+
# 1 - 500 percent of idle compute that the team is allowed to borrow.
|
41400
|
+
#
|
41401
|
+
# Default is `50`.
|
41402
|
+
# @return [Integer]
|
41403
|
+
#
|
41404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceSharingConfig AWS API Documentation
|
41405
|
+
#
|
41406
|
+
class ResourceSharingConfig < Struct.new(
|
41407
|
+
:strategy,
|
41408
|
+
:borrow_limit)
|
41409
|
+
SENSITIVE = []
|
41410
|
+
include Aws::Structure
|
41411
|
+
end
|
41412
|
+
|
39823
41413
|
# Specifies the ARN's of a SageMaker image and SageMaker image version,
|
39824
41414
|
# and the instance type that the version runs on.
|
39825
41415
|
#
|
@@ -40440,6 +42030,35 @@ module Aws::SageMaker
|
|
40440
42030
|
include Aws::Structure
|
40441
42031
|
end
|
40442
42032
|
|
42033
|
+
# Cluster policy configuration. This policy is used for task
|
42034
|
+
# prioritization and fair-share allocation. This helps prioritize
|
42035
|
+
# critical workloads and distributes idle compute across entities.
|
42036
|
+
#
|
42037
|
+
# @!attribute [rw] priority_classes
|
42038
|
+
# List of the priority classes, `PriorityClass`, of the cluster
|
42039
|
+
# policy. When specified, these class configurations define how tasks
|
42040
|
+
# are queued.
|
42041
|
+
# @return [Array<Types::PriorityClass>]
|
42042
|
+
#
|
42043
|
+
# @!attribute [rw] fair_share
|
42044
|
+
# When enabled, entities borrow idle compute based on their assigned
|
42045
|
+
# `FairShareWeight`.
|
42046
|
+
#
|
42047
|
+
# When disabled, entities borrow idle compute based on a first-come
|
42048
|
+
# first-serve basis.
|
42049
|
+
#
|
42050
|
+
# Default is `Enabled`.
|
42051
|
+
# @return [String]
|
42052
|
+
#
|
42053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SchedulerConfig AWS API Documentation
|
42054
|
+
#
|
42055
|
+
class SchedulerConfig < Struct.new(
|
42056
|
+
:priority_classes,
|
42057
|
+
:fair_share)
|
42058
|
+
SENSITIVE = []
|
42059
|
+
include Aws::Structure
|
42060
|
+
end
|
42061
|
+
|
40443
42062
|
# A multi-expression that searches for the specified resource or
|
40444
42063
|
# resources in a search. All resource objects that satisfy the
|
40445
42064
|
# expression's condition are included in the search results. You must
|
@@ -40673,6 +42292,76 @@ module Aws::SageMaker
|
|
40673
42292
|
include Aws::Structure
|
40674
42293
|
end
|
40675
42294
|
|
42295
|
+
# @!attribute [rw] instance_type
|
42296
|
+
# The type of instance you want to search for in the available
|
42297
|
+
# training plan offerings. This field allows you to filter the search
|
42298
|
+
# results based on the specific compute resources you require for your
|
42299
|
+
# SageMaker training jobs or SageMaker HyperPod clusters. When
|
42300
|
+
# searching for training plan offerings, specifying the instance type
|
42301
|
+
# helps you find Reserved Instances that match your computational
|
42302
|
+
# needs.
|
42303
|
+
# @return [String]
|
42304
|
+
#
|
42305
|
+
# @!attribute [rw] instance_count
|
42306
|
+
# The number of instances you want to reserve in the training plan
|
42307
|
+
# offerings. This allows you to specify the quantity of compute
|
42308
|
+
# resources needed for your SageMaker training jobs or SageMaker
|
42309
|
+
# HyperPod clusters, helping you find reserved capacity offerings that
|
42310
|
+
# match your requirements.
|
42311
|
+
# @return [Integer]
|
42312
|
+
#
|
42313
|
+
# @!attribute [rw] start_time_after
|
42314
|
+
# A filter to search for training plan offerings with a start time
|
42315
|
+
# after a specified date.
|
42316
|
+
# @return [Time]
|
42317
|
+
#
|
42318
|
+
# @!attribute [rw] end_time_before
|
42319
|
+
# A filter to search for reserved capacity offerings with an end time
|
42320
|
+
# before a specified date.
|
42321
|
+
# @return [Time]
|
42322
|
+
#
|
42323
|
+
# @!attribute [rw] duration_hours
|
42324
|
+
# The desired duration in hours for the training plan offerings.
|
42325
|
+
# @return [Integer]
|
42326
|
+
#
|
42327
|
+
# @!attribute [rw] target_resources
|
42328
|
+
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
42329
|
+
# HyperPod) to search for in the offerings.
|
42330
|
+
#
|
42331
|
+
# Training plans are specific to their target resource.
|
42332
|
+
#
|
42333
|
+
# * A training plan designed for SageMaker training jobs can only be
|
42334
|
+
# used to schedule and run training jobs.
|
42335
|
+
#
|
42336
|
+
# * A training plan for HyperPod clusters can be used exclusively to
|
42337
|
+
# provide compute resources to a cluster's instance group.
|
42338
|
+
# @return [Array<String>]
|
42339
|
+
#
|
42340
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchTrainingPlanOfferingsRequest AWS API Documentation
|
42341
|
+
#
|
42342
|
+
class SearchTrainingPlanOfferingsRequest < Struct.new(
|
42343
|
+
:instance_type,
|
42344
|
+
:instance_count,
|
42345
|
+
:start_time_after,
|
42346
|
+
:end_time_before,
|
42347
|
+
:duration_hours,
|
42348
|
+
:target_resources)
|
42349
|
+
SENSITIVE = []
|
42350
|
+
include Aws::Structure
|
42351
|
+
end
|
42352
|
+
|
42353
|
+
# @!attribute [rw] training_plan_offerings
|
42354
|
+
# A list of training plan offerings that match the search criteria.
|
42355
|
+
# @return [Array<Types::TrainingPlanOffering>]
|
42356
|
+
#
|
42357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchTrainingPlanOfferingsResponse AWS API Documentation
|
42358
|
+
#
|
42359
|
+
class SearchTrainingPlanOfferingsResponse < Struct.new(
|
42360
|
+
:training_plan_offerings)
|
42361
|
+
SENSITIVE = []
|
42362
|
+
include Aws::Structure
|
42363
|
+
end
|
42364
|
+
|
40676
42365
|
# An array element of `SecondaryStatusTransitions` for
|
40677
42366
|
# [DescribeTrainingJob][1]. It provides additional details about a
|
40678
42367
|
# status that the training job has transitioned through. A training job
|
@@ -43651,6 +45340,15 @@ module Aws::SageMaker
|
|
43651
45340
|
# The status of the warm pool associated with the training job.
|
43652
45341
|
# @return [Types::WarmPoolStatus]
|
43653
45342
|
#
|
45343
|
+
# @!attribute [rw] training_plan_arn
|
45344
|
+
# The Amazon Resource Name (ARN); of the training plan associated with
|
45345
|
+
# this training job.
|
45346
|
+
#
|
45347
|
+
# For more information about how to reserve GPU capacity for your
|
45348
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan,
|
45349
|
+
# see ` CreateTrainingPlan `.
|
45350
|
+
# @return [String]
|
45351
|
+
#
|
43654
45352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingJobSummary AWS API Documentation
|
43655
45353
|
#
|
43656
45354
|
class TrainingJobSummary < Struct.new(
|
@@ -43661,7 +45359,209 @@ module Aws::SageMaker
|
|
43661
45359
|
:last_modified_time,
|
43662
45360
|
:training_job_status,
|
43663
45361
|
:secondary_status,
|
43664
|
-
:warm_pool_status
|
45362
|
+
:warm_pool_status,
|
45363
|
+
:training_plan_arn)
|
45364
|
+
SENSITIVE = []
|
45365
|
+
include Aws::Structure
|
45366
|
+
end
|
45367
|
+
|
45368
|
+
# A filter to apply when listing or searching for training plans.
|
45369
|
+
#
|
45370
|
+
# For more information about how to reserve GPU capacity for your
|
45371
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see
|
45372
|
+
# ` CreateTrainingPlan `.
|
45373
|
+
#
|
45374
|
+
# @!attribute [rw] name
|
45375
|
+
# The name of the filter field (e.g., Status, InstanceType).
|
45376
|
+
# @return [String]
|
45377
|
+
#
|
45378
|
+
# @!attribute [rw] value
|
45379
|
+
# The value to filter by for the specified field.
|
45380
|
+
# @return [String]
|
45381
|
+
#
|
45382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingPlanFilter AWS API Documentation
|
45383
|
+
#
|
45384
|
+
class TrainingPlanFilter < Struct.new(
|
45385
|
+
:name,
|
45386
|
+
:value)
|
45387
|
+
SENSITIVE = []
|
45388
|
+
include Aws::Structure
|
45389
|
+
end
|
45390
|
+
|
45391
|
+
# Details about a training plan offering.
|
45392
|
+
#
|
45393
|
+
# For more information about how to reserve GPU capacity for your
|
45394
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see
|
45395
|
+
# ` CreateTrainingPlan `.
|
45396
|
+
#
|
45397
|
+
# @!attribute [rw] training_plan_offering_id
|
45398
|
+
# The unique identifier for this training plan offering.
|
45399
|
+
# @return [String]
|
45400
|
+
#
|
45401
|
+
# @!attribute [rw] target_resources
|
45402
|
+
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
45403
|
+
# HyperPod) for this training plan offering.
|
45404
|
+
#
|
45405
|
+
# Training plans are specific to their target resource.
|
45406
|
+
#
|
45407
|
+
# * A training plan designed for SageMaker training jobs can only be
|
45408
|
+
# used to schedule and run training jobs.
|
45409
|
+
#
|
45410
|
+
# * A training plan for HyperPod clusters can be used exclusively to
|
45411
|
+
# provide compute resources to a cluster's instance group.
|
45412
|
+
# @return [Array<String>]
|
45413
|
+
#
|
45414
|
+
# @!attribute [rw] requested_start_time_after
|
45415
|
+
# The requested start time that the user specified when searching for
|
45416
|
+
# the training plan offering.
|
45417
|
+
# @return [Time]
|
45418
|
+
#
|
45419
|
+
# @!attribute [rw] requested_end_time_before
|
45420
|
+
# The requested end time that the user specified when searching for
|
45421
|
+
# the training plan offering.
|
45422
|
+
# @return [Time]
|
45423
|
+
#
|
45424
|
+
# @!attribute [rw] duration_hours
|
45425
|
+
# The number of whole hours in the total duration for this training
|
45426
|
+
# plan offering.
|
45427
|
+
# @return [Integer]
|
45428
|
+
#
|
45429
|
+
# @!attribute [rw] duration_minutes
|
45430
|
+
# The additional minutes beyond whole hours in the total duration for
|
45431
|
+
# this training plan offering.
|
45432
|
+
# @return [Integer]
|
45433
|
+
#
|
45434
|
+
# @!attribute [rw] upfront_fee
|
45435
|
+
# The upfront fee for this training plan offering.
|
45436
|
+
# @return [String]
|
45437
|
+
#
|
45438
|
+
# @!attribute [rw] currency_code
|
45439
|
+
# The currency code for the upfront fee (e.g., USD).
|
45440
|
+
# @return [String]
|
45441
|
+
#
|
45442
|
+
# @!attribute [rw] reserved_capacity_offerings
|
45443
|
+
# A list of reserved capacity offerings associated with this training
|
45444
|
+
# plan offering.
|
45445
|
+
# @return [Array<Types::ReservedCapacityOffering>]
|
45446
|
+
#
|
45447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingPlanOffering AWS API Documentation
|
45448
|
+
#
|
45449
|
+
class TrainingPlanOffering < Struct.new(
|
45450
|
+
:training_plan_offering_id,
|
45451
|
+
:target_resources,
|
45452
|
+
:requested_start_time_after,
|
45453
|
+
:requested_end_time_before,
|
45454
|
+
:duration_hours,
|
45455
|
+
:duration_minutes,
|
45456
|
+
:upfront_fee,
|
45457
|
+
:currency_code,
|
45458
|
+
:reserved_capacity_offerings)
|
45459
|
+
SENSITIVE = []
|
45460
|
+
include Aws::Structure
|
45461
|
+
end
|
45462
|
+
|
45463
|
+
# Details of the training plan.
|
45464
|
+
#
|
45465
|
+
# For more information about how to reserve GPU capacity for your
|
45466
|
+
# SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see
|
45467
|
+
# ` CreateTrainingPlan `.
|
45468
|
+
#
|
45469
|
+
# @!attribute [rw] training_plan_arn
|
45470
|
+
# The Amazon Resource Name (ARN); of the training plan.
|
45471
|
+
# @return [String]
|
45472
|
+
#
|
45473
|
+
# @!attribute [rw] training_plan_name
|
45474
|
+
# The name of the training plan.
|
45475
|
+
# @return [String]
|
45476
|
+
#
|
45477
|
+
# @!attribute [rw] status
|
45478
|
+
# The current status of the training plan (e.g., Pending, Active,
|
45479
|
+
# Expired). To see the complete list of status values available for a
|
45480
|
+
# training plan, refer to the `Status` attribute within the `
|
45481
|
+
# TrainingPlanSummary ` object.
|
45482
|
+
# @return [String]
|
45483
|
+
#
|
45484
|
+
# @!attribute [rw] status_message
|
45485
|
+
# A message providing additional information about the current status
|
45486
|
+
# of the training plan.
|
45487
|
+
# @return [String]
|
45488
|
+
#
|
45489
|
+
# @!attribute [rw] duration_hours
|
45490
|
+
# The number of whole hours in the total duration for this training
|
45491
|
+
# plan.
|
45492
|
+
# @return [Integer]
|
45493
|
+
#
|
45494
|
+
# @!attribute [rw] duration_minutes
|
45495
|
+
# The additional minutes beyond whole hours in the total duration for
|
45496
|
+
# this training plan.
|
45497
|
+
# @return [Integer]
|
45498
|
+
#
|
45499
|
+
# @!attribute [rw] start_time
|
45500
|
+
# The start time of the training plan.
|
45501
|
+
# @return [Time]
|
45502
|
+
#
|
45503
|
+
# @!attribute [rw] end_time
|
45504
|
+
# The end time of the training plan.
|
45505
|
+
# @return [Time]
|
45506
|
+
#
|
45507
|
+
# @!attribute [rw] upfront_fee
|
45508
|
+
# The upfront fee for the training plan.
|
45509
|
+
# @return [String]
|
45510
|
+
#
|
45511
|
+
# @!attribute [rw] currency_code
|
45512
|
+
# The currency code for the upfront fee (e.g., USD).
|
45513
|
+
# @return [String]
|
45514
|
+
#
|
45515
|
+
# @!attribute [rw] total_instance_count
|
45516
|
+
# The total number of instances reserved in this training plan.
|
45517
|
+
# @return [Integer]
|
45518
|
+
#
|
45519
|
+
# @!attribute [rw] available_instance_count
|
45520
|
+
# The number of instances currently available for use in this training
|
45521
|
+
# plan.
|
45522
|
+
# @return [Integer]
|
45523
|
+
#
|
45524
|
+
# @!attribute [rw] in_use_instance_count
|
45525
|
+
# The number of instances currently in use from this training plan.
|
45526
|
+
# @return [Integer]
|
45527
|
+
#
|
45528
|
+
# @!attribute [rw] target_resources
|
45529
|
+
# The target resources (e.g., training jobs, HyperPod clusters) that
|
45530
|
+
# can use this training plan.
|
45531
|
+
#
|
45532
|
+
# Training plans are specific to their target resource.
|
45533
|
+
#
|
45534
|
+
# * A training plan designed for SageMaker training jobs can only be
|
45535
|
+
# used to schedule and run training jobs.
|
45536
|
+
#
|
45537
|
+
# * A training plan for HyperPod clusters can be used exclusively to
|
45538
|
+
# provide compute resources to a cluster's instance group.
|
45539
|
+
# @return [Array<String>]
|
45540
|
+
#
|
45541
|
+
# @!attribute [rw] reserved_capacity_summaries
|
45542
|
+
# A list of reserved capacities associated with this training plan,
|
45543
|
+
# including details such as instance types, counts, and availability
|
45544
|
+
# zones.
|
45545
|
+
# @return [Array<Types::ReservedCapacitySummary>]
|
45546
|
+
#
|
45547
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingPlanSummary AWS API Documentation
|
45548
|
+
#
|
45549
|
+
class TrainingPlanSummary < Struct.new(
|
45550
|
+
:training_plan_arn,
|
45551
|
+
:training_plan_name,
|
45552
|
+
:status,
|
45553
|
+
:status_message,
|
45554
|
+
:duration_hours,
|
45555
|
+
:duration_minutes,
|
45556
|
+
:start_time,
|
45557
|
+
:end_time,
|
45558
|
+
:upfront_fee,
|
45559
|
+
:currency_code,
|
45560
|
+
:total_instance_count,
|
45561
|
+
:available_instance_count,
|
45562
|
+
:in_use_instance_count,
|
45563
|
+
:target_resources,
|
45564
|
+
:reserved_capacity_summaries)
|
43665
45565
|
SENSITIVE = []
|
43666
45566
|
include Aws::Structure
|
43667
45567
|
end
|
@@ -45316,6 +47216,50 @@ module Aws::SageMaker
|
|
45316
47216
|
include Aws::Structure
|
45317
47217
|
end
|
45318
47218
|
|
47219
|
+
# @!attribute [rw] cluster_scheduler_config_id
|
47220
|
+
# ID of the cluster policy.
|
47221
|
+
# @return [String]
|
47222
|
+
#
|
47223
|
+
# @!attribute [rw] target_version
|
47224
|
+
# Target version.
|
47225
|
+
# @return [Integer]
|
47226
|
+
#
|
47227
|
+
# @!attribute [rw] scheduler_config
|
47228
|
+
# Cluster policy configuration.
|
47229
|
+
# @return [Types::SchedulerConfig]
|
47230
|
+
#
|
47231
|
+
# @!attribute [rw] description
|
47232
|
+
# Description of the cluster policy.
|
47233
|
+
# @return [String]
|
47234
|
+
#
|
47235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSchedulerConfigRequest AWS API Documentation
|
47236
|
+
#
|
47237
|
+
class UpdateClusterSchedulerConfigRequest < Struct.new(
|
47238
|
+
:cluster_scheduler_config_id,
|
47239
|
+
:target_version,
|
47240
|
+
:scheduler_config,
|
47241
|
+
:description)
|
47242
|
+
SENSITIVE = []
|
47243
|
+
include Aws::Structure
|
47244
|
+
end
|
47245
|
+
|
47246
|
+
# @!attribute [rw] cluster_scheduler_config_arn
|
47247
|
+
# ARN of the cluster policy.
|
47248
|
+
# @return [String]
|
47249
|
+
#
|
47250
|
+
# @!attribute [rw] cluster_scheduler_config_version
|
47251
|
+
# Version of the cluster policy.
|
47252
|
+
# @return [Integer]
|
47253
|
+
#
|
47254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSchedulerConfigResponse AWS API Documentation
|
47255
|
+
#
|
47256
|
+
class UpdateClusterSchedulerConfigResponse < Struct.new(
|
47257
|
+
:cluster_scheduler_config_arn,
|
47258
|
+
:cluster_scheduler_config_version)
|
47259
|
+
SENSITIVE = []
|
47260
|
+
include Aws::Structure
|
47261
|
+
end
|
47262
|
+
|
45319
47263
|
# @!attribute [rw] cluster_name
|
45320
47264
|
# Specify the name or the Amazon Resource Name (ARN) of the SageMaker
|
45321
47265
|
# HyperPod cluster you want to update for security patching.
|
@@ -45377,6 +47321,65 @@ module Aws::SageMaker
|
|
45377
47321
|
include Aws::Structure
|
45378
47322
|
end
|
45379
47323
|
|
47324
|
+
# @!attribute [rw] compute_quota_id
|
47325
|
+
# ID of the compute allocation definition.
|
47326
|
+
# @return [String]
|
47327
|
+
#
|
47328
|
+
# @!attribute [rw] target_version
|
47329
|
+
# Target version.
|
47330
|
+
# @return [Integer]
|
47331
|
+
#
|
47332
|
+
# @!attribute [rw] compute_quota_config
|
47333
|
+
# Configuration of the compute allocation definition. This includes
|
47334
|
+
# the resource sharing option, and the setting to preempt low priority
|
47335
|
+
# tasks.
|
47336
|
+
# @return [Types::ComputeQuotaConfig]
|
47337
|
+
#
|
47338
|
+
# @!attribute [rw] compute_quota_target
|
47339
|
+
# The target entity to allocate compute resources to.
|
47340
|
+
# @return [Types::ComputeQuotaTarget]
|
47341
|
+
#
|
47342
|
+
# @!attribute [rw] activation_state
|
47343
|
+
# The state of the compute allocation being described. Use to enable
|
47344
|
+
# or disable compute allocation.
|
47345
|
+
#
|
47346
|
+
# Default is `Enabled`.
|
47347
|
+
# @return [String]
|
47348
|
+
#
|
47349
|
+
# @!attribute [rw] description
|
47350
|
+
# Description of the compute allocation definition.
|
47351
|
+
# @return [String]
|
47352
|
+
#
|
47353
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateComputeQuotaRequest AWS API Documentation
|
47354
|
+
#
|
47355
|
+
class UpdateComputeQuotaRequest < Struct.new(
|
47356
|
+
:compute_quota_id,
|
47357
|
+
:target_version,
|
47358
|
+
:compute_quota_config,
|
47359
|
+
:compute_quota_target,
|
47360
|
+
:activation_state,
|
47361
|
+
:description)
|
47362
|
+
SENSITIVE = []
|
47363
|
+
include Aws::Structure
|
47364
|
+
end
|
47365
|
+
|
47366
|
+
# @!attribute [rw] compute_quota_arn
|
47367
|
+
# ARN of the compute allocation definition.
|
47368
|
+
# @return [String]
|
47369
|
+
#
|
47370
|
+
# @!attribute [rw] compute_quota_version
|
47371
|
+
# Version of the compute allocation definition.
|
47372
|
+
# @return [Integer]
|
47373
|
+
#
|
47374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateComputeQuotaResponse AWS API Documentation
|
47375
|
+
#
|
47376
|
+
class UpdateComputeQuotaResponse < Struct.new(
|
47377
|
+
:compute_quota_arn,
|
47378
|
+
:compute_quota_version)
|
47379
|
+
SENSITIVE = []
|
47380
|
+
include Aws::Structure
|
47381
|
+
end
|
47382
|
+
|
45380
47383
|
# @!attribute [rw] context_name
|
45381
47384
|
# The name of the context to update.
|
45382
47385
|
# @return [String]
|
@@ -46555,6 +48558,68 @@ module Aws::SageMaker
|
|
46555
48558
|
#
|
46556
48559
|
class UpdateNotebookInstanceOutput < Aws::EmptyStructure; end
|
46557
48560
|
|
48561
|
+
# @!attribute [rw] arn
|
48562
|
+
# The ARN of the SageMaker Partner AI App to update.
|
48563
|
+
# @return [String]
|
48564
|
+
#
|
48565
|
+
# @!attribute [rw] maintenance_config
|
48566
|
+
# Maintenance configuration settings for the SageMaker Partner AI App.
|
48567
|
+
# @return [Types::PartnerAppMaintenanceConfig]
|
48568
|
+
#
|
48569
|
+
# @!attribute [rw] tier
|
48570
|
+
# Indicates the instance type and size of the cluster attached to the
|
48571
|
+
# SageMaker Partner AI App.
|
48572
|
+
# @return [String]
|
48573
|
+
#
|
48574
|
+
# @!attribute [rw] application_config
|
48575
|
+
# Configuration settings for the SageMaker Partner AI App.
|
48576
|
+
# @return [Types::PartnerAppConfig]
|
48577
|
+
#
|
48578
|
+
# @!attribute [rw] enable_iam_session_based_identity
|
48579
|
+
# When set to `TRUE`, the SageMaker Partner AI App sets the Amazon Web
|
48580
|
+
# Services IAM session name or the authenticated IAM user as the
|
48581
|
+
# identity of the SageMaker Partner AI App user.
|
48582
|
+
# @return [Boolean]
|
48583
|
+
#
|
48584
|
+
# @!attribute [rw] client_token
|
48585
|
+
# A unique token that guarantees that the call to this API is
|
48586
|
+
# idempotent.
|
48587
|
+
#
|
48588
|
+
# **A suitable default value is auto-generated.** You should normally
|
48589
|
+
# not need to pass this option.
|
48590
|
+
# @return [String]
|
48591
|
+
#
|
48592
|
+
# @!attribute [rw] tags
|
48593
|
+
# Each tag consists of a key and an optional value. Tag keys must be
|
48594
|
+
# unique per resource.
|
48595
|
+
# @return [Array<Types::Tag>]
|
48596
|
+
#
|
48597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePartnerAppRequest AWS API Documentation
|
48598
|
+
#
|
48599
|
+
class UpdatePartnerAppRequest < Struct.new(
|
48600
|
+
:arn,
|
48601
|
+
:maintenance_config,
|
48602
|
+
:tier,
|
48603
|
+
:application_config,
|
48604
|
+
:enable_iam_session_based_identity,
|
48605
|
+
:client_token,
|
48606
|
+
:tags)
|
48607
|
+
SENSITIVE = []
|
48608
|
+
include Aws::Structure
|
48609
|
+
end
|
48610
|
+
|
48611
|
+
# @!attribute [rw] arn
|
48612
|
+
# The ARN of the SageMaker Partner AI App that was updated.
|
48613
|
+
# @return [String]
|
48614
|
+
#
|
48615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePartnerAppResponse AWS API Documentation
|
48616
|
+
#
|
48617
|
+
class UpdatePartnerAppResponse < Struct.new(
|
48618
|
+
:arn)
|
48619
|
+
SENSITIVE = []
|
48620
|
+
include Aws::Structure
|
48621
|
+
end
|
48622
|
+
|
46558
48623
|
# @!attribute [rw] pipeline_execution_arn
|
46559
48624
|
# The Amazon Resource Name (ARN) of the pipeline execution.
|
46560
48625
|
# @return [String]
|