aws-sdk-elasticbeanstalk 1.35.0 → 1.40.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0557a58405080dc689fd7e91f5f6c3dbd510425d03dee0ed8ef8a3f17619c39
|
4
|
+
data.tar.gz: 7c1e126b07accc169439ce9f1c5ed97157ccc3ec687a21feefe2c05dced5cdab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 642547660384d3ac8a9a532483de9e67a22c8caf09a99329593471cf3b39db683a6f93faba9797a5e61b7d10ee60c69597a2ce135bbca5b712e8eea19d743f55
|
7
|
+
data.tar.gz: 9c43abc14ccf39eaf0e5f856027c2de937e649c55237a94d6ebc57534ded725d6c4d63db5435d2339dc25d2f0853301417a717ab3aed2afa9a2b88856fab76d9
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
|
|
45
46
|
#
|
46
47
|
# See {Errors} for more information.
|
47
48
|
#
|
48
|
-
#
|
49
|
+
# @!group service
|
49
50
|
module Aws::ElasticBeanstalk
|
50
51
|
|
51
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.40.0'
|
52
53
|
|
53
54
|
end
|
@@ -85,13 +85,28 @@ module Aws::ElasticBeanstalk
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::ElasticBeanstalk
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -534,7 +549,7 @@ module Aws::ElasticBeanstalk
|
|
534
549
|
# resp.environments[0].cname #=> String
|
535
550
|
# resp.environments[0].date_created #=> Time
|
536
551
|
# resp.environments[0].date_updated #=> Time
|
537
|
-
# resp.environments[0].status #=> String, one of "Launching", "Updating", "Ready", "Terminating", "Terminated"
|
552
|
+
# resp.environments[0].status #=> String, one of "Aborting", "Launching", "Updating", "LinkingFrom", "LinkingTo", "Ready", "Terminating", "Terminated"
|
538
553
|
# resp.environments[0].abortable_operation_in_progress #=> Boolean
|
539
554
|
# resp.environments[0].health #=> String, one of "Green", "Yellow", "Red", "Grey"
|
540
555
|
# resp.environments[0].health_status #=> String, one of "NoData", "Unknown", "Pending", "Ok", "Info", "Warning", "Degraded", "Severe", "Suspended"
|
@@ -1253,7 +1268,7 @@ module Aws::ElasticBeanstalk
|
|
1253
1268
|
# resp.cname #=> String
|
1254
1269
|
# resp.date_created #=> Time
|
1255
1270
|
# resp.date_updated #=> Time
|
1256
|
-
# resp.status #=> String, one of "Launching", "Updating", "Ready", "Terminating", "Terminated"
|
1271
|
+
# resp.status #=> String, one of "Aborting", "Launching", "Updating", "LinkingFrom", "LinkingTo", "Ready", "Terminating", "Terminated"
|
1257
1272
|
# resp.abortable_operation_in_progress #=> Boolean
|
1258
1273
|
# resp.health #=> String, one of "Green", "Yellow", "Red", "Grey"
|
1259
1274
|
# resp.health_status #=> String, one of "NoData", "Unknown", "Pending", "Ok", "Info", "Warning", "Degraded", "Severe", "Suspended"
|
@@ -2516,7 +2531,7 @@ module Aws::ElasticBeanstalk
|
|
2516
2531
|
# resp.environments[0].cname #=> String
|
2517
2532
|
# resp.environments[0].date_created #=> Time
|
2518
2533
|
# resp.environments[0].date_updated #=> Time
|
2519
|
-
# resp.environments[0].status #=> String, one of "Launching", "Updating", "Ready", "Terminating", "Terminated"
|
2534
|
+
# resp.environments[0].status #=> String, one of "Aborting", "Launching", "Updating", "LinkingFrom", "LinkingTo", "Ready", "Terminating", "Terminated"
|
2520
2535
|
# resp.environments[0].abortable_operation_in_progress #=> Boolean
|
2521
2536
|
# resp.environments[0].health #=> String, one of "Green", "Yellow", "Red", "Grey"
|
2522
2537
|
# resp.environments[0].health_status #=> String, one of "NoData", "Unknown", "Pending", "Ok", "Info", "Warning", "Degraded", "Severe", "Suspended"
|
@@ -3671,7 +3686,7 @@ module Aws::ElasticBeanstalk
|
|
3671
3686
|
# resp.cname #=> String
|
3672
3687
|
# resp.date_created #=> Time
|
3673
3688
|
# resp.date_updated #=> Time
|
3674
|
-
# resp.status #=> String, one of "Launching", "Updating", "Ready", "Terminating", "Terminated"
|
3689
|
+
# resp.status #=> String, one of "Aborting", "Launching", "Updating", "LinkingFrom", "LinkingTo", "Ready", "Terminating", "Terminated"
|
3675
3690
|
# resp.abortable_operation_in_progress #=> Boolean
|
3676
3691
|
# resp.health #=> String, one of "Green", "Yellow", "Red", "Grey"
|
3677
3692
|
# resp.health_status #=> String, one of "NoData", "Unknown", "Pending", "Ok", "Info", "Warning", "Degraded", "Severe", "Suspended"
|
@@ -4289,7 +4304,7 @@ module Aws::ElasticBeanstalk
|
|
4289
4304
|
# resp.cname #=> String
|
4290
4305
|
# resp.date_created #=> Time
|
4291
4306
|
# resp.date_updated #=> Time
|
4292
|
-
# resp.status #=> String, one of "Launching", "Updating", "Ready", "Terminating", "Terminated"
|
4307
|
+
# resp.status #=> String, one of "Aborting", "Launching", "Updating", "LinkingFrom", "LinkingTo", "Ready", "Terminating", "Terminated"
|
4293
4308
|
# resp.abortable_operation_in_progress #=> Boolean
|
4294
4309
|
# resp.health #=> String, one of "Green", "Yellow", "Red", "Grey"
|
4295
4310
|
# resp.health_status #=> String, one of "NoData", "Unknown", "Pending", "Ok", "Info", "Warning", "Degraded", "Severe", "Suspended"
|
@@ -4486,7 +4501,7 @@ module Aws::ElasticBeanstalk
|
|
4486
4501
|
params: params,
|
4487
4502
|
config: config)
|
4488
4503
|
context[:gem_name] = 'aws-sdk-elasticbeanstalk'
|
4489
|
-
context[:gem_version] = '1.
|
4504
|
+
context[:gem_version] = '1.40.0'
|
4490
4505
|
Seahorse::Client::Request.new(handlers, context)
|
4491
4506
|
end
|
4492
4507
|
|
@@ -192,6 +192,7 @@ module Aws::ElasticBeanstalk
|
|
192
192
|
ManagedAction = Shapes::StructureShape.new(name: 'ManagedAction')
|
193
193
|
ManagedActionHistoryItem = Shapes::StructureShape.new(name: 'ManagedActionHistoryItem')
|
194
194
|
ManagedActionHistoryItems = Shapes::ListShape.new(name: 'ManagedActionHistoryItems')
|
195
|
+
ManagedActionHistoryMaxItems = Shapes::IntegerShape.new(name: 'ManagedActionHistoryMaxItems')
|
195
196
|
ManagedActionInvalidStateException = Shapes::StructureShape.new(name: 'ManagedActionInvalidStateException')
|
196
197
|
ManagedActions = Shapes::ListShape.new(name: 'ManagedActions')
|
197
198
|
MaxAgeRule = Shapes::StructureShape.new(name: 'MaxAgeRule')
|
@@ -642,7 +643,7 @@ module Aws::ElasticBeanstalk
|
|
642
643
|
DescribeEnvironmentManagedActionHistoryRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "EnvironmentId"))
|
643
644
|
DescribeEnvironmentManagedActionHistoryRequest.add_member(:environment_name, Shapes::ShapeRef.new(shape: EnvironmentName, location_name: "EnvironmentName"))
|
644
645
|
DescribeEnvironmentManagedActionHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
645
|
-
DescribeEnvironmentManagedActionHistoryRequest.add_member(:max_items, Shapes::ShapeRef.new(shape:
|
646
|
+
DescribeEnvironmentManagedActionHistoryRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: ManagedActionHistoryMaxItems, location_name: "MaxItems"))
|
646
647
|
DescribeEnvironmentManagedActionHistoryRequest.struct_class = Types::DescribeEnvironmentManagedActionHistoryRequest
|
647
648
|
|
648
649
|
DescribeEnvironmentManagedActionHistoryResult.add_member(:managed_action_history_items, Shapes::ShapeRef.new(shape: ManagedActionHistoryItems, location_name: "ManagedActionHistoryItems"))
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticbeanstalk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.40.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: 2020-
|
11
|
+
date: 2020-11-24 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.
|
22
|
+
version: 3.109.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.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|