aws-sdk-sagemaker 1.100.0 → 1.104.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +79 -33
- data/lib/aws-sdk-sagemaker/client_api.rb +21 -1
- data/lib/aws-sdk-sagemaker/types.rb +262 -133
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1edad013fc1fffc85b399477c4197dc558ef78be72eccd72c5c8a5ff96fc74da
|
4
|
+
data.tar.gz: da37502794928ffb3d85da1b3c7e4f7546102e80a27fb21752f5a40b4be9d876
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3641e15f3db6640764c0ab550d37e0616a666c9aa8eb1f696cf65a89c27befb6ade50b5b3a28f06e551506a2262cf0e7c459737dd24380c28ca3dcd4c20dd2a7
|
7
|
+
data.tar.gz: 841c82350827fd9cc836800f55054eb41eacf4932fc96911cc33fccfaf76907bdad2ef199de8bb3d63cd4288950ee3bff3da27584856d36e9d3545a5acb1166c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.104.0 (2021-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.103.0 (2021-10-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release updates the provisioning artifact ID to an optional parameter in CreateProject API. The provisioning artifact ID defaults to the latest provisioning artifact ID of the product if you don't provide one.
|
13
|
+
|
14
|
+
1.102.0 (2021-10-06)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds a new TrainingInputMode FastFile for SageMaker Training APIs.
|
18
|
+
|
19
|
+
1.101.0 (2021-09-16)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add API for users to retry a failed pipeline execution or resume a stopped one.
|
23
|
+
|
4
24
|
1.100.0 (2021-09-14)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.104.0
|
@@ -709,7 +709,7 @@ module Aws::SageMaker
|
|
709
709
|
# is_required: false,
|
710
710
|
# supported_content_types: ["ContentType"], # required
|
711
711
|
# supported_compression_types: ["None"], # accepts None, Gzip
|
712
|
-
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File
|
712
|
+
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File, FastFile
|
713
713
|
# },
|
714
714
|
# ],
|
715
715
|
# supported_tuning_job_objective_metrics: [
|
@@ -743,7 +743,7 @@ module Aws::SageMaker
|
|
743
743
|
# {
|
744
744
|
# profile_name: "EntityName", # required
|
745
745
|
# training_job_definition: { # required
|
746
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
746
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
747
747
|
# hyper_parameters: {
|
748
748
|
# "HyperParameterKey" => "HyperParameterValue",
|
749
749
|
# },
|
@@ -767,7 +767,7 @@ module Aws::SageMaker
|
|
767
767
|
# content_type: "ContentType",
|
768
768
|
# compression_type: "None", # accepts None, Gzip
|
769
769
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
770
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
770
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
771
771
|
# shuffle_config: {
|
772
772
|
# seed: 1, # required
|
773
773
|
# },
|
@@ -1964,7 +1964,7 @@ module Aws::SageMaker
|
|
1964
1964
|
# and CreateEndpointConfig API operations, add the following policies to
|
1965
1965
|
# the role.
|
1966
1966
|
#
|
1967
|
-
# * Option 1: For a full
|
1967
|
+
# * Option 1: For a full SageMaker access, search and attach the
|
1968
1968
|
# `AmazonSageMakerFullAccess` policy.
|
1969
1969
|
#
|
1970
1970
|
# * Option 2: For granting a limited access to an IAM role, paste the
|
@@ -1982,8 +1982,8 @@ module Aws::SageMaker
|
|
1982
1982
|
#
|
1983
1983
|
# `]`
|
1984
1984
|
#
|
1985
|
-
# For more information, see [
|
1986
|
-
#
|
1985
|
+
# For more information, see [SageMaker API Permissions: Actions,
|
1986
|
+
# Permissions, and Resources Reference][5].
|
1987
1987
|
#
|
1988
1988
|
# </note>
|
1989
1989
|
#
|
@@ -2401,13 +2401,20 @@ module Aws::SageMaker
|
|
2401
2401
|
# `OfflineStore`.
|
2402
2402
|
#
|
2403
2403
|
# * A configuration for an Amazon Web Services Glue or Amazon Web
|
2404
|
-
# Services Hive data
|
2404
|
+
# Services Hive data catalog.
|
2405
2405
|
#
|
2406
2406
|
# * An KMS encryption key to encrypt the Amazon S3 location used for
|
2407
|
-
# `OfflineStore`.
|
2407
|
+
# `OfflineStore`. If KMS encryption key is not specified, by default
|
2408
|
+
# we encrypt all data at rest using Amazon Web Services KMS key. By
|
2409
|
+
# defining your [bucket-level key][1] for SSE, you can reduce Amazon
|
2410
|
+
# Web Services KMS requests costs by up to 99 percent.
|
2408
2411
|
#
|
2409
2412
|
# To learn more about this parameter, see OfflineStoreConfig.
|
2410
2413
|
#
|
2414
|
+
#
|
2415
|
+
#
|
2416
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html
|
2417
|
+
#
|
2411
2418
|
# @option params [String] :role_arn
|
2412
2419
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
2413
2420
|
# persist data into the `OfflineStore` if an `OfflineStoreConfig` is
|
@@ -2767,7 +2774,7 @@ module Aws::SageMaker
|
|
2767
2774
|
# },
|
2768
2775
|
# algorithm_specification: { # required
|
2769
2776
|
# training_image: "AlgorithmImage",
|
2770
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
2777
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
2771
2778
|
# algorithm_name: "ArnOrName",
|
2772
2779
|
# metric_definitions: [
|
2773
2780
|
# {
|
@@ -2797,7 +2804,7 @@ module Aws::SageMaker
|
|
2797
2804
|
# content_type: "ContentType",
|
2798
2805
|
# compression_type: "None", # accepts None, Gzip
|
2799
2806
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
2800
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
2807
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
2801
2808
|
# shuffle_config: {
|
2802
2809
|
# seed: 1, # required
|
2803
2810
|
# },
|
@@ -2868,7 +2875,7 @@ module Aws::SageMaker
|
|
2868
2875
|
# },
|
2869
2876
|
# algorithm_specification: { # required
|
2870
2877
|
# training_image: "AlgorithmImage",
|
2871
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
2878
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
2872
2879
|
# algorithm_name: "ArnOrName",
|
2873
2880
|
# metric_definitions: [
|
2874
2881
|
# {
|
@@ -2898,7 +2905,7 @@ module Aws::SageMaker
|
|
2898
2905
|
# content_type: "ContentType",
|
2899
2906
|
# compression_type: "None", # accepts None, Gzip
|
2900
2907
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
2901
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
2908
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
2902
2909
|
# shuffle_config: {
|
2903
2910
|
# seed: 1, # required
|
2904
2911
|
# },
|
@@ -5039,8 +5046,10 @@ module Aws::SageMaker
|
|
5039
5046
|
#
|
5040
5047
|
# @option params [required, Types::ServiceCatalogProvisioningDetails] :service_catalog_provisioning_details
|
5041
5048
|
# The product ID and provisioning artifact ID to provision a service
|
5042
|
-
# catalog.
|
5043
|
-
#
|
5049
|
+
# catalog. The provisioning artifact ID will default to the latest
|
5050
|
+
# provisioning artifact ID of the product, if you don't provide the
|
5051
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
5052
|
+
# Web Services Service Catalog][1].
|
5044
5053
|
#
|
5045
5054
|
#
|
5046
5055
|
#
|
@@ -5068,7 +5077,7 @@ module Aws::SageMaker
|
|
5068
5077
|
# project_description: "EntityDescription",
|
5069
5078
|
# service_catalog_provisioning_details: { # required
|
5070
5079
|
# product_id: "ServiceCatalogEntityId", # required
|
5071
|
-
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
5080
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
5072
5081
|
# path_id: "ServiceCatalogEntityId",
|
5073
5082
|
# provisioning_parameters: [
|
5074
5083
|
# {
|
@@ -5417,7 +5426,7 @@ module Aws::SageMaker
|
|
5417
5426
|
# algorithm_specification: { # required
|
5418
5427
|
# training_image: "AlgorithmImage",
|
5419
5428
|
# algorithm_name: "ArnOrName",
|
5420
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
5429
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
5421
5430
|
# metric_definitions: [
|
5422
5431
|
# {
|
5423
5432
|
# name: "MetricName", # required
|
@@ -5447,7 +5456,7 @@ module Aws::SageMaker
|
|
5447
5456
|
# content_type: "ContentType",
|
5448
5457
|
# compression_type: "None", # accepts None, Gzip
|
5449
5458
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
5450
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
5459
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
5451
5460
|
# shuffle_config: {
|
5452
5461
|
# seed: 1, # required
|
5453
5462
|
# },
|
@@ -7479,7 +7488,7 @@ module Aws::SageMaker
|
|
7479
7488
|
# resp.training_specification.training_channels[0].supported_compression_types #=> Array
|
7480
7489
|
# resp.training_specification.training_channels[0].supported_compression_types[0] #=> String, one of "None", "Gzip"
|
7481
7490
|
# resp.training_specification.training_channels[0].supported_input_modes #=> Array
|
7482
|
-
# resp.training_specification.training_channels[0].supported_input_modes[0] #=> String, one of "Pipe", "File"
|
7491
|
+
# resp.training_specification.training_channels[0].supported_input_modes[0] #=> String, one of "Pipe", "File", "FastFile"
|
7483
7492
|
# resp.training_specification.supported_tuning_job_objective_metrics #=> Array
|
7484
7493
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].type #=> String, one of "Maximize", "Minimize"
|
7485
7494
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].metric_name #=> String
|
@@ -7502,7 +7511,7 @@ module Aws::SageMaker
|
|
7502
7511
|
# resp.validation_specification.validation_role #=> String
|
7503
7512
|
# resp.validation_specification.validation_profiles #=> Array
|
7504
7513
|
# resp.validation_specification.validation_profiles[0].profile_name #=> String
|
7505
|
-
# resp.validation_specification.validation_profiles[0].training_job_definition.training_input_mode #=> String, one of "Pipe", "File"
|
7514
|
+
# resp.validation_specification.validation_profiles[0].training_job_definition.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
7506
7515
|
# resp.validation_specification.validation_profiles[0].training_job_definition.hyper_parameters #=> Hash
|
7507
7516
|
# resp.validation_specification.validation_profiles[0].training_job_definition.hyper_parameters["HyperParameterKey"] #=> String
|
7508
7517
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config #=> Array
|
@@ -7519,7 +7528,7 @@ module Aws::SageMaker
|
|
7519
7528
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].content_type #=> String
|
7520
7529
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
7521
7530
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
7522
|
-
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].input_mode #=> String, one of "Pipe", "File"
|
7531
|
+
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
7523
7532
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].shuffle_config.seed #=> Integer
|
7524
7533
|
# resp.validation_specification.validation_profiles[0].training_job_definition.output_data_config.kms_key_id #=> String
|
7525
7534
|
# resp.validation_specification.validation_profiles[0].training_job_definition.output_data_config.s3_output_path #=> String
|
@@ -8766,7 +8775,7 @@ module Aws::SageMaker
|
|
8766
8775
|
# resp.training_job_definition.static_hyper_parameters #=> Hash
|
8767
8776
|
# resp.training_job_definition.static_hyper_parameters["HyperParameterKey"] #=> String
|
8768
8777
|
# resp.training_job_definition.algorithm_specification.training_image #=> String
|
8769
|
-
# resp.training_job_definition.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File"
|
8778
|
+
# resp.training_job_definition.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
8770
8779
|
# resp.training_job_definition.algorithm_specification.algorithm_name #=> String
|
8771
8780
|
# resp.training_job_definition.algorithm_specification.metric_definitions #=> Array
|
8772
8781
|
# resp.training_job_definition.algorithm_specification.metric_definitions[0].name #=> String
|
@@ -8786,7 +8795,7 @@ module Aws::SageMaker
|
|
8786
8795
|
# resp.training_job_definition.input_data_config[0].content_type #=> String
|
8787
8796
|
# resp.training_job_definition.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
8788
8797
|
# resp.training_job_definition.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
8789
|
-
# resp.training_job_definition.input_data_config[0].input_mode #=> String, one of "Pipe", "File"
|
8798
|
+
# resp.training_job_definition.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
8790
8799
|
# resp.training_job_definition.input_data_config[0].shuffle_config.seed #=> Integer
|
8791
8800
|
# resp.training_job_definition.vpc_config.security_group_ids #=> Array
|
8792
8801
|
# resp.training_job_definition.vpc_config.security_group_ids[0] #=> String
|
@@ -8827,7 +8836,7 @@ module Aws::SageMaker
|
|
8827
8836
|
# resp.training_job_definitions[0].static_hyper_parameters #=> Hash
|
8828
8837
|
# resp.training_job_definitions[0].static_hyper_parameters["HyperParameterKey"] #=> String
|
8829
8838
|
# resp.training_job_definitions[0].algorithm_specification.training_image #=> String
|
8830
|
-
# resp.training_job_definitions[0].algorithm_specification.training_input_mode #=> String, one of "Pipe", "File"
|
8839
|
+
# resp.training_job_definitions[0].algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
8831
8840
|
# resp.training_job_definitions[0].algorithm_specification.algorithm_name #=> String
|
8832
8841
|
# resp.training_job_definitions[0].algorithm_specification.metric_definitions #=> Array
|
8833
8842
|
# resp.training_job_definitions[0].algorithm_specification.metric_definitions[0].name #=> String
|
@@ -8847,7 +8856,7 @@ module Aws::SageMaker
|
|
8847
8856
|
# resp.training_job_definitions[0].input_data_config[0].content_type #=> String
|
8848
8857
|
# resp.training_job_definitions[0].input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
8849
8858
|
# resp.training_job_definitions[0].input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
8850
|
-
# resp.training_job_definitions[0].input_data_config[0].input_mode #=> String, one of "Pipe", "File"
|
8859
|
+
# resp.training_job_definitions[0].input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
8851
8860
|
# resp.training_job_definitions[0].input_data_config[0].shuffle_config.seed #=> Integer
|
8852
8861
|
# resp.training_job_definitions[0].vpc_config.security_group_ids #=> Array
|
8853
8862
|
# resp.training_job_definitions[0].vpc_config.security_group_ids[0] #=> String
|
@@ -10282,7 +10291,7 @@ module Aws::SageMaker
|
|
10282
10291
|
# resp.hyper_parameters["HyperParameterKey"] #=> String
|
10283
10292
|
# resp.algorithm_specification.training_image #=> String
|
10284
10293
|
# resp.algorithm_specification.algorithm_name #=> String
|
10285
|
-
# resp.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File"
|
10294
|
+
# resp.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
10286
10295
|
# resp.algorithm_specification.metric_definitions #=> Array
|
10287
10296
|
# resp.algorithm_specification.metric_definitions[0].name #=> String
|
10288
10297
|
# resp.algorithm_specification.metric_definitions[0].regex #=> String
|
@@ -10302,7 +10311,7 @@ module Aws::SageMaker
|
|
10302
10311
|
# resp.input_data_config[0].content_type #=> String
|
10303
10312
|
# resp.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
10304
10313
|
# resp.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
10305
|
-
# resp.input_data_config[0].input_mode #=> String, one of "Pipe", "File"
|
10314
|
+
# resp.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
10306
10315
|
# resp.input_data_config[0].shuffle_config.seed #=> Integer
|
10307
10316
|
# resp.output_data_config.kms_key_id #=> String
|
10308
10317
|
# resp.output_data_config.s3_output_path #=> String
|
@@ -15213,6 +15222,43 @@ module Aws::SageMaker
|
|
15213
15222
|
req.send_request(options)
|
15214
15223
|
end
|
15215
15224
|
|
15225
|
+
# Retry the execution of the pipeline.
|
15226
|
+
#
|
15227
|
+
# @option params [required, String] :pipeline_execution_arn
|
15228
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
15229
|
+
#
|
15230
|
+
# @option params [required, String] :client_request_token
|
15231
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
15232
|
+
# idempotency of the operation. An idempotent operation completes no
|
15233
|
+
# more than once.
|
15234
|
+
#
|
15235
|
+
# **A suitable default value is auto-generated.** You should normally
|
15236
|
+
# not need to pass this option.**
|
15237
|
+
#
|
15238
|
+
# @return [Types::RetryPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15239
|
+
#
|
15240
|
+
# * {Types::RetryPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
15241
|
+
#
|
15242
|
+
# @example Request syntax with placeholder values
|
15243
|
+
#
|
15244
|
+
# resp = client.retry_pipeline_execution({
|
15245
|
+
# pipeline_execution_arn: "PipelineExecutionArn", # required
|
15246
|
+
# client_request_token: "IdempotencyToken", # required
|
15247
|
+
# })
|
15248
|
+
#
|
15249
|
+
# @example Response structure
|
15250
|
+
#
|
15251
|
+
# resp.pipeline_execution_arn #=> String
|
15252
|
+
#
|
15253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecution AWS API Documentation
|
15254
|
+
#
|
15255
|
+
# @overload retry_pipeline_execution(params = {})
|
15256
|
+
# @param [Hash] params ({})
|
15257
|
+
def retry_pipeline_execution(params = {}, options = {})
|
15258
|
+
req = build_request(:retry_pipeline_execution, params)
|
15259
|
+
req.send_request(options)
|
15260
|
+
end
|
15261
|
+
|
15216
15262
|
# Finds Amazon SageMaker resources that match a search query. Matching
|
15217
15263
|
# resources are returned as a list of `SearchRecord` objects in the
|
15218
15264
|
# response. You can sort the search results by any resource property in
|
@@ -15308,7 +15354,7 @@ module Aws::SageMaker
|
|
15308
15354
|
# resp.results[0].training_job.hyper_parameters["HyperParameterKey"] #=> String
|
15309
15355
|
# resp.results[0].training_job.algorithm_specification.training_image #=> String
|
15310
15356
|
# resp.results[0].training_job.algorithm_specification.algorithm_name #=> String
|
15311
|
-
# resp.results[0].training_job.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File"
|
15357
|
+
# resp.results[0].training_job.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
15312
15358
|
# resp.results[0].training_job.algorithm_specification.metric_definitions #=> Array
|
15313
15359
|
# resp.results[0].training_job.algorithm_specification.metric_definitions[0].name #=> String
|
15314
15360
|
# resp.results[0].training_job.algorithm_specification.metric_definitions[0].regex #=> String
|
@@ -15328,7 +15374,7 @@ module Aws::SageMaker
|
|
15328
15374
|
# resp.results[0].training_job.input_data_config[0].content_type #=> String
|
15329
15375
|
# resp.results[0].training_job.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
15330
15376
|
# resp.results[0].training_job.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
15331
|
-
# resp.results[0].training_job.input_data_config[0].input_mode #=> String, one of "Pipe", "File"
|
15377
|
+
# resp.results[0].training_job.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
15332
15378
|
# resp.results[0].training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
15333
15379
|
# resp.results[0].training_job.output_data_config.kms_key_id #=> String
|
15334
15380
|
# resp.results[0].training_job.output_data_config.s3_output_path #=> String
|
@@ -15497,7 +15543,7 @@ module Aws::SageMaker
|
|
15497
15543
|
# resp.results[0].trial_component.source_detail.training_job.hyper_parameters["HyperParameterKey"] #=> String
|
15498
15544
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.training_image #=> String
|
15499
15545
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.algorithm_name #=> String
|
15500
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File"
|
15546
|
+
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
15501
15547
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions #=> Array
|
15502
15548
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions[0].name #=> String
|
15503
15549
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions[0].regex #=> String
|
@@ -15517,7 +15563,7 @@ module Aws::SageMaker
|
|
15517
15563
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].content_type #=> String
|
15518
15564
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
15519
15565
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
15520
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].input_mode #=> String, one of "Pipe", "File"
|
15566
|
+
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
15521
15567
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
15522
15568
|
# resp.results[0].trial_component.source_detail.training_job.output_data_config.kms_key_id #=> String
|
15523
15569
|
# resp.results[0].trial_component.source_detail.training_job.output_data_config.s3_output_path #=> String
|
@@ -16150,7 +16196,7 @@ module Aws::SageMaker
|
|
16150
16196
|
# @option params [required, String] :client_request_token
|
16151
16197
|
# A unique, case-sensitive identifier that you provide to ensure the
|
16152
16198
|
# idempotency of the operation. An idempotent operation completes no
|
16153
|
-
# more than
|
16199
|
+
# more than once.
|
16154
16200
|
#
|
16155
16201
|
# **A suitable default value is auto-generated.** You should normally
|
16156
16202
|
# not need to pass this option.**
|
@@ -16404,7 +16450,7 @@ module Aws::SageMaker
|
|
16404
16450
|
# @option params [required, String] :client_request_token
|
16405
16451
|
# A unique, case-sensitive identifier that you provide to ensure the
|
16406
16452
|
# idempotency of the operation. An idempotent operation completes no
|
16407
|
-
# more than
|
16453
|
+
# more than once.
|
16408
16454
|
#
|
16409
16455
|
# **A suitable default value is auto-generated.** You should normally
|
16410
16456
|
# not need to pass this option.**
|
@@ -17995,7 +18041,7 @@ module Aws::SageMaker
|
|
17995
18041
|
params: params,
|
17996
18042
|
config: config)
|
17997
18043
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
17998
|
-
context[:gem_version] = '1.
|
18044
|
+
context[:gem_version] = '1.104.0'
|
17999
18045
|
Seahorse::Client::Request.new(handlers, context)
|
18000
18046
|
end
|
18001
18047
|
|
@@ -1193,6 +1193,8 @@ module Aws::SageMaker
|
|
1193
1193
|
ResponseMIMETypes = Shapes::ListShape.new(name: 'ResponseMIMETypes')
|
1194
1194
|
RetentionPolicy = Shapes::StructureShape.new(name: 'RetentionPolicy')
|
1195
1195
|
RetentionType = Shapes::StringShape.new(name: 'RetentionType')
|
1196
|
+
RetryPipelineExecutionRequest = Shapes::StructureShape.new(name: 'RetryPipelineExecutionRequest')
|
1197
|
+
RetryPipelineExecutionResponse = Shapes::StructureShape.new(name: 'RetryPipelineExecutionResponse')
|
1196
1198
|
RetryStrategy = Shapes::StructureShape.new(name: 'RetryStrategy')
|
1197
1199
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
1198
1200
|
RootAccess = Shapes::StringShape.new(name: 'RootAccess')
|
@@ -5677,6 +5679,13 @@ module Aws::SageMaker
|
|
5677
5679
|
RetentionPolicy.add_member(:home_efs_file_system, Shapes::ShapeRef.new(shape: RetentionType, location_name: "HomeEfsFileSystem"))
|
5678
5680
|
RetentionPolicy.struct_class = Types::RetentionPolicy
|
5679
5681
|
|
5682
|
+
RetryPipelineExecutionRequest.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, required: true, location_name: "PipelineExecutionArn"))
|
5683
|
+
RetryPipelineExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
5684
|
+
RetryPipelineExecutionRequest.struct_class = Types::RetryPipelineExecutionRequest
|
5685
|
+
|
5686
|
+
RetryPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
5687
|
+
RetryPipelineExecutionResponse.struct_class = Types::RetryPipelineExecutionResponse
|
5688
|
+
|
5680
5689
|
RetryStrategy.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttempts, required: true, location_name: "MaximumRetryAttempts"))
|
5681
5690
|
RetryStrategy.struct_class = Types::RetryStrategy
|
5682
5691
|
|
@@ -5763,7 +5772,7 @@ module Aws::SageMaker
|
|
5763
5772
|
ServiceCatalogProvisionedProductDetails.struct_class = Types::ServiceCatalogProvisionedProductDetails
|
5764
5773
|
|
5765
5774
|
ServiceCatalogProvisioningDetails.add_member(:product_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId, required: true, location_name: "ProductId"))
|
5766
|
-
ServiceCatalogProvisioningDetails.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId,
|
5775
|
+
ServiceCatalogProvisioningDetails.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId, location_name: "ProvisioningArtifactId"))
|
5767
5776
|
ServiceCatalogProvisioningDetails.add_member(:path_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId, location_name: "PathId"))
|
5768
5777
|
ServiceCatalogProvisioningDetails.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: ProvisioningParameters, location_name: "ProvisioningParameters"))
|
5769
5778
|
ServiceCatalogProvisioningDetails.struct_class = Types::ServiceCatalogProvisioningDetails
|
@@ -8543,6 +8552,17 @@ module Aws::SageMaker
|
|
8543
8552
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
8544
8553
|
end)
|
8545
8554
|
|
8555
|
+
api.add_operation(:retry_pipeline_execution, Seahorse::Model::Operation.new.tap do |o|
|
8556
|
+
o.name = "RetryPipelineExecution"
|
8557
|
+
o.http_method = "POST"
|
8558
|
+
o.http_request_uri = "/"
|
8559
|
+
o.input = Shapes::ShapeRef.new(shape: RetryPipelineExecutionRequest)
|
8560
|
+
o.output = Shapes::ShapeRef.new(shape: RetryPipelineExecutionResponse)
|
8561
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
8562
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
8563
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
8564
|
+
end)
|
8565
|
+
|
8546
8566
|
api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
|
8547
8567
|
o.name = "Search"
|
8548
8568
|
o.http_method = "POST"
|