aws-sdk-chime 1.65.0 → 1.68.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +89 -6
- data/lib/aws-sdk-chime/client_api.rb +62 -0
- data/lib/aws-sdk-chime/types.rb +202 -5
- data/lib/aws-sdk-chime.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c3bed7f84d504cc53ae7e74a8ec261538129167d321200586cfdbc8f65e106f
|
4
|
+
data.tar.gz: bb776a14427dcf1c93f6bee716b79eddfcc2f813aec08bfefbc5283f531adb7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45520c7117de5f8cdedcc6f2a1b3af21b070f0195ad3e126c795435bfe63531aba97cbfb2243b286531b81798888bc16766031994fa28f909f4f783974faa8ab
|
7
|
+
data.tar.gz: f571fc3c7c715304c4c9db22e9a2b1789b6486084de9d07418d8c123b42aeb8eb07e7a817be08231911551a4fda2978e8d61bd19185690f226ecdd5e02afe099
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.68.0 (2022-07-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Chime VoiceConnector will now support ValidateE911Address which will allow customers to prevalidate their addresses included in their SIP invites for emergency calling
|
8
|
+
|
9
|
+
1.67.0 (2022-03-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Chime VoiceConnector Logging APIs will now support MediaMetricLogs. Also CreateMeetingDialOut now returns AccessDeniedException.
|
13
|
+
|
14
|
+
1.66.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.65.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::Chime
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -952,7 +954,7 @@ module Aws::Chime
|
|
952
954
|
# not need to pass this option.**
|
953
955
|
#
|
954
956
|
# @option params [Array<Types::Tag>] :tags
|
955
|
-
# Tags assigned to the `
|
957
|
+
# Tags assigned to the `AppInstance`.
|
956
958
|
#
|
957
959
|
# @return [Types::CreateAppInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
958
960
|
#
|
@@ -4580,6 +4582,7 @@ module Aws::Chime
|
|
4580
4582
|
# @example Response structure
|
4581
4583
|
#
|
4582
4584
|
# resp.logging_configuration.enable_sip_logs #=> Boolean
|
4585
|
+
# resp.logging_configuration.enable_media_metric_logs #=> Boolean
|
4583
4586
|
#
|
4584
4587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorLoggingConfiguration AWS API Documentation
|
4585
4588
|
#
|
@@ -6647,12 +6650,14 @@ module Aws::Chime
|
|
6647
6650
|
# voice_connector_id: "NonEmptyString", # required
|
6648
6651
|
# logging_configuration: { # required
|
6649
6652
|
# enable_sip_logs: false,
|
6653
|
+
# enable_media_metric_logs: false,
|
6650
6654
|
# },
|
6651
6655
|
# })
|
6652
6656
|
#
|
6653
6657
|
# @example Response structure
|
6654
6658
|
#
|
6655
6659
|
# resp.logging_configuration.enable_sip_logs #=> Boolean
|
6660
|
+
# resp.logging_configuration.enable_media_metric_logs #=> Boolean
|
6656
6661
|
#
|
6657
6662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorLoggingConfiguration AWS API Documentation
|
6658
6663
|
#
|
@@ -6771,7 +6776,7 @@ module Aws::Chime
|
|
6771
6776
|
|
6772
6777
|
# Adds a streaming configuration for the specified Amazon Chime Voice
|
6773
6778
|
# Connector. The streaming configuration specifies whether media
|
6774
|
-
# streaming is enabled for sending to
|
6779
|
+
# streaming is enabled for sending to Kinesis. It also sets the
|
6775
6780
|
# retention period, in hours, for the Amazon Kinesis data.
|
6776
6781
|
#
|
6777
6782
|
# @option params [required, String] :voice_connector_id
|
@@ -8198,9 +8203,9 @@ module Aws::Chime
|
|
8198
8203
|
req.send_request(options)
|
8199
8204
|
end
|
8200
8205
|
|
8201
|
-
#
|
8202
|
-
#
|
8203
|
-
#
|
8206
|
+
# Invokes the AWS Lambda function associated with the SIP media
|
8207
|
+
# application and transaction ID in an update request. The Lambda
|
8208
|
+
# function can then return a new set of actions.
|
8204
8209
|
#
|
8205
8210
|
# @option params [required, String] :sip_media_application_id
|
8206
8211
|
# The ID of the SIP media application handling the call.
|
@@ -8487,6 +8492,84 @@ module Aws::Chime
|
|
8487
8492
|
req.send_request(options)
|
8488
8493
|
end
|
8489
8494
|
|
8495
|
+
# Validates an address to be used for 911 calls made with Amazon Chime
|
8496
|
+
# Voice Connectors. You can use validated addresses in a Presence
|
8497
|
+
# Information Data Format Location Object file that you include in SIP
|
8498
|
+
# requests. That helps ensure that addresses are routed to the
|
8499
|
+
# appropriate Public Safety Answering Point.
|
8500
|
+
#
|
8501
|
+
# @option params [required, String] :aws_account_id
|
8502
|
+
# The AWS account ID.
|
8503
|
+
#
|
8504
|
+
# @option params [required, String] :street_number
|
8505
|
+
# The address street number, such as `200` or `2121`.
|
8506
|
+
#
|
8507
|
+
# @option params [required, String] :street_info
|
8508
|
+
# The address street information, such as `8th Avenue`.
|
8509
|
+
#
|
8510
|
+
# @option params [required, String] :city
|
8511
|
+
# The address city, such as `Portland`.
|
8512
|
+
#
|
8513
|
+
# @option params [required, String] :state
|
8514
|
+
# The address state, such as `ME`.
|
8515
|
+
#
|
8516
|
+
# @option params [required, String] :country
|
8517
|
+
# The address country, such as `US`.
|
8518
|
+
#
|
8519
|
+
# @option params [required, String] :postal_code
|
8520
|
+
# The address postal code, such as `04352`.
|
8521
|
+
#
|
8522
|
+
# @return [Types::ValidateE911AddressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8523
|
+
#
|
8524
|
+
# * {Types::ValidateE911AddressResponse#validation_result #validation_result} => Integer
|
8525
|
+
# * {Types::ValidateE911AddressResponse#address_external_id #address_external_id} => String
|
8526
|
+
# * {Types::ValidateE911AddressResponse#address #address} => Types::Address
|
8527
|
+
# * {Types::ValidateE911AddressResponse#candidate_address_list #candidate_address_list} => Array<Types::CandidateAddress>
|
8528
|
+
#
|
8529
|
+
# @example Request syntax with placeholder values
|
8530
|
+
#
|
8531
|
+
# resp = client.validate_e911_address({
|
8532
|
+
# aws_account_id: "NonEmptyString", # required
|
8533
|
+
# street_number: "SensitiveNonEmptyString", # required
|
8534
|
+
# street_info: "SensitiveNonEmptyString", # required
|
8535
|
+
# city: "SensitiveNonEmptyString", # required
|
8536
|
+
# state: "SensitiveNonEmptyString", # required
|
8537
|
+
# country: "SensitiveNonEmptyString", # required
|
8538
|
+
# postal_code: "SensitiveNonEmptyString", # required
|
8539
|
+
# })
|
8540
|
+
#
|
8541
|
+
# @example Response structure
|
8542
|
+
#
|
8543
|
+
# resp.validation_result #=> Integer
|
8544
|
+
# resp.address_external_id #=> String
|
8545
|
+
# resp.address.street_name #=> String
|
8546
|
+
# resp.address.street_suffix #=> String
|
8547
|
+
# resp.address.post_directional #=> String
|
8548
|
+
# resp.address.pre_directional #=> String
|
8549
|
+
# resp.address.street_number #=> String
|
8550
|
+
# resp.address.city #=> String
|
8551
|
+
# resp.address.state #=> String
|
8552
|
+
# resp.address.postal_code #=> String
|
8553
|
+
# resp.address.postal_code_plus_4 #=> String
|
8554
|
+
# resp.address.country #=> String
|
8555
|
+
# resp.candidate_address_list #=> Array
|
8556
|
+
# resp.candidate_address_list[0].street_info #=> String
|
8557
|
+
# resp.candidate_address_list[0].street_number #=> String
|
8558
|
+
# resp.candidate_address_list[0].city #=> String
|
8559
|
+
# resp.candidate_address_list[0].state #=> String
|
8560
|
+
# resp.candidate_address_list[0].postal_code #=> String
|
8561
|
+
# resp.candidate_address_list[0].postal_code_plus_4 #=> String
|
8562
|
+
# resp.candidate_address_list[0].country #=> String
|
8563
|
+
#
|
8564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ValidateE911Address AWS API Documentation
|
8565
|
+
#
|
8566
|
+
# @overload validate_e911_address(params = {})
|
8567
|
+
# @param [Hash] params ({})
|
8568
|
+
def validate_e911_address(params = {}, options = {})
|
8569
|
+
req = build_request(:validate_e911_address, params)
|
8570
|
+
req.send_request(options)
|
8571
|
+
end
|
8572
|
+
|
8490
8573
|
# @!endgroup
|
8491
8574
|
|
8492
8575
|
# @param params ({})
|
@@ -8500,7 +8583,7 @@ module Aws::Chime
|
|
8500
8583
|
params: params,
|
8501
8584
|
config: config)
|
8502
8585
|
context[:gem_name] = 'aws-sdk-chime'
|
8503
|
-
context[:gem_version] = '1.
|
8586
|
+
context[:gem_version] = '1.68.0'
|
8504
8587
|
Seahorse::Client::Request.new(handlers, context)
|
8505
8588
|
end
|
8506
8589
|
|
@@ -20,6 +20,7 @@ module Aws::Chime
|
|
20
20
|
AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
|
21
21
|
AccountStatus = Shapes::StringShape.new(name: 'AccountStatus')
|
22
22
|
AccountType = Shapes::StringShape.new(name: 'AccountType')
|
23
|
+
Address = Shapes::StructureShape.new(name: 'Address')
|
23
24
|
AlexaForBusinessMetadata = Shapes::StructureShape.new(name: 'AlexaForBusinessMetadata')
|
24
25
|
Alpha2CountryCode = Shapes::StringShape.new(name: 'Alpha2CountryCode')
|
25
26
|
AppInstance = Shapes::StructureShape.new(name: 'AppInstance')
|
@@ -85,6 +86,8 @@ module Aws::Chime
|
|
85
86
|
CallingNameStatus = Shapes::StringShape.new(name: 'CallingNameStatus')
|
86
87
|
CallingRegion = Shapes::StringShape.new(name: 'CallingRegion')
|
87
88
|
CallingRegionList = Shapes::ListShape.new(name: 'CallingRegionList')
|
89
|
+
CandidateAddress = Shapes::StructureShape.new(name: 'CandidateAddress')
|
90
|
+
CandidateAddressList = Shapes::ListShape.new(name: 'CandidateAddressList')
|
88
91
|
Capability = Shapes::StringShape.new(name: 'Capability')
|
89
92
|
CapabilityList = Shapes::ListShape.new(name: 'CapabilityList')
|
90
93
|
Channel = Shapes::StructureShape.new(name: 'Channel')
|
@@ -514,6 +517,7 @@ module Aws::Chime
|
|
514
517
|
SelectedVideoStreams = Shapes::StructureShape.new(name: 'SelectedVideoStreams')
|
515
518
|
SendChannelMessageRequest = Shapes::StructureShape.new(name: 'SendChannelMessageRequest')
|
516
519
|
SendChannelMessageResponse = Shapes::StructureShape.new(name: 'SendChannelMessageResponse')
|
520
|
+
SensitiveNonEmptyString = Shapes::StringShape.new(name: 'SensitiveNonEmptyString')
|
517
521
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
518
522
|
SensitiveStringList = Shapes::ListShape.new(name: 'SensitiveStringList')
|
519
523
|
ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
|
@@ -635,6 +639,9 @@ module Aws::Chime
|
|
635
639
|
UserName = Shapes::StringShape.new(name: 'UserName')
|
636
640
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
637
641
|
UserType = Shapes::StringShape.new(name: 'UserType')
|
642
|
+
ValidateE911AddressRequest = Shapes::StructureShape.new(name: 'ValidateE911AddressRequest')
|
643
|
+
ValidateE911AddressResponse = Shapes::StructureShape.new(name: 'ValidateE911AddressResponse')
|
644
|
+
ValidationResult = Shapes::IntegerShape.new(name: 'ValidationResult')
|
638
645
|
VideoArtifactsConfiguration = Shapes::StructureShape.new(name: 'VideoArtifactsConfiguration')
|
639
646
|
VideoMuxType = Shapes::StringShape.new(name: 'VideoMuxType')
|
640
647
|
VoiceConnector = Shapes::StructureShape.new(name: 'VoiceConnector')
|
@@ -670,6 +677,18 @@ module Aws::Chime
|
|
670
677
|
AccountSettings.add_member(:enable_dial_out, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableDialOut"))
|
671
678
|
AccountSettings.struct_class = Types::AccountSettings
|
672
679
|
|
680
|
+
Address.add_member(:street_name, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetName"))
|
681
|
+
Address.add_member(:street_suffix, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetSuffix"))
|
682
|
+
Address.add_member(:post_directional, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postDirectional"))
|
683
|
+
Address.add_member(:pre_directional, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "preDirectional"))
|
684
|
+
Address.add_member(:street_number, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetNumber"))
|
685
|
+
Address.add_member(:city, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "city"))
|
686
|
+
Address.add_member(:state, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "state"))
|
687
|
+
Address.add_member(:postal_code, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCode"))
|
688
|
+
Address.add_member(:postal_code_plus_4, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCodePlus4"))
|
689
|
+
Address.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "country"))
|
690
|
+
Address.struct_class = Types::Address
|
691
|
+
|
673
692
|
AlexaForBusinessMetadata.add_member(:is_alexa_for_business_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsAlexaForBusinessEnabled"))
|
674
693
|
AlexaForBusinessMetadata.add_member(:alexa_for_business_room_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "AlexaForBusinessRoomArn"))
|
675
694
|
AlexaForBusinessMetadata.struct_class = Types::AlexaForBusinessMetadata
|
@@ -871,6 +890,17 @@ module Aws::Chime
|
|
871
890
|
|
872
891
|
CallingRegionList.member = Shapes::ShapeRef.new(shape: CallingRegion)
|
873
892
|
|
893
|
+
CandidateAddress.add_member(:street_info, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetInfo"))
|
894
|
+
CandidateAddress.add_member(:street_number, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetNumber"))
|
895
|
+
CandidateAddress.add_member(:city, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "city"))
|
896
|
+
CandidateAddress.add_member(:state, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "state"))
|
897
|
+
CandidateAddress.add_member(:postal_code, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCode"))
|
898
|
+
CandidateAddress.add_member(:postal_code_plus_4, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCodePlus4"))
|
899
|
+
CandidateAddress.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "country"))
|
900
|
+
CandidateAddress.struct_class = Types::CandidateAddress
|
901
|
+
|
902
|
+
CandidateAddressList.member = Shapes::ShapeRef.new(shape: CandidateAddress)
|
903
|
+
|
874
904
|
CapabilityList.member = Shapes::ShapeRef.new(shape: Capability)
|
875
905
|
|
876
906
|
Channel.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyResourceName, location_name: "Name"))
|
@@ -1969,6 +1999,7 @@ module Aws::Chime
|
|
1969
1999
|
ListVoiceConnectorsResponse.struct_class = Types::ListVoiceConnectorsResponse
|
1970
2000
|
|
1971
2001
|
LoggingConfiguration.add_member(:enable_sip_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableSIPLogs"))
|
2002
|
+
LoggingConfiguration.add_member(:enable_media_metric_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableMediaMetricLogs"))
|
1972
2003
|
LoggingConfiguration.struct_class = Types::LoggingConfiguration
|
1973
2004
|
|
1974
2005
|
LogoutUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
@@ -2710,6 +2741,21 @@ module Aws::Chime
|
|
2710
2741
|
UserSettings.add_member(:telephony, Shapes::ShapeRef.new(shape: TelephonySettings, required: true, location_name: "Telephony"))
|
2711
2742
|
UserSettings.struct_class = Types::UserSettings
|
2712
2743
|
|
2744
|
+
ValidateE911AddressRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "AwsAccountId"))
|
2745
|
+
ValidateE911AddressRequest.add_member(:street_number, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "StreetNumber"))
|
2746
|
+
ValidateE911AddressRequest.add_member(:street_info, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "StreetInfo"))
|
2747
|
+
ValidateE911AddressRequest.add_member(:city, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "City"))
|
2748
|
+
ValidateE911AddressRequest.add_member(:state, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "State"))
|
2749
|
+
ValidateE911AddressRequest.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "Country"))
|
2750
|
+
ValidateE911AddressRequest.add_member(:postal_code, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "PostalCode"))
|
2751
|
+
ValidateE911AddressRequest.struct_class = Types::ValidateE911AddressRequest
|
2752
|
+
|
2753
|
+
ValidateE911AddressResponse.add_member(:validation_result, Shapes::ShapeRef.new(shape: ValidationResult, location_name: "ValidationResult"))
|
2754
|
+
ValidateE911AddressResponse.add_member(:address_external_id, Shapes::ShapeRef.new(shape: String, location_name: "AddressExternalId"))
|
2755
|
+
ValidateE911AddressResponse.add_member(:address, Shapes::ShapeRef.new(shape: Address, location_name: "Address"))
|
2756
|
+
ValidateE911AddressResponse.add_member(:candidate_address_list, Shapes::ShapeRef.new(shape: CandidateAddressList, location_name: "CandidateAddressList"))
|
2757
|
+
ValidateE911AddressResponse.struct_class = Types::ValidateE911AddressResponse
|
2758
|
+
|
2713
2759
|
VideoArtifactsConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ArtifactsState, required: true, location_name: "State"))
|
2714
2760
|
VideoArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: VideoMuxType, location_name: "MuxType"))
|
2715
2761
|
VideoArtifactsConfiguration.struct_class = Types::VideoArtifactsConfiguration
|
@@ -3168,6 +3214,7 @@ module Aws::Chime
|
|
3168
3214
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3169
3215
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3170
3216
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3217
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3171
3218
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3172
3219
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3173
3220
|
end)
|
@@ -5910,6 +5957,21 @@ module Aws::Chime
|
|
5910
5957
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
5911
5958
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5912
5959
|
end)
|
5960
|
+
|
5961
|
+
api.add_operation(:validate_e911_address, Seahorse::Model::Operation.new.tap do |o|
|
5962
|
+
o.name = "ValidateE911Address"
|
5963
|
+
o.http_method = "POST"
|
5964
|
+
o.http_request_uri = "/emergency-calling/address"
|
5965
|
+
o.input = Shapes::ShapeRef.new(shape: ValidateE911AddressRequest)
|
5966
|
+
o.output = Shapes::ShapeRef.new(shape: ValidateE911AddressResponse)
|
5967
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
5968
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5969
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
5970
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
5971
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
5972
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
5973
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5974
|
+
end)
|
5913
5975
|
end
|
5914
5976
|
|
5915
5977
|
end
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -130,6 +130,66 @@ module Aws::Chime
|
|
130
130
|
include Aws::Structure
|
131
131
|
end
|
132
132
|
|
133
|
+
# A validated address.
|
134
|
+
#
|
135
|
+
# @!attribute [rw] street_name
|
136
|
+
# The address street, such as `8th Avenue`.
|
137
|
+
# @return [String]
|
138
|
+
#
|
139
|
+
# @!attribute [rw] street_suffix
|
140
|
+
# The address suffix, such as the `N` in `8th Avenue N`.
|
141
|
+
# @return [String]
|
142
|
+
#
|
143
|
+
# @!attribute [rw] post_directional
|
144
|
+
# An address suffix location, such as the `S. Unit A` in `Central Park
|
145
|
+
# S. Unit A`.
|
146
|
+
# @return [String]
|
147
|
+
#
|
148
|
+
# @!attribute [rw] pre_directional
|
149
|
+
# An address prefix location, such as the `N` in `N. Third St.`.
|
150
|
+
# @return [String]
|
151
|
+
#
|
152
|
+
# @!attribute [rw] street_number
|
153
|
+
# The numeric portion of an address.
|
154
|
+
# @return [String]
|
155
|
+
#
|
156
|
+
# @!attribute [rw] city
|
157
|
+
# The city of an address.
|
158
|
+
# @return [String]
|
159
|
+
#
|
160
|
+
# @!attribute [rw] state
|
161
|
+
# The state of an address.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] postal_code
|
165
|
+
# The postal code of an address.
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
# @!attribute [rw] postal_code_plus_4
|
169
|
+
# The Zip + 4 or postal code + 4 of an address.
|
170
|
+
# @return [String]
|
171
|
+
#
|
172
|
+
# @!attribute [rw] country
|
173
|
+
# The country of an address.
|
174
|
+
# @return [String]
|
175
|
+
#
|
176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Address AWS API Documentation
|
177
|
+
#
|
178
|
+
class Address < Struct.new(
|
179
|
+
:street_name,
|
180
|
+
:street_suffix,
|
181
|
+
:post_directional,
|
182
|
+
:pre_directional,
|
183
|
+
:street_number,
|
184
|
+
:city,
|
185
|
+
:state,
|
186
|
+
:postal_code,
|
187
|
+
:postal_code_plus_4,
|
188
|
+
:country)
|
189
|
+
SENSITIVE = [:street_name, :street_suffix, :post_directional, :pre_directional, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
|
190
|
+
include Aws::Structure
|
191
|
+
end
|
192
|
+
|
133
193
|
# The Alexa for Business metadata associated with an Amazon Chime user,
|
134
194
|
# used to integrate Alexa for Business with a device.
|
135
195
|
#
|
@@ -1156,6 +1216,50 @@ module Aws::Chime
|
|
1156
1216
|
include Aws::Structure
|
1157
1217
|
end
|
1158
1218
|
|
1219
|
+
# A suggested address.
|
1220
|
+
#
|
1221
|
+
# @!attribute [rw] street_info
|
1222
|
+
# The street information of a candidate address
|
1223
|
+
# @return [String]
|
1224
|
+
#
|
1225
|
+
# @!attribute [rw] street_number
|
1226
|
+
# The numeric portion of a candidate address.
|
1227
|
+
# @return [String]
|
1228
|
+
#
|
1229
|
+
# @!attribute [rw] city
|
1230
|
+
# The city of a candidate address.
|
1231
|
+
# @return [String]
|
1232
|
+
#
|
1233
|
+
# @!attribute [rw] state
|
1234
|
+
# The state of a candidate address.
|
1235
|
+
# @return [String]
|
1236
|
+
#
|
1237
|
+
# @!attribute [rw] postal_code
|
1238
|
+
# The postal code of a candidate address.
|
1239
|
+
# @return [String]
|
1240
|
+
#
|
1241
|
+
# @!attribute [rw] postal_code_plus_4
|
1242
|
+
# The Zip + 4 or postal code + 4 of a candidate address.
|
1243
|
+
# @return [String]
|
1244
|
+
#
|
1245
|
+
# @!attribute [rw] country
|
1246
|
+
# The country of a candidate address.
|
1247
|
+
# @return [String]
|
1248
|
+
#
|
1249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CandidateAddress AWS API Documentation
|
1250
|
+
#
|
1251
|
+
class CandidateAddress < Struct.new(
|
1252
|
+
:street_info,
|
1253
|
+
:street_number,
|
1254
|
+
:city,
|
1255
|
+
:state,
|
1256
|
+
:postal_code,
|
1257
|
+
:postal_code_plus_4,
|
1258
|
+
:country)
|
1259
|
+
SENSITIVE = [:street_info, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
|
1260
|
+
include Aws::Structure
|
1261
|
+
end
|
1262
|
+
|
1159
1263
|
# The details of a channel.
|
1160
1264
|
#
|
1161
1265
|
# @!attribute [rw] name
|
@@ -1777,7 +1881,7 @@ module Aws::Chime
|
|
1777
1881
|
# @return [String]
|
1778
1882
|
#
|
1779
1883
|
# @!attribute [rw] tags
|
1780
|
-
# Tags assigned to the `
|
1884
|
+
# Tags assigned to the `AppInstance`.
|
1781
1885
|
# @return [Array<Types::Tag>]
|
1782
1886
|
#
|
1783
1887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAppInstanceRequest AWS API Documentation
|
@@ -4449,8 +4553,8 @@ module Aws::Chime
|
|
4449
4553
|
# @return [String]
|
4450
4554
|
#
|
4451
4555
|
# @!attribute [rw] content_identification_type
|
4452
|
-
# Set this field to `PII` to identify
|
4453
|
-
# the transcription output.
|
4556
|
+
# Set this field to `PII` to identify personally identifiable
|
4557
|
+
# information in the transcription output.
|
4454
4558
|
# @return [String]
|
4455
4559
|
#
|
4456
4560
|
# @!attribute [rw] content_redaction_type
|
@@ -7192,6 +7296,7 @@ module Aws::Chime
|
|
7192
7296
|
#
|
7193
7297
|
# {
|
7194
7298
|
# enable_sip_logs: false,
|
7299
|
+
# enable_media_metric_logs: false,
|
7195
7300
|
# }
|
7196
7301
|
#
|
7197
7302
|
# @!attribute [rw] enable_sip_logs
|
@@ -7199,10 +7304,16 @@ module Aws::Chime
|
|
7199
7304
|
# Logs.
|
7200
7305
|
# @return [Boolean]
|
7201
7306
|
#
|
7307
|
+
# @!attribute [rw] enable_media_metric_logs
|
7308
|
+
# Boolean that enables the logging of Voice Connector metrics to
|
7309
|
+
# Cloudwatch.
|
7310
|
+
# @return [Boolean]
|
7311
|
+
#
|
7202
7312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/LoggingConfiguration AWS API Documentation
|
7203
7313
|
#
|
7204
7314
|
class LoggingConfiguration < Struct.new(
|
7205
|
-
:enable_sip_logs
|
7315
|
+
:enable_sip_logs,
|
7316
|
+
:enable_media_metric_logs)
|
7206
7317
|
SENSITIVE = []
|
7207
7318
|
include Aws::Structure
|
7208
7319
|
end
|
@@ -7328,7 +7439,7 @@ module Aws::Chime
|
|
7328
7439
|
# @return [String]
|
7329
7440
|
#
|
7330
7441
|
# @!attribute [rw] event_ingestion_url
|
7331
|
-
# The event ingestion URL.
|
7442
|
+
# The event ingestion URL to which you send client meeting events.
|
7332
7443
|
# @return [String]
|
7333
7444
|
#
|
7334
7445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
|
@@ -8285,6 +8396,7 @@ module Aws::Chime
|
|
8285
8396
|
# voice_connector_id: "NonEmptyString", # required
|
8286
8397
|
# logging_configuration: { # required
|
8287
8398
|
# enable_sip_logs: false,
|
8399
|
+
# enable_media_metric_logs: false,
|
8288
8400
|
# },
|
8289
8401
|
# }
|
8290
8402
|
#
|
@@ -11049,6 +11161,91 @@ module Aws::Chime
|
|
11049
11161
|
include Aws::Structure
|
11050
11162
|
end
|
11051
11163
|
|
11164
|
+
# @note When making an API call, you may pass ValidateE911AddressRequest
|
11165
|
+
# data as a hash:
|
11166
|
+
#
|
11167
|
+
# {
|
11168
|
+
# aws_account_id: "NonEmptyString", # required
|
11169
|
+
# street_number: "SensitiveNonEmptyString", # required
|
11170
|
+
# street_info: "SensitiveNonEmptyString", # required
|
11171
|
+
# city: "SensitiveNonEmptyString", # required
|
11172
|
+
# state: "SensitiveNonEmptyString", # required
|
11173
|
+
# country: "SensitiveNonEmptyString", # required
|
11174
|
+
# postal_code: "SensitiveNonEmptyString", # required
|
11175
|
+
# }
|
11176
|
+
#
|
11177
|
+
# @!attribute [rw] aws_account_id
|
11178
|
+
# The AWS account ID.
|
11179
|
+
# @return [String]
|
11180
|
+
#
|
11181
|
+
# @!attribute [rw] street_number
|
11182
|
+
# The address street number, such as `200` or `2121`.
|
11183
|
+
# @return [String]
|
11184
|
+
#
|
11185
|
+
# @!attribute [rw] street_info
|
11186
|
+
# The address street information, such as `8th Avenue`.
|
11187
|
+
# @return [String]
|
11188
|
+
#
|
11189
|
+
# @!attribute [rw] city
|
11190
|
+
# The address city, such as `Portland`.
|
11191
|
+
# @return [String]
|
11192
|
+
#
|
11193
|
+
# @!attribute [rw] state
|
11194
|
+
# The address state, such as `ME`.
|
11195
|
+
# @return [String]
|
11196
|
+
#
|
11197
|
+
# @!attribute [rw] country
|
11198
|
+
# The address country, such as `US`.
|
11199
|
+
# @return [String]
|
11200
|
+
#
|
11201
|
+
# @!attribute [rw] postal_code
|
11202
|
+
# The address postal code, such as `04352`.
|
11203
|
+
# @return [String]
|
11204
|
+
#
|
11205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ValidateE911AddressRequest AWS API Documentation
|
11206
|
+
#
|
11207
|
+
class ValidateE911AddressRequest < Struct.new(
|
11208
|
+
:aws_account_id,
|
11209
|
+
:street_number,
|
11210
|
+
:street_info,
|
11211
|
+
:city,
|
11212
|
+
:state,
|
11213
|
+
:country,
|
11214
|
+
:postal_code)
|
11215
|
+
SENSITIVE = [:street_number, :street_info, :city, :state, :country, :postal_code]
|
11216
|
+
include Aws::Structure
|
11217
|
+
end
|
11218
|
+
|
11219
|
+
# @!attribute [rw] validation_result
|
11220
|
+
# Number indicating the result of address validation. `0` means the
|
11221
|
+
# address was perfect as is and successfully validated. `1` means the
|
11222
|
+
# address was corrected. `2` means the address sent was not close
|
11223
|
+
# enough and was not validated.
|
11224
|
+
# @return [Integer]
|
11225
|
+
#
|
11226
|
+
# @!attribute [rw] address_external_id
|
11227
|
+
# The ID that represents the address.
|
11228
|
+
# @return [String]
|
11229
|
+
#
|
11230
|
+
# @!attribute [rw] address
|
11231
|
+
# The validated address.
|
11232
|
+
# @return [Types::Address]
|
11233
|
+
#
|
11234
|
+
# @!attribute [rw] candidate_address_list
|
11235
|
+
# The list of address suggestions.
|
11236
|
+
# @return [Array<Types::CandidateAddress>]
|
11237
|
+
#
|
11238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ValidateE911AddressResponse AWS API Documentation
|
11239
|
+
#
|
11240
|
+
class ValidateE911AddressResponse < Struct.new(
|
11241
|
+
:validation_result,
|
11242
|
+
:address_external_id,
|
11243
|
+
:address,
|
11244
|
+
:candidate_address_list)
|
11245
|
+
SENSITIVE = []
|
11246
|
+
include Aws::Structure
|
11247
|
+
end
|
11248
|
+
|
11052
11249
|
# The video artifact configuration object.
|
11053
11250
|
#
|
11054
11251
|
# @note When making an API call, you may pass VideoArtifactsConfiguration
|
data/lib/aws-sdk-chime.rb
CHANGED
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.68.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: 2022-
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|