aws-sdk-emr 1.0.0.rc1

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.
@@ -0,0 +1,126 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing for info on making contributions:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ require 'aws-sdk-core/waiters'
9
+
10
+ module Aws
11
+ module EMR
12
+ module Waiters
13
+ class ClusterRunning
14
+
15
+ # @param [Hash] options
16
+ # @option options [required, Client] :client
17
+ # @option options [Integer] :max_attempts (60)
18
+ # @option options [Integer] :delay (30)
19
+ # @option options [Proc] :before_attempt
20
+ # @option options [Proc] :before_wait
21
+ def initialize(options)
22
+ @client = options.fetch(:client)
23
+ @waiter = Aws::Waiters::Waiter.new({
24
+ max_attempts: 60,
25
+ delay: 30,
26
+ poller: Aws::Waiters::Poller.new(
27
+ operation_name: :describe_cluster,
28
+ acceptors: [
29
+ {
30
+ "state" => "success",
31
+ "matcher" => "path",
32
+ "argument" => "cluster.status.state",
33
+ "expected" => "RUNNING"
34
+ },
35
+ {
36
+ "state" => "success",
37
+ "matcher" => "path",
38
+ "argument" => "cluster.status.state",
39
+ "expected" => "WAITING"
40
+ },
41
+ {
42
+ "state" => "failure",
43
+ "matcher" => "path",
44
+ "argument" => "cluster.status.state",
45
+ "expected" => "TERMINATING"
46
+ },
47
+ {
48
+ "state" => "failure",
49
+ "matcher" => "path",
50
+ "argument" => "cluster.status.state",
51
+ "expected" => "TERMINATED"
52
+ },
53
+ {
54
+ "state" => "failure",
55
+ "matcher" => "path",
56
+ "argument" => "cluster.status.state",
57
+ "expected" => "TERMINATED_WITH_ERRORS"
58
+ }
59
+ ]
60
+ )
61
+ }.merge(options))
62
+ end
63
+
64
+ # @option (see Client#describe_cluster)
65
+ # @return (see Client#describe_cluster)
66
+ def wait(params = {})
67
+ @waiter.wait(client: @client, params: params)
68
+ end
69
+
70
+ # @api private
71
+ attr_reader :waiter
72
+
73
+ end
74
+
75
+ class StepComplete
76
+
77
+ # @param [Hash] options
78
+ # @option options [required, Client] :client
79
+ # @option options [Integer] :max_attempts (60)
80
+ # @option options [Integer] :delay (30)
81
+ # @option options [Proc] :before_attempt
82
+ # @option options [Proc] :before_wait
83
+ def initialize(options)
84
+ @client = options.fetch(:client)
85
+ @waiter = Aws::Waiters::Waiter.new({
86
+ max_attempts: 60,
87
+ delay: 30,
88
+ poller: Aws::Waiters::Poller.new(
89
+ operation_name: :describe_step,
90
+ acceptors: [
91
+ {
92
+ "state" => "success",
93
+ "matcher" => "path",
94
+ "argument" => "step.status.state",
95
+ "expected" => "COMPLETED"
96
+ },
97
+ {
98
+ "state" => "failure",
99
+ "matcher" => "path",
100
+ "argument" => "step.status.state",
101
+ "expected" => "FAILED"
102
+ },
103
+ {
104
+ "state" => "failure",
105
+ "matcher" => "path",
106
+ "argument" => "step.status.state",
107
+ "expected" => "CANCELLED"
108
+ }
109
+ ]
110
+ )
111
+ }.merge(options))
112
+ end
113
+
114
+ # @option (see Client#describe_step)
115
+ # @return (see Client#describe_step)
116
+ def wait(params = {})
117
+ @waiter.wait(client: @client, params: params)
118
+ end
119
+
120
+ # @api private
121
+ attr_reader :waiter
122
+
123
+ end
124
+ end
125
+ end
126
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-emr
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.rc1
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-12-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aws-sdk-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 3.0.0.rc1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 3.0.0.rc1
27
+ - !ruby/object:Gem::Dependency
28
+ name: aws-sigv4
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ description: Official AWS Ruby gem for Amazon Elastic MapReduce (Amazon EMR). This
42
+ gem is part of the AWS SDK for Ruby.
43
+ email:
44
+ - trevrowe@amazon.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - lib/aws-sdk-emr.rb
50
+ - lib/aws-sdk-emr/client.rb
51
+ - lib/aws-sdk-emr/client_api.rb
52
+ - lib/aws-sdk-emr/customizations.rb
53
+ - lib/aws-sdk-emr/errors.rb
54
+ - lib/aws-sdk-emr/resource.rb
55
+ - lib/aws-sdk-emr/types.rb
56
+ - lib/aws-sdk-emr/waiters.rb
57
+ homepage: http://github.com/aws/aws-sdk-ruby
58
+ licenses:
59
+ - Apache-2.0
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">"
73
+ - !ruby/object:Gem::Version
74
+ version: 1.3.1
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.5.1
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: AWS SDK for Ruby - Amazon EMR
81
+ test_files: []