aws-sdk-chimesdkvoice 1.5.0 → 1.6.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: 21e969480afe1e1a9e7844cd1c2d641033ae25274a995af4ad792e1cdfea2856
4
- data.tar.gz: 47d7c2d5dc5bf970f86ac19d62e7a4756fca4ad68ab92190405c0c70854ba402
3
+ metadata.gz: c8741c11ca506e8e9db4e257eb7ecb23e7112c336b41b64b5d937682786d1975
4
+ data.tar.gz: 59d939cfcffa4275ac38144989c6cbe331ae2fa884f21b8cb51dcc58b7420060
5
5
  SHA512:
6
- metadata.gz: 54d8795a28d24507d402a8d7b81472e646676aa5316cc855e362abfa3f7d851b46bfe7168c1e15d1e3022b276476740b3e85f2bd13fdd38dc4e4ad24da5145cc
7
- data.tar.gz: abb8abae548a22da4e84ebccf88b5bba1b3be256af75b601a3d4bcc3c06ea7a0c77ea68bc14f47883371dce7de77963ff5d07beb8d7928375d074a4d08ec1609
6
+ metadata.gz: 800c8c449219f241852ed03b5a0a35e63e0cea2d35e7a9fc7b5a61d114bcf3b347dc60b20b1cfa32b6e4818e617551eb7f58c17563b0c8ef10cc17cd71e6cfc6
7
+ data.tar.gz: 9cc3b0f9f00f71c0674b4fc5d99e3ba8bddebc9db4993eb56cd300277d629ff8da289114c52727fef591c51625e63b36a0236d0982c1f3693a7e7f971eb80141
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.0 (2023-05-30)
5
+ ------------------
6
+
7
+ * Feature - Added optional CallLeg field to StartSpeakerSearchTask API request
8
+
4
9
  1.5.0 (2023-04-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
1
+ 1.6.0
@@ -3346,6 +3346,9 @@ module Aws::ChimeSDKVoice
3346
3346
  # The unique identifier for the client request. Use a different token
3347
3347
  # for different speaker search tasks.
3348
3348
  #
3349
+ # @option params [String] :call_leg
3350
+ # Specifies which call leg to stream for speaker search.
3351
+ #
3349
3352
  # @return [Types::StartSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3350
3353
  #
3351
3354
  # * {Types::StartSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
@@ -3357,6 +3360,7 @@ module Aws::ChimeSDKVoice
3357
3360
  # transaction_id: "NonEmptyString256", # required
3358
3361
  # voice_profile_domain_id: "NonEmptyString256", # required
3359
3362
  # client_request_token: "ClientRequestId",
3363
+ # call_leg: "Caller", # accepts Caller, Callee
3360
3364
  # })
3361
3365
  #
3362
3366
  # @example Response structure
@@ -4149,7 +4153,7 @@ module Aws::ChimeSDKVoice
4149
4153
  params: params,
4150
4154
  config: config)
4151
4155
  context[:gem_name] = 'aws-sdk-chimesdkvoice'
4152
- context[:gem_version] = '1.5.0'
4156
+ context[:gem_version] = '1.6.0'
4153
4157
  Seahorse::Client::Request.new(handlers, context)
4154
4158
  end
4155
4159
 
@@ -32,6 +32,7 @@ module Aws::ChimeSDKVoice
32
32
  BatchUpdatePhoneNumberResponse = Shapes::StructureShape.new(name: 'BatchUpdatePhoneNumberResponse')
33
33
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
34
34
  CallDetails = Shapes::StructureShape.new(name: 'CallDetails')
35
+ CallLegType = Shapes::StringShape.new(name: 'CallLegType')
35
36
  CallingName = Shapes::StringShape.new(name: 'CallingName')
36
37
  CallingNameStatus = Shapes::StringShape.new(name: 'CallingNameStatus')
37
38
  CallingRegion = Shapes::StringShape.new(name: 'CallingRegion')
@@ -1099,6 +1100,7 @@ module Aws::ChimeSDKVoice
1099
1100
  StartSpeakerSearchTaskRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: NonEmptyString256, required: true, location_name: "TransactionId"))
1100
1101
  StartSpeakerSearchTaskRequest.add_member(:voice_profile_domain_id, Shapes::ShapeRef.new(shape: NonEmptyString256, required: true, location_name: "VoiceProfileDomainId"))
1101
1102
  StartSpeakerSearchTaskRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestId, location_name: "ClientRequestToken"))
1103
+ StartSpeakerSearchTaskRequest.add_member(:call_leg, Shapes::ShapeRef.new(shape: CallLegType, location_name: "CallLeg"))
1102
1104
  StartSpeakerSearchTaskRequest.struct_class = Types::StartSpeakerSearchTaskRequest
1103
1105
 
1104
1106
  StartSpeakerSearchTaskResponse.add_member(:speaker_search_task, Shapes::ShapeRef.new(shape: SpeakerSearchTask, location_name: "SpeakerSearchTask"))
@@ -3158,13 +3158,18 @@ module Aws::ChimeSDKVoice
3158
3158
  # for different speaker search tasks.
3159
3159
  # @return [String]
3160
3160
  #
3161
+ # @!attribute [rw] call_leg
3162
+ # Specifies which call leg to stream for speaker search.
3163
+ # @return [String]
3164
+ #
3161
3165
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartSpeakerSearchTaskRequest AWS API Documentation
3162
3166
  #
3163
3167
  class StartSpeakerSearchTaskRequest < Struct.new(
3164
3168
  :voice_connector_id,
3165
3169
  :transaction_id,
3166
3170
  :voice_profile_domain_id,
3167
- :client_request_token)
3171
+ :client_request_token,
3172
+ :call_leg)
3168
3173
  SENSITIVE = []
3169
3174
  include Aws::Structure
3170
3175
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkvoice/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKVoice
54
54
 
55
- GEM_VERSION = '1.5.0'
55
+ GEM_VERSION = '1.6.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkvoice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.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-04-13 00:00:00.000000000 Z
11
+ date: 2023-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core