aws-sdk-chimesdkvoice 1.18.0 → 1.19.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 +30 -7
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +2 -0
- data/lib/aws-sdk-chimesdkvoice/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-chimesdkvoice/types.rb +9 -1
- 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: 29ebb3fa944feb7e616603d5b88b748f0e2425f218d62544a52c78fd910ff0cd
|
|
4
|
+
data.tar.gz: 568d5937693f864f240b0266fbdd0fd9d199238b6dc4f23125dc6ded98ec89b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bf7765b84a70358a1b89c7f0406336f0af5e9cd2a07a5c71d542ca9b14974515ab53de48ce9c36988d00b2b7ff8db66e0ffd6ff9f0204fb71ac662b7fea894a
|
|
7
|
+
data.tar.gz: fec2ae555c1aab33291c0b571bfce64d3ca01e98d1ed7f0f80b50b96c90d1fc18555e383239630010690b0fa214e8d68604b154bc9f4702f84413da2398a2b53
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.19.0 (2024-04-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Due to changes made by the Amazon Alexa service, GetSipMediaApplicationAlexaSkillConfiguration and PutSipMediaApplicationAlexaSkillConfiguration APIs are no longer available for use. For more information, refer to the Alexa Smart Properties page.
|
|
8
|
+
|
|
4
9
|
1.18.0 (2024-04-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.19.0
|
|
@@ -534,7 +534,14 @@ module Aws::ChimeSDKVoice
|
|
|
534
534
|
req.send_request(options)
|
|
535
535
|
end
|
|
536
536
|
|
|
537
|
-
# Updates
|
|
537
|
+
# Updates phone number product types, calling names, or phone number
|
|
538
|
+
# names. You can update one attribute at a time for each
|
|
539
|
+
# `UpdatePhoneNumberRequestItem`. For example, you can update the
|
|
540
|
+
# product type, the calling name, or phone name.
|
|
541
|
+
#
|
|
542
|
+
# <note markdown="1"> You cannot have a duplicate `phoneNumberId` in a request.
|
|
543
|
+
#
|
|
544
|
+
# </note>
|
|
538
545
|
#
|
|
539
546
|
# @option params [required, Array<Types::UpdatePhoneNumberRequestItem>] :update_phone_number_request_items
|
|
540
547
|
# Lists the phone numbers in the update request.
|
|
@@ -1753,6 +1760,14 @@ module Aws::ChimeSDKVoice
|
|
|
1753
1760
|
|
|
1754
1761
|
# Gets the Alexa Skill configuration for the SIP media application.
|
|
1755
1762
|
#
|
|
1763
|
+
# Due to changes made by the Amazon Alexa service, this API is no longer
|
|
1764
|
+
# available for use. For more information, refer to the [Alexa Smart
|
|
1765
|
+
# Properties][1] page.
|
|
1766
|
+
#
|
|
1767
|
+
#
|
|
1768
|
+
#
|
|
1769
|
+
# [1]: https://developer.amazon.com/en-US/alexa/alexasmartproperties
|
|
1770
|
+
#
|
|
1756
1771
|
# @option params [required, String] :sip_media_application_id
|
|
1757
1772
|
# The SIP media application ID.
|
|
1758
1773
|
#
|
|
@@ -2885,6 +2900,14 @@ module Aws::ChimeSDKVoice
|
|
|
2885
2900
|
|
|
2886
2901
|
# Updates the Alexa Skill configuration for the SIP media application.
|
|
2887
2902
|
#
|
|
2903
|
+
# Due to changes made by the Amazon Alexa service, this API is no longer
|
|
2904
|
+
# available for use. For more information, refer to the [Alexa Smart
|
|
2905
|
+
# Properties][1] page.
|
|
2906
|
+
#
|
|
2907
|
+
#
|
|
2908
|
+
#
|
|
2909
|
+
# [1]: https://developer.amazon.com/en-US/alexa/alexasmartproperties
|
|
2910
|
+
#
|
|
2888
2911
|
# @option params [required, String] :sip_media_application_id
|
|
2889
2912
|
# The SIP media application ID.
|
|
2890
2913
|
#
|
|
@@ -3635,10 +3658,10 @@ module Aws::ChimeSDKVoice
|
|
|
3635
3658
|
req.send_request(options)
|
|
3636
3659
|
end
|
|
3637
3660
|
|
|
3638
|
-
# Updates phone number details, such as product type
|
|
3639
|
-
# for the specified phone number ID. You can update
|
|
3640
|
-
# detail at a time. For example, you can update either
|
|
3641
|
-
#
|
|
3661
|
+
# Updates phone number details, such as product type, calling name, or
|
|
3662
|
+
# phone number name for the specified phone number ID. You can update
|
|
3663
|
+
# one phone number detail at a time. For example, you can update either
|
|
3664
|
+
# the product type, calling name, or phone number name in one action.
|
|
3642
3665
|
#
|
|
3643
3666
|
# For numbers outside the U.S., you must use the Amazon Chime SDK SIP
|
|
3644
3667
|
# Media Application Dial-In product type.
|
|
@@ -3657,7 +3680,7 @@ module Aws::ChimeSDKVoice
|
|
|
3657
3680
|
# The outbound calling name associated with the phone number.
|
|
3658
3681
|
#
|
|
3659
3682
|
# @option params [String] :name
|
|
3660
|
-
# Specifies the name assigned to one or more phone numbers.
|
|
3683
|
+
# Specifies the updated name assigned to one or more phone numbers.
|
|
3661
3684
|
#
|
|
3662
3685
|
# @return [Types::UpdatePhoneNumberResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3663
3686
|
#
|
|
@@ -4210,7 +4233,7 @@ module Aws::ChimeSDKVoice
|
|
|
4210
4233
|
params: params,
|
|
4211
4234
|
config: config)
|
|
4212
4235
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
|
4213
|
-
context[:gem_version] = '1.
|
|
4236
|
+
context[:gem_version] = '1.19.0'
|
|
4214
4237
|
Seahorse::Client::Request.new(handlers, context)
|
|
4215
4238
|
end
|
|
4216
4239
|
|
|
@@ -1922,6 +1922,7 @@ module Aws::ChimeSDKVoice
|
|
|
1922
1922
|
o.name = "GetSipMediaApplicationAlexaSkillConfiguration"
|
|
1923
1923
|
o.http_method = "GET"
|
|
1924
1924
|
o.http_request_uri = "/sip-media-applications/{sipMediaApplicationId}/alexa-skill-configuration"
|
|
1925
|
+
o.deprecated = true
|
|
1925
1926
|
o.input = Shapes::ShapeRef.new(shape: GetSipMediaApplicationAlexaSkillConfigurationRequest)
|
|
1926
1927
|
o.output = Shapes::ShapeRef.new(shape: GetSipMediaApplicationAlexaSkillConfigurationResponse)
|
|
1927
1928
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
@@ -2410,6 +2411,7 @@ module Aws::ChimeSDKVoice
|
|
|
2410
2411
|
o.name = "PutSipMediaApplicationAlexaSkillConfiguration"
|
|
2411
2412
|
o.http_method = "PUT"
|
|
2412
2413
|
o.http_request_uri = "/sip-media-applications/{sipMediaApplicationId}/alexa-skill-configuration"
|
|
2414
|
+
o.deprecated = true
|
|
2413
2415
|
o.input = Shapes::ShapeRef.new(shape: PutSipMediaApplicationAlexaSkillConfigurationRequest)
|
|
2414
2416
|
o.output = Shapes::ShapeRef.new(shape: PutSipMediaApplicationAlexaSkillConfigurationResponse)
|
|
2415
2417
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
@@ -32,7 +32,7 @@ module Aws::ChimeSDKVoice
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://voice-chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
@@ -2918,6 +2918,14 @@ module Aws::ChimeSDKVoice
|
|
|
2918
2918
|
|
|
2919
2919
|
# The Alexa Skill configuration of a SIP media application.
|
|
2920
2920
|
#
|
|
2921
|
+
# Due to changes made by the Amazon Alexa service, this data type is no
|
|
2922
|
+
# longer available for use. For more information, refer to the [Alexa
|
|
2923
|
+
# Smart Properties][1] page.
|
|
2924
|
+
#
|
|
2925
|
+
#
|
|
2926
|
+
#
|
|
2927
|
+
# [1]: https://developer.amazon.com/en-US/alexa/alexasmartproperties
|
|
2928
|
+
#
|
|
2921
2929
|
# @!attribute [rw] alexa_skill_status
|
|
2922
2930
|
# The status of the Alexa Skill configuration.
|
|
2923
2931
|
# @return [String]
|
|
@@ -3470,7 +3478,7 @@ module Aws::ChimeSDKVoice
|
|
|
3470
3478
|
# @return [String]
|
|
3471
3479
|
#
|
|
3472
3480
|
# @!attribute [rw] name
|
|
3473
|
-
# Specifies the name assigned to one or more phone numbers.
|
|
3481
|
+
# Specifies the updated name assigned to one or more phone numbers.
|
|
3474
3482
|
# @return [String]
|
|
3475
3483
|
#
|
|
3476
3484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberRequest AWS API Documentation
|
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.19.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: 2024-04-
|
|
11
|
+
date: 2024-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|