aws-sdk-chime 1.47.0 → 1.48.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: 66c358319acb6cc6f4297d7b6386451f705db8e52a3ac015f5a35269d34a8591
4
- data.tar.gz: 3a9e65d5492f6a7b9d562e8924deed8a2749726f6c397e35959aa5c6b965948d
3
+ metadata.gz: aef094955338ea2e8cf347afbfcf6bbc855ab2b6dbaec786dbb267dfc7bd5dbd
4
+ data.tar.gz: f81075949e672724bf8b2608ffce1498ecb8499bcb34aaf4bbc95cc9795ac347
5
5
  SHA512:
6
- metadata.gz: 732f6e2b796294258fdabdb73305080d1451676d62177888ef155a87cefa739c1b176c9d88f3e29fabbdd308e48460bc718b582f352d602a850d73422522722b
7
- data.tar.gz: 977d1d9395bf4fe9ad5c62578ebd2ad38bbc082b29c00d6cc985b41d2ff6b28e6172424dc563ea5b1072651f6741f384fd235ec31c07d91a098f00c3e12fe385
6
+ metadata.gz: 0cadde9cadfd2de286f5a7438f968a855af7e5ae07b7e65510805e02a3dd0332e3b8b350ae14fee55c9d263a43365a724d78a683c7294f9b802bf41363ca21a0
7
+ data.tar.gz: cd91f0b8c179ea0c7dcfe604eb3a1a09b817e722fbec3be951921932f6bb5facee2aa72caf924ca3f19335d51ec4f8caca9440d15c720b9281e06733f5359dfa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2021-06-17)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new API UpdateSipMediaApplicationCall, to update an in-progress call for SipMediaApplication.
8
+
4
9
  1.47.0 (2021-06-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.47.0'
51
+ GEM_VERSION = '1.48.0'
52
52
 
53
53
  end
@@ -4332,7 +4332,7 @@ module Aws::Chime
4332
4332
  end
4333
4333
 
4334
4334
  # Retrieves details for the specified Amazon Chime Voice Connector
4335
- # group, such as timestamps,name, and associated `VoiceConnectorItems` .
4335
+ # group, such as timestamps,name, and associated `VoiceConnectorItems`.
4336
4336
  #
4337
4337
  # @option params [required, String] :voice_connector_group_id
4338
4338
  # The Amazon Chime Voice Connector group ID.
@@ -5407,7 +5407,7 @@ module Aws::Chime
5407
5407
 
5408
5408
  # Lists up to 100 active Amazon Chime SDK meetings. For more information
5409
5409
  # about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
5410
- # *Amazon Chime Developer Guide* .
5410
+ # *Amazon Chime Developer Guide*.
5411
5411
  #
5412
5412
  #
5413
5413
  #
@@ -6240,13 +6240,13 @@ module Aws::Chime
6240
6240
  # account. We recommend using AWS CloudTrail to monitor usage of this
6241
6241
  # API for your account. For more information, see [Logging Amazon Chime
6242
6242
  # API Calls with AWS CloudTrail][1] in the *Amazon Chime Administration
6243
- # Guide* .
6243
+ # Guide*.
6244
6244
  #
6245
6245
  # To turn off existing retention settings, remove the number of days
6246
6246
  # from the corresponding **RetentionDays** field in the
6247
6247
  # **RetentionSettings** object. For more information about retention
6248
6248
  # settings, see [Managing Chat Retention Policies][2] in the *Amazon
6249
- # Chime Administration Guide* .
6249
+ # Chime Administration Guide*.
6250
6250
  #
6251
6251
  #
6252
6252
  #
@@ -7873,6 +7873,47 @@ module Aws::Chime
7873
7873
  req.send_request(options)
7874
7874
  end
7875
7875
 
7876
+ # Allows you to trigger a Lambda function at any time while a call is
7877
+ # active, and replace the current actions with new actions returned by
7878
+ # the invocation.
7879
+ #
7880
+ # @option params [required, String] :sip_media_application_id
7881
+ # The ID of the SIP media application handling the call.
7882
+ #
7883
+ # @option params [required, String] :transaction_id
7884
+ # The ID of the call transaction.
7885
+ #
7886
+ # @option params [required, Hash<String,String>] :arguments
7887
+ # Arguments made available to the Lambda function as part of the
7888
+ # `CALL_UPDATE_REQUESTED` event. Can contain 0-20 key-value pairs.
7889
+ #
7890
+ # @return [Types::UpdateSipMediaApplicationCallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7891
+ #
7892
+ # * {Types::UpdateSipMediaApplicationCallResponse#sip_media_application_call #sip_media_application_call} => Types::SipMediaApplicationCall
7893
+ #
7894
+ # @example Request syntax with placeholder values
7895
+ #
7896
+ # resp = client.update_sip_media_application_call({
7897
+ # sip_media_application_id: "NonEmptyString", # required
7898
+ # transaction_id: "NonEmptyString", # required
7899
+ # arguments: { # required
7900
+ # "SensitiveString" => "SensitiveString",
7901
+ # },
7902
+ # })
7903
+ #
7904
+ # @example Response structure
7905
+ #
7906
+ # resp.sip_media_application_call.transaction_id #=> String
7907
+ #
7908
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCall AWS API Documentation
7909
+ #
7910
+ # @overload update_sip_media_application_call(params = {})
7911
+ # @param [Hash] params ({})
7912
+ def update_sip_media_application_call(params = {}, options = {})
7913
+ req = build_request(:update_sip_media_application_call, params)
7914
+ req.send_request(options)
7915
+ end
7916
+
7876
7917
  # Updates the details of the specified SIP rule.
7877
7918
  #
7878
7919
  # @option params [required, String] :sip_rule_id
@@ -8132,7 +8173,7 @@ module Aws::Chime
8132
8173
  params: params,
8133
8174
  config: config)
8134
8175
  context[:gem_name] = 'aws-sdk-chime'
8135
- context[:gem_version] = '1.47.0'
8176
+ context[:gem_version] = '1.48.0'
8136
8177
  Seahorse::Client::Request.new(handlers, context)
8137
8178
  end
8138
8179
 
@@ -484,6 +484,7 @@ module Aws::Chime
484
484
  RoomMembershipList = Shapes::ListShape.new(name: 'RoomMembershipList')
485
485
  RoomMembershipRole = Shapes::StringShape.new(name: 'RoomMembershipRole')
486
486
  RoomRetentionSettings = Shapes::StructureShape.new(name: 'RoomRetentionSettings')
487
+ SMAUpdateCallArgumentsMap = Shapes::MapShape.new(name: 'SMAUpdateCallArgumentsMap')
487
488
  SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
488
489
  SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
489
490
  SendChannelMessageRequest = Shapes::StructureShape.new(name: 'SendChannelMessageRequest')
@@ -562,6 +563,8 @@ module Aws::Chime
562
563
  UpdateRoomMembershipResponse = Shapes::StructureShape.new(name: 'UpdateRoomMembershipResponse')
563
564
  UpdateRoomRequest = Shapes::StructureShape.new(name: 'UpdateRoomRequest')
564
565
  UpdateRoomResponse = Shapes::StructureShape.new(name: 'UpdateRoomResponse')
566
+ UpdateSipMediaApplicationCallRequest = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationCallRequest')
567
+ UpdateSipMediaApplicationCallResponse = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationCallResponse')
565
568
  UpdateSipMediaApplicationRequest = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationRequest')
566
569
  UpdateSipMediaApplicationResponse = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationResponse')
567
570
  UpdateSipRuleRequest = Shapes::StructureShape.new(name: 'UpdateSipRuleRequest')
@@ -2182,6 +2185,9 @@ module Aws::Chime
2182
2185
  RoomRetentionSettings.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
2183
2186
  RoomRetentionSettings.struct_class = Types::RoomRetentionSettings
2184
2187
 
2188
+ SMAUpdateCallArgumentsMap.key = Shapes::ShapeRef.new(shape: SensitiveString)
2189
+ SMAUpdateCallArgumentsMap.value = Shapes::ShapeRef.new(shape: SensitiveString)
2190
+
2185
2191
  SearchAvailablePhoneNumbersRequest.add_member(:area_code, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "area-code"))
2186
2192
  SearchAvailablePhoneNumbersRequest.add_member(:city, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "city"))
2187
2193
  SearchAvailablePhoneNumbersRequest.add_member(:country, Shapes::ShapeRef.new(shape: Alpha2CountryCode, location: "querystring", location_name: "country"))
@@ -2452,6 +2458,14 @@ module Aws::Chime
2452
2458
  UpdateRoomResponse.add_member(:room, Shapes::ShapeRef.new(shape: Room, location_name: "Room"))
2453
2459
  UpdateRoomResponse.struct_class = Types::UpdateRoomResponse
2454
2460
 
2461
+ UpdateSipMediaApplicationCallRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
2462
+ UpdateSipMediaApplicationCallRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "transactionId"))
2463
+ UpdateSipMediaApplicationCallRequest.add_member(:arguments, Shapes::ShapeRef.new(shape: SMAUpdateCallArgumentsMap, required: true, location_name: "Arguments"))
2464
+ UpdateSipMediaApplicationCallRequest.struct_class = Types::UpdateSipMediaApplicationCallRequest
2465
+
2466
+ UpdateSipMediaApplicationCallResponse.add_member(:sip_media_application_call, Shapes::ShapeRef.new(shape: SipMediaApplicationCall, location_name: "SipMediaApplicationCall"))
2467
+ UpdateSipMediaApplicationCallResponse.struct_class = Types::UpdateSipMediaApplicationCallResponse
2468
+
2455
2469
  UpdateSipMediaApplicationRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
2456
2470
  UpdateSipMediaApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, location_name: "Name"))
2457
2471
  UpdateSipMediaApplicationRequest.add_member(:endpoints, Shapes::ShapeRef.new(shape: SipMediaApplicationEndpointList, location_name: "Endpoints"))
@@ -5540,6 +5554,22 @@ module Aws::Chime
5540
5554
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5541
5555
  end)
5542
5556
 
5557
+ api.add_operation(:update_sip_media_application_call, Seahorse::Model::Operation.new.tap do |o|
5558
+ o.name = "UpdateSipMediaApplicationCall"
5559
+ o.http_method = "POST"
5560
+ o.http_request_uri = "/sip-media-applications/{sipMediaApplicationId}/calls/{transactionId}"
5561
+ o.input = Shapes::ShapeRef.new(shape: UpdateSipMediaApplicationCallRequest)
5562
+ o.output = Shapes::ShapeRef.new(shape: UpdateSipMediaApplicationCallResponse)
5563
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
5564
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
5565
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
5566
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
5567
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
5568
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
5569
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
5570
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5571
+ end)
5572
+
5543
5573
  api.add_operation(:update_sip_rule, Seahorse::Model::Operation.new.tap do |o|
5544
5574
  o.name = "UpdateSipRule"
5545
5575
  o.http_method = "PUT"
@@ -9803,6 +9803,52 @@ module Aws::Chime
9803
9803
  include Aws::Structure
9804
9804
  end
9805
9805
 
9806
+ # @note When making an API call, you may pass UpdateSipMediaApplicationCallRequest
9807
+ # data as a hash:
9808
+ #
9809
+ # {
9810
+ # sip_media_application_id: "NonEmptyString", # required
9811
+ # transaction_id: "NonEmptyString", # required
9812
+ # arguments: { # required
9813
+ # "SensitiveString" => "SensitiveString",
9814
+ # },
9815
+ # }
9816
+ #
9817
+ # @!attribute [rw] sip_media_application_id
9818
+ # The ID of the SIP media application handling the call.
9819
+ # @return [String]
9820
+ #
9821
+ # @!attribute [rw] transaction_id
9822
+ # The ID of the call transaction.
9823
+ # @return [String]
9824
+ #
9825
+ # @!attribute [rw] arguments
9826
+ # Arguments made available to the Lambda function as part of the
9827
+ # `CALL_UPDATE_REQUESTED` event. Can contain 0-20 key-value pairs.
9828
+ # @return [Hash<String,String>]
9829
+ #
9830
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCallRequest AWS API Documentation
9831
+ #
9832
+ class UpdateSipMediaApplicationCallRequest < Struct.new(
9833
+ :sip_media_application_id,
9834
+ :transaction_id,
9835
+ :arguments)
9836
+ SENSITIVE = []
9837
+ include Aws::Structure
9838
+ end
9839
+
9840
+ # @!attribute [rw] sip_media_application_call
9841
+ # A `Call` instance for a SIP media application.
9842
+ # @return [Types::SipMediaApplicationCall]
9843
+ #
9844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCallResponse AWS API Documentation
9845
+ #
9846
+ class UpdateSipMediaApplicationCallResponse < Struct.new(
9847
+ :sip_media_application_call)
9848
+ SENSITIVE = []
9849
+ include Aws::Structure
9850
+ end
9851
+
9806
9852
  # @note When making an API call, you may pass UpdateSipMediaApplicationRequest
9807
9853
  # data as a hash:
9808
9854
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.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: 2021-06-10 00:00:00.000000000 Z
11
+ date: 2021-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core