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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +17 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +1 -0
- data/lib/aws-sdk-sagemaker/types.rb +13 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce9c5c3c83f88f744e4d712880a7fca73ed13b6ef6eeca68e93b23d5094c304a
|
4
|
+
data.tar.gz: ecf101c111185db3d49a325e9a5796875a2ebbca581678f62a87d00545574c44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c4f435eb57476a6f11db45b7237f6b8f671d114e37db6699e0944efb7cc1d1874e98389321adf22a79fd3bd3bba26a8cae33a0e0d20f764af4e36e2bc3a00f5
|
7
|
+
data.tar.gz: 5dee7ac071f0958334c88590691ad1b44311ac3e1f5c9cdf1dd791ee41aba87ea94331b85f51753f97139f10ced18efd81f47bf3f5bc130cb90e046d7f2e169e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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.
|
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-
|
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
|