aws-sdk-elasticbeanstalk 1.26.0 → 1.31.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 +436 -119
- data/lib/aws-sdk-elasticbeanstalk/client_api.rb +129 -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 +646 -155
- metadata +3 -3
@@ -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
|
@@ -431,6 +431,33 @@ module Aws::ElasticBeanstalk
|
|
431
431
|
include Aws::Structure
|
432
432
|
end
|
433
433
|
|
434
|
+
# Request to add or change the operations role used by an environment.
|
435
|
+
#
|
436
|
+
# @note When making an API call, you may pass AssociateEnvironmentOperationsRoleMessage
|
437
|
+
# data as a hash:
|
438
|
+
#
|
439
|
+
# {
|
440
|
+
# environment_name: "EnvironmentName", # required
|
441
|
+
# operations_role: "OperationsRole", # required
|
442
|
+
# }
|
443
|
+
#
|
444
|
+
# @!attribute [rw] environment_name
|
445
|
+
# The name of the environment to which to set the operations role.
|
446
|
+
# @return [String]
|
447
|
+
#
|
448
|
+
# @!attribute [rw] operations_role
|
449
|
+
# The Amazon Resource Name (ARN) of an existing IAM role to be used as
|
450
|
+
# the environment's operations role.
|
451
|
+
# @return [String]
|
452
|
+
#
|
453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AssociateEnvironmentOperationsRoleMessage AWS API Documentation
|
454
|
+
#
|
455
|
+
class AssociateEnvironmentOperationsRoleMessage < Struct.new(
|
456
|
+
:environment_name,
|
457
|
+
:operations_role)
|
458
|
+
include Aws::Structure
|
459
|
+
end
|
460
|
+
|
434
461
|
# Describes an Auto Scaling launch configuration.
|
435
462
|
#
|
436
463
|
# @!attribute [rw] name
|
@@ -630,6 +657,12 @@ module Aws::ElasticBeanstalk
|
|
630
657
|
include Aws::Structure
|
631
658
|
end
|
632
659
|
|
660
|
+
# AWS CodeBuild is not available in the specified region.
|
661
|
+
#
|
662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CodeBuildNotInServiceRegionException AWS API Documentation
|
663
|
+
#
|
664
|
+
class CodeBuildNotInServiceRegionException < Aws::EmptyStructure; end
|
665
|
+
|
633
666
|
# Request to create or update a group of environments.
|
634
667
|
#
|
635
668
|
# @note When making an API call, you may pass ComposeEnvironmentsMessage
|
@@ -781,8 +814,9 @@ module Aws::ElasticBeanstalk
|
|
781
814
|
end
|
782
815
|
|
783
816
|
# 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
|
817
|
+
# with its current value. For a list of possible namespaces and option
|
818
|
+
# values, see [Option Values][1] in the *AWS Elastic Beanstalk Developer
|
819
|
+
# Guide*.
|
786
820
|
#
|
787
821
|
#
|
788
822
|
#
|
@@ -799,12 +833,12 @@ module Aws::ElasticBeanstalk
|
|
799
833
|
# }
|
800
834
|
#
|
801
835
|
# @!attribute [rw] resource_name
|
802
|
-
# A unique resource name for
|
803
|
-
# option.
|
836
|
+
# A unique resource name for the option setting. Use it for a
|
837
|
+
# time–based scaling configuration option.
|
804
838
|
# @return [String]
|
805
839
|
#
|
806
840
|
# @!attribute [rw] namespace
|
807
|
-
# A unique namespace
|
841
|
+
# A unique namespace that identifies the option's associated AWS
|
808
842
|
# resource.
|
809
843
|
# @return [String]
|
810
844
|
#
|
@@ -834,7 +868,7 @@ module Aws::ElasticBeanstalk
|
|
834
868
|
# @return [String]
|
835
869
|
#
|
836
870
|
# @!attribute [rw] platform_arn
|
837
|
-
# The ARN of the platform.
|
871
|
+
# The ARN of the platform version.
|
838
872
|
# @return [String]
|
839
873
|
#
|
840
874
|
# @!attribute [rw] options
|
@@ -857,7 +891,7 @@ module Aws::ElasticBeanstalk
|
|
857
891
|
# @return [String]
|
858
892
|
#
|
859
893
|
# @!attribute [rw] platform_arn
|
860
|
-
# The ARN of the platform.
|
894
|
+
# The ARN of the platform version.
|
861
895
|
# @return [String]
|
862
896
|
#
|
863
897
|
# @!attribute [rw] application_name
|
@@ -985,19 +1019,15 @@ module Aws::ElasticBeanstalk
|
|
985
1019
|
# }
|
986
1020
|
#
|
987
1021
|
# @!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.
|
1022
|
+
# The name of the application. Must be unique within your account.
|
993
1023
|
# @return [String]
|
994
1024
|
#
|
995
1025
|
# @!attribute [rw] description
|
996
|
-
#
|
1026
|
+
# Your description of the application.
|
997
1027
|
# @return [String]
|
998
1028
|
#
|
999
1029
|
# @!attribute [rw] resource_lifecycle_config
|
1000
|
-
#
|
1030
|
+
# Specifies an application resource lifecycle configuration to prevent
|
1001
1031
|
# your application from accumulating too many versions.
|
1002
1032
|
# @return [Types::ApplicationResourceLifecycleConfig]
|
1003
1033
|
#
|
@@ -1068,7 +1098,7 @@ module Aws::ElasticBeanstalk
|
|
1068
1098
|
# @return [String]
|
1069
1099
|
#
|
1070
1100
|
# @!attribute [rw] description
|
1071
|
-
#
|
1101
|
+
# A description of this application version.
|
1072
1102
|
# @return [String]
|
1073
1103
|
#
|
1074
1104
|
# @!attribute [rw] source_build_information
|
@@ -1173,74 +1203,91 @@ module Aws::ElasticBeanstalk
|
|
1173
1203
|
# }
|
1174
1204
|
#
|
1175
1205
|
# @!attribute [rw] application_name
|
1176
|
-
# The name of the application to associate with this
|
1177
|
-
# template.
|
1178
|
-
# Beanstalk returns an `InvalidParameterValue` error.
|
1206
|
+
# The name of the Elastic Beanstalk application to associate with this
|
1207
|
+
# configuration template.
|
1179
1208
|
# @return [String]
|
1180
1209
|
#
|
1181
1210
|
# @!attribute [rw] template_name
|
1182
1211
|
# The name of the configuration template.
|
1183
1212
|
#
|
1184
1213
|
# 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
1214
|
# @return [String]
|
1189
1215
|
#
|
1190
1216
|
# @!attribute [rw] solution_stack_name
|
1191
|
-
# The name of
|
1192
|
-
#
|
1193
|
-
#
|
1194
|
-
#
|
1195
|
-
#
|
1217
|
+
# The name of an Elastic Beanstalk solution stack (platform version)
|
1218
|
+
# that this configuration uses. For example, `64bit Amazon Linux
|
1219
|
+
# 2013.09 running Tomcat 7 Java 7`. A solution stack specifies the
|
1220
|
+
# operating system, runtime, and application server for a
|
1221
|
+
# configuration template. It also determines the set of configuration
|
1222
|
+
# options as well as the possible and default values. For more
|
1223
|
+
# information, see [Supported Platforms][1] in the *AWS Elastic
|
1224
|
+
# Beanstalk Developer Guide*.
|
1196
1225
|
#
|
1197
|
-
#
|
1198
|
-
#
|
1226
|
+
# You must specify `SolutionStackName` if you don't specify
|
1227
|
+
# `PlatformArn`, `EnvironmentId`, or `SourceConfiguration`.
|
1228
|
+
#
|
1229
|
+
# Use the [ `ListAvailableSolutionStacks` ][2] API to obtain a list of
|
1230
|
+
# available solution stacks.
|
1199
1231
|
#
|
1200
|
-
# A solution stack name or a source configuration parameter must be
|
1201
|
-
# specified, otherwise AWS Elastic Beanstalk returns an
|
1202
|
-
# `InvalidParameterValue` error.
|
1203
1232
|
#
|
1204
|
-
#
|
1205
|
-
#
|
1206
|
-
#
|
1233
|
+
#
|
1234
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
|
1235
|
+
# [2]: https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_ListAvailableSolutionStacks.html
|
1207
1236
|
# @return [String]
|
1208
1237
|
#
|
1209
1238
|
# @!attribute [rw] platform_arn
|
1210
|
-
# The ARN of the custom platform.
|
1239
|
+
# The Amazon Resource Name (ARN) of the custom platform. For more
|
1240
|
+
# information, see [ Custom Platforms][1] in the *AWS Elastic
|
1241
|
+
# Beanstalk Developer Guide*.
|
1242
|
+
#
|
1243
|
+
# <note markdown="1"> If you specify `PlatformArn`, then don't specify
|
1244
|
+
# `SolutionStackName`.
|
1245
|
+
#
|
1246
|
+
# </note>
|
1247
|
+
#
|
1248
|
+
#
|
1249
|
+
#
|
1250
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html
|
1211
1251
|
# @return [String]
|
1212
1252
|
#
|
1213
1253
|
# @!attribute [rw] source_configuration
|
1214
|
-
#
|
1215
|
-
#
|
1216
|
-
# configuration.
|
1254
|
+
# An Elastic Beanstalk configuration template to base this one on. If
|
1255
|
+
# specified, Elastic Beanstalk uses the configuration values from the
|
1256
|
+
# specified configuration template to create a new configuration.
|
1217
1257
|
#
|
1218
|
-
# Values specified in
|
1219
|
-
#
|
1258
|
+
# Values specified in `OptionSettings` override any values obtained
|
1259
|
+
# from the `SourceConfiguration`.
|
1220
1260
|
#
|
1221
|
-
#
|
1222
|
-
# `
|
1261
|
+
# You must specify `SourceConfiguration` if you don't specify
|
1262
|
+
# `PlatformArn`, `EnvironmentId`, or `SolutionStackName`.
|
1223
1263
|
#
|
1224
|
-
# Constraint: If both
|
1225
|
-
#
|
1226
|
-
#
|
1227
|
-
# stack name or else AWS Elastic Beanstalk returns an
|
1228
|
-
# `InvalidParameterCombination` error.
|
1264
|
+
# Constraint: If both solution stack name and source configuration are
|
1265
|
+
# specified, the solution stack of the source configuration template
|
1266
|
+
# must match the specified solution stack name.
|
1229
1267
|
# @return [Types::SourceConfiguration]
|
1230
1268
|
#
|
1231
1269
|
# @!attribute [rw] environment_id
|
1232
|
-
# The ID of
|
1270
|
+
# The ID of an environment whose settings you want to use to create
|
1271
|
+
# the configuration template. You must specify `EnvironmentId` if you
|
1272
|
+
# don't specify `PlatformArn`, `SolutionStackName`, or
|
1273
|
+
# `SourceConfiguration`.
|
1233
1274
|
# @return [String]
|
1234
1275
|
#
|
1235
1276
|
# @!attribute [rw] description
|
1236
|
-
#
|
1277
|
+
# An optional description for this configuration.
|
1237
1278
|
# @return [String]
|
1238
1279
|
#
|
1239
1280
|
# @!attribute [rw] option_settings
|
1240
|
-
#
|
1241
|
-
#
|
1281
|
+
# Option values for the Elastic Beanstalk configuration, such as the
|
1282
|
+
# instance type. If specified, these values override the values
|
1242
1283
|
# obtained from the solution stack or the source configuration
|
1243
|
-
# template.
|
1284
|
+
# template. For a complete list of Elastic Beanstalk configuration
|
1285
|
+
# options, see [Option Values][1] in the *AWS Elastic Beanstalk
|
1286
|
+
# Developer Guide*.
|
1287
|
+
#
|
1288
|
+
#
|
1289
|
+
#
|
1290
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html
|
1244
1291
|
# @return [Array<Types::ConfigurationOptionSetting>]
|
1245
1292
|
#
|
1246
1293
|
# @!attribute [rw] tags
|
@@ -1301,27 +1348,24 @@ module Aws::ElasticBeanstalk
|
|
1301
1348
|
# option_name: "ConfigurationOptionName",
|
1302
1349
|
# },
|
1303
1350
|
# ],
|
1351
|
+
# operations_role: "OperationsRole",
|
1304
1352
|
# }
|
1305
1353
|
#
|
1306
1354
|
# @!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.
|
1355
|
+
# The name of the application that is associated with this
|
1356
|
+
# environment.
|
1312
1357
|
# @return [String]
|
1313
1358
|
#
|
1314
1359
|
# @!attribute [rw] environment_name
|
1315
|
-
# A unique name for the
|
1316
|
-
# application URL.
|
1360
|
+
# A unique name for the environment.
|
1317
1361
|
#
|
1318
1362
|
# Constraint: Must be from 4 to 40 characters in length. The name can
|
1319
|
-
# contain only letters, numbers, and hyphens. It
|
1363
|
+
# contain only letters, numbers, and hyphens. It can't start or end
|
1320
1364
|
# 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
|
-
#
|
1365
|
+
# account. If the specified name already exists in the region, Elastic
|
1366
|
+
# Beanstalk returns an `InvalidParameterValue` error.
|
1323
1367
|
#
|
1324
|
-
#
|
1368
|
+
# If you don't specify the `CNAMEPrefix` parameter, the environment
|
1325
1369
|
# name becomes part of the CNAME, and therefore part of the visible
|
1326
1370
|
# URL for your application.
|
1327
1371
|
# @return [String]
|
@@ -1338,18 +1382,22 @@ module Aws::ElasticBeanstalk
|
|
1338
1382
|
# @return [String]
|
1339
1383
|
#
|
1340
1384
|
# @!attribute [rw] description
|
1341
|
-
#
|
1385
|
+
# Your description for this environment.
|
1342
1386
|
# @return [String]
|
1343
1387
|
#
|
1344
1388
|
# @!attribute [rw] cname_prefix
|
1345
1389
|
# If specified, the environment attempts to use this value as the
|
1346
|
-
# prefix for the CNAME
|
1347
|
-
#
|
1348
|
-
# environment name.
|
1390
|
+
# prefix for the CNAME in your Elastic Beanstalk environment URL. If
|
1391
|
+
# not specified, the CNAME is generated automatically by appending a
|
1392
|
+
# random alphanumeric string to the environment name.
|
1349
1393
|
# @return [String]
|
1350
1394
|
#
|
1351
1395
|
# @!attribute [rw] tier
|
1352
|
-
#
|
1396
|
+
# Specifies the tier to use in creating this environment. The
|
1397
|
+
# environment tier that you choose determines whether Elastic
|
1398
|
+
# Beanstalk provisions resources to support a web application that
|
1399
|
+
# handles HTTP(S) requests or a web application that handles
|
1400
|
+
# background-processing tasks.
|
1353
1401
|
# @return [Types::EnvironmentTier]
|
1354
1402
|
#
|
1355
1403
|
# @!attribute [rw] tags
|
@@ -1359,35 +1407,50 @@ module Aws::ElasticBeanstalk
|
|
1359
1407
|
# @!attribute [rw] version_label
|
1360
1408
|
# The name of the application version to deploy.
|
1361
1409
|
#
|
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.
|
1410
|
+
# Default: If not specified, Elastic Beanstalk attempts to deploy the
|
1411
|
+
# sample application.
|
1368
1412
|
# @return [String]
|
1369
1413
|
#
|
1370
1414
|
# @!attribute [rw] template_name
|
1371
|
-
# The name of the configuration template to use
|
1372
|
-
#
|
1373
|
-
#
|
1415
|
+
# The name of the Elastic Beanstalk configuration template to use with
|
1416
|
+
# the environment.
|
1417
|
+
#
|
1418
|
+
# <note markdown="1"> If you specify `TemplateName`, then don't specify
|
1419
|
+
# `SolutionStackName`.
|
1420
|
+
#
|
1421
|
+
# </note>
|
1374
1422
|
# @return [String]
|
1375
1423
|
#
|
1376
1424
|
# @!attribute [rw] solution_stack_name
|
1377
|
-
#
|
1378
|
-
#
|
1379
|
-
# values associated with the
|
1425
|
+
# The name of an Elastic Beanstalk solution stack (platform version)
|
1426
|
+
# to use with the environment. If specified, Elastic Beanstalk sets
|
1427
|
+
# the configuration values to the default values associated with the
|
1428
|
+
# specified solution stack. For a list of current solution stacks, see
|
1429
|
+
# [Elastic Beanstalk Supported Platforms][1] in the *AWS Elastic
|
1430
|
+
# Beanstalk Platforms* guide.
|
1380
1431
|
#
|
1381
|
-
#
|
1382
|
-
#
|
1432
|
+
# <note markdown="1"> If you specify `SolutionStackName`, don't specify `PlatformArn` or
|
1433
|
+
# `TemplateName`.
|
1383
1434
|
#
|
1435
|
+
# </note>
|
1384
1436
|
#
|
1385
1437
|
#
|
1386
|
-
#
|
1438
|
+
#
|
1439
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html
|
1387
1440
|
# @return [String]
|
1388
1441
|
#
|
1389
1442
|
# @!attribute [rw] platform_arn
|
1390
|
-
# The ARN of the platform
|
1443
|
+
# The Amazon Resource Name (ARN) of the custom platform to use with
|
1444
|
+
# the environment. For more information, see [Custom Platforms][1] in
|
1445
|
+
# the *AWS Elastic Beanstalk Developer Guide*.
|
1446
|
+
#
|
1447
|
+
# <note markdown="1"> If you specify `PlatformArn`, don't specify `SolutionStackName`.
|
1448
|
+
#
|
1449
|
+
# </note>
|
1450
|
+
#
|
1451
|
+
#
|
1452
|
+
#
|
1453
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html
|
1391
1454
|
# @return [String]
|
1392
1455
|
#
|
1393
1456
|
# @!attribute [rw] option_settings
|
@@ -1402,6 +1465,21 @@ module Aws::ElasticBeanstalk
|
|
1402
1465
|
# the configuration set for this new environment.
|
1403
1466
|
# @return [Array<Types::OptionSpecification>]
|
1404
1467
|
#
|
1468
|
+
# @!attribute [rw] operations_role
|
1469
|
+
# The Amazon Resource Name (ARN) of an existing IAM role to be used as
|
1470
|
+
# the environment's operations role. If specified, Elastic Beanstalk
|
1471
|
+
# uses the operations role for permissions to downstream services
|
1472
|
+
# during this call and during subsequent calls acting on this
|
1473
|
+
# environment. To specify an operations role, you must have the
|
1474
|
+
# `iam:PassRole` permission for the role. For more information, see
|
1475
|
+
# [Operations roles][1] in the *AWS Elastic Beanstalk Developer
|
1476
|
+
# Guide*.
|
1477
|
+
#
|
1478
|
+
#
|
1479
|
+
#
|
1480
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
|
1481
|
+
# @return [String]
|
1482
|
+
#
|
1405
1483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironmentMessage AWS API Documentation
|
1406
1484
|
#
|
1407
1485
|
class CreateEnvironmentMessage < Struct.new(
|
@@ -1417,7 +1495,8 @@ module Aws::ElasticBeanstalk
|
|
1417
1495
|
:solution_stack_name,
|
1418
1496
|
:platform_arn,
|
1419
1497
|
:option_settings,
|
1420
|
-
:options_to_remove
|
1498
|
+
:options_to_remove,
|
1499
|
+
:operations_role)
|
1421
1500
|
include Aws::Structure
|
1422
1501
|
end
|
1423
1502
|
|
@@ -2270,7 +2349,9 @@ module Aws::ElasticBeanstalk
|
|
2270
2349
|
# @return [String]
|
2271
2350
|
#
|
2272
2351
|
# @!attribute [rw] platform_arn
|
2273
|
-
# The ARN of
|
2352
|
+
# The ARN of a custom platform version. If specified, AWS Elastic
|
2353
|
+
# Beanstalk restricts the returned descriptions to those associated
|
2354
|
+
# with this custom platform version.
|
2274
2355
|
# @return [String]
|
2275
2356
|
#
|
2276
2357
|
# @!attribute [rw] request_id
|
@@ -2398,7 +2479,7 @@ module Aws::ElasticBeanstalk
|
|
2398
2479
|
# }
|
2399
2480
|
#
|
2400
2481
|
# @!attribute [rw] platform_arn
|
2401
|
-
# The ARN of the version
|
2482
|
+
# The ARN of the platform version.
|
2402
2483
|
# @return [String]
|
2403
2484
|
#
|
2404
2485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersionRequest AWS API Documentation
|
@@ -2409,7 +2490,7 @@ module Aws::ElasticBeanstalk
|
|
2409
2490
|
end
|
2410
2491
|
|
2411
2492
|
# @!attribute [rw] platform_description
|
2412
|
-
# Detailed information about the version
|
2493
|
+
# Detailed information about the platform version.
|
2413
2494
|
# @return [Types::PlatformDescription]
|
2414
2495
|
#
|
2415
2496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersionResult AWS API Documentation
|
@@ -2419,6 +2500,27 @@ module Aws::ElasticBeanstalk
|
|
2419
2500
|
include Aws::Structure
|
2420
2501
|
end
|
2421
2502
|
|
2503
|
+
# Request to disassociate the operations role from an environment.
|
2504
|
+
#
|
2505
|
+
# @note When making an API call, you may pass DisassociateEnvironmentOperationsRoleMessage
|
2506
|
+
# data as a hash:
|
2507
|
+
#
|
2508
|
+
# {
|
2509
|
+
# environment_name: "EnvironmentName", # required
|
2510
|
+
# }
|
2511
|
+
#
|
2512
|
+
# @!attribute [rw] environment_name
|
2513
|
+
# The name of the environment from which to disassociate the
|
2514
|
+
# operations role.
|
2515
|
+
# @return [String]
|
2516
|
+
#
|
2517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DisassociateEnvironmentOperationsRoleMessage AWS API Documentation
|
2518
|
+
#
|
2519
|
+
class DisassociateEnvironmentOperationsRoleMessage < Struct.new(
|
2520
|
+
:environment_name)
|
2521
|
+
include Aws::Structure
|
2522
|
+
end
|
2523
|
+
|
2422
2524
|
# A generic service exception has occurred.
|
2423
2525
|
#
|
2424
2526
|
# @!attribute [rw] message
|
@@ -2455,7 +2557,7 @@ module Aws::ElasticBeanstalk
|
|
2455
2557
|
# @return [String]
|
2456
2558
|
#
|
2457
2559
|
# @!attribute [rw] platform_arn
|
2458
|
-
# The ARN of the platform.
|
2560
|
+
# The ARN of the platform version.
|
2459
2561
|
# @return [String]
|
2460
2562
|
#
|
2461
2563
|
# @!attribute [rw] template_name
|
@@ -2558,6 +2660,16 @@ module Aws::ElasticBeanstalk
|
|
2558
2660
|
# other API requests that require an ARN.
|
2559
2661
|
# @return [String]
|
2560
2662
|
#
|
2663
|
+
# @!attribute [rw] operations_role
|
2664
|
+
# The Amazon Resource Name (ARN) of the environment's operations
|
2665
|
+
# role. For more information, see [Operations roles][1] in the *AWS
|
2666
|
+
# Elastic Beanstalk Developer Guide*.
|
2667
|
+
#
|
2668
|
+
#
|
2669
|
+
#
|
2670
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
|
2671
|
+
# @return [String]
|
2672
|
+
#
|
2561
2673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentDescription AWS API Documentation
|
2562
2674
|
#
|
2563
2675
|
class EnvironmentDescription < Struct.new(
|
@@ -2580,7 +2692,8 @@ module Aws::ElasticBeanstalk
|
|
2580
2692
|
:resources,
|
2581
2693
|
:tier,
|
2582
2694
|
:environment_links,
|
2583
|
-
:environment_arn
|
2695
|
+
:environment_arn,
|
2696
|
+
:operations_role)
|
2584
2697
|
include Aws::Structure
|
2585
2698
|
end
|
2586
2699
|
|
@@ -2815,7 +2928,7 @@ module Aws::ElasticBeanstalk
|
|
2815
2928
|
# @return [String]
|
2816
2929
|
#
|
2817
2930
|
# @!attribute [rw] platform_arn
|
2818
|
-
# The ARN of the platform.
|
2931
|
+
# The ARN of the platform version.
|
2819
2932
|
# @return [String]
|
2820
2933
|
#
|
2821
2934
|
# @!attribute [rw] request_id
|
@@ -2934,6 +3047,20 @@ module Aws::ElasticBeanstalk
|
|
2934
3047
|
include Aws::Structure
|
2935
3048
|
end
|
2936
3049
|
|
3050
|
+
# The specified account does not have sufficient privileges for one or
|
3051
|
+
# more AWS services.
|
3052
|
+
#
|
3053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/InsufficientPrivilegesException AWS API Documentation
|
3054
|
+
#
|
3055
|
+
class InsufficientPrivilegesException < Aws::EmptyStructure; end
|
3056
|
+
|
3057
|
+
# One or more input parameters is not valid. Please correct the input
|
3058
|
+
# parameters and try the operation again.
|
3059
|
+
#
|
3060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/InvalidRequestException AWS API Documentation
|
3061
|
+
#
|
3062
|
+
class InvalidRequestException < Aws::EmptyStructure; end
|
3063
|
+
|
2937
3064
|
# Represents the average latency for the slowest X percent of requests
|
2938
3065
|
# over the last 10 seconds.
|
2939
3066
|
#
|
@@ -3036,6 +3163,101 @@ module Aws::ElasticBeanstalk
|
|
3036
3163
|
include Aws::Structure
|
3037
3164
|
end
|
3038
3165
|
|
3166
|
+
# @note When making an API call, you may pass ListPlatformBranchesRequest
|
3167
|
+
# data as a hash:
|
3168
|
+
#
|
3169
|
+
# {
|
3170
|
+
# filters: [
|
3171
|
+
# {
|
3172
|
+
# attribute: "SearchFilterAttribute",
|
3173
|
+
# operator: "SearchFilterOperator",
|
3174
|
+
# values: ["SearchFilterValue"],
|
3175
|
+
# },
|
3176
|
+
# ],
|
3177
|
+
# max_records: 1,
|
3178
|
+
# next_token: "Token",
|
3179
|
+
# }
|
3180
|
+
#
|
3181
|
+
# @!attribute [rw] filters
|
3182
|
+
# Criteria for restricting the resulting list of platform branches.
|
3183
|
+
# The filter is evaluated as a logical conjunction (AND) of the
|
3184
|
+
# separate `SearchFilter` terms.
|
3185
|
+
#
|
3186
|
+
# The following list shows valid attribute values for each of the
|
3187
|
+
# `SearchFilter` terms. Most operators take a single value. The `in`
|
3188
|
+
# and `not_in` operators can take multiple values.
|
3189
|
+
#
|
3190
|
+
# * `Attribute = BranchName`\:
|
3191
|
+
#
|
3192
|
+
# * `Operator`\: `=` \| `!=` \| `begins_with` \| `ends_with` \|
|
3193
|
+
# `contains` \| `in` \| `not_in`
|
3194
|
+
#
|
3195
|
+
# ^
|
3196
|
+
#
|
3197
|
+
# * `Attribute = LifecycleState`\:
|
3198
|
+
#
|
3199
|
+
# * `Operator`\: `=` \| `!=` \| `in` \| `not_in`
|
3200
|
+
#
|
3201
|
+
# * `Values`\: `beta` \| `supported` \| `deprecated` \| `retired`
|
3202
|
+
#
|
3203
|
+
# * `Attribute = PlatformName`\:
|
3204
|
+
#
|
3205
|
+
# * `Operator`\: `=` \| `!=` \| `begins_with` \| `ends_with` \|
|
3206
|
+
# `contains` \| `in` \| `not_in`
|
3207
|
+
#
|
3208
|
+
# ^
|
3209
|
+
#
|
3210
|
+
# * `Attribute = TierType`\:
|
3211
|
+
#
|
3212
|
+
# * `Operator`\: `=` \| `!=`
|
3213
|
+
#
|
3214
|
+
# * `Values`\: `WebServer/Standard` \| `Worker/SQS/HTTP`
|
3215
|
+
#
|
3216
|
+
# Array size: limited to 10 `SearchFilter` objects.
|
3217
|
+
#
|
3218
|
+
# Within each `SearchFilter` item, the `Values` array is limited to 10
|
3219
|
+
# items.
|
3220
|
+
# @return [Array<Types::SearchFilter>]
|
3221
|
+
#
|
3222
|
+
# @!attribute [rw] max_records
|
3223
|
+
# The maximum number of platform branch values returned in one call.
|
3224
|
+
# @return [Integer]
|
3225
|
+
#
|
3226
|
+
# @!attribute [rw] next_token
|
3227
|
+
# For a paginated request. Specify a token from a previous response
|
3228
|
+
# page to retrieve the next response page. All other parameter values
|
3229
|
+
# must be identical to the ones specified in the initial request.
|
3230
|
+
#
|
3231
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
3232
|
+
# @return [String]
|
3233
|
+
#
|
3234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformBranchesRequest AWS API Documentation
|
3235
|
+
#
|
3236
|
+
class ListPlatformBranchesRequest < Struct.new(
|
3237
|
+
:filters,
|
3238
|
+
:max_records,
|
3239
|
+
:next_token)
|
3240
|
+
include Aws::Structure
|
3241
|
+
end
|
3242
|
+
|
3243
|
+
# @!attribute [rw] platform_branch_summary_list
|
3244
|
+
# Summary information about the platform branches.
|
3245
|
+
# @return [Array<Types::PlatformBranchSummary>]
|
3246
|
+
#
|
3247
|
+
# @!attribute [rw] next_token
|
3248
|
+
# In a paginated request, if this value isn't `null`, it's the token
|
3249
|
+
# that you can pass in a subsequent request to get the next response
|
3250
|
+
# page.
|
3251
|
+
# @return [String]
|
3252
|
+
#
|
3253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformBranchesResult AWS API Documentation
|
3254
|
+
#
|
3255
|
+
class ListPlatformBranchesResult < Struct.new(
|
3256
|
+
:platform_branch_summary_list,
|
3257
|
+
:next_token)
|
3258
|
+
include Aws::Structure
|
3259
|
+
end
|
3260
|
+
|
3039
3261
|
# @note When making an API call, you may pass ListPlatformVersionsRequest
|
3040
3262
|
# data as a hash:
|
3041
3263
|
#
|
@@ -3052,17 +3274,21 @@ module Aws::ElasticBeanstalk
|
|
3052
3274
|
# }
|
3053
3275
|
#
|
3054
3276
|
# @!attribute [rw] filters
|
3055
|
-
#
|
3056
|
-
#
|
3277
|
+
# Criteria for restricting the resulting list of platform versions.
|
3278
|
+
# The filter is interpreted as a logical conjunction (AND) of the
|
3279
|
+
# separate `PlatformFilter` terms.
|
3057
3280
|
# @return [Array<Types::PlatformFilter>]
|
3058
3281
|
#
|
3059
3282
|
# @!attribute [rw] max_records
|
3060
|
-
# The maximum number of platform values returned in one call.
|
3283
|
+
# The maximum number of platform version values returned in one call.
|
3061
3284
|
# @return [Integer]
|
3062
3285
|
#
|
3063
3286
|
# @!attribute [rw] next_token
|
3064
|
-
#
|
3065
|
-
#
|
3287
|
+
# For a paginated request. Specify a token from a previous response
|
3288
|
+
# page to retrieve the next response page. All other parameter values
|
3289
|
+
# must be identical to the ones specified in the initial request.
|
3290
|
+
#
|
3291
|
+
# If no `NextToken` is specified, the first page is retrieved.
|
3066
3292
|
# @return [String]
|
3067
3293
|
#
|
3068
3294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersionsRequest AWS API Documentation
|
@@ -3075,13 +3301,13 @@ module Aws::ElasticBeanstalk
|
|
3075
3301
|
end
|
3076
3302
|
|
3077
3303
|
# @!attribute [rw] platform_summary_list
|
3078
|
-
#
|
3304
|
+
# Summary information about the platform versions.
|
3079
3305
|
# @return [Array<Types::PlatformSummary>]
|
3080
3306
|
#
|
3081
3307
|
# @!attribute [rw] next_token
|
3082
|
-
#
|
3083
|
-
#
|
3084
|
-
#
|
3308
|
+
# In a paginated request, if this value isn't `null`, it's the token
|
3309
|
+
# that you can pass in a subsequent request to get the next response
|
3310
|
+
# page.
|
3085
3311
|
# @return [String]
|
3086
3312
|
#
|
3087
3313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersionsResult AWS API Documentation
|
@@ -3103,7 +3329,7 @@ module Aws::ElasticBeanstalk
|
|
3103
3329
|
# The Amazon Resource Name (ARN) of the resouce for which a tag list
|
3104
3330
|
# is requested.
|
3105
3331
|
#
|
3106
|
-
# Must be the ARN of an Elastic Beanstalk
|
3332
|
+
# Must be the ARN of an Elastic Beanstalk resource.
|
3107
3333
|
# @return [String]
|
3108
3334
|
#
|
3109
3335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListTagsForResourceMessage AWS API Documentation
|
@@ -3250,6 +3476,12 @@ module Aws::ElasticBeanstalk
|
|
3250
3476
|
include Aws::Structure
|
3251
3477
|
end
|
3252
3478
|
|
3479
|
+
# Cannot modify the managed action in its current state.
|
3480
|
+
#
|
3481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ManagedActionInvalidStateException AWS API Documentation
|
3482
|
+
#
|
3483
|
+
class ManagedActionInvalidStateException < Aws::EmptyStructure; end
|
3484
|
+
|
3253
3485
|
# A lifecycle rule that deletes application versions after the specified
|
3254
3486
|
# number of days.
|
3255
3487
|
#
|
@@ -3318,6 +3550,13 @@ module Aws::ElasticBeanstalk
|
|
3318
3550
|
include Aws::Structure
|
3319
3551
|
end
|
3320
3552
|
|
3553
|
+
# Unable to perform the specified operation because another operation
|
3554
|
+
# that effects an element in this activity is already in progress.
|
3555
|
+
#
|
3556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/OperationInProgressException AWS API Documentation
|
3557
|
+
#
|
3558
|
+
class OperationInProgressException < Aws::EmptyStructure; end
|
3559
|
+
|
3321
3560
|
# A regular expression representing a restriction on a string
|
3322
3561
|
# configuration option value.
|
3323
3562
|
#
|
@@ -3372,80 +3611,143 @@ module Aws::ElasticBeanstalk
|
|
3372
3611
|
include Aws::Structure
|
3373
3612
|
end
|
3374
3613
|
|
3375
|
-
#
|
3614
|
+
# Summary information about a platform branch.
|
3615
|
+
#
|
3616
|
+
# @!attribute [rw] platform_name
|
3617
|
+
# The name of the platform to which this platform branch belongs.
|
3618
|
+
# @return [String]
|
3619
|
+
#
|
3620
|
+
# @!attribute [rw] branch_name
|
3621
|
+
# The name of the platform branch.
|
3622
|
+
# @return [String]
|
3623
|
+
#
|
3624
|
+
# @!attribute [rw] lifecycle_state
|
3625
|
+
# The support life cycle state of the platform branch.
|
3626
|
+
#
|
3627
|
+
# Possible values: `beta` \| `supported` \| `deprecated` \| `retired`
|
3628
|
+
# @return [String]
|
3629
|
+
#
|
3630
|
+
# @!attribute [rw] branch_order
|
3631
|
+
# An ordinal number that designates the order in which platform
|
3632
|
+
# branches have been added to a platform. This can be helpful, for
|
3633
|
+
# example, if your code calls the `ListPlatformBranches` action and
|
3634
|
+
# then displays a list of platform branches.
|
3635
|
+
#
|
3636
|
+
# A larger `BranchOrder` value designates a newer platform branch
|
3637
|
+
# within the platform.
|
3638
|
+
# @return [Integer]
|
3639
|
+
#
|
3640
|
+
# @!attribute [rw] supported_tier_list
|
3641
|
+
# The environment tiers that platform versions in this branch support.
|
3642
|
+
#
|
3643
|
+
# Possible values: `WebServer/Standard` \| `Worker/SQS/HTTP`
|
3644
|
+
# @return [Array<String>]
|
3645
|
+
#
|
3646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformBranchSummary AWS API Documentation
|
3647
|
+
#
|
3648
|
+
class PlatformBranchSummary < Struct.new(
|
3649
|
+
:platform_name,
|
3650
|
+
:branch_name,
|
3651
|
+
:lifecycle_state,
|
3652
|
+
:branch_order,
|
3653
|
+
:supported_tier_list)
|
3654
|
+
include Aws::Structure
|
3655
|
+
end
|
3656
|
+
|
3657
|
+
# Detailed information about a platform version.
|
3376
3658
|
#
|
3377
3659
|
# @!attribute [rw] platform_arn
|
3378
|
-
# The ARN of the platform.
|
3660
|
+
# The ARN of the platform version.
|
3379
3661
|
# @return [String]
|
3380
3662
|
#
|
3381
3663
|
# @!attribute [rw] platform_owner
|
3382
|
-
# The AWS account ID of the person who created the platform.
|
3664
|
+
# The AWS account ID of the person who created the platform version.
|
3383
3665
|
# @return [String]
|
3384
3666
|
#
|
3385
3667
|
# @!attribute [rw] platform_name
|
3386
|
-
# The name of the platform.
|
3668
|
+
# The name of the platform version.
|
3387
3669
|
# @return [String]
|
3388
3670
|
#
|
3389
3671
|
# @!attribute [rw] platform_version
|
3390
|
-
# The version of the platform.
|
3672
|
+
# The version of the platform version.
|
3391
3673
|
# @return [String]
|
3392
3674
|
#
|
3393
3675
|
# @!attribute [rw] solution_stack_name
|
3394
|
-
# The name of the solution stack used by the platform.
|
3676
|
+
# The name of the solution stack used by the platform version.
|
3395
3677
|
# @return [String]
|
3396
3678
|
#
|
3397
3679
|
# @!attribute [rw] platform_status
|
3398
|
-
# The status of the platform.
|
3680
|
+
# The status of the platform version.
|
3399
3681
|
# @return [String]
|
3400
3682
|
#
|
3401
3683
|
# @!attribute [rw] date_created
|
3402
|
-
# The date when the platform was created.
|
3684
|
+
# The date when the platform version was created.
|
3403
3685
|
# @return [Time]
|
3404
3686
|
#
|
3405
3687
|
# @!attribute [rw] date_updated
|
3406
|
-
# The date when the platform was last updated.
|
3688
|
+
# The date when the platform version was last updated.
|
3407
3689
|
# @return [Time]
|
3408
3690
|
#
|
3409
3691
|
# @!attribute [rw] platform_category
|
3410
|
-
# The category of the platform.
|
3692
|
+
# The category of the platform version.
|
3411
3693
|
# @return [String]
|
3412
3694
|
#
|
3413
3695
|
# @!attribute [rw] description
|
3414
|
-
# The description of the platform.
|
3696
|
+
# The description of the platform version.
|
3415
3697
|
# @return [String]
|
3416
3698
|
#
|
3417
3699
|
# @!attribute [rw] maintainer
|
3418
|
-
# Information about the maintainer of the platform.
|
3700
|
+
# Information about the maintainer of the platform version.
|
3419
3701
|
# @return [String]
|
3420
3702
|
#
|
3421
3703
|
# @!attribute [rw] operating_system_name
|
3422
|
-
# The operating system used by the platform.
|
3704
|
+
# The operating system used by the platform version.
|
3423
3705
|
# @return [String]
|
3424
3706
|
#
|
3425
3707
|
# @!attribute [rw] operating_system_version
|
3426
|
-
# The version of the operating system used by the platform.
|
3708
|
+
# The version of the operating system used by the platform version.
|
3427
3709
|
# @return [String]
|
3428
3710
|
#
|
3429
3711
|
# @!attribute [rw] programming_languages
|
3430
|
-
# The programming languages supported by the platform.
|
3712
|
+
# The programming languages supported by the platform version.
|
3431
3713
|
# @return [Array<Types::PlatformProgrammingLanguage>]
|
3432
3714
|
#
|
3433
3715
|
# @!attribute [rw] frameworks
|
3434
|
-
# The frameworks supported by the platform.
|
3716
|
+
# The frameworks supported by the platform version.
|
3435
3717
|
# @return [Array<Types::PlatformFramework>]
|
3436
3718
|
#
|
3437
3719
|
# @!attribute [rw] custom_ami_list
|
3438
|
-
# The custom AMIs supported by the platform.
|
3720
|
+
# The custom AMIs supported by the platform version.
|
3439
3721
|
# @return [Array<Types::CustomAmi>]
|
3440
3722
|
#
|
3441
3723
|
# @!attribute [rw] supported_tier_list
|
3442
|
-
# The tiers supported by the platform.
|
3724
|
+
# The tiers supported by the platform version.
|
3443
3725
|
# @return [Array<String>]
|
3444
3726
|
#
|
3445
3727
|
# @!attribute [rw] supported_addon_list
|
3446
|
-
# The additions supported by the platform.
|
3728
|
+
# The additions supported by the platform version.
|
3447
3729
|
# @return [Array<String>]
|
3448
3730
|
#
|
3731
|
+
# @!attribute [rw] platform_lifecycle_state
|
3732
|
+
# The state of the platform version in its lifecycle.
|
3733
|
+
#
|
3734
|
+
# Possible values: `Recommended` \| `null`
|
3735
|
+
#
|
3736
|
+
# If a null value is returned, the platform version isn't the
|
3737
|
+
# recommended one for its branch. Each platform branch has a single
|
3738
|
+
# recommended platform version, typically the most recent one.
|
3739
|
+
# @return [String]
|
3740
|
+
#
|
3741
|
+
# @!attribute [rw] platform_branch_name
|
3742
|
+
# The platform branch to which the platform version belongs.
|
3743
|
+
# @return [String]
|
3744
|
+
#
|
3745
|
+
# @!attribute [rw] platform_branch_lifecycle_state
|
3746
|
+
# The state of the platform version's branch in its lifecycle.
|
3747
|
+
#
|
3748
|
+
# Possible values: `Beta` \| `Supported` \| `Deprecated` \| `Retired`
|
3749
|
+
# @return [String]
|
3750
|
+
#
|
3449
3751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformDescription AWS API Documentation
|
3450
3752
|
#
|
3451
3753
|
class PlatformDescription < Struct.new(
|
@@ -3466,16 +3768,17 @@ module Aws::ElasticBeanstalk
|
|
3466
3768
|
:frameworks,
|
3467
3769
|
:custom_ami_list,
|
3468
3770
|
:supported_tier_list,
|
3469
|
-
:supported_addon_list
|
3771
|
+
:supported_addon_list,
|
3772
|
+
:platform_lifecycle_state,
|
3773
|
+
:platform_branch_name,
|
3774
|
+
:platform_branch_lifecycle_state)
|
3470
3775
|
include Aws::Structure
|
3471
3776
|
end
|
3472
3777
|
|
3473
|
-
#
|
3474
|
-
#
|
3475
|
-
#
|
3476
|
-
# The filter is evaluated as the expression:
|
3778
|
+
# Describes criteria to restrict the results when listing platform
|
3779
|
+
# versions.
|
3477
3780
|
#
|
3478
|
-
# `Type
|
3781
|
+
# The filter is evaluated as follows: `Type Operator Values[1]`
|
3479
3782
|
#
|
3480
3783
|
# @note When making an API call, you may pass PlatformFilter
|
3481
3784
|
# data as a hash:
|
@@ -3487,24 +3790,38 @@ module Aws::ElasticBeanstalk
|
|
3487
3790
|
# }
|
3488
3791
|
#
|
3489
3792
|
# @!attribute [rw] type
|
3490
|
-
# The
|
3793
|
+
# The platform version attribute to which the filter values are
|
3491
3794
|
# applied.
|
3492
3795
|
#
|
3493
|
-
# Valid
|
3494
|
-
# `PlatformStatus` \| `
|
3796
|
+
# Valid values: `PlatformName` \| `PlatformVersion` \|
|
3797
|
+
# `PlatformStatus` \| `PlatformBranchName` \| `PlatformLifecycleState`
|
3798
|
+
# \| `PlatformOwner` \| `SupportedTier` \| `SupportedAddon` \|
|
3799
|
+
# `ProgrammingLanguageName` \| `OperatingSystemName`
|
3495
3800
|
# @return [String]
|
3496
3801
|
#
|
3497
3802
|
# @!attribute [rw] operator
|
3498
3803
|
# The operator to apply to the `Type` with each of the `Values`.
|
3499
3804
|
#
|
3500
|
-
# Valid
|
3501
|
-
#
|
3502
|
-
# (greater than or equal to) \| `contains` \| `begins_with` \|
|
3503
|
-
# `ends_with`
|
3805
|
+
# Valid values: `=` \| `!=` \| `<` \| `<=` \| `>` \| `>=` \|
|
3806
|
+
# `contains` \| `begins_with` \| `ends_with`
|
3504
3807
|
# @return [String]
|
3505
3808
|
#
|
3506
3809
|
# @!attribute [rw] values
|
3507
|
-
# The list of values applied to the
|
3810
|
+
# The list of values applied to the filtering platform version
|
3811
|
+
# attribute. Only one value is supported for all current operators.
|
3812
|
+
#
|
3813
|
+
# The following list shows valid filter values for some filter
|
3814
|
+
# attributes.
|
3815
|
+
#
|
3816
|
+
# * `PlatformStatus`\: `Creating` \| `Failed` \| `Ready` \| `Deleting`
|
3817
|
+
# \| `Deleted`
|
3818
|
+
#
|
3819
|
+
# * `PlatformLifecycleState`\: `recommended`
|
3820
|
+
#
|
3821
|
+
# * `SupportedTier`\: `WebServer/Standard` \| `Worker/SQS/HTTP`
|
3822
|
+
#
|
3823
|
+
# * `SupportedAddon`\: `Log/S3` \| `Monitoring/Healthd` \|
|
3824
|
+
# `WorkerDaemon/SQSD`
|
3508
3825
|
# @return [Array<String>]
|
3509
3826
|
#
|
3510
3827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformFilter AWS API Documentation
|
@@ -3516,7 +3833,7 @@ module Aws::ElasticBeanstalk
|
|
3516
3833
|
include Aws::Structure
|
3517
3834
|
end
|
3518
3835
|
|
3519
|
-
# A framework supported by the
|
3836
|
+
# A framework supported by the platform.
|
3520
3837
|
#
|
3521
3838
|
# @!attribute [rw] name
|
3522
3839
|
# The name of the framework.
|
@@ -3552,41 +3869,64 @@ module Aws::ElasticBeanstalk
|
|
3552
3869
|
include Aws::Structure
|
3553
3870
|
end
|
3554
3871
|
|
3555
|
-
#
|
3872
|
+
# Summary information about a platform version.
|
3556
3873
|
#
|
3557
3874
|
# @!attribute [rw] platform_arn
|
3558
|
-
# The ARN of the platform.
|
3875
|
+
# The ARN of the platform version.
|
3559
3876
|
# @return [String]
|
3560
3877
|
#
|
3561
3878
|
# @!attribute [rw] platform_owner
|
3562
|
-
# The AWS account ID of the person who created the platform.
|
3879
|
+
# The AWS account ID of the person who created the platform version.
|
3563
3880
|
# @return [String]
|
3564
3881
|
#
|
3565
3882
|
# @!attribute [rw] platform_status
|
3566
|
-
# The status of the platform. You can create an environment
|
3567
|
-
# platform once it is ready.
|
3883
|
+
# The status of the platform version. You can create an environment
|
3884
|
+
# from the platform version once it is ready.
|
3568
3885
|
# @return [String]
|
3569
3886
|
#
|
3570
3887
|
# @!attribute [rw] platform_category
|
3571
|
-
# The category of platform.
|
3888
|
+
# The category of platform version.
|
3572
3889
|
# @return [String]
|
3573
3890
|
#
|
3574
3891
|
# @!attribute [rw] operating_system_name
|
3575
|
-
# The operating system used by the platform.
|
3892
|
+
# The operating system used by the platform version.
|
3576
3893
|
# @return [String]
|
3577
3894
|
#
|
3578
3895
|
# @!attribute [rw] operating_system_version
|
3579
|
-
# The version of the operating system used by the platform.
|
3896
|
+
# The version of the operating system used by the platform version.
|
3580
3897
|
# @return [String]
|
3581
3898
|
#
|
3582
3899
|
# @!attribute [rw] supported_tier_list
|
3583
|
-
# The tiers in which the platform runs.
|
3900
|
+
# The tiers in which the platform version runs.
|
3584
3901
|
# @return [Array<String>]
|
3585
3902
|
#
|
3586
3903
|
# @!attribute [rw] supported_addon_list
|
3587
|
-
# The additions associated with the platform.
|
3904
|
+
# The additions associated with the platform version.
|
3588
3905
|
# @return [Array<String>]
|
3589
3906
|
#
|
3907
|
+
# @!attribute [rw] platform_lifecycle_state
|
3908
|
+
# The state of the platform version in its lifecycle.
|
3909
|
+
#
|
3910
|
+
# Possible values: `recommended` \| empty
|
3911
|
+
#
|
3912
|
+
# If an empty value is returned, the platform version is supported but
|
3913
|
+
# isn't the recommended one for its branch.
|
3914
|
+
# @return [String]
|
3915
|
+
#
|
3916
|
+
# @!attribute [rw] platform_version
|
3917
|
+
# The version string of the platform version.
|
3918
|
+
# @return [String]
|
3919
|
+
#
|
3920
|
+
# @!attribute [rw] platform_branch_name
|
3921
|
+
# The platform branch to which the platform version belongs.
|
3922
|
+
# @return [String]
|
3923
|
+
#
|
3924
|
+
# @!attribute [rw] platform_branch_lifecycle_state
|
3925
|
+
# The state of the platform version's branch in its lifecycle.
|
3926
|
+
#
|
3927
|
+
# Possible values: `beta` \| `supported` \| `deprecated` \| `retired`
|
3928
|
+
# @return [String]
|
3929
|
+
#
|
3590
3930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformSummary AWS API Documentation
|
3591
3931
|
#
|
3592
3932
|
class PlatformSummary < Struct.new(
|
@@ -3597,10 +3937,21 @@ module Aws::ElasticBeanstalk
|
|
3597
3937
|
:operating_system_name,
|
3598
3938
|
:operating_system_version,
|
3599
3939
|
:supported_tier_list,
|
3600
|
-
:supported_addon_list
|
3940
|
+
:supported_addon_list,
|
3941
|
+
:platform_lifecycle_state,
|
3942
|
+
:platform_version,
|
3943
|
+
:platform_branch_name,
|
3944
|
+
:platform_branch_lifecycle_state)
|
3601
3945
|
include Aws::Structure
|
3602
3946
|
end
|
3603
3947
|
|
3948
|
+
# You cannot delete the platform version because there are still
|
3949
|
+
# environments running on it.
|
3950
|
+
#
|
3951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformVersionStillReferencedException AWS API Documentation
|
3952
|
+
#
|
3953
|
+
class PlatformVersionStillReferencedException < Aws::EmptyStructure; end
|
3954
|
+
|
3604
3955
|
# Describes a queue.
|
3605
3956
|
#
|
3606
3957
|
# @!attribute [rw] name
|
@@ -3698,6 +4049,13 @@ module Aws::ElasticBeanstalk
|
|
3698
4049
|
include Aws::Structure
|
3699
4050
|
end
|
3700
4051
|
|
4052
|
+
# A resource doesn't exist for the specified Amazon Resource Name
|
4053
|
+
# (ARN).
|
4054
|
+
#
|
4055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ResourceNotFoundException AWS API Documentation
|
4056
|
+
#
|
4057
|
+
class ResourceNotFoundException < Aws::EmptyStructure; end
|
4058
|
+
|
3701
4059
|
# The AWS Elastic Beanstalk quota information for a single resource type
|
3702
4060
|
# in an AWS account. It reflects the resource's limits for this
|
3703
4061
|
# account.
|
@@ -3750,7 +4108,7 @@ module Aws::ElasticBeanstalk
|
|
3750
4108
|
end
|
3751
4109
|
|
3752
4110
|
# @!attribute [rw] resource_arn
|
3753
|
-
# The Amazon Resource Name (ARN) of the
|
4111
|
+
# The Amazon Resource Name (ARN) of the resource for which a tag list
|
3754
4112
|
# was requested.
|
3755
4113
|
# @return [String]
|
3756
4114
|
#
|
@@ -3766,6 +4124,13 @@ module Aws::ElasticBeanstalk
|
|
3766
4124
|
include Aws::Structure
|
3767
4125
|
end
|
3768
4126
|
|
4127
|
+
# The type of the specified Amazon Resource Name (ARN) isn't supported
|
4128
|
+
# for this operation.
|
4129
|
+
#
|
4130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ResourceTypeNotSupportedException AWS API Documentation
|
4131
|
+
#
|
4132
|
+
class ResourceTypeNotSupportedException < Aws::EmptyStructure; end
|
4133
|
+
|
3769
4134
|
# @note When making an API call, you may pass RestartAppServerMessage
|
3770
4135
|
# data as a hash:
|
3771
4136
|
#
|
@@ -3884,6 +4249,72 @@ module Aws::ElasticBeanstalk
|
|
3884
4249
|
include Aws::Structure
|
3885
4250
|
end
|
3886
4251
|
|
4252
|
+
# The specified S3 bucket does not belong to the S3 region in which the
|
4253
|
+
# service is running. The following regions are supported:
|
4254
|
+
#
|
4255
|
+
# * IAD/us-east-1
|
4256
|
+
#
|
4257
|
+
# * PDX/us-west-2
|
4258
|
+
#
|
4259
|
+
# * DUB/eu-west-1
|
4260
|
+
#
|
4261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/S3LocationNotInServiceRegionException AWS API Documentation
|
4262
|
+
#
|
4263
|
+
class S3LocationNotInServiceRegionException < Aws::EmptyStructure; end
|
4264
|
+
|
4265
|
+
# The specified account does not have a subscription to Amazon S3.
|
4266
|
+
#
|
4267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/S3SubscriptionRequiredException AWS API Documentation
|
4268
|
+
#
|
4269
|
+
class S3SubscriptionRequiredException < Aws::EmptyStructure; end
|
4270
|
+
|
4271
|
+
# Describes criteria to restrict a list of results.
|
4272
|
+
#
|
4273
|
+
# For operators that apply a single value to the attribute, the filter
|
4274
|
+
# is evaluated as follows: `Attribute Operator Values[1]`
|
4275
|
+
#
|
4276
|
+
# Some operators, e.g. `in`, can apply multiple values. In this case,
|
4277
|
+
# the filter is evaluated as a logical union (OR) of applications of the
|
4278
|
+
# operator to the attribute with each one of the values: `(Attribute
|
4279
|
+
# Operator Values[1]) OR (Attribute Operator Values[2]) OR ...`
|
4280
|
+
#
|
4281
|
+
# The valid values for attributes of `SearchFilter` depend on the API
|
4282
|
+
# action. For valid values, see the reference page for the API action
|
4283
|
+
# you're calling that takes a `SearchFilter` parameter.
|
4284
|
+
#
|
4285
|
+
# @note When making an API call, you may pass SearchFilter
|
4286
|
+
# data as a hash:
|
4287
|
+
#
|
4288
|
+
# {
|
4289
|
+
# attribute: "SearchFilterAttribute",
|
4290
|
+
# operator: "SearchFilterOperator",
|
4291
|
+
# values: ["SearchFilterValue"],
|
4292
|
+
# }
|
4293
|
+
#
|
4294
|
+
# @!attribute [rw] attribute
|
4295
|
+
# The result attribute to which the filter values are applied. Valid
|
4296
|
+
# values vary by API action.
|
4297
|
+
# @return [String]
|
4298
|
+
#
|
4299
|
+
# @!attribute [rw] operator
|
4300
|
+
# The operator to apply to the `Attribute` with each of the `Values`.
|
4301
|
+
# Valid values vary by `Attribute`.
|
4302
|
+
# @return [String]
|
4303
|
+
#
|
4304
|
+
# @!attribute [rw] values
|
4305
|
+
# The list of values applied to the `Attribute` and `Operator`
|
4306
|
+
# attributes. Number of values and valid values vary by `Attribute`.
|
4307
|
+
# @return [Array<String>]
|
4308
|
+
#
|
4309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SearchFilter AWS API Documentation
|
4310
|
+
#
|
4311
|
+
class SearchFilter < Struct.new(
|
4312
|
+
:attribute,
|
4313
|
+
:operator,
|
4314
|
+
:values)
|
4315
|
+
include Aws::Structure
|
4316
|
+
end
|
4317
|
+
|
3887
4318
|
# Detailed health information about an Amazon EC2 instance in your
|
3888
4319
|
# Elastic Beanstalk environment.
|
3889
4320
|
#
|
@@ -4022,7 +4453,14 @@ module Aws::ElasticBeanstalk
|
|
4022
4453
|
include Aws::Structure
|
4023
4454
|
end
|
4024
4455
|
|
4025
|
-
#
|
4456
|
+
# Unable to delete the Amazon S3 source bundle associated with the
|
4457
|
+
# application version. The application version was deleted successfully.
|
4458
|
+
#
|
4459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SourceBundleDeletionException AWS API Documentation
|
4460
|
+
#
|
4461
|
+
class SourceBundleDeletionException < Aws::EmptyStructure; end
|
4462
|
+
|
4463
|
+
# A specification for an environment configuration.
|
4026
4464
|
#
|
4027
4465
|
# @note When making an API call, you may pass SourceConfiguration
|
4028
4466
|
# data as a hash:
|
@@ -4259,6 +4697,55 @@ module Aws::ElasticBeanstalk
|
|
4259
4697
|
include Aws::Structure
|
4260
4698
|
end
|
4261
4699
|
|
4700
|
+
# The specified account has reached its limit of application versions.
|
4701
|
+
#
|
4702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyApplicationVersionsException AWS API Documentation
|
4703
|
+
#
|
4704
|
+
class TooManyApplicationVersionsException < Aws::EmptyStructure; end
|
4705
|
+
|
4706
|
+
# The specified account has reached its limit of applications.
|
4707
|
+
#
|
4708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyApplicationsException AWS API Documentation
|
4709
|
+
#
|
4710
|
+
class TooManyApplicationsException < Aws::EmptyStructure; end
|
4711
|
+
|
4712
|
+
# The specified account has reached its limit of Amazon S3 buckets.
|
4713
|
+
#
|
4714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyBucketsException AWS API Documentation
|
4715
|
+
#
|
4716
|
+
class TooManyBucketsException < Aws::EmptyStructure; end
|
4717
|
+
|
4718
|
+
# The specified account has reached its limit of configuration
|
4719
|
+
# templates.
|
4720
|
+
#
|
4721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyConfigurationTemplatesException AWS API Documentation
|
4722
|
+
#
|
4723
|
+
class TooManyConfigurationTemplatesException < Aws::EmptyStructure; end
|
4724
|
+
|
4725
|
+
# The specified account has reached its limit of environments.
|
4726
|
+
#
|
4727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyEnvironmentsException AWS API Documentation
|
4728
|
+
#
|
4729
|
+
class TooManyEnvironmentsException < Aws::EmptyStructure; end
|
4730
|
+
|
4731
|
+
# You have exceeded the maximum number of allowed platforms associated
|
4732
|
+
# with the account.
|
4733
|
+
#
|
4734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyPlatformsException AWS API Documentation
|
4735
|
+
#
|
4736
|
+
class TooManyPlatformsException < Aws::EmptyStructure; end
|
4737
|
+
|
4738
|
+
# The number of tags in the resource would exceed the number of tags
|
4739
|
+
# that each resource can have.
|
4740
|
+
#
|
4741
|
+
# To calculate this, the operation considers both the number of tags the
|
4742
|
+
# resource already has and the tags this operation would add if it
|
4743
|
+
# succeeded.
|
4744
|
+
#
|
4745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TooManyTagsException AWS API Documentation
|
4746
|
+
#
|
4747
|
+
class TooManyTagsException < Aws::EmptyStructure; end
|
4748
|
+
|
4262
4749
|
# Describes a trigger.
|
4263
4750
|
#
|
4264
4751
|
# @!attribute [rw] name
|
@@ -4602,19 +5089,23 @@ module Aws::ElasticBeanstalk
|
|
4602
5089
|
# @!attribute [rw] resource_arn
|
4603
5090
|
# The Amazon Resource Name (ARN) of the resouce to be updated.
|
4604
5091
|
#
|
4605
|
-
# Must be the ARN of an Elastic Beanstalk
|
5092
|
+
# Must be the ARN of an Elastic Beanstalk resource.
|
4606
5093
|
# @return [String]
|
4607
5094
|
#
|
4608
5095
|
# @!attribute [rw] tags_to_add
|
4609
|
-
# A list of tags to add or update.
|
5096
|
+
# A list of tags to add or update. If a key of an existing tag is
|
5097
|
+
# added, the tag's value is updated.
|
4610
5098
|
#
|
4611
|
-
#
|
5099
|
+
# Specify at least one of these parameters: `TagsToAdd`,
|
5100
|
+
# `TagsToRemove`.
|
4612
5101
|
# @return [Array<Types::Tag>]
|
4613
5102
|
#
|
4614
5103
|
# @!attribute [rw] tags_to_remove
|
4615
|
-
# A list of tag keys to remove.
|
5104
|
+
# A list of tag keys to remove. If a tag key doesn't exist, it is
|
5105
|
+
# silently ignored.
|
4616
5106
|
#
|
4617
|
-
#
|
5107
|
+
# Specify at least one of these parameters: `TagsToAdd`,
|
5108
|
+
# `TagsToRemove`.
|
4618
5109
|
# @return [Array<String>]
|
4619
5110
|
#
|
4620
5111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateTagsForResourceMessage AWS API Documentation
|