aws-sdk-sagemaker 1.71.0 → 1.72.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/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +55 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +4 -2
- data/lib/aws-sdk-sagemaker/types.rb +53 -32
- 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: 43e7f6f96d08e85084701352a98d0d1b3acad5ad5dd5ede98a5d88e4b44d0eb8
|
4
|
+
data.tar.gz: 12fb1a61678258912d555ee974dd61a12e596723f33b8b38de7d7038fa35fcef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f97845cf8a04fb2c9a58a6d75ec7d30b2e05226a5ec5fe11ae804c3127314f7fc790c78a9c032b8fd95920c29ba8f18517e6b4a185352abe4bd26a7911a650d5
|
7
|
+
data.tar.gz: a26c6197a515d3eb1adc1c0d91b9d29178e4ed8a6471be01328ebc37688df7297455ea6afdf8b1ce63511df8abcfc27b1fda63903480d46acfa6fe4c687cdb00
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -729,8 +729,10 @@ module Aws::SageMaker
|
|
729
729
|
req.send_request(options)
|
730
730
|
end
|
731
731
|
|
732
|
-
# Creates a configuration for running
|
733
|
-
# KernelGateway app.
|
732
|
+
# Creates a configuration for running a SageMaker image as a
|
733
|
+
# KernelGateway app. The configuration specifies the Amazon Elastic File
|
734
|
+
# System (EFS) storage volume on the image, and a list of the kernels in
|
735
|
+
# the image.
|
734
736
|
#
|
735
737
|
# @option params [required, String] :app_image_config_name
|
736
738
|
# The name of the AppImageConfig. Must be unique to your account.
|
@@ -1156,8 +1158,12 @@ module Aws::SageMaker
|
|
1156
1158
|
# subnets
|
1157
1159
|
#
|
1158
1160
|
# @option params [String] :home_efs_file_system_kms_key_id
|
1159
|
-
#
|
1160
|
-
#
|
1161
|
+
# This member is deprecated and replaced with `KmsKeyId`.
|
1162
|
+
#
|
1163
|
+
# @option params [String] :kms_key_id
|
1164
|
+
# SageMaker uses AWS KMS to encrypt the EFS volume attached to the
|
1165
|
+
# domain with an AWS managed customer master key (CMK) by default. For
|
1166
|
+
# more control, specify a customer managed CMK.
|
1161
1167
|
#
|
1162
1168
|
# @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1163
1169
|
#
|
@@ -1216,6 +1222,7 @@ module Aws::SageMaker
|
|
1216
1222
|
# ],
|
1217
1223
|
# app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
|
1218
1224
|
# home_efs_file_system_kms_key_id: "KmsKeyId",
|
1225
|
+
# kms_key_id: "KmsKeyId",
|
1219
1226
|
# })
|
1220
1227
|
#
|
1221
1228
|
# @example Response structure
|
@@ -1286,11 +1293,42 @@ module Aws::SageMaker
|
|
1286
1293
|
# AWS STS in an AWS Region][3] in the *AWS Identity and Access
|
1287
1294
|
# Management User Guide*.
|
1288
1295
|
#
|
1296
|
+
# <note markdown="1"> To add the IAM role policies for using this API operation, go to the
|
1297
|
+
# [IAM console][4], and choose Roles in the left navigation pane. Search
|
1298
|
+
# the IAM role that you want to grant access to use the CreateEndpoint
|
1299
|
+
# and CreateEndpointConfig API operations, add the following policies to
|
1300
|
+
# the role.
|
1301
|
+
#
|
1302
|
+
# * Option 1: For a full Amazon SageMaker access, search and attach the
|
1303
|
+
# `AmazonSageMakerFullAccess` policy.
|
1304
|
+
#
|
1305
|
+
# * Option 2: For granting a limited access to an IAM role, paste the
|
1306
|
+
# following Action elements manually into the JSON file of the IAM
|
1307
|
+
# role:
|
1308
|
+
#
|
1309
|
+
# `"Action": ["sagemaker:CreateEndpoint",
|
1310
|
+
# "sagemaker:CreateEndpointConfig"]`
|
1311
|
+
#
|
1312
|
+
# `"Resource": [`
|
1313
|
+
#
|
1314
|
+
# `"arn:aws:sagemaker:region:account-id:endpoint/endpointName"`
|
1315
|
+
#
|
1316
|
+
# `"arn:aws:sagemaker:region:account-id:endpoint-config/endpointConfigName"`
|
1317
|
+
#
|
1318
|
+
# `]`
|
1319
|
+
#
|
1320
|
+
# For more information, see [Amazon SageMaker API Permissions:
|
1321
|
+
# Actions, Permissions, and Resources Reference][5].
|
1322
|
+
#
|
1323
|
+
# </note>
|
1324
|
+
#
|
1289
1325
|
#
|
1290
1326
|
#
|
1291
1327
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1292
1328
|
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
|
1293
1329
|
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
1330
|
+
# [4]: https://console.aws.amazon.com/iam/
|
1331
|
+
# [5]: https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html
|
1294
1332
|
#
|
1295
1333
|
# @option params [required, String] :endpoint_name
|
1296
1334
|
# The name of the endpoint.The name must be unique within an AWS Region
|
@@ -2058,16 +2096,21 @@ module Aws::SageMaker
|
|
2058
2096
|
req.send_request(options)
|
2059
2097
|
end
|
2060
2098
|
|
2061
|
-
# Creates a SageMaker
|
2062
|
-
#
|
2063
|
-
#
|
2099
|
+
# Creates a custom SageMaker image. A SageMaker image is a set of image
|
2100
|
+
# versions. Each image version represents a container image stored in
|
2101
|
+
# Amazon Container Registry (ECR). For more information, see [Bring your
|
2102
|
+
# own SageMaker image][1].
|
2103
|
+
#
|
2104
|
+
#
|
2105
|
+
#
|
2106
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/studio-byoi.html
|
2064
2107
|
#
|
2065
2108
|
# @option params [String] :description
|
2066
2109
|
# The description of the image.
|
2067
2110
|
#
|
2068
2111
|
# @option params [String] :display_name
|
2069
|
-
# The display name of the image.
|
2070
|
-
#
|
2112
|
+
# The display name of the image. If not provided, `ImageName` is
|
2113
|
+
# displayed.
|
2071
2114
|
#
|
2072
2115
|
# @option params [required, String] :image_name
|
2073
2116
|
# The name of the image. Must be unique to your account.
|
@@ -5470,6 +5513,7 @@ module Aws::SageMaker
|
|
5470
5513
|
# * {Types::DescribeDomainResponse#subnet_ids #subnet_ids} => Array<String>
|
5471
5514
|
# * {Types::DescribeDomainResponse#url #url} => String
|
5472
5515
|
# * {Types::DescribeDomainResponse#vpc_id #vpc_id} => String
|
5516
|
+
# * {Types::DescribeDomainResponse#kms_key_id #kms_key_id} => String
|
5473
5517
|
#
|
5474
5518
|
# @example Request syntax with placeholder values
|
5475
5519
|
#
|
@@ -5514,6 +5558,7 @@ module Aws::SageMaker
|
|
5514
5558
|
# resp.subnet_ids[0] #=> String
|
5515
5559
|
# resp.url #=> String
|
5516
5560
|
# resp.vpc_id #=> String
|
5561
|
+
# resp.kms_key_id #=> String
|
5517
5562
|
#
|
5518
5563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomain AWS API Documentation
|
5519
5564
|
#
|
@@ -11803,7 +11848,7 @@ module Aws::SageMaker
|
|
11803
11848
|
params: params,
|
11804
11849
|
config: config)
|
11805
11850
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
11806
|
-
context[:gem_version] = '1.
|
11851
|
+
context[:gem_version] = '1.72.0'
|
11807
11852
|
Seahorse::Client::Request.new(handlers, context)
|
11808
11853
|
end
|
11809
11854
|
|
@@ -1376,7 +1376,8 @@ module Aws::SageMaker
|
|
1376
1376
|
CreateDomainRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "VpcId"))
|
1377
1377
|
CreateDomainRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1378
1378
|
CreateDomainRequest.add_member(:app_network_access_type, Shapes::ShapeRef.new(shape: AppNetworkAccessType, location_name: "AppNetworkAccessType"))
|
1379
|
-
CreateDomainRequest.add_member(:home_efs_file_system_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "HomeEfsFileSystemKmsKeyId"))
|
1379
|
+
CreateDomainRequest.add_member(:home_efs_file_system_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, deprecated: true, location_name: "HomeEfsFileSystemKmsKeyId", metadata: {"deprecatedMessage"=>"This property is deprecated, use KmsKeyId instead."}))
|
1380
|
+
CreateDomainRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
1380
1381
|
CreateDomainRequest.struct_class = Types::CreateDomainRequest
|
1381
1382
|
|
1382
1383
|
CreateDomainResponse.add_member(:domain_arn, Shapes::ShapeRef.new(shape: DomainArn, location_name: "DomainArn"))
|
@@ -1936,10 +1937,11 @@ module Aws::SageMaker
|
|
1936
1937
|
DescribeDomainResponse.add_member(:auth_mode, Shapes::ShapeRef.new(shape: AuthMode, location_name: "AuthMode"))
|
1937
1938
|
DescribeDomainResponse.add_member(:default_user_settings, Shapes::ShapeRef.new(shape: UserSettings, location_name: "DefaultUserSettings"))
|
1938
1939
|
DescribeDomainResponse.add_member(:app_network_access_type, Shapes::ShapeRef.new(shape: AppNetworkAccessType, location_name: "AppNetworkAccessType"))
|
1939
|
-
DescribeDomainResponse.add_member(:home_efs_file_system_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "HomeEfsFileSystemKmsKeyId"))
|
1940
|
+
DescribeDomainResponse.add_member(:home_efs_file_system_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, deprecated: true, location_name: "HomeEfsFileSystemKmsKeyId", metadata: {"deprecatedMessage"=>"This property is deprecated, use KmsKeyId instead."}))
|
1940
1941
|
DescribeDomainResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: Subnets, location_name: "SubnetIds"))
|
1941
1942
|
DescribeDomainResponse.add_member(:url, Shapes::ShapeRef.new(shape: String1024, location_name: "Url"))
|
1942
1943
|
DescribeDomainResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
1944
|
+
DescribeDomainResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
1943
1945
|
DescribeDomainResponse.struct_class = Types::DescribeDomainResponse
|
1944
1946
|
|
1945
1947
|
DescribeEndpointConfigInput.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
|
@@ -1210,15 +1210,15 @@ module Aws::SageMaker
|
|
1210
1210
|
include Aws::Structure
|
1211
1211
|
end
|
1212
1212
|
|
1213
|
-
# The configuration for running
|
1214
|
-
#
|
1213
|
+
# The configuration for running a SageMaker image as a KernelGateway
|
1214
|
+
# app.
|
1215
1215
|
#
|
1216
1216
|
# @!attribute [rw] app_image_config_arn
|
1217
1217
|
# The Amazon Resource Name (ARN) of the AppImageConfig.
|
1218
1218
|
# @return [String]
|
1219
1219
|
#
|
1220
1220
|
# @!attribute [rw] app_image_config_name
|
1221
|
-
# The name of the AppImageConfig.
|
1221
|
+
# The name of the AppImageConfig. Must be unique to your account.
|
1222
1222
|
# @return [String]
|
1223
1223
|
#
|
1224
1224
|
# @!attribute [rw] creation_time
|
@@ -1230,7 +1230,8 @@ module Aws::SageMaker
|
|
1230
1230
|
# @return [Time]
|
1231
1231
|
#
|
1232
1232
|
# @!attribute [rw] kernel_gateway_image_config
|
1233
|
-
# The
|
1233
|
+
# The configuration for the file system and kernels in the SageMaker
|
1234
|
+
# image.
|
1234
1235
|
# @return [Types::KernelGatewayImageConfig]
|
1235
1236
|
#
|
1236
1237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppImageConfigDetails AWS API Documentation
|
@@ -3298,6 +3299,7 @@ module Aws::SageMaker
|
|
3298
3299
|
# ],
|
3299
3300
|
# app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
|
3300
3301
|
# home_efs_file_system_kms_key_id: "KmsKeyId",
|
3302
|
+
# kms_key_id: "KmsKeyId",
|
3301
3303
|
# }
|
3302
3304
|
#
|
3303
3305
|
# @!attribute [rw] domain_name
|
@@ -3339,8 +3341,13 @@ module Aws::SageMaker
|
|
3339
3341
|
# @return [String]
|
3340
3342
|
#
|
3341
3343
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
3342
|
-
#
|
3343
|
-
#
|
3344
|
+
# This member is deprecated and replaced with `KmsKeyId`.
|
3345
|
+
# @return [String]
|
3346
|
+
#
|
3347
|
+
# @!attribute [rw] kms_key_id
|
3348
|
+
# SageMaker uses AWS KMS to encrypt the EFS volume attached to the
|
3349
|
+
# domain with an AWS managed customer master key (CMK) by default. For
|
3350
|
+
# more control, specify a customer managed CMK.
|
3344
3351
|
# @return [String]
|
3345
3352
|
#
|
3346
3353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
@@ -3353,7 +3360,8 @@ module Aws::SageMaker
|
|
3353
3360
|
:vpc_id,
|
3354
3361
|
:tags,
|
3355
3362
|
:app_network_access_type,
|
3356
|
-
:home_efs_file_system_kms_key_id
|
3363
|
+
:home_efs_file_system_kms_key_id,
|
3364
|
+
:kms_key_id)
|
3357
3365
|
SENSITIVE = []
|
3358
3366
|
include Aws::Structure
|
3359
3367
|
end
|
@@ -4153,8 +4161,8 @@ module Aws::SageMaker
|
|
4153
4161
|
# @return [String]
|
4154
4162
|
#
|
4155
4163
|
# @!attribute [rw] display_name
|
4156
|
-
# The display name of the image.
|
4157
|
-
#
|
4164
|
+
# The display name of the image. If not provided, `ImageName` is
|
4165
|
+
# displayed.
|
4158
4166
|
# @return [String]
|
4159
4167
|
#
|
4160
4168
|
# @!attribute [rw] image_name
|
@@ -6379,7 +6387,12 @@ module Aws::SageMaker
|
|
6379
6387
|
include Aws::Structure
|
6380
6388
|
end
|
6381
6389
|
|
6382
|
-
# A custom image.
|
6390
|
+
# A custom SageMaker image. For more information, see [Bring your own
|
6391
|
+
# SageMaker image][1].
|
6392
|
+
#
|
6393
|
+
#
|
6394
|
+
#
|
6395
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/studio-byoi.html
|
6383
6396
|
#
|
6384
6397
|
# @note When making an API call, you may pass CustomImage
|
6385
6398
|
# data as a hash:
|
@@ -7473,7 +7486,7 @@ module Aws::SageMaker
|
|
7473
7486
|
# @return [Time]
|
7474
7487
|
#
|
7475
7488
|
# @!attribute [rw] kernel_gateway_image_config
|
7476
|
-
# The KernelGateway app.
|
7489
|
+
# The configuration of a KernelGateway app.
|
7477
7490
|
# @return [Types::KernelGatewayImageConfig]
|
7478
7491
|
#
|
7479
7492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppImageConfigResponse AWS API Documentation
|
@@ -7936,7 +7949,7 @@ module Aws::SageMaker
|
|
7936
7949
|
# @return [String]
|
7937
7950
|
#
|
7938
7951
|
# @!attribute [rw] default_user_settings
|
7939
|
-
# Settings which are applied to all
|
7952
|
+
# Settings which are applied to all UserProfiles in this domain, if
|
7940
7953
|
# settings are not explicitly specified in a given UserProfile.
|
7941
7954
|
# @return [Types::UserSettings]
|
7942
7955
|
#
|
@@ -7952,7 +7965,7 @@ module Aws::SageMaker
|
|
7952
7965
|
# @return [String]
|
7953
7966
|
#
|
7954
7967
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
7955
|
-
#
|
7968
|
+
# This member is deprecated and replaced with `KmsKeyId`.
|
7956
7969
|
# @return [String]
|
7957
7970
|
#
|
7958
7971
|
# @!attribute [rw] subnet_ids
|
@@ -7968,6 +7981,11 @@ module Aws::SageMaker
|
|
7968
7981
|
# for communication.
|
7969
7982
|
# @return [String]
|
7970
7983
|
#
|
7984
|
+
# @!attribute [rw] kms_key_id
|
7985
|
+
# The AWS KMS customer managed CMK used to encrypt the EFS volume
|
7986
|
+
# attached to the domain.
|
7987
|
+
# @return [String]
|
7988
|
+
#
|
7971
7989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
|
7972
7990
|
#
|
7973
7991
|
class DescribeDomainResponse < Struct.new(
|
@@ -7986,7 +8004,8 @@ module Aws::SageMaker
|
|
7986
8004
|
:home_efs_file_system_kms_key_id,
|
7987
8005
|
:subnet_ids,
|
7988
8006
|
:url,
|
7989
|
-
:vpc_id
|
8007
|
+
:vpc_id,
|
8008
|
+
:kms_key_id)
|
7990
8009
|
SENSITIVE = []
|
7991
8010
|
include Aws::Structure
|
7992
8011
|
end
|
@@ -10713,8 +10732,8 @@ module Aws::SageMaker
|
|
10713
10732
|
include Aws::Structure
|
10714
10733
|
end
|
10715
10734
|
|
10716
|
-
# The Amazon Elastic File System (EFS) storage configuration for
|
10717
|
-
# image.
|
10735
|
+
# The Amazon Elastic File System (EFS) storage configuration for a
|
10736
|
+
# SageMaker image.
|
10718
10737
|
#
|
10719
10738
|
# @note When making an API call, you may pass FileSystemConfig
|
10720
10739
|
# data as a hash:
|
@@ -10732,11 +10751,13 @@ module Aws::SageMaker
|
|
10732
10751
|
# @return [String]
|
10733
10752
|
#
|
10734
10753
|
# @!attribute [rw] default_uid
|
10735
|
-
# The default POSIX user ID. If not specified, defaults to
|
10754
|
+
# The default POSIX user ID (UID). If not specified, defaults to
|
10755
|
+
# `1000`.
|
10736
10756
|
# @return [Integer]
|
10737
10757
|
#
|
10738
10758
|
# @!attribute [rw] default_gid
|
10739
|
-
# The default POSIX group ID. If not specified, defaults to
|
10759
|
+
# The default POSIX group ID (GID). If not specified, defaults to
|
10760
|
+
# `100`.
|
10740
10761
|
# @return [Integer]
|
10741
10762
|
#
|
10742
10763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FileSystemConfig AWS API Documentation
|
@@ -13355,10 +13376,10 @@ module Aws::SageMaker
|
|
13355
13376
|
# * If using the CLI, `\{"input_1": [1,3,224,224],
|
13356
13377
|
# "input_2":[1,3,224,224]\}`
|
13357
13378
|
#
|
13358
|
-
# * `MXNET/ONNX`\: You must specify the name and shape (NCHW
|
13359
|
-
# of the expected data inputs in order using a dictionary
|
13360
|
-
# your trained model. The dictionary formats required for
|
13361
|
-
# console and CLI are different.
|
13379
|
+
# * `MXNET/ONNX/DARKNET`\: You must specify the name and shape (NCHW
|
13380
|
+
# format) of the expected data inputs in order using a dictionary
|
13381
|
+
# format for your trained model. The dictionary formats required for
|
13382
|
+
# the console and CLI are different.
|
13362
13383
|
#
|
13363
13384
|
# * Examples for one input:
|
13364
13385
|
#
|
@@ -13580,7 +13601,7 @@ module Aws::SageMaker
|
|
13580
13601
|
include Aws::Structure
|
13581
13602
|
end
|
13582
13603
|
|
13583
|
-
#
|
13604
|
+
# The JupyterServer app settings.
|
13584
13605
|
#
|
13585
13606
|
# @note When making an API call, you may pass JupyterServerAppSettings
|
13586
13607
|
# data as a hash:
|
@@ -13595,7 +13616,7 @@ module Aws::SageMaker
|
|
13595
13616
|
#
|
13596
13617
|
# @!attribute [rw] default_resource_spec
|
13597
13618
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
13598
|
-
# SageMaker image
|
13619
|
+
# default SageMaker image used by the JupyterServer app.
|
13599
13620
|
# @return [Types::ResourceSpec]
|
13600
13621
|
#
|
13601
13622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterServerAppSettings AWS API Documentation
|
@@ -13632,7 +13653,7 @@ module Aws::SageMaker
|
|
13632
13653
|
# @return [Types::ResourceSpec]
|
13633
13654
|
#
|
13634
13655
|
# @!attribute [rw] custom_images
|
13635
|
-
# A list of custom images that are configured to run as a
|
13656
|
+
# A list of custom SageMaker images that are configured to run as a
|
13636
13657
|
# KernelGateway app.
|
13637
13658
|
# @return [Array<Types::CustomImage>]
|
13638
13659
|
#
|
@@ -13645,7 +13666,8 @@ module Aws::SageMaker
|
|
13645
13666
|
include Aws::Structure
|
13646
13667
|
end
|
13647
13668
|
|
13648
|
-
# The configuration for
|
13669
|
+
# The configuration for the file system and kernels in a SageMaker image
|
13670
|
+
# running as a KernelGateway app.
|
13649
13671
|
#
|
13650
13672
|
# @note When making an API call, you may pass KernelGatewayImageConfig
|
13651
13673
|
# data as a hash:
|
@@ -13665,12 +13687,12 @@ module Aws::SageMaker
|
|
13665
13687
|
# }
|
13666
13688
|
#
|
13667
13689
|
# @!attribute [rw] kernel_specs
|
13668
|
-
#
|
13669
|
-
# variables, and metadata that are available to the kernel.
|
13690
|
+
# The specification of the Jupyter kernels in the image.
|
13670
13691
|
# @return [Array<Types::KernelSpec>]
|
13671
13692
|
#
|
13672
13693
|
# @!attribute [rw] file_system_config
|
13673
|
-
# The
|
13694
|
+
# The Amazon Elastic File System (EFS) storage configuration for a
|
13695
|
+
# SageMaker image.
|
13674
13696
|
# @return [Types::FileSystemConfig]
|
13675
13697
|
#
|
13676
13698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayImageConfig AWS API Documentation
|
@@ -13682,8 +13704,7 @@ module Aws::SageMaker
|
|
13682
13704
|
include Aws::Structure
|
13683
13705
|
end
|
13684
13706
|
|
13685
|
-
#
|
13686
|
-
# variables, and metadata that are available to the kernel.
|
13707
|
+
# The specification of a Jupyter kernel.
|
13687
13708
|
#
|
13688
13709
|
# @note When making an API call, you may pass KernelSpec
|
13689
13710
|
# data as a hash:
|
@@ -13694,7 +13715,7 @@ module Aws::SageMaker
|
|
13694
13715
|
# }
|
13695
13716
|
#
|
13696
13717
|
# @!attribute [rw] name
|
13697
|
-
# The name of the kernel.
|
13718
|
+
# The name of the kernel.
|
13698
13719
|
# @return [String]
|
13699
13720
|
#
|
13700
13721
|
# @!attribute [rw] display_name
|
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.72.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: 2020-
|
11
|
+
date: 2020-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|