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.226 #4768

Merged
merged 1 commit into from
Mar 21, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.44.226 (2023-03-21)
===

### Service Client Updates
* `service/chime-sdk-messaging`: Updates service API and documentation
* `service/cleanrooms`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
* This release adds support for AWS Network Firewall, AWS PrivateLink, and Gateway Load Balancers to Amazon VPC Reachability Analyzer, and it makes the path destination optional as long as a destination address in the filter at source is provided.
* `service/iotsitewise`: Updates service API and documentation
* `service/mgn`: Updates service API, documentation, and paginators

Release v1.44.225 (2023-03-20)
===

Expand Down
121 changes: 121 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
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.44.225"
const SDKVersion = "1.44.226"
128 changes: 128 additions & 0 deletions models/apis/chime-sdk-messaging/2021-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,22 @@
{"shape":"ServiceFailureException"}
]
},
"DeleteMessagingStreamingConfigurations":{
"name":"DeleteMessagingStreamingConfigurations",
"http":{
"method":"DELETE",
"requestUri":"/app-instances/{appInstanceArn}/streaming-configurations",
"responseCode":204
},
"input":{"shape":"DeleteMessagingStreamingConfigurationsRequest"},
"errors":[
{"shape":"ForbiddenException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"DescribeChannel":{
"name":"DescribeChannel",
"http":{
Expand Down Expand Up @@ -494,6 +510,25 @@
{"shape":"ServiceFailureException"}
]
},
"GetMessagingStreamingConfigurations":{
"name":"GetMessagingStreamingConfigurations",
"http":{
"method":"GET",
"requestUri":"/app-instances/{appInstanceArn}/streaming-configurations",
"responseCode":200
},
"input":{"shape":"GetMessagingStreamingConfigurationsRequest"},
"output":{"shape":"GetMessagingStreamingConfigurationsResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"ForbiddenException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"ListChannelBans":{
"name":"ListChannelBans",
"http":{
Expand Down Expand Up @@ -711,6 +746,26 @@
{"shape":"ServiceFailureException"}
]
},
"PutMessagingStreamingConfigurations":{
"name":"PutMessagingStreamingConfigurations",
"http":{
"method":"PUT",
"requestUri":"/app-instances/{appInstanceArn}/streaming-configurations",
"responseCode":200
},
"input":{"shape":"PutMessagingStreamingConfigurationsRequest"},
"output":{"shape":"PutMessagingStreamingConfigurationsResponse"},
"errors":[
{"shape":"NotFoundException"},
{"shape":"BadRequestException"},
{"shape":"ForbiddenException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"ConflictException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"RedactChannelMessage":{
"name":"RedactChannelMessage",
"http":{
Expand Down Expand Up @@ -1611,6 +1666,17 @@
}
}
},
"DeleteMessagingStreamingConfigurationsRequest":{
"type":"structure",
"required":["AppInstanceArn"],
"members":{
"AppInstanceArn":{
"shape":"ChimeArn",
"location":"uri",
"locationName":"appInstanceArn"
}
}
},
"DescribeChannelBanRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2009,6 +2075,23 @@
"Endpoint":{"shape":"MessagingSessionEndpoint"}
}
},
"GetMessagingStreamingConfigurationsRequest":{
"type":"structure",
"required":["AppInstanceArn"],
"members":{
"AppInstanceArn":{
"shape":"ChimeArn",
"location":"uri",
"locationName":"appInstanceArn"
}
}
},
"GetMessagingStreamingConfigurationsResponse":{
"type":"structure",
"members":{
"StreamingConfigurations":{"shape":"StreamingConfigurationList"}
}
},
"Identity":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2488,6 +2571,13 @@
"min":1,
"pattern":"[-_a-zA-Z0-9]*"
},
"MessagingDataType":{
"type":"string",
"enum":[
"Channel",
"ChannelMessage"
]
},
"MessagingSessionEndpoint":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2636,6 +2726,27 @@
"Preferences":{"shape":"ChannelMembershipPreferences"}
}
},
"PutMessagingStreamingConfigurationsRequest":{
"type":"structure",
"required":[
"AppInstanceArn",
"StreamingConfigurations"
],
"members":{
"AppInstanceArn":{
"shape":"ChimeArn",
"location":"uri",
"locationName":"appInstanceArn"
},
"StreamingConfigurations":{"shape":"StreamingConfigurationList"}
}
},
"PutMessagingStreamingConfigurationsResponse":{
"type":"structure",
"members":{
"StreamingConfigurations":{"shape":"StreamingConfigurationList"}
}
},
"RedactChannelMessageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2833,6 +2944,23 @@
"min":0,
"pattern":"[\\s\\S]*"
},
"StreamingConfiguration":{
"type":"structure",
"required":[
"DataType",
"ResourceArn"
],
"members":{
"DataType":{"shape":"MessagingDataType"},
"ResourceArn":{"shape":"ChimeArn"}
}
},
"StreamingConfigurationList":{
"type":"list",
"member":{"shape":"StreamingConfiguration"},
"max":2,
"min":1
},
"String":{"type":"string"},
"SubChannelId":{
"type":"string",
Expand Down
Loading