aws-sdk-chimesdkmessaging 1.17.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmessaging/client.rb +4 -11
- data/lib/aws-sdk-chimesdkmessaging/client_api.rb +3 -4
- data/lib/aws-sdk-chimesdkmessaging/types.rb +6 -18
- data/lib/aws-sdk-chimesdkmessaging.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35a4f8ba6fc8129366b730e7a4e0e6d8bcfb645d058dd271b621b1d3e025a98a
|
4
|
+
data.tar.gz: 964248eb6f5c278f0ace50e5f668785f8005f4184a19956241d32725efde7082
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 975fafc94cf264e018665a0de2311751b51e6dbd9139dd45f3e6fdb3aa4236fa5a73ba9a53a4348e94edae268d9fb635dfe6034df80edd94459a7ff809954b9a
|
7
|
+
data.tar.gz: cdb0b8dac19d7b902629092d4d13db01991c29e9e3ac44e71f8b2fd360d27dd2d434debc2ab9c37085dce7a1840e591fe3c8981d7277ae49a3ac1aff481d14b6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.18.0 (2023-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Remove non actionable field from UpdateChannelReadMarker and DeleteChannelRequest. Add precise exceptions to DeleteChannel and DeleteStreamingConfigurations error cases.
|
8
|
+
|
4
9
|
1.17.0 (2023-03-23)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.18.0
|
@@ -747,6 +747,9 @@ module Aws::ChimeSDKMessaging
|
|
747
747
|
# @option params [required, String] :client_request_token
|
748
748
|
# The client token for the request. An Idempotency token.
|
749
749
|
#
|
750
|
+
# **A suitable default value is auto-generated.** You should normally
|
751
|
+
# not need to pass this option.**
|
752
|
+
#
|
750
753
|
# @return [Types::CreateChannelFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
751
754
|
#
|
752
755
|
# * {Types::CreateChannelFlowResponse#channel_flow_arn #channel_flow_arn} => String
|
@@ -947,9 +950,6 @@ module Aws::ChimeSDKMessaging
|
|
947
950
|
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
948
951
|
# API call.
|
949
952
|
#
|
950
|
-
# @option params [String] :sub_channel_id
|
951
|
-
# The ID of the SubChannel in the request.
|
952
|
-
#
|
953
953
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
954
954
|
#
|
955
955
|
# @example Request syntax with placeholder values
|
@@ -957,7 +957,6 @@ module Aws::ChimeSDKMessaging
|
|
957
957
|
# resp = client.delete_channel({
|
958
958
|
# channel_arn: "ChimeArn", # required
|
959
959
|
# chime_bearer: "ChimeArn", # required
|
960
|
-
# sub_channel_id: "SubChannelId",
|
961
960
|
# })
|
962
961
|
#
|
963
962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DeleteChannel AWS API Documentation
|
@@ -3137,26 +3136,20 @@ module Aws::ChimeSDKMessaging
|
|
3137
3136
|
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
3138
3137
|
# API call.
|
3139
3138
|
#
|
3140
|
-
# @option params [String] :sub_channel_id
|
3141
|
-
# The ID of the SubChannel in the request.
|
3142
|
-
#
|
3143
3139
|
# @return [Types::UpdateChannelReadMarkerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3144
3140
|
#
|
3145
3141
|
# * {Types::UpdateChannelReadMarkerResponse#channel_arn #channel_arn} => String
|
3146
|
-
# * {Types::UpdateChannelReadMarkerResponse#sub_channel_id #sub_channel_id} => String
|
3147
3142
|
#
|
3148
3143
|
# @example Request syntax with placeholder values
|
3149
3144
|
#
|
3150
3145
|
# resp = client.update_channel_read_marker({
|
3151
3146
|
# channel_arn: "ChimeArn", # required
|
3152
3147
|
# chime_bearer: "ChimeArn", # required
|
3153
|
-
# sub_channel_id: "SubChannelId",
|
3154
3148
|
# })
|
3155
3149
|
#
|
3156
3150
|
# @example Response structure
|
3157
3151
|
#
|
3158
3152
|
# resp.channel_arn #=> String
|
3159
|
-
# resp.sub_channel_id #=> String
|
3160
3153
|
#
|
3161
3154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/UpdateChannelReadMarker AWS API Documentation
|
3162
3155
|
#
|
@@ -3180,7 +3173,7 @@ module Aws::ChimeSDKMessaging
|
|
3180
3173
|
params: params,
|
3181
3174
|
config: config)
|
3182
3175
|
context[:gem_name] = 'aws-sdk-chimesdkmessaging'
|
3183
|
-
context[:gem_version] = '1.
|
3176
|
+
context[:gem_version] = '1.18.0'
|
3184
3177
|
Seahorse::Client::Request.new(handlers, context)
|
3185
3178
|
end
|
3186
3179
|
|
@@ -435,7 +435,7 @@ module Aws::ChimeSDKMessaging
|
|
435
435
|
CreateChannelFlowRequest.add_member(:processors, Shapes::ShapeRef.new(shape: ProcessorList, required: true, location_name: "Processors"))
|
436
436
|
CreateChannelFlowRequest.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyResourceName, required: true, location_name: "Name"))
|
437
437
|
CreateChannelFlowRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
438
|
-
CreateChannelFlowRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken"))
|
438
|
+
CreateChannelFlowRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
439
439
|
CreateChannelFlowRequest.struct_class = Types::CreateChannelFlowRequest
|
440
440
|
|
441
441
|
CreateChannelFlowResponse.add_member(:channel_flow_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelFlowArn"))
|
@@ -507,7 +507,6 @@ module Aws::ChimeSDKMessaging
|
|
507
507
|
|
508
508
|
DeleteChannelRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "channelArn"))
|
509
509
|
DeleteChannelRequest.add_member(:chime_bearer, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "header", location_name: "x-amz-chime-bearer"))
|
510
|
-
DeleteChannelRequest.add_member(:sub_channel_id, Shapes::ShapeRef.new(shape: SubChannelId, location: "querystring", location_name: "sub-channel-id"))
|
511
510
|
DeleteChannelRequest.struct_class = Types::DeleteChannelRequest
|
512
511
|
|
513
512
|
DeleteMessagingStreamingConfigurationsRequest.add_member(:app_instance_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceArn"))
|
@@ -937,11 +936,9 @@ module Aws::ChimeSDKMessaging
|
|
937
936
|
|
938
937
|
UpdateChannelReadMarkerRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "channelArn"))
|
939
938
|
UpdateChannelReadMarkerRequest.add_member(:chime_bearer, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "header", location_name: "x-amz-chime-bearer"))
|
940
|
-
UpdateChannelReadMarkerRequest.add_member(:sub_channel_id, Shapes::ShapeRef.new(shape: SubChannelId, location_name: "SubChannelId"))
|
941
939
|
UpdateChannelReadMarkerRequest.struct_class = Types::UpdateChannelReadMarkerRequest
|
942
940
|
|
943
941
|
UpdateChannelReadMarkerResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
|
944
|
-
UpdateChannelReadMarkerResponse.add_member(:sub_channel_id, Shapes::ShapeRef.new(shape: SubChannelId, location_name: "SubChannelId"))
|
945
942
|
UpdateChannelReadMarkerResponse.struct_class = Types::UpdateChannelReadMarkerResponse
|
946
943
|
|
947
944
|
UpdateChannelRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "channelArn"))
|
@@ -1107,6 +1104,7 @@ module Aws::ChimeSDKMessaging
|
|
1107
1104
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1108
1105
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1109
1106
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1107
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1110
1108
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
1111
1109
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
1112
1110
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
@@ -1191,6 +1189,7 @@ module Aws::ChimeSDKMessaging
|
|
1191
1189
|
o.http_request_uri = "/app-instances/{appInstanceArn}/streaming-configurations"
|
1192
1190
|
o.input = Shapes::ShapeRef.new(shape: DeleteMessagingStreamingConfigurationsRequest)
|
1193
1191
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1192
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1194
1193
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1195
1194
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
1196
1195
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
@@ -935,6 +935,9 @@ module Aws::ChimeSDKMessaging
|
|
935
935
|
#
|
936
936
|
# @!attribute [rw] client_request_token
|
937
937
|
# The client token for the request. An Idempotency token.
|
938
|
+
#
|
939
|
+
# **A suitable default value is auto-generated.** You should normally
|
940
|
+
# not need to pass this option.
|
938
941
|
# @return [String]
|
939
942
|
#
|
940
943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/CreateChannelFlowRequest AWS API Documentation
|
@@ -1295,16 +1298,11 @@ module Aws::ChimeSDKMessaging
|
|
1295
1298
|
# API call.
|
1296
1299
|
# @return [String]
|
1297
1300
|
#
|
1298
|
-
# @!attribute [rw] sub_channel_id
|
1299
|
-
# The ID of the SubChannel in the request.
|
1300
|
-
# @return [String]
|
1301
|
-
#
|
1302
1301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DeleteChannelRequest AWS API Documentation
|
1303
1302
|
#
|
1304
1303
|
class DeleteChannelRequest < Struct.new(
|
1305
1304
|
:channel_arn,
|
1306
|
-
:chime_bearer
|
1307
|
-
:sub_channel_id)
|
1305
|
+
:chime_bearer)
|
1308
1306
|
SENSITIVE = []
|
1309
1307
|
include Aws::Structure
|
1310
1308
|
end
|
@@ -3220,16 +3218,11 @@ module Aws::ChimeSDKMessaging
|
|
3220
3218
|
# API call.
|
3221
3219
|
# @return [String]
|
3222
3220
|
#
|
3223
|
-
# @!attribute [rw] sub_channel_id
|
3224
|
-
# The ID of the SubChannel in the request.
|
3225
|
-
# @return [String]
|
3226
|
-
#
|
3227
3221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/UpdateChannelReadMarkerRequest AWS API Documentation
|
3228
3222
|
#
|
3229
3223
|
class UpdateChannelReadMarkerRequest < Struct.new(
|
3230
3224
|
:channel_arn,
|
3231
|
-
:chime_bearer
|
3232
|
-
:sub_channel_id)
|
3225
|
+
:chime_bearer)
|
3233
3226
|
SENSITIVE = []
|
3234
3227
|
include Aws::Structure
|
3235
3228
|
end
|
@@ -3238,15 +3231,10 @@ module Aws::ChimeSDKMessaging
|
|
3238
3231
|
# The ARN of the channel.
|
3239
3232
|
# @return [String]
|
3240
3233
|
#
|
3241
|
-
# @!attribute [rw] sub_channel_id
|
3242
|
-
# The ID of the SubChannel in the response.
|
3243
|
-
# @return [String]
|
3244
|
-
#
|
3245
3234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/UpdateChannelReadMarkerResponse AWS API Documentation
|
3246
3235
|
#
|
3247
3236
|
class UpdateChannelReadMarkerResponse < Struct.new(
|
3248
|
-
:channel_arn
|
3249
|
-
:sub_channel_id)
|
3237
|
+
:channel_arn)
|
3250
3238
|
SENSITIVE = []
|
3251
3239
|
include Aws::Structure
|
3252
3240
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkmessaging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|