aws-sdk-sagemaker 1.338.0 → 1.340.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +243 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +114 -1
- data/lib/aws-sdk-sagemaker/types.rb +450 -16
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +53 -9
- data/sig/types.rbs +79 -4
- metadata +1 -1
|
@@ -10,6 +10,33 @@
|
|
|
10
10
|
module Aws::SageMaker
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# Configuration for allocating accelerator partitions.
|
|
14
|
+
#
|
|
15
|
+
# @!attribute [rw] type
|
|
16
|
+
# The Multi-Instance GPU (MIG) profile type that defines the partition
|
|
17
|
+
# configuration. The profile specifies the compute and memory
|
|
18
|
+
# allocation for each partition instance. The available profile types
|
|
19
|
+
# depend on the instance type specified in the compute quota
|
|
20
|
+
# configuration.
|
|
21
|
+
# @return [String]
|
|
22
|
+
#
|
|
23
|
+
# @!attribute [rw] count
|
|
24
|
+
# The number of accelerator partitions to allocate with the specified
|
|
25
|
+
# partition type. If you don't specify a value for vCPU and
|
|
26
|
+
# MemoryInGiB, SageMaker AI automatically allocates ratio-based values
|
|
27
|
+
# for those parameters based on the accelerator partition count you
|
|
28
|
+
# provide.
|
|
29
|
+
# @return [Integer]
|
|
30
|
+
#
|
|
31
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AcceleratorPartitionConfig AWS API Documentation
|
|
32
|
+
#
|
|
33
|
+
class AcceleratorPartitionConfig < Struct.new(
|
|
34
|
+
:type,
|
|
35
|
+
:count)
|
|
36
|
+
SENSITIVE = []
|
|
37
|
+
include Aws::Structure
|
|
38
|
+
end
|
|
39
|
+
|
|
13
40
|
# A structure describing the source of an action.
|
|
14
41
|
#
|
|
15
42
|
# @!attribute [rw] source_uri
|
|
@@ -3452,6 +3479,348 @@ module Aws::SageMaker
|
|
|
3452
3479
|
include Aws::Structure
|
|
3453
3480
|
end
|
|
3454
3481
|
|
|
3482
|
+
# Represents an error encountered when rebooting a node (identified by
|
|
3483
|
+
# its logical node ID) from a SageMaker HyperPod cluster.
|
|
3484
|
+
#
|
|
3485
|
+
# @!attribute [rw] node_logical_id
|
|
3486
|
+
# The logical node ID of the node that encountered an error during the
|
|
3487
|
+
# reboot operation.
|
|
3488
|
+
# @return [String]
|
|
3489
|
+
#
|
|
3490
|
+
# @!attribute [rw] error_code
|
|
3491
|
+
# The error code associated with the error encountered when rebooting
|
|
3492
|
+
# a node by logical node ID.
|
|
3493
|
+
#
|
|
3494
|
+
# Possible values:
|
|
3495
|
+
#
|
|
3496
|
+
# * `InstanceIdNotFound`: The node does not exist in the specified
|
|
3497
|
+
# cluster.
|
|
3498
|
+
#
|
|
3499
|
+
# * `InvalidInstanceStatus`: The node is in a state that does not
|
|
3500
|
+
# allow rebooting. Wait for the node to finish any ongoing changes
|
|
3501
|
+
# before retrying.
|
|
3502
|
+
#
|
|
3503
|
+
# * `InstanceIdInUse`: Another operation is already in progress for
|
|
3504
|
+
# this node. Wait for the operation to complete before retrying.
|
|
3505
|
+
#
|
|
3506
|
+
# * `InternalServerError`: An internal error occurred while processing
|
|
3507
|
+
# this node.
|
|
3508
|
+
# @return [String]
|
|
3509
|
+
#
|
|
3510
|
+
# @!attribute [rw] message
|
|
3511
|
+
# A human-readable message describing the error encountered when
|
|
3512
|
+
# rebooting a node by logical node ID.
|
|
3513
|
+
# @return [String]
|
|
3514
|
+
#
|
|
3515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchRebootClusterNodeLogicalIdsError AWS API Documentation
|
|
3516
|
+
#
|
|
3517
|
+
class BatchRebootClusterNodeLogicalIdsError < Struct.new(
|
|
3518
|
+
:node_logical_id,
|
|
3519
|
+
:error_code,
|
|
3520
|
+
:message)
|
|
3521
|
+
SENSITIVE = []
|
|
3522
|
+
include Aws::Structure
|
|
3523
|
+
end
|
|
3524
|
+
|
|
3525
|
+
# Represents an error encountered when rebooting a node from a SageMaker
|
|
3526
|
+
# HyperPod cluster.
|
|
3527
|
+
#
|
|
3528
|
+
# @!attribute [rw] node_id
|
|
3529
|
+
# The EC2 instance ID of the node that encountered an error during the
|
|
3530
|
+
# reboot operation.
|
|
3531
|
+
# @return [String]
|
|
3532
|
+
#
|
|
3533
|
+
# @!attribute [rw] error_code
|
|
3534
|
+
# The error code associated with the error encountered when rebooting
|
|
3535
|
+
# a node.
|
|
3536
|
+
#
|
|
3537
|
+
# Possible values:
|
|
3538
|
+
#
|
|
3539
|
+
# * `InstanceIdNotFound`: The instance does not exist in the specified
|
|
3540
|
+
# cluster.
|
|
3541
|
+
#
|
|
3542
|
+
# * `InvalidInstanceStatus`: The instance is in a state that does not
|
|
3543
|
+
# allow rebooting. Wait for the instance to finish any ongoing
|
|
3544
|
+
# changes before retrying.
|
|
3545
|
+
#
|
|
3546
|
+
# * `InstanceIdInUse`: Another operation is already in progress for
|
|
3547
|
+
# this node. Wait for the operation to complete before retrying.
|
|
3548
|
+
#
|
|
3549
|
+
# * `InternalServerError`: An internal error occurred while processing
|
|
3550
|
+
# this node.
|
|
3551
|
+
# @return [String]
|
|
3552
|
+
#
|
|
3553
|
+
# @!attribute [rw] message
|
|
3554
|
+
# A human-readable message describing the error encountered when
|
|
3555
|
+
# rebooting a node.
|
|
3556
|
+
# @return [String]
|
|
3557
|
+
#
|
|
3558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchRebootClusterNodesError AWS API Documentation
|
|
3559
|
+
#
|
|
3560
|
+
class BatchRebootClusterNodesError < Struct.new(
|
|
3561
|
+
:node_id,
|
|
3562
|
+
:error_code,
|
|
3563
|
+
:message)
|
|
3564
|
+
SENSITIVE = []
|
|
3565
|
+
include Aws::Structure
|
|
3566
|
+
end
|
|
3567
|
+
|
|
3568
|
+
# @!attribute [rw] cluster_name
|
|
3569
|
+
# The name or Amazon Resource Name (ARN) of the SageMaker HyperPod
|
|
3570
|
+
# cluster containing the nodes to reboot.
|
|
3571
|
+
# @return [String]
|
|
3572
|
+
#
|
|
3573
|
+
# @!attribute [rw] node_ids
|
|
3574
|
+
# A list of EC2 instance IDs to reboot using soft recovery. You can
|
|
3575
|
+
# specify between 1 and 25 instance IDs.
|
|
3576
|
+
#
|
|
3577
|
+
# <note markdown="1"> * Either `NodeIds` or `NodeLogicalIds` must be provided (or both),
|
|
3578
|
+
# but at least one is required.
|
|
3579
|
+
#
|
|
3580
|
+
# * Each instance ID must follow the pattern `i-` followed by 17
|
|
3581
|
+
# hexadecimal characters (for example, `i-0123456789abcdef0`).
|
|
3582
|
+
#
|
|
3583
|
+
# </note>
|
|
3584
|
+
# @return [Array<String>]
|
|
3585
|
+
#
|
|
3586
|
+
# @!attribute [rw] node_logical_ids
|
|
3587
|
+
# A list of logical node IDs to reboot using soft recovery. You can
|
|
3588
|
+
# specify between 1 and 25 logical node IDs.
|
|
3589
|
+
#
|
|
3590
|
+
# The `NodeLogicalId` is a unique identifier that persists throughout
|
|
3591
|
+
# the node's lifecycle and can be used to track nodes that are still
|
|
3592
|
+
# being provisioned and don't yet have an EC2 instance ID assigned.
|
|
3593
|
+
#
|
|
3594
|
+
# * This parameter is only supported for clusters using `Continuous`
|
|
3595
|
+
# as the `NodeProvisioningMode`. For clusters using the default
|
|
3596
|
+
# provisioning mode, use `NodeIds` instead.
|
|
3597
|
+
#
|
|
3598
|
+
# * Either `NodeIds` or `NodeLogicalIds` must be provided (or both),
|
|
3599
|
+
# but at least one is required.
|
|
3600
|
+
# @return [Array<String>]
|
|
3601
|
+
#
|
|
3602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchRebootClusterNodesRequest AWS API Documentation
|
|
3603
|
+
#
|
|
3604
|
+
class BatchRebootClusterNodesRequest < Struct.new(
|
|
3605
|
+
:cluster_name,
|
|
3606
|
+
:node_ids,
|
|
3607
|
+
:node_logical_ids)
|
|
3608
|
+
SENSITIVE = []
|
|
3609
|
+
include Aws::Structure
|
|
3610
|
+
end
|
|
3611
|
+
|
|
3612
|
+
# @!attribute [rw] successful
|
|
3613
|
+
# A list of EC2 instance IDs for which the reboot operation was
|
|
3614
|
+
# successfully initiated.
|
|
3615
|
+
# @return [Array<String>]
|
|
3616
|
+
#
|
|
3617
|
+
# @!attribute [rw] failed
|
|
3618
|
+
# A list of errors encountered for EC2 instance IDs that could not be
|
|
3619
|
+
# rebooted. Each error includes the instance ID, an error code, and a
|
|
3620
|
+
# descriptive message.
|
|
3621
|
+
# @return [Array<Types::BatchRebootClusterNodesError>]
|
|
3622
|
+
#
|
|
3623
|
+
# @!attribute [rw] failed_node_logical_ids
|
|
3624
|
+
# A list of errors encountered for logical node IDs that could not be
|
|
3625
|
+
# rebooted. Each error includes the logical node ID, an error code,
|
|
3626
|
+
# and a descriptive message. This field is only present when
|
|
3627
|
+
# `NodeLogicalIds` were provided in the request.
|
|
3628
|
+
# @return [Array<Types::BatchRebootClusterNodeLogicalIdsError>]
|
|
3629
|
+
#
|
|
3630
|
+
# @!attribute [rw] successful_node_logical_ids
|
|
3631
|
+
# A list of logical node IDs for which the reboot operation was
|
|
3632
|
+
# successfully initiated. This field is only present when
|
|
3633
|
+
# `NodeLogicalIds` were provided in the request.
|
|
3634
|
+
# @return [Array<String>]
|
|
3635
|
+
#
|
|
3636
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchRebootClusterNodesResponse AWS API Documentation
|
|
3637
|
+
#
|
|
3638
|
+
class BatchRebootClusterNodesResponse < Struct.new(
|
|
3639
|
+
:successful,
|
|
3640
|
+
:failed,
|
|
3641
|
+
:failed_node_logical_ids,
|
|
3642
|
+
:successful_node_logical_ids)
|
|
3643
|
+
SENSITIVE = []
|
|
3644
|
+
include Aws::Structure
|
|
3645
|
+
end
|
|
3646
|
+
|
|
3647
|
+
# Represents an error encountered when replacing a node (identified by
|
|
3648
|
+
# its logical node ID) in a SageMaker HyperPod cluster.
|
|
3649
|
+
#
|
|
3650
|
+
# @!attribute [rw] node_logical_id
|
|
3651
|
+
# The logical node ID of the node that encountered an error during the
|
|
3652
|
+
# replacement operation.
|
|
3653
|
+
# @return [String]
|
|
3654
|
+
#
|
|
3655
|
+
# @!attribute [rw] error_code
|
|
3656
|
+
# The error code associated with the error encountered when replacing
|
|
3657
|
+
# a node by logical node ID.
|
|
3658
|
+
#
|
|
3659
|
+
# Possible values:
|
|
3660
|
+
#
|
|
3661
|
+
# * `InstanceIdNotFound`: The node does not exist in the specified
|
|
3662
|
+
# cluster.
|
|
3663
|
+
#
|
|
3664
|
+
# * `InvalidInstanceStatus`: The node is in a state that does not
|
|
3665
|
+
# allow replacement. Wait for the node to finish any ongoing changes
|
|
3666
|
+
# before retrying.
|
|
3667
|
+
#
|
|
3668
|
+
# * `InstanceIdInUse`: Another operation is already in progress for
|
|
3669
|
+
# this node. Wait for the operation to complete before retrying.
|
|
3670
|
+
#
|
|
3671
|
+
# * `InternalServerError`: An internal error occurred while processing
|
|
3672
|
+
# this node.
|
|
3673
|
+
# @return [String]
|
|
3674
|
+
#
|
|
3675
|
+
# @!attribute [rw] message
|
|
3676
|
+
# A human-readable message describing the error encountered when
|
|
3677
|
+
# replacing a node by logical node ID.
|
|
3678
|
+
# @return [String]
|
|
3679
|
+
#
|
|
3680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchReplaceClusterNodeLogicalIdsError AWS API Documentation
|
|
3681
|
+
#
|
|
3682
|
+
class BatchReplaceClusterNodeLogicalIdsError < Struct.new(
|
|
3683
|
+
:node_logical_id,
|
|
3684
|
+
:error_code,
|
|
3685
|
+
:message)
|
|
3686
|
+
SENSITIVE = []
|
|
3687
|
+
include Aws::Structure
|
|
3688
|
+
end
|
|
3689
|
+
|
|
3690
|
+
# Represents an error encountered when replacing a node in a SageMaker
|
|
3691
|
+
# HyperPod cluster.
|
|
3692
|
+
#
|
|
3693
|
+
# @!attribute [rw] node_id
|
|
3694
|
+
# The EC2 instance ID of the node that encountered an error during the
|
|
3695
|
+
# replacement operation.
|
|
3696
|
+
# @return [String]
|
|
3697
|
+
#
|
|
3698
|
+
# @!attribute [rw] error_code
|
|
3699
|
+
# The error code associated with the error encountered when replacing
|
|
3700
|
+
# a node.
|
|
3701
|
+
#
|
|
3702
|
+
# Possible values:
|
|
3703
|
+
#
|
|
3704
|
+
# * `InstanceIdNotFound`: The instance does not exist in the specified
|
|
3705
|
+
# cluster.
|
|
3706
|
+
#
|
|
3707
|
+
# * `InvalidInstanceStatus`: The instance is in a state that does not
|
|
3708
|
+
# allow replacement. Wait for the instance to finish any ongoing
|
|
3709
|
+
# changes before retrying.
|
|
3710
|
+
#
|
|
3711
|
+
# * `InstanceIdInUse`: Another operation is already in progress for
|
|
3712
|
+
# this node. Wait for the operation to complete before retrying.
|
|
3713
|
+
#
|
|
3714
|
+
# * `InternalServerError`: An internal error occurred while processing
|
|
3715
|
+
# this node.
|
|
3716
|
+
# @return [String]
|
|
3717
|
+
#
|
|
3718
|
+
# @!attribute [rw] message
|
|
3719
|
+
# A human-readable message describing the error encountered when
|
|
3720
|
+
# replacing a node.
|
|
3721
|
+
# @return [String]
|
|
3722
|
+
#
|
|
3723
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchReplaceClusterNodesError AWS API Documentation
|
|
3724
|
+
#
|
|
3725
|
+
class BatchReplaceClusterNodesError < Struct.new(
|
|
3726
|
+
:node_id,
|
|
3727
|
+
:error_code,
|
|
3728
|
+
:message)
|
|
3729
|
+
SENSITIVE = []
|
|
3730
|
+
include Aws::Structure
|
|
3731
|
+
end
|
|
3732
|
+
|
|
3733
|
+
# @!attribute [rw] cluster_name
|
|
3734
|
+
# The name or Amazon Resource Name (ARN) of the SageMaker HyperPod
|
|
3735
|
+
# cluster containing the nodes to replace.
|
|
3736
|
+
# @return [String]
|
|
3737
|
+
#
|
|
3738
|
+
# @!attribute [rw] node_ids
|
|
3739
|
+
# A list of EC2 instance IDs to replace with new hardware. You can
|
|
3740
|
+
# specify between 1 and 25 instance IDs.
|
|
3741
|
+
#
|
|
3742
|
+
# Replace operations destroy all instance volumes (root and
|
|
3743
|
+
# secondary). Ensure you have backed up any important data before
|
|
3744
|
+
# proceeding.
|
|
3745
|
+
#
|
|
3746
|
+
# <note markdown="1"> * Either `NodeIds` or `NodeLogicalIds` must be provided (or both),
|
|
3747
|
+
# but at least one is required.
|
|
3748
|
+
#
|
|
3749
|
+
# * Each instance ID must follow the pattern `i-` followed by 17
|
|
3750
|
+
# hexadecimal characters (for example, `i-0123456789abcdef0`).
|
|
3751
|
+
#
|
|
3752
|
+
# * For SageMaker HyperPod clusters using the Slurm workload manager,
|
|
3753
|
+
# you cannot replace instances that are configured as Slurm
|
|
3754
|
+
# controller nodes.
|
|
3755
|
+
#
|
|
3756
|
+
# </note>
|
|
3757
|
+
# @return [Array<String>]
|
|
3758
|
+
#
|
|
3759
|
+
# @!attribute [rw] node_logical_ids
|
|
3760
|
+
# A list of logical node IDs to replace with new hardware. You can
|
|
3761
|
+
# specify between 1 and 25 logical node IDs.
|
|
3762
|
+
#
|
|
3763
|
+
# The `NodeLogicalId` is a unique identifier that persists throughout
|
|
3764
|
+
# the node's lifecycle and can be used to track nodes that are still
|
|
3765
|
+
# being provisioned and don't yet have an EC2 instance ID assigned.
|
|
3766
|
+
#
|
|
3767
|
+
# * Replace operations destroy all instance volumes (root and
|
|
3768
|
+
# secondary). Ensure you have backed up any important data before
|
|
3769
|
+
# proceeding.
|
|
3770
|
+
#
|
|
3771
|
+
# * This parameter is only supported for clusters using `Continuous`
|
|
3772
|
+
# as the `NodeProvisioningMode`. For clusters using the default
|
|
3773
|
+
# provisioning mode, use `NodeIds` instead.
|
|
3774
|
+
#
|
|
3775
|
+
# * Either `NodeIds` or `NodeLogicalIds` must be provided (or both),
|
|
3776
|
+
# but at least one is required.
|
|
3777
|
+
# @return [Array<String>]
|
|
3778
|
+
#
|
|
3779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchReplaceClusterNodesRequest AWS API Documentation
|
|
3780
|
+
#
|
|
3781
|
+
class BatchReplaceClusterNodesRequest < Struct.new(
|
|
3782
|
+
:cluster_name,
|
|
3783
|
+
:node_ids,
|
|
3784
|
+
:node_logical_ids)
|
|
3785
|
+
SENSITIVE = []
|
|
3786
|
+
include Aws::Structure
|
|
3787
|
+
end
|
|
3788
|
+
|
|
3789
|
+
# @!attribute [rw] successful
|
|
3790
|
+
# A list of EC2 instance IDs for which the replacement operation was
|
|
3791
|
+
# successfully initiated.
|
|
3792
|
+
# @return [Array<String>]
|
|
3793
|
+
#
|
|
3794
|
+
# @!attribute [rw] failed
|
|
3795
|
+
# A list of errors encountered for EC2 instance IDs that could not be
|
|
3796
|
+
# replaced. Each error includes the instance ID, an error code, and a
|
|
3797
|
+
# descriptive message.
|
|
3798
|
+
# @return [Array<Types::BatchReplaceClusterNodesError>]
|
|
3799
|
+
#
|
|
3800
|
+
# @!attribute [rw] failed_node_logical_ids
|
|
3801
|
+
# A list of errors encountered for logical node IDs that could not be
|
|
3802
|
+
# replaced. Each error includes the logical node ID, an error code,
|
|
3803
|
+
# and a descriptive message. This field is only present when
|
|
3804
|
+
# `NodeLogicalIds` were provided in the request.
|
|
3805
|
+
# @return [Array<Types::BatchReplaceClusterNodeLogicalIdsError>]
|
|
3806
|
+
#
|
|
3807
|
+
# @!attribute [rw] successful_node_logical_ids
|
|
3808
|
+
# A list of logical node IDs for which the replacement operation was
|
|
3809
|
+
# successfully initiated. This field is only present when
|
|
3810
|
+
# `NodeLogicalIds` were provided in the request.
|
|
3811
|
+
# @return [Array<String>]
|
|
3812
|
+
#
|
|
3813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchReplaceClusterNodesResponse AWS API Documentation
|
|
3814
|
+
#
|
|
3815
|
+
class BatchReplaceClusterNodesResponse < Struct.new(
|
|
3816
|
+
:successful,
|
|
3817
|
+
:failed,
|
|
3818
|
+
:failed_node_logical_ids,
|
|
3819
|
+
:successful_node_logical_ids)
|
|
3820
|
+
SENSITIVE = []
|
|
3821
|
+
include Aws::Structure
|
|
3822
|
+
end
|
|
3823
|
+
|
|
3455
3824
|
# Input object for the batch transform job.
|
|
3456
3825
|
#
|
|
3457
3826
|
# @!attribute [rw] data_captured_destination_s3_uri
|
|
@@ -5536,6 +5905,10 @@ module Aws::SageMaker
|
|
|
5536
5905
|
# Contains information about the UltraServer.
|
|
5537
5906
|
# @return [Types::UltraServerInfo]
|
|
5538
5907
|
#
|
|
5908
|
+
# @!attribute [rw] private_dns_hostname
|
|
5909
|
+
# The private DNS hostname of the SageMaker HyperPod cluster node.
|
|
5910
|
+
# @return [String]
|
|
5911
|
+
#
|
|
5539
5912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeSummary AWS API Documentation
|
|
5540
5913
|
#
|
|
5541
5914
|
class ClusterNodeSummary < Struct.new(
|
|
@@ -5546,7 +5919,8 @@ module Aws::SageMaker
|
|
|
5546
5919
|
:launch_time,
|
|
5547
5920
|
:last_software_update_time,
|
|
5548
5921
|
:instance_status,
|
|
5549
|
-
:ultra_server_info
|
|
5922
|
+
:ultra_server_info,
|
|
5923
|
+
:private_dns_hostname)
|
|
5550
5924
|
SENSITIVE = []
|
|
5551
5925
|
include Aws::Structure
|
|
5552
5926
|
end
|
|
@@ -6294,6 +6668,11 @@ module Aws::SageMaker
|
|
|
6294
6668
|
# Accelerators are set to 0.
|
|
6295
6669
|
# @return [Float]
|
|
6296
6670
|
#
|
|
6671
|
+
# @!attribute [rw] accelerator_partition
|
|
6672
|
+
# The accelerator partition configuration for fractional GPU
|
|
6673
|
+
# allocation.
|
|
6674
|
+
# @return [Types::AcceleratorPartitionConfig]
|
|
6675
|
+
#
|
|
6297
6676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ComputeQuotaResourceConfig AWS API Documentation
|
|
6298
6677
|
#
|
|
6299
6678
|
class ComputeQuotaResourceConfig < Struct.new(
|
|
@@ -6301,7 +6680,8 @@ module Aws::SageMaker
|
|
|
6301
6680
|
:count,
|
|
6302
6681
|
:accelerators,
|
|
6303
6682
|
:v_cpu,
|
|
6304
|
-
:memory_in_gi_b
|
|
6683
|
+
:memory_in_gi_b,
|
|
6684
|
+
:accelerator_partition)
|
|
6305
6685
|
SENSITIVE = []
|
|
6306
6686
|
include Aws::Structure
|
|
6307
6687
|
end
|
|
@@ -8318,6 +8698,10 @@ module Aws::SageMaker
|
|
|
8318
8698
|
# made to or from the model containers.
|
|
8319
8699
|
# @return [Boolean]
|
|
8320
8700
|
#
|
|
8701
|
+
# @!attribute [rw] metrics_config
|
|
8702
|
+
# The configuration parameters for utilization metrics.
|
|
8703
|
+
# @return [Types::MetricsConfig]
|
|
8704
|
+
#
|
|
8321
8705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
|
|
8322
8706
|
#
|
|
8323
8707
|
class CreateEndpointConfigInput < Struct.new(
|
|
@@ -8331,7 +8715,8 @@ module Aws::SageMaker
|
|
|
8331
8715
|
:shadow_production_variants,
|
|
8332
8716
|
:execution_role_arn,
|
|
8333
8717
|
:vpc_config,
|
|
8334
|
-
:enable_network_isolation
|
|
8718
|
+
:enable_network_isolation,
|
|
8719
|
+
:metrics_config)
|
|
8335
8720
|
SENSITIVE = []
|
|
8336
8721
|
include Aws::Structure
|
|
8337
8722
|
end
|
|
@@ -16368,6 +16753,10 @@ module Aws::SageMaker
|
|
|
16368
16753
|
# made to or from the model containers.
|
|
16369
16754
|
# @return [Boolean]
|
|
16370
16755
|
#
|
|
16756
|
+
# @!attribute [rw] metrics_config
|
|
16757
|
+
# The configuration parameters for utilization metrics.
|
|
16758
|
+
# @return [Types::MetricsConfig]
|
|
16759
|
+
#
|
|
16371
16760
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfigOutput AWS API Documentation
|
|
16372
16761
|
#
|
|
16373
16762
|
class DescribeEndpointConfigOutput < Struct.new(
|
|
@@ -16382,7 +16771,8 @@ module Aws::SageMaker
|
|
|
16382
16771
|
:shadow_production_variants,
|
|
16383
16772
|
:execution_role_arn,
|
|
16384
16773
|
:vpc_config,
|
|
16385
|
-
:enable_network_isolation
|
|
16774
|
+
:enable_network_isolation,
|
|
16775
|
+
:metrics_config)
|
|
16386
16776
|
SENSITIVE = []
|
|
16387
16777
|
include Aws::Structure
|
|
16388
16778
|
end
|
|
@@ -16524,6 +16914,10 @@ module Aws::SageMaker
|
|
|
16524
16914
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ProductionVariantSummary.html
|
|
16525
16915
|
# @return [Array<Types::ProductionVariantSummary>]
|
|
16526
16916
|
#
|
|
16917
|
+
# @!attribute [rw] metrics_config
|
|
16918
|
+
# The configuration parameters for utilization metrics.
|
|
16919
|
+
# @return [Types::MetricsConfig]
|
|
16920
|
+
#
|
|
16527
16921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointOutput AWS API Documentation
|
|
16528
16922
|
#
|
|
16529
16923
|
class DescribeEndpointOutput < Struct.new(
|
|
@@ -16540,7 +16934,8 @@ module Aws::SageMaker
|
|
|
16540
16934
|
:async_inference_config,
|
|
16541
16935
|
:pending_deployment_summary,
|
|
16542
16936
|
:explainer_config,
|
|
16543
|
-
:shadow_production_variants
|
|
16937
|
+
:shadow_production_variants,
|
|
16938
|
+
:metrics_config)
|
|
16544
16939
|
SENSITIVE = []
|
|
16545
16940
|
include Aws::Structure
|
|
16546
16941
|
end
|
|
@@ -20801,7 +21196,7 @@ module Aws::SageMaker
|
|
|
20801
21196
|
#
|
|
20802
21197
|
# @!attribute [rw] target_resources
|
|
20803
21198
|
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
|
20804
|
-
# HyperPod) that can use this training plan.
|
|
21199
|
+
# HyperPod, SageMaker Endpoints) that can use this training plan.
|
|
20805
21200
|
#
|
|
20806
21201
|
# Training plans are specific to their target resource.
|
|
20807
21202
|
#
|
|
@@ -20810,6 +21205,10 @@ module Aws::SageMaker
|
|
|
20810
21205
|
#
|
|
20811
21206
|
# * A training plan for HyperPod clusters can be used exclusively to
|
|
20812
21207
|
# provide compute resources to a cluster's instance group.
|
|
21208
|
+
#
|
|
21209
|
+
# * A training plan for SageMaker endpoints can be used exclusively to
|
|
21210
|
+
# provide compute resources to SageMaker endpoints for model
|
|
21211
|
+
# deployment.
|
|
20813
21212
|
# @return [Array<String>]
|
|
20814
21213
|
#
|
|
20815
21214
|
# @!attribute [rw] reserved_capacity_summaries
|
|
@@ -35960,6 +36359,29 @@ module Aws::SageMaker
|
|
|
35960
36359
|
class Unknown < MetricSpecification; end
|
|
35961
36360
|
end
|
|
35962
36361
|
|
|
36362
|
+
# The configuration for Utilization metrics.
|
|
36363
|
+
#
|
|
36364
|
+
# @!attribute [rw] enable_enhanced_metrics
|
|
36365
|
+
# Specifies whether to enable enhanced metrics for the endpoint.
|
|
36366
|
+
# Enhanced metrics provide utilization data at instance and container
|
|
36367
|
+
# granularity. Container granularity is supported for Inference
|
|
36368
|
+
# Components. The default is `False`.
|
|
36369
|
+
# @return [Boolean]
|
|
36370
|
+
#
|
|
36371
|
+
# @!attribute [rw] metric_publish_frequency_in_seconds
|
|
36372
|
+
# The frequency, in seconds, at which utilization metrics are
|
|
36373
|
+
# published to Amazon CloudWatch. The default is `60` seconds.
|
|
36374
|
+
# @return [Integer]
|
|
36375
|
+
#
|
|
36376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricsConfig AWS API Documentation
|
|
36377
|
+
#
|
|
36378
|
+
class MetricsConfig < Struct.new(
|
|
36379
|
+
:enable_enhanced_metrics,
|
|
36380
|
+
:metric_publish_frequency_in_seconds)
|
|
36381
|
+
SENSITIVE = []
|
|
36382
|
+
include Aws::Structure
|
|
36383
|
+
end
|
|
36384
|
+
|
|
35963
36385
|
# Details about the metrics source.
|
|
35964
36386
|
#
|
|
35965
36387
|
# @!attribute [rw] content_type
|
|
@@ -44653,9 +45075,9 @@ module Aws::SageMaker
|
|
|
44653
45075
|
include Aws::Structure
|
|
44654
45076
|
end
|
|
44655
45077
|
|
|
44656
|
-
# Defines the mapping between an in-app role and the
|
|
44657
|
-
# Center group patterns that should be assigned to that
|
|
44658
|
-
# SageMaker Partner AI App.
|
|
45078
|
+
# Defines the mapping between an in-app role and the Amazon Web Services
|
|
45079
|
+
# IAM Identity Center group patterns that should be assigned to that
|
|
45080
|
+
# role within the SageMaker Partner AI App.
|
|
44659
45081
|
#
|
|
44660
45082
|
# @!attribute [rw] role_name
|
|
44661
45083
|
# The name of the in-app role within the SageMaker Partner AI App. The
|
|
@@ -44663,9 +45085,9 @@ module Aws::SageMaker
|
|
|
44663
45085
|
# @return [String]
|
|
44664
45086
|
#
|
|
44665
45087
|
# @!attribute [rw] group_patterns
|
|
44666
|
-
# A list of
|
|
44667
|
-
# assigned to the specified role. Group patterns
|
|
44668
|
-
# matching using `*`.
|
|
45088
|
+
# A list of Amazon Web Services IAM Identity Center group patterns
|
|
45089
|
+
# that should be assigned to the specified role. Group patterns
|
|
45090
|
+
# support wildcard matching using `*`.
|
|
44669
45091
|
# @return [Array<String>]
|
|
44670
45092
|
#
|
|
44671
45093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RoleGroupAssignment AWS API Documentation
|
|
@@ -45623,7 +46045,7 @@ module Aws::SageMaker
|
|
|
45623
46045
|
#
|
|
45624
46046
|
# @!attribute [rw] target_resources
|
|
45625
46047
|
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
|
45626
|
-
# HyperPod) to search for in the offerings.
|
|
46048
|
+
# HyperPod, SageMaker Endpoints) to search for in the offerings.
|
|
45627
46049
|
#
|
|
45628
46050
|
# Training plans are specific to their target resource.
|
|
45629
46051
|
#
|
|
@@ -45632,6 +46054,10 @@ module Aws::SageMaker
|
|
|
45632
46054
|
#
|
|
45633
46055
|
# * A training plan for HyperPod clusters can be used exclusively to
|
|
45634
46056
|
# provide compute resources to a cluster's instance group.
|
|
46057
|
+
#
|
|
46058
|
+
# * A training plan for SageMaker endpoints can be used exclusively to
|
|
46059
|
+
# provide compute resources to SageMaker endpoints for model
|
|
46060
|
+
# deployment.
|
|
45635
46061
|
# @return [Array<String>]
|
|
45636
46062
|
#
|
|
45637
46063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchTrainingPlanOfferingsRequest AWS API Documentation
|
|
@@ -48867,7 +49293,7 @@ module Aws::SageMaker
|
|
|
48867
49293
|
#
|
|
48868
49294
|
# @!attribute [rw] target_resources
|
|
48869
49295
|
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
|
48870
|
-
# HyperPod) for this training plan offering.
|
|
49296
|
+
# HyperPod, SageMaker Endpoints) for this training plan offering.
|
|
48871
49297
|
#
|
|
48872
49298
|
# Training plans are specific to their target resource.
|
|
48873
49299
|
#
|
|
@@ -48876,6 +49302,10 @@ module Aws::SageMaker
|
|
|
48876
49302
|
#
|
|
48877
49303
|
# * A training plan for HyperPod clusters can be used exclusively to
|
|
48878
49304
|
# provide compute resources to a cluster's instance group.
|
|
49305
|
+
#
|
|
49306
|
+
# * A training plan for SageMaker endpoints can be used exclusively to
|
|
49307
|
+
# provide compute resources to SageMaker endpoints for model
|
|
49308
|
+
# deployment.
|
|
48879
49309
|
# @return [Array<String>]
|
|
48880
49310
|
#
|
|
48881
49311
|
# @!attribute [rw] requested_start_time_after
|
|
@@ -48997,8 +49427,8 @@ module Aws::SageMaker
|
|
|
48997
49427
|
# @return [Integer]
|
|
48998
49428
|
#
|
|
48999
49429
|
# @!attribute [rw] target_resources
|
|
49000
|
-
# The target resources (e.g., training jobs, HyperPod clusters
|
|
49001
|
-
# can use this training plan.
|
|
49430
|
+
# The target resources (e.g., training jobs, HyperPod clusters,
|
|
49431
|
+
# Endpoints) that can use this training plan.
|
|
49002
49432
|
#
|
|
49003
49433
|
# Training plans are specific to their target resource.
|
|
49004
49434
|
#
|
|
@@ -49007,6 +49437,10 @@ module Aws::SageMaker
|
|
|
49007
49437
|
#
|
|
49008
49438
|
# * A training plan for HyperPod clusters can be used exclusively to
|
|
49009
49439
|
# provide compute resources to a cluster's instance group.
|
|
49440
|
+
#
|
|
49441
|
+
# * A training plan for SageMaker endpoints can be used exclusively to
|
|
49442
|
+
# provide compute resources to SageMaker endpoints for model
|
|
49443
|
+
# deployment.
|
|
49010
49444
|
# @return [Array<String>]
|
|
49011
49445
|
#
|
|
49012
49446
|
# @!attribute [rw] reserved_capacity_summaries
|