aws-sdk-elasticbeanstalk 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e2743befac04ae025dee0ae1b36baba0c846920a
4
- data.tar.gz: 81fa8aa13fdd6710f733108b9fb8a94f99e25423
3
+ metadata.gz: 0121a822502ea64c2c94dcae72002769fcc1f749
4
+ data.tar.gz: 307b79081379ba130d7d248de65bb0c3f4cc635f
5
5
  SHA512:
6
- metadata.gz: 9e710b3c1d82d0b48389edccea72bc4f60e07e47c045930554399db833deeb5555e5196fbd8d81d06f5b5b4a09074a5a9249673ad118d9a1e91ee7a0deddfe5e
7
- data.tar.gz: 45f95aa960cb22000aa619d6d6c574e02d8a209fd655939a900e3b59365b4cea073352de5ea616ff88df10d66e13ed9b45b69a94bb4545911bad4c29167a377b
6
+ metadata.gz: 537024f37ea5563de52518bf123fbc2b8a2aa9dc525640dd3abf5dbfba9f1a53be4059e9111a1c437059c029042a5a7d4335f76f23c28c109c224567406242d9
7
+ data.tar.gz: fae004fd5be73d7f4c59409dbb78bd935c86cf28ba2428fbf749407165c85c308098bbab65f6be0e245ef3d5fda766e1d4ec10eb7b6f56c1756a9e0260a96f01
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
42
42
  # @service
43
43
  module Aws::ElasticBeanstalk
44
44
 
45
- GEM_VERSION = '1.15.0'
45
+ GEM_VERSION = '1.16.0'
46
46
 
47
47
  end
@@ -341,7 +341,7 @@ module Aws::ElasticBeanstalk
341
341
  #
342
342
  #
343
343
  #
344
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-mgmt-compose.html
344
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-mgmt-compose.html
345
345
  #
346
346
  # @option params [String] :application_name
347
347
  # The name of the application to which the specified source bundles
@@ -355,7 +355,7 @@ module Aws::ElasticBeanstalk
355
355
  #
356
356
  #
357
357
  #
358
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
358
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
359
359
  #
360
360
  # @option params [Array<String>] :version_labels
361
361
  # A list of version labels, specifying one or more application source
@@ -436,6 +436,13 @@ module Aws::ElasticBeanstalk
436
436
  # Specify an application resource lifecycle configuration to prevent
437
437
  # your application from accumulating too many versions.
438
438
  #
439
+ # @option params [Array<Types::Tag>] :tags
440
+ # Specifies the tags applied to the application.
441
+ #
442
+ # Elastic Beanstalk applies these tags only to the application.
443
+ # Environments that you create in the application don't inherit the
444
+ # tags.
445
+ #
439
446
  # @return [Types::ApplicationDescriptionMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
440
447
  #
441
448
  # * {Types::ApplicationDescriptionMessage#application #application} => Types::ApplicationDescription
@@ -482,6 +489,12 @@ module Aws::ElasticBeanstalk
482
489
  # },
483
490
  # },
484
491
  # },
492
+ # tags: [
493
+ # {
494
+ # key: "TagKey",
495
+ # value: "TagValue",
496
+ # },
497
+ # ],
485
498
  # })
486
499
  #
487
500
  # @example Response structure
@@ -590,6 +603,12 @@ module Aws::ElasticBeanstalk
590
603
  #
591
604
  # </note>
592
605
  #
606
+ # @option params [Array<Types::Tag>] :tags
607
+ # Specifies the tags applied to the application version.
608
+ #
609
+ # Elastic Beanstalk applies these tags only to the application version.
610
+ # Environments that use the application version don't inherit the tags.
611
+ #
593
612
  # @return [Types::ApplicationVersionDescriptionMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
594
613
  #
595
614
  # * {Types::ApplicationVersionDescriptionMessage#application_version #application_version} => Types::ApplicationVersionDescription
@@ -650,6 +669,12 @@ module Aws::ElasticBeanstalk
650
669
  # },
651
670
  # auto_create_application: false,
652
671
  # process: false,
672
+ # tags: [
673
+ # {
674
+ # key: "TagKey",
675
+ # value: "TagValue",
676
+ # },
677
+ # ],
653
678
  # })
654
679
  #
655
680
  # @example Response structure
@@ -752,6 +777,9 @@ module Aws::ElasticBeanstalk
752
777
  # option to the requested value. The new value overrides the value
753
778
  # obtained from the solution stack or the source configuration template.
754
779
  #
780
+ # @option params [Array<Types::Tag>] :tags
781
+ # Specifies the tags applied to the configuration template.
782
+ #
755
783
  # @return [Types::ConfigurationSettingsDescription] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
756
784
  #
757
785
  # * {Types::ConfigurationSettingsDescription#solution_stack_name #solution_stack_name} => String
@@ -807,6 +835,12 @@ module Aws::ElasticBeanstalk
807
835
  # value: "ConfigurationOptionValue",
808
836
  # },
809
837
  # ],
838
+ # tags: [
839
+ # {
840
+ # key: "TagKey",
841
+ # value: "TagValue",
842
+ # },
843
+ # ],
810
844
  # })
811
845
  #
812
846
  # @example Response structure
@@ -866,7 +900,7 @@ module Aws::ElasticBeanstalk
866
900
  #
867
901
  #
868
902
  #
869
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
903
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
870
904
  #
871
905
  # @option params [String] :description
872
906
  # Describes this environment.
@@ -880,7 +914,7 @@ module Aws::ElasticBeanstalk
880
914
  # This specifies the tier to use for creating this environment.
881
915
  #
882
916
  # @option params [Array<Types::Tag>] :tags
883
- # This specifies the tags applied to resources in the environment.
917
+ # Specifies the tags applied to resources in the environment.
884
918
  #
885
919
  # @option params [String] :version_label
886
920
  # The name of the application version to deploy.
@@ -907,7 +941,7 @@ module Aws::ElasticBeanstalk
907
941
  #
908
942
  #
909
943
  #
910
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
944
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
911
945
  #
912
946
  # @option params [String] :platform_arn
913
947
  # The ARN of the platform.
@@ -1074,6 +1108,13 @@ module Aws::ElasticBeanstalk
1074
1108
  # @option params [Array<Types::ConfigurationOptionSetting>] :option_settings
1075
1109
  # The configuration option settings to apply to the builder environment.
1076
1110
  #
1111
+ # @option params [Array<Types::Tag>] :tags
1112
+ # Specifies the tags applied to the new platform version.
1113
+ #
1114
+ # Elastic Beanstalk applies these tags only to the platform version.
1115
+ # Environments that you create using the platform version don't inherit
1116
+ # the tags.
1117
+ #
1077
1118
  # @return [Types::CreatePlatformVersionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1078
1119
  #
1079
1120
  # * {Types::CreatePlatformVersionResult#platform_summary #platform_summary} => Types::PlatformSummary
@@ -1097,6 +1138,12 @@ module Aws::ElasticBeanstalk
1097
1138
  # value: "ConfigurationOptionValue",
1098
1139
  # },
1099
1140
  # ],
1141
+ # tags: [
1142
+ # {
1143
+ # key: "TagKey",
1144
+ # value: "TagValue",
1145
+ # },
1146
+ # ],
1100
1147
  # })
1101
1148
  #
1102
1149
  # @example Response structure
@@ -2451,7 +2498,7 @@ module Aws::ElasticBeanstalk
2451
2498
  #
2452
2499
  #
2453
2500
  #
2454
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced.html
2501
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced.html
2455
2502
  #
2456
2503
  # @option params [String] :environment_name
2457
2504
  # Specify the AWS Elastic Beanstalk environment by name.
@@ -2791,7 +2838,7 @@ module Aws::ElasticBeanstalk
2791
2838
  #
2792
2839
  #
2793
2840
  #
2794
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.tagging.html
2841
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.tagging.html
2795
2842
  #
2796
2843
  # @option params [required, String] :resource_arn
2797
2844
  # The Amazon Resource Name (ARN) of the resouce for which a tag list is
@@ -3167,7 +3214,7 @@ module Aws::ElasticBeanstalk
3167
3214
  #
3168
3215
  #
3169
3216
  #
3170
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/ug/
3217
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/ug/
3171
3218
  #
3172
3219
  # @option params [Boolean] :force_terminate
3173
3220
  # Terminates the target environment even if another environment in the
@@ -3673,7 +3720,7 @@ module Aws::ElasticBeanstalk
3673
3720
  #
3674
3721
  #
3675
3722
  #
3676
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
3723
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
3677
3724
  #
3678
3725
  # @option params [String] :description
3679
3726
  # If this parameter is specified, AWS Elastic Beanstalk updates the
@@ -3917,8 +3964,8 @@ module Aws::ElasticBeanstalk
3917
3964
  #
3918
3965
  #
3919
3966
  #
3920
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.tagging.html
3921
- # [2]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.iam.managed-policies.html#AWSHowTo.iam.policies
3967
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.tagging.html
3968
+ # [2]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.iam.managed-policies.html#AWSHowTo.iam.policies
3922
3969
  #
3923
3970
  # @option params [required, String] :resource_arn
3924
3971
  # The Amazon Resource Name (ARN) of the resouce to be updated.
@@ -4058,7 +4105,7 @@ module Aws::ElasticBeanstalk
4058
4105
  params: params,
4059
4106
  config: config)
4060
4107
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4061
- context[:gem_version] = '1.15.0'
4108
+ context[:gem_version] = '1.16.0'
4062
4109
  Seahorse::Client::Request.new(handlers, context)
4063
4110
  end
4064
4111
 
@@ -482,6 +482,7 @@ module Aws::ElasticBeanstalk
482
482
  CreateApplicationMessage.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
483
483
  CreateApplicationMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
484
484
  CreateApplicationMessage.add_member(:resource_lifecycle_config, Shapes::ShapeRef.new(shape: ApplicationResourceLifecycleConfig, location_name: "ResourceLifecycleConfig"))
485
+ CreateApplicationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
485
486
  CreateApplicationMessage.struct_class = Types::CreateApplicationMessage
486
487
 
487
488
  CreateApplicationVersionMessage.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
@@ -492,6 +493,7 @@ module Aws::ElasticBeanstalk
492
493
  CreateApplicationVersionMessage.add_member(:build_configuration, Shapes::ShapeRef.new(shape: BuildConfiguration, location_name: "BuildConfiguration"))
493
494
  CreateApplicationVersionMessage.add_member(:auto_create_application, Shapes::ShapeRef.new(shape: AutoCreateApplication, location_name: "AutoCreateApplication"))
494
495
  CreateApplicationVersionMessage.add_member(:process, Shapes::ShapeRef.new(shape: ApplicationVersionProccess, location_name: "Process"))
496
+ CreateApplicationVersionMessage.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
495
497
  CreateApplicationVersionMessage.struct_class = Types::CreateApplicationVersionMessage
496
498
 
497
499
  CreateConfigurationTemplateMessage.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
@@ -502,6 +504,7 @@ module Aws::ElasticBeanstalk
502
504
  CreateConfigurationTemplateMessage.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "EnvironmentId"))
503
505
  CreateConfigurationTemplateMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
504
506
  CreateConfigurationTemplateMessage.add_member(:option_settings, Shapes::ShapeRef.new(shape: ConfigurationOptionSettingsList, location_name: "OptionSettings"))
507
+ CreateConfigurationTemplateMessage.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
505
508
  CreateConfigurationTemplateMessage.struct_class = Types::CreateConfigurationTemplateMessage
506
509
 
507
510
  CreateEnvironmentMessage.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
@@ -524,6 +527,7 @@ module Aws::ElasticBeanstalk
524
527
  CreatePlatformVersionRequest.add_member(:platform_definition_bundle, Shapes::ShapeRef.new(shape: S3Location, required: true, location_name: "PlatformDefinitionBundle"))
525
528
  CreatePlatformVersionRequest.add_member(:environment_name, Shapes::ShapeRef.new(shape: EnvironmentName, location_name: "EnvironmentName"))
526
529
  CreatePlatformVersionRequest.add_member(:option_settings, Shapes::ShapeRef.new(shape: ConfigurationOptionSettingsList, location_name: "OptionSettings"))
530
+ CreatePlatformVersionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
527
531
  CreatePlatformVersionRequest.struct_class = Types::CreatePlatformVersionRequest
528
532
 
529
533
  CreatePlatformVersionResult.add_member(:platform_summary, Shapes::ShapeRef.new(shape: PlatformSummary, location_name: "PlatformSummary"))
@@ -654,7 +654,7 @@ module Aws::ElasticBeanstalk
654
654
  #
655
655
  #
656
656
  #
657
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
657
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
658
658
  # @return [String]
659
659
  #
660
660
  # @!attribute [rw] version_labels
@@ -786,7 +786,7 @@ module Aws::ElasticBeanstalk
786
786
  #
787
787
  #
788
788
  #
789
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html
789
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html
790
790
  #
791
791
  # @note When making an API call, you may pass ConfigurationOptionSetting
792
792
  # data as a hash:
@@ -976,6 +976,12 @@ module Aws::ElasticBeanstalk
976
976
  # },
977
977
  # },
978
978
  # },
979
+ # tags: [
980
+ # {
981
+ # key: "TagKey",
982
+ # value: "TagValue",
983
+ # },
984
+ # ],
979
985
  # }
980
986
  #
981
987
  # @!attribute [rw] application_name
@@ -995,12 +1001,21 @@ module Aws::ElasticBeanstalk
995
1001
  # your application from accumulating too many versions.
996
1002
  # @return [Types::ApplicationResourceLifecycleConfig]
997
1003
  #
1004
+ # @!attribute [rw] tags
1005
+ # Specifies the tags applied to the application.
1006
+ #
1007
+ # Elastic Beanstalk applies these tags only to the application.
1008
+ # Environments that you create in the application don't inherit the
1009
+ # tags.
1010
+ # @return [Array<Types::Tag>]
1011
+ #
998
1012
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationMessage AWS API Documentation
999
1013
  #
1000
1014
  class CreateApplicationMessage < Struct.new(
1001
1015
  :application_name,
1002
1016
  :description,
1003
- :resource_lifecycle_config)
1017
+ :resource_lifecycle_config,
1018
+ :tags)
1004
1019
  include Aws::Structure
1005
1020
  end
1006
1021
 
@@ -1029,6 +1044,12 @@ module Aws::ElasticBeanstalk
1029
1044
  # },
1030
1045
  # auto_create_application: false,
1031
1046
  # process: false,
1047
+ # tags: [
1048
+ # {
1049
+ # key: "TagKey",
1050
+ # value: "TagValue",
1051
+ # },
1052
+ # ],
1032
1053
  # }
1033
1054
  #
1034
1055
  # @!attribute [rw] application_name
@@ -1096,6 +1117,14 @@ module Aws::ElasticBeanstalk
1096
1117
  # </note>
1097
1118
  # @return [Boolean]
1098
1119
  #
1120
+ # @!attribute [rw] tags
1121
+ # Specifies the tags applied to the application version.
1122
+ #
1123
+ # Elastic Beanstalk applies these tags only to the application
1124
+ # version. Environments that use the application version don't
1125
+ # inherit the tags.
1126
+ # @return [Array<Types::Tag>]
1127
+ #
1099
1128
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationVersionMessage AWS API Documentation
1100
1129
  #
1101
1130
  class CreateApplicationVersionMessage < Struct.new(
@@ -1106,7 +1135,8 @@ module Aws::ElasticBeanstalk
1106
1135
  :source_bundle,
1107
1136
  :build_configuration,
1108
1137
  :auto_create_application,
1109
- :process)
1138
+ :process,
1139
+ :tags)
1110
1140
  include Aws::Structure
1111
1141
  end
1112
1142
 
@@ -1134,6 +1164,12 @@ module Aws::ElasticBeanstalk
1134
1164
  # value: "ConfigurationOptionValue",
1135
1165
  # },
1136
1166
  # ],
1167
+ # tags: [
1168
+ # {
1169
+ # key: "TagKey",
1170
+ # value: "TagValue",
1171
+ # },
1172
+ # ],
1137
1173
  # }
1138
1174
  #
1139
1175
  # @!attribute [rw] application_name
@@ -1207,6 +1243,10 @@ module Aws::ElasticBeanstalk
1207
1243
  # template.
1208
1244
  # @return [Array<Types::ConfigurationOptionSetting>]
1209
1245
  #
1246
+ # @!attribute [rw] tags
1247
+ # Specifies the tags applied to the configuration template.
1248
+ # @return [Array<Types::Tag>]
1249
+ #
1210
1250
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateConfigurationTemplateMessage AWS API Documentation
1211
1251
  #
1212
1252
  class CreateConfigurationTemplateMessage < Struct.new(
@@ -1217,7 +1257,8 @@ module Aws::ElasticBeanstalk
1217
1257
  :source_configuration,
1218
1258
  :environment_id,
1219
1259
  :description,
1220
- :option_settings)
1260
+ :option_settings,
1261
+ :tags)
1221
1262
  include Aws::Structure
1222
1263
  end
1223
1264
 
@@ -1293,7 +1334,7 @@ module Aws::ElasticBeanstalk
1293
1334
  #
1294
1335
  #
1295
1336
  #
1296
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
1337
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
1297
1338
  # @return [String]
1298
1339
  #
1299
1340
  # @!attribute [rw] description
@@ -1312,7 +1353,7 @@ module Aws::ElasticBeanstalk
1312
1353
  # @return [Types::EnvironmentTier]
1313
1354
  #
1314
1355
  # @!attribute [rw] tags
1315
- # This specifies the tags applied to resources in the environment.
1356
+ # Specifies the tags applied to resources in the environment.
1316
1357
  # @return [Array<Types::Tag>]
1317
1358
  #
1318
1359
  # @!attribute [rw] version_label
@@ -1342,7 +1383,7 @@ module Aws::ElasticBeanstalk
1342
1383
  #
1343
1384
  #
1344
1385
  #
1345
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
1386
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
1346
1387
  # @return [String]
1347
1388
  #
1348
1389
  # @!attribute [rw] platform_arn
@@ -1401,6 +1442,12 @@ module Aws::ElasticBeanstalk
1401
1442
  # value: "ConfigurationOptionValue",
1402
1443
  # },
1403
1444
  # ],
1445
+ # tags: [
1446
+ # {
1447
+ # key: "TagKey",
1448
+ # value: "TagValue",
1449
+ # },
1450
+ # ],
1404
1451
  # }
1405
1452
  #
1406
1453
  # @!attribute [rw] platform_name
@@ -1424,6 +1471,14 @@ module Aws::ElasticBeanstalk
1424
1471
  # environment.
1425
1472
  # @return [Array<Types::ConfigurationOptionSetting>]
1426
1473
  #
1474
+ # @!attribute [rw] tags
1475
+ # Specifies the tags applied to the new platform version.
1476
+ #
1477
+ # Elastic Beanstalk applies these tags only to the platform version.
1478
+ # Environments that you create using the platform version don't
1479
+ # inherit the tags.
1480
+ # @return [Array<Types::Tag>]
1481
+ #
1427
1482
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreatePlatformVersionRequest AWS API Documentation
1428
1483
  #
1429
1484
  class CreatePlatformVersionRequest < Struct.new(
@@ -1431,7 +1486,8 @@ module Aws::ElasticBeanstalk
1431
1486
  :platform_version,
1432
1487
  :platform_definition_bundle,
1433
1488
  :environment_name,
1434
- :option_settings)
1489
+ :option_settings,
1490
+ :tags)
1435
1491
  include Aws::Structure
1436
1492
  end
1437
1493
 
@@ -1899,7 +1955,7 @@ module Aws::ElasticBeanstalk
1899
1955
  #
1900
1956
  #
1901
1957
  #
1902
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
1958
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
1903
1959
  # @return [String]
1904
1960
  #
1905
1961
  # @!attribute [rw] status
@@ -1912,7 +1968,7 @@ module Aws::ElasticBeanstalk
1912
1968
  #
1913
1969
  #
1914
1970
  #
1915
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
1971
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
1916
1972
  # @return [String]
1917
1973
  #
1918
1974
  # @!attribute [rw] causes
@@ -2469,7 +2525,7 @@ module Aws::ElasticBeanstalk
2469
2525
  #
2470
2526
  #
2471
2527
  #
2472
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
2528
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
2473
2529
  # @return [String]
2474
2530
  #
2475
2531
  # @!attribute [rw] resources
@@ -2573,7 +2629,7 @@ module Aws::ElasticBeanstalk
2573
2629
  #
2574
2630
  #
2575
2631
  #
2576
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
2632
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
2577
2633
  #
2578
2634
  # @!attribute [rw] link_name
2579
2635
  # The name of the link.
@@ -2810,7 +2866,7 @@ module Aws::ElasticBeanstalk
2810
2866
  #
2811
2867
  #
2812
2868
  #
2813
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
2869
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
2814
2870
  #
2815
2871
  # @!attribute [rw] no_data
2816
2872
  # **Grey.** AWS Elastic Beanstalk and the health agent are reporting
@@ -3828,7 +3884,7 @@ module Aws::ElasticBeanstalk
3828
3884
  #
3829
3885
  #
3830
3886
  #
3831
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
3887
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
3832
3888
  # @return [String]
3833
3889
  #
3834
3890
  # @!attribute [rw] color
@@ -3838,7 +3894,7 @@ module Aws::ElasticBeanstalk
3838
3894
  #
3839
3895
  #
3840
3896
  #
3841
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
3897
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html
3842
3898
  # @return [String]
3843
3899
  #
3844
3900
  # @!attribute [rw] causes
@@ -4087,7 +4143,7 @@ module Aws::ElasticBeanstalk
4087
4143
  #
4088
4144
  #
4089
4145
  #
4090
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-metrics.html#health-enhanced-metrics-os
4146
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-metrics.html#health-enhanced-metrics-os
4091
4147
  # @return [Array<Float>]
4092
4148
  #
4093
4149
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SystemStatus AWS API Documentation
@@ -4172,7 +4228,7 @@ module Aws::ElasticBeanstalk
4172
4228
  #
4173
4229
  #
4174
4230
  #
4175
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/ug/
4231
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/ug/
4176
4232
  # @return [Boolean]
4177
4233
  #
4178
4234
  # @!attribute [rw] force_terminate
@@ -4450,7 +4506,7 @@ module Aws::ElasticBeanstalk
4450
4506
  #
4451
4507
  #
4452
4508
  #
4453
- # [1]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
4509
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
4454
4510
  # @return [String]
4455
4511
  #
4456
4512
  # @!attribute [rw] description
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticbeanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-18 00:00:00.000000000 Z
11
+ date: 2019-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core