aws-sdk-chime 1.31.0 → 1.32.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/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +137 -11
- data/lib/aws-sdk-chime/client_api.rb +85 -5
- data/lib/aws-sdk-chime/types.rb +166 -5
- 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: 36978004511cba920c7e457a59ebc0cb3057306f5cdd88769aaa743fcef3a44d
|
4
|
+
data.tar.gz: cb8072d7c7b352eef3080c75866e385f3227d1d4f34a2cc3aba54d7185a6fd63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 238945c5125d84e2c6a6c038b038b9f69d4762e457b9f5b04bad7a0565c5da4af487075e3a81bcb478b16fad8cc88a9c3d86b9ac8a828accaa7caaddd2a82f06
|
7
|
+
data.tar.gz: 51251e02e1e2ec98fa1961142795821a7b58048abcf7865683446bd0d03180bfb8fa1b12da64d4f9cceb841edd5aa0194f14e9e098ddf68523ee333d9aeb76e9
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -348,7 +348,7 @@ module Aws::Chime
|
|
348
348
|
# @option params [required, String] :voice_connector_id
|
349
349
|
# The Amazon Chime Voice Connector ID.
|
350
350
|
#
|
351
|
-
# @option params [Array<String>] :e164_phone_numbers
|
351
|
+
# @option params [required, Array<String>] :e164_phone_numbers
|
352
352
|
# List of phone numbers, in E.164 format.
|
353
353
|
#
|
354
354
|
# @option params [Boolean] :force_associate
|
@@ -365,7 +365,7 @@ module Aws::Chime
|
|
365
365
|
#
|
366
366
|
# resp = client.associate_phone_numbers_with_voice_connector({
|
367
367
|
# voice_connector_id: "NonEmptyString", # required
|
368
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
368
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
369
369
|
# force_associate: false,
|
370
370
|
# })
|
371
371
|
#
|
@@ -391,7 +391,7 @@ module Aws::Chime
|
|
391
391
|
# @option params [required, String] :voice_connector_group_id
|
392
392
|
# The Amazon Chime Voice Connector group ID.
|
393
393
|
#
|
394
|
-
# @option params [Array<String>] :e164_phone_numbers
|
394
|
+
# @option params [required, Array<String>] :e164_phone_numbers
|
395
395
|
# List of phone numbers, in E.164 format.
|
396
396
|
#
|
397
397
|
# @option params [Boolean] :force_associate
|
@@ -408,7 +408,7 @@ module Aws::Chime
|
|
408
408
|
#
|
409
409
|
# resp = client.associate_phone_numbers_with_voice_connector_group({
|
410
410
|
# voice_connector_group_id: "NonEmptyString", # required
|
411
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
411
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
412
412
|
# force_associate: false,
|
413
413
|
# })
|
414
414
|
#
|
@@ -1757,6 +1757,29 @@ module Aws::Chime
|
|
1757
1757
|
req.send_request(options)
|
1758
1758
|
end
|
1759
1759
|
|
1760
|
+
# Deletes the emergency calling configuration details from the specified
|
1761
|
+
# Amazon Chime Voice Connector.
|
1762
|
+
#
|
1763
|
+
# @option params [required, String] :voice_connector_id
|
1764
|
+
# The Amazon Chime Voice Connector ID.
|
1765
|
+
#
|
1766
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1767
|
+
#
|
1768
|
+
# @example Request syntax with placeholder values
|
1769
|
+
#
|
1770
|
+
# resp = client.delete_voice_connector_emergency_calling_configuration({
|
1771
|
+
# voice_connector_id: "NonEmptyString", # required
|
1772
|
+
# })
|
1773
|
+
#
|
1774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteVoiceConnectorEmergencyCallingConfiguration AWS API Documentation
|
1775
|
+
#
|
1776
|
+
# @overload delete_voice_connector_emergency_calling_configuration(params = {})
|
1777
|
+
# @param [Hash] params ({})
|
1778
|
+
def delete_voice_connector_emergency_calling_configuration(params = {}, options = {})
|
1779
|
+
req = build_request(:delete_voice_connector_emergency_calling_configuration, params)
|
1780
|
+
req.send_request(options)
|
1781
|
+
end
|
1782
|
+
|
1760
1783
|
# Deletes the specified Amazon Chime Voice Connector group. Any
|
1761
1784
|
# `VoiceConnectorItems` and phone numbers associated with the group must
|
1762
1785
|
# be removed before it can be deleted.
|
@@ -1784,6 +1807,12 @@ module Aws::Chime
|
|
1784
1807
|
# Deletes the origination settings for the specified Amazon Chime Voice
|
1785
1808
|
# Connector.
|
1786
1809
|
#
|
1810
|
+
# <note markdown="1"> If emergency calling is configured for the Amazon Chime Voice
|
1811
|
+
# Connector, it must be deleted prior to deleting the origination
|
1812
|
+
# settings.
|
1813
|
+
#
|
1814
|
+
# </note>
|
1815
|
+
#
|
1787
1816
|
# @option params [required, String] :voice_connector_id
|
1788
1817
|
# The Amazon Chime Voice Connector ID.
|
1789
1818
|
#
|
@@ -1853,6 +1882,12 @@ module Aws::Chime
|
|
1853
1882
|
# Deletes the termination settings for the specified Amazon Chime Voice
|
1854
1883
|
# Connector.
|
1855
1884
|
#
|
1885
|
+
# <note markdown="1"> If emergency calling is configured for the Amazon Chime Voice
|
1886
|
+
# Connector, it must be deleted prior to deleting the termination
|
1887
|
+
# settings.
|
1888
|
+
#
|
1889
|
+
# </note>
|
1890
|
+
#
|
1856
1891
|
# @option params [required, String] :voice_connector_id
|
1857
1892
|
# The Amazon Chime Voice Connector ID.
|
1858
1893
|
#
|
@@ -1879,7 +1914,7 @@ module Aws::Chime
|
|
1879
1914
|
# @option params [required, String] :voice_connector_id
|
1880
1915
|
# The Amazon Chime Voice Connector ID.
|
1881
1916
|
#
|
1882
|
-
# @option params [Array<String>] :usernames
|
1917
|
+
# @option params [required, Array<String>] :usernames
|
1883
1918
|
# The RFC2617 compliant username associated with the SIP credentials, in
|
1884
1919
|
# US-ASCII format.
|
1885
1920
|
#
|
@@ -1889,7 +1924,7 @@ module Aws::Chime
|
|
1889
1924
|
#
|
1890
1925
|
# resp = client.delete_voice_connector_termination_credentials({
|
1891
1926
|
# voice_connector_id: "NonEmptyString", # required
|
1892
|
-
# usernames: ["SensitiveString"],
|
1927
|
+
# usernames: ["SensitiveString"], # required
|
1893
1928
|
# })
|
1894
1929
|
#
|
1895
1930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteVoiceConnectorTerminationCredentials AWS API Documentation
|
@@ -1934,7 +1969,7 @@ module Aws::Chime
|
|
1934
1969
|
# @option params [required, String] :voice_connector_id
|
1935
1970
|
# The Amazon Chime Voice Connector ID.
|
1936
1971
|
#
|
1937
|
-
# @option params [Array<String>] :e164_phone_numbers
|
1972
|
+
# @option params [required, Array<String>] :e164_phone_numbers
|
1938
1973
|
# List of phone numbers, in E.164 format.
|
1939
1974
|
#
|
1940
1975
|
# @return [Types::DisassociatePhoneNumbersFromVoiceConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1945,7 +1980,7 @@ module Aws::Chime
|
|
1945
1980
|
#
|
1946
1981
|
# resp = client.disassociate_phone_numbers_from_voice_connector({
|
1947
1982
|
# voice_connector_id: "NonEmptyString", # required
|
1948
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
1983
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
1949
1984
|
# })
|
1950
1985
|
#
|
1951
1986
|
# @example Response structure
|
@@ -1970,7 +2005,7 @@ module Aws::Chime
|
|
1970
2005
|
# @option params [required, String] :voice_connector_group_id
|
1971
2006
|
# The Amazon Chime Voice Connector group ID.
|
1972
2007
|
#
|
1973
|
-
# @option params [Array<String>] :e164_phone_numbers
|
2008
|
+
# @option params [required, Array<String>] :e164_phone_numbers
|
1974
2009
|
# List of phone numbers, in E.164 format.
|
1975
2010
|
#
|
1976
2011
|
# @return [Types::DisassociatePhoneNumbersFromVoiceConnectorGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1981,7 +2016,7 @@ module Aws::Chime
|
|
1981
2016
|
#
|
1982
2017
|
# resp = client.disassociate_phone_numbers_from_voice_connector_group({
|
1983
2018
|
# voice_connector_group_id: "NonEmptyString", # required
|
1984
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
2019
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
1985
2020
|
# })
|
1986
2021
|
#
|
1987
2022
|
# @example Response structure
|
@@ -2634,6 +2669,38 @@ module Aws::Chime
|
|
2634
2669
|
req.send_request(options)
|
2635
2670
|
end
|
2636
2671
|
|
2672
|
+
# Gets the emergency calling configuration details for the specified
|
2673
|
+
# Amazon Chime Voice Connector.
|
2674
|
+
#
|
2675
|
+
# @option params [required, String] :voice_connector_id
|
2676
|
+
# The Amazon Chime Voice Connector ID.
|
2677
|
+
#
|
2678
|
+
# @return [Types::GetVoiceConnectorEmergencyCallingConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2679
|
+
#
|
2680
|
+
# * {Types::GetVoiceConnectorEmergencyCallingConfigurationResponse#emergency_calling_configuration #emergency_calling_configuration} => Types::EmergencyCallingConfiguration
|
2681
|
+
#
|
2682
|
+
# @example Request syntax with placeholder values
|
2683
|
+
#
|
2684
|
+
# resp = client.get_voice_connector_emergency_calling_configuration({
|
2685
|
+
# voice_connector_id: "NonEmptyString", # required
|
2686
|
+
# })
|
2687
|
+
#
|
2688
|
+
# @example Response structure
|
2689
|
+
#
|
2690
|
+
# resp.emergency_calling_configuration.dnis #=> Array
|
2691
|
+
# resp.emergency_calling_configuration.dnis[0].emergency_phone_number #=> String
|
2692
|
+
# resp.emergency_calling_configuration.dnis[0].test_phone_number #=> String
|
2693
|
+
# resp.emergency_calling_configuration.dnis[0].calling_country #=> String
|
2694
|
+
#
|
2695
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorEmergencyCallingConfiguration AWS API Documentation
|
2696
|
+
#
|
2697
|
+
# @overload get_voice_connector_emergency_calling_configuration(params = {})
|
2698
|
+
# @param [Hash] params ({})
|
2699
|
+
def get_voice_connector_emergency_calling_configuration(params = {}, options = {})
|
2700
|
+
req = build_request(:get_voice_connector_emergency_calling_configuration, params)
|
2701
|
+
req.send_request(options)
|
2702
|
+
end
|
2703
|
+
|
2637
2704
|
# Retrieves details for the specified Amazon Chime Voice Connector
|
2638
2705
|
# group, such as timestamps, name, and associated `VoiceConnectorItems`.
|
2639
2706
|
#
|
@@ -3812,6 +3879,53 @@ module Aws::Chime
|
|
3812
3879
|
req.send_request(options)
|
3813
3880
|
end
|
3814
3881
|
|
3882
|
+
# Puts emergency calling configuration details to the specified Amazon
|
3883
|
+
# Chime Voice Connector, such as emergency phone numbers and calling
|
3884
|
+
# countries. Origination and termination settings must be enabled for
|
3885
|
+
# the Amazon Chime Voice Connector before emergency calling can be
|
3886
|
+
# configured.
|
3887
|
+
#
|
3888
|
+
# @option params [required, String] :voice_connector_id
|
3889
|
+
# The Amazon Chime Voice Connector ID.
|
3890
|
+
#
|
3891
|
+
# @option params [required, Types::EmergencyCallingConfiguration] :emergency_calling_configuration
|
3892
|
+
# The emergency calling configuration details.
|
3893
|
+
#
|
3894
|
+
# @return [Types::PutVoiceConnectorEmergencyCallingConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3895
|
+
#
|
3896
|
+
# * {Types::PutVoiceConnectorEmergencyCallingConfigurationResponse#emergency_calling_configuration #emergency_calling_configuration} => Types::EmergencyCallingConfiguration
|
3897
|
+
#
|
3898
|
+
# @example Request syntax with placeholder values
|
3899
|
+
#
|
3900
|
+
# resp = client.put_voice_connector_emergency_calling_configuration({
|
3901
|
+
# voice_connector_id: "NonEmptyString", # required
|
3902
|
+
# emergency_calling_configuration: { # required
|
3903
|
+
# dnis: [
|
3904
|
+
# {
|
3905
|
+
# emergency_phone_number: "E164PhoneNumber", # required
|
3906
|
+
# test_phone_number: "E164PhoneNumber",
|
3907
|
+
# calling_country: "Alpha2CountryCode", # required
|
3908
|
+
# },
|
3909
|
+
# ],
|
3910
|
+
# },
|
3911
|
+
# })
|
3912
|
+
#
|
3913
|
+
# @example Response structure
|
3914
|
+
#
|
3915
|
+
# resp.emergency_calling_configuration.dnis #=> Array
|
3916
|
+
# resp.emergency_calling_configuration.dnis[0].emergency_phone_number #=> String
|
3917
|
+
# resp.emergency_calling_configuration.dnis[0].test_phone_number #=> String
|
3918
|
+
# resp.emergency_calling_configuration.dnis[0].calling_country #=> String
|
3919
|
+
#
|
3920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorEmergencyCallingConfiguration AWS API Documentation
|
3921
|
+
#
|
3922
|
+
# @overload put_voice_connector_emergency_calling_configuration(params = {})
|
3923
|
+
# @param [Hash] params ({})
|
3924
|
+
def put_voice_connector_emergency_calling_configuration(params = {}, options = {})
|
3925
|
+
req = build_request(:put_voice_connector_emergency_calling_configuration, params)
|
3926
|
+
req.send_request(options)
|
3927
|
+
end
|
3928
|
+
|
3815
3929
|
# Adds a logging configuration for the specified Amazon Chime Voice
|
3816
3930
|
# Connector. The logging configuration specifies whether SIP message
|
3817
3931
|
# logs are enabled for sending to Amazon CloudWatch Logs.
|
@@ -3851,6 +3965,12 @@ module Aws::Chime
|
|
3851
3965
|
# Adds origination settings for the specified Amazon Chime Voice
|
3852
3966
|
# Connector.
|
3853
3967
|
#
|
3968
|
+
# <note markdown="1"> If emergency calling is configured for the Amazon Chime Voice
|
3969
|
+
# Connector, it must be deleted prior to turning off origination
|
3970
|
+
# settings.
|
3971
|
+
#
|
3972
|
+
# </note>
|
3973
|
+
#
|
3854
3974
|
# @option params [required, String] :voice_connector_id
|
3855
3975
|
# The Amazon Chime Voice Connector ID.
|
3856
3976
|
#
|
@@ -3997,6 +4117,12 @@ module Aws::Chime
|
|
3997
4117
|
# Adds termination settings for the specified Amazon Chime Voice
|
3998
4118
|
# Connector.
|
3999
4119
|
#
|
4120
|
+
# <note markdown="1"> If emergency calling is configured for the Amazon Chime Voice
|
4121
|
+
# Connector, it must be deleted prior to turning off termination
|
4122
|
+
# settings.
|
4123
|
+
#
|
4124
|
+
# </note>
|
4125
|
+
#
|
4000
4126
|
# @option params [required, String] :voice_connector_id
|
4001
4127
|
# The Amazon Chime Voice Connector ID.
|
4002
4128
|
#
|
@@ -5101,7 +5227,7 @@ module Aws::Chime
|
|
5101
5227
|
params: params,
|
5102
5228
|
config: config)
|
5103
5229
|
context[:gem_name] = 'aws-sdk-chime'
|
5104
|
-
context[:gem_version] = '1.
|
5230
|
+
context[:gem_version] = '1.32.0'
|
5105
5231
|
Seahorse::Client::Request.new(handlers, context)
|
5106
5232
|
end
|
5107
5233
|
|
@@ -20,6 +20,7 @@ module Aws::Chime
|
|
20
20
|
AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
|
21
21
|
AccountType = Shapes::StringShape.new(name: 'AccountType')
|
22
22
|
AlexaForBusinessMetadata = Shapes::StructureShape.new(name: 'AlexaForBusinessMetadata')
|
23
|
+
Alpha2CountryCode = Shapes::StringShape.new(name: 'Alpha2CountryCode')
|
23
24
|
AreaCode = Shapes::StringShape.new(name: 'AreaCode')
|
24
25
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
25
26
|
AssociatePhoneNumberWithUserRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserRequest')
|
@@ -97,6 +98,8 @@ module Aws::Chime
|
|
97
98
|
CreateVoiceConnectorResponse = Shapes::StructureShape.new(name: 'CreateVoiceConnectorResponse')
|
98
99
|
Credential = Shapes::StructureShape.new(name: 'Credential')
|
99
100
|
CredentialList = Shapes::ListShape.new(name: 'CredentialList')
|
101
|
+
DNISEmergencyCallingConfiguration = Shapes::StructureShape.new(name: 'DNISEmergencyCallingConfiguration')
|
102
|
+
DNISEmergencyCallingConfigurationList = Shapes::ListShape.new(name: 'DNISEmergencyCallingConfigurationList')
|
100
103
|
DataRetentionInHours = Shapes::IntegerShape.new(name: 'DataRetentionInHours')
|
101
104
|
DeleteAccountRequest = Shapes::StructureShape.new(name: 'DeleteAccountRequest')
|
102
105
|
DeleteAccountResponse = Shapes::StructureShape.new(name: 'DeleteAccountResponse')
|
@@ -107,6 +110,7 @@ module Aws::Chime
|
|
107
110
|
DeleteProxySessionRequest = Shapes::StructureShape.new(name: 'DeleteProxySessionRequest')
|
108
111
|
DeleteRoomMembershipRequest = Shapes::StructureShape.new(name: 'DeleteRoomMembershipRequest')
|
109
112
|
DeleteRoomRequest = Shapes::StructureShape.new(name: 'DeleteRoomRequest')
|
113
|
+
DeleteVoiceConnectorEmergencyCallingConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorEmergencyCallingConfigurationRequest')
|
110
114
|
DeleteVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorGroupRequest')
|
111
115
|
DeleteVoiceConnectorOriginationRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorOriginationRequest')
|
112
116
|
DeleteVoiceConnectorProxyRequest = Shapes::StructureShape.new(name: 'DeleteVoiceConnectorProxyRequest')
|
@@ -126,6 +130,7 @@ module Aws::Chime
|
|
126
130
|
E164PhoneNumberList = Shapes::ListShape.new(name: 'E164PhoneNumberList')
|
127
131
|
EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
|
128
132
|
EmailStatus = Shapes::StringShape.new(name: 'EmailStatus')
|
133
|
+
EmergencyCallingConfiguration = Shapes::StructureShape.new(name: 'EmergencyCallingConfiguration')
|
129
134
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
130
135
|
EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
|
131
136
|
ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
|
@@ -161,6 +166,8 @@ module Aws::Chime
|
|
161
166
|
GetUserResponse = Shapes::StructureShape.new(name: 'GetUserResponse')
|
162
167
|
GetUserSettingsRequest = Shapes::StructureShape.new(name: 'GetUserSettingsRequest')
|
163
168
|
GetUserSettingsResponse = Shapes::StructureShape.new(name: 'GetUserSettingsResponse')
|
169
|
+
GetVoiceConnectorEmergencyCallingConfigurationRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorEmergencyCallingConfigurationRequest')
|
170
|
+
GetVoiceConnectorEmergencyCallingConfigurationResponse = Shapes::StructureShape.new(name: 'GetVoiceConnectorEmergencyCallingConfigurationResponse')
|
164
171
|
GetVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorGroupRequest')
|
165
172
|
GetVoiceConnectorGroupResponse = Shapes::StructureShape.new(name: 'GetVoiceConnectorGroupResponse')
|
166
173
|
GetVoiceConnectorLoggingConfigurationRequest = Shapes::StructureShape.new(name: 'GetVoiceConnectorLoggingConfigurationRequest')
|
@@ -282,6 +289,8 @@ module Aws::Chime
|
|
282
289
|
PutEventsConfigurationResponse = Shapes::StructureShape.new(name: 'PutEventsConfigurationResponse')
|
283
290
|
PutRetentionSettingsRequest = Shapes::StructureShape.new(name: 'PutRetentionSettingsRequest')
|
284
291
|
PutRetentionSettingsResponse = Shapes::StructureShape.new(name: 'PutRetentionSettingsResponse')
|
292
|
+
PutVoiceConnectorEmergencyCallingConfigurationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorEmergencyCallingConfigurationRequest')
|
293
|
+
PutVoiceConnectorEmergencyCallingConfigurationResponse = Shapes::StructureShape.new(name: 'PutVoiceConnectorEmergencyCallingConfigurationResponse')
|
285
294
|
PutVoiceConnectorLoggingConfigurationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorLoggingConfigurationRequest')
|
286
295
|
PutVoiceConnectorLoggingConfigurationResponse = Shapes::StructureShape.new(name: 'PutVoiceConnectorLoggingConfigurationResponse')
|
287
296
|
PutVoiceConnectorOriginationRequest = Shapes::StructureShape.new(name: 'PutVoiceConnectorOriginationRequest')
|
@@ -426,7 +435,7 @@ module Aws::Chime
|
|
426
435
|
AssociatePhoneNumberWithUserResponse.struct_class = Types::AssociatePhoneNumberWithUserResponse
|
427
436
|
|
428
437
|
AssociatePhoneNumbersWithVoiceConnectorGroupRequest.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorGroupId"))
|
429
|
-
AssociatePhoneNumbersWithVoiceConnectorGroupRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, location_name: "E164PhoneNumbers"))
|
438
|
+
AssociatePhoneNumbersWithVoiceConnectorGroupRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, required: true, location_name: "E164PhoneNumbers"))
|
430
439
|
AssociatePhoneNumbersWithVoiceConnectorGroupRequest.add_member(:force_associate, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ForceAssociate"))
|
431
440
|
AssociatePhoneNumbersWithVoiceConnectorGroupRequest.struct_class = Types::AssociatePhoneNumbersWithVoiceConnectorGroupRequest
|
432
441
|
|
@@ -434,7 +443,7 @@ module Aws::Chime
|
|
434
443
|
AssociatePhoneNumbersWithVoiceConnectorGroupResponse.struct_class = Types::AssociatePhoneNumbersWithVoiceConnectorGroupResponse
|
435
444
|
|
436
445
|
AssociatePhoneNumbersWithVoiceConnectorRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
437
|
-
AssociatePhoneNumbersWithVoiceConnectorRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, location_name: "E164PhoneNumbers"))
|
446
|
+
AssociatePhoneNumbersWithVoiceConnectorRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, required: true, location_name: "E164PhoneNumbers"))
|
438
447
|
AssociatePhoneNumbersWithVoiceConnectorRequest.add_member(:force_associate, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ForceAssociate"))
|
439
448
|
AssociatePhoneNumbersWithVoiceConnectorRequest.struct_class = Types::AssociatePhoneNumbersWithVoiceConnectorRequest
|
440
449
|
|
@@ -669,6 +678,13 @@ module Aws::Chime
|
|
669
678
|
|
670
679
|
CredentialList.member = Shapes::ShapeRef.new(shape: Credential)
|
671
680
|
|
681
|
+
DNISEmergencyCallingConfiguration.add_member(:emergency_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "EmergencyPhoneNumber"))
|
682
|
+
DNISEmergencyCallingConfiguration.add_member(:test_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, location_name: "TestPhoneNumber"))
|
683
|
+
DNISEmergencyCallingConfiguration.add_member(:calling_country, Shapes::ShapeRef.new(shape: Alpha2CountryCode, required: true, location_name: "CallingCountry"))
|
684
|
+
DNISEmergencyCallingConfiguration.struct_class = Types::DNISEmergencyCallingConfiguration
|
685
|
+
|
686
|
+
DNISEmergencyCallingConfigurationList.member = Shapes::ShapeRef.new(shape: DNISEmergencyCallingConfiguration)
|
687
|
+
|
672
688
|
DeleteAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
673
689
|
DeleteAccountRequest.struct_class = Types::DeleteAccountRequest
|
674
690
|
|
@@ -701,6 +717,9 @@ module Aws::Chime
|
|
701
717
|
DeleteRoomRequest.add_member(:room_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "roomId"))
|
702
718
|
DeleteRoomRequest.struct_class = Types::DeleteRoomRequest
|
703
719
|
|
720
|
+
DeleteVoiceConnectorEmergencyCallingConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
721
|
+
DeleteVoiceConnectorEmergencyCallingConfigurationRequest.struct_class = Types::DeleteVoiceConnectorEmergencyCallingConfigurationRequest
|
722
|
+
|
704
723
|
DeleteVoiceConnectorGroupRequest.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorGroupId"))
|
705
724
|
DeleteVoiceConnectorGroupRequest.struct_class = Types::DeleteVoiceConnectorGroupRequest
|
706
725
|
|
@@ -717,7 +736,7 @@ module Aws::Chime
|
|
717
736
|
DeleteVoiceConnectorStreamingConfigurationRequest.struct_class = Types::DeleteVoiceConnectorStreamingConfigurationRequest
|
718
737
|
|
719
738
|
DeleteVoiceConnectorTerminationCredentialsRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
720
|
-
DeleteVoiceConnectorTerminationCredentialsRequest.add_member(:usernames, Shapes::ShapeRef.new(shape: SensitiveStringList, location_name: "Usernames"))
|
739
|
+
DeleteVoiceConnectorTerminationCredentialsRequest.add_member(:usernames, Shapes::ShapeRef.new(shape: SensitiveStringList, required: true, location_name: "Usernames"))
|
721
740
|
DeleteVoiceConnectorTerminationCredentialsRequest.struct_class = Types::DeleteVoiceConnectorTerminationCredentialsRequest
|
722
741
|
|
723
742
|
DeleteVoiceConnectorTerminationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
@@ -730,14 +749,14 @@ module Aws::Chime
|
|
730
749
|
DisassociatePhoneNumberFromUserResponse.struct_class = Types::DisassociatePhoneNumberFromUserResponse
|
731
750
|
|
732
751
|
DisassociatePhoneNumbersFromVoiceConnectorGroupRequest.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorGroupId"))
|
733
|
-
DisassociatePhoneNumbersFromVoiceConnectorGroupRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, location_name: "E164PhoneNumbers"))
|
752
|
+
DisassociatePhoneNumbersFromVoiceConnectorGroupRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, required: true, location_name: "E164PhoneNumbers"))
|
734
753
|
DisassociatePhoneNumbersFromVoiceConnectorGroupRequest.struct_class = Types::DisassociatePhoneNumbersFromVoiceConnectorGroupRequest
|
735
754
|
|
736
755
|
DisassociatePhoneNumbersFromVoiceConnectorGroupResponse.add_member(:phone_number_errors, Shapes::ShapeRef.new(shape: PhoneNumberErrorList, location_name: "PhoneNumberErrors"))
|
737
756
|
DisassociatePhoneNumbersFromVoiceConnectorGroupResponse.struct_class = Types::DisassociatePhoneNumbersFromVoiceConnectorGroupResponse
|
738
757
|
|
739
758
|
DisassociatePhoneNumbersFromVoiceConnectorRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
740
|
-
DisassociatePhoneNumbersFromVoiceConnectorRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, location_name: "E164PhoneNumbers"))
|
759
|
+
DisassociatePhoneNumbersFromVoiceConnectorRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, required: true, location_name: "E164PhoneNumbers"))
|
741
760
|
DisassociatePhoneNumbersFromVoiceConnectorRequest.struct_class = Types::DisassociatePhoneNumbersFromVoiceConnectorRequest
|
742
761
|
|
743
762
|
DisassociatePhoneNumbersFromVoiceConnectorResponse.add_member(:phone_number_errors, Shapes::ShapeRef.new(shape: PhoneNumberErrorList, location_name: "PhoneNumberErrors"))
|
@@ -751,6 +770,9 @@ module Aws::Chime
|
|
751
770
|
|
752
771
|
E164PhoneNumberList.member = Shapes::ShapeRef.new(shape: E164PhoneNumber)
|
753
772
|
|
773
|
+
EmergencyCallingConfiguration.add_member(:dnis, Shapes::ShapeRef.new(shape: DNISEmergencyCallingConfigurationList, location_name: "DNIS"))
|
774
|
+
EmergencyCallingConfiguration.struct_class = Types::EmergencyCallingConfiguration
|
775
|
+
|
754
776
|
EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
|
755
777
|
EventsConfiguration.add_member(:outbound_events_https_endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "OutboundEventsHTTPSEndpoint"))
|
756
778
|
EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
|
@@ -858,6 +880,12 @@ module Aws::Chime
|
|
858
880
|
GetUserSettingsResponse.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettings, location_name: "UserSettings"))
|
859
881
|
GetUserSettingsResponse.struct_class = Types::GetUserSettingsResponse
|
860
882
|
|
883
|
+
GetVoiceConnectorEmergencyCallingConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
884
|
+
GetVoiceConnectorEmergencyCallingConfigurationRequest.struct_class = Types::GetVoiceConnectorEmergencyCallingConfigurationRequest
|
885
|
+
|
886
|
+
GetVoiceConnectorEmergencyCallingConfigurationResponse.add_member(:emergency_calling_configuration, Shapes::ShapeRef.new(shape: EmergencyCallingConfiguration, location_name: "EmergencyCallingConfiguration"))
|
887
|
+
GetVoiceConnectorEmergencyCallingConfigurationResponse.struct_class = Types::GetVoiceConnectorEmergencyCallingConfigurationResponse
|
888
|
+
|
861
889
|
GetVoiceConnectorGroupRequest.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorGroupId"))
|
862
890
|
GetVoiceConnectorGroupRequest.struct_class = Types::GetVoiceConnectorGroupRequest
|
863
891
|
|
@@ -1237,6 +1265,13 @@ module Aws::Chime
|
|
1237
1265
|
PutRetentionSettingsResponse.add_member(:initiate_deletion_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "InitiateDeletionTimestamp"))
|
1238
1266
|
PutRetentionSettingsResponse.struct_class = Types::PutRetentionSettingsResponse
|
1239
1267
|
|
1268
|
+
PutVoiceConnectorEmergencyCallingConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
1269
|
+
PutVoiceConnectorEmergencyCallingConfigurationRequest.add_member(:emergency_calling_configuration, Shapes::ShapeRef.new(shape: EmergencyCallingConfiguration, required: true, location_name: "EmergencyCallingConfiguration"))
|
1270
|
+
PutVoiceConnectorEmergencyCallingConfigurationRequest.struct_class = Types::PutVoiceConnectorEmergencyCallingConfigurationRequest
|
1271
|
+
|
1272
|
+
PutVoiceConnectorEmergencyCallingConfigurationResponse.add_member(:emergency_calling_configuration, Shapes::ShapeRef.new(shape: EmergencyCallingConfiguration, location_name: "EmergencyCallingConfiguration"))
|
1273
|
+
PutVoiceConnectorEmergencyCallingConfigurationResponse.struct_class = Types::PutVoiceConnectorEmergencyCallingConfigurationResponse
|
1274
|
+
|
1240
1275
|
PutVoiceConnectorLoggingConfigurationRequest.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "voiceConnectorId"))
|
1241
1276
|
PutVoiceConnectorLoggingConfigurationRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, required: true, location_name: "LoggingConfiguration"))
|
1242
1277
|
PutVoiceConnectorLoggingConfigurationRequest.struct_class = Types::PutVoiceConnectorLoggingConfigurationRequest
|
@@ -2122,6 +2157,21 @@ module Aws::Chime
|
|
2122
2157
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2123
2158
|
end)
|
2124
2159
|
|
2160
|
+
api.add_operation(:delete_voice_connector_emergency_calling_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2161
|
+
o.name = "DeleteVoiceConnectorEmergencyCallingConfiguration"
|
2162
|
+
o.http_method = "DELETE"
|
2163
|
+
o.http_request_uri = "/voice-connectors/{voiceConnectorId}/emergency-calling-configuration"
|
2164
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteVoiceConnectorEmergencyCallingConfigurationRequest)
|
2165
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2166
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
2167
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2168
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
2169
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2170
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
2171
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2172
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2173
|
+
end)
|
2174
|
+
|
2125
2175
|
api.add_operation(:delete_voice_connector_group, Seahorse::Model::Operation.new.tap do |o|
|
2126
2176
|
o.name = "DeleteVoiceConnectorGroup"
|
2127
2177
|
o.http_method = "DELETE"
|
@@ -2511,6 +2561,21 @@ module Aws::Chime
|
|
2511
2561
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2512
2562
|
end)
|
2513
2563
|
|
2564
|
+
api.add_operation(:get_voice_connector_emergency_calling_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2565
|
+
o.name = "GetVoiceConnectorEmergencyCallingConfiguration"
|
2566
|
+
o.http_method = "GET"
|
2567
|
+
o.http_request_uri = "/voice-connectors/{voiceConnectorId}/emergency-calling-configuration"
|
2568
|
+
o.input = Shapes::ShapeRef.new(shape: GetVoiceConnectorEmergencyCallingConfigurationRequest)
|
2569
|
+
o.output = Shapes::ShapeRef.new(shape: GetVoiceConnectorEmergencyCallingConfigurationResponse)
|
2570
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
2571
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2572
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
2573
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2574
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
2575
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2576
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2577
|
+
end)
|
2578
|
+
|
2514
2579
|
api.add_operation(:get_voice_connector_group, Seahorse::Model::Operation.new.tap do |o|
|
2515
2580
|
o.name = "GetVoiceConnectorGroup"
|
2516
2581
|
o.http_method = "GET"
|
@@ -2983,6 +3048,21 @@ module Aws::Chime
|
|
2983
3048
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2984
3049
|
end)
|
2985
3050
|
|
3051
|
+
api.add_operation(:put_voice_connector_emergency_calling_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3052
|
+
o.name = "PutVoiceConnectorEmergencyCallingConfiguration"
|
3053
|
+
o.http_method = "PUT"
|
3054
|
+
o.http_request_uri = "/voice-connectors/{voiceConnectorId}/emergency-calling-configuration"
|
3055
|
+
o.input = Shapes::ShapeRef.new(shape: PutVoiceConnectorEmergencyCallingConfigurationRequest)
|
3056
|
+
o.output = Shapes::ShapeRef.new(shape: PutVoiceConnectorEmergencyCallingConfigurationResponse)
|
3057
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3058
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3059
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3060
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3061
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3062
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3063
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3064
|
+
end)
|
3065
|
+
|
2986
3066
|
api.add_operation(:put_voice_connector_logging_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2987
3067
|
o.name = "PutVoiceConnectorLoggingConfiguration"
|
2988
3068
|
o.http_method = "PUT"
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -193,7 +193,7 @@ module Aws::Chime
|
|
193
193
|
#
|
194
194
|
# {
|
195
195
|
# voice_connector_group_id: "NonEmptyString", # required
|
196
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
196
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
197
197
|
# force_associate: false,
|
198
198
|
# }
|
199
199
|
#
|
@@ -241,7 +241,7 @@ module Aws::Chime
|
|
241
241
|
#
|
242
242
|
# {
|
243
243
|
# voice_connector_id: "NonEmptyString", # required
|
244
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
244
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
245
245
|
# force_associate: false,
|
246
246
|
# }
|
247
247
|
#
|
@@ -1539,6 +1539,43 @@ module Aws::Chime
|
|
1539
1539
|
include Aws::Structure
|
1540
1540
|
end
|
1541
1541
|
|
1542
|
+
# The Dialed Number Identification Service (DNIS) emergency calling
|
1543
|
+
# configuration details associated with an Amazon Chime Voice
|
1544
|
+
# Connector's emergency calling configuration.
|
1545
|
+
#
|
1546
|
+
# @note When making an API call, you may pass DNISEmergencyCallingConfiguration
|
1547
|
+
# data as a hash:
|
1548
|
+
#
|
1549
|
+
# {
|
1550
|
+
# emergency_phone_number: "E164PhoneNumber", # required
|
1551
|
+
# test_phone_number: "E164PhoneNumber",
|
1552
|
+
# calling_country: "Alpha2CountryCode", # required
|
1553
|
+
# }
|
1554
|
+
#
|
1555
|
+
# @!attribute [rw] emergency_phone_number
|
1556
|
+
# The DNIS phone number to route emergency calls to, in E.164 format.
|
1557
|
+
# @return [String]
|
1558
|
+
#
|
1559
|
+
# @!attribute [rw] test_phone_number
|
1560
|
+
# The DNIS phone number to route test emergency calls to, in E.164
|
1561
|
+
# format.
|
1562
|
+
# @return [String]
|
1563
|
+
#
|
1564
|
+
# @!attribute [rw] calling_country
|
1565
|
+
# The country from which emergency calls are allowed, in ISO 3166-1
|
1566
|
+
# alpha-2 format.
|
1567
|
+
# @return [String]
|
1568
|
+
#
|
1569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DNISEmergencyCallingConfiguration AWS API Documentation
|
1570
|
+
#
|
1571
|
+
class DNISEmergencyCallingConfiguration < Struct.new(
|
1572
|
+
:emergency_phone_number,
|
1573
|
+
:test_phone_number,
|
1574
|
+
:calling_country)
|
1575
|
+
SENSITIVE = [:emergency_phone_number, :test_phone_number]
|
1576
|
+
include Aws::Structure
|
1577
|
+
end
|
1578
|
+
|
1542
1579
|
# @note When making an API call, you may pass DeleteAccountRequest
|
1543
1580
|
# data as a hash:
|
1544
1581
|
#
|
@@ -1731,6 +1768,25 @@ module Aws::Chime
|
|
1731
1768
|
include Aws::Structure
|
1732
1769
|
end
|
1733
1770
|
|
1771
|
+
# @note When making an API call, you may pass DeleteVoiceConnectorEmergencyCallingConfigurationRequest
|
1772
|
+
# data as a hash:
|
1773
|
+
#
|
1774
|
+
# {
|
1775
|
+
# voice_connector_id: "NonEmptyString", # required
|
1776
|
+
# }
|
1777
|
+
#
|
1778
|
+
# @!attribute [rw] voice_connector_id
|
1779
|
+
# The Amazon Chime Voice Connector ID.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteVoiceConnectorEmergencyCallingConfigurationRequest AWS API Documentation
|
1783
|
+
#
|
1784
|
+
class DeleteVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new(
|
1785
|
+
:voice_connector_id)
|
1786
|
+
SENSITIVE = []
|
1787
|
+
include Aws::Structure
|
1788
|
+
end
|
1789
|
+
|
1734
1790
|
# @note When making an API call, you may pass DeleteVoiceConnectorGroupRequest
|
1735
1791
|
# data as a hash:
|
1736
1792
|
#
|
@@ -1831,7 +1887,7 @@ module Aws::Chime
|
|
1831
1887
|
#
|
1832
1888
|
# {
|
1833
1889
|
# voice_connector_id: "NonEmptyString", # required
|
1834
|
-
# usernames: ["SensitiveString"],
|
1890
|
+
# usernames: ["SensitiveString"], # required
|
1835
1891
|
# }
|
1836
1892
|
#
|
1837
1893
|
# @!attribute [rw] voice_connector_id
|
@@ -1905,7 +1961,7 @@ module Aws::Chime
|
|
1905
1961
|
#
|
1906
1962
|
# {
|
1907
1963
|
# voice_connector_group_id: "NonEmptyString", # required
|
1908
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
1964
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
1909
1965
|
# }
|
1910
1966
|
#
|
1911
1967
|
# @!attribute [rw] voice_connector_group_id
|
@@ -1944,7 +2000,7 @@ module Aws::Chime
|
|
1944
2000
|
#
|
1945
2001
|
# {
|
1946
2002
|
# voice_connector_id: "NonEmptyString", # required
|
1947
|
-
# e164_phone_numbers: ["E164PhoneNumber"],
|
2003
|
+
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
1948
2004
|
# }
|
1949
2005
|
#
|
1950
2006
|
# @!attribute [rw] voice_connector_id
|
@@ -2007,6 +2063,35 @@ module Aws::Chime
|
|
2007
2063
|
#
|
2008
2064
|
class DisassociateSigninDelegateGroupsFromAccountResponse < Aws::EmptyStructure; end
|
2009
2065
|
|
2066
|
+
# The emergency calling configuration details associated with an Amazon
|
2067
|
+
# Chime Voice Connector.
|
2068
|
+
#
|
2069
|
+
# @note When making an API call, you may pass EmergencyCallingConfiguration
|
2070
|
+
# data as a hash:
|
2071
|
+
#
|
2072
|
+
# {
|
2073
|
+
# dnis: [
|
2074
|
+
# {
|
2075
|
+
# emergency_phone_number: "E164PhoneNumber", # required
|
2076
|
+
# test_phone_number: "E164PhoneNumber",
|
2077
|
+
# calling_country: "Alpha2CountryCode", # required
|
2078
|
+
# },
|
2079
|
+
# ],
|
2080
|
+
# }
|
2081
|
+
#
|
2082
|
+
# @!attribute [rw] dnis
|
2083
|
+
# The Dialed Number Identification Service (DNIS) emergency calling
|
2084
|
+
# configuration details.
|
2085
|
+
# @return [Array<Types::DNISEmergencyCallingConfiguration>]
|
2086
|
+
#
|
2087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EmergencyCallingConfiguration AWS API Documentation
|
2088
|
+
#
|
2089
|
+
class EmergencyCallingConfiguration < Struct.new(
|
2090
|
+
:dnis)
|
2091
|
+
SENSITIVE = []
|
2092
|
+
include Aws::Structure
|
2093
|
+
end
|
2094
|
+
|
2010
2095
|
# The configuration that allows a bot to receive outgoing events. Can be
|
2011
2096
|
# either an HTTPS endpoint or a Lambda function ARN.
|
2012
2097
|
#
|
@@ -2564,6 +2649,37 @@ module Aws::Chime
|
|
2564
2649
|
include Aws::Structure
|
2565
2650
|
end
|
2566
2651
|
|
2652
|
+
# @note When making an API call, you may pass GetVoiceConnectorEmergencyCallingConfigurationRequest
|
2653
|
+
# data as a hash:
|
2654
|
+
#
|
2655
|
+
# {
|
2656
|
+
# voice_connector_id: "NonEmptyString", # required
|
2657
|
+
# }
|
2658
|
+
#
|
2659
|
+
# @!attribute [rw] voice_connector_id
|
2660
|
+
# The Amazon Chime Voice Connector ID.
|
2661
|
+
# @return [String]
|
2662
|
+
#
|
2663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorEmergencyCallingConfigurationRequest AWS API Documentation
|
2664
|
+
#
|
2665
|
+
class GetVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new(
|
2666
|
+
:voice_connector_id)
|
2667
|
+
SENSITIVE = []
|
2668
|
+
include Aws::Structure
|
2669
|
+
end
|
2670
|
+
|
2671
|
+
# @!attribute [rw] emergency_calling_configuration
|
2672
|
+
# The emergency calling configuration details.
|
2673
|
+
# @return [Types::EmergencyCallingConfiguration]
|
2674
|
+
#
|
2675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorEmergencyCallingConfigurationResponse AWS API Documentation
|
2676
|
+
#
|
2677
|
+
class GetVoiceConnectorEmergencyCallingConfigurationResponse < Struct.new(
|
2678
|
+
:emergency_calling_configuration)
|
2679
|
+
SENSITIVE = []
|
2680
|
+
include Aws::Structure
|
2681
|
+
end
|
2682
|
+
|
2567
2683
|
# @note When making an API call, you may pass GetVoiceConnectorGroupRequest
|
2568
2684
|
# data as a hash:
|
2569
2685
|
#
|
@@ -4432,6 +4548,51 @@ module Aws::Chime
|
|
4432
4548
|
include Aws::Structure
|
4433
4549
|
end
|
4434
4550
|
|
4551
|
+
# @note When making an API call, you may pass PutVoiceConnectorEmergencyCallingConfigurationRequest
|
4552
|
+
# data as a hash:
|
4553
|
+
#
|
4554
|
+
# {
|
4555
|
+
# voice_connector_id: "NonEmptyString", # required
|
4556
|
+
# emergency_calling_configuration: { # required
|
4557
|
+
# dnis: [
|
4558
|
+
# {
|
4559
|
+
# emergency_phone_number: "E164PhoneNumber", # required
|
4560
|
+
# test_phone_number: "E164PhoneNumber",
|
4561
|
+
# calling_country: "Alpha2CountryCode", # required
|
4562
|
+
# },
|
4563
|
+
# ],
|
4564
|
+
# },
|
4565
|
+
# }
|
4566
|
+
#
|
4567
|
+
# @!attribute [rw] voice_connector_id
|
4568
|
+
# The Amazon Chime Voice Connector ID.
|
4569
|
+
# @return [String]
|
4570
|
+
#
|
4571
|
+
# @!attribute [rw] emergency_calling_configuration
|
4572
|
+
# The emergency calling configuration details.
|
4573
|
+
# @return [Types::EmergencyCallingConfiguration]
|
4574
|
+
#
|
4575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorEmergencyCallingConfigurationRequest AWS API Documentation
|
4576
|
+
#
|
4577
|
+
class PutVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new(
|
4578
|
+
:voice_connector_id,
|
4579
|
+
:emergency_calling_configuration)
|
4580
|
+
SENSITIVE = []
|
4581
|
+
include Aws::Structure
|
4582
|
+
end
|
4583
|
+
|
4584
|
+
# @!attribute [rw] emergency_calling_configuration
|
4585
|
+
# The emergency calling configuration details.
|
4586
|
+
# @return [Types::EmergencyCallingConfiguration]
|
4587
|
+
#
|
4588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorEmergencyCallingConfigurationResponse AWS API Documentation
|
4589
|
+
#
|
4590
|
+
class PutVoiceConnectorEmergencyCallingConfigurationResponse < Struct.new(
|
4591
|
+
:emergency_calling_configuration)
|
4592
|
+
SENSITIVE = []
|
4593
|
+
include Aws::Structure
|
4594
|
+
end
|
4595
|
+
|
4435
4596
|
# @note When making an API call, you may pass PutVoiceConnectorLoggingConfigurationRequest
|
4436
4597
|
# data as a hash:
|
4437
4598
|
#
|
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.
|
4
|
+
version: 1.32.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: 2020-
|
11
|
+
date: 2020-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|