aws-sdk-sagemaker 1.99.0 → 1.103.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 +110 -45
- data/lib/aws-sdk-sagemaker/client_api.rb +35 -1
- data/lib/aws-sdk-sagemaker/types.rb +363 -150
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29fe0c2a507e667126f1659edbe513b9be2165c943e91998f5ade12140a74ffe
|
4
|
+
data.tar.gz: f83381c4f570105b9da923b01ecae626735a33ce880e451eee94d420b1d44066
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d16df5f15f5765367303fc41b636622595e491ee6edd2eedcd3a73d5c604fbc72534b5d1c6ec32c51158aa239b19097122e2324fd995734ce4568c35cd4e352
|
7
|
+
data.tar.gz: fc942a93826ab7152a9294c63be64830ef6fd4dd1c8ebb063baa6f572f49fba53a5a50fc683ea0d393da6ae1d3cedc62f33df2398e589926a5e080024af3413f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.103.0 (2021-10-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
9
|
+
1.102.0 (2021-10-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds a new TrainingInputMode FastFile for SageMaker Training APIs.
|
13
|
+
|
14
|
+
1.101.0 (2021-09-16)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add API for users to retry a failed pipeline execution or resume a stopped one.
|
18
|
+
|
19
|
+
1.100.0 (2021-09-14)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds support for "Project Search"
|
23
|
+
|
4
24
|
1.99.0 (2021-09-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.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
|
# },
|
@@ -1670,9 +1670,9 @@ module Aws::SageMaker
|
|
1670
1670
|
#
|
1671
1671
|
# SageMaker uses the Amazon Web Services Key Management Service (Amazon
|
1672
1672
|
# Web Services KMS) to encrypt the EFS volume attached to the domain
|
1673
|
-
# with an Amazon Web Services managed
|
1674
|
-
#
|
1675
|
-
#
|
1673
|
+
# with an Amazon Web Services managed key by default. For more control,
|
1674
|
+
# you can specify a customer managed key. For more information, see
|
1675
|
+
# [Protect Data at Rest Using Encryption][1].
|
1676
1676
|
#
|
1677
1677
|
# **VPC configuration**
|
1678
1678
|
#
|
@@ -1754,9 +1754,8 @@ module Aws::SageMaker
|
|
1754
1754
|
#
|
1755
1755
|
# @option params [String] :kms_key_id
|
1756
1756
|
# SageMaker uses Amazon Web Services KMS to encrypt the EFS volume
|
1757
|
-
# attached to the domain with an Amazon Web Services managed
|
1758
|
-
#
|
1759
|
-
# managed CMK.
|
1757
|
+
# attached to the domain with an Amazon Web Services managed key by
|
1758
|
+
# default. For more control, specify a customer managed key.
|
1760
1759
|
#
|
1761
1760
|
# @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1762
1761
|
#
|
@@ -1864,8 +1863,8 @@ module Aws::SageMaker
|
|
1864
1863
|
# Provides information about the output location for the packaged model.
|
1865
1864
|
#
|
1866
1865
|
# @option params [String] :resource_key
|
1867
|
-
# The
|
1868
|
-
# runs on.
|
1866
|
+
# The Amazon Web Services KMS key to use when encrypting the EBS volume
|
1867
|
+
# the edge packaging job runs on.
|
1869
1868
|
#
|
1870
1869
|
# @option params [Array<Types::Tag>] :tags
|
1871
1870
|
# Creates tags for the packaging job.
|
@@ -1965,7 +1964,7 @@ module Aws::SageMaker
|
|
1965
1964
|
# and CreateEndpointConfig API operations, add the following policies to
|
1966
1965
|
# the role.
|
1967
1966
|
#
|
1968
|
-
# * Option 1: For a full
|
1967
|
+
# * Option 1: For a full SageMaker access, search and attach the
|
1969
1968
|
# `AmazonSageMakerFullAccess` policy.
|
1970
1969
|
#
|
1971
1970
|
# * Option 2: For granting a limited access to an IAM role, paste the
|
@@ -1983,8 +1982,8 @@ module Aws::SageMaker
|
|
1983
1982
|
#
|
1984
1983
|
# `]`
|
1985
1984
|
#
|
1986
|
-
# For more information, see [
|
1987
|
-
#
|
1985
|
+
# For more information, see [SageMaker API Permissions: Actions,
|
1986
|
+
# Permissions, and Resources Reference][5].
|
1988
1987
|
#
|
1989
1988
|
# </note>
|
1990
1989
|
#
|
@@ -2402,13 +2401,20 @@ module Aws::SageMaker
|
|
2402
2401
|
# `OfflineStore`.
|
2403
2402
|
#
|
2404
2403
|
# * A configuration for an Amazon Web Services Glue or Amazon Web
|
2405
|
-
# Services Hive data
|
2404
|
+
# Services Hive data catalog.
|
2406
2405
|
#
|
2407
2406
|
# * An KMS encryption key to encrypt the Amazon S3 location used for
|
2408
|
-
# `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.
|
2409
2411
|
#
|
2410
2412
|
# To learn more about this parameter, see OfflineStoreConfig.
|
2411
2413
|
#
|
2414
|
+
#
|
2415
|
+
#
|
2416
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html
|
2417
|
+
#
|
2412
2418
|
# @option params [String] :role_arn
|
2413
2419
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
2414
2420
|
# persist data into the `OfflineStore` if an `OfflineStoreConfig` is
|
@@ -2768,7 +2774,7 @@ module Aws::SageMaker
|
|
2768
2774
|
# },
|
2769
2775
|
# algorithm_specification: { # required
|
2770
2776
|
# training_image: "AlgorithmImage",
|
2771
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
2777
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
2772
2778
|
# algorithm_name: "ArnOrName",
|
2773
2779
|
# metric_definitions: [
|
2774
2780
|
# {
|
@@ -2798,7 +2804,7 @@ module Aws::SageMaker
|
|
2798
2804
|
# content_type: "ContentType",
|
2799
2805
|
# compression_type: "None", # accepts None, Gzip
|
2800
2806
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
2801
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
2807
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
2802
2808
|
# shuffle_config: {
|
2803
2809
|
# seed: 1, # required
|
2804
2810
|
# },
|
@@ -2869,7 +2875,7 @@ module Aws::SageMaker
|
|
2869
2875
|
# },
|
2870
2876
|
# algorithm_specification: { # required
|
2871
2877
|
# training_image: "AlgorithmImage",
|
2872
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
2878
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
2873
2879
|
# algorithm_name: "ArnOrName",
|
2874
2880
|
# metric_definitions: [
|
2875
2881
|
# {
|
@@ -2899,7 +2905,7 @@ module Aws::SageMaker
|
|
2899
2905
|
# content_type: "ContentType",
|
2900
2906
|
# compression_type: "None", # accepts None, Gzip
|
2901
2907
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
2902
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
2908
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
2903
2909
|
# shuffle_config: {
|
2904
2910
|
# seed: 1, # required
|
2905
2911
|
# },
|
@@ -5040,8 +5046,10 @@ module Aws::SageMaker
|
|
5040
5046
|
#
|
5041
5047
|
# @option params [required, Types::ServiceCatalogProvisioningDetails] :service_catalog_provisioning_details
|
5042
5048
|
# The product ID and provisioning artifact ID to provision a service
|
5043
|
-
# catalog.
|
5044
|
-
#
|
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].
|
5045
5053
|
#
|
5046
5054
|
#
|
5047
5055
|
#
|
@@ -5069,7 +5077,7 @@ module Aws::SageMaker
|
|
5069
5077
|
# project_description: "EntityDescription",
|
5070
5078
|
# service_catalog_provisioning_details: { # required
|
5071
5079
|
# product_id: "ServiceCatalogEntityId", # required
|
5072
|
-
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
5080
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
5073
5081
|
# path_id: "ServiceCatalogEntityId",
|
5074
5082
|
# provisioning_parameters: [
|
5075
5083
|
# {
|
@@ -5418,7 +5426,7 @@ module Aws::SageMaker
|
|
5418
5426
|
# algorithm_specification: { # required
|
5419
5427
|
# training_image: "AlgorithmImage",
|
5420
5428
|
# algorithm_name: "ArnOrName",
|
5421
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
5429
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
5422
5430
|
# metric_definitions: [
|
5423
5431
|
# {
|
5424
5432
|
# name: "MetricName", # required
|
@@ -5448,7 +5456,7 @@ module Aws::SageMaker
|
|
5448
5456
|
# content_type: "ContentType",
|
5449
5457
|
# compression_type: "None", # accepts None, Gzip
|
5450
5458
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
5451
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
5459
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
5452
5460
|
# shuffle_config: {
|
5453
5461
|
# seed: 1, # required
|
5454
5462
|
# },
|
@@ -7480,7 +7488,7 @@ module Aws::SageMaker
|
|
7480
7488
|
# resp.training_specification.training_channels[0].supported_compression_types #=> Array
|
7481
7489
|
# resp.training_specification.training_channels[0].supported_compression_types[0] #=> String, one of "None", "Gzip"
|
7482
7490
|
# resp.training_specification.training_channels[0].supported_input_modes #=> Array
|
7483
|
-
# 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"
|
7484
7492
|
# resp.training_specification.supported_tuning_job_objective_metrics #=> Array
|
7485
7493
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].type #=> String, one of "Maximize", "Minimize"
|
7486
7494
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].metric_name #=> String
|
@@ -7503,7 +7511,7 @@ module Aws::SageMaker
|
|
7503
7511
|
# resp.validation_specification.validation_role #=> String
|
7504
7512
|
# resp.validation_specification.validation_profiles #=> Array
|
7505
7513
|
# resp.validation_specification.validation_profiles[0].profile_name #=> String
|
7506
|
-
# 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"
|
7507
7515
|
# resp.validation_specification.validation_profiles[0].training_job_definition.hyper_parameters #=> Hash
|
7508
7516
|
# resp.validation_specification.validation_profiles[0].training_job_definition.hyper_parameters["HyperParameterKey"] #=> String
|
7509
7517
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config #=> Array
|
@@ -7520,7 +7528,7 @@ module Aws::SageMaker
|
|
7520
7528
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].content_type #=> String
|
7521
7529
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
7522
7530
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
7523
|
-
# 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"
|
7524
7532
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].shuffle_config.seed #=> Integer
|
7525
7533
|
# resp.validation_specification.validation_profiles[0].training_job_definition.output_data_config.kms_key_id #=> String
|
7526
7534
|
# resp.validation_specification.validation_profiles[0].training_job_definition.output_data_config.s3_output_path #=> String
|
@@ -8767,7 +8775,7 @@ module Aws::SageMaker
|
|
8767
8775
|
# resp.training_job_definition.static_hyper_parameters #=> Hash
|
8768
8776
|
# resp.training_job_definition.static_hyper_parameters["HyperParameterKey"] #=> String
|
8769
8777
|
# resp.training_job_definition.algorithm_specification.training_image #=> String
|
8770
|
-
# 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"
|
8771
8779
|
# resp.training_job_definition.algorithm_specification.algorithm_name #=> String
|
8772
8780
|
# resp.training_job_definition.algorithm_specification.metric_definitions #=> Array
|
8773
8781
|
# resp.training_job_definition.algorithm_specification.metric_definitions[0].name #=> String
|
@@ -8787,7 +8795,7 @@ module Aws::SageMaker
|
|
8787
8795
|
# resp.training_job_definition.input_data_config[0].content_type #=> String
|
8788
8796
|
# resp.training_job_definition.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
8789
8797
|
# resp.training_job_definition.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
8790
|
-
# 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"
|
8791
8799
|
# resp.training_job_definition.input_data_config[0].shuffle_config.seed #=> Integer
|
8792
8800
|
# resp.training_job_definition.vpc_config.security_group_ids #=> Array
|
8793
8801
|
# resp.training_job_definition.vpc_config.security_group_ids[0] #=> String
|
@@ -8828,7 +8836,7 @@ module Aws::SageMaker
|
|
8828
8836
|
# resp.training_job_definitions[0].static_hyper_parameters #=> Hash
|
8829
8837
|
# resp.training_job_definitions[0].static_hyper_parameters["HyperParameterKey"] #=> String
|
8830
8838
|
# resp.training_job_definitions[0].algorithm_specification.training_image #=> String
|
8831
|
-
# 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"
|
8832
8840
|
# resp.training_job_definitions[0].algorithm_specification.algorithm_name #=> String
|
8833
8841
|
# resp.training_job_definitions[0].algorithm_specification.metric_definitions #=> Array
|
8834
8842
|
# resp.training_job_definitions[0].algorithm_specification.metric_definitions[0].name #=> String
|
@@ -8848,7 +8856,7 @@ module Aws::SageMaker
|
|
8848
8856
|
# resp.training_job_definitions[0].input_data_config[0].content_type #=> String
|
8849
8857
|
# resp.training_job_definitions[0].input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
8850
8858
|
# resp.training_job_definitions[0].input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
8851
|
-
# 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"
|
8852
8860
|
# resp.training_job_definitions[0].input_data_config[0].shuffle_config.seed #=> Integer
|
8853
8861
|
# resp.training_job_definitions[0].vpc_config.security_group_ids #=> Array
|
8854
8862
|
# resp.training_job_definitions[0].vpc_config.security_group_ids[0] #=> String
|
@@ -10283,7 +10291,7 @@ module Aws::SageMaker
|
|
10283
10291
|
# resp.hyper_parameters["HyperParameterKey"] #=> String
|
10284
10292
|
# resp.algorithm_specification.training_image #=> String
|
10285
10293
|
# resp.algorithm_specification.algorithm_name #=> String
|
10286
|
-
# resp.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File"
|
10294
|
+
# resp.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
10287
10295
|
# resp.algorithm_specification.metric_definitions #=> Array
|
10288
10296
|
# resp.algorithm_specification.metric_definitions[0].name #=> String
|
10289
10297
|
# resp.algorithm_specification.metric_definitions[0].regex #=> String
|
@@ -10303,7 +10311,7 @@ module Aws::SageMaker
|
|
10303
10311
|
# resp.input_data_config[0].content_type #=> String
|
10304
10312
|
# resp.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
10305
10313
|
# resp.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
10306
|
-
# 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"
|
10307
10315
|
# resp.input_data_config[0].shuffle_config.seed #=> Integer
|
10308
10316
|
# resp.output_data_config.kms_key_id #=> String
|
10309
10317
|
# resp.output_data_config.s3_output_path #=> String
|
@@ -11000,7 +11008,7 @@ module Aws::SageMaker
|
|
11000
11008
|
# @example Request syntax with placeholder values
|
11001
11009
|
#
|
11002
11010
|
# resp = client.get_search_suggestions({
|
11003
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
|
11011
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
11004
11012
|
# suggestion_query: {
|
11005
11013
|
# property_name_query: {
|
11006
11014
|
# property_name_hint: "PropertyNameHint", # required
|
@@ -13425,8 +13433,8 @@ module Aws::SageMaker
|
|
13425
13433
|
# The maximum number of models to return in the response.
|
13426
13434
|
#
|
13427
13435
|
# @option params [String] :name_contains
|
13428
|
-
# A string in the
|
13429
|
-
#
|
13436
|
+
# A string in the model name. This filter returns only models whose name
|
13437
|
+
# contains the specified string.
|
13430
13438
|
#
|
13431
13439
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
13432
13440
|
# A filter that returns only models created before the specified time
|
@@ -15214,6 +15222,43 @@ module Aws::SageMaker
|
|
15214
15222
|
req.send_request(options)
|
15215
15223
|
end
|
15216
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
|
+
|
15217
15262
|
# Finds Amazon SageMaker resources that match a search query. Matching
|
15218
15263
|
# resources are returned as a list of `SearchRecord` objects in the
|
15219
15264
|
# response. You can sort the search results by any resource property in
|
@@ -15259,7 +15304,7 @@ module Aws::SageMaker
|
|
15259
15304
|
# @example Request syntax with placeholder values
|
15260
15305
|
#
|
15261
15306
|
# resp = client.search({
|
15262
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
|
15307
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
15263
15308
|
# search_expression: {
|
15264
15309
|
# filters: [
|
15265
15310
|
# {
|
@@ -15309,7 +15354,7 @@ module Aws::SageMaker
|
|
15309
15354
|
# resp.results[0].training_job.hyper_parameters["HyperParameterKey"] #=> String
|
15310
15355
|
# resp.results[0].training_job.algorithm_specification.training_image #=> String
|
15311
15356
|
# resp.results[0].training_job.algorithm_specification.algorithm_name #=> String
|
15312
|
-
# 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"
|
15313
15358
|
# resp.results[0].training_job.algorithm_specification.metric_definitions #=> Array
|
15314
15359
|
# resp.results[0].training_job.algorithm_specification.metric_definitions[0].name #=> String
|
15315
15360
|
# resp.results[0].training_job.algorithm_specification.metric_definitions[0].regex #=> String
|
@@ -15329,7 +15374,7 @@ module Aws::SageMaker
|
|
15329
15374
|
# resp.results[0].training_job.input_data_config[0].content_type #=> String
|
15330
15375
|
# resp.results[0].training_job.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
15331
15376
|
# resp.results[0].training_job.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
15332
|
-
# 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"
|
15333
15378
|
# resp.results[0].training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
15334
15379
|
# resp.results[0].training_job.output_data_config.kms_key_id #=> String
|
15335
15380
|
# resp.results[0].training_job.output_data_config.s3_output_path #=> String
|
@@ -15498,7 +15543,7 @@ module Aws::SageMaker
|
|
15498
15543
|
# resp.results[0].trial_component.source_detail.training_job.hyper_parameters["HyperParameterKey"] #=> String
|
15499
15544
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.training_image #=> String
|
15500
15545
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.algorithm_name #=> String
|
15501
|
-
# 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"
|
15502
15547
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions #=> Array
|
15503
15548
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions[0].name #=> String
|
15504
15549
|
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions[0].regex #=> String
|
@@ -15518,7 +15563,7 @@ module Aws::SageMaker
|
|
15518
15563
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].content_type #=> String
|
15519
15564
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
15520
15565
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
15521
|
-
# 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"
|
15522
15567
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
15523
15568
|
# resp.results[0].trial_component.source_detail.training_job.output_data_config.kms_key_id #=> String
|
15524
15569
|
# resp.results[0].trial_component.source_detail.training_job.output_data_config.s3_output_path #=> String
|
@@ -15957,6 +16002,26 @@ module Aws::SageMaker
|
|
15957
16002
|
# resp.results[0].feature_group.tags #=> Array
|
15958
16003
|
# resp.results[0].feature_group.tags[0].key #=> String
|
15959
16004
|
# resp.results[0].feature_group.tags[0].value #=> String
|
16005
|
+
# resp.results[0].project.project_arn #=> String
|
16006
|
+
# resp.results[0].project.project_name #=> String
|
16007
|
+
# resp.results[0].project.project_id #=> String
|
16008
|
+
# resp.results[0].project.project_description #=> String
|
16009
|
+
# resp.results[0].project.service_catalog_provisioning_details.product_id #=> String
|
16010
|
+
# resp.results[0].project.service_catalog_provisioning_details.provisioning_artifact_id #=> String
|
16011
|
+
# resp.results[0].project.service_catalog_provisioning_details.path_id #=> String
|
16012
|
+
# resp.results[0].project.service_catalog_provisioning_details.provisioning_parameters #=> Array
|
16013
|
+
# resp.results[0].project.service_catalog_provisioning_details.provisioning_parameters[0].key #=> String
|
16014
|
+
# resp.results[0].project.service_catalog_provisioning_details.provisioning_parameters[0].value #=> String
|
16015
|
+
# resp.results[0].project.service_catalog_provisioned_product_details.provisioned_product_id #=> String
|
16016
|
+
# resp.results[0].project.service_catalog_provisioned_product_details.provisioned_product_status_message #=> String
|
16017
|
+
# resp.results[0].project.project_status #=> String, one of "Pending", "CreateInProgress", "CreateCompleted", "CreateFailed", "DeleteInProgress", "DeleteFailed", "DeleteCompleted"
|
16018
|
+
# resp.results[0].project.created_by.user_profile_arn #=> String
|
16019
|
+
# resp.results[0].project.created_by.user_profile_name #=> String
|
16020
|
+
# resp.results[0].project.created_by.domain_id #=> String
|
16021
|
+
# resp.results[0].project.creation_time #=> Time
|
16022
|
+
# resp.results[0].project.tags #=> Array
|
16023
|
+
# resp.results[0].project.tags[0].key #=> String
|
16024
|
+
# resp.results[0].project.tags[0].value #=> String
|
15960
16025
|
# resp.next_token #=> String
|
15961
16026
|
#
|
15962
16027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
|
@@ -16131,7 +16196,7 @@ module Aws::SageMaker
|
|
16131
16196
|
# @option params [required, String] :client_request_token
|
16132
16197
|
# A unique, case-sensitive identifier that you provide to ensure the
|
16133
16198
|
# idempotency of the operation. An idempotent operation completes no
|
16134
|
-
# more than
|
16199
|
+
# more than once.
|
16135
16200
|
#
|
16136
16201
|
# **A suitable default value is auto-generated.** You should normally
|
16137
16202
|
# not need to pass this option.**
|
@@ -16385,7 +16450,7 @@ module Aws::SageMaker
|
|
16385
16450
|
# @option params [required, String] :client_request_token
|
16386
16451
|
# A unique, case-sensitive identifier that you provide to ensure the
|
16387
16452
|
# idempotency of the operation. An idempotent operation completes no
|
16388
|
-
# more than
|
16453
|
+
# more than once.
|
16389
16454
|
#
|
16390
16455
|
# **A suitable default value is auto-generated.** You should normally
|
16391
16456
|
# not need to pass this option.**
|
@@ -17976,7 +18041,7 @@ module Aws::SageMaker
|
|
17976
18041
|
params: params,
|
17977
18042
|
config: config)
|
17978
18043
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
17979
|
-
context[:gem_version] = '1.
|
18044
|
+
context[:gem_version] = '1.103.0'
|
17980
18045
|
Seahorse::Client::Request.new(handlers, context)
|
17981
18046
|
end
|
17982
18047
|
|
@@ -1138,6 +1138,7 @@ module Aws::SageMaker
|
|
1138
1138
|
ProfilingIntervalInMilliseconds = Shapes::IntegerShape.new(name: 'ProfilingIntervalInMilliseconds')
|
1139
1139
|
ProfilingParameters = Shapes::MapShape.new(name: 'ProfilingParameters')
|
1140
1140
|
ProfilingStatus = Shapes::StringShape.new(name: 'ProfilingStatus')
|
1141
|
+
Project = Shapes::StructureShape.new(name: 'Project')
|
1141
1142
|
ProjectArn = Shapes::StringShape.new(name: 'ProjectArn')
|
1142
1143
|
ProjectEntityName = Shapes::StringShape.new(name: 'ProjectEntityName')
|
1143
1144
|
ProjectId = Shapes::StringShape.new(name: 'ProjectId')
|
@@ -1192,6 +1193,8 @@ module Aws::SageMaker
|
|
1192
1193
|
ResponseMIMETypes = Shapes::ListShape.new(name: 'ResponseMIMETypes')
|
1193
1194
|
RetentionPolicy = Shapes::StructureShape.new(name: 'RetentionPolicy')
|
1194
1195
|
RetentionType = Shapes::StringShape.new(name: 'RetentionType')
|
1196
|
+
RetryPipelineExecutionRequest = Shapes::StructureShape.new(name: 'RetryPipelineExecutionRequest')
|
1197
|
+
RetryPipelineExecutionResponse = Shapes::StructureShape.new(name: 'RetryPipelineExecutionResponse')
|
1195
1198
|
RetryStrategy = Shapes::StructureShape.new(name: 'RetryStrategy')
|
1196
1199
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
1197
1200
|
RootAccess = Shapes::StringShape.new(name: 'RootAccess')
|
@@ -5552,6 +5555,18 @@ module Aws::SageMaker
|
|
5552
5555
|
ProfilingParameters.key = Shapes::ShapeRef.new(shape: ConfigKey)
|
5553
5556
|
ProfilingParameters.value = Shapes::ShapeRef.new(shape: ConfigValue)
|
5554
5557
|
|
5558
|
+
Project.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, location_name: "ProjectArn"))
|
5559
|
+
Project.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, location_name: "ProjectName"))
|
5560
|
+
Project.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "ProjectId"))
|
5561
|
+
Project.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
5562
|
+
Project.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, location_name: "ServiceCatalogProvisioningDetails"))
|
5563
|
+
Project.add_member(:service_catalog_provisioned_product_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisionedProductDetails, location_name: "ServiceCatalogProvisionedProductDetails"))
|
5564
|
+
Project.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "ProjectStatus"))
|
5565
|
+
Project.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
5566
|
+
Project.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
5567
|
+
Project.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
5568
|
+
Project.struct_class = Types::Project
|
5569
|
+
|
5555
5570
|
ProjectSummary.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
|
5556
5571
|
ProjectSummary.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
5557
5572
|
ProjectSummary.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, required: true, location_name: "ProjectArn"))
|
@@ -5664,6 +5679,13 @@ module Aws::SageMaker
|
|
5664
5679
|
RetentionPolicy.add_member(:home_efs_file_system, Shapes::ShapeRef.new(shape: RetentionType, location_name: "HomeEfsFileSystem"))
|
5665
5680
|
RetentionPolicy.struct_class = Types::RetentionPolicy
|
5666
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
|
+
|
5667
5689
|
RetryStrategy.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttempts, required: true, location_name: "MaximumRetryAttempts"))
|
5668
5690
|
RetryStrategy.struct_class = Types::RetryStrategy
|
5669
5691
|
|
@@ -5702,6 +5724,7 @@ module Aws::SageMaker
|
|
5702
5724
|
SearchRecord.add_member(:pipeline, Shapes::ShapeRef.new(shape: Pipeline, location_name: "Pipeline"))
|
5703
5725
|
SearchRecord.add_member(:pipeline_execution, Shapes::ShapeRef.new(shape: PipelineExecution, location_name: "PipelineExecution"))
|
5704
5726
|
SearchRecord.add_member(:feature_group, Shapes::ShapeRef.new(shape: FeatureGroup, location_name: "FeatureGroup"))
|
5727
|
+
SearchRecord.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "Project"))
|
5705
5728
|
SearchRecord.struct_class = Types::SearchRecord
|
5706
5729
|
|
5707
5730
|
SearchRequest.add_member(:resource, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "Resource"))
|
@@ -5749,7 +5772,7 @@ module Aws::SageMaker
|
|
5749
5772
|
ServiceCatalogProvisionedProductDetails.struct_class = Types::ServiceCatalogProvisionedProductDetails
|
5750
5773
|
|
5751
5774
|
ServiceCatalogProvisioningDetails.add_member(:product_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId, required: true, location_name: "ProductId"))
|
5752
|
-
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"))
|
5753
5776
|
ServiceCatalogProvisioningDetails.add_member(:path_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId, location_name: "PathId"))
|
5754
5777
|
ServiceCatalogProvisioningDetails.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: ProvisioningParameters, location_name: "ProvisioningParameters"))
|
5755
5778
|
ServiceCatalogProvisioningDetails.struct_class = Types::ServiceCatalogProvisioningDetails
|
@@ -8529,6 +8552,17 @@ module Aws::SageMaker
|
|
8529
8552
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
8530
8553
|
end)
|
8531
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
|
+
|
8532
8566
|
api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
|
8533
8567
|
o.name = "Search"
|
8534
8568
|
o.http_method = "POST"
|