Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.44.9 #4392

Merged
merged 1 commit into from May 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
Release v1.44.9 (2022-05-06)
===

### Service Client Updates
* `service/ec2`: Updates service API
* Add new state values for IPAMs, IPAM Scopes, and IPAM Pools.
* `service/location`: Updates service API, documentation, and paginators
* `service/mediapackage`: Updates service API and documentation
* This release adds Dvb Dash 2014 as an available profile option for Dash Origin Endpoints.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* Various documentation improvements.
* `service/redshift`: Updates service API and documentation
* Introduces new field 'LoadSampleData' in CreateCluster operation. Customers can now specify 'LoadSampleData' option during creation of a cluster, which results in loading of sample data in the cluster that is created.
* `service/securityhub`: Updates service documentation

Release v1.44.8 (2022-05-05)
===

Expand Down
18 changes: 12 additions & 6 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.8"
const SDKVersion = "1.44.9"
15 changes: 12 additions & 3 deletions models/apis/ec2/2016-11-15/api-2.json
Expand Up @@ -24932,7 +24932,10 @@
"modify-failed",
"delete-in-progress",
"delete-complete",
"delete-failed"
"delete-failed",
"isolate-in-progress",
"isolate-complete",
"restore-in-progress"
]
},
"IpamResourceCidr":{
Expand Down Expand Up @@ -25105,7 +25108,10 @@
"modify-failed",
"delete-in-progress",
"delete-complete",
"delete-failed"
"delete-failed",
"isolate-in-progress",
"isolate-complete",
"restore-in-progress"
]
},
"IpamScopeType":{
Expand Down Expand Up @@ -25133,7 +25139,10 @@
"modify-failed",
"delete-in-progress",
"delete-complete",
"delete-failed"
"delete-failed",
"isolate-in-progress",
"isolate-complete",
"restore-in-progress"
]
},
"Ipv4PoolCoipId":{"type":"string"},
Expand Down
51 changes: 27 additions & 24 deletions models/apis/location/2020-11-19/api-2.json
Expand Up @@ -2543,9 +2543,16 @@
"location":"uri",
"locationName":"CollectionName"
},
"MaxResults":{"shape":"ListGeofencesRequestMaxResultsInteger"},
"NextToken":{"shape":"Token"}
}
},
"ListGeofencesRequestMaxResultsInteger":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"ListGeofencesResponse":{
"type":"structure",
"required":["Entries"],
Expand Down Expand Up @@ -3103,7 +3110,7 @@
},
"Language":{"shape":"LanguageTag"},
"MaxResults":{"shape":"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger"},
"Text":{"shape":"SyntheticSearchPlaceIndexForSuggestionsRequestString"}
"Text":{"shape":"SearchPlaceIndexForSuggestionsRequestTextString"}
}
},
"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger":{
Expand All @@ -3112,6 +3119,12 @@
"max":15,
"min":1
},
"SearchPlaceIndexForSuggestionsRequestTextString":{
"type":"string",
"max":200,
"min":1,
"sensitive":true
},
"SearchPlaceIndexForSuggestionsResponse":{
"type":"structure",
"required":[
Expand All @@ -3136,7 +3149,7 @@
"FilterCountries":{"shape":"CountryCodeList"},
"Language":{"shape":"LanguageTag"},
"MaxResults":{"shape":"Integer"},
"Text":{"shape":"SyntheticSearchPlaceIndexForSuggestionsSummaryString"}
"Text":{"shape":"SensitiveString"}
}
},
"SearchPlaceIndexForTextRequest":{
Expand All @@ -3156,9 +3169,15 @@
},
"Language":{"shape":"LanguageTag"},
"MaxResults":{"shape":"PlaceIndexSearchResultLimit"},
"Text":{"shape":"SyntheticSearchPlaceIndexForTextRequestString"}
"Text":{"shape":"SearchPlaceIndexForTextRequestTextString"}
}
},
"SearchPlaceIndexForTextRequestTextString":{
"type":"string",
"max":200,
"min":1,
"sensitive":true
},
"SearchPlaceIndexForTextResponse":{
"type":"structure",
"required":[
Expand All @@ -3184,9 +3203,13 @@
"Language":{"shape":"LanguageTag"},
"MaxResults":{"shape":"PlaceIndexSearchResultLimit"},
"ResultBBox":{"shape":"BoundingBox"},
"Text":{"shape":"SyntheticSearchPlaceIndexForTextSummaryString"}
"Text":{"shape":"SensitiveString"}
}
},
"SensitiveString":{
"type":"string",
"sensitive":true
},
"ServiceQuotaExceededException":{
"type":"structure",
"required":["Message"],
Expand Down Expand Up @@ -3238,26 +3261,6 @@
"member":{"shape":"Step"}
},
"String":{"type":"string"},
"SyntheticSearchPlaceIndexForSuggestionsRequestString":{
"type":"string",
"max":200,
"min":1,
"sensitive":true
},
"SyntheticSearchPlaceIndexForSuggestionsSummaryString":{
"type":"string",
"sensitive":true
},
"SyntheticSearchPlaceIndexForTextRequestString":{
"type":"string",
"max":200,
"min":1,
"sensitive":true
},
"SyntheticSearchPlaceIndexForTextSummaryString":{
"type":"string",
"sensitive":true
},
"TagKey":{
"type":"string",
"max":128,
Expand Down