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.87 #4542

Merged
merged 1 commit into from Aug 29, 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
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"}
}
}
}
}