aws-sdk-chimesdkvoice 1.4.0 → 1.6.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +27 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +5 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +26 -7
- data/lib/aws-sdk-chimesdkvoice.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: c8741c11ca506e8e9db4e257eb7ecb23e7112c336b41b64b5d937682786d1975
|
4
|
+
data.tar.gz: 59d939cfcffa4275ac38144989c6cbe331ae2fa884f21b8cb51dcc58b7420060
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 800c8c449219f241852ed03b5a0a35e63e0cea2d35e7a9fc7b5a61d114bcf3b347dc60b20b1cfa32b6e4818e617551eb7f58c17563b0c8ef10cc17cd71e6cfc6
|
7
|
+
data.tar.gz: 9cc3b0f9f00f71c0674b4fc5d99e3ba8bddebc9db4993eb56cd300277d629ff8da289114c52727fef591c51625e63b36a0236d0982c1f3693a7e7f971eb80141
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.5.0 (2023-04-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds tagging support for Voice Connectors and SIP Media Applications
|
13
|
+
|
4
14
|
1.4.0 (2023-03-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -665,6 +665,9 @@ module Aws::ChimeSDKVoice
|
|
665
665
|
# List of endpoints (Lambda ARNs) specified for the SIP media
|
666
666
|
# application.
|
667
667
|
#
|
668
|
+
# @option params [Array<Types::Tag>] :tags
|
669
|
+
# The tags assigned to the SIP media application.
|
670
|
+
#
|
668
671
|
# @return [Types::CreateSipMediaApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
669
672
|
#
|
670
673
|
# * {Types::CreateSipMediaApplicationResponse#sip_media_application #sip_media_application} => Types::SipMediaApplication
|
@@ -679,6 +682,12 @@ module Aws::ChimeSDKVoice
|
|
679
682
|
# lambda_arn: "FunctionArn",
|
680
683
|
# },
|
681
684
|
# ],
|
685
|
+
# tags: [
|
686
|
+
# {
|
687
|
+
# key: "TagKey", # required
|
688
|
+
# value: "TagValue", # required
|
689
|
+
# },
|
690
|
+
# ],
|
682
691
|
# })
|
683
692
|
#
|
684
693
|
# @example Response structure
|
@@ -690,6 +699,7 @@ module Aws::ChimeSDKVoice
|
|
690
699
|
# resp.sip_media_application.endpoints[0].lambda_arn #=> String
|
691
700
|
# resp.sip_media_application.created_timestamp #=> Time
|
692
701
|
# resp.sip_media_application.updated_timestamp #=> Time
|
702
|
+
# resp.sip_media_application.sip_media_application_arn #=> String
|
693
703
|
#
|
694
704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipMediaApplication AWS API Documentation
|
695
705
|
#
|
@@ -847,6 +857,9 @@ module Aws::ChimeSDKVoice
|
|
847
857
|
# @option params [required, Boolean] :require_encryption
|
848
858
|
# Enables or disables encryption for the Voice Connector.
|
849
859
|
#
|
860
|
+
# @option params [Array<Types::Tag>] :tags
|
861
|
+
# The tags assigned to the Voice Connector.
|
862
|
+
#
|
850
863
|
# @return [Types::CreateVoiceConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
851
864
|
#
|
852
865
|
# * {Types::CreateVoiceConnectorResponse#voice_connector #voice_connector} => Types::VoiceConnector
|
@@ -857,6 +870,12 @@ module Aws::ChimeSDKVoice
|
|
857
870
|
# name: "VoiceConnectorName", # required
|
858
871
|
# aws_region: "us-east-1", # accepts us-east-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, ap-northeast-2, ap-northeast-1, ap-southeast-1, ap-southeast-2
|
859
872
|
# require_encryption: false, # required
|
873
|
+
# tags: [
|
874
|
+
# {
|
875
|
+
# key: "TagKey", # required
|
876
|
+
# value: "TagValue", # required
|
877
|
+
# },
|
878
|
+
# ],
|
860
879
|
# })
|
861
880
|
#
|
862
881
|
# @example Response structure
|
@@ -1671,6 +1690,7 @@ module Aws::ChimeSDKVoice
|
|
1671
1690
|
# resp.sip_media_application.endpoints[0].lambda_arn #=> String
|
1672
1691
|
# resp.sip_media_application.created_timestamp #=> Time
|
1673
1692
|
# resp.sip_media_application.updated_timestamp #=> Time
|
1693
|
+
# resp.sip_media_application.sip_media_application_arn #=> String
|
1674
1694
|
#
|
1675
1695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplication AWS API Documentation
|
1676
1696
|
#
|
@@ -2478,6 +2498,7 @@ module Aws::ChimeSDKVoice
|
|
2478
2498
|
# resp.sip_media_applications[0].endpoints[0].lambda_arn #=> String
|
2479
2499
|
# resp.sip_media_applications[0].created_timestamp #=> Time
|
2480
2500
|
# resp.sip_media_applications[0].updated_timestamp #=> Time
|
2501
|
+
# resp.sip_media_applications[0].sip_media_application_arn #=> String
|
2481
2502
|
# resp.next_token #=> String
|
2482
2503
|
#
|
2483
2504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSipMediaApplications AWS API Documentation
|
@@ -3325,6 +3346,9 @@ module Aws::ChimeSDKVoice
|
|
3325
3346
|
# The unique identifier for the client request. Use a different token
|
3326
3347
|
# for different speaker search tasks.
|
3327
3348
|
#
|
3349
|
+
# @option params [String] :call_leg
|
3350
|
+
# Specifies which call leg to stream for speaker search.
|
3351
|
+
#
|
3328
3352
|
# @return [Types::StartSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3329
3353
|
#
|
3330
3354
|
# * {Types::StartSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
|
@@ -3336,6 +3360,7 @@ module Aws::ChimeSDKVoice
|
|
3336
3360
|
# transaction_id: "NonEmptyString256", # required
|
3337
3361
|
# voice_profile_domain_id: "NonEmptyString256", # required
|
3338
3362
|
# client_request_token: "ClientRequestId",
|
3363
|
+
# call_leg: "Caller", # accepts Caller, Callee
|
3339
3364
|
# })
|
3340
3365
|
#
|
3341
3366
|
# @example Response structure
|
@@ -3743,6 +3768,7 @@ module Aws::ChimeSDKVoice
|
|
3743
3768
|
# resp.sip_media_application.endpoints[0].lambda_arn #=> String
|
3744
3769
|
# resp.sip_media_application.created_timestamp #=> Time
|
3745
3770
|
# resp.sip_media_application.updated_timestamp #=> Time
|
3771
|
+
# resp.sip_media_application.sip_media_application_arn #=> String
|
3746
3772
|
#
|
3747
3773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipMediaApplication AWS API Documentation
|
3748
3774
|
#
|
@@ -4127,7 +4153,7 @@ module Aws::ChimeSDKVoice
|
|
4127
4153
|
params: params,
|
4128
4154
|
config: config)
|
4129
4155
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4130
|
-
context[:gem_version] = '1.
|
4156
|
+
context[:gem_version] = '1.6.0'
|
4131
4157
|
Seahorse::Client::Request.new(handlers, context)
|
4132
4158
|
end
|
4133
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')
|
@@ -442,6 +443,7 @@ module Aws::ChimeSDKVoice
|
|
442
443
|
CreateSipMediaApplicationRequest.add_member(:aws_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AwsRegion"))
|
443
444
|
CreateSipMediaApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, required: true, location_name: "Name"))
|
444
445
|
CreateSipMediaApplicationRequest.add_member(:endpoints, Shapes::ShapeRef.new(shape: SipMediaApplicationEndpointList, required: true, location_name: "Endpoints"))
|
446
|
+
CreateSipMediaApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
445
447
|
CreateSipMediaApplicationRequest.struct_class = Types::CreateSipMediaApplicationRequest
|
446
448
|
|
447
449
|
CreateSipMediaApplicationResponse.add_member(:sip_media_application, Shapes::ShapeRef.new(shape: SipMediaApplication, location_name: "SipMediaApplication"))
|
@@ -467,6 +469,7 @@ module Aws::ChimeSDKVoice
|
|
467
469
|
CreateVoiceConnectorRequest.add_member(:name, Shapes::ShapeRef.new(shape: VoiceConnectorName, required: true, location_name: "Name"))
|
468
470
|
CreateVoiceConnectorRequest.add_member(:aws_region, Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion, location_name: "AwsRegion"))
|
469
471
|
CreateVoiceConnectorRequest.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "RequireEncryption"))
|
472
|
+
CreateVoiceConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
470
473
|
CreateVoiceConnectorRequest.struct_class = Types::CreateVoiceConnectorRequest
|
471
474
|
|
472
475
|
CreateVoiceConnectorResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnector, location_name: "VoiceConnector"))
|
@@ -1034,6 +1037,7 @@ module Aws::ChimeSDKVoice
|
|
1034
1037
|
SipMediaApplication.add_member(:endpoints, Shapes::ShapeRef.new(shape: SipMediaApplicationEndpointList, location_name: "Endpoints"))
|
1035
1038
|
SipMediaApplication.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
1036
1039
|
SipMediaApplication.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
1040
|
+
SipMediaApplication.add_member(:sip_media_application_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "SipMediaApplicationArn"))
|
1037
1041
|
SipMediaApplication.struct_class = Types::SipMediaApplication
|
1038
1042
|
|
1039
1043
|
SipMediaApplicationAlexaSkillConfiguration.add_member(:alexa_skill_status, Shapes::ShapeRef.new(shape: AlexaSkillStatus, required: true, location_name: "AlexaSkillStatus"))
|
@@ -1096,6 +1100,7 @@ module Aws::ChimeSDKVoice
|
|
1096
1100
|
StartSpeakerSearchTaskRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: NonEmptyString256, required: true, location_name: "TransactionId"))
|
1097
1101
|
StartSpeakerSearchTaskRequest.add_member(:voice_profile_domain_id, Shapes::ShapeRef.new(shape: NonEmptyString256, required: true, location_name: "VoiceProfileDomainId"))
|
1098
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"))
|
1099
1104
|
StartSpeakerSearchTaskRequest.struct_class = Types::StartSpeakerSearchTaskRequest
|
1100
1105
|
|
1101
1106
|
StartSpeakerSearchTaskResponse.add_member(:speaker_search_task, Shapes::ShapeRef.new(shape: SpeakerSearchTask, location_name: "SpeakerSearchTask"))
|
@@ -434,12 +434,17 @@ module Aws::ChimeSDKVoice
|
|
434
434
|
# application.
|
435
435
|
# @return [Array<Types::SipMediaApplicationEndpoint>]
|
436
436
|
#
|
437
|
+
# @!attribute [rw] tags
|
438
|
+
# The tags assigned to the SIP media application.
|
439
|
+
# @return [Array<Types::Tag>]
|
440
|
+
#
|
437
441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipMediaApplicationRequest AWS API Documentation
|
438
442
|
#
|
439
443
|
class CreateSipMediaApplicationRequest < Struct.new(
|
440
444
|
:aws_region,
|
441
445
|
:name,
|
442
|
-
:endpoints
|
446
|
+
:endpoints,
|
447
|
+
:tags)
|
443
448
|
SENSITIVE = []
|
444
449
|
include Aws::Structure
|
445
450
|
end
|
@@ -552,12 +557,17 @@ module Aws::ChimeSDKVoice
|
|
552
557
|
# Enables or disables encryption for the Voice Connector.
|
553
558
|
# @return [Boolean]
|
554
559
|
#
|
560
|
+
# @!attribute [rw] tags
|
561
|
+
# The tags assigned to the Voice Connector.
|
562
|
+
# @return [Array<Types::Tag>]
|
563
|
+
#
|
555
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorRequest AWS API Documentation
|
556
565
|
#
|
557
566
|
class CreateVoiceConnectorRequest < Struct.new(
|
558
567
|
:name,
|
559
568
|
:aws_region,
|
560
|
-
:require_encryption
|
569
|
+
:require_encryption,
|
570
|
+
:tags)
|
561
571
|
SENSITIVE = []
|
562
572
|
include Aws::Structure
|
563
573
|
end
|
@@ -1951,8 +1961,7 @@ module Aws::ChimeSDKVoice
|
|
1951
1961
|
# CloudWatch Logs.
|
1952
1962
|
#
|
1953
1963
|
# @!attribute [rw] enable_sip_logs
|
1954
|
-
# Boolean that enables sending SIP message logs to Amazon CloudWatch
|
1955
|
-
# logs.
|
1964
|
+
# Boolean that enables sending SIP message logs to Amazon CloudWatch.
|
1956
1965
|
# @return [Boolean]
|
1957
1966
|
#
|
1958
1967
|
# @!attribute [rw] enable_media_metric_logs
|
@@ -2867,7 +2876,7 @@ module Aws::ChimeSDKVoice
|
|
2867
2876
|
# @return [String]
|
2868
2877
|
#
|
2869
2878
|
# @!attribute [rw] endpoints
|
2870
|
-
# List of endpoints for SIP media application. Currently, only one
|
2879
|
+
# List of endpoints for a SIP media application. Currently, only one
|
2871
2880
|
# endpoint per SIP media application is permitted.
|
2872
2881
|
# @return [Array<Types::SipMediaApplicationEndpoint>]
|
2873
2882
|
#
|
@@ -2879,6 +2888,10 @@ module Aws::ChimeSDKVoice
|
|
2879
2888
|
# The time at which the SIP media application was updated.
|
2880
2889
|
# @return [Time]
|
2881
2890
|
#
|
2891
|
+
# @!attribute [rw] sip_media_application_arn
|
2892
|
+
# The ARN of the SIP media application.
|
2893
|
+
# @return [String]
|
2894
|
+
#
|
2882
2895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipMediaApplication AWS API Documentation
|
2883
2896
|
#
|
2884
2897
|
class SipMediaApplication < Struct.new(
|
@@ -2887,7 +2900,8 @@ module Aws::ChimeSDKVoice
|
|
2887
2900
|
:name,
|
2888
2901
|
:endpoints,
|
2889
2902
|
:created_timestamp,
|
2890
|
-
:updated_timestamp
|
2903
|
+
:updated_timestamp,
|
2904
|
+
:sip_media_application_arn)
|
2891
2905
|
SENSITIVE = []
|
2892
2906
|
include Aws::Structure
|
2893
2907
|
end
|
@@ -3144,13 +3158,18 @@ module Aws::ChimeSDKVoice
|
|
3144
3158
|
# for different speaker search tasks.
|
3145
3159
|
# @return [String]
|
3146
3160
|
#
|
3161
|
+
# @!attribute [rw] call_leg
|
3162
|
+
# Specifies which call leg to stream for speaker search.
|
3163
|
+
# @return [String]
|
3164
|
+
#
|
3147
3165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartSpeakerSearchTaskRequest AWS API Documentation
|
3148
3166
|
#
|
3149
3167
|
class StartSpeakerSearchTaskRequest < Struct.new(
|
3150
3168
|
:voice_connector_id,
|
3151
3169
|
:transaction_id,
|
3152
3170
|
:voice_profile_domain_id,
|
3153
|
-
:client_request_token
|
3171
|
+
:client_request_token,
|
3172
|
+
:call_leg)
|
3154
3173
|
SENSITIVE = []
|
3155
3174
|
include Aws::Structure
|
3156
3175
|
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.
|
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-
|
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
|