Skip to content

Commit

Permalink
Release v1.44.87 (2022-08-29) (#4542)
Browse files Browse the repository at this point in the history
Release v1.44.87 (2022-08-29)
===

### Service Client Updates
* `service/fsx`: Updates service documentation
* `service/voice-id`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Aug 29, 2022
1 parent 2f50627 commit b2bad91
Show file tree
Hide file tree
Showing 9 changed files with 321 additions and 48 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.44.87 (2022-08-29)
===

### Service Client Updates
* `service/fsx`: Updates service documentation
* `service/voice-id`: Updates service API and documentation

Release v1.44.86 (2022-08-26)
===

Expand Down
118 changes: 118 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.86"
const SDKVersion = "1.44.87"
2 changes: 1 addition & 1 deletion models/apis/fsx/2018-03-01/docs-2.json
Expand Up @@ -1874,7 +1874,7 @@
"SecurityStyle": {
"base": null,
"refs": {
"CreateOntapVolumeConfiguration$SecurityStyle": "<p>The security style for the volume. Specify one of the following values:</p> <ul> <li> <p> <code>UNIX</code> if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. <code>UNIX</code> is the default.</p> </li> <li> <p> <code>NTFS</code> if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account.</p> </li> <li> <p> <code>MIXED</code> if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.</p> </li> </ul>",
"CreateOntapVolumeConfiguration$SecurityStyle": "<p>The security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. Specify one of the following values:</p> <ul> <li> <p> <code>UNIX</code> if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. </p> </li> <li> <p> <code>NTFS</code> if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account.</p> </li> <li> <p> <code>MIXED</code> if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.</p> </li> </ul>",
"OntapVolumeConfiguration$SecurityStyle": "<p>The security style for the volume, which can be <code>UNIX</code>, <code>NTFS</code>, or <code>MIXED</code>.</p>",
"UpdateOntapVolumeConfiguration$SecurityStyle": "<p>The security style for the volume, which can be <code>UNIX</code>. <code>NTFS</code>, or <code>MIXED</code>.</p>"
}
Expand Down
24 changes: 20 additions & 4 deletions models/apis/voice-id/2021-09-27/api-2.json
Expand Up @@ -46,7 +46,8 @@
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
]
],
"idempotent":true
},
"DeleteFraudster":{
"name":"DeleteFraudster",
Expand Down Expand Up @@ -265,6 +266,7 @@
"input":{"shape":"OptOutSpeakerRequest"},
"output":{"shape":"OptOutSpeakerResponse"},
"errors":[
{"shape":"ServiceQuotaExceededException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"ConflictException"},
Expand Down Expand Up @@ -721,7 +723,10 @@
},
"FraudDetectionReason":{
"type":"string",
"enum":["KNOWN_FRAUDSTER"]
"enum":[
"KNOWN_FRAUDSTER",
"VOICE_SPOOFING"
]
},
"FraudDetectionReasons":{
"type":"list",
Expand All @@ -743,9 +748,13 @@
},
"FraudRiskDetails":{
"type":"structure",
"required":["KnownFraudsterRisk"],
"required":[
"KnownFraudsterRisk",
"VoiceSpoofingRisk"
],
"members":{
"KnownFraudsterRisk":{"shape":"KnownFraudsterRisk"}
"KnownFraudsterRisk":{"shape":"KnownFraudsterRisk"},
"VoiceSpoofingRisk":{"shape":"VoiceSpoofingRisk"}
}
},
"Fraudster":{
Expand Down Expand Up @@ -1345,6 +1354,13 @@
"Message":{"shape":"String"}
},
"exception":true
},
"VoiceSpoofingRisk":{
"type":"structure",
"required":["RiskScore"],
"members":{
"RiskScore":{"shape":"Score"}
}
}
}
}

0 comments on commit b2bad91

Please sign in to comment.