aws-sdk-elasticbeanstalk 1.0.0.rc13 → 1.0.0.rc14
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1e4a83f583d59b7fca14582bacd45a006f0a2c6
|
4
|
+
data.tar.gz: 2a0cd33c8feaed8c19b081d2cdbb67e9d8db3f43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 912a4aa1baf9b33cb47603a3a1e3adea1f54f609894558d40778e0d680c52cc30f251daf46d99ff79021435ee8c82710e9aa7418488f76398dc72bc23ac4d9ab
|
7
|
+
data.tar.gz: c404b4853b0fcbbda9a1ebc586e4cef4256de6a0d6a7b20cca7ffd1221f1725c42aa7443478423b38f74c6654130d9274dcd3799b60a0cfde97fd8edef1644c5
|
@@ -307,6 +307,7 @@ module Aws::ElasticBeanstalk
|
|
307
307
|
# @return [Types::EnvironmentDescriptionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
308
308
|
#
|
309
309
|
# * {Types::EnvironmentDescriptionsMessage#environments #environments} => Array<Types::EnvironmentDescription>
|
310
|
+
# * {Types::EnvironmentDescriptionsMessage#next_token #next_token} => String
|
310
311
|
#
|
311
312
|
# @example Request syntax with placeholder values
|
312
313
|
#
|
@@ -346,6 +347,8 @@ module Aws::ElasticBeanstalk
|
|
346
347
|
# resp.environments[0].environment_links #=> Array
|
347
348
|
# resp.environments[0].environment_links[0].link_name #=> String
|
348
349
|
# resp.environments[0].environment_links[0].environment_name #=> String
|
350
|
+
# resp.environments[0].environment_arn #=> String
|
351
|
+
# resp.next_token #=> String
|
349
352
|
#
|
350
353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ComposeEnvironments AWS API Documentation
|
351
354
|
#
|
@@ -771,9 +774,9 @@ module Aws::ElasticBeanstalk
|
|
771
774
|
#
|
772
775
|
# Constraint: Must be from 4 to 40 characters in length. The name can
|
773
776
|
# contain only letters, numbers, and hyphens. It cannot start or end
|
774
|
-
# with a hyphen. This name must be unique
|
775
|
-
# specified name already exists
|
776
|
-
# `InvalidParameterValue` error.
|
777
|
+
# with a hyphen. This name must be unique within a region in your
|
778
|
+
# account. If the specified name already exists in the region, AWS
|
779
|
+
# Elastic Beanstalk returns an `InvalidParameterValue` error.
|
777
780
|
#
|
778
781
|
# Default: If the CNAME parameter is not specified, the environment name
|
779
782
|
# becomes part of the CNAME, and therefore part of the visible URL for
|
@@ -824,7 +827,7 @@ module Aws::ElasticBeanstalk
|
|
824
827
|
# values associated with the specified solution stack.
|
825
828
|
#
|
826
829
|
# @option params [String] :platform_arn
|
827
|
-
# The ARN of the
|
830
|
+
# The ARN of the platform.
|
828
831
|
#
|
829
832
|
# @option params [Array<Types::ConfigurationOptionSetting>] :option_settings
|
830
833
|
# If specified, AWS Elastic Beanstalk sets the specified configuration
|
@@ -857,6 +860,7 @@ module Aws::ElasticBeanstalk
|
|
857
860
|
# * {Types::EnvironmentDescription#resources #resources} => Types::EnvironmentResourcesDescription
|
858
861
|
# * {Types::EnvironmentDescription#tier #tier} => Types::EnvironmentTier
|
859
862
|
# * {Types::EnvironmentDescription#environment_links #environment_links} => Array<Types::EnvironmentLink>
|
863
|
+
# * {Types::EnvironmentDescription#environment_arn #environment_arn} => String
|
860
864
|
#
|
861
865
|
#
|
862
866
|
# @example Example: To create a new environment for an application
|
@@ -959,6 +963,7 @@ module Aws::ElasticBeanstalk
|
|
959
963
|
# resp.environment_links #=> Array
|
960
964
|
# resp.environment_links[0].link_name #=> String
|
961
965
|
# resp.environment_links[0].environment_name #=> String
|
966
|
+
# resp.environment_arn #=> String
|
962
967
|
#
|
963
968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironment AWS API Documentation
|
964
969
|
#
|
@@ -1293,11 +1298,18 @@ module Aws::ElasticBeanstalk
|
|
1293
1298
|
# Specify a version label to show a specific application version.
|
1294
1299
|
#
|
1295
1300
|
# @option params [Integer] :max_records
|
1296
|
-
# Specify a maximum number of application
|
1297
|
-
#
|
1301
|
+
# For a paginated request. Specify a maximum number of application
|
1302
|
+
# versions to include in each response.
|
1303
|
+
#
|
1304
|
+
# If no `MaxRecords` is specified, all available application versions
|
1305
|
+
# are retrieved in a single response.
|
1298
1306
|
#
|
1299
1307
|
# @option params [String] :next_token
|
1300
|
-
#
|
1308
|
+
# For a paginated request. Specify a token from a previous response page
|
1309
|
+
# to retrieve the next response page. All other parameter values must be
|
1310
|
+
# identical to the ones specified in the initial request.
|
1311
|
+
#
|
1312
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
1301
1313
|
#
|
1302
1314
|
# @return [Types::ApplicationVersionDescriptionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1303
1315
|
#
|
@@ -2059,9 +2071,24 @@ module Aws::ElasticBeanstalk
|
|
2059
2071
|
# If specified when `IncludeDeleted` is set to `true`, then environments
|
2060
2072
|
# deleted after this date are displayed.
|
2061
2073
|
#
|
2074
|
+
# @option params [Integer] :max_records
|
2075
|
+
# For a paginated request. Specify a maximum number of environments to
|
2076
|
+
# include in each response.
|
2077
|
+
#
|
2078
|
+
# If no `MaxRecords` is specified, all available environments are
|
2079
|
+
# retrieved in a single response.
|
2080
|
+
#
|
2081
|
+
# @option params [String] :next_token
|
2082
|
+
# For a paginated request. Specify a token from a previous response page
|
2083
|
+
# to retrieve the next response page. All other parameter values must be
|
2084
|
+
# identical to the ones specified in the initial request.
|
2085
|
+
#
|
2086
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
2087
|
+
#
|
2062
2088
|
# @return [Types::EnvironmentDescriptionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2063
2089
|
#
|
2064
2090
|
# * {Types::EnvironmentDescriptionsMessage#environments #environments} => Array<Types::EnvironmentDescription>
|
2091
|
+
# * {Types::EnvironmentDescriptionsMessage#next_token #next_token} => String
|
2065
2092
|
#
|
2066
2093
|
#
|
2067
2094
|
# @example Example: To view information about an environment
|
@@ -2108,6 +2135,8 @@ module Aws::ElasticBeanstalk
|
|
2108
2135
|
# environment_names: ["EnvironmentName"],
|
2109
2136
|
# include_deleted: false,
|
2110
2137
|
# included_deleted_back_to: Time.now,
|
2138
|
+
# max_records: 1,
|
2139
|
+
# next_token: "Token",
|
2111
2140
|
# })
|
2112
2141
|
#
|
2113
2142
|
# @example Response structure
|
@@ -2140,6 +2169,8 @@ module Aws::ElasticBeanstalk
|
|
2140
2169
|
# resp.environments[0].environment_links #=> Array
|
2141
2170
|
# resp.environments[0].environment_links[0].link_name #=> String
|
2142
2171
|
# resp.environments[0].environment_links[0].environment_name #=> String
|
2172
|
+
# resp.environments[0].environment_arn #=> String
|
2173
|
+
# resp.next_token #=> String
|
2143
2174
|
#
|
2144
2175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironments AWS API Documentation
|
2145
2176
|
#
|
@@ -3001,6 +3032,7 @@ module Aws::ElasticBeanstalk
|
|
3001
3032
|
# * {Types::EnvironmentDescription#resources #resources} => Types::EnvironmentResourcesDescription
|
3002
3033
|
# * {Types::EnvironmentDescription#tier #tier} => Types::EnvironmentTier
|
3003
3034
|
# * {Types::EnvironmentDescription#environment_links #environment_links} => Array<Types::EnvironmentLink>
|
3035
|
+
# * {Types::EnvironmentDescription#environment_arn #environment_arn} => String
|
3004
3036
|
#
|
3005
3037
|
#
|
3006
3038
|
# @example Example: To terminate an environment
|
@@ -3069,6 +3101,7 @@ module Aws::ElasticBeanstalk
|
|
3069
3101
|
# resp.environment_links #=> Array
|
3070
3102
|
# resp.environment_links[0].link_name #=> String
|
3071
3103
|
# resp.environment_links[0].environment_name #=> String
|
3104
|
+
# resp.environment_arn #=> String
|
3072
3105
|
#
|
3073
3106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TerminateEnvironment AWS API Documentation
|
3074
3107
|
#
|
@@ -3535,6 +3568,7 @@ module Aws::ElasticBeanstalk
|
|
3535
3568
|
# * {Types::EnvironmentDescription#resources #resources} => Types::EnvironmentResourcesDescription
|
3536
3569
|
# * {Types::EnvironmentDescription#tier #tier} => Types::EnvironmentTier
|
3537
3570
|
# * {Types::EnvironmentDescription#environment_links #environment_links} => Array<Types::EnvironmentLink>
|
3571
|
+
# * {Types::EnvironmentDescription#environment_arn #environment_arn} => String
|
3538
3572
|
#
|
3539
3573
|
#
|
3540
3574
|
# @example Example: To update an environment to a new version
|
@@ -3680,6 +3714,7 @@ module Aws::ElasticBeanstalk
|
|
3680
3714
|
# resp.environment_links #=> Array
|
3681
3715
|
# resp.environment_links[0].link_name #=> String
|
3682
3716
|
# resp.environment_links[0].environment_name #=> String
|
3717
|
+
# resp.environment_arn #=> String
|
3683
3718
|
#
|
3684
3719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateEnvironment AWS API Documentation
|
3685
3720
|
#
|
@@ -3789,7 +3824,7 @@ module Aws::ElasticBeanstalk
|
|
3789
3824
|
params: params,
|
3790
3825
|
config: config)
|
3791
3826
|
context[:gem_name] = 'aws-sdk-elasticbeanstalk'
|
3792
|
-
context[:gem_version] = '1.0.0.
|
3827
|
+
context[:gem_version] = '1.0.0.rc14'
|
3793
3828
|
Seahorse::Client::Request.new(handlers, context)
|
3794
3829
|
end
|
3795
3830
|
|
@@ -114,6 +114,7 @@ module Aws::ElasticBeanstalk
|
|
114
114
|
Ec2InstanceId = Shapes::StringShape.new(name: 'Ec2InstanceId')
|
115
115
|
ElasticBeanstalkServiceException = Shapes::StructureShape.new(name: 'ElasticBeanstalkServiceException')
|
116
116
|
EndpointURL = Shapes::StringShape.new(name: 'EndpointURL')
|
117
|
+
EnvironmentArn = Shapes::StringShape.new(name: 'EnvironmentArn')
|
117
118
|
EnvironmentDescription = Shapes::StructureShape.new(name: 'EnvironmentDescription')
|
118
119
|
EnvironmentDescriptionsList = Shapes::ListShape.new(name: 'EnvironmentDescriptionsList')
|
119
120
|
EnvironmentDescriptionsMessage = Shapes::StructureShape.new(name: 'EnvironmentDescriptionsMessage')
|
@@ -613,6 +614,8 @@ module Aws::ElasticBeanstalk
|
|
613
614
|
DescribeEnvironmentsMessage.add_member(:environment_names, Shapes::ShapeRef.new(shape: EnvironmentNamesList, location_name: "EnvironmentNames"))
|
614
615
|
DescribeEnvironmentsMessage.add_member(:include_deleted, Shapes::ShapeRef.new(shape: IncludeDeleted, location_name: "IncludeDeleted"))
|
615
616
|
DescribeEnvironmentsMessage.add_member(:included_deleted_back_to, Shapes::ShapeRef.new(shape: IncludeDeletedBackTo, location_name: "IncludedDeletedBackTo"))
|
617
|
+
DescribeEnvironmentsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
618
|
+
DescribeEnvironmentsMessage.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
616
619
|
DescribeEnvironmentsMessage.struct_class = Types::DescribeEnvironmentsMessage
|
617
620
|
|
618
621
|
DescribeEventsMessage.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "ApplicationName"))
|
@@ -665,11 +668,13 @@ module Aws::ElasticBeanstalk
|
|
665
668
|
EnvironmentDescription.add_member(:resources, Shapes::ShapeRef.new(shape: EnvironmentResourcesDescription, location_name: "Resources"))
|
666
669
|
EnvironmentDescription.add_member(:tier, Shapes::ShapeRef.new(shape: EnvironmentTier, location_name: "Tier"))
|
667
670
|
EnvironmentDescription.add_member(:environment_links, Shapes::ShapeRef.new(shape: EnvironmentLinks, location_name: "EnvironmentLinks"))
|
671
|
+
EnvironmentDescription.add_member(:environment_arn, Shapes::ShapeRef.new(shape: EnvironmentArn, location_name: "EnvironmentArn"))
|
668
672
|
EnvironmentDescription.struct_class = Types::EnvironmentDescription
|
669
673
|
|
670
674
|
EnvironmentDescriptionsList.member = Shapes::ShapeRef.new(shape: EnvironmentDescription)
|
671
675
|
|
672
676
|
EnvironmentDescriptionsMessage.add_member(:environments, Shapes::ShapeRef.new(shape: EnvironmentDescriptionsList, location_name: "Environments"))
|
677
|
+
EnvironmentDescriptionsMessage.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
673
678
|
EnvironmentDescriptionsMessage.struct_class = Types::EnvironmentDescriptionsMessage
|
674
679
|
|
675
680
|
EnvironmentHealthAttributes.member = Shapes::ShapeRef.new(shape: EnvironmentHealthAttribute)
|
@@ -274,8 +274,8 @@ module Aws::ElasticBeanstalk
|
|
274
274
|
# @return [Array<Types::ApplicationVersionDescription>]
|
275
275
|
#
|
276
276
|
# @!attribute [rw] next_token
|
277
|
-
#
|
278
|
-
# request to get the next page.
|
277
|
+
# In a paginated request, the token that you can pass in a subsequent
|
278
|
+
# request to get the next response page.
|
279
279
|
# @return [String]
|
280
280
|
#
|
281
281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationVersionDescriptionsMessage AWS API Documentation
|
@@ -775,7 +775,7 @@ module Aws::ElasticBeanstalk
|
|
775
775
|
# @return [String]
|
776
776
|
#
|
777
777
|
# @!attribute [rw] platform_arn
|
778
|
-
# The ARN of the
|
778
|
+
# The ARN of the platform.
|
779
779
|
# @return [String]
|
780
780
|
#
|
781
781
|
# @!attribute [rw] options
|
@@ -798,7 +798,7 @@ module Aws::ElasticBeanstalk
|
|
798
798
|
# @return [String]
|
799
799
|
#
|
800
800
|
# @!attribute [rw] platform_arn
|
801
|
-
# The ARN of the
|
801
|
+
# The ARN of the platform.
|
802
802
|
# @return [String]
|
803
803
|
#
|
804
804
|
# @!attribute [rw] application_name
|
@@ -1206,9 +1206,9 @@ module Aws::ElasticBeanstalk
|
|
1206
1206
|
#
|
1207
1207
|
# Constraint: Must be from 4 to 40 characters in length. The name can
|
1208
1208
|
# contain only letters, numbers, and hyphens. It cannot start or end
|
1209
|
-
# with a hyphen. This name must be unique
|
1210
|
-
# specified name already exists
|
1211
|
-
# `InvalidParameterValue` error.
|
1209
|
+
# with a hyphen. This name must be unique within a region in your
|
1210
|
+
# account. If the specified name already exists in the region, AWS
|
1211
|
+
# Elastic Beanstalk returns an `InvalidParameterValue` error.
|
1212
1212
|
#
|
1213
1213
|
# Default: If the CNAME parameter is not specified, the environment
|
1214
1214
|
# name becomes part of the CNAME, and therefore part of the visible
|
@@ -1269,7 +1269,7 @@ module Aws::ElasticBeanstalk
|
|
1269
1269
|
# @return [String]
|
1270
1270
|
#
|
1271
1271
|
# @!attribute [rw] platform_arn
|
1272
|
-
# The ARN of the
|
1272
|
+
# The ARN of the platform.
|
1273
1273
|
# @return [String]
|
1274
1274
|
#
|
1275
1275
|
# @!attribute [rw] option_settings
|
@@ -1571,7 +1571,7 @@ module Aws::ElasticBeanstalk
|
|
1571
1571
|
# @return [String]
|
1572
1572
|
#
|
1573
1573
|
# @!attribute [rw] deployment_time
|
1574
|
-
# For in-progress deployments, the time that the
|
1574
|
+
# For in-progress deployments, the time that the deployment started.
|
1575
1575
|
#
|
1576
1576
|
# For completed deployments, the time that the deployment ended.
|
1577
1577
|
# @return [Time]
|
@@ -1608,13 +1608,19 @@ module Aws::ElasticBeanstalk
|
|
1608
1608
|
# @return [Array<String>]
|
1609
1609
|
#
|
1610
1610
|
# @!attribute [rw] max_records
|
1611
|
-
# Specify a maximum number of application
|
1612
|
-
#
|
1611
|
+
# For a paginated request. Specify a maximum number of application
|
1612
|
+
# versions to include in each response.
|
1613
|
+
#
|
1614
|
+
# If no `MaxRecords` is specified, all available application versions
|
1615
|
+
# are retrieved in a single response.
|
1613
1616
|
# @return [Integer]
|
1614
1617
|
#
|
1615
1618
|
# @!attribute [rw] next_token
|
1616
|
-
#
|
1617
|
-
#
|
1619
|
+
# For a paginated request. Specify a token from a previous response
|
1620
|
+
# page to retrieve the next response page. All other parameter values
|
1621
|
+
# must be identical to the ones specified in the initial request.
|
1622
|
+
#
|
1623
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
1618
1624
|
# @return [String]
|
1619
1625
|
#
|
1620
1626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplicationVersionsMessage AWS API Documentation
|
@@ -2002,6 +2008,8 @@ module Aws::ElasticBeanstalk
|
|
2002
2008
|
# environment_names: ["EnvironmentName"],
|
2003
2009
|
# include_deleted: false,
|
2004
2010
|
# included_deleted_back_to: Time.now,
|
2011
|
+
# max_records: 1,
|
2012
|
+
# next_token: "Token",
|
2005
2013
|
# }
|
2006
2014
|
#
|
2007
2015
|
# @!attribute [rw] application_name
|
@@ -2040,6 +2048,22 @@ module Aws::ElasticBeanstalk
|
|
2040
2048
|
# environments deleted after this date are displayed.
|
2041
2049
|
# @return [Time]
|
2042
2050
|
#
|
2051
|
+
# @!attribute [rw] max_records
|
2052
|
+
# For a paginated request. Specify a maximum number of environments to
|
2053
|
+
# include in each response.
|
2054
|
+
#
|
2055
|
+
# If no `MaxRecords` is specified, all available environments are
|
2056
|
+
# retrieved in a single response.
|
2057
|
+
# @return [Integer]
|
2058
|
+
#
|
2059
|
+
# @!attribute [rw] next_token
|
2060
|
+
# For a paginated request. Specify a token from a previous response
|
2061
|
+
# page to retrieve the next response page. All other parameter values
|
2062
|
+
# must be identical to the ones specified in the initial request.
|
2063
|
+
#
|
2064
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
2065
|
+
# @return [String]
|
2066
|
+
#
|
2043
2067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentsMessage AWS API Documentation
|
2044
2068
|
#
|
2045
2069
|
class DescribeEnvironmentsMessage < Struct.new(
|
@@ -2048,7 +2072,9 @@ module Aws::ElasticBeanstalk
|
|
2048
2072
|
:environment_ids,
|
2049
2073
|
:environment_names,
|
2050
2074
|
:include_deleted,
|
2051
|
-
:included_deleted_back_to
|
2075
|
+
:included_deleted_back_to,
|
2076
|
+
:max_records,
|
2077
|
+
:next_token)
|
2052
2078
|
include Aws::Structure
|
2053
2079
|
end
|
2054
2080
|
|
@@ -2267,7 +2293,7 @@ module Aws::ElasticBeanstalk
|
|
2267
2293
|
# @return [String]
|
2268
2294
|
#
|
2269
2295
|
# @!attribute [rw] platform_arn
|
2270
|
-
# The ARN of the
|
2296
|
+
# The ARN of the platform.
|
2271
2297
|
# @return [String]
|
2272
2298
|
#
|
2273
2299
|
# @!attribute [rw] template_name
|
@@ -2365,6 +2391,11 @@ module Aws::ElasticBeanstalk
|
|
2365
2391
|
# A list of links to other environments in the same group.
|
2366
2392
|
# @return [Array<Types::EnvironmentLink>]
|
2367
2393
|
#
|
2394
|
+
# @!attribute [rw] environment_arn
|
2395
|
+
# The environment's Amazon Resource Name (ARN), which can be used in
|
2396
|
+
# other API reuqests that require an ARN.
|
2397
|
+
# @return [String]
|
2398
|
+
#
|
2368
2399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentDescription AWS API Documentation
|
2369
2400
|
#
|
2370
2401
|
class EnvironmentDescription < Struct.new(
|
@@ -2386,7 +2417,8 @@ module Aws::ElasticBeanstalk
|
|
2386
2417
|
:health_status,
|
2387
2418
|
:resources,
|
2388
2419
|
:tier,
|
2389
|
-
:environment_links
|
2420
|
+
:environment_links,
|
2421
|
+
:environment_arn)
|
2390
2422
|
include Aws::Structure
|
2391
2423
|
end
|
2392
2424
|
|
@@ -2396,10 +2428,16 @@ module Aws::ElasticBeanstalk
|
|
2396
2428
|
# Returns an EnvironmentDescription list.
|
2397
2429
|
# @return [Array<Types::EnvironmentDescription>]
|
2398
2430
|
#
|
2431
|
+
# @!attribute [rw] next_token
|
2432
|
+
# In a paginated request, the token that you can pass in a subsequent
|
2433
|
+
# request to get the next response page.
|
2434
|
+
# @return [String]
|
2435
|
+
#
|
2399
2436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentDescriptionsMessage AWS API Documentation
|
2400
2437
|
#
|
2401
2438
|
class EnvironmentDescriptionsMessage < Struct.new(
|
2402
|
-
:environments
|
2439
|
+
:environments,
|
2440
|
+
:next_token)
|
2403
2441
|
include Aws::Structure
|
2404
2442
|
end
|
2405
2443
|
|
@@ -2587,7 +2625,7 @@ module Aws::ElasticBeanstalk
|
|
2587
2625
|
# @return [String]
|
2588
2626
|
#
|
2589
2627
|
# @!attribute [rw] platform_arn
|
2590
|
-
# The ARN of the
|
2628
|
+
# The ARN of the platform.
|
2591
2629
|
# @return [String]
|
2592
2630
|
#
|
2593
2631
|
# @!attribute [rw] request_id
|
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.0.0.
|
4
|
+
version: 1.0.0.rc14
|
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: 2017-08-
|
11
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|