aws-sdk-chimesdkvoice 1.11.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +14 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +5 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +28 -8
- 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: 9835fa21e21002b7a76b78739763e92d769828d3257f13267c23e37edfb3f837
|
4
|
+
data.tar.gz: 164b4a1bece26de5ca0bd64f1a9797047d6ba646302dd20bc6f8c71a4c7904bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ccc83cb3a51033a84a2c8826f24d3eba3b948e68c778f5bb74380b532c7378b989cad60f759cca3b0920f8e753ed18122d4cf4cf863fb6bf7c8e3ac91550c4b
|
7
|
+
data.tar.gz: 4aca80b126df9ac16c5230eb13cc06d066b0f68d4f0fd0a6fc69f93d5ff1fec3f2fb4ee63692756b455852a3144230945ea7286092f303126cd45d341ef523fb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2023-09-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.12.0 (2023-08-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name
|
13
|
+
|
4
14
|
1.11.0 (2023-07-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -527,6 +527,7 @@ module Aws::ChimeSDKVoice
|
|
527
527
|
# phone_number_id: "SensitiveNonEmptyString", # required
|
528
528
|
# product_type: "VoiceConnector", # accepts VoiceConnector, SipMediaApplicationDialIn
|
529
529
|
# calling_name: "CallingName",
|
530
|
+
# name: "PhoneNumberName",
|
530
531
|
# },
|
531
532
|
# ],
|
532
533
|
# })
|
@@ -557,6 +558,9 @@ module Aws::ChimeSDKVoice
|
|
557
558
|
# @option params [required, Array<String>] :e164_phone_numbers
|
558
559
|
# List of phone numbers, in E.164 format.
|
559
560
|
#
|
561
|
+
# @option params [String] :name
|
562
|
+
# Specifies the name assigned to one or more phone numbers.
|
563
|
+
#
|
560
564
|
# @return [Types::CreatePhoneNumberOrderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
561
565
|
#
|
562
566
|
# * {Types::CreatePhoneNumberOrderResponse#phone_number_order #phone_number_order} => Types::PhoneNumberOrder
|
@@ -566,6 +570,7 @@ module Aws::ChimeSDKVoice
|
|
566
570
|
# resp = client.create_phone_number_order({
|
567
571
|
# product_type: "VoiceConnector", # required, accepts VoiceConnector, SipMediaApplicationDialIn
|
568
572
|
# e164_phone_numbers: ["E164PhoneNumber"], # required
|
573
|
+
# name: "PhoneNumberName",
|
569
574
|
# })
|
570
575
|
#
|
571
576
|
# @example Response structure
|
@@ -1566,6 +1571,7 @@ module Aws::ChimeSDKVoice
|
|
1566
1571
|
# resp.phone_number.updated_timestamp #=> Time
|
1567
1572
|
# resp.phone_number.deletion_timestamp #=> Time
|
1568
1573
|
# resp.phone_number.order_id #=> String
|
1574
|
+
# resp.phone_number.name #=> String
|
1569
1575
|
#
|
1570
1576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumber AWS API Documentation
|
1571
1577
|
#
|
@@ -2411,6 +2417,7 @@ module Aws::ChimeSDKVoice
|
|
2411
2417
|
# resp.phone_numbers[0].updated_timestamp #=> Time
|
2412
2418
|
# resp.phone_numbers[0].deletion_timestamp #=> Time
|
2413
2419
|
# resp.phone_numbers[0].order_id #=> String
|
2420
|
+
# resp.phone_numbers[0].name #=> String
|
2414
2421
|
# resp.next_token #=> String
|
2415
2422
|
#
|
2416
2423
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListPhoneNumbers AWS API Documentation
|
@@ -3265,6 +3272,7 @@ module Aws::ChimeSDKVoice
|
|
3265
3272
|
# resp.phone_number.updated_timestamp #=> Time
|
3266
3273
|
# resp.phone_number.deletion_timestamp #=> Time
|
3267
3274
|
# resp.phone_number.order_id #=> String
|
3275
|
+
# resp.phone_number.name #=> String
|
3268
3276
|
#
|
3269
3277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/RestorePhoneNumber AWS API Documentation
|
3270
3278
|
#
|
@@ -3624,6 +3632,9 @@ module Aws::ChimeSDKVoice
|
|
3624
3632
|
# @option params [String] :calling_name
|
3625
3633
|
# The outbound calling name associated with the phone number.
|
3626
3634
|
#
|
3635
|
+
# @option params [String] :name
|
3636
|
+
# Specifies the name assigned to one or more phone numbers.
|
3637
|
+
#
|
3627
3638
|
# @return [Types::UpdatePhoneNumberResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3628
3639
|
#
|
3629
3640
|
# * {Types::UpdatePhoneNumberResponse#phone_number #phone_number} => Types::PhoneNumber
|
@@ -3634,6 +3645,7 @@ module Aws::ChimeSDKVoice
|
|
3634
3645
|
# phone_number_id: "SensitiveNonEmptyString", # required
|
3635
3646
|
# product_type: "VoiceConnector", # accepts VoiceConnector, SipMediaApplicationDialIn
|
3636
3647
|
# calling_name: "CallingName",
|
3648
|
+
# name: "PhoneNumberName",
|
3637
3649
|
# })
|
3638
3650
|
#
|
3639
3651
|
# @example Response structure
|
@@ -3660,6 +3672,7 @@ module Aws::ChimeSDKVoice
|
|
3660
3672
|
# resp.phone_number.updated_timestamp #=> Time
|
3661
3673
|
# resp.phone_number.deletion_timestamp #=> Time
|
3662
3674
|
# resp.phone_number.order_id #=> String
|
3675
|
+
# resp.phone_number.name #=> String
|
3663
3676
|
#
|
3664
3677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumber AWS API Documentation
|
3665
3678
|
#
|
@@ -4173,7 +4186,7 @@ module Aws::ChimeSDKVoice
|
|
4173
4186
|
params: params,
|
4174
4187
|
config: config)
|
4175
4188
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4176
|
-
context[:gem_version] = '1.
|
4189
|
+
context[:gem_version] = '1.13.0'
|
4177
4190
|
Seahorse::Client::Request.new(handlers, context)
|
4178
4191
|
end
|
4179
4192
|
|
@@ -202,6 +202,7 @@ module Aws::ChimeSDKVoice
|
|
202
202
|
PhoneNumberErrorList = Shapes::ListShape.new(name: 'PhoneNumberErrorList')
|
203
203
|
PhoneNumberList = Shapes::ListShape.new(name: 'PhoneNumberList')
|
204
204
|
PhoneNumberMaxResults = Shapes::IntegerShape.new(name: 'PhoneNumberMaxResults')
|
205
|
+
PhoneNumberName = Shapes::StringShape.new(name: 'PhoneNumberName')
|
205
206
|
PhoneNumberOrder = Shapes::StructureShape.new(name: 'PhoneNumberOrder')
|
206
207
|
PhoneNumberOrderList = Shapes::ListShape.new(name: 'PhoneNumberOrderList')
|
207
208
|
PhoneNumberOrderStatus = Shapes::StringShape.new(name: 'PhoneNumberOrderStatus')
|
@@ -412,6 +413,7 @@ module Aws::ChimeSDKVoice
|
|
412
413
|
|
413
414
|
CreatePhoneNumberOrderRequest.add_member(:product_type, Shapes::ShapeRef.new(shape: PhoneNumberProductType, required: true, location_name: "ProductType"))
|
414
415
|
CreatePhoneNumberOrderRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, required: true, location_name: "E164PhoneNumbers"))
|
416
|
+
CreatePhoneNumberOrderRequest.add_member(:name, Shapes::ShapeRef.new(shape: PhoneNumberName, location_name: "Name"))
|
415
417
|
CreatePhoneNumberOrderRequest.struct_class = Types::CreatePhoneNumberOrderRequest
|
416
418
|
|
417
419
|
CreatePhoneNumberOrderResponse.add_member(:phone_number_order, Shapes::ShapeRef.new(shape: PhoneNumberOrder, location_name: "PhoneNumberOrder"))
|
@@ -860,6 +862,7 @@ module Aws::ChimeSDKVoice
|
|
860
862
|
PhoneNumber.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
861
863
|
PhoneNumber.add_member(:deletion_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "DeletionTimestamp"))
|
862
864
|
PhoneNumber.add_member(:order_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "OrderId"))
|
865
|
+
PhoneNumber.add_member(:name, Shapes::ShapeRef.new(shape: PhoneNumberName, location_name: "Name"))
|
863
866
|
PhoneNumber.struct_class = Types::PhoneNumber
|
864
867
|
|
865
868
|
PhoneNumberAssociation.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "Value"))
|
@@ -1175,11 +1178,13 @@ module Aws::ChimeSDKVoice
|
|
1175
1178
|
UpdatePhoneNumberRequest.add_member(:phone_number_id, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location: "uri", location_name: "phoneNumberId"))
|
1176
1179
|
UpdatePhoneNumberRequest.add_member(:product_type, Shapes::ShapeRef.new(shape: PhoneNumberProductType, location_name: "ProductType"))
|
1177
1180
|
UpdatePhoneNumberRequest.add_member(:calling_name, Shapes::ShapeRef.new(shape: CallingName, location_name: "CallingName"))
|
1181
|
+
UpdatePhoneNumberRequest.add_member(:name, Shapes::ShapeRef.new(shape: PhoneNumberName, location_name: "Name"))
|
1178
1182
|
UpdatePhoneNumberRequest.struct_class = Types::UpdatePhoneNumberRequest
|
1179
1183
|
|
1180
1184
|
UpdatePhoneNumberRequestItem.add_member(:phone_number_id, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "PhoneNumberId"))
|
1181
1185
|
UpdatePhoneNumberRequestItem.add_member(:product_type, Shapes::ShapeRef.new(shape: PhoneNumberProductType, location_name: "ProductType"))
|
1182
1186
|
UpdatePhoneNumberRequestItem.add_member(:calling_name, Shapes::ShapeRef.new(shape: CallingName, location_name: "CallingName"))
|
1187
|
+
UpdatePhoneNumberRequestItem.add_member(:name, Shapes::ShapeRef.new(shape: PhoneNumberName, location_name: "Name"))
|
1183
1188
|
UpdatePhoneNumberRequestItem.struct_class = Types::UpdatePhoneNumberRequestItem
|
1184
1189
|
|
1185
1190
|
UpdatePhoneNumberRequestItemList.member = Shapes::ShapeRef.new(shape: UpdatePhoneNumberRequestItem)
|
@@ -292,12 +292,17 @@ module Aws::ChimeSDKVoice
|
|
292
292
|
# List of phone numbers, in E.164 format.
|
293
293
|
# @return [Array<String>]
|
294
294
|
#
|
295
|
+
# @!attribute [rw] name
|
296
|
+
# Specifies the name assigned to one or more phone numbers.
|
297
|
+
# @return [String]
|
298
|
+
#
|
295
299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreatePhoneNumberOrderRequest AWS API Documentation
|
296
300
|
#
|
297
301
|
class CreatePhoneNumberOrderRequest < Struct.new(
|
298
302
|
:product_type,
|
299
|
-
:e164_phone_numbers
|
300
|
-
|
303
|
+
:e164_phone_numbers,
|
304
|
+
:name)
|
305
|
+
SENSITIVE = [:name]
|
301
306
|
include Aws::Structure
|
302
307
|
end
|
303
308
|
|
@@ -2173,6 +2178,10 @@ module Aws::ChimeSDKVoice
|
|
2173
2178
|
# The phone number's order ID.
|
2174
2179
|
# @return [String]
|
2175
2180
|
#
|
2181
|
+
# @!attribute [rw] name
|
2182
|
+
# The name of the phone number.
|
2183
|
+
# @return [String]
|
2184
|
+
#
|
2176
2185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumber AWS API Documentation
|
2177
2186
|
#
|
2178
2187
|
class PhoneNumber < Struct.new(
|
@@ -2189,8 +2198,9 @@ module Aws::ChimeSDKVoice
|
|
2189
2198
|
:created_timestamp,
|
2190
2199
|
:updated_timestamp,
|
2191
2200
|
:deletion_timestamp,
|
2192
|
-
:order_id
|
2193
|
-
|
2201
|
+
:order_id,
|
2202
|
+
:name)
|
2203
|
+
SENSITIVE = [:phone_number_id, :e164_phone_number, :calling_name, :name]
|
2194
2204
|
include Aws::Structure
|
2195
2205
|
end
|
2196
2206
|
|
@@ -3459,13 +3469,18 @@ module Aws::ChimeSDKVoice
|
|
3459
3469
|
# The outbound calling name associated with the phone number.
|
3460
3470
|
# @return [String]
|
3461
3471
|
#
|
3472
|
+
# @!attribute [rw] name
|
3473
|
+
# Specifies the name assigned to one or more phone numbers.
|
3474
|
+
# @return [String]
|
3475
|
+
#
|
3462
3476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberRequest AWS API Documentation
|
3463
3477
|
#
|
3464
3478
|
class UpdatePhoneNumberRequest < Struct.new(
|
3465
3479
|
:phone_number_id,
|
3466
3480
|
:product_type,
|
3467
|
-
:calling_name
|
3468
|
-
|
3481
|
+
:calling_name,
|
3482
|
+
:name)
|
3483
|
+
SENSITIVE = [:phone_number_id, :calling_name, :name]
|
3469
3484
|
include Aws::Structure
|
3470
3485
|
end
|
3471
3486
|
|
@@ -3484,13 +3499,18 @@ module Aws::ChimeSDKVoice
|
|
3484
3499
|
# The outbound calling name to update.
|
3485
3500
|
# @return [String]
|
3486
3501
|
#
|
3502
|
+
# @!attribute [rw] name
|
3503
|
+
# The name of the phone number.
|
3504
|
+
# @return [String]
|
3505
|
+
#
|
3487
3506
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberRequestItem AWS API Documentation
|
3488
3507
|
#
|
3489
3508
|
class UpdatePhoneNumberRequestItem < Struct.new(
|
3490
3509
|
:phone_number_id,
|
3491
3510
|
:product_type,
|
3492
|
-
:calling_name
|
3493
|
-
|
3511
|
+
:calling_name,
|
3512
|
+
:name)
|
3513
|
+
SENSITIVE = [:phone_number_id, :calling_name, :name]
|
3494
3514
|
include Aws::Structure
|
3495
3515
|
end
|
3496
3516
|
|
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.13.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-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|