aws-sdk-chimesdkvoice 1.37.0 → 1.38.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 +4 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +2 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +8 -1
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- data/sig/types.rbs +1 -0
- 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: 5a141ed2087afd60debadaa918190ac617607206a58d1f6321d7b7556a8354ad
|
4
|
+
data.tar.gz: 2740147e79d4a9b3d281b9d82a50553691d108600447418c8ba4bf9833dc5094
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99f0e93816e0f4991cb5193594479df4acbfe7c6cb4f36bd01151d088a10254eb8ff47ed1cd01d0203530b4908121f61d35be3a3da03635ec95b5ef4951e665a
|
7
|
+
data.tar.gz: 16090a57284755764528266de56d6ae3826ce5e8cdc8eb4d417f3583688b248be80c7be14f482516bf09dcd063577905daf4d5eb56d70a005c0377c3da9566e8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2025-04-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added FOC date as an attribute of PhoneNumberOrder, added AccessDeniedException as a possible return type of ValidateE911Address
|
8
|
+
|
4
9
|
1.37.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
@@ -673,6 +673,7 @@ module Aws::ChimeSDKVoice
|
|
673
673
|
# resp.phone_number_order.ordered_phone_numbers[0].status #=> String, one of "Processing", "Acquired", "Failed"
|
674
674
|
# resp.phone_number_order.created_timestamp #=> Time
|
675
675
|
# resp.phone_number_order.updated_timestamp #=> Time
|
676
|
+
# resp.phone_number_order.foc_date #=> Time
|
676
677
|
#
|
677
678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreatePhoneNumberOrder AWS API Documentation
|
678
679
|
#
|
@@ -1753,6 +1754,7 @@ module Aws::ChimeSDKVoice
|
|
1753
1754
|
# resp.phone_number_order.ordered_phone_numbers[0].status #=> String, one of "Processing", "Acquired", "Failed"
|
1754
1755
|
# resp.phone_number_order.created_timestamp #=> Time
|
1755
1756
|
# resp.phone_number_order.updated_timestamp #=> Time
|
1757
|
+
# resp.phone_number_order.foc_date #=> Time
|
1756
1758
|
#
|
1757
1759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumberOrder AWS API Documentation
|
1758
1760
|
#
|
@@ -2526,6 +2528,7 @@ module Aws::ChimeSDKVoice
|
|
2526
2528
|
# resp.phone_number_orders[0].ordered_phone_numbers[0].status #=> String, one of "Processing", "Acquired", "Failed"
|
2527
2529
|
# resp.phone_number_orders[0].created_timestamp #=> Time
|
2528
2530
|
# resp.phone_number_orders[0].updated_timestamp #=> Time
|
2531
|
+
# resp.phone_number_orders[0].foc_date #=> Time
|
2529
2532
|
# resp.next_token #=> String
|
2530
2533
|
#
|
2531
2534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListPhoneNumberOrders AWS API Documentation
|
@@ -4432,7 +4435,7 @@ module Aws::ChimeSDKVoice
|
|
4432
4435
|
tracer: tracer
|
4433
4436
|
)
|
4434
4437
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4435
|
-
context[:gem_version] = '1.
|
4438
|
+
context[:gem_version] = '1.38.0'
|
4436
4439
|
Seahorse::Client::Request.new(handlers, context)
|
4437
4440
|
end
|
4438
4441
|
|
@@ -930,6 +930,7 @@ module Aws::ChimeSDKVoice
|
|
930
930
|
PhoneNumberOrder.add_member(:ordered_phone_numbers, Shapes::ShapeRef.new(shape: OrderedPhoneNumberList, location_name: "OrderedPhoneNumbers"))
|
931
931
|
PhoneNumberOrder.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
932
932
|
PhoneNumberOrder.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
933
|
+
PhoneNumberOrder.add_member(:foc_date, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "FocDate"))
|
933
934
|
PhoneNumberOrder.struct_class = Types::PhoneNumberOrder
|
934
935
|
|
935
936
|
PhoneNumberOrderList.member = Shapes::ShapeRef.new(shape: PhoneNumberOrder)
|
@@ -2958,6 +2959,7 @@ module Aws::ChimeSDKVoice
|
|
2958
2959
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
2959
2960
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2960
2961
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
2962
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2961
2963
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2962
2964
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2963
2965
|
end)
|
@@ -2442,6 +2442,12 @@ module Aws::ChimeSDKVoice
|
|
2442
2442
|
# The updated phone number order time stamp, in ISO 8601 format.
|
2443
2443
|
# @return [Time]
|
2444
2444
|
#
|
2445
|
+
# @!attribute [rw] foc_date
|
2446
|
+
# The Firm Order Commitment (FOC) date for phone number porting
|
2447
|
+
# orders. This field is null if a phone number order is not a porting
|
2448
|
+
# order.
|
2449
|
+
# @return [Time]
|
2450
|
+
#
|
2445
2451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumberOrder AWS API Documentation
|
2446
2452
|
#
|
2447
2453
|
class PhoneNumberOrder < Struct.new(
|
@@ -2451,7 +2457,8 @@ module Aws::ChimeSDKVoice
|
|
2451
2457
|
:order_type,
|
2452
2458
|
:ordered_phone_numbers,
|
2453
2459
|
:created_timestamp,
|
2454
|
-
:updated_timestamp
|
2460
|
+
:updated_timestamp,
|
2461
|
+
:foc_date)
|
2455
2462
|
SENSITIVE = []
|
2456
2463
|
include Aws::Structure
|
2457
2464
|
end
|
data/sig/types.rbs
CHANGED
@@ -822,6 +822,7 @@ module Aws::ChimeSDKVoice
|
|
822
822
|
attr_accessor ordered_phone_numbers: ::Array[Types::OrderedPhoneNumber]
|
823
823
|
attr_accessor created_timestamp: ::Time
|
824
824
|
attr_accessor updated_timestamp: ::Time
|
825
|
+
attr_accessor foc_date: ::Time
|
825
826
|
SENSITIVE: []
|
826
827
|
end
|
827
828
|
|
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.38.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: 2025-
|
11
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|