aws-sdk-autoscaling 1.62.0 → 1.66.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: f6a61765327e0b400262f710e64735cfef555b08c4cfde499d98ef28c463aeeb
4
- data.tar.gz: d33b57786bb75e6df7487ed80307a18497399e6596ff4ea3860a3b7c33df59bf
3
+ metadata.gz: 4702ef6e1a335ae90ba305208649171d24bc42d537b219ee01c7c04bd903cbf9
4
+ data.tar.gz: 6b89a9111eb65fda1e887a100bdf92f5047303d885feea6e203fd1c091b392ef
5
5
  SHA512:
6
- metadata.gz: 1b383eb1f599f14de27f506909532a7a83073c5e578dc3b72096f802abaaa27d68ae061379588be60a0262e1df13fd990b4eec7c4f37784a3952681d91b92c04
7
- data.tar.gz: fd6ef044df7cfe048e7c2be3dca8a47b038b9ae04abe5a5f78834fe3f38f6395f47bd2989b638fac94b7b179b8ee5561d6e29e76c632a540c8d9ddf581898cfb
6
+ metadata.gz: 5e136023a7a45e2e98cae02b2ef42446c3bb09a70e6a9d921c6367870afa447de18ffb262f8a8d0b3bf3d2d48829b1f92fc1d081d4568db0d1215dcaa1feafc8
7
+ data.tar.gz: 5c02f08fb1157e8ec0659a1125db97a4ad63cc5bc3c9e65ab309d35eb6d7c8a28c27ca2975d27e1a3c203b41aa6c258a4dccc863bce1575c7a4d430c433153b1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.65.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.64.0 (2021-06-30)
15
+ ------------------
16
+
17
+ * Feature - Amazon EC2 Auto Scaling infrastructure improvements and optimizations.
18
+
19
+ 1.63.0 (2021-06-04)
20
+ ------------------
21
+
22
+ * Feature - Documentation updates for Amazon EC2 Auto Scaling
23
+
4
24
  1.62.0 (2021-06-02)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.66.0
@@ -59,6 +59,6 @@ require_relative 'aws-sdk-autoscaling/customizations'
59
59
  # @!group service
60
60
  module Aws::AutoScaling
61
61
 
62
- GEM_VERSION = '1.62.0'
62
+ GEM_VERSION = '1.66.0'
63
63
 
64
64
  end
@@ -212,6 +212,12 @@ module Aws::AutoScaling
212
212
  data[:warm_pool_size]
213
213
  end
214
214
 
215
+ # Reserved.
216
+ # @return [String]
217
+ def context
218
+ data[:context]
219
+ end
220
+
215
221
  # @!endgroup
216
222
 
217
223
  # @return [Client]
@@ -1031,6 +1037,7 @@ module Aws::AutoScaling
1031
1037
  # service_linked_role_arn: "ResourceName",
1032
1038
  # max_instance_lifetime: 1,
1033
1039
  # capacity_rebalance: false,
1040
+ # context: "Context",
1034
1041
  # })
1035
1042
  # @param [Hash] options ({})
1036
1043
  # @option options [String] :launch_configuration_name
@@ -1164,6 +1171,8 @@ module Aws::AutoScaling
1164
1171
  #
1165
1172
  #
1166
1173
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/capacity-rebalance.html
1174
+ # @option options [String] :context
1175
+ # Reserved.
1167
1176
  # @return [AutoScalingGroup]
1168
1177
  def update(options = {})
1169
1178
  options = options.merge(auto_scaling_group_name: @name)
@@ -989,7 +989,7 @@ module Aws::AutoScaling
989
989
  # The Amazon Resource Name (ARN) of the service-linked role that the
990
990
  # Auto Scaling group uses to call other Amazon Web Services on your
991
991
  # behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role
992
- # named AWSServiceRoleForAutoScaling, which it creates if it does not
992
+ # named `AWSServiceRoleForAutoScaling`, which it creates if it does not
993
993
  # exist. For more information, see [Service-linked roles][1] in the
994
994
  # *Amazon EC2 Auto Scaling User Guide*.
995
995
  #
@@ -1008,6 +1008,9 @@ module Aws::AutoScaling
1008
1008
  #
1009
1009
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html
1010
1010
  #
1011
+ # @option params [String] :context
1012
+ # Reserved.
1013
+ #
1011
1014
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1012
1015
  #
1013
1016
  #
@@ -1163,6 +1166,7 @@ module Aws::AutoScaling
1163
1166
  # ],
1164
1167
  # service_linked_role_arn: "ResourceName",
1165
1168
  # max_instance_lifetime: 1,
1169
+ # context: "Context",
1166
1170
  # })
1167
1171
  #
1168
1172
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateAutoScalingGroup AWS API Documentation
@@ -1913,9 +1917,11 @@ module Aws::AutoScaling
1913
1917
  # Describes the current Amazon EC2 Auto Scaling resource quotas for your
1914
1918
  # account.
1915
1919
  #
1916
- # For information about requesting an increase, see [Amazon EC2 Auto
1917
- # Scaling service quotas][1] in the *Amazon EC2 Auto Scaling User
1918
- # Guide*.
1920
+ # When you establish an account, the account has initial quotas on the
1921
+ # maximum number of Auto Scaling groups and launch configurations that
1922
+ # you can create in a given Region. For more information, see [Amazon
1923
+ # EC2 Auto Scaling service quotas][1] in the *Amazon EC2 Auto Scaling
1924
+ # User Guide*.
1919
1925
  #
1920
1926
  #
1921
1927
  #
@@ -2180,6 +2186,7 @@ module Aws::AutoScaling
2180
2186
  # resp.auto_scaling_groups[0].warm_pool_configuration.pool_state #=> String, one of "Stopped", "Running"
2181
2187
  # resp.auto_scaling_groups[0].warm_pool_configuration.status #=> String, one of "PendingDelete"
2182
2188
  # resp.auto_scaling_groups[0].warm_pool_size #=> Integer
2189
+ # resp.auto_scaling_groups[0].context #=> String
2183
2190
  # resp.next_token #=> String
2184
2191
  #
2185
2192
  #
@@ -5800,6 +5807,9 @@ module Aws::AutoScaling
5800
5807
  #
5801
5808
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/capacity-rebalance.html
5802
5809
  #
5810
+ # @option params [String] :context
5811
+ # Reserved.
5812
+ #
5803
5813
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5804
5814
  #
5805
5815
  #
@@ -5883,6 +5893,7 @@ module Aws::AutoScaling
5883
5893
  # service_linked_role_arn: "ResourceName",
5884
5894
  # max_instance_lifetime: 1,
5885
5895
  # capacity_rebalance: false,
5896
+ # context: "Context",
5886
5897
  # })
5887
5898
  #
5888
5899
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/UpdateAutoScalingGroup AWS API Documentation
@@ -5907,7 +5918,7 @@ module Aws::AutoScaling
5907
5918
  params: params,
5908
5919
  config: config)
5909
5920
  context[:gem_name] = 'aws-sdk-autoscaling'
5910
- context[:gem_version] = '1.62.0'
5921
+ context[:gem_version] = '1.66.0'
5911
5922
  Seahorse::Client::Request.new(handlers, context)
5912
5923
  end
5913
5924
 
@@ -67,6 +67,7 @@ module Aws::AutoScaling
67
67
  ClassicLinkVPCSecurityGroups = Shapes::ListShape.new(name: 'ClassicLinkVPCSecurityGroups')
68
68
  CompleteLifecycleActionAnswer = Shapes::StructureShape.new(name: 'CompleteLifecycleActionAnswer')
69
69
  CompleteLifecycleActionType = Shapes::StructureShape.new(name: 'CompleteLifecycleActionType')
70
+ Context = Shapes::StringShape.new(name: 'Context')
70
71
  Cooldown = Shapes::IntegerShape.new(name: 'Cooldown')
71
72
  CreateAutoScalingGroupType = Shapes::StructureShape.new(name: 'CreateAutoScalingGroupType')
72
73
  CreateLaunchConfigurationType = Shapes::StructureShape.new(name: 'CreateLaunchConfigurationType')
@@ -407,6 +408,7 @@ module Aws::AutoScaling
407
408
  AutoScalingGroup.add_member(:capacity_rebalance, Shapes::ShapeRef.new(shape: CapacityRebalanceEnabled, location_name: "CapacityRebalance"))
408
409
  AutoScalingGroup.add_member(:warm_pool_configuration, Shapes::ShapeRef.new(shape: WarmPoolConfiguration, location_name: "WarmPoolConfiguration"))
409
410
  AutoScalingGroup.add_member(:warm_pool_size, Shapes::ShapeRef.new(shape: WarmPoolSize, location_name: "WarmPoolSize"))
411
+ AutoScalingGroup.add_member(:context, Shapes::ShapeRef.new(shape: Context, location_name: "Context"))
410
412
  AutoScalingGroup.struct_class = Types::AutoScalingGroup
411
413
 
412
414
  AutoScalingGroupNames.member = Shapes::ShapeRef.new(shape: XmlStringMaxLen255)
@@ -512,6 +514,7 @@ module Aws::AutoScaling
512
514
  CreateAutoScalingGroupType.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
513
515
  CreateAutoScalingGroupType.add_member(:service_linked_role_arn, Shapes::ShapeRef.new(shape: ResourceName, location_name: "ServiceLinkedRoleARN"))
514
516
  CreateAutoScalingGroupType.add_member(:max_instance_lifetime, Shapes::ShapeRef.new(shape: MaxInstanceLifetime, location_name: "MaxInstanceLifetime"))
517
+ CreateAutoScalingGroupType.add_member(:context, Shapes::ShapeRef.new(shape: Context, location_name: "Context"))
515
518
  CreateAutoScalingGroupType.struct_class = Types::CreateAutoScalingGroupType
516
519
 
517
520
  CreateLaunchConfigurationType.add_member(:launch_configuration_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, required: true, location_name: "LaunchConfigurationName"))
@@ -1258,6 +1261,7 @@ module Aws::AutoScaling
1258
1261
  UpdateAutoScalingGroupType.add_member(:service_linked_role_arn, Shapes::ShapeRef.new(shape: ResourceName, location_name: "ServiceLinkedRoleARN"))
1259
1262
  UpdateAutoScalingGroupType.add_member(:max_instance_lifetime, Shapes::ShapeRef.new(shape: MaxInstanceLifetime, location_name: "MaxInstanceLifetime"))
1260
1263
  UpdateAutoScalingGroupType.add_member(:capacity_rebalance, Shapes::ShapeRef.new(shape: CapacityRebalanceEnabled, location_name: "CapacityRebalance"))
1264
+ UpdateAutoScalingGroupType.add_member(:context, Shapes::ShapeRef.new(shape: Context, location_name: "Context"))
1261
1265
  UpdateAutoScalingGroupType.struct_class = Types::UpdateAutoScalingGroupType
1262
1266
 
1263
1267
  Values.member = Shapes::ShapeRef.new(shape: XmlString)
@@ -110,6 +110,7 @@ module Aws::AutoScaling
110
110
  # ],
111
111
  # service_linked_role_arn: "ResourceName",
112
112
  # max_instance_lifetime: 1,
113
+ # context: "Context",
113
114
  # })
114
115
  # @param [Hash] options ({})
115
116
  # @option options [required, String] :auto_scaling_group_name
@@ -321,7 +322,7 @@ module Aws::AutoScaling
321
322
  # The Amazon Resource Name (ARN) of the service-linked role that the
322
323
  # Auto Scaling group uses to call other Amazon Web Services on your
323
324
  # behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role
324
- # named AWSServiceRoleForAutoScaling, which it creates if it does not
325
+ # named `AWSServiceRoleForAutoScaling`, which it creates if it does not
325
326
  # exist. For more information, see [Service-linked roles][1] in the
326
327
  # *Amazon EC2 Auto Scaling User Guide*.
327
328
  #
@@ -338,6 +339,8 @@ module Aws::AutoScaling
338
339
  #
339
340
  #
340
341
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html
342
+ # @option options [String] :context
343
+ # Reserved.
341
344
  # @return [AutoScalingGroup]
342
345
  def create_group(options = {})
343
346
  @client.create_auto_scaling_group(options)
@@ -407,6 +407,10 @@ module Aws::AutoScaling
407
407
  # The current size of the warm pool.
408
408
  # @return [Integer]
409
409
  #
410
+ # @!attribute [rw] context
411
+ # Reserved.
412
+ # @return [String]
413
+ #
410
414
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AutoScalingGroup AWS API Documentation
411
415
  #
412
416
  class AutoScalingGroup < Struct.new(
@@ -439,7 +443,8 @@ module Aws::AutoScaling
439
443
  :max_instance_lifetime,
440
444
  :capacity_rebalance,
441
445
  :warm_pool_configuration,
442
- :warm_pool_size)
446
+ :warm_pool_size,
447
+ :context)
443
448
  SENSITIVE = []
444
449
  include Aws::Structure
445
450
  end
@@ -939,6 +944,7 @@ module Aws::AutoScaling
939
944
  # ],
940
945
  # service_linked_role_arn: "ResourceName",
941
946
  # max_instance_lifetime: 1,
947
+ # context: "Context",
942
948
  # }
943
949
  #
944
950
  # @!attribute [rw] auto_scaling_group_name
@@ -1197,9 +1203,9 @@ module Aws::AutoScaling
1197
1203
  # The Amazon Resource Name (ARN) of the service-linked role that the
1198
1204
  # Auto Scaling group uses to call other Amazon Web Services on your
1199
1205
  # behalf. By default, Amazon EC2 Auto Scaling uses a service-linked
1200
- # role named AWSServiceRoleForAutoScaling, which it creates if it does
1201
- # not exist. For more information, see [Service-linked roles][1] in
1202
- # the *Amazon EC2 Auto Scaling User Guide*.
1206
+ # role named `AWSServiceRoleForAutoScaling`, which it creates if it
1207
+ # does not exist. For more information, see [Service-linked roles][1]
1208
+ # in the *Amazon EC2 Auto Scaling User Guide*.
1203
1209
  #
1204
1210
  #
1205
1211
  #
@@ -1219,6 +1225,10 @@ module Aws::AutoScaling
1219
1225
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html
1220
1226
  # @return [Integer]
1221
1227
  #
1228
+ # @!attribute [rw] context
1229
+ # Reserved.
1230
+ # @return [String]
1231
+ #
1222
1232
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateAutoScalingGroupType AWS API Documentation
1223
1233
  #
1224
1234
  class CreateAutoScalingGroupType < Struct.new(
@@ -1244,7 +1254,8 @@ module Aws::AutoScaling
1244
1254
  :lifecycle_hook_specification_list,
1245
1255
  :tags,
1246
1256
  :service_linked_role_arn,
1247
- :max_instance_lifetime)
1257
+ :max_instance_lifetime,
1258
+ :context)
1248
1259
  SENSITIVE = []
1249
1260
  include Aws::Structure
1250
1261
  end
@@ -2798,16 +2809,16 @@ module Aws::AutoScaling
2798
2809
  # encryption value. Volumes that are created from encrypted snapshots
2799
2810
  # are automatically encrypted, and volumes that are created from
2800
2811
  # unencrypted snapshots are automatically unencrypted. By default,
2801
- # encrypted snapshots use the AWS managed CMK that is used for EBS
2802
- # encryption, but you can specify a custom CMK when you create the
2803
- # snapshot. The ability to encrypt a snapshot during copying also
2804
- # allows you to apply a new CMK to an already-encrypted snapshot.
2805
- # Volumes restored from the resulting copy are only accessible using
2806
- # the new CMK.
2812
+ # encrypted snapshots use the Amazon Web Services managed CMK that is
2813
+ # used for EBS encryption, but you can specify a custom CMK when you
2814
+ # create the snapshot. The ability to encrypt a snapshot during
2815
+ # copying also allows you to apply a new CMK to an already-encrypted
2816
+ # snapshot. Volumes restored from the resulting copy are only
2817
+ # accessible using the new CMK.
2807
2818
  #
2808
2819
  # Enabling [encryption by default][2] results in all EBS volumes being
2809
- # encrypted with the AWS managed CMK or a customer managed CMK,
2810
- # whether or not the snapshot was encrypted.
2820
+ # encrypted with the Amazon Web Services managed CMK or a customer
2821
+ # managed CMK, whether or not the snapshot was encrypted.
2811
2822
  #
2812
2823
  # </note>
2813
2824
  #
@@ -2825,9 +2836,7 @@ module Aws::AutoScaling
2825
2836
  # @return [Boolean]
2826
2837
  #
2827
2838
  # @!attribute [rw] throughput
2828
- # The throughput to provision for a `gp3` volume.
2829
- #
2830
- # Valid Range: Minimum value of 125. Maximum value of 1000.
2839
+ # The throughput (MiBps) to provision for a `gp3` volume.
2831
2840
  # @return [Integer]
2832
2841
  #
2833
2842
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Ebs AWS API Documentation
@@ -4777,16 +4786,20 @@ module Aws::AutoScaling
4777
4786
  # @return [String]
4778
4787
  #
4779
4788
  # @!attribute [rw] resource_label
4780
- # Identifies the resource associated with the metric type. You can't
4781
- # specify a resource label unless the metric type is
4782
- # `ALBRequestCountPerTarget` and there is a target group attached to
4783
- # the Auto Scaling group.
4789
+ # A label that uniquely identifies a specific Application Load
4790
+ # Balancer target group from which to determine the average request
4791
+ # count served by your Auto Scaling group. You can't specify a
4792
+ # resource label unless the target group is attached to the Auto
4793
+ # Scaling group.
4784
4794
  #
4785
4795
  # You create the resource label by appending the final portion of the
4786
4796
  # load balancer ARN and the final portion of the target group ARN into
4787
- # a single value, separated by a forward slash (/). The format is
4788
- # app/&lt;load-balancer-name&gt;/&lt;load-balancer-id&gt;/targetgroup/&lt;target-group-name&gt;/&lt;target-group-id&gt;,
4789
- # where:
4797
+ # a single value, separated by a forward slash (/). The format of the
4798
+ # resource label is:
4799
+ #
4800
+ # `app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff`.
4801
+ #
4802
+ # Where:
4790
4803
  #
4791
4804
  # * app/&lt;load-balancer-name&gt;/&lt;load-balancer-id&gt; is the
4792
4805
  # final portion of the load balancer ARN
@@ -4794,9 +4807,6 @@ module Aws::AutoScaling
4794
4807
  # * targetgroup/&lt;target-group-name&gt;/&lt;target-group-id&gt; is
4795
4808
  # the final portion of the target group ARN.
4796
4809
  #
4797
- # This is an example:
4798
- # app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d.
4799
- #
4800
4810
  # To find the ARN for an Application Load Balancer, use the
4801
4811
  # [DescribeLoadBalancers][1] API operation. To find the ARN for the
4802
4812
  # target group, use the [DescribeTargetGroups][2] API operation.
@@ -5036,7 +5046,7 @@ module Aws::AutoScaling
5036
5046
  # a single value, separated by a forward slash (/). The format of the
5037
5047
  # resource label is:
5038
5048
  #
5039
- # `app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d`.
5049
+ # `app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff`.
5040
5050
  #
5041
5051
  # Where:
5042
5052
  #
@@ -5086,16 +5096,17 @@ module Aws::AutoScaling
5086
5096
  #
5087
5097
  # @!attribute [rw] resource_label
5088
5098
  # A label that uniquely identifies a specific Application Load
5089
- # Balancer target group from which to determine the request count
5090
- # served by your Auto Scaling group. You can't specify a resource
5091
- # label unless the target group is attached to the Auto Scaling group.
5099
+ # Balancer target group from which to determine the total and average
5100
+ # request count served by your Auto Scaling group. You can't specify
5101
+ # a resource label unless the target group is attached to the Auto
5102
+ # Scaling group.
5092
5103
  #
5093
5104
  # You create the resource label by appending the final portion of the
5094
5105
  # load balancer ARN and the final portion of the target group ARN into
5095
5106
  # a single value, separated by a forward slash (/). The format of the
5096
5107
  # resource label is:
5097
5108
  #
5098
- # `app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d`.
5109
+ # `app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff`.
5099
5110
  #
5100
5111
  # Where:
5101
5112
  #
@@ -5144,16 +5155,17 @@ module Aws::AutoScaling
5144
5155
  #
5145
5156
  # @!attribute [rw] resource_label
5146
5157
  # A label that uniquely identifies a specific Application Load
5147
- # Balancer target group from which to determine the request count
5148
- # served by your Auto Scaling group. You can't specify a resource
5149
- # label unless the target group is attached to the Auto Scaling group.
5158
+ # Balancer target group from which to determine the average request
5159
+ # count served by your Auto Scaling group. You can't specify a
5160
+ # resource label unless the target group is attached to the Auto
5161
+ # Scaling group.
5150
5162
  #
5151
5163
  # You create the resource label by appending the final portion of the
5152
5164
  # load balancer ARN and the final portion of the target group ARN into
5153
5165
  # a single value, separated by a forward slash (/). The format of the
5154
5166
  # resource label is:
5155
5167
  #
5156
- # `app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d`.
5168
+ # `app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff`.
5157
5169
  #
5158
5170
  # Where:
5159
5171
  #
@@ -6851,6 +6863,7 @@ module Aws::AutoScaling
6851
6863
  # service_linked_role_arn: "ResourceName",
6852
6864
  # max_instance_lifetime: 1,
6853
6865
  # capacity_rebalance: false,
6866
+ # context: "Context",
6854
6867
  # }
6855
6868
  #
6856
6869
  # @!attribute [rw] auto_scaling_group_name
@@ -7022,6 +7035,10 @@ module Aws::AutoScaling
7022
7035
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/capacity-rebalance.html
7023
7036
  # @return [Boolean]
7024
7037
  #
7038
+ # @!attribute [rw] context
7039
+ # Reserved.
7040
+ # @return [String]
7041
+ #
7025
7042
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/UpdateAutoScalingGroupType AWS API Documentation
7026
7043
  #
7027
7044
  class UpdateAutoScalingGroupType < Struct.new(
@@ -7042,7 +7059,8 @@ module Aws::AutoScaling
7042
7059
  :new_instances_protected_from_scale_in,
7043
7060
  :service_linked_role_arn,
7044
7061
  :max_instance_lifetime,
7045
- :capacity_rebalance)
7062
+ :capacity_rebalance,
7063
+ :context)
7046
7064
  SENSITIVE = []
7047
7065
  include Aws::Structure
7048
7066
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-autoscaling
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.66.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: 2021-06-02 00:00:00.000000000 Z
11
+ date: 2021-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.119.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.119.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement