Skip to content

Commit a11b006

Browse files
author
awstools
committed
feat(client-chime-sdk-voice): 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.
1 parent 0d8cad3 commit a11b006

File tree

6 files changed

+37
-10
lines changed

6 files changed

+37
-10
lines changed

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

+6-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ export interface BatchUpdatePhoneNumberCommandInput extends BatchUpdatePhoneNumb
3232
export interface BatchUpdatePhoneNumberCommandOutput extends BatchUpdatePhoneNumberResponse, __MetadataBearer {}
3333

3434
/**
35-
* <p>Updates one or more phone numbers.</p>
35+
* <p>Updates phone number product types, calling names, or phone number names. You can update one attribute at a time for each
36+
* <code>UpdatePhoneNumberRequestItem</code>. For example, you can update the product type, the calling name, or phone name.
37+
* </p>
38+
* <note>
39+
* <p>You cannot have a duplicate <code>phoneNumberId</code> in a request.</p>
40+
* </note>
3641
* @example
3742
* Use a bare-bones client and the command you need to make an API call.
3843
* ```javascript

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

+6
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ export interface GetSipMediaApplicationAlexaSkillConfigurationCommandOutput
3838

3939
/**
4040
* <p>Gets the Alexa Skill configuration for the SIP media application.</p>
41+
* <important>
42+
* <p>Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to
43+
* the <a href="https://developer.amazon.com/en-US/alexa/alexasmartproperties">Alexa Smart Properties</a> page.</p>
44+
* </important>
45+
*
46+
* @deprecated Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page(https://developer.amazon.com/en-US/alexa/alexasmartproperties).
4147
* @example
4248
* Use a bare-bones client and the command you need to make an API call.
4349
* ```javascript

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

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ export interface PutSipMediaApplicationAlexaSkillConfigurationCommandOutput
3939

4040
/**
4141
* <p>Updates the Alexa Skill configuration for the SIP media application.</p>
42+
* <important>
43+
* <p>Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to
44+
* the <a href="https://developer.amazon.com/en-US/alexa/alexasmartproperties">Alexa Smart Properties</a> page.</p>
45+
* </important>
46+
*
47+
* @deprecated Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page(https://developer.amazon.com/en-US/alexa/alexasmartproperties).
4248
* @example
4349
* Use a bare-bones client and the command you need to make an API call.
4450
* ```javascript

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ export interface UpdatePhoneNumberCommandInput extends UpdatePhoneNumberRequest
3232
export interface UpdatePhoneNumberCommandOutput extends UpdatePhoneNumberResponse, __MetadataBearer {}
3333

3434
/**
35-
* <p>Updates phone number details, such as product type or calling name, for the
35+
* <p>Updates phone number details, such as product type, calling name, or phone number name for the
3636
* specified phone number ID. You can update one phone number detail at a time. For
37-
* example, you can update either the product type or the calling name in one action.</p>
37+
* example, you can update either the product type, calling name, or phone number name in one action.</p>
3838
* <p>For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media
3939
* Application Dial-In product type.</p>
4040
* <p>Updates to outbound calling names can take 72 hours to complete. Pending

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -2370,6 +2370,10 @@ export interface GetSipMediaApplicationAlexaSkillConfigurationRequest {
23702370

23712371
/**
23722372
* <p>The Alexa Skill configuration of a SIP media application.</p>
2373+
* <important>
2374+
* <p>Due to changes made by the Amazon Alexa service, this data type is no longer available for use. For more information, refer to
2375+
* the <a href="https://developer.amazon.com/en-US/alexa/alexasmartproperties">Alexa Smart Properties</a> page.</p>
2376+
* </important>
23732377
* @public
23742378
*/
23752379
export interface SipMediaApplicationAlexaSkillConfiguration {
@@ -4333,7 +4337,7 @@ export interface UpdatePhoneNumberRequest {
43334337
CallingName?: string;
43344338

43354339
/**
4336-
* <p>Specifies the name assigned to one or more phone numbers.</p>
4340+
* <p>Specifies the updated name assigned to one or more phone numbers.</p>
43374341
* @public
43384342
*/
43394343
Name?: string;

codegen/sdk-codegen/aws-models/chime-sdk-voice.json

+12-6
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@
465465
}
466466
],
467467
"traits": {
468-
"smithy.api#documentation": "<p>Updates one or more phone numbers.</p>",
468+
"smithy.api#documentation": "<p>Updates phone number product types, calling names, or phone number names. You can update one attribute at a time for each \n <code>UpdatePhoneNumberRequestItem</code>. For example, you can update the product type, the calling name, or phone name.\n </p>\n <note>\n <p>You cannot have a duplicate <code>phoneNumberId</code> in a request.</p>\n </note>",
469469
"smithy.api#http": {
470470
"method": "POST",
471471
"uri": "/phone-numbers?operation=batch-update",
@@ -4178,7 +4178,10 @@
41784178
}
41794179
],
41804180
"traits": {
4181-
"smithy.api#documentation": "<p>Gets the Alexa Skill configuration for the SIP media application.</p>",
4181+
"smithy.api#deprecated": {
4182+
"message": "Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page(https://developer.amazon.com/en-US/alexa/alexasmartproperties)."
4183+
},
4184+
"smithy.api#documentation": "<p>Gets the Alexa Skill configuration for the SIP media application.</p>\n <important>\n <p>Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to \n the <a href=\"https://developer.amazon.com/en-US/alexa/alexasmartproperties\">Alexa Smart Properties</a> page.</p>\n </important>",
41824185
"smithy.api#http": {
41834186
"method": "GET",
41844187
"uri": "/sip-media-applications/{SipMediaApplicationId}/alexa-skill-configuration",
@@ -7536,7 +7539,10 @@
75367539
}
75377540
],
75387541
"traits": {
7539-
"smithy.api#documentation": "<p>Updates the Alexa Skill configuration for the SIP media application.</p>",
7542+
"smithy.api#deprecated": {
7543+
"message": "Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to the Alexa Smart Properties page(https://developer.amazon.com/en-US/alexa/alexasmartproperties)."
7544+
},
7545+
"smithy.api#documentation": "<p>Updates the Alexa Skill configuration for the SIP media application.</p>\n <important>\n <p>Due to changes made by the Amazon Alexa service, this API is no longer available for use. For more information, refer to \n the <a href=\"https://developer.amazon.com/en-US/alexa/alexasmartproperties\">Alexa Smart Properties</a> page.</p>\n </important>",
75407546
"smithy.api#http": {
75417547
"method": "PUT",
75427548
"uri": "/sip-media-applications/{SipMediaApplicationId}/alexa-skill-configuration",
@@ -8620,7 +8626,7 @@
86208626
}
86218627
},
86228628
"traits": {
8623-
"smithy.api#documentation": "<p>The Alexa Skill configuration of a SIP media application.</p>"
8629+
"smithy.api#documentation": "<p>The Alexa Skill configuration of a SIP media application.</p>\n <important>\n <p>Due to changes made by the Amazon Alexa service, this data type is no longer available for use. For more information, refer to \n the <a href=\"https://developer.amazon.com/en-US/alexa/alexasmartproperties\">Alexa Smart Properties</a> page.</p>\n </important>"
86248630
}
86258631
},
86268632
"com.amazonaws.chimesdkvoice#SipMediaApplicationCall": {
@@ -9752,7 +9758,7 @@
97529758
}
97539759
],
97549760
"traits": {
9755-
"smithy.api#documentation": "<p>Updates phone number details, such as product type or calling name, for the \n specified phone number ID. You can update one phone number detail at a time. For \n example, you can update either the product type or the calling name in one action.</p>\n <p>For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media \n Application Dial-In product type.</p>\n <p>Updates to outbound calling names can take 72 hours to complete. Pending \n updates to outbound calling names must be complete before you can request another \n update.</p>",
9761+
"smithy.api#documentation": "<p>Updates phone number details, such as product type, calling name, or phone number name for the \n specified phone number ID. You can update one phone number detail at a time. For \n example, you can update either the product type, calling name, or phone number name in one action.</p>\n <p>For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media \n Application Dial-In product type.</p>\n <p>Updates to outbound calling names can take 72 hours to complete. Pending \n updates to outbound calling names must be complete before you can request another \n update.</p>",
97569762
"smithy.api#http": {
97579763
"method": "POST",
97589764
"uri": "/phone-numbers/{PhoneNumberId}",
@@ -9786,7 +9792,7 @@
97869792
"Name": {
97879793
"target": "com.amazonaws.chimesdkvoice#PhoneNumberName",
97889794
"traits": {
9789-
"smithy.api#documentation": "<p>Specifies the name assigned to one or more phone numbers.</p>"
9795+
"smithy.api#documentation": "<p>Specifies the updated name assigned to one or more phone numbers.</p>"
97909796
}
97919797
}
97929798
},

0 commit comments

Comments
 (0)