Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed May 18, 2020
1 parent 2214d29 commit adbb367
Show file tree
Hide file tree
Showing 62 changed files with 2,006 additions and 320 deletions.
98 changes: 98 additions & 0 deletions apis/chime/2018-05-01/api-2.json
Expand Up @@ -1667,6 +1667,44 @@
{"shape":"ServiceFailureException"}
]
},
"RedactConversationMessage":{
"name":"RedactConversationMessage",
"http":{
"method":"POST",
"requestUri":"/accounts/{accountId}/conversations/{conversationId}/messages/{messageId}?operation=redact",
"responseCode":200
},
"input":{"shape":"RedactConversationMessageRequest"},
"output":{"shape":"RedactConversationMessageResponse"},
"errors":[
{"shape":"NotFoundException"},
{"shape":"ForbiddenException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"BadRequestException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"RedactRoomMessage":{
"name":"RedactRoomMessage",
"http":{
"method":"POST",
"requestUri":"/accounts/{accountId}/rooms/{roomId}/messages/{messageId}?operation=redact",
"responseCode":200
},
"input":{"shape":"RedactRoomMessageRequest"},
"output":{"shape":"RedactRoomMessageResponse"},
"errors":[
{"shape":"NotFoundException"},
{"shape":"ForbiddenException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"BadRequestException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"RegenerateSecurityToken":{
"name":"RegenerateSecurityToken",
"http":{
Expand Down Expand Up @@ -4635,6 +4673,66 @@
"Termination":{"shape":"Termination"}
}
},
"RedactConversationMessageRequest":{
"type":"structure",
"required":[
"AccountId",
"ConversationId",
"MessageId"
],
"members":{
"AccountId":{
"shape":"NonEmptyString",
"location":"uri",
"locationName":"accountId"
},
"ConversationId":{
"shape":"NonEmptyString",
"location":"uri",
"locationName":"conversationId"
},
"MessageId":{
"shape":"NonEmptyString",
"location":"uri",
"locationName":"messageId"
}
}
},
"RedactConversationMessageResponse":{
"type":"structure",
"members":{
}
},
"RedactRoomMessageRequest":{
"type":"structure",
"required":[
"AccountId",
"RoomId",
"MessageId"
],
"members":{
"AccountId":{
"shape":"NonEmptyString",
"location":"uri",
"locationName":"accountId"
},
"RoomId":{
"shape":"NonEmptyString",
"location":"uri",
"locationName":"roomId"
},
"MessageId":{
"shape":"NonEmptyString",
"location":"uri",
"locationName":"messageId"
}
}
},
"RedactRoomMessageResponse":{
"type":"structure",
"members":{
}
},
"RegenerateSecurityTokenRequest":{
"type":"structure",
"required":[
Expand Down
28 changes: 28 additions & 0 deletions apis/chime/2018-05-01/docs-2.json
Expand Up @@ -90,6 +90,8 @@
"PutVoiceConnectorStreamingConfiguration": "<p>Adds a streaming configuration for the specified Amazon Chime Voice Connector. The streaming configuration specifies whether media streaming is enabled for sending to Amazon Kinesis. It also sets the retention period, in hours, for the Amazon Kinesis data.</p>",
"PutVoiceConnectorTermination": "<p>Adds termination settings for the specified Amazon Chime Voice Connector.</p>",
"PutVoiceConnectorTerminationCredentials": "<p>Adds termination SIP credentials for the specified Amazon Chime Voice Connector.</p>",
"RedactConversationMessage": "<p>Redacts the specified message from the specified Amazon Chime conversation.</p>",
"RedactRoomMessage": "<p>Redacts the specified message from the specified Amazon Chime chat room.</p>",
"RegenerateSecurityToken": "<p>Regenerates the security token for a bot.</p>",
"ResetPersonalPIN": "<p>Resets the personal meeting PIN for the specified user on an Amazon Chime account. Returns the <a>User</a> object with the updated personal meeting PIN.</p>",
"RestorePhoneNumber": "<p>Moves a phone number from the <b>Deletion queue</b> back into the phone number <b>Inventory</b>.</p>",
Expand Down Expand Up @@ -1479,6 +1481,12 @@
"PutVoiceConnectorStreamingConfigurationRequest$VoiceConnectorId": "<p>The Amazon Chime Voice Connector ID.</p>",
"PutVoiceConnectorTerminationCredentialsRequest$VoiceConnectorId": "<p>The Amazon Chime Voice Connector ID.</p>",
"PutVoiceConnectorTerminationRequest$VoiceConnectorId": "<p>The Amazon Chime Voice Connector ID.</p>",
"RedactConversationMessageRequest$AccountId": "<p>The Amazon Chime account ID.</p>",
"RedactConversationMessageRequest$ConversationId": "<p>The conversation ID.</p>",
"RedactConversationMessageRequest$MessageId": "<p>The message ID.</p>",
"RedactRoomMessageRequest$AccountId": "<p>The Amazon Chime account ID.</p>",
"RedactRoomMessageRequest$RoomId": "<p>The room ID.</p>",
"RedactRoomMessageRequest$MessageId": "<p>The message ID.</p>",
"RegenerateSecurityTokenRequest$AccountId": "<p>The Amazon Chime account ID.</p>",
"RegenerateSecurityTokenRequest$BotId": "<p>The bot ID.</p>",
"ResetPersonalPINRequest$AccountId": "<p>The Amazon Chime account ID.</p>",
Expand Down Expand Up @@ -1866,6 +1874,26 @@
"refs": {
}
},
"RedactConversationMessageRequest": {
"base": null,
"refs": {
}
},
"RedactConversationMessageResponse": {
"base": null,
"refs": {
}
},
"RedactRoomMessageRequest": {
"base": null,
"refs": {
}
},
"RedactRoomMessageResponse": {
"base": null,
"refs": {
}
},
"RegenerateSecurityTokenRequest": {
"base": null,
"refs": {
Expand Down

0 comments on commit adbb367

Please sign in to comment.