Skip to content

Commit

Permalink
Release v1.42.12 (2021-11-24) (#4187)
Browse files Browse the repository at this point in the history
Release v1.42.12 (2021-11-24)
===

### Service Client Updates
* `service/autoscaling`: Updates service API and documentation
  * Customers can now configure predictive scaling policies to proactively scale EC2 Auto Scaling groups based on any CloudWatch metrics that more accurately represent the load on the group than the four predefined metrics. They can also use math expressions to further customize the metrics.
* `service/customer-profiles`: Updates service API and documentation
* `service/elasticache`: Updates service documentation
  * Doc only update for ElastiCache
* `service/imagebuilder`: Updates service API and documentation
* `service/iotsitewise`: Updates service API, documentation, and paginators
* `service/lambda`: Updates service API, documentation, and paginators
  * Remove Lambda function url apis
* `service/proton`: Updates service API, documentation, and paginators
* `service/timestream-query`: Updates service API, documentation, and paginators
* `service/timestream-write`: Updates service API and documentation
* `service/translate`: Updates service API and documentation

### SDK Bugs
* `aws/crr`: Fixed a race condition that caused concurrent calls relying on endpoint discovery to share the same `url.URL` reference in their operation's `http.Request`.
  • Loading branch information
aws-sdk-go-automation committed Nov 24, 2021
1 parent 35b0995 commit 7765b55
Show file tree
Hide file tree
Showing 46 changed files with 23,669 additions and 7,158 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
Release v1.42.12 (2021-11-24)
===

### Service Client Updates
* `service/autoscaling`: Updates service API and documentation
* Customers can now configure predictive scaling policies to proactively scale EC2 Auto Scaling groups based on any CloudWatch metrics that more accurately represent the load on the group than the four predefined metrics. They can also use math expressions to further customize the metrics.
* `service/customer-profiles`: Updates service API and documentation
* `service/elasticache`: Updates service documentation
* Doc only update for ElastiCache
* `service/imagebuilder`: Updates service API and documentation
* `service/iotsitewise`: Updates service API, documentation, and paginators
* `service/lambda`: Updates service API, documentation, and paginators
* Remove Lambda function url apis
* `service/proton`: Updates service API, documentation, and paginators
* `service/timestream-query`: Updates service API, documentation, and paginators
* `service/timestream-write`: Updates service API and documentation
* `service/translate`: Updates service API and documentation

### SDK Bugs
* `aws/crr`: Fixed a race condition that caused concurrent calls relying on endpoint discovery to share the same `url.URL` reference in their operation's `http.Request`.

Release v1.42.11 (2021-11-23)
===

Expand Down
1 change: 0 additions & 1 deletion CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
### SDK Enhancements

### SDK Bugs
* `aws/crr`: Fixed a race condition that caused concurrent calls relying on endpoint discovery to share the same `url.URL` reference in their operation's `http.Request`.
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.42.11"
const SDKVersion = "1.42.12"
77 changes: 76 additions & 1 deletion models/apis/autoscaling/2011-01-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2401,6 +2401,18 @@
"Max":{"shape":"NullablePositiveInteger"}
}
},
"Metric":{
"type":"structure",
"required":[
"Namespace",
"MetricName"
],
"members":{
"Namespace":{"shape":"MetricNamespace"},
"MetricName":{"shape":"MetricName"},
"Dimensions":{"shape":"MetricDimensions"}
}
},
"MetricCollectionType":{
"type":"structure",
"members":{
Expand All @@ -2411,6 +2423,21 @@
"type":"list",
"member":{"shape":"MetricCollectionType"}
},
"MetricDataQueries":{
"type":"list",
"member":{"shape":"MetricDataQuery"}
},
"MetricDataQuery":{
"type":"structure",
"required":["Id"],
"members":{
"Id":{"shape":"XmlStringMaxLen255"},
"Expression":{"shape":"XmlStringMaxLen1023"},
"MetricStat":{"shape":"MetricStat"},
"Label":{"shape":"XmlStringMetricLabel"},
"ReturnData":{"shape":"ReturnData"}
}
},
"MetricDimension":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2441,6 +2468,18 @@
"MetricName":{"type":"string"},
"MetricNamespace":{"type":"string"},
"MetricScale":{"type":"double"},
"MetricStat":{
"type":"structure",
"required":[
"Metric",
"Stat"
],
"members":{
"Metric":{"shape":"Metric"},
"Stat":{"shape":"XmlStringMetricStat"},
"Unit":{"shape":"MetricUnit"}
}
},
"MetricStatistic":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2600,6 +2639,27 @@
"MaxCapacityBuffer":{"shape":"PredictiveScalingMaxCapacityBuffer"}
}
},
"PredictiveScalingCustomizedCapacityMetric":{
"type":"structure",
"required":["MetricDataQueries"],
"members":{
"MetricDataQueries":{"shape":"MetricDataQueries"}
}
},
"PredictiveScalingCustomizedLoadMetric":{
"type":"structure",
"required":["MetricDataQueries"],
"members":{
"MetricDataQueries":{"shape":"MetricDataQueries"}
}
},
"PredictiveScalingCustomizedScalingMetric":{
"type":"structure",
"required":["MetricDataQueries"],
"members":{
"MetricDataQueries":{"shape":"MetricDataQueries"}
}
},
"PredictiveScalingForecastTimestamps":{
"type":"list",
"member":{"shape":"TimestampType"}
Expand Down Expand Up @@ -2627,7 +2687,10 @@
"TargetValue":{"shape":"MetricScale"},
"PredefinedMetricPairSpecification":{"shape":"PredictiveScalingPredefinedMetricPair"},
"PredefinedScalingMetricSpecification":{"shape":"PredictiveScalingPredefinedScalingMetric"},
"PredefinedLoadMetricSpecification":{"shape":"PredictiveScalingPredefinedLoadMetric"}
"PredefinedLoadMetricSpecification":{"shape":"PredictiveScalingPredefinedLoadMetric"},
"CustomizedScalingMetricSpecification":{"shape":"PredictiveScalingCustomizedScalingMetric"},
"CustomizedLoadMetricSpecification":{"shape":"PredictiveScalingCustomizedLoadMetric"},
"CustomizedCapacityMetricSpecification":{"shape":"PredictiveScalingCustomizedCapacityMetric"}
}
},
"PredictiveScalingMetricSpecifications":{
Expand Down Expand Up @@ -2851,6 +2914,7 @@
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"ReturnData":{"type":"boolean"},
"ScalingActivityInProgressFault":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3270,6 +3334,17 @@
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"XmlStringMetricLabel":{
"type":"string",
"max":2047,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"XmlStringMetricStat":{
"type":"string",
"max":100,
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
},
"XmlStringUserData":{
"type":"string",
"max":21847,
Expand Down

0 comments on commit 7765b55

Please sign in to comment.