Skip to content

Commit

Permalink
Update models and changelog for 3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Jul 7, 2015
1 parent 22b04ab commit daf5385
Show file tree
Hide file tree
Showing 7 changed files with 195 additions and 50 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,18 @@
# CHANGELOG

## next release

* `Aws\AutoScaling` - Added support for step policies.
* `Aws\CloudHsm` - Fixed a naming collision with the `GetConfig` operation. This
operation is now available through the `GetConfigFiles` method.
* `Aws\DynamoDb` - Improved performance when unmarshalling complex documents.
* `Aws\DynamoDb` - Fixed checksum comparison of uncompressed responses.
* `Aws\Ec2` - Added support for encrypted snapshots.
* `Aws\S3` - Added support for user-provided SHA256 checksums for S3 uploads.
* `Aws\S3` - Added support for custom protocols in `Aws\S3\StreamWrapper`.
* Added cucumber integration tests.
* Updated the test suite to be compatible with PHP 7-alpha 2.

## 3.0.6 - 2015-06-24

* `Aws\CloudFront` - Added support for configurable `MaxTTL` and `DefaultTTL`.
Expand Down
45 changes: 41 additions & 4 deletions src/data/autoscaling/2011-01-01/api-2.json
Expand Up @@ -1746,6 +1746,7 @@
"members":{
"AutoScalingGroupName":{"shape":"ResourceName"},
"PolicyNames":{"shape":"PolicyNames"},
"PolicyTypes":{"shape":"PolicyTypes"},
"NextToken":{"shape":"XmlString"},
"MaxRecords":{"shape":"MaxRecords"}
}
Expand Down Expand Up @@ -1874,13 +1875,16 @@
"ShouldDecrementDesiredCapacity":{"shape":"ShouldDecrementDesiredCapacity"}
}
},
"EstimatedInstanceWarmup":{"type":"integer"},
"ExecutePolicyType":{
"type":"structure",
"required":["PolicyName"],
"members":{
"AutoScalingGroupName":{"shape":"ResourceName"},
"PolicyName":{"shape":"ResourceName"},
"HonorCooldown":{"shape":"HonorCooldown"}
"HonorCooldown":{"shape":"HonorCooldown"},
"MetricValue":{"shape":"MetricScale"},
"BreachThreshold":{"shape":"MetricScale"}
}
},
"ExitStandbyAnswer":{
Expand Down Expand Up @@ -2114,11 +2118,16 @@
"type":"list",
"member":{"shape":"MetricGranularityType"}
},
"MetricScale":{"type":"double"},
"Metrics":{
"type":"list",
"member":{"shape":"XmlStringMaxLen255"}
},
"MinAdjustmentStep":{"type":"integer"},
"MinAdjustmentMagnitude":{"type":"integer"},
"MinAdjustmentStep":{
"type":"integer",
"deprecated":true
},
"MonitoringEnabled":{"type":"boolean"},
"NoDevice":{"type":"boolean"},
"NotificationConfiguration":{
Expand Down Expand Up @@ -2151,6 +2160,10 @@
"type":"list",
"member":{"shape":"ResourceName"}
},
"PolicyTypes":{
"type":"list",
"member":{"shape":"XmlStringMaxLen64"}
},
"ProcessNames":{
"type":"list",
"member":{"shape":"XmlStringMaxLen255"}
Expand Down Expand Up @@ -2219,10 +2232,15 @@
"members":{
"AutoScalingGroupName":{"shape":"ResourceName"},
"PolicyName":{"shape":"XmlStringMaxLen255"},
"PolicyType":{"shape":"XmlStringMaxLen64"},
"AdjustmentType":{"shape":"XmlStringMaxLen255"},
"MinAdjustmentStep":{"shape":"MinAdjustmentStep"},
"MinAdjustmentMagnitude":{"shape":"MinAdjustmentMagnitude"},
"ScalingAdjustment":{"shape":"PolicyIncrement"},
"Cooldown":{"shape":"Cooldown"}
"Cooldown":{"shape":"Cooldown"},
"MetricAggregationType":{"shape":"XmlStringMaxLen32"},
"StepAdjustments":{"shape":"StepAdjustments"},
"EstimatedInstanceWarmup":{"shape":"EstimatedInstanceWarmup"}
}
},
"PutScheduledUpdateGroupActionType":{
Expand Down Expand Up @@ -2313,6 +2331,7 @@
"InProgress",
"WaitingForELBConnectionDraining",
"MidLifecycleAction",
"WaitingForInstanceWarmup",
"Successful",
"Failed",
"Cancelled"
Expand All @@ -2328,10 +2347,15 @@
"AutoScalingGroupName":{"shape":"XmlStringMaxLen255"},
"PolicyName":{"shape":"XmlStringMaxLen255"},
"PolicyARN":{"shape":"ResourceName"},
"MinAdjustmentStep":{"shape":"MinAdjustmentStep"},
"PolicyType":{"shape":"XmlStringMaxLen64"},
"AdjustmentType":{"shape":"XmlStringMaxLen255"},
"MinAdjustmentStep":{"shape":"MinAdjustmentStep"},
"MinAdjustmentMagnitude":{"shape":"MinAdjustmentMagnitude"},
"ScalingAdjustment":{"shape":"PolicyIncrement"},
"Cooldown":{"shape":"Cooldown"},
"StepAdjustments":{"shape":"StepAdjustments"},
"MetricAggregationType":{"shape":"XmlStringMaxLen32"},
"EstimatedInstanceWarmup":{"shape":"EstimatedInstanceWarmup"},
"Alarms":{"shape":"Alarms"}
}
},
Expand Down Expand Up @@ -2408,6 +2432,19 @@
"min":1,
"max":255
},
"StepAdjustment":{
"type":"structure",
"required":["ScalingAdjustment"],
"members":{
"MetricIntervalLowerBound":{"shape":"MetricScale"},
"MetricIntervalUpperBound":{"shape":"MetricScale"},
"ScalingAdjustment":{"shape":"PolicyIncrement"}
}
},
"StepAdjustments":{
"type":"list",
"member":{"shape":"StepAdjustment"}
},
"SuspendedProcess":{
"type":"structure",
"members":{
Expand Down

0 comments on commit daf5385

Please sign in to comment.