aws-sdk-sagemaker 1.36.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36550f25ccca346063cbe6729036317e2c4b2c59
4
- data.tar.gz: 18729701429cb217251bc0c7915fb3d7150df897
3
+ metadata.gz: a3273982246d08fbc9bea9431614eb185a06b414
4
+ data.tar.gz: 7a1af37037bd64e8c7c37075c2c056a7368d680e
5
5
  SHA512:
6
- metadata.gz: 462fa739b99508dc9aa7304c448abf61d428ca736871f1e79f4d969869b5eecb5c91738ed909e66021d16edd259193f30877848cadbb1e1cdfb8c327ce6c2d29
7
- data.tar.gz: 6c59bf1b2b129367108296619a2994fcc794a9bba4fc0f441f8c9b80875f36ab0fecf0aec3c93e9ab3523e6b78d50bd899675aca58be3c4c6f0ccc304598e8ac
6
+ metadata.gz: ac5419fde0f341fd89dd59c7cd6bd7038c0b4b4ca28cdb20fdec9a636eedd244ea6d96326b8ad5181943fdb51692cb7965110d77596f1fedd2d48d90d75a9e7a
7
+ data.tar.gz: 147aa9755467604bab83c0bfbdf18df2af269509d86f3eb149163882e42ae935c23dc9c735bed4fc851b666b2ab5d3e9bce6b285a51c0ed108ec2a03f31b0010
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
43
43
  # @service
44
44
  module Aws::SageMaker
45
45
 
46
- GEM_VERSION = '1.36.0'
46
+ GEM_VERSION = '1.37.0'
47
47
 
48
48
  end
@@ -5910,7 +5910,7 @@ module Aws::SageMaker
5910
5910
  params: params,
5911
5911
  config: config)
5912
5912
  context[:gem_name] = 'aws-sdk-sagemaker'
5913
- context[:gem_version] = '1.36.0'
5913
+ context[:gem_version] = '1.37.0'
5914
5914
  Seahorse::Client::Request.new(handlers, context)
5915
5915
  end
5916
5916
 
@@ -1798,10 +1798,19 @@ module Aws::SageMaker
1798
1798
  ResourceConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
1799
1799
  ResourceConfig.struct_class = Types::ResourceConfig
1800
1800
 
1801
+ ResourceInUse.add_member(:message, Shapes::ShapeRef.new(shape: FailureReason, location_name: "Message"))
1802
+ ResourceInUse.struct_class = Types::ResourceInUse
1803
+
1804
+ ResourceLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: FailureReason, location_name: "Message"))
1805
+ ResourceLimitExceeded.struct_class = Types::ResourceLimitExceeded
1806
+
1801
1807
  ResourceLimits.add_member(:max_number_of_training_jobs, Shapes::ShapeRef.new(shape: MaxNumberOfTrainingJobs, required: true, location_name: "MaxNumberOfTrainingJobs"))
1802
1808
  ResourceLimits.add_member(:max_parallel_training_jobs, Shapes::ShapeRef.new(shape: MaxParallelTrainingJobs, required: true, location_name: "MaxParallelTrainingJobs"))
1803
1809
  ResourceLimits.struct_class = Types::ResourceLimits
1804
1810
 
1811
+ ResourceNotFound.add_member(:message, Shapes::ShapeRef.new(shape: FailureReason, location_name: "Message"))
1812
+ ResourceNotFound.struct_class = Types::ResourceNotFound
1813
+
1805
1814
  ResponseMIMETypes.member = Shapes::ShapeRef.new(shape: ResponseMIMEType)
1806
1815
 
1807
1816
  S3DataSource.add_member(:s3_data_type, Shapes::ShapeRef.new(shape: S3DataType, required: true, location_name: "S3DataType"))
@@ -10,5 +10,53 @@ module Aws::SageMaker
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class ResourceInUse < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::SageMaker::Types::ResourceInUse] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ end
28
+
29
+ class ResourceLimitExceeded < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::SageMaker::Types::ResourceLimitExceeded] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def message
40
+ @message || @data[:message]
41
+ end
42
+
43
+ end
44
+
45
+ class ResourceNotFound < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::SageMaker::Types::ResourceNotFound] data
50
+ def initialize(context, message, data = Aws::EmptyStructure.new)
51
+ super(context, message, data)
52
+ end
53
+
54
+ # @return [String]
55
+ def message
56
+ @message || @data[:message]
57
+ end
58
+
59
+ end
60
+
13
61
  end
14
62
  end
@@ -9483,6 +9483,31 @@ module Aws::SageMaker
9483
9483
  include Aws::Structure
9484
9484
  end
9485
9485
 
9486
+ # Resource being accessed is in use.
9487
+ #
9488
+ # @!attribute [rw] message
9489
+ # @return [String]
9490
+ #
9491
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceInUse AWS API Documentation
9492
+ #
9493
+ class ResourceInUse < Struct.new(
9494
+ :message)
9495
+ include Aws::Structure
9496
+ end
9497
+
9498
+ # You have exceeded an Amazon SageMaker resource limit. For example, you
9499
+ # might have too many training jobs created.
9500
+ #
9501
+ # @!attribute [rw] message
9502
+ # @return [String]
9503
+ #
9504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceLimitExceeded AWS API Documentation
9505
+ #
9506
+ class ResourceLimitExceeded < Struct.new(
9507
+ :message)
9508
+ include Aws::Structure
9509
+ end
9510
+
9486
9511
  # Specifies the maximum number of training jobs and parallel training
9487
9512
  # jobs that a hyperparameter tuning job can launch.
9488
9513
  #
@@ -9512,6 +9537,18 @@ module Aws::SageMaker
9512
9537
  include Aws::Structure
9513
9538
  end
9514
9539
 
9540
+ # Resource being access is not found.
9541
+ #
9542
+ # @!attribute [rw] message
9543
+ # @return [String]
9544
+ #
9545
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceNotFound AWS API Documentation
9546
+ #
9547
+ class ResourceNotFound < Struct.new(
9548
+ :message)
9549
+ include Aws::Structure
9550
+ end
9551
+
9515
9552
  # Describes the S3 data source.
9516
9553
  #
9517
9554
  # @note When making an API call, you may pass S3DataSource
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.36.0
4
+ version: 1.37.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: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.52.1
22
+ version: 3.53.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement