Skip to content

Commit f6e45d7

Browse files
author
awstools
committed
feat(client-chime-sdk-voice): Added FOC date as an attribute of PhoneNumberOrder, added AccessDeniedException as a possible return type of ValidateE911Address
1 parent ff065ab commit f6e45d7

File tree

6 files changed

+14
-0
lines changed

6 files changed

+14
-0
lines changed

clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export interface CreatePhoneNumberOrderCommandOutput extends CreatePhoneNumberOr
6363
* // ],
6464
* // CreatedTimestamp: new Date("TIMESTAMP"),
6565
* // UpdatedTimestamp: new Date("TIMESTAMP"),
66+
* // FocDate: new Date("TIMESTAMP"),
6667
* // },
6768
* // };
6869
*

clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export interface GetPhoneNumberOrderCommandOutput extends GetPhoneNumberOrderRes
6060
* // ],
6161
* // CreatedTimestamp: new Date("TIMESTAMP"),
6262
* // UpdatedTimestamp: new Date("TIMESTAMP"),
63+
* // FocDate: new Date("TIMESTAMP"),
6364
* // },
6465
* // };
6566
*

clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export interface ListPhoneNumberOrdersCommandOutput extends ListPhoneNumberOrder
6060
* // ],
6161
* // CreatedTimestamp: new Date("TIMESTAMP"),
6262
* // UpdatedTimestamp: new Date("TIMESTAMP"),
63+
* // FocDate: new Date("TIMESTAMP"),
6364
* // },
6465
* // ],
6566
* // NextToken: "STRING_VALUE",

clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ export interface ValidateE911AddressCommandOutput extends ValidateE911AddressRes
9090
* @see {@link ValidateE911AddressCommandOutput} for command's `response` shape.
9191
* @see {@link ChimeSDKVoiceClientResolvedConfig | config} for ChimeSDKVoiceClient's `config` shape.
9292
*
93+
* @throws {@link AccessDeniedException} (client fault)
94+
* <p>You don't have the permissions needed to run this action.</p>
95+
*
9396
* @throws {@link BadRequestException} (client fault)
9497
* <p>The input parameters don't match the service's restrictions.</p>
9598
*

clients/client-chime-sdk-voice/src/models/models_0.ts

+7
Original file line numberDiff line numberDiff line change
@@ -745,6 +745,13 @@ export interface PhoneNumberOrder {
745745
* @public
746746
*/
747747
UpdatedTimestamp?: Date | undefined;
748+
749+
/**
750+
* <p>The Firm Order Commitment (FOC) date for phone number porting orders. This field is null
751+
* if a phone number order is not a porting order.</p>
752+
* @public
753+
*/
754+
FocDate?: Date | undefined;
748755
}
749756

750757
/**

clients/client-chime-sdk-voice/src/protocols/Aws_restJson1.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4804,6 +4804,7 @@ const de_PhoneNumberList = (output: any, context: __SerdeContext): PhoneNumber[]
48044804
const de_PhoneNumberOrder = (output: any, context: __SerdeContext): PhoneNumberOrder => {
48054805
return take(output, {
48064806
CreatedTimestamp: (_: any) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
4807+
FocDate: (_: any) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
48074808
OrderType: __expectString,
48084809
OrderedPhoneNumbers: _json,
48094810
PhoneNumberOrderId: __expectString,

0 commit comments

Comments
 (0)