aws-sdk-sagemaker 1.346.0 → 1.347.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 +8 -6
- data/lib/aws-sdk-sagemaker/client_api.rb +3 -2
- data/lib/aws-sdk-sagemaker/types.rb +20 -16
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +3 -3
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2884a5c4eceb48690629fc7185e4d776c17b3a6e37b510eebc4c540a16469b78
|
|
4
|
+
data.tar.gz: 364210dc214362ac082f728ab5ed11a6887f8e2d94553f61c9e819c53aca8183
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c5fa3fe38831d2d0b73d983c5e5d9f32e26fcf5c01cdce8b2e0441413403c7e0985b3516dac811bc06742c2261c608b1685c995ad445e22dd974b049bc29e55
|
|
7
|
+
data.tar.gz: 6a00228ebca0af0ae9e87c87ca24099c61b09244e9b8d8946c56e5260afb612b77721531752562a4e510febde61405d5708d04e9314ada0528ad0477a4c591e1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.347.0 (2026-01-12)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added ultraServerType to the UltraServerInfo structure to support server type identification for SageMaker HyperPod
|
|
8
|
+
|
|
4
9
|
1.346.0 (2026-01-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.347.0
|
|
@@ -14138,6 +14138,7 @@ module Aws::SageMaker
|
|
|
14138
14138
|
# resp.node_details.current_image_id #=> String
|
|
14139
14139
|
# resp.node_details.desired_image_id #=> String
|
|
14140
14140
|
# resp.node_details.ultra_server_info.id #=> String
|
|
14141
|
+
# resp.node_details.ultra_server_info.type #=> String
|
|
14141
14142
|
# resp.node_details.kubernetes_config.current_labels #=> Hash
|
|
14142
14143
|
# resp.node_details.kubernetes_config.current_labels["ClusterKubernetesLabelKey"] #=> String
|
|
14143
14144
|
# resp.node_details.kubernetes_config.desired_labels #=> Hash
|
|
@@ -20961,6 +20962,7 @@ module Aws::SageMaker
|
|
|
20961
20962
|
# resp.cluster_node_summaries[0].instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating", "DeepHealthCheckInProgress", "NotFound"
|
|
20962
20963
|
# resp.cluster_node_summaries[0].instance_status.message #=> String
|
|
20963
20964
|
# resp.cluster_node_summaries[0].ultra_server_info.id #=> String
|
|
20965
|
+
# resp.cluster_node_summaries[0].ultra_server_info.type #=> String
|
|
20964
20966
|
# resp.cluster_node_summaries[0].private_dns_hostname #=> String
|
|
20965
20967
|
#
|
|
20966
20968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodes AWS API Documentation
|
|
@@ -27190,10 +27192,10 @@ module Aws::SageMaker
|
|
|
27190
27192
|
# A filter to search for reserved capacity offerings with an end time
|
|
27191
27193
|
# before a specified date.
|
|
27192
27194
|
#
|
|
27193
|
-
# @option params [
|
|
27195
|
+
# @option params [Integer] :duration_hours
|
|
27194
27196
|
# The desired duration in hours for the training plan offerings.
|
|
27195
27197
|
#
|
|
27196
|
-
# @option params [
|
|
27198
|
+
# @option params [Array<String>] :target_resources
|
|
27197
27199
|
# The target resources (e.g., SageMaker Training Jobs, SageMaker
|
|
27198
27200
|
# HyperPod, SageMaker Endpoints) to search for in the offerings.
|
|
27199
27201
|
#
|
|
@@ -27222,8 +27224,8 @@ module Aws::SageMaker
|
|
|
27222
27224
|
# ultra_server_count: 1,
|
|
27223
27225
|
# start_time_after: Time.now,
|
|
27224
27226
|
# end_time_before: Time.now,
|
|
27225
|
-
# duration_hours: 1,
|
|
27226
|
-
# target_resources: ["training-job"], #
|
|
27227
|
+
# duration_hours: 1,
|
|
27228
|
+
# target_resources: ["training-job"], # accepts training-job, hyperpod-cluster, endpoint
|
|
27227
27229
|
# })
|
|
27228
27230
|
#
|
|
27229
27231
|
# @example Response structure
|
|
@@ -27520,7 +27522,7 @@ module Aws::SageMaker
|
|
|
27520
27522
|
# The ID of the pipeline version to start execution from.
|
|
27521
27523
|
#
|
|
27522
27524
|
# @option params [String] :mlflow_experiment_name
|
|
27523
|
-
# The MLflow experiment name of the
|
|
27525
|
+
# The MLflow experiment name of the pipeline execution.
|
|
27524
27526
|
#
|
|
27525
27527
|
# @return [Types::StartPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
27526
27528
|
#
|
|
@@ -32181,7 +32183,7 @@ module Aws::SageMaker
|
|
|
32181
32183
|
tracer: tracer
|
|
32182
32184
|
)
|
|
32183
32185
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
32184
|
-
context[:gem_version] = '1.
|
|
32186
|
+
context[:gem_version] = '1.347.0'
|
|
32185
32187
|
Seahorse::Client::Request.new(handlers, context)
|
|
32186
32188
|
end
|
|
32187
32189
|
|
|
@@ -10923,8 +10923,8 @@ module Aws::SageMaker
|
|
|
10923
10923
|
SearchTrainingPlanOfferingsRequest.add_member(:ultra_server_count, Shapes::ShapeRef.new(shape: UltraServerCount, location_name: "UltraServerCount"))
|
|
10924
10924
|
SearchTrainingPlanOfferingsRequest.add_member(:start_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTimeAfter"))
|
|
10925
10925
|
SearchTrainingPlanOfferingsRequest.add_member(:end_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimeBefore"))
|
|
10926
|
-
SearchTrainingPlanOfferingsRequest.add_member(:duration_hours, Shapes::ShapeRef.new(shape: TrainingPlanDurationHoursInput,
|
|
10927
|
-
SearchTrainingPlanOfferingsRequest.add_member(:target_resources, Shapes::ShapeRef.new(shape: SageMakerResourceNames,
|
|
10926
|
+
SearchTrainingPlanOfferingsRequest.add_member(:duration_hours, Shapes::ShapeRef.new(shape: TrainingPlanDurationHoursInput, location_name: "DurationHours"))
|
|
10927
|
+
SearchTrainingPlanOfferingsRequest.add_member(:target_resources, Shapes::ShapeRef.new(shape: SageMakerResourceNames, location_name: "TargetResources"))
|
|
10928
10928
|
SearchTrainingPlanOfferingsRequest.struct_class = Types::SearchTrainingPlanOfferingsRequest
|
|
10929
10929
|
|
|
10930
10930
|
SearchTrainingPlanOfferingsResponse.add_member(:training_plan_offerings, Shapes::ShapeRef.new(shape: TrainingPlanOfferings, required: true, location_name: "TrainingPlanOfferings"))
|
|
@@ -11739,6 +11739,7 @@ module Aws::SageMaker
|
|
|
11739
11739
|
UltraServer.struct_class = Types::UltraServer
|
|
11740
11740
|
|
|
11741
11741
|
UltraServerInfo.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "Id"))
|
|
11742
|
+
UltraServerInfo.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
11742
11743
|
UltraServerInfo.struct_class = Types::UltraServerInfo
|
|
11743
11744
|
|
|
11744
11745
|
UltraServerSummary.add_member(:ultra_server_type, Shapes::ShapeRef.new(shape: UltraServerType, required: true, location_name: "UltraServerType"))
|
|
@@ -3963,8 +3963,8 @@ module Aws::SageMaker
|
|
|
3963
3963
|
# The metadata of the Amazon Bedrock custom model deployment.
|
|
3964
3964
|
#
|
|
3965
3965
|
# @!attribute [rw] arn
|
|
3966
|
-
# The Amazon Resource Name (ARN)
|
|
3967
|
-
#
|
|
3966
|
+
# The Amazon Resource Name (ARN) for the Amazon Bedrock custom model
|
|
3967
|
+
# deployment.
|
|
3968
3968
|
# @return [String]
|
|
3969
3969
|
#
|
|
3970
3970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BedrockCustomModelDeploymentMetadata AWS API Documentation
|
|
@@ -3978,8 +3978,7 @@ module Aws::SageMaker
|
|
|
3978
3978
|
# The metadata of the Amazon Bedrock custom model.
|
|
3979
3979
|
#
|
|
3980
3980
|
# @!attribute [rw] arn
|
|
3981
|
-
# The Amazon Resource Name (ARN) of the Amazon Bedrock custom model
|
|
3982
|
-
# metadata.
|
|
3981
|
+
# The Amazon Resource Name (ARN) of the Amazon Bedrock custom model.
|
|
3983
3982
|
# @return [String]
|
|
3984
3983
|
#
|
|
3985
3984
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BedrockCustomModelMetadata AWS API Documentation
|
|
@@ -3993,8 +3992,7 @@ module Aws::SageMaker
|
|
|
3993
3992
|
# The metadata of the Amazon Bedrock model import.
|
|
3994
3993
|
#
|
|
3995
3994
|
# @!attribute [rw] arn
|
|
3996
|
-
# The Amazon Resource Name (ARN) of the Amazon Bedrock model import
|
|
3997
|
-
# metadata.
|
|
3995
|
+
# The Amazon Resource Name (ARN) of the Amazon Bedrock model import.
|
|
3998
3996
|
# @return [String]
|
|
3999
3997
|
#
|
|
4000
3998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BedrockModelImportMetadata AWS API Documentation
|
|
@@ -4009,7 +4007,7 @@ module Aws::SageMaker
|
|
|
4009
4007
|
#
|
|
4010
4008
|
# @!attribute [rw] arn
|
|
4011
4009
|
# The Amazon Resource Name (ARN) of the Amazon Bedrock provisioned
|
|
4012
|
-
# model throughput
|
|
4010
|
+
# model throughput.
|
|
4013
4011
|
# @return [String]
|
|
4014
4012
|
#
|
|
4015
4013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BedrockProvisionedModelThroughputMetadata AWS API Documentation
|
|
@@ -28763,7 +28761,7 @@ module Aws::SageMaker
|
|
|
28763
28761
|
# The metadata of the inference component.
|
|
28764
28762
|
#
|
|
28765
28763
|
# @!attribute [rw] arn
|
|
28766
|
-
# The Amazon Resource Name (ARN) of the inference component
|
|
28764
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
|
28767
28765
|
# @return [String]
|
|
28768
28766
|
#
|
|
28769
28767
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentMetadata AWS API Documentation
|
|
@@ -30720,19 +30718,19 @@ module Aws::SageMaker
|
|
|
30720
30718
|
# and contexts.
|
|
30721
30719
|
#
|
|
30722
30720
|
# @!attribute [rw] action_arns
|
|
30723
|
-
# The Amazon Resource Name (ARN) of the lineage
|
|
30721
|
+
# The Amazon Resource Name (ARN) of the lineage action.
|
|
30724
30722
|
# @return [Hash<String,String>]
|
|
30725
30723
|
#
|
|
30726
30724
|
# @!attribute [rw] artifact_arns
|
|
30727
|
-
# The Amazon Resource Name (ARN) of the lineage
|
|
30725
|
+
# The Amazon Resource Name (ARN) of the lineage artifact.
|
|
30728
30726
|
# @return [Hash<String,String>]
|
|
30729
30727
|
#
|
|
30730
30728
|
# @!attribute [rw] context_arns
|
|
30731
|
-
# The Amazon Resource Name (ARN) of the lineage
|
|
30729
|
+
# The Amazon Resource Name (ARN) of the lineage context.
|
|
30732
30730
|
# @return [Hash<String,String>]
|
|
30733
30731
|
#
|
|
30734
30732
|
# @!attribute [rw] associations
|
|
30735
|
-
# The lineage
|
|
30733
|
+
# The lineage associations.
|
|
30736
30734
|
# @return [Array<Types::AssociationInfo>]
|
|
30737
30735
|
#
|
|
30738
30736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LineageMetadata AWS API Documentation
|
|
@@ -38839,11 +38837,12 @@ module Aws::SageMaker
|
|
|
38839
38837
|
# @return [String]
|
|
38840
38838
|
#
|
|
38841
38839
|
# @!attribute [rw] is_checkpoint
|
|
38842
|
-
#
|
|
38840
|
+
# Specifies whether the model data is a training checkpoint.
|
|
38843
38841
|
# @return [Boolean]
|
|
38844
38842
|
#
|
|
38845
38843
|
# @!attribute [rw] base_model
|
|
38846
|
-
#
|
|
38844
|
+
# Identifies the foundation model that was used as the starting point
|
|
38845
|
+
# for model customization.
|
|
38847
38846
|
# @return [Types::BaseModel]
|
|
38848
38847
|
#
|
|
38849
38848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
|
|
@@ -48270,7 +48269,7 @@ module Aws::SageMaker
|
|
|
48270
48269
|
# @return [Integer]
|
|
48271
48270
|
#
|
|
48272
48271
|
# @!attribute [rw] mlflow_experiment_name
|
|
48273
|
-
# The MLflow experiment name of the
|
|
48272
|
+
# The MLflow experiment name of the pipeline execution.
|
|
48274
48273
|
# @return [String]
|
|
48275
48274
|
#
|
|
48276
48275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartPipelineExecutionRequest AWS API Documentation
|
|
@@ -52267,10 +52266,15 @@ module Aws::SageMaker
|
|
|
52267
52266
|
# The unique identifier of the UltraServer.
|
|
52268
52267
|
# @return [String]
|
|
52269
52268
|
#
|
|
52269
|
+
# @!attribute [rw] type
|
|
52270
|
+
# The type of the UltraServer.
|
|
52271
|
+
# @return [String]
|
|
52272
|
+
#
|
|
52270
52273
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UltraServerInfo AWS API Documentation
|
|
52271
52274
|
#
|
|
52272
52275
|
class UltraServerInfo < Struct.new(
|
|
52273
|
-
:id
|
|
52276
|
+
:id,
|
|
52277
|
+
:type)
|
|
52274
52278
|
SENSITIVE = []
|
|
52275
52279
|
include Aws::Structure
|
|
52276
52280
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -8838,10 +8838,10 @@ module Aws
|
|
|
8838
8838
|
?ultra_server_count: ::Integer,
|
|
8839
8839
|
?start_time_after: ::Time,
|
|
8840
8840
|
?end_time_before: ::Time,
|
|
8841
|
-
duration_hours: ::Integer,
|
|
8842
|
-
target_resources: Array[("training-job" | "hyperpod-cluster" | "endpoint")]
|
|
8841
|
+
?duration_hours: ::Integer,
|
|
8842
|
+
?target_resources: Array[("training-job" | "hyperpod-cluster" | "endpoint")]
|
|
8843
8843
|
) -> _SearchTrainingPlanOfferingsResponseSuccess
|
|
8844
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchTrainingPlanOfferingsResponseSuccess
|
|
8844
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchTrainingPlanOfferingsResponseSuccess
|
|
8845
8845
|
|
|
8846
8846
|
interface _SendPipelineExecutionStepFailureResponseSuccess
|
|
8847
8847
|
include ::Seahorse::Client::_ResponseSuccess[Types::SendPipelineExecutionStepFailureResponse]
|
data/sig/types.rbs
CHANGED
|
@@ -10909,6 +10909,7 @@ module Aws::SageMaker
|
|
|
10909
10909
|
|
|
10910
10910
|
class UltraServerInfo
|
|
10911
10911
|
attr_accessor id: ::String
|
|
10912
|
+
attr_accessor type: ::String
|
|
10912
10913
|
SENSITIVE: []
|
|
10913
10914
|
end
|
|
10914
10915
|
|