aws-sdk-emr 1.16.0 → 1.17.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
  SHA1:
3
- metadata.gz: 1d9fe0cdcf5fcd3e326e215f3f57cd22039f1bb7
4
- data.tar.gz: 6ce3422d3de4ce21acf2e5b9dac128452249bef4
3
+ metadata.gz: 88454527d517b9d9a7a5dec802b7a89efc0454c6
4
+ data.tar.gz: eb2eae28ba9c8331c175fdd22eb7d9732b97c91c
5
5
  SHA512:
6
- metadata.gz: 22dd2de788c0ae490a33cf1e9319494f9bb4679c6082221e3f4c5b2c05a1af71755871b86a78eb6fe436210034d9ec6e820f5b2ee9dd6f232e065bb0144ae7dd
7
- data.tar.gz: a17ea6aa90839a3eaf3828aeec93af6e9253fc84b59a6aebbe15c4aa063b0923931b9e73bfc37c249a32fd18f00ca3dcc138dba4a01fa48e853d9dfe22c4d126
6
+ metadata.gz: 05ee0d8e1f5987d2e31b41d91c0d18ad0422a6f98f1706e01c8166672a301e72d5d523510ca8a1f91fdab69e0971be8315bfb8b9fc27a9fb830571f06390a616
7
+ data.tar.gz: 712c654f76448166d2ae2ab7bd77fd55715427ea0cb228fffd9542a2b95bc969f130ad6881875d6d947d69da8877e5953900fced2368a521bfd7a091ca75cb3d
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-emr/customizations'
43
43
  # @service
44
44
  module Aws::EMR
45
45
 
46
- GEM_VERSION = '1.16.0'
46
+ GEM_VERSION = '1.17.0'
47
47
 
48
48
  end
@@ -2287,7 +2287,7 @@ module Aws::EMR
2287
2287
  params: params,
2288
2288
  config: config)
2289
2289
  context[:gem_name] = 'aws-sdk-emr'
2290
- context[:gem_version] = '1.16.0'
2290
+ context[:gem_version] = '1.17.0'
2291
2291
  Seahorse::Client::Request.new(handlers, context)
2292
2292
  end
2293
2293
 
@@ -666,6 +666,13 @@ module Aws::EMR
666
666
 
667
667
  InstanceTypeSpecificationList.member = Shapes::ShapeRef.new(shape: InstanceTypeSpecification)
668
668
 
669
+ InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
670
+ InternalServerException.struct_class = Types::InternalServerException
671
+
672
+ InvalidRequestException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "ErrorCode"))
673
+ InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
674
+ InvalidRequestException.struct_class = Types::InvalidRequestException
675
+
669
676
  JobFlowDetail.add_member(:job_flow_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "JobFlowId"))
670
677
  JobFlowDetail.add_member(:name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "Name"))
671
678
  JobFlowDetail.add_member(:log_uri, Shapes::ShapeRef.new(shape: XmlString, location_name: "LogUri"))
@@ -10,5 +10,42 @@ module Aws::EMR
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class InternalServerException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::EMR::Types::InternalServerException] 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 InvalidRequestException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::EMR::Types::InvalidRequestException] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def error_code
40
+ @data[:error_code]
41
+ end
42
+
43
+ # @return [String]
44
+ def message
45
+ @message || @data[:message]
46
+ end
47
+
48
+ end
49
+
13
50
  end
14
51
  end
@@ -2848,6 +2848,38 @@ module Aws::EMR
2848
2848
  include Aws::Structure
2849
2849
  end
2850
2850
 
2851
+ # This exception occurs when there is an internal failure in the EMR
2852
+ # service.
2853
+ #
2854
+ # @!attribute [rw] message
2855
+ # The message associated with the exception.
2856
+ # @return [String]
2857
+ #
2858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InternalServerException AWS API Documentation
2859
+ #
2860
+ class InternalServerException < Struct.new(
2861
+ :message)
2862
+ include Aws::Structure
2863
+ end
2864
+
2865
+ # This exception occurs when there is something wrong with user input.
2866
+ #
2867
+ # @!attribute [rw] error_code
2868
+ # The error code associated with the exception.
2869
+ # @return [String]
2870
+ #
2871
+ # @!attribute [rw] message
2872
+ # The message associated with the exception.
2873
+ # @return [String]
2874
+ #
2875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InvalidRequestException AWS API Documentation
2876
+ #
2877
+ class InvalidRequestException < Struct.new(
2878
+ :error_code,
2879
+ :message)
2880
+ include Aws::Structure
2881
+ end
2882
+
2851
2883
  # A description of a cluster (job flow).
2852
2884
  #
2853
2885
  # @!attribute [rw] job_flow_id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.17.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