aws-sdk-sagemaker 1.52.0 → 1.53.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 +5 -5
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +175 -95
- data/lib/aws-sdk-sagemaker/client_api.rb +2 -1
- data/lib/aws-sdk-sagemaker/resource.rb +1 -7
- data/lib/aws-sdk-sagemaker/types.rb +184 -84
- data/lib/aws-sdk-sagemaker/waiters.rb +68 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f9f44de38715ba58b34b37ff48bf48f179cdf329
|
4
|
+
data.tar.gz: 7300f25d0d671b2ff3ecb0642337a2525598c147
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19df3f9072cfadc83151d8c87128023f4d2f668a65aefb7da23ab9b97c99cbe0320e3047472b136993ba1672b9789869dd6a530fb4786e3f0a05eef75be94205
|
7
|
+
data.tar.gz: caba6c09808792e02ab666efd4bff084a361e69f4afdff91955612049f02e15f6c85eb0ab3e27fe8dd3e97e2065b746163228fb60f082918ef7bbd6a0f4a6150
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -279,8 +279,7 @@ module Aws::SageMaker
|
|
279
279
|
#
|
280
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
281
281
|
# number of seconds to wait for response data. This value can
|
282
|
-
# safely be set
|
283
|
-
# per-request on the session yielded by {#session_for}.
|
282
|
+
# safely be set per-request on the session.
|
284
283
|
#
|
285
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
286
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -292,7 +291,7 @@ module Aws::SageMaker
|
|
292
291
|
# request body. This option has no effect unless the request has
|
293
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
294
293
|
# disables this behaviour. This value can safely be set per
|
295
|
-
# request on the session
|
294
|
+
# request on the session.
|
296
295
|
#
|
297
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
298
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -715,13 +714,26 @@ module Aws::SageMaker
|
|
715
714
|
|
716
715
|
# Creates an AutoPilot job.
|
717
716
|
#
|
717
|
+
# After you run an AutoPilot job, you can find the best performing model
|
718
|
+
# by calling , and then deploy that model by following the steps
|
719
|
+
# described in [Step 6.1: Deploy the Model to Amazon SageMaker Hosting
|
720
|
+
# Services][1].
|
721
|
+
#
|
722
|
+
# For information about how to use AutoPilot, see [Use AutoPilot to
|
723
|
+
# Automate Model Development][2].
|
724
|
+
#
|
725
|
+
#
|
726
|
+
#
|
727
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html
|
728
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development.html
|
729
|
+
#
|
718
730
|
# @option params [required, String] :auto_ml_job_name
|
719
731
|
# Identifies an AutoPilot job. Must be unique to your account and is
|
720
732
|
# case-insensitive.
|
721
733
|
#
|
722
734
|
# @option params [required, Array<Types::AutoMLChannel>] :input_data_config
|
723
735
|
# Similar to InputDataConfig supported by Tuning. Format(s) supported:
|
724
|
-
# CSV.
|
736
|
+
# CSV. Minimum of 1000 rows.
|
725
737
|
#
|
726
738
|
# @option params [required, Types::AutoMLOutputDataConfig] :output_data_config
|
727
739
|
# Similar to OutputDataConfig supported by Tuning. Format(s) supported:
|
@@ -957,7 +969,7 @@ module Aws::SageMaker
|
|
957
969
|
# },
|
958
970
|
# output_config: { # required
|
959
971
|
# s3_output_location: "S3Uri", # required
|
960
|
-
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, amba_cv22
|
972
|
+
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22
|
961
973
|
# },
|
962
974
|
# stopping_condition: { # required
|
963
975
|
# max_runtime_in_seconds: 1,
|
@@ -1077,13 +1089,13 @@ module Aws::SageMaker
|
|
1077
1089
|
# Creates an endpoint using the endpoint configuration specified in the
|
1078
1090
|
# request. Amazon SageMaker uses the endpoint to provision resources and
|
1079
1091
|
# deploy models. You create the endpoint configuration with the
|
1080
|
-
#
|
1092
|
+
# CreateEndpointConfig API.
|
1081
1093
|
#
|
1082
1094
|
# Use this API to deploy models using Amazon SageMaker hosting services.
|
1083
1095
|
#
|
1084
1096
|
# For an example that calls this method when deploying a model to Amazon
|
1085
1097
|
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
1086
|
-
# Hosting Services (AWS SDK for Python (Boto 3)).][
|
1098
|
+
# Hosting Services (AWS SDK for Python (Boto 3)).][1]
|
1087
1099
|
#
|
1088
1100
|
# <note markdown="1"> You must not delete an `EndpointConfig` that is in use by an endpoint
|
1089
1101
|
# that is live or while the `UpdateEndpoint` or `CreateEndpoint`
|
@@ -1103,7 +1115,7 @@ module Aws::SageMaker
|
|
1103
1115
|
# status to `Creating`. After it creates the endpoint, it sets the
|
1104
1116
|
# status to `InService`. Amazon SageMaker can then process incoming
|
1105
1117
|
# requests for inferences. To check the status of an endpoint, use the
|
1106
|
-
#
|
1118
|
+
# DescribeEndpoint API.
|
1107
1119
|
#
|
1108
1120
|
# If any of the models hosted at this endpoint get model data from an
|
1109
1121
|
# Amazon S3 location, Amazon SageMaker uses AWS Security Token Service
|
@@ -1111,15 +1123,13 @@ module Aws::SageMaker
|
|
1111
1123
|
# activated in your IAM user account by default. If you previously
|
1112
1124
|
# deactivated AWS STS for a region, you need to reactivate AWS STS for
|
1113
1125
|
# that region. For more information, see [Activating and Deactivating
|
1114
|
-
# AWS STS in an AWS Region][
|
1126
|
+
# AWS STS in an AWS Region][2] in the *AWS Identity and Access
|
1115
1127
|
# Management User Guide*.
|
1116
1128
|
#
|
1117
1129
|
#
|
1118
1130
|
#
|
1119
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
1120
|
-
# [2]: https://docs.aws.amazon.com/
|
1121
|
-
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_DescribeEndpoint.html
|
1122
|
-
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
1131
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1132
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
1123
1133
|
#
|
1124
1134
|
# @option params [required, String] :endpoint_name
|
1125
1135
|
# The name of the endpoint. The name must be unique within an AWS Region
|
@@ -1127,11 +1137,7 @@ module Aws::SageMaker
|
|
1127
1137
|
#
|
1128
1138
|
# @option params [required, String] :endpoint_config_name
|
1129
1139
|
# The name of an endpoint configuration. For more information, see
|
1130
|
-
#
|
1131
|
-
#
|
1132
|
-
#
|
1133
|
-
#
|
1134
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpointConfig.html
|
1140
|
+
# CreateEndpointConfig.
|
1135
1141
|
#
|
1136
1142
|
# @option params [Array<Types::Tag>] :tags
|
1137
1143
|
# An array of key-value pairs. For more information, see [Using Cost
|
@@ -1176,7 +1182,7 @@ module Aws::SageMaker
|
|
1176
1182
|
# services uses to deploy models. In the configuration, you identify one
|
1177
1183
|
# or more models, created using the `CreateModel` API, to deploy and the
|
1178
1184
|
# resources that you want Amazon SageMaker to provision. Then you call
|
1179
|
-
# the
|
1185
|
+
# the CreateEndpoint API.
|
1180
1186
|
#
|
1181
1187
|
# <note markdown="1"> Use this API if you want to use Amazon SageMaker hosting services to
|
1182
1188
|
# deploy models into production.
|
@@ -1197,20 +1203,15 @@ module Aws::SageMaker
|
|
1197
1203
|
#
|
1198
1204
|
# For an example that calls this method when deploying a model to Amazon
|
1199
1205
|
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
1200
|
-
# Hosting Services (AWS SDK for Python (Boto 3)).][
|
1206
|
+
# Hosting Services (AWS SDK for Python (Boto 3)).][1]
|
1201
1207
|
#
|
1202
1208
|
#
|
1203
1209
|
#
|
1204
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
1205
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1210
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1206
1211
|
#
|
1207
1212
|
# @option params [required, String] :endpoint_config_name
|
1208
1213
|
# The name of the endpoint configuration. You specify this name in a
|
1209
|
-
#
|
1210
|
-
#
|
1211
|
-
#
|
1212
|
-
#
|
1213
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpoint.html
|
1214
|
+
# CreateEndpoint request.
|
1214
1215
|
#
|
1215
1216
|
# @option params [required, Array<Types::ProductionVariant>] :production_variants
|
1216
1217
|
# An list of `ProductionVariant` objects, one for each model that you
|
@@ -1407,6 +1408,9 @@ module Aws::SageMaker
|
|
1407
1408
|
# @option params [required, String] :flow_definition_name
|
1408
1409
|
# The name of your flow definition.
|
1409
1410
|
#
|
1411
|
+
# @option params [Types::HumanLoopRequestSource] :human_loop_request_source
|
1412
|
+
# Container for configuring the source of human task requests.
|
1413
|
+
#
|
1410
1414
|
# @option params [Types::HumanLoopActivationConfig] :human_loop_activation_config
|
1411
1415
|
# An object containing information about the events that trigger a human
|
1412
1416
|
# workflow.
|
@@ -1437,10 +1441,10 @@ module Aws::SageMaker
|
|
1437
1441
|
#
|
1438
1442
|
# resp = client.create_flow_definition({
|
1439
1443
|
# flow_definition_name: "FlowDefinitionName", # required
|
1444
|
+
# human_loop_request_source: {
|
1445
|
+
# aws_managed_human_loop_request_source: "AWS/Rekognition/DetectModerationLabels/Image/V3", # required, accepts AWS/Rekognition/DetectModerationLabels/Image/V3, AWS/Textract/AnalyzeDocument/Forms/V1
|
1446
|
+
# },
|
1440
1447
|
# human_loop_activation_config: {
|
1441
|
-
# human_loop_request_source: { # required
|
1442
|
-
# aws_managed_human_loop_request_source: "AWS/Rekognition/DetectModerationLabels/Image/V3", # required, accepts AWS/Rekognition/DetectModerationLabels/Image/V3, AWS/Textract/AnalyzeDocument/Forms/V1
|
1443
|
-
# },
|
1444
1448
|
# human_loop_activation_conditions_config: { # required
|
1445
1449
|
# human_loop_activation_conditions: "HumanLoopActivationConditions", # required
|
1446
1450
|
# },
|
@@ -1553,8 +1557,12 @@ module Aws::SageMaker
|
|
1553
1557
|
# The HyperParameterTuningJobConfig object that describes the tuning
|
1554
1558
|
# job, including the search strategy, the objective metric used to
|
1555
1559
|
# evaluate training jobs, ranges of parameters to search, and resource
|
1556
|
-
# limits for the tuning job. For more information, see
|
1557
|
-
#
|
1560
|
+
# limits for the tuning job. For more information, see [How
|
1561
|
+
# Hyperparameter Tuning Works][1].
|
1562
|
+
#
|
1563
|
+
#
|
1564
|
+
#
|
1565
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-how-it-works.html
|
1558
1566
|
#
|
1559
1567
|
# @option params [Types::HyperParameterTrainingJobDefinition] :training_job_definition
|
1560
1568
|
# The HyperParameterTrainingJobDefinition object that describes the
|
@@ -2146,18 +2154,17 @@ module Aws::SageMaker
|
|
2146
2154
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
|
2147
2155
|
#
|
2148
2156
|
# @option params [Types::VpcConfig] :vpc_config
|
2149
|
-
# A
|
2150
|
-
#
|
2151
|
-
#
|
2157
|
+
# A VpcConfig object that specifies the VPC that you want your model to
|
2158
|
+
# connect to. Control access to and from your model container by
|
2159
|
+
# configuring the VPC. `VpcConfig` is used in hosting services and in
|
2152
2160
|
# batch transform. For more information, see [Protect Endpoints by Using
|
2153
|
-
# an Amazon Virtual Private Cloud][
|
2154
|
-
# Transform Jobs by Using an Amazon Virtual Private Cloud][
|
2161
|
+
# an Amazon Virtual Private Cloud][1] and [Protect Data in Batch
|
2162
|
+
# Transform Jobs by Using an Amazon Virtual Private Cloud][2].
|
2155
2163
|
#
|
2156
2164
|
#
|
2157
2165
|
#
|
2158
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
2159
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
2160
|
-
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-vpc.html
|
2166
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html
|
2167
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-vpc.html
|
2161
2168
|
#
|
2162
2169
|
# @option params [Boolean] :enable_network_isolation
|
2163
2170
|
# Isolates the model container. No inbound or outbound network calls can
|
@@ -2361,7 +2368,7 @@ module Aws::SageMaker
|
|
2361
2368
|
# @option params [Array<Types::Tag>] :tags
|
2362
2369
|
# (Optional) An array of key-value pairs. For more information, see
|
2363
2370
|
# [Using Cost Allocation Tags](
|
2364
|
-
# https://docs
|
2371
|
+
# https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL)
|
2365
2372
|
# in the *AWS Billing and Cost Management User Guide*.
|
2366
2373
|
#
|
2367
2374
|
# @return [Types::CreateMonitoringScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2795,9 +2802,10 @@ module Aws::SageMaker
|
|
2795
2802
|
# want to have access to the notebook instance. For more information,
|
2796
2803
|
# see [Limit Access to a Notebook Instance by IP Address][1].
|
2797
2804
|
#
|
2798
|
-
# <note markdown="1"> The URL that you get from a call to
|
2799
|
-
# you try to use the URL after the
|
2800
|
-
# directed to the AWS console sign-in
|
2805
|
+
# <note markdown="1"> The URL that you get from a call to CreatePresignedNotebookInstanceUrl
|
2806
|
+
# is valid only for 5 minutes. If you try to use the URL after the
|
2807
|
+
# 5-minute limit expires, you are directed to the AWS console sign-in
|
2808
|
+
# page.
|
2801
2809
|
#
|
2802
2810
|
# </note>
|
2803
2811
|
#
|
@@ -2878,7 +2886,7 @@ module Aws::SageMaker
|
|
2878
2886
|
#
|
2879
2887
|
#
|
2880
2888
|
#
|
2881
|
-
# [1]: https://docs
|
2889
|
+
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
|
2882
2890
|
#
|
2883
2891
|
# @option params [Types::ExperimentConfig] :experiment_config
|
2884
2892
|
# Configuration for the experiment.
|
@@ -3398,8 +3406,8 @@ module Aws::SageMaker
|
|
3398
3406
|
# inference can be made on. For example, a single line in a CSV file is
|
3399
3407
|
# a record.
|
3400
3408
|
#
|
3401
|
-
# To enable the batch strategy, you must set the `SplitType` property
|
3402
|
-
#
|
3409
|
+
# To enable the batch strategy, you must set the `SplitType` property to
|
3410
|
+
# `Line`, `RecordIO`, or `TFRecord`.
|
3403
3411
|
#
|
3404
3412
|
# To use only one record when making an HTTP invocation request to a
|
3405
3413
|
# container, set `BatchStrategy` to `SingleRecord` and `SplitType` to
|
@@ -4089,13 +4097,9 @@ module Aws::SageMaker
|
|
4089
4097
|
end
|
4090
4098
|
|
4091
4099
|
# Deletes a model. The `DeleteModel` API deletes only the model entry
|
4092
|
-
# that was created in Amazon SageMaker when you called the
|
4093
|
-
#
|
4094
|
-
#
|
4095
|
-
#
|
4096
|
-
#
|
4097
|
-
#
|
4098
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateModel.html
|
4100
|
+
# that was created in Amazon SageMaker when you called the CreateModel
|
4101
|
+
# API. It does not delete model artifacts, inference code, or the IAM
|
4102
|
+
# role that you specified when creating the model.
|
4099
4103
|
#
|
4100
4104
|
# @option params [required, String] :model_name
|
4101
4105
|
# The name of the model to delete.
|
@@ -4762,7 +4766,7 @@ module Aws::SageMaker
|
|
4762
4766
|
# resp.input_config.data_input_config #=> String
|
4763
4767
|
# resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST"
|
4764
4768
|
# resp.output_config.s3_output_location #=> String
|
4765
|
-
# resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "amba_cv22"
|
4769
|
+
# resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22"
|
4766
4770
|
#
|
4767
4771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJob AWS API Documentation
|
4768
4772
|
#
|
@@ -4889,6 +4893,12 @@ module Aws::SageMaker
|
|
4889
4893
|
# resp.creation_time #=> Time
|
4890
4894
|
# resp.last_modified_time #=> Time
|
4891
4895
|
#
|
4896
|
+
#
|
4897
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
4898
|
+
#
|
4899
|
+
# * endpoint_deleted
|
4900
|
+
# * endpoint_in_service
|
4901
|
+
#
|
4892
4902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpoint AWS API Documentation
|
4893
4903
|
#
|
4894
4904
|
# @overload describe_endpoint(params = {})
|
@@ -5012,6 +5022,7 @@ module Aws::SageMaker
|
|
5012
5022
|
# * {Types::DescribeFlowDefinitionResponse#flow_definition_name #flow_definition_name} => String
|
5013
5023
|
# * {Types::DescribeFlowDefinitionResponse#flow_definition_status #flow_definition_status} => String
|
5014
5024
|
# * {Types::DescribeFlowDefinitionResponse#creation_time #creation_time} => Time
|
5025
|
+
# * {Types::DescribeFlowDefinitionResponse#human_loop_request_source #human_loop_request_source} => Types::HumanLoopRequestSource
|
5015
5026
|
# * {Types::DescribeFlowDefinitionResponse#human_loop_activation_config #human_loop_activation_config} => Types::HumanLoopActivationConfig
|
5016
5027
|
# * {Types::DescribeFlowDefinitionResponse#human_loop_config #human_loop_config} => Types::HumanLoopConfig
|
5017
5028
|
# * {Types::DescribeFlowDefinitionResponse#output_config #output_config} => Types::FlowDefinitionOutputConfig
|
@@ -5028,9 +5039,9 @@ module Aws::SageMaker
|
|
5028
5039
|
#
|
5029
5040
|
# resp.flow_definition_arn #=> String
|
5030
5041
|
# resp.flow_definition_name #=> String
|
5031
|
-
# resp.flow_definition_status #=> String, one of "Initializing", "Active", "Failed", "Deleting"
|
5042
|
+
# resp.flow_definition_status #=> String, one of "Initializing", "Active", "Failed", "Deleting"
|
5032
5043
|
# resp.creation_time #=> Time
|
5033
|
-
# resp.
|
5044
|
+
# resp.human_loop_request_source.aws_managed_human_loop_request_source #=> String, one of "AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
5034
5045
|
# resp.human_loop_activation_config.human_loop_activation_conditions_config.human_loop_activation_conditions #=> String
|
5035
5046
|
# resp.human_loop_config.workteam_arn #=> String
|
5036
5047
|
# resp.human_loop_config.human_task_ui_arn #=> String
|
@@ -5703,6 +5714,13 @@ module Aws::SageMaker
|
|
5703
5714
|
# resp.additional_code_repositories[0] #=> String
|
5704
5715
|
# resp.root_access #=> String, one of "Enabled", "Disabled"
|
5705
5716
|
#
|
5717
|
+
#
|
5718
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
5719
|
+
#
|
5720
|
+
# * notebook_instance_deleted
|
5721
|
+
# * notebook_instance_in_service
|
5722
|
+
# * notebook_instance_stopped
|
5723
|
+
#
|
5706
5724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeNotebookInstance AWS API Documentation
|
5707
5725
|
#
|
5708
5726
|
# @overload describe_notebook_instance(params = {})
|
@@ -5845,6 +5863,11 @@ module Aws::SageMaker
|
|
5845
5863
|
# resp.auto_ml_job_arn #=> String
|
5846
5864
|
# resp.training_job_arn #=> String
|
5847
5865
|
#
|
5866
|
+
#
|
5867
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
5868
|
+
#
|
5869
|
+
# * processing_job_completed_or_stopped
|
5870
|
+
#
|
5848
5871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProcessingJob AWS API Documentation
|
5849
5872
|
#
|
5850
5873
|
# @overload describe_processing_job(params = {})
|
@@ -6034,6 +6057,11 @@ module Aws::SageMaker
|
|
6034
6057
|
# resp.debug_rule_evaluation_statuses[0].status_details #=> String
|
6035
6058
|
# resp.debug_rule_evaluation_statuses[0].last_modified_time #=> Time
|
6036
6059
|
#
|
6060
|
+
#
|
6061
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
6062
|
+
#
|
6063
|
+
# * training_job_completed_or_stopped
|
6064
|
+
#
|
6037
6065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingJob AWS API Documentation
|
6038
6066
|
#
|
6039
6067
|
# @overload describe_training_job(params = {})
|
@@ -6112,6 +6140,11 @@ module Aws::SageMaker
|
|
6112
6140
|
# resp.experiment_config.trial_name #=> String
|
6113
6141
|
# resp.experiment_config.trial_component_display_name #=> String
|
6114
6142
|
#
|
6143
|
+
#
|
6144
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
6145
|
+
#
|
6146
|
+
# * transform_job_completed_or_stopped
|
6147
|
+
#
|
6115
6148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTransformJob AWS API Documentation
|
6116
6149
|
#
|
6117
6150
|
# @overload describe_transform_job(params = {})
|
@@ -6512,6 +6545,8 @@ module Aws::SageMaker
|
|
6512
6545
|
# * {Types::ListAlgorithmsOutput#algorithm_summary_list #algorithm_summary_list} => Array<Types::AlgorithmSummary>
|
6513
6546
|
# * {Types::ListAlgorithmsOutput#next_token #next_token} => String
|
6514
6547
|
#
|
6548
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6549
|
+
#
|
6515
6550
|
# @example Request syntax with placeholder values
|
6516
6551
|
#
|
6517
6552
|
# resp = client.list_algorithms({
|
@@ -6570,6 +6605,8 @@ module Aws::SageMaker
|
|
6570
6605
|
# * {Types::ListAppsResponse#apps #apps} => Array<Types::AppDetails>
|
6571
6606
|
# * {Types::ListAppsResponse#next_token #next_token} => String
|
6572
6607
|
#
|
6608
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6609
|
+
#
|
6573
6610
|
# @example Request syntax with placeholder values
|
6574
6611
|
#
|
6575
6612
|
# resp = client.list_apps({
|
@@ -6640,6 +6677,8 @@ module Aws::SageMaker
|
|
6640
6677
|
# * {Types::ListAutoMLJobsResponse#auto_ml_job_summaries #auto_ml_job_summaries} => Array<Types::AutoMLJobSummary>
|
6641
6678
|
# * {Types::ListAutoMLJobsResponse#next_token #next_token} => String
|
6642
6679
|
#
|
6680
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6681
|
+
#
|
6643
6682
|
# @example Request syntax with placeholder values
|
6644
6683
|
#
|
6645
6684
|
# resp = client.list_auto_ml_jobs({
|
@@ -6706,6 +6745,8 @@ module Aws::SageMaker
|
|
6706
6745
|
# * {Types::ListCandidatesForAutoMLJobResponse#candidates #candidates} => Array<Types::AutoMLCandidate>
|
6707
6746
|
# * {Types::ListCandidatesForAutoMLJobResponse#next_token #next_token} => String
|
6708
6747
|
#
|
6748
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6749
|
+
#
|
6709
6750
|
# @example Request syntax with placeholder values
|
6710
6751
|
#
|
6711
6752
|
# resp = client.list_candidates_for_auto_ml_job({
|
@@ -6792,6 +6833,8 @@ module Aws::SageMaker
|
|
6792
6833
|
# * {Types::ListCodeRepositoriesOutput#code_repository_summary_list #code_repository_summary_list} => Array<Types::CodeRepositorySummary>
|
6793
6834
|
# * {Types::ListCodeRepositoriesOutput#next_token #next_token} => String
|
6794
6835
|
#
|
6836
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6837
|
+
#
|
6795
6838
|
# @example Request syntax with placeholder values
|
6796
6839
|
#
|
6797
6840
|
# resp = client.list_code_repositories({
|
@@ -6877,6 +6920,8 @@ module Aws::SageMaker
|
|
6877
6920
|
# * {Types::ListCompilationJobsResponse#compilation_job_summaries #compilation_job_summaries} => Array<Types::CompilationJobSummary>
|
6878
6921
|
# * {Types::ListCompilationJobsResponse#next_token #next_token} => String
|
6879
6922
|
#
|
6923
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6924
|
+
#
|
6880
6925
|
# @example Request syntax with placeholder values
|
6881
6926
|
#
|
6882
6927
|
# resp = client.list_compilation_jobs({
|
@@ -6900,7 +6945,7 @@ module Aws::SageMaker
|
|
6900
6945
|
# resp.compilation_job_summaries[0].creation_time #=> Time
|
6901
6946
|
# resp.compilation_job_summaries[0].compilation_start_time #=> Time
|
6902
6947
|
# resp.compilation_job_summaries[0].compilation_end_time #=> Time
|
6903
|
-
# resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "amba_cv22"
|
6948
|
+
# resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22"
|
6904
6949
|
# resp.compilation_job_summaries[0].last_modified_time #=> Time
|
6905
6950
|
# resp.compilation_job_summaries[0].compilation_job_status #=> String, one of "INPROGRESS", "COMPLETED", "FAILED", "STARTING", "STOPPING", "STOPPED"
|
6906
6951
|
# resp.next_token #=> String
|
@@ -6928,6 +6973,8 @@ module Aws::SageMaker
|
|
6928
6973
|
# * {Types::ListDomainsResponse#domains #domains} => Array<Types::DomainDetails>
|
6929
6974
|
# * {Types::ListDomainsResponse#next_token #next_token} => String
|
6930
6975
|
#
|
6976
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6977
|
+
#
|
6931
6978
|
# @example Request syntax with placeholder values
|
6932
6979
|
#
|
6933
6980
|
# resp = client.list_domains({
|
@@ -6989,6 +7036,8 @@ module Aws::SageMaker
|
|
6989
7036
|
# * {Types::ListEndpointConfigsOutput#endpoint_configs #endpoint_configs} => Array<Types::EndpointConfigSummary>
|
6990
7037
|
# * {Types::ListEndpointConfigsOutput#next_token #next_token} => String
|
6991
7038
|
#
|
7039
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7040
|
+
#
|
6992
7041
|
# @example Request syntax with placeholder values
|
6993
7042
|
#
|
6994
7043
|
# resp = client.list_endpoint_configs({
|
@@ -7062,6 +7111,8 @@ module Aws::SageMaker
|
|
7062
7111
|
# * {Types::ListEndpointsOutput#endpoints #endpoints} => Array<Types::EndpointSummary>
|
7063
7112
|
# * {Types::ListEndpointsOutput#next_token #next_token} => String
|
7064
7113
|
#
|
7114
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7115
|
+
#
|
7065
7116
|
# @example Request syntax with placeholder values
|
7066
7117
|
#
|
7067
7118
|
# resp = client.list_endpoints({
|
@@ -7129,6 +7180,8 @@ module Aws::SageMaker
|
|
7129
7180
|
# * {Types::ListExperimentsResponse#experiment_summaries #experiment_summaries} => Array<Types::ExperimentSummary>
|
7130
7181
|
# * {Types::ListExperimentsResponse#next_token #next_token} => String
|
7131
7182
|
#
|
7183
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7184
|
+
#
|
7132
7185
|
# @example Request syntax with placeholder values
|
7133
7186
|
#
|
7134
7187
|
# resp = client.list_experiments({
|
@@ -7189,6 +7242,8 @@ module Aws::SageMaker
|
|
7189
7242
|
# * {Types::ListFlowDefinitionsResponse#flow_definition_summaries #flow_definition_summaries} => Array<Types::FlowDefinitionSummary>
|
7190
7243
|
# * {Types::ListFlowDefinitionsResponse#next_token #next_token} => String
|
7191
7244
|
#
|
7245
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7246
|
+
#
|
7192
7247
|
# @example Request syntax with placeholder values
|
7193
7248
|
#
|
7194
7249
|
# resp = client.list_flow_definitions({
|
@@ -7204,7 +7259,7 @@ module Aws::SageMaker
|
|
7204
7259
|
# resp.flow_definition_summaries #=> Array
|
7205
7260
|
# resp.flow_definition_summaries[0].flow_definition_name #=> String
|
7206
7261
|
# resp.flow_definition_summaries[0].flow_definition_arn #=> String
|
7207
|
-
# resp.flow_definition_summaries[0].flow_definition_status #=> String, one of "Initializing", "Active", "Failed", "Deleting"
|
7262
|
+
# resp.flow_definition_summaries[0].flow_definition_status #=> String, one of "Initializing", "Active", "Failed", "Deleting"
|
7208
7263
|
# resp.flow_definition_summaries[0].creation_time #=> Time
|
7209
7264
|
# resp.flow_definition_summaries[0].failure_reason #=> String
|
7210
7265
|
# resp.next_token #=> String
|
@@ -7247,6 +7302,8 @@ module Aws::SageMaker
|
|
7247
7302
|
# * {Types::ListHumanTaskUisResponse#human_task_ui_summaries #human_task_ui_summaries} => Array<Types::HumanTaskUiSummary>
|
7248
7303
|
# * {Types::ListHumanTaskUisResponse#next_token #next_token} => String
|
7249
7304
|
#
|
7305
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7306
|
+
#
|
7250
7307
|
# @example Request syntax with placeholder values
|
7251
7308
|
#
|
7252
7309
|
# resp = client.list_human_task_uis({
|
@@ -7319,6 +7376,8 @@ module Aws::SageMaker
|
|
7319
7376
|
# * {Types::ListHyperParameterTuningJobsResponse#hyper_parameter_tuning_job_summaries #hyper_parameter_tuning_job_summaries} => Array<Types::HyperParameterTuningJobSummary>
|
7320
7377
|
# * {Types::ListHyperParameterTuningJobsResponse#next_token #next_token} => String
|
7321
7378
|
#
|
7379
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7380
|
+
#
|
7322
7381
|
# @example Request syntax with placeholder values
|
7323
7382
|
#
|
7324
7383
|
# resp = client.list_hyper_parameter_tuning_jobs({
|
@@ -7410,6 +7469,8 @@ module Aws::SageMaker
|
|
7410
7469
|
# * {Types::ListLabelingJobsResponse#labeling_job_summary_list #labeling_job_summary_list} => Array<Types::LabelingJobSummary>
|
7411
7470
|
# * {Types::ListLabelingJobsResponse#next_token #next_token} => String
|
7412
7471
|
#
|
7472
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7473
|
+
#
|
7413
7474
|
# @example Request syntax with placeholder values
|
7414
7475
|
#
|
7415
7476
|
# resp = client.list_labeling_jobs({
|
@@ -7496,6 +7557,8 @@ module Aws::SageMaker
|
|
7496
7557
|
# * {Types::ListLabelingJobsForWorkteamResponse#labeling_job_summary_list #labeling_job_summary_list} => Array<Types::LabelingJobForWorkteamSummary>
|
7497
7558
|
# * {Types::ListLabelingJobsForWorkteamResponse#next_token #next_token} => String
|
7498
7559
|
#
|
7560
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7561
|
+
#
|
7499
7562
|
# @example Request syntax with placeholder values
|
7500
7563
|
#
|
7501
7564
|
# resp = client.list_labeling_jobs_for_workteam({
|
@@ -7565,6 +7628,8 @@ module Aws::SageMaker
|
|
7565
7628
|
# * {Types::ListModelPackagesOutput#model_package_summary_list #model_package_summary_list} => Array<Types::ModelPackageSummary>
|
7566
7629
|
# * {Types::ListModelPackagesOutput#next_token #next_token} => String
|
7567
7630
|
#
|
7631
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7632
|
+
#
|
7568
7633
|
# @example Request syntax with placeholder values
|
7569
7634
|
#
|
7570
7635
|
# resp = client.list_model_packages({
|
@@ -7596,11 +7661,7 @@ module Aws::SageMaker
|
|
7596
7661
|
req.send_request(options)
|
7597
7662
|
end
|
7598
7663
|
|
7599
|
-
# Lists models created with the
|
7600
|
-
#
|
7601
|
-
#
|
7602
|
-
#
|
7603
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateModel.html
|
7664
|
+
# Lists models created with the CreateModel API.
|
7604
7665
|
#
|
7605
7666
|
# @option params [String] :sort_by
|
7606
7667
|
# Sorts the list of results. The default is `CreationTime`.
|
@@ -7633,6 +7694,8 @@ module Aws::SageMaker
|
|
7633
7694
|
# * {Types::ListModelsOutput#models #models} => Array<Types::ModelSummary>
|
7634
7695
|
# * {Types::ListModelsOutput#next_token #next_token} => String
|
7635
7696
|
#
|
7697
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7698
|
+
#
|
7636
7699
|
# @example Request syntax with placeholder values
|
7637
7700
|
#
|
7638
7701
|
# resp = client.list_models({
|
@@ -7712,6 +7775,8 @@ module Aws::SageMaker
|
|
7712
7775
|
# * {Types::ListMonitoringExecutionsResponse#monitoring_execution_summaries #monitoring_execution_summaries} => Array<Types::MonitoringExecutionSummary>
|
7713
7776
|
# * {Types::ListMonitoringExecutionsResponse#next_token #next_token} => String
|
7714
7777
|
#
|
7778
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7779
|
+
#
|
7715
7780
|
# @example Request syntax with placeholder values
|
7716
7781
|
#
|
7717
7782
|
# resp = client.list_monitoring_executions({
|
@@ -7802,6 +7867,8 @@ module Aws::SageMaker
|
|
7802
7867
|
# * {Types::ListMonitoringSchedulesResponse#monitoring_schedule_summaries #monitoring_schedule_summaries} => Array<Types::MonitoringScheduleSummary>
|
7803
7868
|
# * {Types::ListMonitoringSchedulesResponse#next_token #next_token} => String
|
7804
7869
|
#
|
7870
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7871
|
+
#
|
7805
7872
|
# @example Request syntax with placeholder values
|
7806
7873
|
#
|
7807
7874
|
# resp = client.list_monitoring_schedules({
|
@@ -7881,6 +7948,8 @@ module Aws::SageMaker
|
|
7881
7948
|
# * {Types::ListNotebookInstanceLifecycleConfigsOutput#next_token #next_token} => String
|
7882
7949
|
# * {Types::ListNotebookInstanceLifecycleConfigsOutput#notebook_instance_lifecycle_configs #notebook_instance_lifecycle_configs} => Array<Types::NotebookInstanceLifecycleConfigSummary>
|
7883
7950
|
#
|
7951
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7952
|
+
#
|
7884
7953
|
# @example Request syntax with placeholder values
|
7885
7954
|
#
|
7886
7955
|
# resp = client.list_notebook_instance_lifecycle_configs({
|
@@ -7982,6 +8051,8 @@ module Aws::SageMaker
|
|
7982
8051
|
# * {Types::ListNotebookInstancesOutput#next_token #next_token} => String
|
7983
8052
|
# * {Types::ListNotebookInstancesOutput#notebook_instances #notebook_instances} => Array<Types::NotebookInstanceSummary>
|
7984
8053
|
#
|
8054
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8055
|
+
#
|
7985
8056
|
# @example Request syntax with placeholder values
|
7986
8057
|
#
|
7987
8058
|
# resp = client.list_notebook_instances({
|
@@ -8069,6 +8140,8 @@ module Aws::SageMaker
|
|
8069
8140
|
# * {Types::ListProcessingJobsResponse#processing_job_summaries #processing_job_summaries} => Array<Types::ProcessingJobSummary>
|
8070
8141
|
# * {Types::ListProcessingJobsResponse#next_token #next_token} => String
|
8071
8142
|
#
|
8143
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8144
|
+
#
|
8072
8145
|
# @example Request syntax with placeholder values
|
8073
8146
|
#
|
8074
8147
|
# resp = client.list_processing_jobs({
|
@@ -8128,6 +8201,8 @@ module Aws::SageMaker
|
|
8128
8201
|
# * {Types::ListSubscribedWorkteamsResponse#subscribed_workteams #subscribed_workteams} => Array<Types::SubscribedWorkteam>
|
8129
8202
|
# * {Types::ListSubscribedWorkteamsResponse#next_token #next_token} => String
|
8130
8203
|
#
|
8204
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8205
|
+
#
|
8131
8206
|
# @example Request syntax with placeholder values
|
8132
8207
|
#
|
8133
8208
|
# resp = client.list_subscribed_workteams({
|
@@ -8174,6 +8249,8 @@ module Aws::SageMaker
|
|
8174
8249
|
# * {Types::ListTagsOutput#tags #tags} => Array<Types::Tag>
|
8175
8250
|
# * {Types::ListTagsOutput#next_token #next_token} => String
|
8176
8251
|
#
|
8252
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8253
|
+
#
|
8177
8254
|
# @example Request syntax with placeholder values
|
8178
8255
|
#
|
8179
8256
|
# resp = client.list_tags({
|
@@ -8242,6 +8319,8 @@ module Aws::SageMaker
|
|
8242
8319
|
# * {Types::ListTrainingJobsResponse#training_job_summaries #training_job_summaries} => Array<Types::TrainingJobSummary>
|
8243
8320
|
# * {Types::ListTrainingJobsResponse#next_token #next_token} => String
|
8244
8321
|
#
|
8322
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8323
|
+
#
|
8245
8324
|
# @example Request syntax with placeholder values
|
8246
8325
|
#
|
8247
8326
|
# resp = client.list_training_jobs({
|
@@ -8310,6 +8389,8 @@ module Aws::SageMaker
|
|
8310
8389
|
# * {Types::ListTrainingJobsForHyperParameterTuningJobResponse#training_job_summaries #training_job_summaries} => Array<Types::HyperParameterTrainingJobSummary>
|
8311
8390
|
# * {Types::ListTrainingJobsForHyperParameterTuningJobResponse#next_token #next_token} => String
|
8312
8391
|
#
|
8392
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8393
|
+
#
|
8313
8394
|
# @example Request syntax with placeholder values
|
8314
8395
|
#
|
8315
8396
|
# resp = client.list_training_jobs_for_hyper_parameter_tuning_job({
|
@@ -8395,6 +8476,8 @@ module Aws::SageMaker
|
|
8395
8476
|
# * {Types::ListTransformJobsResponse#transform_job_summaries #transform_job_summaries} => Array<Types::TransformJobSummary>
|
8396
8477
|
# * {Types::ListTransformJobsResponse#next_token #next_token} => String
|
8397
8478
|
#
|
8479
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8480
|
+
#
|
8398
8481
|
# @example Request syntax with placeholder values
|
8399
8482
|
#
|
8400
8483
|
# resp = client.list_transform_jobs({
|
@@ -8486,6 +8569,8 @@ module Aws::SageMaker
|
|
8486
8569
|
# * {Types::ListTrialComponentsResponse#trial_component_summaries #trial_component_summaries} => Array<Types::TrialComponentSummary>
|
8487
8570
|
# * {Types::ListTrialComponentsResponse#next_token #next_token} => String
|
8488
8571
|
#
|
8572
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8573
|
+
#
|
8489
8574
|
# @example Request syntax with placeholder values
|
8490
8575
|
#
|
8491
8576
|
# resp = client.list_trial_components({
|
@@ -8572,6 +8657,8 @@ module Aws::SageMaker
|
|
8572
8657
|
# * {Types::ListTrialsResponse#trial_summaries #trial_summaries} => Array<Types::TrialSummary>
|
8573
8658
|
# * {Types::ListTrialsResponse#next_token #next_token} => String
|
8574
8659
|
#
|
8660
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8661
|
+
#
|
8575
8662
|
# @example Request syntax with placeholder values
|
8576
8663
|
#
|
8577
8664
|
# resp = client.list_trials({
|
@@ -8633,6 +8720,8 @@ module Aws::SageMaker
|
|
8633
8720
|
# * {Types::ListUserProfilesResponse#user_profiles #user_profiles} => Array<Types::UserProfileDetails>
|
8634
8721
|
# * {Types::ListUserProfilesResponse#next_token #next_token} => String
|
8635
8722
|
#
|
8723
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8724
|
+
#
|
8636
8725
|
# @example Request syntax with placeholder values
|
8637
8726
|
#
|
8638
8727
|
# resp = client.list_user_profiles({
|
@@ -8691,6 +8780,8 @@ module Aws::SageMaker
|
|
8691
8780
|
# * {Types::ListWorkteamsResponse#workteams #workteams} => Array<Types::Workteam>
|
8692
8781
|
# * {Types::ListWorkteamsResponse#next_token #next_token} => String
|
8693
8782
|
#
|
8783
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8784
|
+
#
|
8694
8785
|
# @example Request syntax with placeholder values
|
8695
8786
|
#
|
8696
8787
|
# resp = client.list_workteams({
|
@@ -8815,6 +8906,8 @@ module Aws::SageMaker
|
|
8815
8906
|
# * {Types::SearchResponse#results #results} => Array<Types::SearchRecord>
|
8816
8907
|
# * {Types::SearchResponse#next_token #next_token} => String
|
8817
8908
|
#
|
8909
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8910
|
+
#
|
8818
8911
|
# @example Request syntax with placeholder values
|
8819
8912
|
#
|
8820
8913
|
# resp = client.search({
|
@@ -8823,7 +8916,7 @@ module Aws::SageMaker
|
|
8823
8916
|
# filters: [
|
8824
8917
|
# {
|
8825
8918
|
# name: "ResourcePropertyName", # required
|
8826
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
8919
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
8827
8920
|
# value: "FilterValue",
|
8828
8921
|
# },
|
8829
8922
|
# ],
|
@@ -8833,7 +8926,7 @@ module Aws::SageMaker
|
|
8833
8926
|
# filters: [ # required
|
8834
8927
|
# {
|
8835
8928
|
# name: "ResourcePropertyName", # required
|
8836
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
8929
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
8837
8930
|
# value: "FilterValue",
|
8838
8931
|
# },
|
8839
8932
|
# ],
|
@@ -9545,7 +9638,7 @@ module Aws::SageMaker
|
|
9545
9638
|
# When Amazon SageMaker receives the request, it sets the endpoint
|
9546
9639
|
# status to `Updating`. After updating the endpoint, it sets the status
|
9547
9640
|
# to `InService`. To check the status of an endpoint, use the
|
9548
|
-
#
|
9641
|
+
# DescribeEndpoint API.
|
9549
9642
|
#
|
9550
9643
|
# <note markdown="1"> You must not delete an `EndpointConfig` in use by an endpoint that is
|
9551
9644
|
# live or while the `UpdateEndpoint` or `CreateEndpoint` operations are
|
@@ -9554,10 +9647,6 @@ module Aws::SageMaker
|
|
9554
9647
|
#
|
9555
9648
|
# </note>
|
9556
9649
|
#
|
9557
|
-
#
|
9558
|
-
#
|
9559
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_DescribeEndpoint.html
|
9560
|
-
#
|
9561
9650
|
# @option params [required, String] :endpoint_name
|
9562
9651
|
# The name of the endpoint whose configuration you want to update.
|
9563
9652
|
#
|
@@ -9574,17 +9663,12 @@ module Aws::SageMaker
|
|
9574
9663
|
#
|
9575
9664
|
# @option params [Array<Types::VariantProperty>] :exclude_retained_variant_properties
|
9576
9665
|
# When you are updating endpoint resources with
|
9577
|
-
#
|
9578
|
-
# `ExcludeRetainedVariantProperties` specifies the list of type
|
9579
|
-
#
|
9666
|
+
# UpdateEndpointInput$RetainAllVariantProperties, whose value is set to
|
9667
|
+
# `true`, `ExcludeRetainedVariantProperties` specifies the list of type
|
9668
|
+
# VariantProperty to override with the values provided by
|
9580
9669
|
# `EndpointConfig`. If you don't specify a value for
|
9581
9670
|
# `ExcludeAllVariantProperties`, no variant properties are overridden.
|
9582
9671
|
#
|
9583
|
-
#
|
9584
|
-
#
|
9585
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-RetainAllVariantProperties
|
9586
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_VariantProperty.html
|
9587
|
-
#
|
9588
9672
|
# @return [Types::UpdateEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9589
9673
|
#
|
9590
9674
|
# * {Types::UpdateEndpointOutput#endpoint_arn #endpoint_arn} => String
|
@@ -9620,11 +9704,7 @@ module Aws::SageMaker
|
|
9620
9704
|
# existing endpoint. When it receives the request, Amazon SageMaker sets
|
9621
9705
|
# the endpoint status to `Updating`. After updating the endpoint, it
|
9622
9706
|
# sets the status to `InService`. To check the status of an endpoint,
|
9623
|
-
# use the
|
9624
|
-
#
|
9625
|
-
#
|
9626
|
-
#
|
9627
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_DescribeEndpoint.html
|
9707
|
+
# use the DescribeEndpoint API.
|
9628
9708
|
#
|
9629
9709
|
# @option params [required, String] :endpoint_name
|
9630
9710
|
# The name of an existing Amazon SageMaker endpoint.
|
@@ -10313,7 +10393,7 @@ module Aws::SageMaker
|
|
10313
10393
|
params: params,
|
10314
10394
|
config: config)
|
10315
10395
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
10316
|
-
context[:gem_version] = '1.
|
10396
|
+
context[:gem_version] = '1.53.0'
|
10317
10397
|
Seahorse::Client::Request.new(handlers, context)
|
10318
10398
|
end
|
10319
10399
|
|
@@ -10379,16 +10459,16 @@ module Aws::SageMaker
|
|
10379
10459
|
# The following table lists the valid waiter names, the operations they call,
|
10380
10460
|
# and the default `:delay` and `:max_attempts` values.
|
10381
10461
|
#
|
10382
|
-
# | waiter_name | params
|
10383
|
-
# | ----------------------------------- |
|
10384
|
-
# | endpoint_deleted | {#describe_endpoint} | 30 | 60 |
|
10385
|
-
# | endpoint_in_service | {#describe_endpoint} | 30 | 120 |
|
10386
|
-
# | notebook_instance_deleted | {#describe_notebook_instance} | 30 | 60 |
|
10387
|
-
# | notebook_instance_in_service | {#describe_notebook_instance} | 30 | 60 |
|
10388
|
-
# | notebook_instance_stopped | {#describe_notebook_instance} | 30 | 60 |
|
10389
|
-
# | processing_job_completed_or_stopped | {#describe_processing_job} | 60 | 60 |
|
10390
|
-
# | training_job_completed_or_stopped | {#describe_training_job} | 120 | 180 |
|
10391
|
-
# | transform_job_completed_or_stopped | {#describe_transform_job} | 60 | 60 |
|
10462
|
+
# | waiter_name | params | :delay | :max_attempts |
|
10463
|
+
# | ----------------------------------- | ----------------------------------- | -------- | ------------- |
|
10464
|
+
# | endpoint_deleted | {Client#describe_endpoint} | 30 | 60 |
|
10465
|
+
# | endpoint_in_service | {Client#describe_endpoint} | 30 | 120 |
|
10466
|
+
# | notebook_instance_deleted | {Client#describe_notebook_instance} | 30 | 60 |
|
10467
|
+
# | notebook_instance_in_service | {Client#describe_notebook_instance} | 30 | 60 |
|
10468
|
+
# | notebook_instance_stopped | {Client#describe_notebook_instance} | 30 | 60 |
|
10469
|
+
# | processing_job_completed_or_stopped | {Client#describe_processing_job} | 60 | 60 |
|
10470
|
+
# | training_job_completed_or_stopped | {Client#describe_training_job} | 120 | 180 |
|
10471
|
+
# | transform_job_completed_or_stopped | {Client#describe_transform_job} | 60 | 60 |
|
10392
10472
|
#
|
10393
10473
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
10394
10474
|
# because the waiter has entered a state that it will not transition
|