aws-sdk-chimesdkvoice 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7c42715402f9f1f72c77e83d2f4b6bef8402a6e78f5d97f8b5c59fa07b7ad0b
4
- data.tar.gz: e6ad07bbb699eae3bd7053dee44f309f555833ce7c8ade882e501c6feba6733f
3
+ metadata.gz: b6adfd7a6e36f8e95ae851b91159021bb9f0e6a22064146a4ffd5b16b56a6e17
4
+ data.tar.gz: 975c63fa8d8643f90c21cac3d45070a0d432b47a6fa73ef1f16463052fb631f6
5
5
  SHA512:
6
- metadata.gz: 3219461be163b66f62c722b90a5d6c7da80c108a1f800f31a3a68ab077e574f1a1a10142aaae93331ee1616fb5a146b068252456e208aa1fe3d513033cf4b3b7
7
- data.tar.gz: b0e9b996345b3446bac1e3d82e529efb93c3a2465dc1620f657fbb02f9cfb74ddbc7623798c3c7cb1d26b67ab84aa4e3f1f171dd3f6d9950b846ea1c69a6f233
6
+ metadata.gz: 0df4cf3c536c070ac1ef2368f78d299677a70594efabfd9820e30d1c7e69230e469d5de517eba93cdaf2ce65f98a1121e575a146d955a263146f5ed32926346a
7
+ data.tar.gz: b3c962167b4b83b56d303ae419da80d71c250a7635f0da50787d3085e06a1022ec90a3b49cc8b93b39f5b54137198316f418a45908d3c8e3e8cc320938396ad6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2023-08-09)
5
+ ------------------
6
+
7
+ * Feature - Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name
8
+
4
9
  1.11.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.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.11.0'
4189
+ context[:gem_version] = '1.12.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
- SENSITIVE = []
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
- SENSITIVE = [:phone_number_id, :e164_phone_number, :calling_name]
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
- SENSITIVE = [:phone_number_id, :calling_name]
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
- SENSITIVE = [:phone_number_id, :calling_name]
3511
+ :calling_name,
3512
+ :name)
3513
+ SENSITIVE = [:phone_number_id, :calling_name, :name]
3494
3514
  include Aws::Structure
3495
3515
  end
3496
3516
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkvoice/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKVoice
54
54
 
55
- GEM_VERSION = '1.11.0'
55
+ GEM_VERSION = '1.12.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkvoice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core