aws-sdk-sagemaker 1.346.0 → 1.348.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0169a41ab0316d17c07d56fc99af052f55f121d30348ecf501a14790059da60a'
4
- data.tar.gz: 7ee295f70e5f8b66cc170fc14ba2cbcda8933949a45b5a65afd41cdb1e81d437
3
+ metadata.gz: 33d48f10f523ea038681bf87c56fc46fde23f227985b4676f3d1c67441172c1e
4
+ data.tar.gz: 5f56afd71aebeeaaddbc189702d217a018fc4ba7b8b033a0dffad7ed35cc223d
5
5
  SHA512:
6
- metadata.gz: b4a15c47f229ce2d28c9a7c8bb2cab3173f16e090ef37474dfc72094d11be4fde3bbf4f4d163f439dd68810cfb6a32d9a808e773633bbc5aa831e09a84f87e04
7
- data.tar.gz: 1986cce8e2c568e9dc17a4139c087d00e55ee6c588d787f79218c221b261048bf323739aa274d211c43d53700f15acc7af6c27aeadd0bde4513e939642a1c987
6
+ metadata.gz: c28a45e5100a4fa2caf551f509b83b0eb75bf0211b5a46688376ac8aadee293f8a30cc2e89074b9b7d2dbeda615b2d39d6f2db3b3d6429a5ebe4605b7dab8d68
7
+ data.tar.gz: e445405f216a503ca12b3b96d5629191b6ec885900b24b6320bd2932bef272982594c39d5d4dcc7677cc212efb391c1c8d21e0ed8f67af800883f6790cb92f7c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.348.0 (2026-01-16)
5
+ ------------------
6
+
7
+ * Feature - Adding security consideration comments for lcc accessing execution role under root access
8
+
9
+ 1.347.0 (2026-01-12)
10
+ ------------------
11
+
12
+ * Feature - Added ultraServerType to the UltraServerInfo structure to support server type identification for SageMaker HyperPod
13
+
4
14
  1.346.0 (2026-01-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.346.0
1
+ 1.348.0
@@ -8589,6 +8589,14 @@ module Aws::SageMaker
8589
8589
  # For information about notebook instance lifestyle configurations, see
8590
8590
  # [Step 2.1: (Optional) Customize a Notebook Instance][1].
8591
8591
  #
8592
+ # <note markdown="1"> Lifecycle configuration scripts execute with root access and the
8593
+ # notebook instance's IAM execution role privileges. Grant this
8594
+ # permission only to trusted principals. See [Customize a Notebook
8595
+ # Instance Using a Lifecycle Configuration Script][1] for security best
8596
+ # practices.
8597
+ #
8598
+ # </note>
8599
+ #
8592
8600
  #
8593
8601
  #
8594
8602
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html
@@ -14138,6 +14146,7 @@ module Aws::SageMaker
14138
14146
  # resp.node_details.current_image_id #=> String
14139
14147
  # resp.node_details.desired_image_id #=> String
14140
14148
  # resp.node_details.ultra_server_info.id #=> String
14149
+ # resp.node_details.ultra_server_info.type #=> String
14141
14150
  # resp.node_details.kubernetes_config.current_labels #=> Hash
14142
14151
  # resp.node_details.kubernetes_config.current_labels["ClusterKubernetesLabelKey"] #=> String
14143
14152
  # resp.node_details.kubernetes_config.desired_labels #=> Hash
@@ -20961,6 +20970,7 @@ module Aws::SageMaker
20961
20970
  # resp.cluster_node_summaries[0].instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating", "DeepHealthCheckInProgress", "NotFound"
20962
20971
  # resp.cluster_node_summaries[0].instance_status.message #=> String
20963
20972
  # resp.cluster_node_summaries[0].ultra_server_info.id #=> String
20973
+ # resp.cluster_node_summaries[0].ultra_server_info.type #=> String
20964
20974
  # resp.cluster_node_summaries[0].private_dns_hostname #=> String
20965
20975
  #
20966
20976
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodes AWS API Documentation
@@ -27190,10 +27200,10 @@ module Aws::SageMaker
27190
27200
  # A filter to search for reserved capacity offerings with an end time
27191
27201
  # before a specified date.
27192
27202
  #
27193
- # @option params [required, Integer] :duration_hours
27203
+ # @option params [Integer] :duration_hours
27194
27204
  # The desired duration in hours for the training plan offerings.
27195
27205
  #
27196
- # @option params [required, Array<String>] :target_resources
27206
+ # @option params [Array<String>] :target_resources
27197
27207
  # The target resources (e.g., SageMaker Training Jobs, SageMaker
27198
27208
  # HyperPod, SageMaker Endpoints) to search for in the offerings.
27199
27209
  #
@@ -27222,8 +27232,8 @@ module Aws::SageMaker
27222
27232
  # ultra_server_count: 1,
27223
27233
  # start_time_after: Time.now,
27224
27234
  # end_time_before: Time.now,
27225
- # duration_hours: 1, # required
27226
- # target_resources: ["training-job"], # required, accepts training-job, hyperpod-cluster, endpoint
27235
+ # duration_hours: 1,
27236
+ # target_resources: ["training-job"], # accepts training-job, hyperpod-cluster, endpoint
27227
27237
  # })
27228
27238
  #
27229
27239
  # @example Response structure
@@ -27520,7 +27530,7 @@ module Aws::SageMaker
27520
27530
  # The ID of the pipeline version to start execution from.
27521
27531
  #
27522
27532
  # @option params [String] :mlflow_experiment_name
27523
- # The MLflow experiment name of the start execution.
27533
+ # The MLflow experiment name of the pipeline execution.
27524
27534
  #
27525
27535
  # @return [Types::StartPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
27526
27536
  #
@@ -30777,6 +30787,20 @@ module Aws::SageMaker
30777
30787
  # notebook instance to accommodate changes in your workload
30778
30788
  # requirements.
30779
30789
  #
30790
+ # <note markdown="1"> This API can attach lifecycle configurations to notebook instances.
30791
+ # Lifecycle configuration scripts execute with root access and the
30792
+ # notebook instance's IAM execution role privileges. Principals with
30793
+ # this permission and access to lifecycle configurations can execute
30794
+ # code with the execution role's credentials. See [Customize a Notebook
30795
+ # Instance Using a Lifecycle Configuration Script][1] for security best
30796
+ # practices.
30797
+ #
30798
+ # </note>
30799
+ #
30800
+ #
30801
+ #
30802
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html
30803
+ #
30780
30804
  # @option params [required, String] :notebook_instance_name
30781
30805
  # The name of the notebook instance to update.
30782
30806
  #
@@ -30938,9 +30962,19 @@ module Aws::SageMaker
30938
30962
  # Updates a notebook instance lifecycle configuration created with the
30939
30963
  # [CreateNotebookInstanceLifecycleConfig][1] API.
30940
30964
  #
30965
+ # <note markdown="1"> Updates to lifecycle configurations affect all notebook instances
30966
+ # using that configuration upon their next start. Lifecycle
30967
+ # configuration scripts execute with root access and the notebook
30968
+ # instance's IAM execution role privileges. Grant this permission only
30969
+ # to trusted principals. See [Customize a Notebook Instance Using a
30970
+ # Lifecycle Configuration Script][2] for security best practices.
30971
+ #
30972
+ # </note>
30973
+ #
30941
30974
  #
30942
30975
  #
30943
30976
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html
30977
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html
30944
30978
  #
30945
30979
  # @option params [required, String] :notebook_instance_lifecycle_config_name
30946
30980
  # The name of the lifecycle configuration.
@@ -32181,7 +32215,7 @@ module Aws::SageMaker
32181
32215
  tracer: tracer
32182
32216
  )
32183
32217
  context[:gem_name] = 'aws-sdk-sagemaker'
32184
- context[:gem_version] = '1.346.0'
32218
+ context[:gem_version] = '1.348.0'
32185
32219
  Seahorse::Client::Request.new(handlers, context)
32186
32220
  end
32187
32221
 
@@ -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, required: true, location_name: "DurationHours"))
10927
- SearchTrainingPlanOfferingsRequest.add_member(:target_resources, Shapes::ShapeRef.new(shape: SageMakerResourceNames, required: true, location_name: "TargetResources"))
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) of the metadata for the Amazon
3967
- # Bedrock custom model deployment.
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 metadata.
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 metadata.
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 metadata action.
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 metadata artifact.
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 metadata context.
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 metadata associations.
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
- # The checkpoint of the model package.
38840
+ # Specifies whether the model data is a training checkpoint.
38843
38841
  # @return [Boolean]
38844
38842
  #
38845
38843
  # @!attribute [rw] base_model
38846
- # The base model of the package.
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 start execution.
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
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.346.0'
58
+ GEM_VERSION = '1.348.0'
59
59
 
60
60
  end
61
61
 
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.346.0
4
+ version: 1.348.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.3
21
+ version: 3.241.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement