aws-sdk-chimesdkvoice 1.4.0 → 1.5.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-chimesdkvoice/client.rb +23 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +3 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +20 -6
- 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: 21e969480afe1e1a9e7844cd1c2d641033ae25274a995af4ad792e1cdfea2856
|
4
|
+
data.tar.gz: 47d7c2d5dc5bf970f86ac19d62e7a4756fca4ad68ab92190405c0c70854ba402
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54d8795a28d24507d402a8d7b81472e646676aa5316cc855e362abfa3f7d851b46bfe7168c1e15d1e3022b276476740b3e85f2bd13fdd38dc4e4ad24da5145cc
|
7
|
+
data.tar.gz: abb8abae548a22da4e84ebccf88b5bba1b3be256af75b601a3d4bcc3c06ea7a0c77ea68bc14f47883371dce7de77963ff5d07beb8d7928375d074a4d08ec1609
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.5.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
|
@@ -3743,6 +3764,7 @@ module Aws::ChimeSDKVoice
|
|
3743
3764
|
# resp.sip_media_application.endpoints[0].lambda_arn #=> String
|
3744
3765
|
# resp.sip_media_application.created_timestamp #=> Time
|
3745
3766
|
# resp.sip_media_application.updated_timestamp #=> Time
|
3767
|
+
# resp.sip_media_application.sip_media_application_arn #=> String
|
3746
3768
|
#
|
3747
3769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipMediaApplication AWS API Documentation
|
3748
3770
|
#
|
@@ -4127,7 +4149,7 @@ module Aws::ChimeSDKVoice
|
|
4127
4149
|
params: params,
|
4128
4150
|
config: config)
|
4129
4151
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4130
|
-
context[:gem_version] = '1.
|
4152
|
+
context[:gem_version] = '1.5.0'
|
4131
4153
|
Seahorse::Client::Request.new(handlers, context)
|
4132
4154
|
end
|
4133
4155
|
|
@@ -442,6 +442,7 @@ module Aws::ChimeSDKVoice
|
|
442
442
|
CreateSipMediaApplicationRequest.add_member(:aws_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AwsRegion"))
|
443
443
|
CreateSipMediaApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, required: true, location_name: "Name"))
|
444
444
|
CreateSipMediaApplicationRequest.add_member(:endpoints, Shapes::ShapeRef.new(shape: SipMediaApplicationEndpointList, required: true, location_name: "Endpoints"))
|
445
|
+
CreateSipMediaApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
445
446
|
CreateSipMediaApplicationRequest.struct_class = Types::CreateSipMediaApplicationRequest
|
446
447
|
|
447
448
|
CreateSipMediaApplicationResponse.add_member(:sip_media_application, Shapes::ShapeRef.new(shape: SipMediaApplication, location_name: "SipMediaApplication"))
|
@@ -467,6 +468,7 @@ module Aws::ChimeSDKVoice
|
|
467
468
|
CreateVoiceConnectorRequest.add_member(:name, Shapes::ShapeRef.new(shape: VoiceConnectorName, required: true, location_name: "Name"))
|
468
469
|
CreateVoiceConnectorRequest.add_member(:aws_region, Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion, location_name: "AwsRegion"))
|
469
470
|
CreateVoiceConnectorRequest.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "RequireEncryption"))
|
471
|
+
CreateVoiceConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
470
472
|
CreateVoiceConnectorRequest.struct_class = Types::CreateVoiceConnectorRequest
|
471
473
|
|
472
474
|
CreateVoiceConnectorResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnector, location_name: "VoiceConnector"))
|
@@ -1034,6 +1036,7 @@ module Aws::ChimeSDKVoice
|
|
1034
1036
|
SipMediaApplication.add_member(:endpoints, Shapes::ShapeRef.new(shape: SipMediaApplicationEndpointList, location_name: "Endpoints"))
|
1035
1037
|
SipMediaApplication.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
1036
1038
|
SipMediaApplication.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
1039
|
+
SipMediaApplication.add_member(:sip_media_application_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "SipMediaApplicationArn"))
|
1037
1040
|
SipMediaApplication.struct_class = Types::SipMediaApplication
|
1038
1041
|
|
1039
1042
|
SipMediaApplicationAlexaSkillConfiguration.add_member(:alexa_skill_status, Shapes::ShapeRef.new(shape: AlexaSkillStatus, required: true, location_name: "AlexaSkillStatus"))
|
@@ -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
|
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.5.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-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|