Skip to content

Commit

Permalink
Release v1.42.31 (2022-01-10) (#4235)
Browse files Browse the repository at this point in the history
Release v1.42.31 (2022-01-10)
===

### Service Client Updates
* `service/compute-optimizer`: Updates service API and documentation
* `service/databrew`: Updates service API and documentation
* `service/ec2`: Updates service API, documentation, and paginators
  * New feature: Updated EC2 API to support faster launching for Windows images. Optimized images are pre-provisioned, using snapshots to launch instances up to 65% faster.
* `service/lookoutmetrics`: Updates service API and documentation
* `service/transcribe`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation authored Jan 10, 2022
1 parent d8a6ff2 commit f22cb4d
Show file tree
Hide file tree
Showing 18 changed files with 2,178 additions and 308 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.42.31 (2022-01-10)
===

### Service Client Updates
* `service/compute-optimizer`: Updates service API and documentation
* `service/databrew`: Updates service API and documentation
* `service/ec2`: Updates service API, documentation, and paginators
* New feature: Updated EC2 API to support faster launching for Windows images. Optimized images are pre-provisioned, using snapshots to launch instances up to 65% faster.
* `service/lookoutmetrics`: Updates service API and documentation
* `service/transcribe`: Updates service documentation

Release v1.42.30 (2022-01-07)
===

Expand Down
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.30"
const SDKVersion = "1.42.31"
71 changes: 60 additions & 11 deletions models/apis/compute-optimizer/2019-11-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,8 @@
"recommendationOptions":{"shape":"AutoScalingGroupRecommendationOptions"},
"lastRefreshTimestamp":{"shape":"LastRefreshTimestamp"},
"currentPerformanceRisk":{"shape":"CurrentPerformanceRisk"},
"effectiveRecommendationPreferences":{"shape":"EffectiveRecommendationPreferences"}
"effectiveRecommendationPreferences":{"shape":"EffectiveRecommendationPreferences"},
"inferredWorkloadTypes":{"shape":"InferredWorkloadTypes"}
}
},
"AutoScalingGroupRecommendationOption":{
Expand All @@ -414,7 +415,8 @@
"projectedUtilizationMetrics":{"shape":"ProjectedUtilizationMetrics"},
"performanceRisk":{"shape":"PerformanceRisk"},
"rank":{"shape":"Rank"},
"savingsOpportunity":{"shape":"SavingsOpportunity"}
"savingsOpportunity":{"shape":"SavingsOpportunity"},
"migrationEffort":{"shape":"MigrationEffort"}
}
},
"AutoScalingGroupRecommendationOptions":{
Expand Down Expand Up @@ -548,7 +550,8 @@
"type":"structure",
"members":{
"cpuVendorArchitectures":{"shape":"CpuVendorArchitectures"},
"enhancedInfrastructureMetrics":{"shape":"EnhancedInfrastructureMetrics"}
"enhancedInfrastructureMetrics":{"shape":"EnhancedInfrastructureMetrics"},
"inferredWorkloadTypes":{"shape":"InferredWorkloadTypesPreference"}
}
},
"EnhancedInfrastructureMetrics":{
Expand Down Expand Up @@ -718,7 +721,10 @@
"RecommendationOptionsEstimatedMonthlySavingsCurrency",
"RecommendationOptionsEstimatedMonthlySavingsValue",
"EffectiveRecommendationPreferencesCpuVendorArchitectures",
"EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics"
"EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics",
"EffectiveRecommendationPreferencesInferredWorkloadTypes",
"InferredWorkloadTypes",
"RecommendationOptionsMigrationEffort"
]
},
"ExportableAutoScalingGroupFields":{
Expand Down Expand Up @@ -776,7 +782,10 @@
"RecommendationOptionsEstimatedMonthlySavingsCurrency",
"RecommendationOptionsEstimatedMonthlySavingsValue",
"EffectiveRecommendationPreferencesCpuVendorArchitectures",
"EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics"
"EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics",
"EffectiveRecommendationPreferencesInferredWorkloadTypes",
"InferredWorkloadTypes",
"RecommendationOptionsMigrationEffort"
]
},
"ExportableInstanceFields":{
Expand Down Expand Up @@ -1093,6 +1102,29 @@
"High":{"type":"long"},
"Identifier":{"type":"string"},
"IncludeMemberAccounts":{"type":"boolean"},
"InferredWorkloadType":{
"type":"string",
"enum":[
"AmazonEmr",
"ApacheCassandra",
"ApacheHadoop",
"Memcached",
"Nginx",
"PostgreSql",
"Redis"
]
},
"InferredWorkloadTypes":{
"type":"list",
"member":{"shape":"InferredWorkloadType"}
},
"InferredWorkloadTypesPreference":{
"type":"string",
"enum":[
"Active",
"Inactive"
]
},
"InstanceArn":{"type":"string"},
"InstanceArns":{
"type":"list",
Expand All @@ -1114,7 +1146,8 @@
"recommendationSources":{"shape":"RecommendationSources"},
"lastRefreshTimestamp":{"shape":"LastRefreshTimestamp"},
"currentPerformanceRisk":{"shape":"CurrentPerformanceRisk"},
"effectiveRecommendationPreferences":{"shape":"EffectiveRecommendationPreferences"}
"effectiveRecommendationPreferences":{"shape":"EffectiveRecommendationPreferences"},
"inferredWorkloadTypes":{"shape":"InferredWorkloadTypes"}
}
},
"InstanceRecommendationFindingReasonCode":{
Expand Down Expand Up @@ -1150,7 +1183,8 @@
"platformDifferences":{"shape":"PlatformDifferences"},
"performanceRisk":{"shape":"PerformanceRisk"},
"rank":{"shape":"Rank"},
"savingsOpportunity":{"shape":"SavingsOpportunity"}
"savingsOpportunity":{"shape":"SavingsOpportunity"},
"migrationEffort":{"shape":"MigrationEffort"}
}
},
"InstanceRecommendations":{
Expand Down Expand Up @@ -1382,6 +1416,15 @@
"type":"list",
"member":{"shape":"MetricValue"}
},
"MigrationEffort":{
"type":"string",
"enum":[
"VeryLow",
"Low",
"Medium",
"High"
]
},
"MinSize":{"type":"integer"},
"MissingAuthenticationToken":{
"type":"structure",
Expand Down Expand Up @@ -1445,7 +1488,8 @@
"members":{
"resourceType":{"shape":"ResourceType"},
"scope":{"shape":"Scope"},
"enhancedInfrastructureMetrics":{"shape":"EnhancedInfrastructureMetrics"}
"enhancedInfrastructureMetrics":{"shape":"EnhancedInfrastructureMetrics"},
"inferredWorkloadTypes":{"shape":"InferredWorkloadTypesPreference"}
}
},
"PutRecommendationPreferencesResponse":{
Expand Down Expand Up @@ -1487,7 +1531,10 @@
},
"RecommendationPreferenceName":{
"type":"string",
"enum":["EnhancedInfrastructureMetrics"]
"enum":[
"EnhancedInfrastructureMetrics",
"InferredWorkloadTypes"
]
},
"RecommendationPreferenceNames":{
"type":"list",
Expand All @@ -1504,7 +1551,8 @@
"members":{
"scope":{"shape":"Scope"},
"resourceType":{"shape":"ResourceType"},
"enhancedInfrastructureMetrics":{"shape":"EnhancedInfrastructureMetrics"}
"enhancedInfrastructureMetrics":{"shape":"EnhancedInfrastructureMetrics"},
"inferredWorkloadTypes":{"shape":"InferredWorkloadTypesPreference"}
}
},
"RecommendationPreferencesDetails":{
Expand Down Expand Up @@ -1574,7 +1622,8 @@
"Ec2Instance",
"AutoScalingGroup",
"EbsVolume",
"LambdaFunction"
"LambdaFunction",
"NotApplicable"
]
},
"S3Destination":{
Expand Down
Loading

0 comments on commit f22cb4d

Please sign in to comment.