aws-sdk-sagemaker 1.298.0 → 1.299.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: e9e4f5712b484fb187815ff2f32be45d3174af0ee4e6c46b03cb976059293d77
4
- data.tar.gz: 765a18f735a2fe34d2296ca48abb8de846873ef7154eab935658bbf0381e9fc5
3
+ metadata.gz: ce9c5c3c83f88f744e4d712880a7fca73ed13b6ef6eeca68e93b23d5094c304a
4
+ data.tar.gz: ecf101c111185db3d49a325e9a5796875a2ebbca581678f62a87d00545574c44
5
5
  SHA512:
6
- metadata.gz: 97d5bdc979f8ab2224d4750c0dcfae44677945b952382c9daa6deec67dbef5ff4f0561ce1a81fbf6bb4100c0b81ec4d78c62811674f77f034df603f80fa70094
7
- data.tar.gz: bd88bbcfd43dc11fa8cd6f0acd2fea2c443cf3926fc25e95f07b59c1743d04c9cad886910cca534a9557f3beb2d4e33e039ac7fdf35261deb32b52143c4516c0
6
+ metadata.gz: 8c4f435eb57476a6f11db45b7237f6b8f671d114e37db6699e0944efb7cc1d1874e98389321adf22a79fd3bd3bba26a8cae33a0e0d20f764af4e36e2bc3a00f5
7
+ data.tar.gz: 5dee7ac071f0958334c88590691ad1b44311ac3e1f5c9cdf1dd791ee41aba87ea94331b85f51753f97139f10ced18efd81f47bf3f5bc130cb90e046d7f2e169e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.299.0 (2025-04-01)
5
+ ------------------
6
+
7
+ * Feature - Added tagging support for SageMaker notebook instance lifecycle configurations
8
+
4
9
  1.298.0 (2025-03-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.298.0
1
+ 1.299.0
@@ -7837,6 +7837,16 @@ module Aws::SageMaker
7837
7837
  # including when you create the notebook instance. The shell script must
7838
7838
  # be a base64-encoded string.
7839
7839
  #
7840
+ # @option params [Array<Types::Tag>] :tags
7841
+ # An array of key-value pairs. You can use tags to categorize your
7842
+ # Amazon Web Services resources in different ways, for example, by
7843
+ # purpose, owner, or environment. For more information, see [Tagging
7844
+ # Amazon Web Services Resources][1].
7845
+ #
7846
+ #
7847
+ #
7848
+ # [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
7849
+ #
7840
7850
  # @return [Types::CreateNotebookInstanceLifecycleConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7841
7851
  #
7842
7852
  # * {Types::CreateNotebookInstanceLifecycleConfigOutput#notebook_instance_lifecycle_config_arn #notebook_instance_lifecycle_config_arn} => String
@@ -7855,6 +7865,12 @@ module Aws::SageMaker
7855
7865
  # content: "NotebookInstanceLifecycleConfigContent",
7856
7866
  # },
7857
7867
  # ],
7868
+ # tags: [
7869
+ # {
7870
+ # key: "TagKey", # required
7871
+ # value: "TagValue", # required
7872
+ # },
7873
+ # ],
7858
7874
  # })
7859
7875
  #
7860
7876
  # @example Response structure
@@ -29770,7 +29786,7 @@ module Aws::SageMaker
29770
29786
  tracer: tracer
29771
29787
  )
29772
29788
  context[:gem_name] = 'aws-sdk-sagemaker'
29773
- context[:gem_version] = '1.298.0'
29789
+ context[:gem_version] = '1.299.0'
29774
29790
  Seahorse::Client::Request.new(handlers, context)
29775
29791
  end
29776
29792
 
@@ -3958,6 +3958,7 @@ module Aws::SageMaker
3958
3958
  CreateNotebookInstanceLifecycleConfigInput.add_member(:notebook_instance_lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, required: true, location_name: "NotebookInstanceLifecycleConfigName"))
3959
3959
  CreateNotebookInstanceLifecycleConfigInput.add_member(:on_create, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigList, location_name: "OnCreate"))
3960
3960
  CreateNotebookInstanceLifecycleConfigInput.add_member(:on_start, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigList, location_name: "OnStart"))
3961
+ CreateNotebookInstanceLifecycleConfigInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
3961
3962
  CreateNotebookInstanceLifecycleConfigInput.struct_class = Types::CreateNotebookInstanceLifecycleConfigInput
3962
3963
 
3963
3964
  CreateNotebookInstanceLifecycleConfigOutput.add_member(:notebook_instance_lifecycle_config_arn, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigArn, location_name: "NotebookInstanceLifecycleConfigArn"))
@@ -9414,12 +9414,24 @@ module Aws::SageMaker
9414
9414
  # must be a base64-encoded string.
9415
9415
  # @return [Array<Types::NotebookInstanceLifecycleHook>]
9416
9416
  #
9417
+ # @!attribute [rw] tags
9418
+ # An array of key-value pairs. You can use tags to categorize your
9419
+ # Amazon Web Services resources in different ways, for example, by
9420
+ # purpose, owner, or environment. For more information, see [Tagging
9421
+ # Amazon Web Services Resources][1].
9422
+ #
9423
+ #
9424
+ #
9425
+ # [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
9426
+ # @return [Array<Types::Tag>]
9427
+ #
9417
9428
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateNotebookInstanceLifecycleConfigInput AWS API Documentation
9418
9429
  #
9419
9430
  class CreateNotebookInstanceLifecycleConfigInput < Struct.new(
9420
9431
  :notebook_instance_lifecycle_config_name,
9421
9432
  :on_create,
9422
- :on_start)
9433
+ :on_start,
9434
+ :tags)
9423
9435
  SENSITIVE = []
9424
9436
  include Aws::Structure
9425
9437
  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.298.0'
58
+ GEM_VERSION = '1.299.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -3517,6 +3517,12 @@ module Aws
3517
3517
  {
3518
3518
  content: ::String?
3519
3519
  },
3520
+ ],
3521
+ ?tags: Array[
3522
+ {
3523
+ key: ::String,
3524
+ value: ::String
3525
+ },
3520
3526
  ]
3521
3527
  ) -> _CreateNotebookInstanceLifecycleConfigResponseSuccess
3522
3528
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNotebookInstanceLifecycleConfigResponseSuccess
data/sig/types.rbs CHANGED
@@ -1750,6 +1750,7 @@ module Aws::SageMaker
1750
1750
  attr_accessor notebook_instance_lifecycle_config_name: ::String
1751
1751
  attr_accessor on_create: ::Array[Types::NotebookInstanceLifecycleHook]
1752
1752
  attr_accessor on_start: ::Array[Types::NotebookInstanceLifecycleHook]
1753
+ attr_accessor tags: ::Array[Types::Tag]
1753
1754
  SENSITIVE: []
1754
1755
  end
1755
1756
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.298.0
4
+ version: 1.299.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-28 00:00:00.000000000 Z
11
+ date: 2025-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core