aws-sdk-sagemaker 1.318.0 → 1.319.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +307 -3
- data/lib/aws-sdk-sagemaker/client_api.rb +228 -0
- data/lib/aws-sdk-sagemaker/types.rb +789 -10
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +66 -7
- data/sig/types.rbs +183 -1
- metadata +1 -1
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -137,15 +137,36 @@ module Aws
|
|
137
137
|
) -> _AttachClusterNodeVolumeResponseSuccess
|
138
138
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachClusterNodeVolumeResponseSuccess
|
139
139
|
|
140
|
+
interface _BatchAddClusterNodesResponseSuccess
|
141
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchAddClusterNodesResponse]
|
142
|
+
def successful: () -> ::Array[Types::NodeAdditionResult]
|
143
|
+
def failed: () -> ::Array[Types::BatchAddClusterNodesError]
|
144
|
+
end
|
145
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#batch_add_cluster_nodes-instance_method
|
146
|
+
def batch_add_cluster_nodes: (
|
147
|
+
cluster_name: ::String,
|
148
|
+
?client_token: ::String,
|
149
|
+
nodes_to_add: Array[
|
150
|
+
{
|
151
|
+
instance_group_name: ::String,
|
152
|
+
increment_target_count_by: ::Integer
|
153
|
+
},
|
154
|
+
]
|
155
|
+
) -> _BatchAddClusterNodesResponseSuccess
|
156
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchAddClusterNodesResponseSuccess
|
157
|
+
|
140
158
|
interface _BatchDeleteClusterNodesResponseSuccess
|
141
159
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteClusterNodesResponse]
|
142
160
|
def failed: () -> ::Array[Types::BatchDeleteClusterNodesError]
|
143
161
|
def successful: () -> ::Array[::String]
|
162
|
+
def failed_node_logical_ids: () -> ::Array[Types::BatchDeleteClusterNodeLogicalIdsError]
|
163
|
+
def successful_node_logical_ids: () -> ::Array[::String]
|
144
164
|
end
|
145
165
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#batch_delete_cluster_nodes-instance_method
|
146
166
|
def batch_delete_cluster_nodes: (
|
147
167
|
cluster_name: ::String,
|
148
|
-
?node_ids: Array[::String]
|
168
|
+
?node_ids: Array[::String],
|
169
|
+
?node_logical_ids: Array[::String]
|
149
170
|
) -> _BatchDeleteClusterNodesResponseSuccess
|
150
171
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteClusterNodesResponseSuccess
|
151
172
|
|
@@ -787,7 +808,8 @@ module Aws
|
|
787
808
|
},
|
788
809
|
]?
|
789
810
|
}?
|
790
|
-
}
|
811
|
+
}?,
|
812
|
+
image_id: ::String?
|
791
813
|
},
|
792
814
|
],
|
793
815
|
?restricted_instance_groups: Array[
|
@@ -854,7 +876,8 @@ module Aws
|
|
854
876
|
cluster_arn: ::String
|
855
877
|
}
|
856
878
|
},
|
857
|
-
?node_recovery: ("Automatic" | "None")
|
879
|
+
?node_recovery: ("Automatic" | "None"),
|
880
|
+
?node_provisioning_mode: ("Continuous")
|
858
881
|
) -> _CreateClusterResponseSuccess
|
859
882
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
860
883
|
|
@@ -5343,6 +5366,7 @@ module Aws
|
|
5343
5366
|
def vpc_config: () -> Types::VpcConfig
|
5344
5367
|
def orchestrator: () -> Types::ClusterOrchestrator
|
5345
5368
|
def node_recovery: () -> ("Automatic" | "None")
|
5369
|
+
def node_provisioning_mode: () -> ("Continuous")
|
5346
5370
|
end
|
5347
5371
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster-instance_method
|
5348
5372
|
def describe_cluster: (
|
@@ -5350,6 +5374,17 @@ module Aws
|
|
5350
5374
|
) -> _DescribeClusterResponseSuccess
|
5351
5375
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
|
5352
5376
|
|
5377
|
+
interface _DescribeClusterEventResponseSuccess
|
5378
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterEventResponse]
|
5379
|
+
def event_details: () -> Types::ClusterEventDetail
|
5380
|
+
end
|
5381
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster_event-instance_method
|
5382
|
+
def describe_cluster_event: (
|
5383
|
+
event_id: ::String,
|
5384
|
+
cluster_name: ::String
|
5385
|
+
) -> _DescribeClusterEventResponseSuccess
|
5386
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterEventResponseSuccess
|
5387
|
+
|
5353
5388
|
interface _DescribeClusterNodeResponseSuccess
|
5354
5389
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterNodeResponse]
|
5355
5390
|
def node_details: () -> Types::ClusterNodeDetails
|
@@ -5357,7 +5392,8 @@ module Aws
|
|
5357
5392
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster_node-instance_method
|
5358
5393
|
def describe_cluster_node: (
|
5359
5394
|
cluster_name: ::String,
|
5360
|
-
?node_id: ::String
|
5395
|
+
?node_id: ::String,
|
5396
|
+
?node_logical_id: ::String
|
5361
5397
|
) -> _DescribeClusterNodeResponseSuccess
|
5362
5398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterNodeResponseSuccess
|
5363
5399
|
|
@@ -6967,6 +7003,26 @@ module Aws
|
|
6967
7003
|
) -> _ListCandidatesForAutoMLJobResponseSuccess
|
6968
7004
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCandidatesForAutoMLJobResponseSuccess
|
6969
7005
|
|
7006
|
+
interface _ListClusterEventsResponseSuccess
|
7007
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterEventsResponse]
|
7008
|
+
def next_token: () -> ::String
|
7009
|
+
def events: () -> ::Array[Types::ClusterEventSummary]
|
7010
|
+
end
|
7011
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_cluster_events-instance_method
|
7012
|
+
def list_cluster_events: (
|
7013
|
+
cluster_name: ::String,
|
7014
|
+
?instance_group_name: ::String,
|
7015
|
+
?node_id: ::String,
|
7016
|
+
?event_time_after: ::Time,
|
7017
|
+
?event_time_before: ::Time,
|
7018
|
+
?sort_by: ("EventTime"),
|
7019
|
+
?sort_order: ("Ascending" | "Descending"),
|
7020
|
+
?resource_type: ("Cluster" | "InstanceGroup" | "Instance"),
|
7021
|
+
?max_results: ::Integer,
|
7022
|
+
?next_token: ::String
|
7023
|
+
) -> _ListClusterEventsResponseSuccess
|
7024
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterEventsResponseSuccess
|
7025
|
+
|
6970
7026
|
interface _ListClusterNodesResponseSuccess
|
6971
7027
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterNodesResponse]
|
6972
7028
|
def next_token: () -> ::String
|
@@ -6981,7 +7037,8 @@ module Aws
|
|
6981
7037
|
?max_results: ::Integer,
|
6982
7038
|
?next_token: ::String,
|
6983
7039
|
?sort_by: ("CREATION_TIME" | "NAME"),
|
6984
|
-
?sort_order: ("Ascending" | "Descending")
|
7040
|
+
?sort_order: ("Ascending" | "Descending"),
|
7041
|
+
?include_node_logical_ids: bool
|
6985
7042
|
) -> _ListClusterNodesResponseSuccess
|
6986
7043
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterNodesResponseSuccess
|
6987
7044
|
|
@@ -8799,7 +8856,8 @@ module Aws
|
|
8799
8856
|
},
|
8800
8857
|
]?
|
8801
8858
|
}?
|
8802
|
-
}
|
8859
|
+
}?,
|
8860
|
+
image_id: ::String?
|
8803
8861
|
},
|
8804
8862
|
],
|
8805
8863
|
?restricted_instance_groups: Array[
|
@@ -8907,7 +8965,8 @@ module Aws
|
|
8907
8965
|
alarm_name: ::String
|
8908
8966
|
},
|
8909
8967
|
]?
|
8910
|
-
}
|
8968
|
+
},
|
8969
|
+
?image_id: ::String
|
8911
8970
|
) -> _UpdateClusterSoftwareResponseSuccess
|
8912
8971
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterSoftwareResponseSuccess
|
8913
8972
|
|
data/sig/types.rbs
CHANGED
@@ -39,6 +39,12 @@ module Aws::SageMaker
|
|
39
39
|
SENSITIVE: []
|
40
40
|
end
|
41
41
|
|
42
|
+
class AddClusterNodeSpecification
|
43
|
+
attr_accessor instance_group_name: ::String
|
44
|
+
attr_accessor increment_target_count_by: ::Integer
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
42
48
|
class AddTagsInput
|
43
49
|
attr_accessor resource_arn: ::String
|
44
50
|
attr_accessor tags: ::Array[Types::Tag]
|
@@ -50,6 +56,11 @@ module Aws::SageMaker
|
|
50
56
|
SENSITIVE: []
|
51
57
|
end
|
52
58
|
|
59
|
+
class AdditionalEnis
|
60
|
+
attr_accessor efa_enis: ::Array[::String]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
53
64
|
class AdditionalInferenceSpecificationDefinition
|
54
65
|
attr_accessor name: ::String
|
55
66
|
attr_accessor description: ::String
|
@@ -495,6 +506,27 @@ module Aws::SageMaker
|
|
495
506
|
SENSITIVE: []
|
496
507
|
end
|
497
508
|
|
509
|
+
class BatchAddClusterNodesError
|
510
|
+
attr_accessor instance_group_name: ::String
|
511
|
+
attr_accessor error_code: ("InstanceGroupNotFound" | "InvalidInstanceGroupStatus")
|
512
|
+
attr_accessor failed_count: ::Integer
|
513
|
+
attr_accessor message: ::String
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class BatchAddClusterNodesRequest
|
518
|
+
attr_accessor cluster_name: ::String
|
519
|
+
attr_accessor client_token: ::String
|
520
|
+
attr_accessor nodes_to_add: ::Array[Types::AddClusterNodeSpecification]
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class BatchAddClusterNodesResponse
|
525
|
+
attr_accessor successful: ::Array[Types::NodeAdditionResult]
|
526
|
+
attr_accessor failed: ::Array[Types::BatchAddClusterNodesError]
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
498
530
|
class BatchDataCaptureConfig
|
499
531
|
attr_accessor destination_s3_uri: ::String
|
500
532
|
attr_accessor kms_key_id: ::String
|
@@ -502,6 +534,13 @@ module Aws::SageMaker
|
|
502
534
|
SENSITIVE: []
|
503
535
|
end
|
504
536
|
|
537
|
+
class BatchDeleteClusterNodeLogicalIdsError
|
538
|
+
attr_accessor code: ("NodeIdNotFound" | "InvalidNodeStatus" | "NodeIdInUse")
|
539
|
+
attr_accessor message: ::String
|
540
|
+
attr_accessor node_logical_id: ::String
|
541
|
+
SENSITIVE: []
|
542
|
+
end
|
543
|
+
|
505
544
|
class BatchDeleteClusterNodesError
|
506
545
|
attr_accessor code: ("NodeIdNotFound" | "InvalidNodeStatus" | "NodeIdInUse")
|
507
546
|
attr_accessor message: ::String
|
@@ -512,12 +551,15 @@ module Aws::SageMaker
|
|
512
551
|
class BatchDeleteClusterNodesRequest
|
513
552
|
attr_accessor cluster_name: ::String
|
514
553
|
attr_accessor node_ids: ::Array[::String]
|
554
|
+
attr_accessor node_logical_ids: ::Array[::String]
|
515
555
|
SENSITIVE: []
|
516
556
|
end
|
517
557
|
|
518
558
|
class BatchDeleteClusterNodesResponse
|
519
559
|
attr_accessor failed: ::Array[Types::BatchDeleteClusterNodesError]
|
520
560
|
attr_accessor successful: ::Array[::String]
|
561
|
+
attr_accessor failed_node_logical_ids: ::Array[Types::BatchDeleteClusterNodeLogicalIdsError]
|
562
|
+
attr_accessor successful_node_logical_ids: ::Array[::String]
|
521
563
|
SENSITIVE: []
|
522
564
|
end
|
523
565
|
|
@@ -627,6 +669,12 @@ module Aws::SageMaker
|
|
627
669
|
SENSITIVE: []
|
628
670
|
end
|
629
671
|
|
672
|
+
class CapacityReservation
|
673
|
+
attr_accessor arn: ::String
|
674
|
+
attr_accessor type: ("ODCR" | "CRG")
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
630
678
|
class CapacitySize
|
631
679
|
attr_accessor type: ("INSTANCE_COUNT" | "CAPACITY_PERCENT")
|
632
680
|
attr_accessor value: ::Integer
|
@@ -804,6 +852,31 @@ module Aws::SageMaker
|
|
804
852
|
SENSITIVE: []
|
805
853
|
end
|
806
854
|
|
855
|
+
class ClusterEventDetail
|
856
|
+
attr_accessor event_id: ::String
|
857
|
+
attr_accessor cluster_arn: ::String
|
858
|
+
attr_accessor cluster_name: ::String
|
859
|
+
attr_accessor instance_group_name: ::String
|
860
|
+
attr_accessor instance_id: ::String
|
861
|
+
attr_accessor resource_type: ("Cluster" | "InstanceGroup" | "Instance")
|
862
|
+
attr_accessor event_time: ::Time
|
863
|
+
attr_accessor event_details: Types::EventDetails
|
864
|
+
attr_accessor description: ::String
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class ClusterEventSummary
|
869
|
+
attr_accessor event_id: ::String
|
870
|
+
attr_accessor cluster_arn: ::String
|
871
|
+
attr_accessor cluster_name: ::String
|
872
|
+
attr_accessor instance_group_name: ::String
|
873
|
+
attr_accessor instance_id: ::String
|
874
|
+
attr_accessor resource_type: ("Cluster" | "InstanceGroup" | "Instance")
|
875
|
+
attr_accessor event_time: ::Time
|
876
|
+
attr_accessor description: ::String
|
877
|
+
SENSITIVE: []
|
878
|
+
end
|
879
|
+
|
807
880
|
class ClusterInstanceGroupDetails
|
808
881
|
attr_accessor current_count: ::Integer
|
809
882
|
attr_accessor target_count: ::Integer
|
@@ -819,6 +892,8 @@ module Aws::SageMaker
|
|
819
892
|
attr_accessor training_plan_status: ::String
|
820
893
|
attr_accessor override_vpc_config: Types::VpcConfig
|
821
894
|
attr_accessor scheduled_update_config: Types::ScheduledUpdateConfig
|
895
|
+
attr_accessor current_image_id: ::String
|
896
|
+
attr_accessor desired_image_id: ::String
|
822
897
|
SENSITIVE: []
|
823
898
|
end
|
824
899
|
|
@@ -834,6 +909,7 @@ module Aws::SageMaker
|
|
834
909
|
attr_accessor training_plan_arn: ::String
|
835
910
|
attr_accessor override_vpc_config: Types::VpcConfig
|
836
911
|
attr_accessor scheduled_update_config: Types::ScheduledUpdateConfig
|
912
|
+
attr_accessor image_id: ::String
|
837
913
|
SENSITIVE: []
|
838
914
|
end
|
839
915
|
|
@@ -844,7 +920,7 @@ module Aws::SageMaker
|
|
844
920
|
end
|
845
921
|
|
846
922
|
class ClusterInstanceStatusDetails
|
847
|
-
attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating" | "DeepHealthCheckInProgress")
|
923
|
+
attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating" | "DeepHealthCheckInProgress" | "NotFound")
|
848
924
|
attr_accessor message: ::String
|
849
925
|
SENSITIVE: []
|
850
926
|
end
|
@@ -866,9 +942,17 @@ module Aws::SageMaker
|
|
866
942
|
SENSITIVE: []
|
867
943
|
end
|
868
944
|
|
945
|
+
class ClusterMetadata
|
946
|
+
attr_accessor failure_message: ::String
|
947
|
+
attr_accessor eks_role_access_entries: ::Array[::String]
|
948
|
+
attr_accessor slr_access_entry: ::String
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
869
952
|
class ClusterNodeDetails
|
870
953
|
attr_accessor instance_group_name: ::String
|
871
954
|
attr_accessor instance_id: ::String
|
955
|
+
attr_accessor node_logical_id: ::String
|
872
956
|
attr_accessor instance_status: Types::ClusterInstanceStatusDetails
|
873
957
|
attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge")
|
874
958
|
attr_accessor launch_time: ::Time
|
@@ -881,12 +965,15 @@ module Aws::SageMaker
|
|
881
965
|
attr_accessor private_primary_ipv_6: ::String
|
882
966
|
attr_accessor private_dns_hostname: ::String
|
883
967
|
attr_accessor placement: Types::ClusterInstancePlacement
|
968
|
+
attr_accessor current_image_id: ::String
|
969
|
+
attr_accessor desired_image_id: ::String
|
884
970
|
SENSITIVE: []
|
885
971
|
end
|
886
972
|
|
887
973
|
class ClusterNodeSummary
|
888
974
|
attr_accessor instance_group_name: ::String
|
889
975
|
attr_accessor instance_id: ::String
|
976
|
+
attr_accessor node_logical_id: ::String
|
890
977
|
attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge")
|
891
978
|
attr_accessor launch_time: ::Time
|
892
979
|
attr_accessor last_software_update_time: ::Time
|
@@ -1260,6 +1347,7 @@ module Aws::SageMaker
|
|
1260
1347
|
attr_accessor tags: ::Array[Types::Tag]
|
1261
1348
|
attr_accessor orchestrator: Types::ClusterOrchestrator
|
1262
1349
|
attr_accessor node_recovery: ("Automatic" | "None")
|
1350
|
+
attr_accessor node_provisioning_mode: ("Continuous")
|
1263
1351
|
SENSITIVE: []
|
1264
1352
|
end
|
1265
1353
|
|
@@ -3002,9 +3090,21 @@ module Aws::SageMaker
|
|
3002
3090
|
SENSITIVE: []
|
3003
3091
|
end
|
3004
3092
|
|
3093
|
+
class DescribeClusterEventRequest
|
3094
|
+
attr_accessor event_id: ::String
|
3095
|
+
attr_accessor cluster_name: ::String
|
3096
|
+
SENSITIVE: []
|
3097
|
+
end
|
3098
|
+
|
3099
|
+
class DescribeClusterEventResponse
|
3100
|
+
attr_accessor event_details: Types::ClusterEventDetail
|
3101
|
+
SENSITIVE: []
|
3102
|
+
end
|
3103
|
+
|
3005
3104
|
class DescribeClusterNodeRequest
|
3006
3105
|
attr_accessor cluster_name: ::String
|
3007
3106
|
attr_accessor node_id: ::String
|
3107
|
+
attr_accessor node_logical_id: ::String
|
3008
3108
|
SENSITIVE: []
|
3009
3109
|
end
|
3010
3110
|
|
@@ -3029,6 +3129,7 @@ module Aws::SageMaker
|
|
3029
3129
|
attr_accessor vpc_config: Types::VpcConfig
|
3030
3130
|
attr_accessor orchestrator: Types::ClusterOrchestrator
|
3031
3131
|
attr_accessor node_recovery: ("Automatic" | "None")
|
3132
|
+
attr_accessor node_provisioning_mode: ("Continuous")
|
3032
3133
|
SENSITIVE: []
|
3033
3134
|
end
|
3034
3135
|
|
@@ -4773,6 +4874,31 @@ module Aws::SageMaker
|
|
4773
4874
|
SENSITIVE: []
|
4774
4875
|
end
|
4775
4876
|
|
4877
|
+
class EventDetails
|
4878
|
+
attr_accessor event_metadata: Types::EventMetadata
|
4879
|
+
SENSITIVE: []
|
4880
|
+
end
|
4881
|
+
|
4882
|
+
class EventMetadata
|
4883
|
+
attr_accessor cluster: Types::ClusterMetadata
|
4884
|
+
attr_accessor instance_group: Types::InstanceGroupMetadata
|
4885
|
+
attr_accessor instance_group_scaling: Types::InstanceGroupScalingMetadata
|
4886
|
+
attr_accessor instance: Types::InstanceMetadata
|
4887
|
+
attr_accessor unknown: untyped
|
4888
|
+
SENSITIVE: []
|
4889
|
+
|
4890
|
+
class Cluster < EventMetadata
|
4891
|
+
end
|
4892
|
+
class InstanceGroup < EventMetadata
|
4893
|
+
end
|
4894
|
+
class InstanceGroupScaling < EventMetadata
|
4895
|
+
end
|
4896
|
+
class Instance < EventMetadata
|
4897
|
+
end
|
4898
|
+
class Unknown < EventMetadata
|
4899
|
+
end
|
4900
|
+
end
|
4901
|
+
|
4776
4902
|
class Experiment
|
4777
4903
|
attr_accessor experiment_name: ::String
|
4778
4904
|
attr_accessor experiment_arn: ::String
|
@@ -5594,6 +5720,33 @@ module Aws::SageMaker
|
|
5594
5720
|
SENSITIVE: []
|
5595
5721
|
end
|
5596
5722
|
|
5723
|
+
class InstanceGroupMetadata
|
5724
|
+
attr_accessor failure_message: ::String
|
5725
|
+
attr_accessor availability_zone_id: ::String
|
5726
|
+
attr_accessor capacity_reservation: Types::CapacityReservation
|
5727
|
+
attr_accessor subnet_id: ::String
|
5728
|
+
attr_accessor security_group_ids: ::Array[::String]
|
5729
|
+
attr_accessor ami_override: ::String
|
5730
|
+
SENSITIVE: []
|
5731
|
+
end
|
5732
|
+
|
5733
|
+
class InstanceGroupScalingMetadata
|
5734
|
+
attr_accessor instance_count: ::Integer
|
5735
|
+
attr_accessor target_count: ::Integer
|
5736
|
+
attr_accessor failure_message: ::String
|
5737
|
+
SENSITIVE: []
|
5738
|
+
end
|
5739
|
+
|
5740
|
+
class InstanceMetadata
|
5741
|
+
attr_accessor customer_eni: ::String
|
5742
|
+
attr_accessor additional_enis: Types::AdditionalEnis
|
5743
|
+
attr_accessor capacity_reservation: Types::CapacityReservation
|
5744
|
+
attr_accessor failure_message: ::String
|
5745
|
+
attr_accessor lcs_execution_state: ::String
|
5746
|
+
attr_accessor node_logical_id: ::String
|
5747
|
+
SENSITIVE: []
|
5748
|
+
end
|
5749
|
+
|
5597
5750
|
class InstanceMetadataServiceConfiguration
|
5598
5751
|
attr_accessor minimum_instance_metadata_service_version: ::String
|
5599
5752
|
SENSITIVE: []
|
@@ -5945,6 +6098,26 @@ module Aws::SageMaker
|
|
5945
6098
|
SENSITIVE: []
|
5946
6099
|
end
|
5947
6100
|
|
6101
|
+
class ListClusterEventsRequest
|
6102
|
+
attr_accessor cluster_name: ::String
|
6103
|
+
attr_accessor instance_group_name: ::String
|
6104
|
+
attr_accessor node_id: ::String
|
6105
|
+
attr_accessor event_time_after: ::Time
|
6106
|
+
attr_accessor event_time_before: ::Time
|
6107
|
+
attr_accessor sort_by: ("EventTime")
|
6108
|
+
attr_accessor sort_order: ("Ascending" | "Descending")
|
6109
|
+
attr_accessor resource_type: ("Cluster" | "InstanceGroup" | "Instance")
|
6110
|
+
attr_accessor max_results: ::Integer
|
6111
|
+
attr_accessor next_token: ::String
|
6112
|
+
SENSITIVE: []
|
6113
|
+
end
|
6114
|
+
|
6115
|
+
class ListClusterEventsResponse
|
6116
|
+
attr_accessor next_token: ::String
|
6117
|
+
attr_accessor events: ::Array[Types::ClusterEventSummary]
|
6118
|
+
SENSITIVE: []
|
6119
|
+
end
|
6120
|
+
|
5948
6121
|
class ListClusterNodesRequest
|
5949
6122
|
attr_accessor cluster_name: ::String
|
5950
6123
|
attr_accessor creation_time_after: ::Time
|
@@ -5954,6 +6127,7 @@ module Aws::SageMaker
|
|
5954
6127
|
attr_accessor next_token: ::String
|
5955
6128
|
attr_accessor sort_by: ("CREATION_TIME" | "NAME")
|
5956
6129
|
attr_accessor sort_order: ("Ascending" | "Descending")
|
6130
|
+
attr_accessor include_node_logical_ids: bool
|
5957
6131
|
SENSITIVE: []
|
5958
6132
|
end
|
5959
6133
|
|
@@ -8002,6 +8176,13 @@ module Aws::SageMaker
|
|
8002
8176
|
SENSITIVE: []
|
8003
8177
|
end
|
8004
8178
|
|
8179
|
+
class NodeAdditionResult
|
8180
|
+
attr_accessor node_logical_id: ::String
|
8181
|
+
attr_accessor instance_group_name: ::String
|
8182
|
+
attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating" | "DeepHealthCheckInProgress" | "NotFound")
|
8183
|
+
SENSITIVE: []
|
8184
|
+
end
|
8185
|
+
|
8005
8186
|
class NotebookInstanceLifecycleConfigSummary
|
8006
8187
|
attr_accessor notebook_instance_lifecycle_config_name: ::String
|
8007
8188
|
attr_accessor notebook_instance_lifecycle_config_arn: ::String
|
@@ -10282,6 +10463,7 @@ module Aws::SageMaker
|
|
10282
10463
|
attr_accessor cluster_name: ::String
|
10283
10464
|
attr_accessor instance_groups: ::Array[Types::UpdateClusterSoftwareInstanceGroupSpecification]
|
10284
10465
|
attr_accessor deployment_config: Types::DeploymentConfiguration
|
10466
|
+
attr_accessor image_id: ::String
|
10285
10467
|
SENSITIVE: []
|
10286
10468
|
end
|
10287
10469
|
|