aws-sdk-elasticbeanstalk 1.29.0 → 1.34.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
  SHA256:
3
- metadata.gz: cd5c4a813dce02c5e08673c7efccef607f4a20a542ece24d1dcc9faed560f5f1
4
- data.tar.gz: 1b4b076fa9f3a995d9e38ef1c716c76a50d58d04bc46b6c9b6b3dd3c972e8022
3
+ metadata.gz: 3ac6559fb1cf7ea7dce359370e30c8b1c8e2c6f4095b535d6095bae135d0ace2
4
+ data.tar.gz: b90c59a5c690527c41ca4cc5844402c8aa7234c883155e08cb871bcae6c01db0
5
5
  SHA512:
6
- metadata.gz: 0fda82fed5e2601a5479f29175adea008b6a72ab755e24ca24ecd39e30e7f2e6a751f1cdae1ff84f4a4e7945fc00fd592593f790ac00ab74af4796875e4fd9fa
7
- data.tar.gz: '0594fa707287067243136d77de8a87d211ab14f9ec7ca732343c0b38dd5b2694b1f2ad537ab1c0c2d73c03358b4bff8103927c7411384a956df78b97ab0064fe'
6
+ metadata.gz: f69cfb1b8140201dd3025376e5447987c6bb1cf0399cd749693944bb6a23b581164010752b89ee08de477a745fa218fe41f675a133f68bdd7e8b6dd1685134f3
7
+ data.tar.gz: d79a58f8a5a432a3596d1433fc3d1c0dfe25f597e25b835b19a5ba26fc03a136c7eced6456a4dddda81240c0a566db82442204f056a00a6cdcee32d4db0a2709
@@ -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:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
45
47
  # @service
46
48
  module Aws::ElasticBeanstalk
47
49
 
48
- GEM_VERSION = '1.29.0'
50
+ GEM_VERSION = '1.34.0'
49
51
 
50
52
  end
@@ -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:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/query.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ElasticBeanstalk
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::Query)
74
78
 
@@ -161,7 +165,7 @@ module Aws::ElasticBeanstalk
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +180,7 @@ module Aws::ElasticBeanstalk
176
180
  # requests fetching endpoints information. Defaults to 60 sec.
177
181
  #
178
182
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
184
  #
181
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
186
  # The log formatter.
@@ -390,6 +394,41 @@ module Aws::ElasticBeanstalk
390
394
  req.send_request(options)
391
395
  end
392
396
 
397
+ # Add or change the operations role used by an environment. After this
398
+ # call is made, Elastic Beanstalk uses the associated operations role
399
+ # for permissions to downstream services during subsequent calls acting
400
+ # on this environment. For more information, see [Operations roles][1]
401
+ # in the *AWS Elastic Beanstalk Developer Guide*.
402
+ #
403
+ #
404
+ #
405
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
406
+ #
407
+ # @option params [required, String] :environment_name
408
+ # The name of the environment to which to set the operations role.
409
+ #
410
+ # @option params [required, String] :operations_role
411
+ # The Amazon Resource Name (ARN) of an existing IAM role to be used as
412
+ # the environment's operations role.
413
+ #
414
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
415
+ #
416
+ # @example Request syntax with placeholder values
417
+ #
418
+ # resp = client.associate_environment_operations_role({
419
+ # environment_name: "EnvironmentName", # required
420
+ # operations_role: "OperationsRole", # required
421
+ # })
422
+ #
423
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AssociateEnvironmentOperationsRole AWS API Documentation
424
+ #
425
+ # @overload associate_environment_operations_role(params = {})
426
+ # @param [Hash] params ({})
427
+ def associate_environment_operations_role(params = {}, options = {})
428
+ req = build_request(:associate_environment_operations_role, params)
429
+ req.send_request(options)
430
+ end
431
+
393
432
  # Checks if the specified CNAME is available.
394
433
  #
395
434
  # @option params [required, String] :cname_prefix
@@ -511,6 +550,7 @@ module Aws::ElasticBeanstalk
511
550
  # resp.environments[0].environment_links[0].link_name #=> String
512
551
  # resp.environments[0].environment_links[0].environment_name #=> String
513
552
  # resp.environments[0].environment_arn #=> String
553
+ # resp.environments[0].operations_role #=> String
514
554
  # resp.next_token #=> String
515
555
  #
516
556
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ComposeEnvironments AWS API Documentation
@@ -1068,7 +1108,7 @@ module Aws::ElasticBeanstalk
1068
1108
  #
1069
1109
  # @option params [String] :platform_arn
1070
1110
  # The Amazon Resource Name (ARN) of the custom platform to use with the
1071
- # environment. For more information, see [ Custom Platforms][1] in the
1111
+ # environment. For more information, see [Custom Platforms][1] in the
1072
1112
  # *AWS Elastic Beanstalk Developer Guide*.
1073
1113
  #
1074
1114
  # <note markdown="1"> If you specify `PlatformArn`, don't specify `SolutionStackName`.
@@ -1089,6 +1129,19 @@ module Aws::ElasticBeanstalk
1089
1129
  # A list of custom user-defined configuration options to remove from the
1090
1130
  # configuration set for this new environment.
1091
1131
  #
1132
+ # @option params [String] :operations_role
1133
+ # The Amazon Resource Name (ARN) of an existing IAM role to be used as
1134
+ # the environment's operations role. If specified, Elastic Beanstalk
1135
+ # uses the operations role for permissions to downstream services during
1136
+ # this call and during subsequent calls acting on this environment. To
1137
+ # specify an operations role, you must have the `iam:PassRole`
1138
+ # permission for the role. For more information, see [Operations
1139
+ # roles][1] in the *AWS Elastic Beanstalk Developer Guide*.
1140
+ #
1141
+ #
1142
+ #
1143
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
1144
+ #
1092
1145
  # @return [Types::EnvironmentDescription] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1093
1146
  #
1094
1147
  # * {Types::EnvironmentDescription#environment_name #environment_name} => String
@@ -1111,6 +1164,7 @@ module Aws::ElasticBeanstalk
1111
1164
  # * {Types::EnvironmentDescription#tier #tier} => Types::EnvironmentTier
1112
1165
  # * {Types::EnvironmentDescription#environment_links #environment_links} => Array&lt;Types::EnvironmentLink&gt;
1113
1166
  # * {Types::EnvironmentDescription#environment_arn #environment_arn} => String
1167
+ # * {Types::EnvironmentDescription#operations_role #operations_role} => String
1114
1168
  #
1115
1169
  #
1116
1170
  # @example Example: To create a new environment for an application
@@ -1182,6 +1236,7 @@ module Aws::ElasticBeanstalk
1182
1236
  # option_name: "ConfigurationOptionName",
1183
1237
  # },
1184
1238
  # ],
1239
+ # operations_role: "OperationsRole",
1185
1240
  # })
1186
1241
  #
1187
1242
  # @example Response structure
@@ -1214,6 +1269,7 @@ module Aws::ElasticBeanstalk
1214
1269
  # resp.environment_links[0].link_name #=> String
1215
1270
  # resp.environment_links[0].environment_name #=> String
1216
1271
  # resp.environment_arn #=> String
1272
+ # resp.operations_role #=> String
1217
1273
  #
1218
1274
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironment AWS API Documentation
1219
1275
  #
@@ -2474,6 +2530,7 @@ module Aws::ElasticBeanstalk
2474
2530
  # resp.environments[0].environment_links[0].link_name #=> String
2475
2531
  # resp.environments[0].environment_links[0].environment_name #=> String
2476
2532
  # resp.environments[0].environment_arn #=> String
2533
+ # resp.environments[0].operations_role #=> String
2477
2534
  # resp.next_token #=> String
2478
2535
  #
2479
2536
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironments AWS API Documentation
@@ -2853,6 +2910,37 @@ module Aws::ElasticBeanstalk
2853
2910
  req.send_request(options)
2854
2911
  end
2855
2912
 
2913
+ # Disassociate the operations role from an environment. After this call
2914
+ # is made, Elastic Beanstalk uses the caller's permissions for
2915
+ # permissions to downstream services during subsequent calls acting on
2916
+ # this environment. For more information, see [Operations roles][1] in
2917
+ # the *AWS Elastic Beanstalk Developer Guide*.
2918
+ #
2919
+ #
2920
+ #
2921
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html
2922
+ #
2923
+ # @option params [required, String] :environment_name
2924
+ # The name of the environment from which to disassociate the operations
2925
+ # role.
2926
+ #
2927
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2928
+ #
2929
+ # @example Request syntax with placeholder values
2930
+ #
2931
+ # resp = client.disassociate_environment_operations_role({
2932
+ # environment_name: "EnvironmentName", # required
2933
+ # })
2934
+ #
2935
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DisassociateEnvironmentOperationsRole AWS API Documentation
2936
+ #
2937
+ # @overload disassociate_environment_operations_role(params = {})
2938
+ # @param [Hash] params ({})
2939
+ def disassociate_environment_operations_role(params = {}, options = {})
2940
+ req = build_request(:disassociate_environment_operations_role, params)
2941
+ req.send_request(options)
2942
+ end
2943
+
2856
2944
  # Returns a list of the available solution stack names, with the public
2857
2945
  # version first and then in reverse chronological order.
2858
2946
  #
@@ -3518,6 +3606,7 @@ module Aws::ElasticBeanstalk
3518
3606
  # * {Types::EnvironmentDescription#tier #tier} => Types::EnvironmentTier
3519
3607
  # * {Types::EnvironmentDescription#environment_links #environment_links} => Array&lt;Types::EnvironmentLink&gt;
3520
3608
  # * {Types::EnvironmentDescription#environment_arn #environment_arn} => String
3609
+ # * {Types::EnvironmentDescription#operations_role #operations_role} => String
3521
3610
  #
3522
3611
  #
3523
3612
  # @example Example: To terminate an environment
@@ -3587,6 +3676,7 @@ module Aws::ElasticBeanstalk
3587
3676
  # resp.environment_links[0].link_name #=> String
3588
3677
  # resp.environment_links[0].environment_name #=> String
3589
3678
  # resp.environment_arn #=> String
3679
+ # resp.operations_role #=> String
3590
3680
  #
3591
3681
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TerminateEnvironment AWS API Documentation
3592
3682
  #
@@ -4057,6 +4147,7 @@ module Aws::ElasticBeanstalk
4057
4147
  # * {Types::EnvironmentDescription#tier #tier} => Types::EnvironmentTier
4058
4148
  # * {Types::EnvironmentDescription#environment_links #environment_links} => Array&lt;Types::EnvironmentLink&gt;
4059
4149
  # * {Types::EnvironmentDescription#environment_arn #environment_arn} => String
4150
+ # * {Types::EnvironmentDescription#operations_role #operations_role} => String
4060
4151
  #
4061
4152
  #
4062
4153
  # @example Example: To update an environment to a new version
@@ -4203,6 +4294,7 @@ module Aws::ElasticBeanstalk
4203
4294
  # resp.environment_links[0].link_name #=> String
4204
4295
  # resp.environment_links[0].environment_name #=> String
4205
4296
  # resp.environment_arn #=> String
4297
+ # resp.operations_role #=> String
4206
4298
  #
4207
4299
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateEnvironment AWS API Documentation
4208
4300
  #
@@ -4249,14 +4341,16 @@ module Aws::ElasticBeanstalk
4249
4341
  # Must be the ARN of an Elastic Beanstalk resource.
4250
4342
  #
4251
4343
  # @option params [Array<Types::Tag>] :tags_to_add
4252
- # A list of tags to add or update.
4344
+ # A list of tags to add or update. If a key of an existing tag is added,
4345
+ # the tag's value is updated.
4253
4346
  #
4254
- # If a key of an existing tag is added, the tag's value is updated.
4347
+ # Specify at least one of these parameters: `TagsToAdd`, `TagsToRemove`.
4255
4348
  #
4256
4349
  # @option params [Array<String>] :tags_to_remove
4257
- # A list of tag keys to remove.
4350
+ # A list of tag keys to remove. If a tag key doesn't exist, it is
4351
+ # silently ignored.
4258
4352
  #
4259
- # If a tag key doesn't exist, it is silently ignored.
4353
+ # Specify at least one of these parameters: `TagsToAdd`, `TagsToRemove`.
4260
4354
  #
4261
4355
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4262
4356
  #
@@ -4381,7 +4475,7 @@ module Aws::ElasticBeanstalk
4381
4475
  params: params,
4382
4476
  config: config)
4383
4477
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4384
- context[:gem_version] = '1.29.0'
4478
+ context[:gem_version] = '1.34.0'
4385
4479
  Seahorse::Client::Request.new(handlers, context)
4386
4480
  end
4387
4481
 
@@ -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:
@@ -37,6 +39,7 @@ module Aws::ElasticBeanstalk
37
39
  ApplicationVersionStatus = Shapes::StringShape.new(name: 'ApplicationVersionStatus')
38
40
  ApplyEnvironmentManagedActionRequest = Shapes::StructureShape.new(name: 'ApplyEnvironmentManagedActionRequest')
39
41
  ApplyEnvironmentManagedActionResult = Shapes::StructureShape.new(name: 'ApplyEnvironmentManagedActionResult')
42
+ AssociateEnvironmentOperationsRoleMessage = Shapes::StructureShape.new(name: 'AssociateEnvironmentOperationsRoleMessage')
40
43
  AutoCreateApplication = Shapes::BooleanShape.new(name: 'AutoCreateApplication')
41
44
  AutoScalingGroup = Shapes::StructureShape.new(name: 'AutoScalingGroup')
42
45
  AutoScalingGroupList = Shapes::ListShape.new(name: 'AutoScalingGroupList')
@@ -116,6 +119,7 @@ module Aws::ElasticBeanstalk
116
119
  DescribePlatformVersionRequest = Shapes::StructureShape.new(name: 'DescribePlatformVersionRequest')
117
120
  DescribePlatformVersionResult = Shapes::StructureShape.new(name: 'DescribePlatformVersionResult')
118
121
  Description = Shapes::StringShape.new(name: 'Description')
122
+ DisassociateEnvironmentOperationsRoleMessage = Shapes::StructureShape.new(name: 'DisassociateEnvironmentOperationsRoleMessage')
119
123
  Ec2InstanceId = Shapes::StringShape.new(name: 'Ec2InstanceId')
120
124
  ElasticBeanstalkServiceException = Shapes::StructureShape.new(name: 'ElasticBeanstalkServiceException')
121
125
  EndpointURL = Shapes::StringShape.new(name: 'EndpointURL')
@@ -202,6 +206,7 @@ module Aws::ElasticBeanstalk
202
206
  OperatingSystemName = Shapes::StringShape.new(name: 'OperatingSystemName')
203
207
  OperatingSystemVersion = Shapes::StringShape.new(name: 'OperatingSystemVersion')
204
208
  OperationInProgressException = Shapes::StructureShape.new(name: 'OperationInProgressException')
209
+ OperationsRole = Shapes::StringShape.new(name: 'OperationsRole')
205
210
  OptionNamespace = Shapes::StringShape.new(name: 'OptionNamespace')
206
211
  OptionRestrictionMaxLength = Shapes::IntegerShape.new(name: 'OptionRestrictionMaxLength')
207
212
  OptionRestrictionMaxValue = Shapes::IntegerShape.new(name: 'OptionRestrictionMaxValue')
@@ -399,6 +404,10 @@ module Aws::ElasticBeanstalk
399
404
  ApplyEnvironmentManagedActionResult.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
400
405
  ApplyEnvironmentManagedActionResult.struct_class = Types::ApplyEnvironmentManagedActionResult
401
406
 
407
+ AssociateEnvironmentOperationsRoleMessage.add_member(:environment_name, Shapes::ShapeRef.new(shape: EnvironmentName, required: true, location_name: "EnvironmentName"))
408
+ AssociateEnvironmentOperationsRoleMessage.add_member(:operations_role, Shapes::ShapeRef.new(shape: OperationsRole, required: true, location_name: "OperationsRole"))
409
+ AssociateEnvironmentOperationsRoleMessage.struct_class = Types::AssociateEnvironmentOperationsRoleMessage
410
+
402
411
  AutoScalingGroup.add_member(:name, Shapes::ShapeRef.new(shape: ResourceId, location_name: "Name"))
403
412
  AutoScalingGroup.struct_class = Types::AutoScalingGroup
404
413
 
@@ -537,6 +546,7 @@ module Aws::ElasticBeanstalk
537
546
  CreateEnvironmentMessage.add_member(:platform_arn, Shapes::ShapeRef.new(shape: PlatformArn, location_name: "PlatformArn"))
538
547
  CreateEnvironmentMessage.add_member(:option_settings, Shapes::ShapeRef.new(shape: ConfigurationOptionSettingsList, location_name: "OptionSettings"))
539
548
  CreateEnvironmentMessage.add_member(:options_to_remove, Shapes::ShapeRef.new(shape: OptionsSpecifierList, location_name: "OptionsToRemove"))
549
+ CreateEnvironmentMessage.add_member(:operations_role, Shapes::ShapeRef.new(shape: OperationsRole, location_name: "OperationsRole"))
540
550
  CreateEnvironmentMessage.struct_class = Types::CreateEnvironmentMessage
541
551
 
542
552
  CreatePlatformVersionRequest.add_member(:platform_name, Shapes::ShapeRef.new(shape: PlatformName, required: true, location_name: "PlatformName"))
@@ -692,6 +702,9 @@ module Aws::ElasticBeanstalk
692
702
  DescribePlatformVersionResult.add_member(:platform_description, Shapes::ShapeRef.new(shape: PlatformDescription, location_name: "PlatformDescription"))
693
703
  DescribePlatformVersionResult.struct_class = Types::DescribePlatformVersionResult
694
704
 
705
+ DisassociateEnvironmentOperationsRoleMessage.add_member(:environment_name, Shapes::ShapeRef.new(shape: EnvironmentName, required: true, location_name: "EnvironmentName"))
706
+ DisassociateEnvironmentOperationsRoleMessage.struct_class = Types::DisassociateEnvironmentOperationsRoleMessage
707
+
695
708
  ElasticBeanstalkServiceException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
696
709
  ElasticBeanstalkServiceException.struct_class = Types::ElasticBeanstalkServiceException
697
710
 
@@ -715,6 +728,7 @@ module Aws::ElasticBeanstalk
715
728
  EnvironmentDescription.add_member(:tier, Shapes::ShapeRef.new(shape: EnvironmentTier, location_name: "Tier"))
716
729
  EnvironmentDescription.add_member(:environment_links, Shapes::ShapeRef.new(shape: EnvironmentLinks, location_name: "EnvironmentLinks"))
717
730
  EnvironmentDescription.add_member(:environment_arn, Shapes::ShapeRef.new(shape: EnvironmentArn, location_name: "EnvironmentArn"))
731
+ EnvironmentDescription.add_member(:operations_role, Shapes::ShapeRef.new(shape: OperationsRole, location_name: "OperationsRole"))
718
732
  EnvironmentDescription.struct_class = Types::EnvironmentDescription
719
733
 
720
734
  EnvironmentDescriptionsList.member = Shapes::ShapeRef.new(shape: EnvironmentDescription)
@@ -1224,6 +1238,15 @@ module Aws::ElasticBeanstalk
1224
1238
  o.errors << Shapes::ShapeRef.new(shape: ManagedActionInvalidStateException)
1225
1239
  end)
1226
1240
 
1241
+ api.add_operation(:associate_environment_operations_role, Seahorse::Model::Operation.new.tap do |o|
1242
+ o.name = "AssociateEnvironmentOperationsRole"
1243
+ o.http_method = "POST"
1244
+ o.http_request_uri = "/"
1245
+ o.input = Shapes::ShapeRef.new(shape: AssociateEnvironmentOperationsRoleMessage)
1246
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1247
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientPrivilegesException)
1248
+ end)
1249
+
1227
1250
  api.add_operation(:check_dns_availability, Seahorse::Model::Operation.new.tap do |o|
1228
1251
  o.name = "CheckDNSAvailability"
1229
1252
  o.http_method = "POST"
@@ -1479,6 +1502,15 @@ module Aws::ElasticBeanstalk
1479
1502
  o.errors << Shapes::ShapeRef.new(shape: ElasticBeanstalkServiceException)
1480
1503
  end)
1481
1504
 
1505
+ api.add_operation(:disassociate_environment_operations_role, Seahorse::Model::Operation.new.tap do |o|
1506
+ o.name = "DisassociateEnvironmentOperationsRole"
1507
+ o.http_method = "POST"
1508
+ o.http_request_uri = "/"
1509
+ o.input = Shapes::ShapeRef.new(shape: DisassociateEnvironmentOperationsRoleMessage)
1510
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1511
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientPrivilegesException)
1512
+ end)
1513
+
1482
1514
  api.add_operation(:list_available_solution_stacks, Seahorse::Model::Operation.new.tap do |o|
1483
1515
  o.name = "ListAvailableSolutionStacks"
1484
1516
  o.http_method = "POST"
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -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:
@@ -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:
@@ -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 [ Custom Platforms][1] in
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
- # If a key of an existing tag is added, the tag's value is updated.
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
- # If a tag key doesn't exist, it is silently ignored.
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