aws-sdk-sagemaker 1.317.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +435 -17
- data/lib/aws-sdk-sagemaker/client_api.rb +279 -0
- data/lib/aws-sdk-sagemaker/types.rb +927 -12
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +100 -7
- data/sig/types.rbs +217 -1
- metadata +1 -1
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -120,15 +120,53 @@ module Aws
|
|
120
120
|
) -> _AssociateTrialComponentResponseSuccess
|
121
121
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateTrialComponentResponseSuccess
|
122
122
|
|
123
|
+
interface _AttachClusterNodeVolumeResponseSuccess
|
124
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AttachClusterNodeVolumeResponse]
|
125
|
+
def cluster_arn: () -> ::String
|
126
|
+
def node_id: () -> ::String
|
127
|
+
def volume_id: () -> ::String
|
128
|
+
def attach_time: () -> ::Time
|
129
|
+
def status: () -> ("attaching" | "attached" | "detaching" | "detached" | "busy")
|
130
|
+
def device_name: () -> ::String
|
131
|
+
end
|
132
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#attach_cluster_node_volume-instance_method
|
133
|
+
def attach_cluster_node_volume: (
|
134
|
+
cluster_arn: ::String,
|
135
|
+
node_id: ::String,
|
136
|
+
volume_id: ::String
|
137
|
+
) -> _AttachClusterNodeVolumeResponseSuccess
|
138
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachClusterNodeVolumeResponseSuccess
|
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
|
+
|
123
158
|
interface _BatchDeleteClusterNodesResponseSuccess
|
124
159
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteClusterNodesResponse]
|
125
160
|
def failed: () -> ::Array[Types::BatchDeleteClusterNodesError]
|
126
161
|
def successful: () -> ::Array[::String]
|
162
|
+
def failed_node_logical_ids: () -> ::Array[Types::BatchDeleteClusterNodeLogicalIdsError]
|
163
|
+
def successful_node_logical_ids: () -> ::Array[::String]
|
127
164
|
end
|
128
165
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#batch_delete_cluster_nodes-instance_method
|
129
166
|
def batch_delete_cluster_nodes: (
|
130
167
|
cluster_name: ::String,
|
131
|
-
?node_ids: Array[::String]
|
168
|
+
?node_ids: Array[::String],
|
169
|
+
?node_logical_ids: Array[::String]
|
132
170
|
) -> _BatchDeleteClusterNodesResponseSuccess
|
133
171
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteClusterNodesResponseSuccess
|
134
172
|
|
@@ -770,7 +808,8 @@ module Aws
|
|
770
808
|
},
|
771
809
|
]?
|
772
810
|
}?
|
773
|
-
}
|
811
|
+
}?,
|
812
|
+
image_id: ::String?
|
774
813
|
},
|
775
814
|
],
|
776
815
|
?restricted_instance_groups: Array[
|
@@ -837,7 +876,8 @@ module Aws
|
|
837
876
|
cluster_arn: ::String
|
838
877
|
}
|
839
878
|
},
|
840
|
-
?node_recovery: ("Automatic" | "None")
|
879
|
+
?node_recovery: ("Automatic" | "None"),
|
880
|
+
?node_provisioning_mode: ("Continuous")
|
841
881
|
) -> _CreateClusterResponseSuccess
|
842
882
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
843
883
|
|
@@ -5326,6 +5366,7 @@ module Aws
|
|
5326
5366
|
def vpc_config: () -> Types::VpcConfig
|
5327
5367
|
def orchestrator: () -> Types::ClusterOrchestrator
|
5328
5368
|
def node_recovery: () -> ("Automatic" | "None")
|
5369
|
+
def node_provisioning_mode: () -> ("Continuous")
|
5329
5370
|
end
|
5330
5371
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster-instance_method
|
5331
5372
|
def describe_cluster: (
|
@@ -5333,6 +5374,17 @@ module Aws
|
|
5333
5374
|
) -> _DescribeClusterResponseSuccess
|
5334
5375
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
|
5335
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
|
+
|
5336
5388
|
interface _DescribeClusterNodeResponseSuccess
|
5337
5389
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterNodeResponse]
|
5338
5390
|
def node_details: () -> Types::ClusterNodeDetails
|
@@ -5340,7 +5392,8 @@ module Aws
|
|
5340
5392
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster_node-instance_method
|
5341
5393
|
def describe_cluster_node: (
|
5342
5394
|
cluster_name: ::String,
|
5343
|
-
?node_id: ::String
|
5395
|
+
?node_id: ::String,
|
5396
|
+
?node_logical_id: ::String
|
5344
5397
|
) -> _DescribeClusterNodeResponseSuccess
|
5345
5398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterNodeResponseSuccess
|
5346
5399
|
|
@@ -6631,6 +6684,23 @@ module Aws
|
|
6631
6684
|
) -> _DescribeWorkteamResponseSuccess
|
6632
6685
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkteamResponseSuccess
|
6633
6686
|
|
6687
|
+
interface _DetachClusterNodeVolumeResponseSuccess
|
6688
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DetachClusterNodeVolumeResponse]
|
6689
|
+
def cluster_arn: () -> ::String
|
6690
|
+
def node_id: () -> ::String
|
6691
|
+
def volume_id: () -> ::String
|
6692
|
+
def attach_time: () -> ::Time
|
6693
|
+
def status: () -> ("attaching" | "attached" | "detaching" | "detached" | "busy")
|
6694
|
+
def device_name: () -> ::String
|
6695
|
+
end
|
6696
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#detach_cluster_node_volume-instance_method
|
6697
|
+
def detach_cluster_node_volume: (
|
6698
|
+
cluster_arn: ::String,
|
6699
|
+
node_id: ::String,
|
6700
|
+
volume_id: ::String
|
6701
|
+
) -> _DetachClusterNodeVolumeResponseSuccess
|
6702
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachClusterNodeVolumeResponseSuccess
|
6703
|
+
|
6634
6704
|
interface _DisableSagemakerServicecatalogPortfolioResponseSuccess
|
6635
6705
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisableSagemakerServicecatalogPortfolioOutput]
|
6636
6706
|
end
|
@@ -6933,6 +7003,26 @@ module Aws
|
|
6933
7003
|
) -> _ListCandidatesForAutoMLJobResponseSuccess
|
6934
7004
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCandidatesForAutoMLJobResponseSuccess
|
6935
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
|
+
|
6936
7026
|
interface _ListClusterNodesResponseSuccess
|
6937
7027
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterNodesResponse]
|
6938
7028
|
def next_token: () -> ::String
|
@@ -6947,7 +7037,8 @@ module Aws
|
|
6947
7037
|
?max_results: ::Integer,
|
6948
7038
|
?next_token: ::String,
|
6949
7039
|
?sort_by: ("CREATION_TIME" | "NAME"),
|
6950
|
-
?sort_order: ("Ascending" | "Descending")
|
7040
|
+
?sort_order: ("Ascending" | "Descending"),
|
7041
|
+
?include_node_logical_ids: bool
|
6951
7042
|
) -> _ListClusterNodesResponseSuccess
|
6952
7043
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterNodesResponseSuccess
|
6953
7044
|
|
@@ -8765,7 +8856,8 @@ module Aws
|
|
8765
8856
|
},
|
8766
8857
|
]?
|
8767
8858
|
}?
|
8768
|
-
}
|
8859
|
+
}?,
|
8860
|
+
image_id: ::String?
|
8769
8861
|
},
|
8770
8862
|
],
|
8771
8863
|
?restricted_instance_groups: Array[
|
@@ -8873,7 +8965,8 @@ module Aws
|
|
8873
8965
|
alarm_name: ::String
|
8874
8966
|
},
|
8875
8967
|
]?
|
8876
|
-
}
|
8968
|
+
},
|
8969
|
+
?image_id: ::String
|
8877
8970
|
) -> _UpdateClusterSoftwareResponseSuccess
|
8878
8971
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterSoftwareResponseSuccess
|
8879
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
|
@@ -269,6 +280,23 @@ module Aws::SageMaker
|
|
269
280
|
SENSITIVE: []
|
270
281
|
end
|
271
282
|
|
283
|
+
class AttachClusterNodeVolumeRequest
|
284
|
+
attr_accessor cluster_arn: ::String
|
285
|
+
attr_accessor node_id: ::String
|
286
|
+
attr_accessor volume_id: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class AttachClusterNodeVolumeResponse
|
291
|
+
attr_accessor cluster_arn: ::String
|
292
|
+
attr_accessor node_id: ::String
|
293
|
+
attr_accessor volume_id: ::String
|
294
|
+
attr_accessor attach_time: ::Time
|
295
|
+
attr_accessor status: ("attaching" | "attached" | "detaching" | "detached" | "busy")
|
296
|
+
attr_accessor device_name: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
272
300
|
class AuthorizedUrl
|
273
301
|
attr_accessor url: ::String
|
274
302
|
attr_accessor local_path: ::String
|
@@ -478,6 +506,27 @@ module Aws::SageMaker
|
|
478
506
|
SENSITIVE: []
|
479
507
|
end
|
480
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
|
+
|
481
530
|
class BatchDataCaptureConfig
|
482
531
|
attr_accessor destination_s3_uri: ::String
|
483
532
|
attr_accessor kms_key_id: ::String
|
@@ -485,6 +534,13 @@ module Aws::SageMaker
|
|
485
534
|
SENSITIVE: []
|
486
535
|
end
|
487
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
|
+
|
488
544
|
class BatchDeleteClusterNodesError
|
489
545
|
attr_accessor code: ("NodeIdNotFound" | "InvalidNodeStatus" | "NodeIdInUse")
|
490
546
|
attr_accessor message: ::String
|
@@ -495,12 +551,15 @@ module Aws::SageMaker
|
|
495
551
|
class BatchDeleteClusterNodesRequest
|
496
552
|
attr_accessor cluster_name: ::String
|
497
553
|
attr_accessor node_ids: ::Array[::String]
|
554
|
+
attr_accessor node_logical_ids: ::Array[::String]
|
498
555
|
SENSITIVE: []
|
499
556
|
end
|
500
557
|
|
501
558
|
class BatchDeleteClusterNodesResponse
|
502
559
|
attr_accessor failed: ::Array[Types::BatchDeleteClusterNodesError]
|
503
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]
|
504
563
|
SENSITIVE: []
|
505
564
|
end
|
506
565
|
|
@@ -610,6 +669,12 @@ module Aws::SageMaker
|
|
610
669
|
SENSITIVE: []
|
611
670
|
end
|
612
671
|
|
672
|
+
class CapacityReservation
|
673
|
+
attr_accessor arn: ::String
|
674
|
+
attr_accessor type: ("ODCR" | "CRG")
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
613
678
|
class CapacitySize
|
614
679
|
attr_accessor type: ("INSTANCE_COUNT" | "CAPACITY_PERCENT")
|
615
680
|
attr_accessor value: ::Integer
|
@@ -787,6 +852,31 @@ module Aws::SageMaker
|
|
787
852
|
SENSITIVE: []
|
788
853
|
end
|
789
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
|
+
|
790
880
|
class ClusterInstanceGroupDetails
|
791
881
|
attr_accessor current_count: ::Integer
|
792
882
|
attr_accessor target_count: ::Integer
|
@@ -802,6 +892,8 @@ module Aws::SageMaker
|
|
802
892
|
attr_accessor training_plan_status: ::String
|
803
893
|
attr_accessor override_vpc_config: Types::VpcConfig
|
804
894
|
attr_accessor scheduled_update_config: Types::ScheduledUpdateConfig
|
895
|
+
attr_accessor current_image_id: ::String
|
896
|
+
attr_accessor desired_image_id: ::String
|
805
897
|
SENSITIVE: []
|
806
898
|
end
|
807
899
|
|
@@ -817,6 +909,7 @@ module Aws::SageMaker
|
|
817
909
|
attr_accessor training_plan_arn: ::String
|
818
910
|
attr_accessor override_vpc_config: Types::VpcConfig
|
819
911
|
attr_accessor scheduled_update_config: Types::ScheduledUpdateConfig
|
912
|
+
attr_accessor image_id: ::String
|
820
913
|
SENSITIVE: []
|
821
914
|
end
|
822
915
|
|
@@ -827,7 +920,7 @@ module Aws::SageMaker
|
|
827
920
|
end
|
828
921
|
|
829
922
|
class ClusterInstanceStatusDetails
|
830
|
-
attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating" | "DeepHealthCheckInProgress")
|
923
|
+
attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating" | "DeepHealthCheckInProgress" | "NotFound")
|
831
924
|
attr_accessor message: ::String
|
832
925
|
SENSITIVE: []
|
833
926
|
end
|
@@ -849,9 +942,17 @@ module Aws::SageMaker
|
|
849
942
|
SENSITIVE: []
|
850
943
|
end
|
851
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
|
+
|
852
952
|
class ClusterNodeDetails
|
853
953
|
attr_accessor instance_group_name: ::String
|
854
954
|
attr_accessor instance_id: ::String
|
955
|
+
attr_accessor node_logical_id: ::String
|
855
956
|
attr_accessor instance_status: Types::ClusterInstanceStatusDetails
|
856
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")
|
857
958
|
attr_accessor launch_time: ::Time
|
@@ -864,12 +965,15 @@ module Aws::SageMaker
|
|
864
965
|
attr_accessor private_primary_ipv_6: ::String
|
865
966
|
attr_accessor private_dns_hostname: ::String
|
866
967
|
attr_accessor placement: Types::ClusterInstancePlacement
|
968
|
+
attr_accessor current_image_id: ::String
|
969
|
+
attr_accessor desired_image_id: ::String
|
867
970
|
SENSITIVE: []
|
868
971
|
end
|
869
972
|
|
870
973
|
class ClusterNodeSummary
|
871
974
|
attr_accessor instance_group_name: ::String
|
872
975
|
attr_accessor instance_id: ::String
|
976
|
+
attr_accessor node_logical_id: ::String
|
873
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")
|
874
978
|
attr_accessor launch_time: ::Time
|
875
979
|
attr_accessor last_software_update_time: ::Time
|
@@ -1243,6 +1347,7 @@ module Aws::SageMaker
|
|
1243
1347
|
attr_accessor tags: ::Array[Types::Tag]
|
1244
1348
|
attr_accessor orchestrator: Types::ClusterOrchestrator
|
1245
1349
|
attr_accessor node_recovery: ("Automatic" | "None")
|
1350
|
+
attr_accessor node_provisioning_mode: ("Continuous")
|
1246
1351
|
SENSITIVE: []
|
1247
1352
|
end
|
1248
1353
|
|
@@ -2985,9 +3090,21 @@ module Aws::SageMaker
|
|
2985
3090
|
SENSITIVE: []
|
2986
3091
|
end
|
2987
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
|
+
|
2988
3104
|
class DescribeClusterNodeRequest
|
2989
3105
|
attr_accessor cluster_name: ::String
|
2990
3106
|
attr_accessor node_id: ::String
|
3107
|
+
attr_accessor node_logical_id: ::String
|
2991
3108
|
SENSITIVE: []
|
2992
3109
|
end
|
2993
3110
|
|
@@ -3012,6 +3129,7 @@ module Aws::SageMaker
|
|
3012
3129
|
attr_accessor vpc_config: Types::VpcConfig
|
3013
3130
|
attr_accessor orchestrator: Types::ClusterOrchestrator
|
3014
3131
|
attr_accessor node_recovery: ("Automatic" | "None")
|
3132
|
+
attr_accessor node_provisioning_mode: ("Continuous")
|
3015
3133
|
SENSITIVE: []
|
3016
3134
|
end
|
3017
3135
|
|
@@ -4311,6 +4429,23 @@ module Aws::SageMaker
|
|
4311
4429
|
SENSITIVE: []
|
4312
4430
|
end
|
4313
4431
|
|
4432
|
+
class DetachClusterNodeVolumeRequest
|
4433
|
+
attr_accessor cluster_arn: ::String
|
4434
|
+
attr_accessor node_id: ::String
|
4435
|
+
attr_accessor volume_id: ::String
|
4436
|
+
SENSITIVE: []
|
4437
|
+
end
|
4438
|
+
|
4439
|
+
class DetachClusterNodeVolumeResponse
|
4440
|
+
attr_accessor cluster_arn: ::String
|
4441
|
+
attr_accessor node_id: ::String
|
4442
|
+
attr_accessor volume_id: ::String
|
4443
|
+
attr_accessor attach_time: ::Time
|
4444
|
+
attr_accessor status: ("attaching" | "attached" | "detaching" | "detached" | "busy")
|
4445
|
+
attr_accessor device_name: ::String
|
4446
|
+
SENSITIVE: []
|
4447
|
+
end
|
4448
|
+
|
4314
4449
|
class Device
|
4315
4450
|
attr_accessor device_name: ::String
|
4316
4451
|
attr_accessor description: ::String
|
@@ -4739,6 +4874,31 @@ module Aws::SageMaker
|
|
4739
4874
|
SENSITIVE: []
|
4740
4875
|
end
|
4741
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
|
+
|
4742
4902
|
class Experiment
|
4743
4903
|
attr_accessor experiment_name: ::String
|
4744
4904
|
attr_accessor experiment_arn: ::String
|
@@ -5560,6 +5720,33 @@ module Aws::SageMaker
|
|
5560
5720
|
SENSITIVE: []
|
5561
5721
|
end
|
5562
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
|
+
|
5563
5750
|
class InstanceMetadataServiceConfiguration
|
5564
5751
|
attr_accessor minimum_instance_metadata_service_version: ::String
|
5565
5752
|
SENSITIVE: []
|
@@ -5911,6 +6098,26 @@ module Aws::SageMaker
|
|
5911
6098
|
SENSITIVE: []
|
5912
6099
|
end
|
5913
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
|
+
|
5914
6121
|
class ListClusterNodesRequest
|
5915
6122
|
attr_accessor cluster_name: ::String
|
5916
6123
|
attr_accessor creation_time_after: ::Time
|
@@ -5920,6 +6127,7 @@ module Aws::SageMaker
|
|
5920
6127
|
attr_accessor next_token: ::String
|
5921
6128
|
attr_accessor sort_by: ("CREATION_TIME" | "NAME")
|
5922
6129
|
attr_accessor sort_order: ("Ascending" | "Descending")
|
6130
|
+
attr_accessor include_node_logical_ids: bool
|
5923
6131
|
SENSITIVE: []
|
5924
6132
|
end
|
5925
6133
|
|
@@ -7968,6 +8176,13 @@ module Aws::SageMaker
|
|
7968
8176
|
SENSITIVE: []
|
7969
8177
|
end
|
7970
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
|
+
|
7971
8186
|
class NotebookInstanceLifecycleConfigSummary
|
7972
8187
|
attr_accessor notebook_instance_lifecycle_config_name: ::String
|
7973
8188
|
attr_accessor notebook_instance_lifecycle_config_arn: ::String
|
@@ -10248,6 +10463,7 @@ module Aws::SageMaker
|
|
10248
10463
|
attr_accessor cluster_name: ::String
|
10249
10464
|
attr_accessor instance_groups: ::Array[Types::UpdateClusterSoftwareInstanceGroupSpecification]
|
10250
10465
|
attr_accessor deployment_config: Types::DeploymentConfiguration
|
10466
|
+
attr_accessor image_id: ::String
|
10251
10467
|
SENSITIVE: []
|
10252
10468
|
end
|
10253
10469
|
|