aws-sdk-sagemaker 1.302.0 → 1.303.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 +132 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +84 -39
- data/lib/aws-sdk-sagemaker/types.rb +198 -6
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +66 -1
- data/sig/types.rbs +41 -0
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d57fbca57d2643614810169085381d392c966c4203e1e4a82adcd83119407f04
|
4
|
+
data.tar.gz: 49332de295ec7e96f7d960d5739c10b12ff142629a4b9993b34264aa470c36e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 305a25201e6885962e9314f6c690cdd14c2d1e72ecb0f825c358e0ae42fbe9104c0ba3c86d908f0103407c131e64bbabc10e11b1a9a1e05ff2adf6cdac60f0fd
|
7
|
+
data.tar.gz: f25f1f0b2e4f47bd6d5b23b5adeec0de8f8ae2b43c505697ae8439b24e8c88315870d8935cbd78a3945248eebe87a91397f488a370e7d42a10bff813f5a8086c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.303.0
|
@@ -2072,6 +2072,27 @@ module Aws::SageMaker
|
|
2072
2072
|
# security_group_ids: ["SecurityGroupId"], # required
|
2073
2073
|
# subnets: ["SubnetId"], # required
|
2074
2074
|
# },
|
2075
|
+
# scheduled_update_config: {
|
2076
|
+
# schedule_expression: "CronScheduleExpression", # required
|
2077
|
+
# deployment_config: {
|
2078
|
+
# rolling_update_policy: {
|
2079
|
+
# maximum_batch_size: { # required
|
2080
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
2081
|
+
# value: 1, # required
|
2082
|
+
# },
|
2083
|
+
# rollback_maximum_batch_size: {
|
2084
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
2085
|
+
# value: 1, # required
|
2086
|
+
# },
|
2087
|
+
# },
|
2088
|
+
# wait_interval_in_seconds: 1,
|
2089
|
+
# auto_rollback_configuration: [
|
2090
|
+
# {
|
2091
|
+
# alarm_name: "AlarmName", # required
|
2092
|
+
# },
|
2093
|
+
# ],
|
2094
|
+
# },
|
2095
|
+
# },
|
2075
2096
|
# },
|
2076
2097
|
# ],
|
2077
2098
|
# vpc_config: {
|
@@ -4518,9 +4539,11 @@ module Aws::SageMaker
|
|
4518
4539
|
# Components][1].
|
4519
4540
|
#
|
4520
4541
|
# Do not include any security-sensitive information including account
|
4521
|
-
# access IDs, secrets or tokens in any hyperparameter
|
4522
|
-
# of
|
4523
|
-
#
|
4542
|
+
# access IDs, secrets, or tokens in any hyperparameter fields. As part
|
4543
|
+
# of the shared responsibility model, you are responsible for any
|
4544
|
+
# potential exposure, unauthorized access, or compromise of your
|
4545
|
+
# sensitive data if caused by any security-sensitive information
|
4546
|
+
# included in the request hyperparameter variable or plain text fields..
|
4524
4547
|
#
|
4525
4548
|
#
|
4526
4549
|
#
|
@@ -8508,6 +8531,13 @@ module Aws::SageMaker
|
|
8508
8531
|
# The environment variables to set in the Docker container. Up to 100
|
8509
8532
|
# key and values entries in the map are supported.
|
8510
8533
|
#
|
8534
|
+
# Do not include any security-sensitive information including account
|
8535
|
+
# access IDs, secrets, or tokens in any environment fields. As part of
|
8536
|
+
# the shared responsibility model, you are responsible for any potential
|
8537
|
+
# exposure, unauthorized access, or compromise of your sensitive data if
|
8538
|
+
# caused by security-sensitive information included in the request
|
8539
|
+
# environment variable or plain text fields.
|
8540
|
+
#
|
8511
8541
|
# @option params [Types::NetworkConfig] :network_config
|
8512
8542
|
# Networking options for a processing job, such as whether to allow
|
8513
8543
|
# inbound and outbound network calls to and from processing containers,
|
@@ -8523,6 +8553,13 @@ module Aws::SageMaker
|
|
8523
8553
|
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
8524
8554
|
# and Cost Management User Guide*.
|
8525
8555
|
#
|
8556
|
+
# Do not include any security-sensitive information including account
|
8557
|
+
# access IDs, secrets, or tokens in any tags. As part of the shared
|
8558
|
+
# responsibility model, you are responsible for any potential exposure,
|
8559
|
+
# unauthorized access, or compromise of your sensitive data if caused by
|
8560
|
+
# security-sensitive information included in the request tag variable or
|
8561
|
+
# plain text fields.
|
8562
|
+
#
|
8526
8563
|
#
|
8527
8564
|
#
|
8528
8565
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
|
@@ -8952,9 +8989,11 @@ module Aws::SageMaker
|
|
8952
8989
|
# SageMaker, see [Algorithms][1].
|
8953
8990
|
#
|
8954
8991
|
# Do not include any security-sensitive information including account
|
8955
|
-
# access IDs, secrets or tokens in any hyperparameter
|
8956
|
-
#
|
8957
|
-
#
|
8992
|
+
# access IDs, secrets, or tokens in any hyperparameter fields. As part
|
8993
|
+
# of the shared responsibility model, you are responsible for any
|
8994
|
+
# potential exposure, unauthorized access, or compromise of your
|
8995
|
+
# sensitive data if caused by security-sensitive information included
|
8996
|
+
# in the request hyperparameter variable or plain text fields.
|
8958
8997
|
#
|
8959
8998
|
# * `InputDataConfig` - Describes the input required by the training job
|
8960
8999
|
# and the Amazon S3, EFS, or FSx location where it is stored.
|
@@ -8983,6 +9022,13 @@ module Aws::SageMaker
|
|
8983
9022
|
# * `Environment` - The environment variables to set in the Docker
|
8984
9023
|
# container.
|
8985
9024
|
#
|
9025
|
+
# Do not include any security-sensitive information including account
|
9026
|
+
# access IDs, secrets, or tokens in any environment fields. As part of
|
9027
|
+
# the shared responsibility model, you are responsible for any
|
9028
|
+
# potential exposure, unauthorized access, or compromise of your
|
9029
|
+
# sensitive data if caused by security-sensitive information included
|
9030
|
+
# in the request environment variable or plain text fields.
|
9031
|
+
#
|
8986
9032
|
# * `RetryStrategy` - The number of times to retry the job when the job
|
8987
9033
|
# fails due to an `InternalServerError`.
|
8988
9034
|
#
|
@@ -9009,9 +9055,11 @@ module Aws::SageMaker
|
|
9009
9055
|
# as specified by the `Length Constraint`.
|
9010
9056
|
#
|
9011
9057
|
# Do not include any security-sensitive information including account
|
9012
|
-
# access IDs, secrets or tokens in any hyperparameter
|
9013
|
-
# of
|
9014
|
-
#
|
9058
|
+
# access IDs, secrets, or tokens in any hyperparameter fields. As part
|
9059
|
+
# of the shared responsibility model, you are responsible for any
|
9060
|
+
# potential exposure, unauthorized access, or compromise of your
|
9061
|
+
# sensitive data if caused by any security-sensitive information
|
9062
|
+
# included in the request hyperparameter variable or plain text fields.
|
9015
9063
|
#
|
9016
9064
|
#
|
9017
9065
|
#
|
@@ -9113,6 +9161,13 @@ module Aws::SageMaker
|
|
9113
9161
|
# purpose, owner, or environment. For more information, see [Tagging
|
9114
9162
|
# Amazon Web Services Resources][1].
|
9115
9163
|
#
|
9164
|
+
# Do not include any security-sensitive information including account
|
9165
|
+
# access IDs, secrets, or tokens in any tags. As part of the shared
|
9166
|
+
# responsibility model, you are responsible for any potential exposure,
|
9167
|
+
# unauthorized access, or compromise of your sensitive data if caused by
|
9168
|
+
# any security-sensitive information included in the request tag
|
9169
|
+
# variable or plain text fields.
|
9170
|
+
#
|
9116
9171
|
#
|
9117
9172
|
#
|
9118
9173
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
@@ -9202,6 +9257,13 @@ module Aws::SageMaker
|
|
9202
9257
|
# @option params [Hash<String,String>] :environment
|
9203
9258
|
# The environment variables to set in the Docker container.
|
9204
9259
|
#
|
9260
|
+
# Do not include any security-sensitive information including account
|
9261
|
+
# access IDs, secrets, or tokens in any environment fields. As part of
|
9262
|
+
# the shared responsibility model, you are responsible for any potential
|
9263
|
+
# exposure, unauthorized access, or compromise of your sensitive data if
|
9264
|
+
# caused by security-sensitive information included in the request
|
9265
|
+
# environment variable or plain text fields.
|
9266
|
+
#
|
9205
9267
|
# @option params [Types::RetryStrategy] :retry_strategy
|
9206
9268
|
# The number of times to retry the job when the job fails due to an
|
9207
9269
|
# `InternalServerError`.
|
@@ -12862,6 +12924,14 @@ module Aws::SageMaker
|
|
12862
12924
|
# resp.instance_groups[0].override_vpc_config.security_group_ids[0] #=> String
|
12863
12925
|
# resp.instance_groups[0].override_vpc_config.subnets #=> Array
|
12864
12926
|
# resp.instance_groups[0].override_vpc_config.subnets[0] #=> String
|
12927
|
+
# resp.instance_groups[0].scheduled_update_config.schedule_expression #=> String
|
12928
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
|
12929
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.maximum_batch_size.value #=> Integer
|
12930
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
|
12931
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.value #=> Integer
|
12932
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.wait_interval_in_seconds #=> Integer
|
12933
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration #=> Array
|
12934
|
+
# resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration[0].alarm_name #=> String
|
12865
12935
|
# resp.vpc_config.security_group_ids #=> Array
|
12866
12936
|
# resp.vpc_config.security_group_ids[0] #=> String
|
12867
12937
|
# resp.vpc_config.subnets #=> Array
|
@@ -12907,6 +12977,7 @@ module Aws::SageMaker
|
|
12907
12977
|
# resp.node_details.instance_status.message #=> String
|
12908
12978
|
# resp.node_details.instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.g6.xlarge", "ml.g6.2xlarge", "ml.g6.4xlarge", "ml.g6.8xlarge", "ml.g6.16xlarge", "ml.g6.12xlarge", "ml.g6.24xlarge", "ml.g6.48xlarge", "ml.gr6.4xlarge", "ml.gr6.8xlarge", "ml.g6e.xlarge", "ml.g6e.2xlarge", "ml.g6e.4xlarge", "ml.g6e.8xlarge", "ml.g6e.16xlarge", "ml.g6e.12xlarge", "ml.g6e.24xlarge", "ml.g6e.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn2.48xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.m6i.large", "ml.m6i.xlarge", "ml.m6i.2xlarge", "ml.m6i.4xlarge", "ml.m6i.8xlarge", "ml.m6i.12xlarge", "ml.m6i.16xlarge", "ml.m6i.24xlarge", "ml.m6i.32xlarge", "ml.r6i.large", "ml.r6i.xlarge", "ml.r6i.2xlarge", "ml.r6i.4xlarge", "ml.r6i.8xlarge", "ml.r6i.12xlarge", "ml.r6i.16xlarge", "ml.r6i.24xlarge", "ml.r6i.32xlarge", "ml.i3en.large", "ml.i3en.xlarge", "ml.i3en.2xlarge", "ml.i3en.3xlarge", "ml.i3en.6xlarge", "ml.i3en.12xlarge", "ml.i3en.24xlarge", "ml.m7i.large", "ml.m7i.xlarge", "ml.m7i.2xlarge", "ml.m7i.4xlarge", "ml.m7i.8xlarge", "ml.m7i.12xlarge", "ml.m7i.16xlarge", "ml.m7i.24xlarge", "ml.m7i.48xlarge", "ml.r7i.large", "ml.r7i.xlarge", "ml.r7i.2xlarge", "ml.r7i.4xlarge", "ml.r7i.8xlarge", "ml.r7i.12xlarge", "ml.r7i.16xlarge", "ml.r7i.24xlarge", "ml.r7i.48xlarge"
|
12909
12979
|
# resp.node_details.launch_time #=> Time
|
12980
|
+
# resp.node_details.last_software_update_time #=> Time
|
12910
12981
|
# resp.node_details.life_cycle_config.source_s3_uri #=> String
|
12911
12982
|
# resp.node_details.life_cycle_config.on_create #=> String
|
12912
12983
|
# resp.node_details.override_vpc_config.security_group_ids #=> Array
|
@@ -19280,6 +19351,7 @@ module Aws::SageMaker
|
|
19280
19351
|
# resp.cluster_node_summaries[0].instance_id #=> String
|
19281
19352
|
# resp.cluster_node_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.g6.xlarge", "ml.g6.2xlarge", "ml.g6.4xlarge", "ml.g6.8xlarge", "ml.g6.16xlarge", "ml.g6.12xlarge", "ml.g6.24xlarge", "ml.g6.48xlarge", "ml.gr6.4xlarge", "ml.gr6.8xlarge", "ml.g6e.xlarge", "ml.g6e.2xlarge", "ml.g6e.4xlarge", "ml.g6e.8xlarge", "ml.g6e.16xlarge", "ml.g6e.12xlarge", "ml.g6e.24xlarge", "ml.g6e.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn2.48xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.m6i.large", "ml.m6i.xlarge", "ml.m6i.2xlarge", "ml.m6i.4xlarge", "ml.m6i.8xlarge", "ml.m6i.12xlarge", "ml.m6i.16xlarge", "ml.m6i.24xlarge", "ml.m6i.32xlarge", "ml.r6i.large", "ml.r6i.xlarge", "ml.r6i.2xlarge", "ml.r6i.4xlarge", "ml.r6i.8xlarge", "ml.r6i.12xlarge", "ml.r6i.16xlarge", "ml.r6i.24xlarge", "ml.r6i.32xlarge", "ml.i3en.large", "ml.i3en.xlarge", "ml.i3en.2xlarge", "ml.i3en.3xlarge", "ml.i3en.6xlarge", "ml.i3en.12xlarge", "ml.i3en.24xlarge", "ml.m7i.large", "ml.m7i.xlarge", "ml.m7i.2xlarge", "ml.m7i.4xlarge", "ml.m7i.8xlarge", "ml.m7i.12xlarge", "ml.m7i.16xlarge", "ml.m7i.24xlarge", "ml.m7i.48xlarge", "ml.r7i.large", "ml.r7i.xlarge", "ml.r7i.2xlarge", "ml.r7i.4xlarge", "ml.r7i.8xlarge", "ml.r7i.12xlarge", "ml.r7i.16xlarge", "ml.r7i.24xlarge", "ml.r7i.48xlarge"
|
19282
19353
|
# resp.cluster_node_summaries[0].launch_time #=> Time
|
19354
|
+
# resp.cluster_node_summaries[0].last_software_update_time #=> Time
|
19283
19355
|
# resp.cluster_node_summaries[0].instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating", "DeepHealthCheckInProgress"
|
19284
19356
|
# resp.cluster_node_summaries[0].instance_status.message #=> String
|
19285
19357
|
#
|
@@ -26342,6 +26414,27 @@ module Aws::SageMaker
|
|
26342
26414
|
# security_group_ids: ["SecurityGroupId"], # required
|
26343
26415
|
# subnets: ["SubnetId"], # required
|
26344
26416
|
# },
|
26417
|
+
# scheduled_update_config: {
|
26418
|
+
# schedule_expression: "CronScheduleExpression", # required
|
26419
|
+
# deployment_config: {
|
26420
|
+
# rolling_update_policy: {
|
26421
|
+
# maximum_batch_size: { # required
|
26422
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
26423
|
+
# value: 1, # required
|
26424
|
+
# },
|
26425
|
+
# rollback_maximum_batch_size: {
|
26426
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
26427
|
+
# value: 1, # required
|
26428
|
+
# },
|
26429
|
+
# },
|
26430
|
+
# wait_interval_in_seconds: 1,
|
26431
|
+
# auto_rollback_configuration: [
|
26432
|
+
# {
|
26433
|
+
# alarm_name: "AlarmName", # required
|
26434
|
+
# },
|
26435
|
+
# ],
|
26436
|
+
# },
|
26437
|
+
# },
|
26345
26438
|
# },
|
26346
26439
|
# ],
|
26347
26440
|
# node_recovery: "Automatic", # accepts Automatic, None
|
@@ -26427,6 +26520,12 @@ module Aws::SageMaker
|
|
26427
26520
|
# Specify the name or the Amazon Resource Name (ARN) of the SageMaker
|
26428
26521
|
# HyperPod cluster you want to update for security patching.
|
26429
26522
|
#
|
26523
|
+
# @option params [Array<Types::UpdateClusterSoftwareInstanceGroupSpecification>] :instance_groups
|
26524
|
+
# The array of instance groups for which to update AMI versions.
|
26525
|
+
#
|
26526
|
+
# @option params [Types::DeploymentConfiguration] :deployment_config
|
26527
|
+
# The configuration to use when updating the AMI versions.
|
26528
|
+
#
|
26430
26529
|
# @return [Types::UpdateClusterSoftwareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26431
26530
|
#
|
26432
26531
|
# * {Types::UpdateClusterSoftwareResponse#cluster_arn #cluster_arn} => String
|
@@ -26435,6 +26534,29 @@ module Aws::SageMaker
|
|
26435
26534
|
#
|
26436
26535
|
# resp = client.update_cluster_software({
|
26437
26536
|
# cluster_name: "ClusterNameOrArn", # required
|
26537
|
+
# instance_groups: [
|
26538
|
+
# {
|
26539
|
+
# instance_group_name: "ClusterInstanceGroupName", # required
|
26540
|
+
# },
|
26541
|
+
# ],
|
26542
|
+
# deployment_config: {
|
26543
|
+
# rolling_update_policy: {
|
26544
|
+
# maximum_batch_size: { # required
|
26545
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
26546
|
+
# value: 1, # required
|
26547
|
+
# },
|
26548
|
+
# rollback_maximum_batch_size: {
|
26549
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
26550
|
+
# value: 1, # required
|
26551
|
+
# },
|
26552
|
+
# },
|
26553
|
+
# wait_interval_in_seconds: 1,
|
26554
|
+
# auto_rollback_configuration: [
|
26555
|
+
# {
|
26556
|
+
# alarm_name: "AlarmName", # required
|
26557
|
+
# },
|
26558
|
+
# ],
|
26559
|
+
# },
|
26438
26560
|
# })
|
26439
26561
|
#
|
26440
26562
|
# @example Response structure
|
@@ -29789,7 +29911,7 @@ module Aws::SageMaker
|
|
29789
29911
|
tracer: tracer
|
29790
29912
|
)
|
29791
29913
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
29792
|
-
context[:gem_version] = '1.
|
29914
|
+
context[:gem_version] = '1.303.0'
|
29793
29915
|
Seahorse::Client::Request.new(handlers, context)
|
29794
29916
|
end
|
29795
29917
|
|