aws-sdk-chimesdkmessaging 1.17.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f49daf152928a6b748da40f23de4c2ec1bc046ff26a3661c3598f21526707763
4
- data.tar.gz: 966cd4dfe9bd2acc6d1f242c5eb61032364cb8414fed410696a77bdefb51b12a
3
+ metadata.gz: e03f28aa6dbbe3f10318a831bfaf5d0f37f8f622f105ff0abf98be37f67eb214
4
+ data.tar.gz: accff15863d9d8dda6757a11f59f46220b78ff8171efab16f7a1cdab453e3bf5
5
5
  SHA512:
6
- metadata.gz: c78788926495db284dade0426eb5d451c50618b92a67091d3cd69c3b26bc761c752014392847760ebb2f0738d40180d6c28d39179a7aa40285db845092ebbcc4
7
- data.tar.gz: c25298c33a998354de2df0809acaf311fa9edd7a9798fb1d174ba280b22776822b0723b6dafb7eed5f1dcf9a35e0e250fd72773741673c73d22e19ff7cd8674a
6
+ metadata.gz: 2e2af5c465bdf1958a6504ef320de6b3421fddc01da776ed7533195612921f388c37bbb94ef01282bfc7843824567f0f159312da0579fff7663efa6f13b03345
7
+ data.tar.gz: '0081d61f13728c45281be8b73ef15631a7346c957e4af8678909416c492ebf5744160d0c720b0bcba837508186096c622cb234f5f9556e628bf74ee28683a498'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.18.0 (2023-04-25)
10
+ ------------------
11
+
12
+ * Feature - Remove non actionable field from UpdateChannelReadMarker and DeleteChannelRequest. Add precise exceptions to DeleteChannel and DeleteStreamingConfigurations error cases.
13
+
4
14
  1.17.0 (2023-03-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.19.0
@@ -275,6 +275,11 @@ module Aws::ChimeSDKMessaging
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -747,6 +752,9 @@ module Aws::ChimeSDKMessaging
747
752
  # @option params [required, String] :client_request_token
748
753
  # The client token for the request. An Idempotency token.
749
754
  #
755
+ # **A suitable default value is auto-generated.** You should normally
756
+ # not need to pass this option.**
757
+ #
750
758
  # @return [Types::CreateChannelFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
751
759
  #
752
760
  # * {Types::CreateChannelFlowResponse#channel_flow_arn #channel_flow_arn} => String
@@ -947,9 +955,6 @@ module Aws::ChimeSDKMessaging
947
955
  # The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
948
956
  # API call.
949
957
  #
950
- # @option params [String] :sub_channel_id
951
- # The ID of the SubChannel in the request.
952
- #
953
958
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
954
959
  #
955
960
  # @example Request syntax with placeholder values
@@ -957,7 +962,6 @@ module Aws::ChimeSDKMessaging
957
962
  # resp = client.delete_channel({
958
963
  # channel_arn: "ChimeArn", # required
959
964
  # chime_bearer: "ChimeArn", # required
960
- # sub_channel_id: "SubChannelId",
961
965
  # })
962
966
  #
963
967
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DeleteChannel AWS API Documentation
@@ -3137,26 +3141,20 @@ module Aws::ChimeSDKMessaging
3137
3141
  # The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
3138
3142
  # API call.
3139
3143
  #
3140
- # @option params [String] :sub_channel_id
3141
- # The ID of the SubChannel in the request.
3142
- #
3143
3144
  # @return [Types::UpdateChannelReadMarkerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3144
3145
  #
3145
3146
  # * {Types::UpdateChannelReadMarkerResponse#channel_arn #channel_arn} => String
3146
- # * {Types::UpdateChannelReadMarkerResponse#sub_channel_id #sub_channel_id} => String
3147
3147
  #
3148
3148
  # @example Request syntax with placeholder values
3149
3149
  #
3150
3150
  # resp = client.update_channel_read_marker({
3151
3151
  # channel_arn: "ChimeArn", # required
3152
3152
  # chime_bearer: "ChimeArn", # required
3153
- # sub_channel_id: "SubChannelId",
3154
3153
  # })
3155
3154
  #
3156
3155
  # @example Response structure
3157
3156
  #
3158
3157
  # resp.channel_arn #=> String
3159
- # resp.sub_channel_id #=> String
3160
3158
  #
3161
3159
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/UpdateChannelReadMarker AWS API Documentation
3162
3160
  #
@@ -3180,7 +3178,7 @@ module Aws::ChimeSDKMessaging
3180
3178
  params: params,
3181
3179
  config: config)
3182
3180
  context[:gem_name] = 'aws-sdk-chimesdkmessaging'
3183
- context[:gem_version] = '1.17.0'
3181
+ context[:gem_version] = '1.19.0'
3184
3182
  Seahorse::Client::Request.new(handlers, context)
3185
3183
  end
3186
3184
 
@@ -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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmessaging/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMessaging
54
54
 
55
- GEM_VERSION = '1.17.0'
55
+ GEM_VERSION = '1.19.0'
56
56
 
57
57
  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.17.0
4
+ version: 1.19.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-03-23 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement