Skip to content

Commit

Permalink
Release v1.38.31 (2021-05-03) (#3893)
Browse files Browse the repository at this point in the history
Release v1.38.31 (2021-05-03)
===

### Service Client Updates
* `service/chime`: Updates service API and documentation
  * Added new BatchCreateChannelMembership API to support multiple membership creation for channels
* `service/finspace`: Updates service API, documentation, paginators, and examples
* `service/finspace-data`: Adds new service
* `service/mturk-requester`: Updates service documentation
* `service/securityhub`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored May 3, 2021
1 parent b9d2b59 commit c5aeec1
Show file tree
Hide file tree
Showing 29 changed files with 6,812 additions and 41 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.38.31 (2021-05-03)
===

### Service Client Updates
* `service/chime`: Updates service API and documentation
* Added new BatchCreateChannelMembership API to support multiple membership creation for channels
* `service/finspace`: Updates service API, documentation, paginators, and examples
* `service/finspace-data`: Adds new service
* `service/mturk-requester`: Updates service documentation
* `service/securityhub`: Updates service API and documentation

Release v1.38.30 (2021-04-30)
===

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.30"
const SDKVersion = "1.38.31"
79 changes: 79 additions & 0 deletions models/apis/chime/2018-05-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,25 @@
{"shape":"ServiceFailureException"}
]
},
"BatchCreateChannelMembership":{
"name":"BatchCreateChannelMembership",
"http":{
"method":"POST",
"requestUri":"/channels/{channelArn}/memberships?operation=batch-create",
"responseCode":200
},
"input":{"shape":"BatchCreateChannelMembershipRequest"},
"output":{"shape":"BatchCreateChannelMembershipResponse"},
"errors":[
{"shape":"ServiceFailureException"},
{"shape":"ServiceUnavailableException"},
{"shape":"UnauthorizedClientException"},
{"shape":"BadRequestException"},
{"shape":"ForbiddenException"},
{"shape":"ThrottledClientException"}
],
"endpoint":{"hostPrefix":"messaging-"}
},
"BatchCreateRoomMembership":{
"name":"BatchCreateRoomMembership",
"http":{
Expand Down Expand Up @@ -846,6 +865,7 @@
{"shape":"BadRequestException"},
{"shape":"ForbiddenException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ConflictException"},
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
Expand Down Expand Up @@ -3747,6 +3767,15 @@
"error":{"httpStatusCode":400},
"exception":true
},
"BatchChannelMemberships":{
"type":"structure",
"members":{
"InvitedBy":{"shape":"Identity"},
"Type":{"shape":"ChannelMembershipType"},
"Members":{"shape":"Members"},
"ChannelArn":{"shape":"ChimeArn"}
}
},
"BatchCreateAttendeeErrorList":{
"type":"list",
"member":{"shape":"CreateAttendeeError"}
Expand All @@ -3773,6 +3802,46 @@
"Errors":{"shape":"BatchCreateAttendeeErrorList"}
}
},
"BatchCreateChannelMembershipError":{
"type":"structure",
"members":{
"MemberArn":{"shape":"ChimeArn"},
"ErrorCode":{"shape":"ErrorCode"},
"ErrorMessage":{"shape":"String"}
}
},
"BatchCreateChannelMembershipErrors":{
"type":"list",
"member":{"shape":"BatchCreateChannelMembershipError"}
},
"BatchCreateChannelMembershipRequest":{
"type":"structure",
"required":[
"ChannelArn",
"MemberArns"
],
"members":{
"ChannelArn":{
"shape":"ChimeArn",
"location":"uri",
"locationName":"channelArn"
},
"Type":{"shape":"ChannelMembershipType"},
"MemberArns":{"shape":"MemberArns"},
"ChimeBearer":{
"shape":"ChimeArn",
"location":"header",
"locationName":"x-amz-chime-bearer"
}
}
},
"BatchCreateChannelMembershipResponse":{
"type":"structure",
"members":{
"BatchChannelMemberships":{"shape":"BatchChannelMemberships"},
"Errors":{"shape":"BatchCreateChannelMembershipErrors"}
}
},
"BatchCreateRoomMembershipRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -7162,6 +7231,12 @@
"AccountId":{"shape":"NonEmptyString"}
}
},
"MemberArns":{
"type":"list",
"member":{"shape":"ChimeArn"},
"max":100,
"min":1
},
"MemberError":{
"type":"structure",
"members":{
Expand All @@ -7182,6 +7257,10 @@
"Webhook"
]
},
"Members":{
"type":"list",
"member":{"shape":"Identity"}
},
"MembershipItem":{
"type":"structure",
"members":{
Expand Down
86 changes: 69 additions & 17 deletions models/apis/chime/2018-05-01/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit c5aeec1

Please sign in to comment.