aws-sdk-applicationautoscaling 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28151619c0bb34f6d8cdfebbedd082e361d6abf4
|
|
4
|
+
data.tar.gz: 982799d1595b52f633150690d8d973aa326a104c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 770faf05a7985fdf01d66fb06e097f8b4f88a5e3cabdd2a656397468c43f68e9f7892e89a49b59a5488ff1468fc1b8f2b97af09d805227da51a5a7890d0269ea
|
|
7
|
+
data.tar.gz: d7730c8b92bf3bb7099b8f7f9df3363f2613661345f1c4729d8c92690eaf460335832e930cf171f8ff5f72a7bf57c043a40c5f21cf6630d20b62bcca46592b51
|
|
@@ -851,6 +851,7 @@ module Aws::ApplicationAutoScaling
|
|
|
851
851
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.unit #=> String
|
|
852
852
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
|
|
853
853
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
|
|
854
|
+
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.disable_scale_in #=> Boolean
|
|
854
855
|
# resp.scaling_policies[0].alarms #=> Array
|
|
855
856
|
# resp.scaling_policies[0].alarms[0].alarm_name #=> String
|
|
856
857
|
# resp.scaling_policies[0].alarms[0].alarm_arn #=> String
|
|
@@ -1070,6 +1071,7 @@ module Aws::ApplicationAutoScaling
|
|
|
1070
1071
|
# },
|
|
1071
1072
|
# scale_out_cooldown: 1,
|
|
1072
1073
|
# scale_in_cooldown: 1,
|
|
1074
|
+
# disable_scale_in: false,
|
|
1073
1075
|
# },
|
|
1074
1076
|
# })
|
|
1075
1077
|
#
|
|
@@ -1245,7 +1247,7 @@ module Aws::ApplicationAutoScaling
|
|
|
1245
1247
|
params: params,
|
|
1246
1248
|
config: config)
|
|
1247
1249
|
context[:gem_name] = 'aws-sdk-applicationautoscaling'
|
|
1248
|
-
context[:gem_version] = '1.
|
|
1250
|
+
context[:gem_version] = '1.1.0'
|
|
1249
1251
|
Seahorse::Client::Request.new(handlers, context)
|
|
1250
1252
|
end
|
|
1251
1253
|
|
|
@@ -27,6 +27,7 @@ module Aws::ApplicationAutoScaling
|
|
|
27
27
|
DescribeScalingActivitiesResponse = Shapes::StructureShape.new(name: 'DescribeScalingActivitiesResponse')
|
|
28
28
|
DescribeScalingPoliciesRequest = Shapes::StructureShape.new(name: 'DescribeScalingPoliciesRequest')
|
|
29
29
|
DescribeScalingPoliciesResponse = Shapes::StructureShape.new(name: 'DescribeScalingPoliciesResponse')
|
|
30
|
+
DisableScaleIn = Shapes::BooleanShape.new(name: 'DisableScaleIn')
|
|
30
31
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
31
32
|
FailedResourceAccessException = Shapes::StructureShape.new(name: 'FailedResourceAccessException')
|
|
32
33
|
InternalServiceException = Shapes::StructureShape.new(name: 'InternalServiceException')
|
|
@@ -232,6 +233,7 @@ module Aws::ApplicationAutoScaling
|
|
|
232
233
|
TargetTrackingScalingPolicyConfiguration.add_member(:customized_metric_specification, Shapes::ShapeRef.new(shape: CustomizedMetricSpecification, location_name: "CustomizedMetricSpecification"))
|
|
233
234
|
TargetTrackingScalingPolicyConfiguration.add_member(:scale_out_cooldown, Shapes::ShapeRef.new(shape: Cooldown, location_name: "ScaleOutCooldown"))
|
|
234
235
|
TargetTrackingScalingPolicyConfiguration.add_member(:scale_in_cooldown, Shapes::ShapeRef.new(shape: Cooldown, location_name: "ScaleInCooldown"))
|
|
236
|
+
TargetTrackingScalingPolicyConfiguration.add_member(:disable_scale_in, Shapes::ShapeRef.new(shape: DisableScaleIn, location_name: "DisableScaleIn"))
|
|
235
237
|
TargetTrackingScalingPolicyConfiguration.struct_class = Types::TargetTrackingScalingPolicyConfiguration
|
|
236
238
|
|
|
237
239
|
|
|
@@ -728,6 +728,7 @@ module Aws::ApplicationAutoScaling
|
|
|
728
728
|
# },
|
|
729
729
|
# scale_out_cooldown: 1,
|
|
730
730
|
# scale_in_cooldown: 1,
|
|
731
|
+
# disable_scale_in: false,
|
|
731
732
|
# },
|
|
732
733
|
# }
|
|
733
734
|
#
|
|
@@ -1474,6 +1475,7 @@ module Aws::ApplicationAutoScaling
|
|
|
1474
1475
|
# },
|
|
1475
1476
|
# scale_out_cooldown: 1,
|
|
1476
1477
|
# scale_in_cooldown: 1,
|
|
1478
|
+
# disable_scale_in: false,
|
|
1477
1479
|
# }
|
|
1478
1480
|
#
|
|
1479
1481
|
# @!attribute [rw] target_value
|
|
@@ -1511,6 +1513,9 @@ module Aws::ApplicationAutoScaling
|
|
|
1511
1513
|
# immediately.
|
|
1512
1514
|
# @return [Integer]
|
|
1513
1515
|
#
|
|
1516
|
+
# @!attribute [rw] disable_scale_in
|
|
1517
|
+
# @return [Boolean]
|
|
1518
|
+
#
|
|
1514
1519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/TargetTrackingScalingPolicyConfiguration AWS API Documentation
|
|
1515
1520
|
#
|
|
1516
1521
|
class TargetTrackingScalingPolicyConfiguration < Struct.new(
|
|
@@ -1518,7 +1523,8 @@ module Aws::ApplicationAutoScaling
|
|
|
1518
1523
|
:predefined_metric_specification,
|
|
1519
1524
|
:customized_metric_specification,
|
|
1520
1525
|
:scale_out_cooldown,
|
|
1521
|
-
:scale_in_cooldown
|
|
1526
|
+
:scale_in_cooldown,
|
|
1527
|
+
:disable_scale_in)
|
|
1522
1528
|
include Aws::Structure
|
|
1523
1529
|
end
|
|
1524
1530
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-applicationautoscaling
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.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: 2017-08-
|
|
11
|
+
date: 2017-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|