aws-sdk-elasticbeanstalk 1.30.0 → 1.35.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 +4 -4
- data/lib/aws-sdk-elasticbeanstalk.rb +4 -1
- data/lib/aws-sdk-elasticbeanstalk/client.rb +230 -8
- data/lib/aws-sdk-elasticbeanstalk/client_api.rb +44 -0
- data/lib/aws-sdk-elasticbeanstalk/customizations.rb +1 -0
- data/lib/aws-sdk-elasticbeanstalk/errors.rb +2 -0
- data/lib/aws-sdk-elasticbeanstalk/resource.rb +2 -0
- data/lib/aws-sdk-elasticbeanstalk/types.rb +216 -7
- data/lib/aws-sdk-elasticbeanstalk/waiters.rb +210 -0
- metadata +5 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::ElasticBeanstalk
|
|
31
33
|
class AbortEnvironmentUpdateMessage < Struct.new(
|
32
34
|
:environment_id,
|
33
35
|
:environment_name)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -80,6 +83,7 @@ module Aws::ElasticBeanstalk
|
|
80
83
|
:versions,
|
81
84
|
:configuration_templates,
|
82
85
|
:resource_lifecycle_config)
|
86
|
+
SENSITIVE = []
|
83
87
|
include Aws::Structure
|
84
88
|
end
|
85
89
|
|
@@ -93,6 +97,7 @@ module Aws::ElasticBeanstalk
|
|
93
97
|
#
|
94
98
|
class ApplicationDescriptionMessage < Struct.new(
|
95
99
|
:application)
|
100
|
+
SENSITIVE = []
|
96
101
|
include Aws::Structure
|
97
102
|
end
|
98
103
|
|
@@ -106,6 +111,7 @@ module Aws::ElasticBeanstalk
|
|
106
111
|
#
|
107
112
|
class ApplicationDescriptionsMessage < Struct.new(
|
108
113
|
:applications)
|
114
|
+
SENSITIVE = []
|
109
115
|
include Aws::Structure
|
110
116
|
end
|
111
117
|
|
@@ -140,6 +146,7 @@ module Aws::ElasticBeanstalk
|
|
140
146
|
:request_count,
|
141
147
|
:status_codes,
|
142
148
|
:latency)
|
149
|
+
SENSITIVE = []
|
143
150
|
include Aws::Structure
|
144
151
|
end
|
145
152
|
|
@@ -192,6 +199,7 @@ module Aws::ElasticBeanstalk
|
|
192
199
|
class ApplicationResourceLifecycleConfig < Struct.new(
|
193
200
|
:service_role,
|
194
201
|
:version_lifecycle_config)
|
202
|
+
SENSITIVE = []
|
195
203
|
include Aws::Structure
|
196
204
|
end
|
197
205
|
|
@@ -208,6 +216,7 @@ module Aws::ElasticBeanstalk
|
|
208
216
|
class ApplicationResourceLifecycleDescriptionMessage < Struct.new(
|
209
217
|
:application_name,
|
210
218
|
:resource_lifecycle_config)
|
219
|
+
SENSITIVE = []
|
211
220
|
include Aws::Structure
|
212
221
|
end
|
213
222
|
|
@@ -290,6 +299,7 @@ module Aws::ElasticBeanstalk
|
|
290
299
|
:date_created,
|
291
300
|
:date_updated,
|
292
301
|
:status)
|
302
|
+
SENSITIVE = []
|
293
303
|
include Aws::Structure
|
294
304
|
end
|
295
305
|
|
@@ -304,6 +314,7 @@ module Aws::ElasticBeanstalk
|
|
304
314
|
#
|
305
315
|
class ApplicationVersionDescriptionMessage < Struct.new(
|
306
316
|
:application_version)
|
317
|
+
SENSITIVE = []
|
307
318
|
include Aws::Structure
|
308
319
|
end
|
309
320
|
|
@@ -324,6 +335,7 @@ module Aws::ElasticBeanstalk
|
|
324
335
|
class ApplicationVersionDescriptionsMessage < Struct.new(
|
325
336
|
:application_versions,
|
326
337
|
:next_token)
|
338
|
+
SENSITIVE = []
|
327
339
|
include Aws::Structure
|
328
340
|
end
|
329
341
|
|
@@ -368,6 +380,7 @@ module Aws::ElasticBeanstalk
|
|
368
380
|
class ApplicationVersionLifecycleConfig < Struct.new(
|
369
381
|
:max_count_rule,
|
370
382
|
:max_age_rule)
|
383
|
+
SENSITIVE = []
|
371
384
|
include Aws::Structure
|
372
385
|
end
|
373
386
|
|
@@ -400,6 +413,7 @@ module Aws::ElasticBeanstalk
|
|
400
413
|
:environment_name,
|
401
414
|
:environment_id,
|
402
415
|
:action_id)
|
416
|
+
SENSITIVE = []
|
403
417
|
include Aws::Structure
|
404
418
|
end
|
405
419
|
|
@@ -428,6 +442,35 @@ module Aws::ElasticBeanstalk
|
|
428
442
|
:action_description,
|
429
443
|
:action_type,
|
430
444
|
:status)
|
445
|
+
SENSITIVE = []
|
446
|
+
include Aws::Structure
|
447
|
+
end
|
448
|
+
|
449
|
+
# Request to add or change the operations role used by an environment.
|
450
|
+
#
|
451
|
+
# @note When making an API call, you may pass AssociateEnvironmentOperationsRoleMessage
|
452
|
+
# data as a hash:
|
453
|
+
#
|
454
|
+
# {
|
455
|
+
# environment_name: "EnvironmentName", # required
|
456
|
+
# operations_role: "OperationsRole", # required
|
457
|
+
# }
|
458
|
+
#
|
459
|
+
# @!attribute [rw] environment_name
|
460
|
+
# The name of the environment to which to set the operations role.
|
461
|
+
# @return [String]
|
462
|
+
#
|
463
|
+
# @!attribute [rw] operations_role
|
464
|
+
# The Amazon Resource Name (ARN) of an existing IAM role to be used as
|
465
|
+
# the environment's operations role.
|
466
|
+
# @return [String]
|
467
|
+
#
|
468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AssociateEnvironmentOperationsRoleMessage AWS API Documentation
|
469
|
+
#
|
470
|
+
class AssociateEnvironmentOperationsRoleMessage < Struct.new(
|
471
|
+
:environment_name,
|
472
|
+
:operations_role)
|
473
|
+
SENSITIVE = []
|
431
474
|
include Aws::Structure
|
432
475
|
end
|
433
476
|
|
@@ -441,6 +484,7 @@ module Aws::ElasticBeanstalk
|
|
441
484
|
#
|
442
485
|
class AutoScalingGroup < Struct.new(
|
443
486
|
:name)
|
487
|
+
SENSITIVE = []
|
444
488
|
include Aws::Structure
|
445
489
|
end
|
446
490
|
|
@@ -503,6 +547,7 @@ module Aws::ElasticBeanstalk
|
|
503
547
|
:compute_type,
|
504
548
|
:image,
|
505
549
|
:timeout_in_minutes)
|
550
|
+
SENSITIVE = []
|
506
551
|
include Aws::Structure
|
507
552
|
end
|
508
553
|
|
@@ -516,6 +561,7 @@ module Aws::ElasticBeanstalk
|
|
516
561
|
#
|
517
562
|
class Builder < Struct.new(
|
518
563
|
:arn)
|
564
|
+
SENSITIVE = []
|
519
565
|
include Aws::Structure
|
520
566
|
end
|
521
567
|
|
@@ -584,6 +630,7 @@ module Aws::ElasticBeanstalk
|
|
584
630
|
:irq,
|
585
631
|
:soft_irq,
|
586
632
|
:privileged)
|
633
|
+
SENSITIVE = []
|
587
634
|
include Aws::Structure
|
588
635
|
end
|
589
636
|
|
@@ -604,6 +651,7 @@ module Aws::ElasticBeanstalk
|
|
604
651
|
#
|
605
652
|
class CheckDNSAvailabilityMessage < Struct.new(
|
606
653
|
:cname_prefix)
|
654
|
+
SENSITIVE = []
|
607
655
|
include Aws::Structure
|
608
656
|
end
|
609
657
|
|
@@ -627,6 +675,7 @@ module Aws::ElasticBeanstalk
|
|
627
675
|
class CheckDNSAvailabilityResultMessage < Struct.new(
|
628
676
|
:available,
|
629
677
|
:fully_qualified_cname)
|
678
|
+
SENSITIVE = []
|
630
679
|
include Aws::Structure
|
631
680
|
end
|
632
681
|
|
@@ -677,6 +726,7 @@ module Aws::ElasticBeanstalk
|
|
677
726
|
:application_name,
|
678
727
|
:group_name,
|
679
728
|
:version_labels)
|
729
|
+
SENSITIVE = []
|
680
730
|
include Aws::Structure
|
681
731
|
end
|
682
732
|
|
@@ -783,6 +833,7 @@ module Aws::ElasticBeanstalk
|
|
783
833
|
:max_value,
|
784
834
|
:max_length,
|
785
835
|
:regex)
|
836
|
+
SENSITIVE = []
|
786
837
|
include Aws::Structure
|
787
838
|
end
|
788
839
|
|
@@ -830,6 +881,7 @@ module Aws::ElasticBeanstalk
|
|
830
881
|
:namespace,
|
831
882
|
:option_name,
|
832
883
|
:value)
|
884
|
+
SENSITIVE = []
|
833
885
|
include Aws::Structure
|
834
886
|
end
|
835
887
|
|
@@ -854,6 +906,7 @@ module Aws::ElasticBeanstalk
|
|
854
906
|
:solution_stack_name,
|
855
907
|
:platform_arn,
|
856
908
|
:options)
|
909
|
+
SENSITIVE = []
|
857
910
|
include Aws::Structure
|
858
911
|
end
|
859
912
|
|
@@ -930,6 +983,7 @@ module Aws::ElasticBeanstalk
|
|
930
983
|
:date_created,
|
931
984
|
:date_updated,
|
932
985
|
:option_settings)
|
986
|
+
SENSITIVE = []
|
933
987
|
include Aws::Structure
|
934
988
|
end
|
935
989
|
|
@@ -944,6 +998,7 @@ module Aws::ElasticBeanstalk
|
|
944
998
|
#
|
945
999
|
class ConfigurationSettingsDescriptions < Struct.new(
|
946
1000
|
:configuration_settings)
|
1001
|
+
SENSITIVE = []
|
947
1002
|
include Aws::Structure
|
948
1003
|
end
|
949
1004
|
|
@@ -957,6 +1012,7 @@ module Aws::ElasticBeanstalk
|
|
957
1012
|
#
|
958
1013
|
class ConfigurationSettingsValidationMessages < Struct.new(
|
959
1014
|
:messages)
|
1015
|
+
SENSITIVE = []
|
960
1016
|
include Aws::Structure
|
961
1017
|
end
|
962
1018
|
|
@@ -1019,6 +1075,7 @@ module Aws::ElasticBeanstalk
|
|
1019
1075
|
:description,
|
1020
1076
|
:resource_lifecycle_config,
|
1021
1077
|
:tags)
|
1078
|
+
SENSITIVE = []
|
1022
1079
|
include Aws::Structure
|
1023
1080
|
end
|
1024
1081
|
|
@@ -1140,6 +1197,7 @@ module Aws::ElasticBeanstalk
|
|
1140
1197
|
:auto_create_application,
|
1141
1198
|
:process,
|
1142
1199
|
:tags)
|
1200
|
+
SENSITIVE = []
|
1143
1201
|
include Aws::Structure
|
1144
1202
|
end
|
1145
1203
|
|
@@ -1279,6 +1337,7 @@ module Aws::ElasticBeanstalk
|
|
1279
1337
|
:description,
|
1280
1338
|
:option_settings,
|
1281
1339
|
:tags)
|
1340
|
+
SENSITIVE = []
|
1282
1341
|
include Aws::Structure
|
1283
1342
|
end
|
1284
1343
|
|
@@ -1321,6 +1380,7 @@ module Aws::ElasticBeanstalk
|
|
1321
1380
|
# option_name: "ConfigurationOptionName",
|
1322
1381
|
# },
|
1323
1382
|
# ],
|
1383
|
+
# operations_role: "OperationsRole",
|
1324
1384
|
# }
|
1325
1385
|
#
|
1326
1386
|
# @!attribute [rw] application_name
|
@@ -1413,7 +1473,7 @@ module Aws::ElasticBeanstalk
|
|
1413
1473
|
#
|
1414
1474
|
# @!attribute [rw] platform_arn
|
1415
1475
|
# The Amazon Resource Name (ARN) of the custom platform to use with
|
1416
|
-
# the environment. For more information, see [
|
1476
|
+
# the environment. For more information, see [Custom Platforms][1] in
|
1417
1477
|
# the *AWS Elastic Beanstalk Developer Guide*.
|
1418
1478
|
#
|
1419
1479
|
# <note markdown="1"> If you specify `PlatformArn`, don't specify `SolutionStackName`.
|
@@ -1437,6 +1497,21 @@ module Aws::ElasticBeanstalk
|
|
1437
1497
|
# the configuration set for this new environment.
|
1438
1498
|
# @return [Array<Types::OptionSpecification>]
|
1439
1499
|
#
|
1500
|
+
# @!attribute [rw] operations_role
|
1501
|
+
# The Amazon Resource Name (ARN) of an existing IAM role to be used as
|
1502
|
+
# the environment's operations role. If specified, Elastic Beanstalk
|
1503
|
+
# uses the operations role for permissions to downstream services
|
1504
|
+
# during this call and during subsequent calls acting on this
|
1505
|
+
# environment. To specify an operations role, you must have the
|
1506
|
+
# `iam:PassRole` permission for the role. For more information, see
|
1507
|
+
# [Operations roles][1] in the *AWS Elastic Beanstalk Developer
|
1508
|
+
# Guide*.
|
1509
|
+
#
|
1510
|
+
#
|
1511
|
+
#
|
1512
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
|
1513
|
+
# @return [String]
|
1514
|
+
#
|
1440
1515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironmentMessage AWS API Documentation
|
1441
1516
|
#
|
1442
1517
|
class CreateEnvironmentMessage < Struct.new(
|
@@ -1452,7 +1527,9 @@ module Aws::ElasticBeanstalk
|
|
1452
1527
|
:solution_stack_name,
|
1453
1528
|
:platform_arn,
|
1454
1529
|
:option_settings,
|
1455
|
-
:options_to_remove
|
1530
|
+
:options_to_remove,
|
1531
|
+
:operations_role)
|
1532
|
+
SENSITIVE = []
|
1456
1533
|
include Aws::Structure
|
1457
1534
|
end
|
1458
1535
|
|
@@ -1523,6 +1600,7 @@ module Aws::ElasticBeanstalk
|
|
1523
1600
|
:environment_name,
|
1524
1601
|
:option_settings,
|
1525
1602
|
:tags)
|
1603
|
+
SENSITIVE = []
|
1526
1604
|
include Aws::Structure
|
1527
1605
|
end
|
1528
1606
|
|
@@ -1539,6 +1617,7 @@ module Aws::ElasticBeanstalk
|
|
1539
1617
|
class CreatePlatformVersionResult < Struct.new(
|
1540
1618
|
:platform_summary,
|
1541
1619
|
:builder)
|
1620
|
+
SENSITIVE = []
|
1542
1621
|
include Aws::Structure
|
1543
1622
|
end
|
1544
1623
|
|
@@ -1552,6 +1631,7 @@ module Aws::ElasticBeanstalk
|
|
1552
1631
|
#
|
1553
1632
|
class CreateStorageLocationResultMessage < Struct.new(
|
1554
1633
|
:s3_bucket)
|
1634
|
+
SENSITIVE = []
|
1555
1635
|
include Aws::Structure
|
1556
1636
|
end
|
1557
1637
|
|
@@ -1570,6 +1650,7 @@ module Aws::ElasticBeanstalk
|
|
1570
1650
|
class CustomAmi < Struct.new(
|
1571
1651
|
:virtualization_type,
|
1572
1652
|
:image_id)
|
1653
|
+
SENSITIVE = []
|
1573
1654
|
include Aws::Structure
|
1574
1655
|
end
|
1575
1656
|
|
@@ -1597,6 +1678,7 @@ module Aws::ElasticBeanstalk
|
|
1597
1678
|
class DeleteApplicationMessage < Struct.new(
|
1598
1679
|
:application_name,
|
1599
1680
|
:terminate_env_by_force)
|
1681
|
+
SENSITIVE = []
|
1600
1682
|
include Aws::Structure
|
1601
1683
|
end
|
1602
1684
|
|
@@ -1631,6 +1713,7 @@ module Aws::ElasticBeanstalk
|
|
1631
1713
|
:application_name,
|
1632
1714
|
:version_label,
|
1633
1715
|
:delete_source_bundle)
|
1716
|
+
SENSITIVE = []
|
1634
1717
|
include Aws::Structure
|
1635
1718
|
end
|
1636
1719
|
|
@@ -1658,6 +1741,7 @@ module Aws::ElasticBeanstalk
|
|
1658
1741
|
class DeleteConfigurationTemplateMessage < Struct.new(
|
1659
1742
|
:application_name,
|
1660
1743
|
:template_name)
|
1744
|
+
SENSITIVE = []
|
1661
1745
|
include Aws::Structure
|
1662
1746
|
end
|
1663
1747
|
|
@@ -1684,6 +1768,7 @@ module Aws::ElasticBeanstalk
|
|
1684
1768
|
class DeleteEnvironmentConfigurationMessage < Struct.new(
|
1685
1769
|
:application_name,
|
1686
1770
|
:environment_name)
|
1771
|
+
SENSITIVE = []
|
1687
1772
|
include Aws::Structure
|
1688
1773
|
end
|
1689
1774
|
|
@@ -1702,6 +1787,7 @@ module Aws::ElasticBeanstalk
|
|
1702
1787
|
#
|
1703
1788
|
class DeletePlatformVersionRequest < Struct.new(
|
1704
1789
|
:platform_arn)
|
1790
|
+
SENSITIVE = []
|
1705
1791
|
include Aws::Structure
|
1706
1792
|
end
|
1707
1793
|
|
@@ -1713,6 +1799,7 @@ module Aws::ElasticBeanstalk
|
|
1713
1799
|
#
|
1714
1800
|
class DeletePlatformVersionResult < Struct.new(
|
1715
1801
|
:platform_summary)
|
1802
|
+
SENSITIVE = []
|
1716
1803
|
include Aws::Structure
|
1717
1804
|
end
|
1718
1805
|
|
@@ -1751,6 +1838,7 @@ module Aws::ElasticBeanstalk
|
|
1751
1838
|
:deployment_id,
|
1752
1839
|
:status,
|
1753
1840
|
:deployment_time)
|
1841
|
+
SENSITIVE = []
|
1754
1842
|
include Aws::Structure
|
1755
1843
|
end
|
1756
1844
|
|
@@ -1763,6 +1851,7 @@ module Aws::ElasticBeanstalk
|
|
1763
1851
|
#
|
1764
1852
|
class DescribeAccountAttributesResult < Struct.new(
|
1765
1853
|
:resource_quotas)
|
1854
|
+
SENSITIVE = []
|
1766
1855
|
include Aws::Structure
|
1767
1856
|
end
|
1768
1857
|
|
@@ -1810,6 +1899,7 @@ module Aws::ElasticBeanstalk
|
|
1810
1899
|
:version_labels,
|
1811
1900
|
:max_records,
|
1812
1901
|
:next_token)
|
1902
|
+
SENSITIVE = []
|
1813
1903
|
include Aws::Structure
|
1814
1904
|
end
|
1815
1905
|
|
@@ -1831,6 +1921,7 @@ module Aws::ElasticBeanstalk
|
|
1831
1921
|
#
|
1832
1922
|
class DescribeApplicationsMessage < Struct.new(
|
1833
1923
|
:application_names)
|
1924
|
+
SENSITIVE = []
|
1834
1925
|
include Aws::Structure
|
1835
1926
|
end
|
1836
1927
|
|
@@ -1894,6 +1985,7 @@ module Aws::ElasticBeanstalk
|
|
1894
1985
|
:solution_stack_name,
|
1895
1986
|
:platform_arn,
|
1896
1987
|
:options)
|
1988
|
+
SENSITIVE = []
|
1897
1989
|
include Aws::Structure
|
1898
1990
|
end
|
1899
1991
|
|
@@ -1938,6 +2030,7 @@ module Aws::ElasticBeanstalk
|
|
1938
2030
|
:application_name,
|
1939
2031
|
:template_name,
|
1940
2032
|
:environment_name)
|
2033
|
+
SENSITIVE = []
|
1941
2034
|
include Aws::Structure
|
1942
2035
|
end
|
1943
2036
|
|
@@ -1976,6 +2069,7 @@ module Aws::ElasticBeanstalk
|
|
1976
2069
|
:environment_name,
|
1977
2070
|
:environment_id,
|
1978
2071
|
:attribute_names)
|
2072
|
+
SENSITIVE = []
|
1979
2073
|
include Aws::Structure
|
1980
2074
|
end
|
1981
2075
|
|
@@ -2034,6 +2128,7 @@ module Aws::ElasticBeanstalk
|
|
2034
2128
|
:application_metrics,
|
2035
2129
|
:instances_health,
|
2036
2130
|
:refreshed_at)
|
2131
|
+
SENSITIVE = []
|
2037
2132
|
include Aws::Structure
|
2038
2133
|
end
|
2039
2134
|
|
@@ -2072,6 +2167,7 @@ module Aws::ElasticBeanstalk
|
|
2072
2167
|
:environment_name,
|
2073
2168
|
:next_token,
|
2074
2169
|
:max_items)
|
2170
|
+
SENSITIVE = []
|
2075
2171
|
include Aws::Structure
|
2076
2172
|
end
|
2077
2173
|
|
@@ -2093,6 +2189,7 @@ module Aws::ElasticBeanstalk
|
|
2093
2189
|
class DescribeEnvironmentManagedActionHistoryResult < Struct.new(
|
2094
2190
|
:managed_action_history_items,
|
2095
2191
|
:next_token)
|
2192
|
+
SENSITIVE = []
|
2096
2193
|
include Aws::Structure
|
2097
2194
|
end
|
2098
2195
|
|
@@ -2126,6 +2223,7 @@ module Aws::ElasticBeanstalk
|
|
2126
2223
|
:environment_name,
|
2127
2224
|
:environment_id,
|
2128
2225
|
:status)
|
2226
|
+
SENSITIVE = []
|
2129
2227
|
include Aws::Structure
|
2130
2228
|
end
|
2131
2229
|
|
@@ -2139,6 +2237,7 @@ module Aws::ElasticBeanstalk
|
|
2139
2237
|
#
|
2140
2238
|
class DescribeEnvironmentManagedActionsResult < Struct.new(
|
2141
2239
|
:managed_actions)
|
2240
|
+
SENSITIVE = []
|
2142
2241
|
include Aws::Structure
|
2143
2242
|
end
|
2144
2243
|
|
@@ -2173,6 +2272,7 @@ module Aws::ElasticBeanstalk
|
|
2173
2272
|
class DescribeEnvironmentResourcesMessage < Struct.new(
|
2174
2273
|
:environment_id,
|
2175
2274
|
:environment_name)
|
2275
|
+
SENSITIVE = []
|
2176
2276
|
include Aws::Structure
|
2177
2277
|
end
|
2178
2278
|
|
@@ -2255,6 +2355,7 @@ module Aws::ElasticBeanstalk
|
|
2255
2355
|
:included_deleted_back_to,
|
2256
2356
|
:max_records,
|
2257
2357
|
:next_token)
|
2358
|
+
SENSITIVE = []
|
2258
2359
|
include Aws::Structure
|
2259
2360
|
end
|
2260
2361
|
|
@@ -2356,6 +2457,7 @@ module Aws::ElasticBeanstalk
|
|
2356
2457
|
:end_time,
|
2357
2458
|
:max_records,
|
2358
2459
|
:next_token)
|
2460
|
+
SENSITIVE = []
|
2359
2461
|
include Aws::Structure
|
2360
2462
|
end
|
2361
2463
|
|
@@ -2396,6 +2498,7 @@ module Aws::ElasticBeanstalk
|
|
2396
2498
|
:environment_id,
|
2397
2499
|
:attribute_names,
|
2398
2500
|
:next_token)
|
2501
|
+
SENSITIVE = []
|
2399
2502
|
include Aws::Structure
|
2400
2503
|
end
|
2401
2504
|
|
@@ -2424,6 +2527,7 @@ module Aws::ElasticBeanstalk
|
|
2424
2527
|
:instance_health_list,
|
2425
2528
|
:refreshed_at,
|
2426
2529
|
:next_token)
|
2530
|
+
SENSITIVE = []
|
2427
2531
|
include Aws::Structure
|
2428
2532
|
end
|
2429
2533
|
|
@@ -2442,6 +2546,7 @@ module Aws::ElasticBeanstalk
|
|
2442
2546
|
#
|
2443
2547
|
class DescribePlatformVersionRequest < Struct.new(
|
2444
2548
|
:platform_arn)
|
2549
|
+
SENSITIVE = []
|
2445
2550
|
include Aws::Structure
|
2446
2551
|
end
|
2447
2552
|
|
@@ -2453,6 +2558,29 @@ module Aws::ElasticBeanstalk
|
|
2453
2558
|
#
|
2454
2559
|
class DescribePlatformVersionResult < Struct.new(
|
2455
2560
|
:platform_description)
|
2561
|
+
SENSITIVE = []
|
2562
|
+
include Aws::Structure
|
2563
|
+
end
|
2564
|
+
|
2565
|
+
# Request to disassociate the operations role from an environment.
|
2566
|
+
#
|
2567
|
+
# @note When making an API call, you may pass DisassociateEnvironmentOperationsRoleMessage
|
2568
|
+
# data as a hash:
|
2569
|
+
#
|
2570
|
+
# {
|
2571
|
+
# environment_name: "EnvironmentName", # required
|
2572
|
+
# }
|
2573
|
+
#
|
2574
|
+
# @!attribute [rw] environment_name
|
2575
|
+
# The name of the environment from which to disassociate the
|
2576
|
+
# operations role.
|
2577
|
+
# @return [String]
|
2578
|
+
#
|
2579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DisassociateEnvironmentOperationsRoleMessage AWS API Documentation
|
2580
|
+
#
|
2581
|
+
class DisassociateEnvironmentOperationsRoleMessage < Struct.new(
|
2582
|
+
:environment_name)
|
2583
|
+
SENSITIVE = []
|
2456
2584
|
include Aws::Structure
|
2457
2585
|
end
|
2458
2586
|
|
@@ -2466,6 +2594,7 @@ module Aws::ElasticBeanstalk
|
|
2466
2594
|
#
|
2467
2595
|
class ElasticBeanstalkServiceException < Struct.new(
|
2468
2596
|
:message)
|
2597
|
+
SENSITIVE = []
|
2469
2598
|
include Aws::Structure
|
2470
2599
|
end
|
2471
2600
|
|
@@ -2595,6 +2724,16 @@ module Aws::ElasticBeanstalk
|
|
2595
2724
|
# other API requests that require an ARN.
|
2596
2725
|
# @return [String]
|
2597
2726
|
#
|
2727
|
+
# @!attribute [rw] operations_role
|
2728
|
+
# The Amazon Resource Name (ARN) of the environment's operations
|
2729
|
+
# role. For more information, see [Operations roles][1] in the *AWS
|
2730
|
+
# Elastic Beanstalk Developer Guide*.
|
2731
|
+
#
|
2732
|
+
#
|
2733
|
+
#
|
2734
|
+
# [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
|
2735
|
+
# @return [String]
|
2736
|
+
#
|
2598
2737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentDescription AWS API Documentation
|
2599
2738
|
#
|
2600
2739
|
class EnvironmentDescription < Struct.new(
|
@@ -2617,7 +2756,9 @@ module Aws::ElasticBeanstalk
|
|
2617
2756
|
:resources,
|
2618
2757
|
:tier,
|
2619
2758
|
:environment_links,
|
2620
|
-
:environment_arn
|
2759
|
+
:environment_arn,
|
2760
|
+
:operations_role)
|
2761
|
+
SENSITIVE = []
|
2621
2762
|
include Aws::Structure
|
2622
2763
|
end
|
2623
2764
|
|
@@ -2637,6 +2778,7 @@ module Aws::ElasticBeanstalk
|
|
2637
2778
|
class EnvironmentDescriptionsMessage < Struct.new(
|
2638
2779
|
:environments,
|
2639
2780
|
:next_token)
|
2781
|
+
SENSITIVE = []
|
2640
2782
|
include Aws::Structure
|
2641
2783
|
end
|
2642
2784
|
|
@@ -2669,6 +2811,7 @@ module Aws::ElasticBeanstalk
|
|
2669
2811
|
:ec2_instance_id,
|
2670
2812
|
:sample_timestamp,
|
2671
2813
|
:message)
|
2814
|
+
SENSITIVE = []
|
2672
2815
|
include Aws::Structure
|
2673
2816
|
end
|
2674
2817
|
|
@@ -2694,6 +2837,7 @@ module Aws::ElasticBeanstalk
|
|
2694
2837
|
class EnvironmentLink < Struct.new(
|
2695
2838
|
:link_name,
|
2696
2839
|
:environment_name)
|
2840
|
+
SENSITIVE = []
|
2697
2841
|
include Aws::Structure
|
2698
2842
|
end
|
2699
2843
|
|
@@ -2743,6 +2887,7 @@ module Aws::ElasticBeanstalk
|
|
2743
2887
|
:load_balancers,
|
2744
2888
|
:triggers,
|
2745
2889
|
:queues)
|
2890
|
+
SENSITIVE = []
|
2746
2891
|
include Aws::Structure
|
2747
2892
|
end
|
2748
2893
|
|
@@ -2756,6 +2901,7 @@ module Aws::ElasticBeanstalk
|
|
2756
2901
|
#
|
2757
2902
|
class EnvironmentResourceDescriptionsMessage < Struct.new(
|
2758
2903
|
:environment_resources)
|
2904
|
+
SENSITIVE = []
|
2759
2905
|
include Aws::Structure
|
2760
2906
|
end
|
2761
2907
|
|
@@ -2770,6 +2916,7 @@ module Aws::ElasticBeanstalk
|
|
2770
2916
|
#
|
2771
2917
|
class EnvironmentResourcesDescription < Struct.new(
|
2772
2918
|
:load_balancer)
|
2919
|
+
SENSITIVE = []
|
2773
2920
|
include Aws::Structure
|
2774
2921
|
end
|
2775
2922
|
|
@@ -2821,6 +2968,7 @@ module Aws::ElasticBeanstalk
|
|
2821
2968
|
:name,
|
2822
2969
|
:type,
|
2823
2970
|
:version)
|
2971
|
+
SENSITIVE = []
|
2824
2972
|
include Aws::Structure
|
2825
2973
|
end
|
2826
2974
|
|
@@ -2875,6 +3023,7 @@ module Aws::ElasticBeanstalk
|
|
2875
3023
|
:platform_arn,
|
2876
3024
|
:request_id,
|
2877
3025
|
:severity)
|
3026
|
+
SENSITIVE = []
|
2878
3027
|
include Aws::Structure
|
2879
3028
|
end
|
2880
3029
|
|
@@ -2895,6 +3044,7 @@ module Aws::ElasticBeanstalk
|
|
2895
3044
|
class EventDescriptionsMessage < Struct.new(
|
2896
3045
|
:events,
|
2897
3046
|
:next_token)
|
3047
|
+
SENSITIVE = []
|
2898
3048
|
include Aws::Structure
|
2899
3049
|
end
|
2900
3050
|
|
@@ -2908,6 +3058,7 @@ module Aws::ElasticBeanstalk
|
|
2908
3058
|
#
|
2909
3059
|
class Instance < Struct.new(
|
2910
3060
|
:id)
|
3061
|
+
SENSITIVE = []
|
2911
3062
|
include Aws::Structure
|
2912
3063
|
end
|
2913
3064
|
|
@@ -2968,6 +3119,7 @@ module Aws::ElasticBeanstalk
|
|
2968
3119
|
:warning,
|
2969
3120
|
:degraded,
|
2970
3121
|
:severe)
|
3122
|
+
SENSITIVE = []
|
2971
3123
|
include Aws::Structure
|
2972
3124
|
end
|
2973
3125
|
|
@@ -3039,6 +3191,7 @@ module Aws::ElasticBeanstalk
|
|
3039
3191
|
:p75,
|
3040
3192
|
:p50,
|
3041
3193
|
:p10)
|
3194
|
+
SENSITIVE = []
|
3042
3195
|
include Aws::Structure
|
3043
3196
|
end
|
3044
3197
|
|
@@ -3052,6 +3205,7 @@ module Aws::ElasticBeanstalk
|
|
3052
3205
|
#
|
3053
3206
|
class LaunchConfiguration < Struct.new(
|
3054
3207
|
:name)
|
3208
|
+
SENSITIVE = []
|
3055
3209
|
include Aws::Structure
|
3056
3210
|
end
|
3057
3211
|
|
@@ -3065,6 +3219,7 @@ module Aws::ElasticBeanstalk
|
|
3065
3219
|
#
|
3066
3220
|
class LaunchTemplate < Struct.new(
|
3067
3221
|
:id)
|
3222
|
+
SENSITIVE = []
|
3068
3223
|
include Aws::Structure
|
3069
3224
|
end
|
3070
3225
|
|
@@ -3084,6 +3239,7 @@ module Aws::ElasticBeanstalk
|
|
3084
3239
|
class ListAvailableSolutionStacksResultMessage < Struct.new(
|
3085
3240
|
:solution_stacks,
|
3086
3241
|
:solution_stack_details)
|
3242
|
+
SENSITIVE = []
|
3087
3243
|
include Aws::Structure
|
3088
3244
|
end
|
3089
3245
|
|
@@ -3161,6 +3317,7 @@ module Aws::ElasticBeanstalk
|
|
3161
3317
|
:filters,
|
3162
3318
|
:max_records,
|
3163
3319
|
:next_token)
|
3320
|
+
SENSITIVE = []
|
3164
3321
|
include Aws::Structure
|
3165
3322
|
end
|
3166
3323
|
|
@@ -3179,6 +3336,7 @@ module Aws::ElasticBeanstalk
|
|
3179
3336
|
class ListPlatformBranchesResult < Struct.new(
|
3180
3337
|
:platform_branch_summary_list,
|
3181
3338
|
:next_token)
|
3339
|
+
SENSITIVE = []
|
3182
3340
|
include Aws::Structure
|
3183
3341
|
end
|
3184
3342
|
|
@@ -3221,6 +3379,7 @@ module Aws::ElasticBeanstalk
|
|
3221
3379
|
:filters,
|
3222
3380
|
:max_records,
|
3223
3381
|
:next_token)
|
3382
|
+
SENSITIVE = []
|
3224
3383
|
include Aws::Structure
|
3225
3384
|
end
|
3226
3385
|
|
@@ -3239,6 +3398,7 @@ module Aws::ElasticBeanstalk
|
|
3239
3398
|
class ListPlatformVersionsResult < Struct.new(
|
3240
3399
|
:platform_summary_list,
|
3241
3400
|
:next_token)
|
3401
|
+
SENSITIVE = []
|
3242
3402
|
include Aws::Structure
|
3243
3403
|
end
|
3244
3404
|
|
@@ -3260,6 +3420,7 @@ module Aws::ElasticBeanstalk
|
|
3260
3420
|
#
|
3261
3421
|
class ListTagsForResourceMessage < Struct.new(
|
3262
3422
|
:resource_arn)
|
3423
|
+
SENSITIVE = []
|
3263
3424
|
include Aws::Structure
|
3264
3425
|
end
|
3265
3426
|
|
@@ -3278,6 +3439,7 @@ module Aws::ElasticBeanstalk
|
|
3278
3439
|
class Listener < Struct.new(
|
3279
3440
|
:protocol,
|
3280
3441
|
:port)
|
3442
|
+
SENSITIVE = []
|
3281
3443
|
include Aws::Structure
|
3282
3444
|
end
|
3283
3445
|
|
@@ -3291,6 +3453,7 @@ module Aws::ElasticBeanstalk
|
|
3291
3453
|
#
|
3292
3454
|
class LoadBalancer < Struct.new(
|
3293
3455
|
:name)
|
3456
|
+
SENSITIVE = []
|
3294
3457
|
include Aws::Structure
|
3295
3458
|
end
|
3296
3459
|
|
@@ -3314,6 +3477,7 @@ module Aws::ElasticBeanstalk
|
|
3314
3477
|
:load_balancer_name,
|
3315
3478
|
:domain,
|
3316
3479
|
:listeners)
|
3480
|
+
SENSITIVE = []
|
3317
3481
|
include Aws::Structure
|
3318
3482
|
end
|
3319
3483
|
|
@@ -3349,6 +3513,7 @@ module Aws::ElasticBeanstalk
|
|
3349
3513
|
:action_type,
|
3350
3514
|
:status,
|
3351
3515
|
:window_start_time)
|
3516
|
+
SENSITIVE = []
|
3352
3517
|
include Aws::Structure
|
3353
3518
|
end
|
3354
3519
|
|
@@ -3397,6 +3562,7 @@ module Aws::ElasticBeanstalk
|
|
3397
3562
|
:failure_description,
|
3398
3563
|
:executed_time,
|
3399
3564
|
:finished_time)
|
3565
|
+
SENSITIVE = []
|
3400
3566
|
include Aws::Structure
|
3401
3567
|
end
|
3402
3568
|
|
@@ -3437,6 +3603,7 @@ module Aws::ElasticBeanstalk
|
|
3437
3603
|
:enabled,
|
3438
3604
|
:max_age_in_days,
|
3439
3605
|
:delete_source_from_s3)
|
3606
|
+
SENSITIVE = []
|
3440
3607
|
include Aws::Structure
|
3441
3608
|
end
|
3442
3609
|
|
@@ -3471,6 +3638,7 @@ module Aws::ElasticBeanstalk
|
|
3471
3638
|
:enabled,
|
3472
3639
|
:max_count,
|
3473
3640
|
:delete_source_from_s3)
|
3641
|
+
SENSITIVE = []
|
3474
3642
|
include Aws::Structure
|
3475
3643
|
end
|
3476
3644
|
|
@@ -3498,6 +3666,7 @@ module Aws::ElasticBeanstalk
|
|
3498
3666
|
class OptionRestrictionRegex < Struct.new(
|
3499
3667
|
:pattern,
|
3500
3668
|
:label)
|
3669
|
+
SENSITIVE = []
|
3501
3670
|
include Aws::Structure
|
3502
3671
|
end
|
3503
3672
|
|
@@ -3532,6 +3701,7 @@ module Aws::ElasticBeanstalk
|
|
3532
3701
|
:resource_name,
|
3533
3702
|
:namespace,
|
3534
3703
|
:option_name)
|
3704
|
+
SENSITIVE = []
|
3535
3705
|
include Aws::Structure
|
3536
3706
|
end
|
3537
3707
|
|
@@ -3575,6 +3745,7 @@ module Aws::ElasticBeanstalk
|
|
3575
3745
|
:lifecycle_state,
|
3576
3746
|
:branch_order,
|
3577
3747
|
:supported_tier_list)
|
3748
|
+
SENSITIVE = []
|
3578
3749
|
include Aws::Structure
|
3579
3750
|
end
|
3580
3751
|
|
@@ -3696,6 +3867,7 @@ module Aws::ElasticBeanstalk
|
|
3696
3867
|
:platform_lifecycle_state,
|
3697
3868
|
:platform_branch_name,
|
3698
3869
|
:platform_branch_lifecycle_state)
|
3870
|
+
SENSITIVE = []
|
3699
3871
|
include Aws::Structure
|
3700
3872
|
end
|
3701
3873
|
|
@@ -3754,6 +3926,7 @@ module Aws::ElasticBeanstalk
|
|
3754
3926
|
:type,
|
3755
3927
|
:operator,
|
3756
3928
|
:values)
|
3929
|
+
SENSITIVE = []
|
3757
3930
|
include Aws::Structure
|
3758
3931
|
end
|
3759
3932
|
|
@@ -3772,6 +3945,7 @@ module Aws::ElasticBeanstalk
|
|
3772
3945
|
class PlatformFramework < Struct.new(
|
3773
3946
|
:name,
|
3774
3947
|
:version)
|
3948
|
+
SENSITIVE = []
|
3775
3949
|
include Aws::Structure
|
3776
3950
|
end
|
3777
3951
|
|
@@ -3790,6 +3964,7 @@ module Aws::ElasticBeanstalk
|
|
3790
3964
|
class PlatformProgrammingLanguage < Struct.new(
|
3791
3965
|
:name,
|
3792
3966
|
:version)
|
3967
|
+
SENSITIVE = []
|
3793
3968
|
include Aws::Structure
|
3794
3969
|
end
|
3795
3970
|
|
@@ -3866,6 +4041,7 @@ module Aws::ElasticBeanstalk
|
|
3866
4041
|
:platform_version,
|
3867
4042
|
:platform_branch_name,
|
3868
4043
|
:platform_branch_lifecycle_state)
|
4044
|
+
SENSITIVE = []
|
3869
4045
|
include Aws::Structure
|
3870
4046
|
end
|
3871
4047
|
|
@@ -3891,6 +4067,7 @@ module Aws::ElasticBeanstalk
|
|
3891
4067
|
class Queue < Struct.new(
|
3892
4068
|
:name,
|
3893
4069
|
:url)
|
4070
|
+
SENSITIVE = []
|
3894
4071
|
include Aws::Structure
|
3895
4072
|
end
|
3896
4073
|
|
@@ -3923,6 +4100,7 @@ module Aws::ElasticBeanstalk
|
|
3923
4100
|
class RebuildEnvironmentMessage < Struct.new(
|
3924
4101
|
:environment_id,
|
3925
4102
|
:environment_name)
|
4103
|
+
SENSITIVE = []
|
3926
4104
|
include Aws::Structure
|
3927
4105
|
end
|
3928
4106
|
|
@@ -3970,6 +4148,7 @@ module Aws::ElasticBeanstalk
|
|
3970
4148
|
:environment_id,
|
3971
4149
|
:environment_name,
|
3972
4150
|
:info_type)
|
4151
|
+
SENSITIVE = []
|
3973
4152
|
include Aws::Structure
|
3974
4153
|
end
|
3975
4154
|
|
@@ -3993,6 +4172,7 @@ module Aws::ElasticBeanstalk
|
|
3993
4172
|
#
|
3994
4173
|
class ResourceQuota < Struct.new(
|
3995
4174
|
:maximum)
|
4175
|
+
SENSITIVE = []
|
3996
4176
|
include Aws::Structure
|
3997
4177
|
end
|
3998
4178
|
|
@@ -4028,6 +4208,7 @@ module Aws::ElasticBeanstalk
|
|
4028
4208
|
:environment_quota,
|
4029
4209
|
:configuration_template_quota,
|
4030
4210
|
:custom_platform_quota)
|
4211
|
+
SENSITIVE = []
|
4031
4212
|
include Aws::Structure
|
4032
4213
|
end
|
4033
4214
|
|
@@ -4045,6 +4226,7 @@ module Aws::ElasticBeanstalk
|
|
4045
4226
|
class ResourceTagsDescriptionMessage < Struct.new(
|
4046
4227
|
:resource_arn,
|
4047
4228
|
:resource_tags)
|
4229
|
+
SENSITIVE = []
|
4048
4230
|
include Aws::Structure
|
4049
4231
|
end
|
4050
4232
|
|
@@ -4084,6 +4266,7 @@ module Aws::ElasticBeanstalk
|
|
4084
4266
|
class RestartAppServerMessage < Struct.new(
|
4085
4267
|
:environment_id,
|
4086
4268
|
:environment_name)
|
4269
|
+
SENSITIVE = []
|
4087
4270
|
include Aws::Structure
|
4088
4271
|
end
|
4089
4272
|
|
@@ -4130,6 +4313,7 @@ module Aws::ElasticBeanstalk
|
|
4130
4313
|
:environment_id,
|
4131
4314
|
:environment_name,
|
4132
4315
|
:info_type)
|
4316
|
+
SENSITIVE = []
|
4133
4317
|
include Aws::Structure
|
4134
4318
|
end
|
4135
4319
|
|
@@ -4144,6 +4328,7 @@ module Aws::ElasticBeanstalk
|
|
4144
4328
|
#
|
4145
4329
|
class RetrieveEnvironmentInfoResultMessage < Struct.new(
|
4146
4330
|
:environment_info)
|
4331
|
+
SENSITIVE = []
|
4147
4332
|
include Aws::Structure
|
4148
4333
|
end
|
4149
4334
|
|
@@ -4170,6 +4355,7 @@ module Aws::ElasticBeanstalk
|
|
4170
4355
|
class S3Location < Struct.new(
|
4171
4356
|
:s3_bucket,
|
4172
4357
|
:s3_key)
|
4358
|
+
SENSITIVE = []
|
4173
4359
|
include Aws::Structure
|
4174
4360
|
end
|
4175
4361
|
|
@@ -4236,6 +4422,7 @@ module Aws::ElasticBeanstalk
|
|
4236
4422
|
:attribute,
|
4237
4423
|
:operator,
|
4238
4424
|
:values)
|
4425
|
+
SENSITIVE = []
|
4239
4426
|
include Aws::Structure
|
4240
4427
|
end
|
4241
4428
|
|
@@ -4307,6 +4494,7 @@ module Aws::ElasticBeanstalk
|
|
4307
4494
|
:deployment,
|
4308
4495
|
:availability_zone,
|
4309
4496
|
:instance_type)
|
4497
|
+
SENSITIVE = []
|
4310
4498
|
include Aws::Structure
|
4311
4499
|
end
|
4312
4500
|
|
@@ -4325,6 +4513,7 @@ module Aws::ElasticBeanstalk
|
|
4325
4513
|
class SolutionStackDescription < Struct.new(
|
4326
4514
|
:solution_stack_name,
|
4327
4515
|
:permitted_file_types)
|
4516
|
+
SENSITIVE = []
|
4328
4517
|
include Aws::Structure
|
4329
4518
|
end
|
4330
4519
|
|
@@ -4374,6 +4563,7 @@ module Aws::ElasticBeanstalk
|
|
4374
4563
|
:source_type,
|
4375
4564
|
:source_repository,
|
4376
4565
|
:source_location)
|
4566
|
+
SENSITIVE = []
|
4377
4567
|
include Aws::Structure
|
4378
4568
|
end
|
4379
4569
|
|
@@ -4407,6 +4597,7 @@ module Aws::ElasticBeanstalk
|
|
4407
4597
|
class SourceConfiguration < Struct.new(
|
4408
4598
|
:application_name,
|
4409
4599
|
:template_name)
|
4600
|
+
SENSITIVE = []
|
4410
4601
|
include Aws::Structure
|
4411
4602
|
end
|
4412
4603
|
|
@@ -4445,6 +4636,7 @@ module Aws::ElasticBeanstalk
|
|
4445
4636
|
:status_3xx,
|
4446
4637
|
:status_4xx,
|
4447
4638
|
:status_5xx)
|
4639
|
+
SENSITIVE = []
|
4448
4640
|
include Aws::Structure
|
4449
4641
|
end
|
4450
4642
|
|
@@ -4503,6 +4695,7 @@ module Aws::ElasticBeanstalk
|
|
4503
4695
|
:source_environment_name,
|
4504
4696
|
:destination_environment_id,
|
4505
4697
|
:destination_environment_name)
|
4698
|
+
SENSITIVE = []
|
4506
4699
|
include Aws::Structure
|
4507
4700
|
end
|
4508
4701
|
|
@@ -4526,6 +4719,7 @@ module Aws::ElasticBeanstalk
|
|
4526
4719
|
class SystemStatus < Struct.new(
|
4527
4720
|
:cpu_utilization,
|
4528
4721
|
:load_average)
|
4722
|
+
SENSITIVE = []
|
4529
4723
|
include Aws::Structure
|
4530
4724
|
end
|
4531
4725
|
|
@@ -4552,6 +4746,7 @@ module Aws::ElasticBeanstalk
|
|
4552
4746
|
class Tag < Struct.new(
|
4553
4747
|
:key,
|
4554
4748
|
:value)
|
4749
|
+
SENSITIVE = []
|
4555
4750
|
include Aws::Structure
|
4556
4751
|
end
|
4557
4752
|
|
@@ -4618,6 +4813,7 @@ module Aws::ElasticBeanstalk
|
|
4618
4813
|
:environment_name,
|
4619
4814
|
:terminate_resources,
|
4620
4815
|
:force_terminate)
|
4816
|
+
SENSITIVE = []
|
4621
4817
|
include Aws::Structure
|
4622
4818
|
end
|
4623
4819
|
|
@@ -4680,6 +4876,7 @@ module Aws::ElasticBeanstalk
|
|
4680
4876
|
#
|
4681
4877
|
class Trigger < Struct.new(
|
4682
4878
|
:name)
|
4879
|
+
SENSITIVE = []
|
4683
4880
|
include Aws::Structure
|
4684
4881
|
end
|
4685
4882
|
|
@@ -4710,6 +4907,7 @@ module Aws::ElasticBeanstalk
|
|
4710
4907
|
class UpdateApplicationMessage < Struct.new(
|
4711
4908
|
:application_name,
|
4712
4909
|
:description)
|
4910
|
+
SENSITIVE = []
|
4713
4911
|
include Aws::Structure
|
4714
4912
|
end
|
4715
4913
|
|
@@ -4748,6 +4946,7 @@ module Aws::ElasticBeanstalk
|
|
4748
4946
|
class UpdateApplicationResourceLifecycleMessage < Struct.new(
|
4749
4947
|
:application_name,
|
4750
4948
|
:resource_lifecycle_config)
|
4949
|
+
SENSITIVE = []
|
4751
4950
|
include Aws::Structure
|
4752
4951
|
end
|
4753
4952
|
|
@@ -4784,6 +4983,7 @@ module Aws::ElasticBeanstalk
|
|
4784
4983
|
:application_name,
|
4785
4984
|
:version_label,
|
4786
4985
|
:description)
|
4986
|
+
SENSITIVE = []
|
4787
4987
|
include Aws::Structure
|
4788
4988
|
end
|
4789
4989
|
|
@@ -4855,6 +5055,7 @@ module Aws::ElasticBeanstalk
|
|
4855
5055
|
:description,
|
4856
5056
|
:option_settings,
|
4857
5057
|
:options_to_remove)
|
5058
|
+
SENSITIVE = []
|
4858
5059
|
include Aws::Structure
|
4859
5060
|
end
|
4860
5061
|
|
@@ -4993,6 +5194,7 @@ module Aws::ElasticBeanstalk
|
|
4993
5194
|
:platform_arn,
|
4994
5195
|
:option_settings,
|
4995
5196
|
:options_to_remove)
|
5197
|
+
SENSITIVE = []
|
4996
5198
|
include Aws::Structure
|
4997
5199
|
end
|
4998
5200
|
|
@@ -5017,15 +5219,19 @@ module Aws::ElasticBeanstalk
|
|
5017
5219
|
# @return [String]
|
5018
5220
|
#
|
5019
5221
|
# @!attribute [rw] tags_to_add
|
5020
|
-
# A list of tags to add or update.
|
5222
|
+
# A list of tags to add or update. If a key of an existing tag is
|
5223
|
+
# added, the tag's value is updated.
|
5021
5224
|
#
|
5022
|
-
#
|
5225
|
+
# Specify at least one of these parameters: `TagsToAdd`,
|
5226
|
+
# `TagsToRemove`.
|
5023
5227
|
# @return [Array<Types::Tag>]
|
5024
5228
|
#
|
5025
5229
|
# @!attribute [rw] tags_to_remove
|
5026
|
-
# A list of tag keys to remove.
|
5230
|
+
# A list of tag keys to remove. If a tag key doesn't exist, it is
|
5231
|
+
# silently ignored.
|
5027
5232
|
#
|
5028
|
-
#
|
5233
|
+
# Specify at least one of these parameters: `TagsToAdd`,
|
5234
|
+
# `TagsToRemove`.
|
5029
5235
|
# @return [Array<String>]
|
5030
5236
|
#
|
5031
5237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateTagsForResourceMessage AWS API Documentation
|
@@ -5034,6 +5240,7 @@ module Aws::ElasticBeanstalk
|
|
5034
5240
|
:resource_arn,
|
5035
5241
|
:tags_to_add,
|
5036
5242
|
:tags_to_remove)
|
5243
|
+
SENSITIVE = []
|
5037
5244
|
include Aws::Structure
|
5038
5245
|
end
|
5039
5246
|
|
@@ -5086,6 +5293,7 @@ module Aws::ElasticBeanstalk
|
|
5086
5293
|
:template_name,
|
5087
5294
|
:environment_name,
|
5088
5295
|
:option_settings)
|
5296
|
+
SENSITIVE = []
|
5089
5297
|
include Aws::Structure
|
5090
5298
|
end
|
5091
5299
|
|
@@ -5120,6 +5328,7 @@ module Aws::ElasticBeanstalk
|
|
5120
5328
|
:severity,
|
5121
5329
|
:namespace,
|
5122
5330
|
:option_name)
|
5331
|
+
SENSITIVE = []
|
5123
5332
|
include Aws::Structure
|
5124
5333
|
end
|
5125
5334
|
|