aws-sdk-codedeploy 1.0.0.rc1 → 1.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codedeploy.rb +1 -1
- data/lib/aws-sdk-codedeploy/client.rb +1917 -1714
- data/lib/aws-sdk-codedeploy/client_api.rb +1225 -1216
- data/lib/aws-sdk-codedeploy/errors.rb +4 -13
- data/lib/aws-sdk-codedeploy/resource.rb +12 -14
- data/lib/aws-sdk-codedeploy/types.rb +2730 -2542
- data/lib/aws-sdk-codedeploy/waiters.rb +48 -49
- metadata +2 -2
@@ -1,64 +1,63 @@
|
|
1
1
|
# WARNING ABOUT GENERATED CODE
|
2
2
|
#
|
3
|
-
# This file is generated. See the contributing for
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
4
|
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
5
|
#
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
require 'aws-sdk-core/waiters'
|
9
9
|
|
10
|
-
module Aws
|
11
|
-
module
|
12
|
-
module Waiters
|
13
|
-
class DeploymentSuccessful
|
10
|
+
module Aws::CodeDeploy
|
11
|
+
module Waiters
|
14
12
|
|
15
|
-
|
16
|
-
# @option options [required, Client] :client
|
17
|
-
# @option options [Integer] :max_attempts (120)
|
18
|
-
# @option options [Integer] :delay (15)
|
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: 120,
|
25
|
-
delay: 15,
|
26
|
-
poller: Aws::Waiters::Poller.new(
|
27
|
-
operation_name: :get_deployment,
|
28
|
-
acceptors: [
|
29
|
-
{
|
30
|
-
"expected" => "Succeeded",
|
31
|
-
"matcher" => "path",
|
32
|
-
"state" => "success",
|
33
|
-
"argument" => "deployment_info.status"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"expected" => "Failed",
|
37
|
-
"matcher" => "path",
|
38
|
-
"state" => "failure",
|
39
|
-
"argument" => "deployment_info.status"
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"expected" => "Stopped",
|
43
|
-
"matcher" => "path",
|
44
|
-
"state" => "failure",
|
45
|
-
"argument" => "deployment_info.status"
|
46
|
-
}
|
47
|
-
]
|
48
|
-
)
|
49
|
-
}.merge(options))
|
50
|
-
end
|
13
|
+
class DeploymentSuccessful
|
51
14
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
15
|
+
# @param [Hash] options
|
16
|
+
# @option options [required, Client] :client
|
17
|
+
# @option options [Integer] :max_attempts (120)
|
18
|
+
# @option options [Integer] :delay (15)
|
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: 120,
|
25
|
+
delay: 15,
|
26
|
+
poller: Aws::Waiters::Poller.new(
|
27
|
+
operation_name: :get_deployment,
|
28
|
+
acceptors: [
|
29
|
+
{
|
30
|
+
"expected" => "Succeeded",
|
31
|
+
"matcher" => "path",
|
32
|
+
"state" => "success",
|
33
|
+
"argument" => "deployment_info.status"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"expected" => "Failed",
|
37
|
+
"matcher" => "path",
|
38
|
+
"state" => "failure",
|
39
|
+
"argument" => "deployment_info.status"
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"expected" => "Stopped",
|
43
|
+
"matcher" => "path",
|
44
|
+
"state" => "failure",
|
45
|
+
"argument" => "deployment_info.status"
|
46
|
+
}
|
47
|
+
]
|
48
|
+
)
|
49
|
+
}.merge(options))
|
50
|
+
end
|
60
51
|
|
52
|
+
# @option (see Client#get_deployment)
|
53
|
+
# @return (see Client#get_deployment)
|
54
|
+
def wait(params = {})
|
55
|
+
@waiter.wait(client: @client, params: params)
|
61
56
|
end
|
57
|
+
|
58
|
+
# @api private
|
59
|
+
attr_reader :waiter
|
60
|
+
|
62
61
|
end
|
63
62
|
end
|
64
63
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codedeploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc2
|
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:
|
11
|
+
date: 2017-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|