aws-sdk-sagemaker 1.76.0 → 1.77.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e505250c6d199aa0f870969493633a52ee26568bd40c53c9c73ce2ea14a4d929
4
- data.tar.gz: '09452cc88062648661e86d0b4deb18ae4ab281e8c77601f199ce7bcd8932d653'
3
+ metadata.gz: 9a4337ea5c9bd1fe77ccd7d9f03b70525b2318534184d0710a9d1ff44377baa4
4
+ data.tar.gz: 2371cbc87bfa2f268bb49e6f7f75edc0e57bf1d6c6114ad482a870271a30476b
5
5
  SHA512:
6
- metadata.gz: 84bc8d36781eb1164c488d648fe4ed5214c068052e350ffc5002307316186ece30fb5027e1cb43ab1171fae247063f79b72fcdb63b305840cbe66405b6e43147
7
- data.tar.gz: 4d870784fe2448206b7d89822e60e426151cabd3a522fd32ccff760868aef70f3e7e724121e622f5a84e4c2d4b21ec426f7a093c10f51cfaa841780c842f1592
6
+ metadata.gz: 57b1deceadbe46e9ec02c689a2ea72893dd3a0642857a3dfd4e7906458ef42f0376a0ca62ce8daf9ac8d8db220b5e36cad420857d02561be3e2d5c8da85a7282
7
+ data.tar.gz: 100c47fd1dcd39f6dab3787a9f34eded0347ce229450f366be02d013b4e9663b1649711c880228e1137a6da81243b3b5f16c12561f991d13e6db50bb6e2deb75
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.76.0'
52
+ GEM_VERSION = '1.77.0'
53
53
 
54
54
  end
@@ -1300,6 +1300,7 @@ module Aws::SageMaker
1300
1300
  # s3_uri: "S3Uri", # required
1301
1301
  # data_input_config: "DataInputConfig", # required
1302
1302
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
1303
+ # framework_version: "FrameworkVersion",
1303
1304
  # },
1304
1305
  # output_config: { # required
1305
1306
  # s3_output_location: "S3Uri", # required
@@ -7557,6 +7558,7 @@ module Aws::SageMaker
7557
7558
  # resp.input_config.s3_uri #=> String
7558
7559
  # resp.input_config.data_input_config #=> String
7559
7560
  # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
7561
+ # resp.input_config.framework_version #=> String
7560
7562
  # resp.output_config.s3_output_location #=> String
7561
7563
  # resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
7562
7564
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
@@ -17193,7 +17195,7 @@ module Aws::SageMaker
17193
17195
  params: params,
17194
17196
  config: config)
17195
17197
  context[:gem_name] = 'aws-sdk-sagemaker'
17196
- context[:gem_version] = '1.76.0'
17198
+ context[:gem_version] = '1.77.0'
17197
17199
  Seahorse::Client::Request.new(handlers, context)
17198
17200
  end
17199
17201
 
@@ -594,6 +594,7 @@ module Aws::SageMaker
594
594
  FlowDefinitionTaskTimeLimitInSeconds = Shapes::IntegerShape.new(name: 'FlowDefinitionTaskTimeLimitInSeconds')
595
595
  FlowDefinitionTaskTitle = Shapes::StringShape.new(name: 'FlowDefinitionTaskTitle')
596
596
  Framework = Shapes::StringShape.new(name: 'Framework')
597
+ FrameworkVersion = Shapes::StringShape.new(name: 'FrameworkVersion')
597
598
  GenerateCandidateDefinitionsOnly = Shapes::BooleanShape.new(name: 'GenerateCandidateDefinitionsOnly')
598
599
  GetDeviceFleetReportRequest = Shapes::StructureShape.new(name: 'GetDeviceFleetReportRequest')
599
600
  GetDeviceFleetReportResponse = Shapes::StructureShape.new(name: 'GetDeviceFleetReportResponse')
@@ -3812,6 +3813,7 @@ module Aws::SageMaker
3812
3813
  InputConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
3813
3814
  InputConfig.add_member(:data_input_config, Shapes::ShapeRef.new(shape: DataInputConfig, required: true, location_name: "DataInputConfig"))
3814
3815
  InputConfig.add_member(:framework, Shapes::ShapeRef.new(shape: Framework, required: true, location_name: "Framework"))
3816
+ InputConfig.add_member(:framework_version, Shapes::ShapeRef.new(shape: FrameworkVersion, location_name: "FrameworkVersion"))
3815
3817
  InputConfig.struct_class = Types::InputConfig
3816
3818
 
3817
3819
  InputDataConfig.member = Shapes::ShapeRef.new(shape: Channel)
@@ -3947,6 +3947,7 @@ module Aws::SageMaker
3947
3947
  # s3_uri: "S3Uri", # required
3948
3948
  # data_input_config: "DataInputConfig", # required
3949
3949
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
3950
+ # framework_version: "FrameworkVersion",
3950
3951
  # },
3951
3952
  # output_config: { # required
3952
3953
  # s3_output_location: "S3Uri", # required
@@ -18469,6 +18470,7 @@ module Aws::SageMaker
18469
18470
  # s3_uri: "S3Uri", # required
18470
18471
  # data_input_config: "DataInputConfig", # required
18471
18472
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
18473
+ # framework_version: "FrameworkVersion",
18472
18474
  # }
18473
18475
  #
18474
18476
  # @!attribute [rw] s3_uri
@@ -18645,12 +18647,21 @@ module Aws::SageMaker
18645
18647
  # example: TENSORFLOW.
18646
18648
  # @return [String]
18647
18649
  #
18650
+ # @!attribute [rw] framework_version
18651
+ # Specifies the framework version to use.
18652
+ #
18653
+ # This API field is only supported for PyTorch framework versions
18654
+ # `1.4`, `1.5`, and `1.6` for cloud instance target devices: `ml_c4`,
18655
+ # `ml_c5`, `ml_m4`, `ml_m5`, `ml_p2`, `ml_p3`, and `ml_g4dn`.
18656
+ # @return [String]
18657
+ #
18648
18658
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InputConfig AWS API Documentation
18649
18659
  #
18650
18660
  class InputConfig < Struct.new(
18651
18661
  :s3_uri,
18652
18662
  :data_input_config,
18653
- :framework)
18663
+ :framework,
18664
+ :framework_version)
18654
18665
  SENSITIVE = []
18655
18666
  include Aws::Structure
18656
18667
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.77.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core