aws-sdk-elasticbeanstalk 1.25.0 → 1.30.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 +5 -5
- data/lib/aws-sdk-elasticbeanstalk.rb +7 -4
- data/lib/aws-sdk-elasticbeanstalk/client.rb +342 -115
- data/lib/aws-sdk-elasticbeanstalk/client_api.rb +99 -0
- data/lib/aws-sdk-elasticbeanstalk/errors.rb +220 -0
- data/lib/aws-sdk-elasticbeanstalk/resource.rb +1 -0
- data/lib/aws-sdk-elasticbeanstalk/types.rb +560 -149
- metadata +5 -5
@@ -145,7 +145,7 @@ module Aws::ElasticBeanstalk
|
|
145
145
|
|
146
146
|
# The resource lifecycle configuration for an application. Defines
|
147
147
|
# lifecycle settings for resources that belong to the application, and
|
148
|
-
# the service role that Elastic Beanstalk assumes in order to apply
|
148
|
+
# the service role that AWS Elastic Beanstalk assumes in order to apply
|
149
149
|
# lifecycle settings. The version lifecycle configuration defines
|
150
150
|
# lifecycle settings for application versions.
|
151
151
|
#
|
@@ -184,7 +184,7 @@ module Aws::ElasticBeanstalk
|
|
184
184
|
# @return [String]
|
185
185
|
#
|
186
186
|
# @!attribute [rw] version_lifecycle_config
|
187
|
-
#
|
187
|
+
# Defines lifecycle settings for application versions.
|
188
188
|
# @return [Types::ApplicationVersionLifecycleConfig]
|
189
189
|
#
|
190
190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationResourceLifecycleConfig AWS API Documentation
|
@@ -630,6 +630,12 @@ module Aws::ElasticBeanstalk
|
|
630
630
|
include Aws::Structure
|
631
631
|
end
|
632
632
|
|
633
|
+
# AWS CodeBuild is not available in the specified region.
|
634
|
+
#
|
635
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CodeBuildNotInServiceRegionException AWS API Documentation
|
636
|
+
#
|
637
|
+
class CodeBuildNotInServiceRegionException < Aws::EmptyStructure; end
|
638
|
+
|
633
639
|
# Request to create or update a group of environments.
|
634
640
|
#
|
635
641
|
# @note When making an API call, you may pass ComposeEnvironmentsMessage
|
@@ -781,8 +787,9 @@ module Aws::ElasticBeanstalk
|
|
781
787
|
end
|
782
788
|
|
783
789
|
# A specification identifying an individual configuration option along
|
784
|
-
# with its current value. For a list of possible
|
785
|
-
# [Option Values][1] in the *AWS Elastic Beanstalk Developer
|
790
|
+
# with its current value. For a list of possible namespaces and option
|
791
|
+
# values, see [Option Values][1] in the *AWS Elastic Beanstalk Developer
|
792
|
+
# Guide*.
|
786
793
|
#
|
787
794
|
#
|
788
795
|
#
|
@@ -799,12 +806,12 @@ module Aws::ElasticBeanstalk
|
|
799
806
|
# }
|
800
807
|
#
|
801
808
|
# @!attribute [rw] resource_name
|
802
|
-
# A unique resource name for
|
803
|
-
# option.
|
809
|
+
# A unique resource name for the option setting. Use it for a
|
810
|
+
# time–based scaling configuration option.
|
804
811
|
# @return [String]
|
805
812
|
#
|
806
813
|
# @!attribute [rw] namespace
|
807
|
-
# A unique namespace
|
814
|
+
# A unique namespace that identifies the option's associated AWS
|
808
815
|
# resource.
|
809
816
|
# @return [String]
|
810
817
|
#
|
@@ -834,7 +841,7 @@ module Aws::ElasticBeanstalk
|
|
834
841
|
# @return [String]
|
835
842
|
#
|
836
843
|
# @!attribute [rw] platform_arn
|
837
|
-
# The ARN of the platform.
|
844
|
+
# The ARN of the platform version.
|
838
845
|
# @return [String]
|
839
846
|
#
|
840
847
|
# @!attribute [rw] options
|
@@ -857,7 +864,7 @@ module Aws::ElasticBeanstalk
|
|
857
864
|
# @return [String]
|
858
865
|
#
|
859
866
|
# @!attribute [rw] platform_arn
|
860
|
-
# The ARN of the platform.
|
867
|
+
# The ARN of the platform version.
|
861
868
|
# @return [String]
|
862
869
|
#
|
863
870
|
# @!attribute [rw] application_name
|
@@ -985,19 +992,15 @@ module Aws::ElasticBeanstalk
|
|
985
992
|
# }
|
986
993
|
#
|
987
994
|
# @!attribute [rw] application_name
|
988
|
-
# The name of the application.
|
989
|
-
#
|
990
|
-
# Constraint: This name must be unique within your account. If the
|
991
|
-
# specified name already exists, the action returns an
|
992
|
-
# `InvalidParameterValue` error.
|
995
|
+
# The name of the application. Must be unique within your account.
|
993
996
|
# @return [String]
|
994
997
|
#
|
995
998
|
# @!attribute [rw] description
|
996
|
-
#
|
999
|
+
# Your description of the application.
|
997
1000
|
# @return [String]
|
998
1001
|
#
|
999
1002
|
# @!attribute [rw] resource_lifecycle_config
|
1000
|
-
#
|
1003
|
+
# Specifies an application resource lifecycle configuration to prevent
|
1001
1004
|
# your application from accumulating too many versions.
|
1002
1005
|
# @return [Types::ApplicationResourceLifecycleConfig]
|
1003
1006
|
#
|
@@ -1068,7 +1071,7 @@ module Aws::ElasticBeanstalk
|
|
1068
1071
|
# @return [String]
|
1069
1072
|
#
|
1070
1073
|
# @!attribute [rw] description
|
1071
|
-
#
|
1074
|
+
# A description of this application version.
|
1072
1075
|
# @return [String]
|
1073
1076
|
#
|
1074
1077
|
# @!attribute [rw] source_build_information
|
@@ -1173,74 +1176,91 @@ module Aws::ElasticBeanstalk
|
|
1173
1176
|
# }
|
1174
1177
|
#
|
1175
1178
|
# @!attribute [rw] application_name
|
1176
|
-
# The name of the application to associate with this
|
1177
|
-
# template.
|
1178
|
-
# Beanstalk returns an `InvalidParameterValue` error.
|
1179
|
+
# The name of the Elastic Beanstalk application to associate with this
|
1180
|
+
# configuration template.
|
1179
1181
|
# @return [String]
|
1180
1182
|
#
|
1181
1183
|
# @!attribute [rw] template_name
|
1182
1184
|
# The name of the configuration template.
|
1183
1185
|
#
|
1184
1186
|
# Constraint: This name must be unique per application.
|
1185
|
-
#
|
1186
|
-
# Default: If a configuration template already exists with this name,
|
1187
|
-
# AWS Elastic Beanstalk returns an `InvalidParameterValue` error.
|
1188
1187
|
# @return [String]
|
1189
1188
|
#
|
1190
1189
|
# @!attribute [rw] solution_stack_name
|
1191
|
-
# The name of
|
1192
|
-
#
|
1193
|
-
#
|
1194
|
-
#
|
1195
|
-
#
|
1190
|
+
# The name of an Elastic Beanstalk solution stack (platform version)
|
1191
|
+
# that this configuration uses. For example, `64bit Amazon Linux
|
1192
|
+
# 2013.09 running Tomcat 7 Java 7`. A solution stack specifies the
|
1193
|
+
# operating system, runtime, and application server for a
|
1194
|
+
# configuration template. It also determines the set of configuration
|
1195
|
+
# options as well as the possible and default values. For more
|
1196
|
+
# information, see [Supported Platforms][1] in the *AWS Elastic
|
1197
|
+
# Beanstalk Developer Guide*.
|
1196
1198
|
#
|
1197
|
-
#
|
1198
|
-
#
|
1199
|
+
# You must specify `SolutionStackName` if you don't specify
|
1200
|
+
# `PlatformArn`, `EnvironmentId`, or `SourceConfiguration`.
|
1199
1201
|
#
|
1200
|
-
#
|
1201
|
-
#
|
1202
|
-
# `InvalidParameterValue` error.
|
1202
|
+
# Use the [ `ListAvailableSolutionStacks` ][2] API to obtain a list of
|
1203
|
+
# available solution stacks.
|
1203
1204
|
#
|
1204
|
-
#
|
1205
|
-
#
|
1206
|
-
#
|
1205
|
+
#
|
1206
|
+
#
|
1207
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
|
1208
|
+
# [2]: https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_ListAvailableSolutionStacks.html
|
1207
1209
|
# @return [String]
|
1208
1210
|
#
|
1209
1211
|
# @!attribute [rw] platform_arn
|
1210
|
-
# The ARN of the custom platform.
|
1212
|
+
# The Amazon Resource Name (ARN) of the custom platform. For more
|
1213
|
+
# information, see [ Custom Platforms][1] in the *AWS Elastic
|
1214
|
+
# Beanstalk Developer Guide*.
|
1215
|
+
#
|
1216
|
+
# <note markdown="1"> If you specify `PlatformArn`, then don't specify
|
1217
|
+
# `SolutionStackName`.
|
1218
|
+
#
|
1219
|
+
# </note>
|
1220
|
+
#
|
1221
|
+
#
|
1222
|
+
#
|
1223
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html
|
1211
1224
|
# @return [String]
|
1212
1225
|
#
|
1213
1226
|
# @!attribute [rw] source_configuration
|
1214
|
-
#
|
1215
|
-
#
|
1216
|
-
# configuration.
|
1227
|
+
# An Elastic Beanstalk configuration template to base this one on. If
|
1228
|
+
# specified, Elastic Beanstalk uses the configuration values from the
|
1229
|
+
# specified configuration template to create a new configuration.
|
1217
1230
|
#
|
1218
|
-
# Values specified in
|
1219
|
-
#
|
1231
|
+
# Values specified in `OptionSettings` override any values obtained
|
1232
|
+
# from the `SourceConfiguration`.
|
1220
1233
|
#
|
1221
|
-
#
|
1222
|
-
# `
|
1234
|
+
# You must specify `SourceConfiguration` if you don't specify
|
1235
|
+
# `PlatformArn`, `EnvironmentId`, or `SolutionStackName`.
|
1223
1236
|
#
|
1224
|
-
# Constraint: If both
|
1225
|
-
#
|
1226
|
-
#
|
1227
|
-
# stack name or else AWS Elastic Beanstalk returns an
|
1228
|
-
# `InvalidParameterCombination` error.
|
1237
|
+
# Constraint: If both solution stack name and source configuration are
|
1238
|
+
# specified, the solution stack of the source configuration template
|
1239
|
+
# must match the specified solution stack name.
|
1229
1240
|
# @return [Types::SourceConfiguration]
|
1230
1241
|
#
|
1231
1242
|
# @!attribute [rw] environment_id
|
1232
|
-
# The ID of
|
1243
|
+
# The ID of an environment whose settings you want to use to create
|
1244
|
+
# the configuration template. You must specify `EnvironmentId` if you
|
1245
|
+
# don't specify `PlatformArn`, `SolutionStackName`, or
|
1246
|
+
# `SourceConfiguration`.
|
1233
1247
|
# @return [String]
|
1234
1248
|
#
|
1235
1249
|
# @!attribute [rw] description
|
1236
|
-
#
|
1250
|
+
# An optional description for this configuration.
|
1237
1251
|
# @return [String]
|
1238
1252
|
#
|
1239
1253
|
# @!attribute [rw] option_settings
|
1240
|
-
#
|
1241
|
-
#
|
1254
|
+
# Option values for the Elastic Beanstalk configuration, such as the
|
1255
|
+
# instance type. If specified, these values override the values
|
1242
1256
|
# obtained from the solution stack or the source configuration
|
1243
|
-
# template.
|
1257
|
+
# template. For a complete list of Elastic Beanstalk configuration
|
1258
|
+
# options, see [Option Values][1] in the *AWS Elastic Beanstalk
|
1259
|
+
# Developer Guide*.
|
1260
|
+
#
|
1261
|
+
#
|
1262
|
+
#
|
1263
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html
|
1244
1264
|
# @return [Array<Types::ConfigurationOptionSetting>]
|
1245
1265
|
#
|
1246
1266
|
# @!attribute [rw] tags
|
@@ -1304,24 +1324,20 @@ module Aws::ElasticBeanstalk
|
|
1304
1324
|
# }
|
1305
1325
|
#
|
1306
1326
|
# @!attribute [rw] application_name
|
1307
|
-
# The name of the application that
|
1308
|
-
#
|
1309
|
-
#
|
1310
|
-
# If no application is found with this name, `CreateEnvironment`
|
1311
|
-
# returns an `InvalidParameterValue` error.
|
1327
|
+
# The name of the application that is associated with this
|
1328
|
+
# environment.
|
1312
1329
|
# @return [String]
|
1313
1330
|
#
|
1314
1331
|
# @!attribute [rw] environment_name
|
1315
|
-
# A unique name for the
|
1316
|
-
# application URL.
|
1332
|
+
# A unique name for the environment.
|
1317
1333
|
#
|
1318
1334
|
# Constraint: Must be from 4 to 40 characters in length. The name can
|
1319
|
-
# contain only letters, numbers, and hyphens. It
|
1335
|
+
# contain only letters, numbers, and hyphens. It can't start or end
|
1320
1336
|
# with a hyphen. This name must be unique within a region in your
|
1321
|
-
# account. If the specified name already exists in the region,
|
1322
|
-
#
|
1337
|
+
# account. If the specified name already exists in the region, Elastic
|
1338
|
+
# Beanstalk returns an `InvalidParameterValue` error.
|
1323
1339
|
#
|
1324
|
-
#
|
1340
|
+
# If you don't specify the `CNAMEPrefix` parameter, the environment
|
1325
1341
|
# name becomes part of the CNAME, and therefore part of the visible
|
1326
1342
|
# URL for your application.
|
1327
1343
|
# @return [String]
|
@@ -1338,18 +1354,22 @@ module Aws::ElasticBeanstalk
|
|
1338
1354
|
# @return [String]
|
1339
1355
|
#
|
1340
1356
|
# @!attribute [rw] description
|
1341
|
-
#
|
1357
|
+
# Your description for this environment.
|
1342
1358
|
# @return [String]
|
1343
1359
|
#
|
1344
1360
|
# @!attribute [rw] cname_prefix
|
1345
1361
|
# If specified, the environment attempts to use this value as the
|
1346
|
-
# prefix for the CNAME
|
1347
|
-
#
|
1348
|
-
# environment name.
|
1362
|
+
# prefix for the CNAME in your Elastic Beanstalk environment URL. If
|
1363
|
+
# not specified, the CNAME is generated automatically by appending a
|
1364
|
+
# random alphanumeric string to the environment name.
|
1349
1365
|
# @return [String]
|
1350
1366
|
#
|
1351
1367
|
# @!attribute [rw] tier
|
1352
|
-
#
|
1368
|
+
# Specifies the tier to use in creating this environment. The
|
1369
|
+
# environment tier that you choose determines whether Elastic
|
1370
|
+
# Beanstalk provisions resources to support a web application that
|
1371
|
+
# handles HTTP(S) requests or a web application that handles
|
1372
|
+
# background-processing tasks.
|
1353
1373
|
# @return [Types::EnvironmentTier]
|
1354
1374
|
#
|
1355
1375
|
# @!attribute [rw] tags
|
@@ -1359,35 +1379,50 @@ module Aws::ElasticBeanstalk
|
|
1359
1379
|
# @!attribute [rw] version_label
|
1360
1380
|
# The name of the application version to deploy.
|
1361
1381
|
#
|
1362
|
-
# If
|
1363
|
-
#
|
1364
|
-
# `InvalidParameterValue` error.
|
1365
|
-
#
|
1366
|
-
# Default: If not specified, AWS Elastic Beanstalk attempts to launch
|
1367
|
-
# the sample application in the container.
|
1382
|
+
# Default: If not specified, Elastic Beanstalk attempts to deploy the
|
1383
|
+
# sample application.
|
1368
1384
|
# @return [String]
|
1369
1385
|
#
|
1370
1386
|
# @!attribute [rw] template_name
|
1371
|
-
# The name of the configuration template to use
|
1372
|
-
#
|
1373
|
-
#
|
1387
|
+
# The name of the Elastic Beanstalk configuration template to use with
|
1388
|
+
# the environment.
|
1389
|
+
#
|
1390
|
+
# <note markdown="1"> If you specify `TemplateName`, then don't specify
|
1391
|
+
# `SolutionStackName`.
|
1392
|
+
#
|
1393
|
+
# </note>
|
1374
1394
|
# @return [String]
|
1375
1395
|
#
|
1376
1396
|
# @!attribute [rw] solution_stack_name
|
1377
|
-
#
|
1378
|
-
#
|
1379
|
-
# values associated with the
|
1397
|
+
# The name of an Elastic Beanstalk solution stack (platform version)
|
1398
|
+
# to use with the environment. If specified, Elastic Beanstalk sets
|
1399
|
+
# the configuration values to the default values associated with the
|
1400
|
+
# specified solution stack. For a list of current solution stacks, see
|
1401
|
+
# [Elastic Beanstalk Supported Platforms][1] in the *AWS Elastic
|
1402
|
+
# Beanstalk Platforms* guide.
|
1403
|
+
#
|
1404
|
+
# <note markdown="1"> If you specify `SolutionStackName`, don't specify `PlatformArn` or
|
1405
|
+
# `TemplateName`.
|
1380
1406
|
#
|
1381
|
-
#
|
1382
|
-
# Supported Platforms][1].
|
1407
|
+
# </note>
|
1383
1408
|
#
|
1384
1409
|
#
|
1385
1410
|
#
|
1386
|
-
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/
|
1411
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html
|
1387
1412
|
# @return [String]
|
1388
1413
|
#
|
1389
1414
|
# @!attribute [rw] platform_arn
|
1390
|
-
# The ARN of the platform
|
1415
|
+
# The Amazon Resource Name (ARN) of the custom platform to use with
|
1416
|
+
# the environment. For more information, see [ Custom Platforms][1] in
|
1417
|
+
# the *AWS Elastic Beanstalk Developer Guide*.
|
1418
|
+
#
|
1419
|
+
# <note markdown="1"> If you specify `PlatformArn`, don't specify `SolutionStackName`.
|
1420
|
+
#
|
1421
|
+
# </note>
|
1422
|
+
#
|
1423
|
+
#
|
1424
|
+
#
|
1425
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html
|
1391
1426
|
# @return [String]
|
1392
1427
|
#
|
1393
1428
|
# @!attribute [rw] option_settings
|
@@ -2270,7 +2305,9 @@ module Aws::ElasticBeanstalk
|
|
2270
2305
|
# @return [String]
|
2271
2306
|
#
|
2272
2307
|
# @!attribute [rw] platform_arn
|
2273
|
-
# The ARN of
|
2308
|
+
# The ARN of a custom platform version. If specified, AWS Elastic
|
2309
|
+
# Beanstalk restricts the returned descriptions to those associated
|
2310
|
+
# with this custom platform version.
|
2274
2311
|
# @return [String]
|
2275
2312
|
#
|
2276
2313
|
# @!attribute [rw] request_id
|
@@ -2398,7 +2435,7 @@ module Aws::ElasticBeanstalk
|
|
2398
2435
|
# }
|
2399
2436
|
#
|
2400
2437
|
# @!attribute [rw] platform_arn
|
2401
|
-
# The ARN of the version
|
2438
|
+
# The ARN of the platform version.
|
2402
2439
|
# @return [String]
|
2403
2440
|
#
|
2404
2441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersionRequest AWS API Documentation
|
@@ -2409,7 +2446,7 @@ module Aws::ElasticBeanstalk
|
|
2409
2446
|
end
|
2410
2447
|
|
2411
2448
|
# @!attribute [rw] platform_description
|
2412
|
-
# Detailed information about the version
|
2449
|
+
# Detailed information about the platform version.
|
2413
2450
|
# @return [Types::PlatformDescription]
|
2414
2451
|
#
|
2415
2452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersionResult AWS API Documentation
|
@@ -2455,7 +2492,7 @@ module Aws::ElasticBeanstalk
|
|
2455
2492
|
# @return [String]
|
2456
2493
|
#
|
2457
2494
|
# @!attribute [rw] platform_arn
|
2458
|
-
# The ARN of the platform.
|
2495
|
+
# The ARN of the platform version.
|
2459
2496
|
# @return [String]
|
2460
2497
|
#
|
2461
2498
|
# @!attribute [rw] template_name
|
@@ -2815,7 +2852,7 @@ module Aws::ElasticBeanstalk
|
|
2815
2852
|
# @return [String]
|
2816
2853
|
#
|
2817
2854
|
# @!attribute [rw] platform_arn
|
2818
|
-
# The ARN of the platform.
|
2855
|
+
# The ARN of the platform version.
|
2819
2856
|
# @return [String]
|
2820
2857
|
#
|
2821
2858
|
# @!attribute [rw] request_id
|
@@ -2934,6 +2971,20 @@ module Aws::ElasticBeanstalk
|
|
2934
2971
|
include Aws::Structure
|
2935
2972
|
end
|
2936
2973
|
|
2974
|
+
# The specified account does not have sufficient privileges for one or
|
2975
|
+
# more AWS services.
|
2976
|
+
#
|
2977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/InsufficientPrivilegesException AWS API Documentation
|
2978
|
+
#
|
2979
|
+
class InsufficientPrivilegesException < Aws::EmptyStructure; end
|
2980
|
+
|
2981
|
+
# One or more input parameters is not valid. Please correct the input
|
2982
|
+
# parameters and try the operation again.
|
2983
|
+
#
|
2984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/InvalidRequestException AWS API Documentation
|
2985
|
+
#
|
2986
|
+
class InvalidRequestException < Aws::EmptyStructure; end
|
2987
|
+
|
2937
2988
|
# Represents the average latency for the slowest X percent of requests
|
2938
2989
|
# over the last 10 seconds.
|
2939
2990
|
#
|
@@ -3036,6 +3087,101 @@ module Aws::ElasticBeanstalk
|
|
3036
3087
|
include Aws::Structure
|
3037
3088
|
end
|
3038
3089
|
|
3090
|
+
# @note When making an API call, you may pass ListPlatformBranchesRequest
|
3091
|
+
# data as a hash:
|
3092
|
+
#
|
3093
|
+
# {
|
3094
|
+
# filters: [
|
3095
|
+
# {
|
3096
|
+
# attribute: "SearchFilterAttribute",
|
3097
|
+
# operator: "SearchFilterOperator",
|
3098
|
+
# values: ["SearchFilterValue"],
|
3099
|
+
# },
|
3100
|
+
# ],
|
3101
|
+
# max_records: 1,
|
3102
|
+
# next_token: "Token",
|
3103
|
+
# }
|
3104
|
+
#
|
3105
|
+
# @!attribute [rw] filters
|
3106
|
+
# Criteria for restricting the resulting list of platform branches.
|
3107
|
+
# The filter is evaluated as a logical conjunction (AND) of the
|
3108
|
+
# separate `SearchFilter` terms.
|
3109
|
+
#
|
3110
|
+
# The following list shows valid attribute values for each of the
|
3111
|
+
# `SearchFilter` terms. Most operators take a single value. The `in`
|
3112
|
+
# and `not_in` operators can take multiple values.
|
3113
|
+
#
|
3114
|
+
# * `Attribute = BranchName`\:
|
3115
|
+
#
|
3116
|
+
# * `Operator`\: `=` \| `!=` \| `begins_with` \| `ends_with` \|
|
3117
|
+
# `contains` \| `in` \| `not_in`
|
3118
|
+
#
|
3119
|
+
# ^
|
3120
|
+
#
|
3121
|
+
# * `Attribute = LifecycleState`\:
|
3122
|
+
#
|
3123
|
+
# * `Operator`\: `=` \| `!=` \| `in` \| `not_in`
|
3124
|
+
#
|
3125
|
+
# * `Values`\: `beta` \| `supported` \| `deprecated` \| `retired`
|
3126
|
+
#
|
3127
|
+
# * `Attribute = PlatformName`\:
|
3128
|
+
#
|
3129
|
+
# * `Operator`\: `=` \| `!=` \| `begins_with` \| `ends_with` \|
|
3130
|
+
# `contains` \| `in` \| `not_in`
|
3131
|
+
#
|
3132
|
+
# ^
|
3133
|
+
#
|
3134
|
+
# * `Attribute = TierType`\:
|
3135
|
+
#
|
3136
|
+
# * `Operator`\: `=` \| `!=`
|
3137
|
+
#
|
3138
|
+
# * `Values`\: `WebServer/Standard` \| `Worker/SQS/HTTP`
|
3139
|
+
#
|
3140
|
+
# Array size: limited to 10 `SearchFilter` objects.
|
3141
|
+
#
|
3142
|
+
# Within each `SearchFilter` item, the `Values` array is limited to 10
|
3143
|
+
# items.
|
3144
|
+
# @return [Array<Types::SearchFilter>]
|
3145
|
+
#
|
3146
|
+
# @!attribute [rw] max_records
|
3147
|
+
# The maximum number of platform branch values returned in one call.
|
3148
|
+
# @return [Integer]
|
3149
|
+
#
|
3150
|
+
# @!attribute [rw] next_token
|
3151
|
+
# For a paginated request. Specify a token from a previous response
|
3152
|
+
# page to retrieve the next response page. All other parameter values
|
3153
|
+
# must be identical to the ones specified in the initial request.
|
3154
|
+
#
|
3155
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
3156
|
+
# @return [String]
|
3157
|
+
#
|
3158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformBranchesRequest AWS API Documentation
|
3159
|
+
#
|
3160
|
+
class ListPlatformBranchesRequest < Struct.new(
|
3161
|
+
:filters,
|
3162
|
+
:max_records,
|
3163
|
+
:next_token)
|
3164
|
+
include Aws::Structure
|
3165
|
+
end
|
3166
|
+
|
3167
|
+
# @!attribute [rw] platform_branch_summary_list
|
3168
|
+
# Summary information about the platform branches.
|
3169
|
+
# @return [Array<Types::PlatformBranchSummary>]
|
3170
|
+
#
|
3171
|
+
# @!attribute [rw] next_token
|
3172
|
+
# In a paginated request, if this value isn't `null`, it's the token
|
3173
|
+
# that you can pass in a subsequent request to get the next response
|
3174
|
+
# page.
|
3175
|
+
# @return [String]
|
3176
|
+
#
|
3177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformBranchesResult AWS API Documentation
|
3178
|
+
#
|
3179
|
+
class ListPlatformBranchesResult < Struct.new(
|
3180
|
+
:platform_branch_summary_list,
|
3181
|
+
:next_token)
|
3182
|
+
include Aws::Structure
|
3183
|
+
end
|
3184
|
+
|
3039
3185
|
# @note When making an API call, you may pass ListPlatformVersionsRequest
|
3040
3186
|
# data as a hash:
|
3041
3187
|
#
|
@@ -3052,17 +3198,21 @@ module Aws::ElasticBeanstalk
|
|
3052
3198
|
# }
|
3053
3199
|
#
|
3054
3200
|
# @!attribute [rw] filters
|
3055
|
-
#
|
3056
|
-
#
|
3201
|
+
# Criteria for restricting the resulting list of platform versions.
|
3202
|
+
# The filter is interpreted as a logical conjunction (AND) of the
|
3203
|
+
# separate `PlatformFilter` terms.
|
3057
3204
|
# @return [Array<Types::PlatformFilter>]
|
3058
3205
|
#
|
3059
3206
|
# @!attribute [rw] max_records
|
3060
|
-
# The maximum number of platform values returned in one call.
|
3207
|
+
# The maximum number of platform version values returned in one call.
|
3061
3208
|
# @return [Integer]
|
3062
3209
|
#
|
3063
3210
|
# @!attribute [rw] next_token
|
3064
|
-
#
|
3065
|
-
#
|
3211
|
+
# For a paginated request. Specify a token from a previous response
|
3212
|
+
# page to retrieve the next response page. All other parameter values
|
3213
|
+
# must be identical to the ones specified in the initial request.
|
3214
|
+
#
|
3215
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
3066
3216
|
# @return [String]
|
3067
3217
|
#
|
3068
3218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersionsRequest AWS API Documentation
|
@@ -3075,13 +3225,13 @@ module Aws::ElasticBeanstalk
|
|
3075
3225
|
end
|
3076
3226
|
|
3077
3227
|
# @!attribute [rw] platform_summary_list
|
3078
|
-
#
|
3228
|
+
# Summary information about the platform versions.
|
3079
3229
|
# @return [Array<Types::PlatformSummary>]
|
3080
3230
|
#
|
3081
3231
|
# @!attribute [rw] next_token
|
3082
|
-
#
|
3083
|
-
#
|
3084
|
-
#
|
3232
|
+
# In a paginated request, if this value isn't `null`, it's the token
|
3233
|
+
# that you can pass in a subsequent request to get the next response
|
3234
|
+
# page.
|
3085
3235
|
# @return [String]
|
3086
3236
|
#
|
3087
3237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersionsResult AWS API Documentation
|
@@ -3103,7 +3253,7 @@ module Aws::ElasticBeanstalk
|
|
3103
3253
|
# The Amazon Resource Name (ARN) of the resouce for which a tag list
|
3104
3254
|
# is requested.
|
3105
3255
|
#
|
3106
|
-
# Must be the ARN of an Elastic Beanstalk
|
3256
|
+
# Must be the ARN of an Elastic Beanstalk resource.
|
3107
3257
|
# @return [String]
|
3108
3258
|
#
|
3109
3259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListTagsForResourceMessage AWS API Documentation
|
@@ -3250,6 +3400,12 @@ module Aws::ElasticBeanstalk
|
|
3250
3400
|
include Aws::Structure
|
3251
3401
|
end
|
3252
3402
|
|
3403
|
+
# Cannot modify the managed action in its current state.
|
3404
|
+
#
|
3405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ManagedActionInvalidStateException AWS API Documentation
|
3406
|
+
#
|
3407
|
+
class ManagedActionInvalidStateException < Aws::EmptyStructure; end
|
3408
|
+
|
3253
3409
|
# A lifecycle rule that deletes application versions after the specified
|
3254
3410
|
# number of days.
|
3255
3411
|
#
|
@@ -3318,6 +3474,13 @@ module Aws::ElasticBeanstalk
|
|
3318
3474
|
include Aws::Structure
|
3319
3475
|
end
|
3320
3476
|
|
3477
|
+
# Unable to perform the specified operation because another operation
|
3478
|
+
# that effects an element in this activity is already in progress.
|
3479
|
+
#
|
3480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/OperationInProgressException AWS API Documentation
|
3481
|
+
#
|
3482
|
+
class OperationInProgressException < Aws::EmptyStructure; end
|
3483
|
+
|
3321
3484
|
# A regular expression representing a restriction on a string
|
3322
3485
|
# configuration option value.
|
3323
3486
|
#
|
@@ -3372,80 +3535,143 @@ module Aws::ElasticBeanstalk
|
|
3372
3535
|
include Aws::Structure
|
3373
3536
|
end
|
3374
3537
|
|
3375
|
-
#
|
3538
|
+
# Summary information about a platform branch.
|
3539
|
+
#
|
3540
|
+
# @!attribute [rw] platform_name
|
3541
|
+
# The name of the platform to which this platform branch belongs.
|
3542
|
+
# @return [String]
|
3543
|
+
#
|
3544
|
+
# @!attribute [rw] branch_name
|
3545
|
+
# The name of the platform branch.
|
3546
|
+
# @return [String]
|
3547
|
+
#
|
3548
|
+
# @!attribute [rw] lifecycle_state
|
3549
|
+
# The support life cycle state of the platform branch.
|
3550
|
+
#
|
3551
|
+
# Possible values: `beta` \| `supported` \| `deprecated` \| `retired`
|
3552
|
+
# @return [String]
|
3553
|
+
#
|
3554
|
+
# @!attribute [rw] branch_order
|
3555
|
+
# An ordinal number that designates the order in which platform
|
3556
|
+
# branches have been added to a platform. This can be helpful, for
|
3557
|
+
# example, if your code calls the `ListPlatformBranches` action and
|
3558
|
+
# then displays a list of platform branches.
|
3559
|
+
#
|
3560
|
+
# A larger `BranchOrder` value designates a newer platform branch
|
3561
|
+
# within the platform.
|
3562
|
+
# @return [Integer]
|
3563
|
+
#
|
3564
|
+
# @!attribute [rw] supported_tier_list
|
3565
|
+
# The environment tiers that platform versions in this branch support.
|
3566
|
+
#
|
3567
|
+
# Possible values: `WebServer/Standard` \| `Worker/SQS/HTTP`
|
3568
|
+
# @return [Array<String>]
|
3569
|
+
#
|
3570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformBranchSummary AWS API Documentation
|
3571
|
+
#
|
3572
|
+
class PlatformBranchSummary < Struct.new(
|
3573
|
+
:platform_name,
|
3574
|
+
:branch_name,
|
3575
|
+
:lifecycle_state,
|
3576
|
+
:branch_order,
|
3577
|
+
:supported_tier_list)
|
3578
|
+
include Aws::Structure
|
3579
|
+
end
|
3580
|
+
|
3581
|
+
# Detailed information about a platform version.
|
3376
3582
|
#
|
3377
3583
|
# @!attribute [rw] platform_arn
|
3378
|
-
# The ARN of the platform.
|
3584
|
+
# The ARN of the platform version.
|
3379
3585
|
# @return [String]
|
3380
3586
|
#
|
3381
3587
|
# @!attribute [rw] platform_owner
|
3382
|
-
# The AWS account ID of the person who created the platform.
|
3588
|
+
# The AWS account ID of the person who created the platform version.
|
3383
3589
|
# @return [String]
|
3384
3590
|
#
|
3385
3591
|
# @!attribute [rw] platform_name
|
3386
|
-
# The name of the platform.
|
3592
|
+
# The name of the platform version.
|
3387
3593
|
# @return [String]
|
3388
3594
|
#
|
3389
3595
|
# @!attribute [rw] platform_version
|
3390
|
-
# The version of the platform.
|
3596
|
+
# The version of the platform version.
|
3391
3597
|
# @return [String]
|
3392
3598
|
#
|
3393
3599
|
# @!attribute [rw] solution_stack_name
|
3394
|
-
# The name of the solution stack used by the platform.
|
3600
|
+
# The name of the solution stack used by the platform version.
|
3395
3601
|
# @return [String]
|
3396
3602
|
#
|
3397
3603
|
# @!attribute [rw] platform_status
|
3398
|
-
# The status of the platform.
|
3604
|
+
# The status of the platform version.
|
3399
3605
|
# @return [String]
|
3400
3606
|
#
|
3401
3607
|
# @!attribute [rw] date_created
|
3402
|
-
# The date when the platform was created.
|
3608
|
+
# The date when the platform version was created.
|
3403
3609
|
# @return [Time]
|
3404
3610
|
#
|
3405
3611
|
# @!attribute [rw] date_updated
|
3406
|
-
# The date when the platform was last updated.
|
3612
|
+
# The date when the platform version was last updated.
|
3407
3613
|
# @return [Time]
|
3408
3614
|
#
|
3409
3615
|
# @!attribute [rw] platform_category
|
3410
|
-
# The category of the platform.
|
3616
|
+
# The category of the platform version.
|
3411
3617
|
# @return [String]
|
3412
3618
|
#
|
3413
3619
|
# @!attribute [rw] description
|
3414
|
-
# The description of the platform.
|
3620
|
+
# The description of the platform version.
|
3415
3621
|
# @return [String]
|
3416
3622
|
#
|
3417
3623
|
# @!attribute [rw] maintainer
|
3418
|
-
# Information about the maintainer of the platform.
|
3624
|
+
# Information about the maintainer of the platform version.
|
3419
3625
|
# @return [String]
|
3420
3626
|
#
|
3421
3627
|
# @!attribute [rw] operating_system_name
|
3422
|
-
# The operating system used by the platform.
|
3628
|
+
# The operating system used by the platform version.
|
3423
3629
|
# @return [String]
|
3424
3630
|
#
|
3425
3631
|
# @!attribute [rw] operating_system_version
|
3426
|
-
# The version of the operating system used by the platform.
|
3632
|
+
# The version of the operating system used by the platform version.
|
3427
3633
|
# @return [String]
|
3428
3634
|
#
|
3429
3635
|
# @!attribute [rw] programming_languages
|
3430
|
-
# The programming languages supported by the platform.
|
3636
|
+
# The programming languages supported by the platform version.
|
3431
3637
|
# @return [Array<Types::PlatformProgrammingLanguage>]
|
3432
3638
|
#
|
3433
3639
|
# @!attribute [rw] frameworks
|
3434
|
-
# The frameworks supported by the platform.
|
3640
|
+
# The frameworks supported by the platform version.
|
3435
3641
|
# @return [Array<Types::PlatformFramework>]
|
3436
3642
|
#
|
3437
3643
|
# @!attribute [rw] custom_ami_list
|
3438
|
-
# The custom AMIs supported by the platform.
|
3644
|
+
# The custom AMIs supported by the platform version.
|
3439
3645
|
# @return [Array<Types::CustomAmi>]
|
3440
3646
|
#
|
3441
3647
|
# @!attribute [rw] supported_tier_list
|
3442
|
-
# The tiers supported by the platform.
|
3648
|
+
# The tiers supported by the platform version.
|
3443
3649
|
# @return [Array<String>]
|
3444
3650
|
#
|
3445
3651
|
# @!attribute [rw] supported_addon_list
|
3446
|
-
# The additions supported by the platform.
|
3652
|
+
# The additions supported by the platform version.
|
3447
3653
|
# @return [Array<String>]
|
3448
3654
|
#
|
3655
|
+
# @!attribute [rw] platform_lifecycle_state
|
3656
|
+
# The state of the platform version in its lifecycle.
|
3657
|
+
#
|
3658
|
+
# Possible values: `Recommended` \| `null`
|
3659
|
+
#
|
3660
|
+
# If a null value is returned, the platform version isn't the
|
3661
|
+
# recommended one for its branch. Each platform branch has a single
|
3662
|
+
# recommended platform version, typically the most recent one.
|
3663
|
+
# @return [String]
|
3664
|
+
#
|
3665
|
+
# @!attribute [rw] platform_branch_name
|
3666
|
+
# The platform branch to which the platform version belongs.
|
3667
|
+
# @return [String]
|
3668
|
+
#
|
3669
|
+
# @!attribute [rw] platform_branch_lifecycle_state
|
3670
|
+
# The state of the platform version's branch in its lifecycle.
|
3671
|
+
#
|
3672
|
+
# Possible values: `Beta` \| `Supported` \| `Deprecated` \| `Retired`
|
3673
|
+
# @return [String]
|
3674
|
+
#
|
3449
3675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformDescription AWS API Documentation
|
3450
3676
|
#
|
3451
3677
|
class PlatformDescription < Struct.new(
|
@@ -3466,16 +3692,17 @@ module Aws::ElasticBeanstalk
|
|
3466
3692
|
:frameworks,
|
3467
3693
|
:custom_ami_list,
|
3468
3694
|
:supported_tier_list,
|
3469
|
-
:supported_addon_list
|
3695
|
+
:supported_addon_list,
|
3696
|
+
:platform_lifecycle_state,
|
3697
|
+
:platform_branch_name,
|
3698
|
+
:platform_branch_lifecycle_state)
|
3470
3699
|
include Aws::Structure
|
3471
3700
|
end
|
3472
3701
|
|
3473
|
-
#
|
3474
|
-
#
|
3475
|
-
#
|
3476
|
-
# The filter is evaluated as the expression:
|
3702
|
+
# Describes criteria to restrict the results when listing platform
|
3703
|
+
# versions.
|
3477
3704
|
#
|
3478
|
-
# `Type
|
3705
|
+
# The filter is evaluated as follows: `Type Operator Values[1]`
|
3479
3706
|
#
|
3480
3707
|
# @note When making an API call, you may pass PlatformFilter
|
3481
3708
|
# data as a hash:
|
@@ -3487,24 +3714,38 @@ module Aws::ElasticBeanstalk
|
|
3487
3714
|
# }
|
3488
3715
|
#
|
3489
3716
|
# @!attribute [rw] type
|
3490
|
-
# The
|
3717
|
+
# The platform version attribute to which the filter values are
|
3491
3718
|
# applied.
|
3492
3719
|
#
|
3493
|
-
# Valid
|
3494
|
-
# `PlatformStatus` \| `
|
3720
|
+
# Valid values: `PlatformName` \| `PlatformVersion` \|
|
3721
|
+
# `PlatformStatus` \| `PlatformBranchName` \| `PlatformLifecycleState`
|
3722
|
+
# \| `PlatformOwner` \| `SupportedTier` \| `SupportedAddon` \|
|
3723
|
+
# `ProgrammingLanguageName` \| `OperatingSystemName`
|
3495
3724
|
# @return [String]
|
3496
3725
|
#
|
3497
3726
|
# @!attribute [rw] operator
|
3498
3727
|
# The operator to apply to the `Type` with each of the `Values`.
|
3499
3728
|
#
|
3500
|
-
# Valid
|
3501
|
-
#
|
3502
|
-
# (greater than or equal to) \| `contains` \| `begins_with` \|
|
3503
|
-
# `ends_with`
|
3729
|
+
# Valid values: `=` \| `!=` \| `<` \| `<=` \| `>` \| `>=` \|
|
3730
|
+
# `contains` \| `begins_with` \| `ends_with`
|
3504
3731
|
# @return [String]
|
3505
3732
|
#
|
3506
3733
|
# @!attribute [rw] values
|
3507
|
-
# The list of values applied to the
|
3734
|
+
# The list of values applied to the filtering platform version
|
3735
|
+
# attribute. Only one value is supported for all current operators.
|
3736
|
+
#
|
3737
|
+
# The following list shows valid filter values for some filter
|
3738
|
+
# attributes.
|
3739
|
+
#
|
3740
|
+
# * `PlatformStatus`\: `Creating` \| `Failed` \| `Ready` \| `Deleting`
|
3741
|
+
# \| `Deleted`
|
3742
|
+
#
|
3743
|
+
# * `PlatformLifecycleState`\: `recommended`
|
3744
|
+
#
|
3745
|
+
# * `SupportedTier`\: `WebServer/Standard` \| `Worker/SQS/HTTP`
|
3746
|
+
#
|
3747
|
+
# * `SupportedAddon`\: `Log/S3` \| `Monitoring/Healthd` \|
|
3748
|
+
# `WorkerDaemon/SQSD`
|
3508
3749
|
# @return [Array<String>]
|
3509
3750
|
#
|
3510
3751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformFilter AWS API Documentation
|
@@ -3516,7 +3757,7 @@ module Aws::ElasticBeanstalk
|
|
3516
3757
|
include Aws::Structure
|
3517
3758
|
end
|
3518
3759
|
|
3519
|
-
# A framework supported by the
|
3760
|
+
# A framework supported by the platform.
|
3520
3761
|
#
|
3521
3762
|
# @!attribute [rw] name
|
3522
3763
|
# The name of the framework.
|
@@ -3552,41 +3793,64 @@ module Aws::ElasticBeanstalk
|
|
3552
3793
|
include Aws::Structure
|
3553
3794
|
end
|
3554
3795
|
|
3555
|
-
#
|
3796
|
+
# Summary information about a platform version.
|
3556
3797
|
#
|
3557
3798
|
# @!attribute [rw] platform_arn
|
3558
|
-
# The ARN of the platform.
|
3799
|
+
# The ARN of the platform version.
|
3559
3800
|
# @return [String]
|
3560
3801
|
#
|
3561
3802
|
# @!attribute [rw] platform_owner
|
3562
|
-
# The AWS account ID of the person who created the platform.
|
3803
|
+
# The AWS account ID of the person who created the platform version.
|
3563
3804
|
# @return [String]
|
3564
3805
|
#
|
3565
3806
|
# @!attribute [rw] platform_status
|
3566
|
-
# The status of the platform. You can create an environment
|
3567
|
-
# platform once it is ready.
|
3807
|
+
# The status of the platform version. You can create an environment
|
3808
|
+
# from the platform version once it is ready.
|
3568
3809
|
# @return [String]
|
3569
3810
|
#
|
3570
3811
|
# @!attribute [rw] platform_category
|
3571
|
-
# The category of platform.
|
3812
|
+
# The category of platform version.
|
3572
3813
|
# @return [String]
|
3573
3814
|
#
|
3574
3815
|
# @!attribute [rw] operating_system_name
|
3575
|
-
# The operating system used by the platform.
|
3816
|
+
# The operating system used by the platform version.
|
3576
3817
|
# @return [String]
|
3577
3818
|
#
|
3578
3819
|
# @!attribute [rw] operating_system_version
|
3579
|
-
# The version of the operating system used by the platform.
|
3820
|
+
# The version of the operating system used by the platform version.
|
3580
3821
|
# @return [String]
|
3581
3822
|
#
|
3582
3823
|
# @!attribute [rw] supported_tier_list
|
3583
|
-
# The tiers in which the platform runs.
|
3824
|
+
# The tiers in which the platform version runs.
|
3584
3825
|
# @return [Array<String>]
|
3585
3826
|
#
|
3586
3827
|
# @!attribute [rw] supported_addon_list
|
3587
|
-
# The additions associated with the platform.
|
3828
|
+
# The additions associated with the platform version.
|
3588
3829
|
# @return [Array<String>]
|
3589
3830
|
#
|
3831
|
+
# @!attribute [rw] platform_lifecycle_state
|
3832
|
+
# The state of the platform version in its lifecycle.
|
3833
|
+
#
|
3834
|
+
# Possible values: `recommended` \| empty
|
3835
|
+
#
|
3836
|
+
# If an empty value is returned, the platform version is supported but
|
3837
|
+
# isn't the recommended one for its branch.
|
3838
|
+
# @return [String]
|
3839
|
+
#
|
3840
|
+
# @!attribute [rw] platform_version
|
3841
|
+
# The version string of the platform version.
|
3842
|
+
# @return [String]
|
3843
|
+
#
|
3844
|
+
# @!attribute [rw] platform_branch_name
|
3845
|
+
# The platform branch to which the platform version belongs.
|
3846
|
+
# @return [String]
|
3847
|
+
#
|
3848
|
+
# @!attribute [rw] platform_branch_lifecycle_state
|
3849
|
+
# The state of the platform version's branch in its lifecycle.
|
3850
|
+
#
|
3851
|
+
# Possible values: `beta` \| `supported` \| `deprecated` \| `retired`
|
3852
|
+
# @return [String]
|
3853
|
+
#
|
3590
3854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformSummary AWS API Documentation
|
3591
3855
|
#
|
3592
3856
|
class PlatformSummary < Struct.new(
|
@@ -3597,10 +3861,21 @@ module Aws::ElasticBeanstalk
|
|
3597
3861
|
:operating_system_name,
|
3598
3862
|
:operating_system_version,
|
3599
3863
|
:supported_tier_list,
|
3600
|
-
:supported_addon_list
|
3864
|
+
:supported_addon_list,
|
3865
|
+
:platform_lifecycle_state,
|
3866
|
+
:platform_version,
|
3867
|
+
:platform_branch_name,
|
3868
|
+
:platform_branch_lifecycle_state)
|
3601
3869
|
include Aws::Structure
|
3602
3870
|
end
|
3603
3871
|
|
3872
|
+
# You cannot delete the platform version because there are still
|
3873
|
+
# environments running on it.
|
3874
|
+
#
|
3875
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformVersionStillReferencedException AWS API Documentation
|
3876
|
+
#
|
3877
|
+
class PlatformVersionStillReferencedException < Aws::EmptyStructure; end
|
3878
|
+
|
3604
3879
|
# Describes a queue.
|
3605
3880
|
#
|
3606
3881
|
# @!attribute [rw] name
|
@@ -3698,6 +3973,13 @@ module Aws::ElasticBeanstalk
|
|
3698
3973
|
include Aws::Structure
|
3699
3974
|
end
|
3700
3975
|
|
3976
|
+
# A resource doesn't exist for the specified Amazon Resource Name
|
3977
|
+
# (ARN).
|
3978
|
+
#
|
3979
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ResourceNotFoundException AWS API Documentation
|
3980
|
+
#
|
3981
|
+
class ResourceNotFoundException < Aws::EmptyStructure; end
|
3982
|
+
|
3701
3983
|
# The AWS Elastic Beanstalk quota information for a single resource type
|
3702
3984
|
# in an AWS account. It reflects the resource's limits for this
|
3703
3985
|
# account.
|
@@ -3750,7 +4032,7 @@ module Aws::ElasticBeanstalk
|
|
3750
4032
|
end
|
3751
4033
|
|
3752
4034
|
# @!attribute [rw] resource_arn
|
3753
|
-
# The Amazon Resource Name (ARN) of the
|
4035
|
+
# The Amazon Resource Name (ARN) of the resource for which a tag list
|
3754
4036
|
# was requested.
|
3755
4037
|
# @return [String]
|
3756
4038
|
#
|
@@ -3766,6 +4048,13 @@ module Aws::ElasticBeanstalk
|
|
3766
4048
|
include Aws::Structure
|
3767
4049
|
end
|
3768
4050
|
|
4051
|
+
# The type of the specified Amazon Resource Name (ARN) isn't supported
|
4052
|
+
# for this operation.
|
4053
|
+
#
|
4054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ResourceTypeNotSupportedException AWS API Documentation
|
4055
|
+
#
|
4056
|
+
class ResourceTypeNotSupportedException < Aws::EmptyStructure; end
|
4057
|
+
|
3769
4058
|
# @note When making an API call, you may pass RestartAppServerMessage
|
3770
4059
|
# data as a hash:
|
3771
4060
|
#
|
@@ -3884,6 +4173,72 @@ module Aws::ElasticBeanstalk
|
|
3884
4173
|
include Aws::Structure
|
3885
4174
|
end
|
3886
4175
|
|
4176
|
+
# The specified S3 bucket does not belong to the S3 region in which the
|
4177
|
+
# service is running. The following regions are supported:
|
4178
|
+
#
|
4179
|
+
# * IAD/us-east-1
|
4180
|
+
#
|
4181
|
+
# * PDX/us-west-2
|
4182
|
+
#
|
4183
|
+
# * DUB/eu-west-1
|
4184
|
+
#
|
4185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/S3LocationNotInServiceRegionException AWS API Documentation
|
4186
|
+
#
|
4187
|
+
class S3LocationNotInServiceRegionException < Aws::EmptyStructure; end
|
4188
|
+
|
4189
|
+
# The specified account does not have a subscription to Amazon S3.
|
4190
|
+
#
|
4191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/S3SubscriptionRequiredException AWS API Documentation
|
4192
|
+
#
|
4193
|
+
class S3SubscriptionRequiredException < Aws::EmptyStructure; end
|
4194
|
+
|
4195
|
+
# Describes criteria to restrict a list of results.
|
4196
|
+
#
|
4197
|
+
# For operators that apply a single value to the attribute, the filter
|
4198
|
+
# is evaluated as follows: `Attribute Operator Values[1]`
|
4199
|
+
#
|
4200
|
+
# Some operators, e.g. `in`, can apply multiple values. In this case,
|
4201
|
+
# the filter is evaluated as a logical union (OR) of applications of the
|
4202
|
+
# operator to the attribute with each one of the values: `(Attribute
|
4203
|
+
# Operator Values[1]) OR (Attribute Operator Values[2]) OR ...`
|
4204
|
+
#
|
4205
|
+
# The valid values for attributes of `SearchFilter` depend on the API
|
4206
|
+
# action. For valid values, see the reference page for the API action
|
4207
|
+
# you're calling that takes a `SearchFilter` parameter.
|
4208
|
+
#
|
4209
|
+
# @note When making an API call, you may pass SearchFilter
|
4210
|
+
# data as a hash:
|
4211
|
+
#
|
4212
|
+
# {
|
4213
|
+
# attribute: "SearchFilterAttribute",
|
4214
|
+
# operator: "SearchFilterOperator",
|
4215
|
+
# values: ["SearchFilterValue"],
|
4216
|
+
# }
|
4217
|
+
#
|
4218
|
+
# @!attribute [rw] attribute
|
4219
|
+
# The result attribute to which the filter values are applied. Valid
|
4220
|
+
# values vary by API action.
|
4221
|
+
# @return [String]
|
4222
|
+
#
|
4223
|
+
# @!attribute [rw] operator
|
4224
|
+
# The operator to apply to the `Attribute` with each of the `Values`.
|
4225
|
+
# Valid values vary by `Attribute`.
|
4226
|
+
# @return [String]
|
4227
|
+
#
|
4228
|
+
# @!attribute [rw] values
|
4229
|
+
# The list of values applied to the `Attribute` and `Operator`
|
4230
|
+
# attributes. Number of values and valid values vary by `Attribute`.
|
4231
|
+
# @return [Array<String>]
|
4232
|
+
#
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SearchFilter AWS API Documentation
|
4234
|
+
#
|
4235
|
+
class SearchFilter < Struct.new(
|
4236
|
+
:attribute,
|
4237
|
+
:operator,
|
4238
|
+
:values)
|
4239
|
+
include Aws::Structure
|
4240
|
+
end
|
4241
|
+
|
3887
4242
|
# Detailed health information about an Amazon EC2 instance in your
|
3888
4243
|
# Elastic Beanstalk environment.
|
3889
4244
|
#
|
@@ -4022,7 +4377,14 @@ module Aws::ElasticBeanstalk
|
|
4022
4377
|
include Aws::Structure
|
4023
4378
|
end
|
4024
4379
|
|
4025
|
-
#
|
4380
|
+
# Unable to delete the Amazon S3 source bundle associated with the
|
4381
|
+
# application version. The application version was deleted successfully.
|
4382
|
+
#
|
4383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SourceBundleDeletionException AWS API Documentation
|
4384
|
+
#
|
4385
|
+
class SourceBundleDeletionException < Aws::EmptyStructure; end
|
4386
|
+
|
4387
|
+
# A specification for an environment configuration.
|
4026
4388
|
#
|
4027
4389
|
# @note When making an API call, you may pass SourceConfiguration
|
4028
4390
|
# data as a hash:
|
@@ -4259,6 +4621,55 @@ module Aws::ElasticBeanstalk
|
|
4259
4621
|
include Aws::Structure
|
4260
4622
|
end
|
4261
4623
|
|
4624
|
+
# The specified account has reached its limit of application versions.
|
4625
|
+
#
|
4626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyApplicationVersionsException AWS API Documentation
|
4627
|
+
#
|
4628
|
+
class TooManyApplicationVersionsException < Aws::EmptyStructure; end
|
4629
|
+
|
4630
|
+
# The specified account has reached its limit of applications.
|
4631
|
+
#
|
4632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyApplicationsException AWS API Documentation
|
4633
|
+
#
|
4634
|
+
class TooManyApplicationsException < Aws::EmptyStructure; end
|
4635
|
+
|
4636
|
+
# The specified account has reached its limit of Amazon S3 buckets.
|
4637
|
+
#
|
4638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyBucketsException AWS API Documentation
|
4639
|
+
#
|
4640
|
+
class TooManyBucketsException < Aws::EmptyStructure; end
|
4641
|
+
|
4642
|
+
# The specified account has reached its limit of configuration
|
4643
|
+
# templates.
|
4644
|
+
#
|
4645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyConfigurationTemplatesException AWS API Documentation
|
4646
|
+
#
|
4647
|
+
class TooManyConfigurationTemplatesException < Aws::EmptyStructure; end
|
4648
|
+
|
4649
|
+
# The specified account has reached its limit of environments.
|
4650
|
+
#
|
4651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyEnvironmentsException AWS API Documentation
|
4652
|
+
#
|
4653
|
+
class TooManyEnvironmentsException < Aws::EmptyStructure; end
|
4654
|
+
|
4655
|
+
# You have exceeded the maximum number of allowed platforms associated
|
4656
|
+
# with the account.
|
4657
|
+
#
|
4658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyPlatformsException AWS API Documentation
|
4659
|
+
#
|
4660
|
+
class TooManyPlatformsException < Aws::EmptyStructure; end
|
4661
|
+
|
4662
|
+
# The number of tags in the resource would exceed the number of tags
|
4663
|
+
# that each resource can have.
|
4664
|
+
#
|
4665
|
+
# To calculate this, the operation considers both the number of tags the
|
4666
|
+
# resource already has and the tags this operation would add if it
|
4667
|
+
# succeeded.
|
4668
|
+
#
|
4669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyTagsException AWS API Documentation
|
4670
|
+
#
|
4671
|
+
class TooManyTagsException < Aws::EmptyStructure; end
|
4672
|
+
|
4262
4673
|
# Describes a trigger.
|
4263
4674
|
#
|
4264
4675
|
# @!attribute [rw] name
|
@@ -4602,7 +5013,7 @@ module Aws::ElasticBeanstalk
|
|
4602
5013
|
# @!attribute [rw] resource_arn
|
4603
5014
|
# The Amazon Resource Name (ARN) of the resouce to be updated.
|
4604
5015
|
#
|
4605
|
-
# Must be the ARN of an Elastic Beanstalk
|
5016
|
+
# Must be the ARN of an Elastic Beanstalk resource.
|
4606
5017
|
# @return [String]
|
4607
5018
|
#
|
4608
5019
|
# @!attribute [rw] tags_to_add
|