aws-sdk-sagemaker 1.267.0 → 1.269.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 +18 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +3 -0
- data/lib/aws-sdk-sagemaker/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-sagemaker/endpoints.rb +2 -3683
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +1 -676
- data/lib/aws-sdk-sagemaker/types.rb +23 -3
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +21 -10
- data/sig/types.rbs +3 -0
- metadata +4 -4
@@ -4559,13 +4559,20 @@ module Aws::SageMaker
|
|
4559
4559
|
# CodeEditor applications.
|
4560
4560
|
# @return [Types::AppLifecycleManagement]
|
4561
4561
|
#
|
4562
|
+
# @!attribute [rw] built_in_lifecycle_config_arn
|
4563
|
+
# The lifecycle configuration that runs before the default lifecycle
|
4564
|
+
# configuration. It can override changes made in the default lifecycle
|
4565
|
+
# configuration.
|
4566
|
+
# @return [String]
|
4567
|
+
#
|
4562
4568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CodeEditorAppSettings AWS API Documentation
|
4563
4569
|
#
|
4564
4570
|
class CodeEditorAppSettings < Struct.new(
|
4565
4571
|
:default_resource_spec,
|
4566
4572
|
:custom_images,
|
4567
4573
|
:lifecycle_config_arns,
|
4568
|
-
:app_lifecycle_management
|
4574
|
+
:app_lifecycle_management,
|
4575
|
+
:built_in_lifecycle_config_arn)
|
4569
4576
|
SENSITIVE = []
|
4570
4577
|
include Aws::Structure
|
4571
4578
|
end
|
@@ -12415,6 +12422,11 @@ module Aws::SageMaker
|
|
12415
12422
|
# SageMaker image created on the instance.
|
12416
12423
|
# @return [Types::ResourceSpec]
|
12417
12424
|
#
|
12425
|
+
# @!attribute [rw] built_in_lifecycle_config_arn
|
12426
|
+
# The lifecycle configuration that runs before the default lifecycle
|
12427
|
+
# configuration
|
12428
|
+
# @return [String]
|
12429
|
+
#
|
12418
12430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppResponse AWS API Documentation
|
12419
12431
|
#
|
12420
12432
|
class DescribeAppResponse < Struct.new(
|
@@ -12429,7 +12441,8 @@ module Aws::SageMaker
|
|
12429
12441
|
:last_user_activity_timestamp,
|
12430
12442
|
:creation_time,
|
12431
12443
|
:failure_reason,
|
12432
|
-
:resource_spec
|
12444
|
+
:resource_spec,
|
12445
|
+
:built_in_lifecycle_config_arn)
|
12433
12446
|
SENSITIVE = []
|
12434
12447
|
include Aws::Structure
|
12435
12448
|
end
|
@@ -25191,6 +25204,12 @@ module Aws::SageMaker
|
|
25191
25204
|
# EMR clusters or Amazon EMR Serverless applications.
|
25192
25205
|
# @return [Types::EmrSettings]
|
25193
25206
|
#
|
25207
|
+
# @!attribute [rw] built_in_lifecycle_config_arn
|
25208
|
+
# The lifecycle configuration that runs before the default lifecycle
|
25209
|
+
# configuration. It can override changes made in the default lifecycle
|
25210
|
+
# configuration.
|
25211
|
+
# @return [String]
|
25212
|
+
#
|
25194
25213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppSettings AWS API Documentation
|
25195
25214
|
#
|
25196
25215
|
class JupyterLabAppSettings < Struct.new(
|
@@ -25199,7 +25218,8 @@ module Aws::SageMaker
|
|
25199
25218
|
:lifecycle_config_arns,
|
25200
25219
|
:code_repositories,
|
25201
25220
|
:app_lifecycle_management,
|
25202
|
-
:emr_settings
|
25221
|
+
:emr_settings,
|
25222
|
+
:built_in_lifecycle_config_arn)
|
25203
25223
|
SENSITIVE = []
|
25204
25224
|
include Aws::Structure
|
25205
25225
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1085,7 +1085,8 @@ module Aws
|
|
1085
1085
|
min_idle_timeout_in_minutes: ::Integer?,
|
1086
1086
|
max_idle_timeout_in_minutes: ::Integer?
|
1087
1087
|
}?
|
1088
|
-
}
|
1088
|
+
}?,
|
1089
|
+
built_in_lifecycle_config_arn: ::String?
|
1089
1090
|
}?,
|
1090
1091
|
jupyter_lab_app_settings: {
|
1091
1092
|
default_resource_spec: {
|
@@ -1119,7 +1120,8 @@ module Aws
|
|
1119
1120
|
emr_settings: {
|
1120
1121
|
assumable_role_arns: Array[::String]?,
|
1121
1122
|
execution_role_arns: Array[::String]?
|
1122
|
-
}
|
1123
|
+
}?,
|
1124
|
+
built_in_lifecycle_config_arn: ::String?
|
1123
1125
|
}?,
|
1124
1126
|
space_storage_settings: {
|
1125
1127
|
default_ebs_storage_settings: {
|
@@ -1258,7 +1260,8 @@ module Aws
|
|
1258
1260
|
emr_settings: {
|
1259
1261
|
assumable_role_arns: Array[::String]?,
|
1260
1262
|
execution_role_arns: Array[::String]?
|
1261
|
-
}
|
1263
|
+
}?,
|
1264
|
+
built_in_lifecycle_config_arn: ::String?
|
1262
1265
|
}?,
|
1263
1266
|
space_storage_settings: {
|
1264
1267
|
default_ebs_storage_settings: {
|
@@ -4178,7 +4181,8 @@ module Aws
|
|
4178
4181
|
min_idle_timeout_in_minutes: ::Integer?,
|
4179
4182
|
max_idle_timeout_in_minutes: ::Integer?
|
4180
4183
|
}?
|
4181
|
-
}
|
4184
|
+
}?,
|
4185
|
+
built_in_lifecycle_config_arn: ::String?
|
4182
4186
|
}?,
|
4183
4187
|
jupyter_lab_app_settings: {
|
4184
4188
|
default_resource_spec: {
|
@@ -4212,7 +4216,8 @@ module Aws
|
|
4212
4216
|
emr_settings: {
|
4213
4217
|
assumable_role_arns: Array[::String]?,
|
4214
4218
|
execution_role_arns: Array[::String]?
|
4215
|
-
}
|
4219
|
+
}?,
|
4220
|
+
built_in_lifecycle_config_arn: ::String?
|
4216
4221
|
}?,
|
4217
4222
|
space_storage_settings: {
|
4218
4223
|
default_ebs_storage_settings: {
|
@@ -4802,6 +4807,7 @@ module Aws
|
|
4802
4807
|
def creation_time: () -> ::Time
|
4803
4808
|
def failure_reason: () -> ::String
|
4804
4809
|
def resource_spec: () -> Types::ResourceSpec
|
4810
|
+
def built_in_lifecycle_config_arn: () -> ::String
|
4805
4811
|
end
|
4806
4812
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_app-instance_method
|
4807
4813
|
def describe_app: (
|
@@ -8314,7 +8320,8 @@ module Aws
|
|
8314
8320
|
min_idle_timeout_in_minutes: ::Integer?,
|
8315
8321
|
max_idle_timeout_in_minutes: ::Integer?
|
8316
8322
|
}?
|
8317
|
-
}
|
8323
|
+
}?,
|
8324
|
+
built_in_lifecycle_config_arn: ::String?
|
8318
8325
|
}?,
|
8319
8326
|
jupyter_lab_app_settings: {
|
8320
8327
|
default_resource_spec: {
|
@@ -8348,7 +8355,8 @@ module Aws
|
|
8348
8355
|
emr_settings: {
|
8349
8356
|
assumable_role_arns: Array[::String]?,
|
8350
8357
|
execution_role_arns: Array[::String]?
|
8351
|
-
}
|
8358
|
+
}?,
|
8359
|
+
built_in_lifecycle_config_arn: ::String?
|
8352
8360
|
}?,
|
8353
8361
|
space_storage_settings: {
|
8354
8362
|
default_ebs_storage_settings: {
|
@@ -8475,7 +8483,8 @@ module Aws
|
|
8475
8483
|
emr_settings: {
|
8476
8484
|
assumable_role_arns: Array[::String]?,
|
8477
8485
|
execution_role_arns: Array[::String]?
|
8478
|
-
}
|
8486
|
+
}?,
|
8487
|
+
built_in_lifecycle_config_arn: ::String?
|
8479
8488
|
}?,
|
8480
8489
|
space_storage_settings: {
|
8481
8490
|
default_ebs_storage_settings: {
|
@@ -9438,7 +9447,8 @@ module Aws
|
|
9438
9447
|
min_idle_timeout_in_minutes: ::Integer?,
|
9439
9448
|
max_idle_timeout_in_minutes: ::Integer?
|
9440
9449
|
}?
|
9441
|
-
}
|
9450
|
+
}?,
|
9451
|
+
built_in_lifecycle_config_arn: ::String?
|
9442
9452
|
}?,
|
9443
9453
|
jupyter_lab_app_settings: {
|
9444
9454
|
default_resource_spec: {
|
@@ -9472,7 +9482,8 @@ module Aws
|
|
9472
9482
|
emr_settings: {
|
9473
9483
|
assumable_role_arns: Array[::String]?,
|
9474
9484
|
execution_role_arns: Array[::String]?
|
9475
|
-
}
|
9485
|
+
}?,
|
9486
|
+
built_in_lifecycle_config_arn: ::String?
|
9476
9487
|
}?,
|
9477
9488
|
space_storage_settings: {
|
9478
9489
|
default_ebs_storage_settings: {
|
data/sig/types.rbs
CHANGED
@@ -808,6 +808,7 @@ module Aws::SageMaker
|
|
808
808
|
attr_accessor custom_images: ::Array[Types::CustomImage]
|
809
809
|
attr_accessor lifecycle_config_arns: ::Array[::String]
|
810
810
|
attr_accessor app_lifecycle_management: Types::AppLifecycleManagement
|
811
|
+
attr_accessor built_in_lifecycle_config_arn: ::String
|
811
812
|
SENSITIVE: []
|
812
813
|
end
|
813
814
|
|
@@ -2574,6 +2575,7 @@ module Aws::SageMaker
|
|
2574
2575
|
attr_accessor creation_time: ::Time
|
2575
2576
|
attr_accessor failure_reason: ::String
|
2576
2577
|
attr_accessor resource_spec: Types::ResourceSpec
|
2578
|
+
attr_accessor built_in_lifecycle_config_arn: ::String
|
2577
2579
|
SENSITIVE: []
|
2578
2580
|
end
|
2579
2581
|
|
@@ -5087,6 +5089,7 @@ module Aws::SageMaker
|
|
5087
5089
|
attr_accessor code_repositories: ::Array[Types::CodeRepository]
|
5088
5090
|
attr_accessor app_lifecycle_management: Types::AppLifecycleManagement
|
5089
5091
|
attr_accessor emr_settings: Types::EmrSettings
|
5092
|
+
attr_accessor built_in_lifecycle_config_arn: ::String
|
5090
5093
|
SENSITIVE: []
|
5091
5094
|
end
|
5092
5095
|
|
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.269.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: 2024-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|