Skip to content

Commit

Permalink
Release v1.38.32 (2021-05-04) (#3895)
Browse files Browse the repository at this point in the history
Release v1.38.32 (2021-05-04)
===

### Service Client Updates
* `service/acm-pca`: Updates service API and documentation
* `service/chime`: Updates service API, documentation, and paginators
  * This release adds the ability to search for and order international phone numbers for Amazon Chime SIP media applications.
* `service/devops-guru`: Updates service API, documentation, and paginators
* `service/health`: Updates service documentation
  * Documentation updates for health
* `service/sagemaker`: Updates service API and documentation
  * Enable retrying Training and Tuning Jobs that fail with InternalServerError by setting RetryStrategy.
  • Loading branch information
aws-sdk-go-automation authored May 4, 2021
1 parent c5aeec1 commit 6c6336c
Show file tree
Hide file tree
Showing 22 changed files with 2,539 additions and 459 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.38.32 (2021-05-04)
===

### Service Client Updates
* `service/acm-pca`: Updates service API and documentation
* `service/chime`: Updates service API, documentation, and paginators
* This release adds the ability to search for and order international phone numbers for Amazon Chime SIP media applications.
* `service/devops-guru`: Updates service API, documentation, and paginators
* `service/health`: Updates service documentation
* Documentation updates for health
* `service/sagemaker`: Updates service API and documentation
* Enable retrying Training and Tuning Jobs that fail with InternalServerError by setting RetryStrategy.

Release v1.38.31 (2021-05-03)
===

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.38.31"
const SDKVersion = "1.38.32"
11 changes: 10 additions & 1 deletion models/apis/acm-pca/2017-08-22/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,8 @@
"FailureReason":{"shape":"FailureReason"},
"CertificateAuthorityConfiguration":{"shape":"CertificateAuthorityConfiguration"},
"RevocationConfiguration":{"shape":"RevocationConfiguration"},
"RestorableUntil":{"shape":"TStamp"}
"RestorableUntil":{"shape":"TStamp"},
"KeyStorageSecurityStandard":{"shape":"KeyStorageSecurityStandard"}
}
},
"CertificateAuthorityConfiguration":{
Expand Down Expand Up @@ -611,6 +612,7 @@
"RevocationConfiguration":{"shape":"RevocationConfiguration"},
"CertificateAuthorityType":{"shape":"CertificateAuthorityType"},
"IdempotencyToken":{"shape":"IdempotencyToken"},
"KeyStorageSecurityStandard":{"shape":"KeyStorageSecurityStandard"},
"Tags":{"shape":"TagList"}
}
},
Expand Down Expand Up @@ -964,6 +966,13 @@
"EC_secp384r1"
]
},
"KeyStorageSecurityStandard":{
"type":"string",
"enum":[
"FIPS_140_2_LEVEL_2_OR_HIGHER",
"FIPS_140_2_LEVEL_3_OR_HIGHER"
]
},
"KeyUsage":{
"type":"structure",
"members":{
Expand Down
17 changes: 12 additions & 5 deletions models/apis/acm-pca/2017-08-22/docs-2.json

Large diffs are not rendered by default.

65 changes: 62 additions & 3 deletions models/apis/chime/2018-05-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2481,6 +2481,25 @@
{"shape":"ServiceFailureException"}
]
},
"ListSupportedPhoneNumberCountries":{
"name":"ListSupportedPhoneNumberCountries",
"http":{
"method":"GET",
"requestUri":"/phone-number-countries",
"responseCode":200
},
"input":{"shape":"ListSupportedPhoneNumberCountriesRequest"},
"output":{"shape":"ListSupportedPhoneNumberCountriesResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"ForbiddenException"},
{"shape":"AccessDeniedException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
Expand Down Expand Up @@ -7026,6 +7045,23 @@
"NextToken":{"shape":"NextTokenString"}
}
},
"ListSupportedPhoneNumberCountriesRequest":{
"type":"structure",
"required":["ProductType"],
"members":{
"ProductType":{
"shape":"PhoneNumberProductType",
"location":"querystring",
"locationName":"product-type"
}
}
},
"ListSupportedPhoneNumberCountriesResponse":{
"type":"structure",
"members":{
"PhoneNumberCountries":{"shape":"PhoneNumberCountriesList"}
}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["ResourceARN"],
Expand Down Expand Up @@ -7436,6 +7472,7 @@
"members":{
"PhoneNumberId":{"shape":"String"},
"E164PhoneNumber":{"shape":"E164PhoneNumber"},
"Country":{"shape":"Alpha2CountryCode"},
"Type":{"shape":"PhoneNumberType"},
"ProductType":{"shape":"PhoneNumberProductType"},
"Status":{"shape":"PhoneNumberStatus"},
Expand Down Expand Up @@ -7481,6 +7518,17 @@
"OutboundMMS":{"shape":"NullableBoolean"}
}
},
"PhoneNumberCountriesList":{
"type":"list",
"member":{"shape":"PhoneNumberCountry"}
},
"PhoneNumberCountry":{
"type":"structure",
"members":{
"CountryCode":{"shape":"Alpha2CountryCode"},
"SupportedPhoneNumberTypes":{"shape":"PhoneNumberTypeList"}
}
},
"PhoneNumberError":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7530,7 +7578,8 @@
"type":"string",
"enum":[
"BusinessCalling",
"VoiceConnector"
"VoiceConnector",
"SipMediaApplicationDialIn"
]
},
"PhoneNumberStatus":{
Expand All @@ -7553,6 +7602,10 @@
"TollFree"
]
},
"PhoneNumberTypeList":{
"type":"list",
"member":{"shape":"PhoneNumberType"}
},
"Port":{
"type":"integer",
"max":65535,
Expand Down Expand Up @@ -8118,7 +8171,7 @@
"locationName":"city"
},
"Country":{
"shape":"String",
"shape":"Alpha2CountryCode",
"location":"querystring",
"locationName":"country"
},
Expand All @@ -8132,6 +8185,11 @@
"location":"querystring",
"locationName":"toll-free-prefix"
},
"PhoneNumberType":{
"shape":"PhoneNumberType",
"location":"querystring",
"locationName":"phone-number-type"
},
"MaxResults":{
"shape":"PhoneNumberMaxResults",
"location":"querystring",
Expand All @@ -8147,7 +8205,8 @@
"SearchAvailablePhoneNumbersResponse":{
"type":"structure",
"members":{
"E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
"E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
"NextToken":{"shape":"String"}
}
},
"SendChannelMessageRequest":{
Expand Down
Loading

0 comments on commit 6c6336c

Please sign in to comment.