Skip to content

Commit

Permalink
Release v1.44.160 (2022-12-14) (#4663)
Browse files Browse the repository at this point in the history
Release v1.44.160 (2022-12-14)
===

### Service Client Updates
* `service/ce`: Updates service API and documentation
* `service/monitoring`: Updates service API and documentation
  * Adding support for Metrics Insights Alarms
* `service/networkmanager`: Updates service API and documentation
* `service/redshift-data`: Updates service API and documentation
* `service/sagemaker-metrics`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation committed Dec 14, 2022
1 parent 183764b commit d7b4743
Show file tree
Hide file tree
Showing 25 changed files with 2,041 additions and 291 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
Release v1.44.160 (2022-12-14)
===

### Service Client Updates
* `service/ce`: Updates service API and documentation
* `service/monitoring`: Updates service API and documentation
* Adding support for Metrics Insights Alarms
* `service/networkmanager`: Updates service API and documentation
* `service/redshift-data`: Updates service API and documentation
* `service/sagemaker-metrics`: Updates service documentation

Release v1.44.159 (2022-12-13)
===

Expand Down
9 changes: 9 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.159"
const SDKVersion = "1.44.160"
31 changes: 23 additions & 8 deletions models/apis/ce/2017-10-25/api-2.json
Expand Up @@ -607,7 +607,6 @@
"required":[
"MonitorArnList",
"Subscribers",
"Threshold",
"Frequency",
"SubscriptionName"
],
Expand All @@ -616,9 +615,14 @@
"AccountId":{"shape":"GenericString"},
"MonitorArnList":{"shape":"MonitorArnList"},
"Subscribers":{"shape":"Subscribers"},
"Threshold":{"shape":"NullableNonNegativeDouble"},
"Threshold":{
"shape":"NullableNonNegativeDouble",
"deprecated":true,
"deprecatedMessage":"Threshold has been deprecated in favor of ThresholdExpression"
},
"Frequency":{"shape":"AnomalySubscriptionFrequency"},
"SubscriptionName":{"shape":"GenericString"}
"SubscriptionName":{"shape":"GenericString"},
"ThresholdExpression":{"shape":"Expression"}
}
},
"AnomalySubscriptionFrequency":{
Expand Down Expand Up @@ -1136,7 +1140,9 @@
"PAYMENT_OPTION",
"AGREEMENT_END_DATE_TIME_AFTER",
"AGREEMENT_END_DATE_TIME_BEFORE",
"INVOICING_ENTITY"
"INVOICING_ENTITY",
"ANOMALY_TOTAL_IMPACT_ABSOLUTE",
"ANOMALY_TOTAL_IMPACT_PERCENTAGE"
]
},
"DimensionValues":{
Expand Down Expand Up @@ -1809,7 +1815,10 @@
"required":["MaxImpact"],
"members":{
"MaxImpact":{"shape":"GenericDouble"},
"TotalImpact":{"shape":"GenericDouble"}
"TotalImpact":{"shape":"GenericDouble"},
"TotalActualSpend":{"shape":"NullableNonNegativeDouble"},
"TotalExpectedSpend":{"shape":"NullableNonNegativeDouble"},
"TotalImpactPercentage":{"shape":"NullableNonNegativeDouble"}
}
},
"InstanceDetails":{
Expand Down Expand Up @@ -1925,7 +1934,8 @@
"ENDS_WITH",
"CONTAINS",
"CASE_SENSITIVE",
"CASE_INSENSITIVE"
"CASE_INSENSITIVE",
"GREATER_THAN_OR_EQUAL"
]
},
"MatchOptions":{
Expand Down Expand Up @@ -2801,11 +2811,16 @@
"required":["SubscriptionArn"],
"members":{
"SubscriptionArn":{"shape":"GenericString"},
"Threshold":{"shape":"NullableNonNegativeDouble"},
"Threshold":{
"shape":"NullableNonNegativeDouble",
"deprecated":true,
"deprecatedMessage":"Threshold has been deprecated in favor of ThresholdExpression"
},
"Frequency":{"shape":"AnomalySubscriptionFrequency"},
"MonitorArnList":{"shape":"MonitorArnList"},
"Subscribers":{"shape":"Subscribers"},
"SubscriptionName":{"shape":"GenericString"}
"SubscriptionName":{"shape":"GenericString"},
"ThresholdExpression":{"shape":"Expression"}
}
},
"UpdateAnomalySubscriptionResponse":{
Expand Down
25 changes: 15 additions & 10 deletions models/apis/ce/2017-10-25/docs-2.json

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions models/apis/monitoring/2010-08-01/api-2.json
Expand Up @@ -1214,6 +1214,10 @@
"type":"integer",
"min":1
},
"EvaluationState":{
"type":"string",
"enum":["PARTIAL_DATA"]
},
"ExceptionType":{"type":"string"},
"ExtendedStatistic":{"type":"string"},
"ExtendedStatistics":{
Expand Down Expand Up @@ -1789,7 +1793,9 @@
"TreatMissingData":{"shape":"TreatMissingData"},
"EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"},
"Metrics":{"shape":"MetricDataQueries"},
"ThresholdMetricId":{"shape":"MetricId"}
"ThresholdMetricId":{"shape":"MetricId"},
"EvaluationState":{"shape":"EvaluationState"},
"StateTransitionedTimestamp":{"shape":"Timestamp"}
},
"xmlOrder":[
"AlarmName",
Expand Down Expand Up @@ -1818,7 +1824,9 @@
"EvaluateLowSampleCountPercentile",
"DatapointsToAlarm",
"Metrics",
"ThresholdMetricId"
"ThresholdMetricId",
"EvaluationState",
"StateTransitionedTimestamp"
]
},
"MetricAlarms":{
Expand Down

0 comments on commit d7b4743

Please sign in to comment.