@aws-sdk/client-chime-sdk-voice 3.696.0 → 3.703.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.
- package/README.md +24 -0
- package/dist-cjs/index.js +149 -0
- package/dist-es/ChimeSDKVoice.js +6 -0
- package/dist-es/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
- package/dist-es/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
- package/dist-es/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +17 -0
- package/dist-es/protocols/Aws_restJson1.js +73 -0
- package/dist-types/ChimeSDKVoice.d.ts +21 -0
- package/dist-types/ChimeSDKVoiceClient.d.ts +5 -2
- package/dist-types/commands/CreateVoiceConnectorCommand.d.ts +2 -0
- package/dist-types/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/GetVoiceConnectorCommand.d.ts +1 -0
- package/dist-types/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.d.ts +100 -0
- package/dist-types/commands/ListVoiceConnectorsCommand.d.ts +1 -0
- package/dist-types/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.d.ts +108 -0
- package/dist-types/commands/UpdateVoiceConnectorCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +159 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/ChimeSDKVoice.d.ts +69 -0
- package/dist-types/ts3.4/ChimeSDKVoiceClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +4 -4
|
@@ -165,6 +165,7 @@ export const se_CreateVoiceConnectorCommand = async (input, context) => {
|
|
|
165
165
|
let body;
|
|
166
166
|
body = JSON.stringify(take(input, {
|
|
167
167
|
AwsRegion: [],
|
|
168
|
+
IntegrationType: [],
|
|
168
169
|
Name: [],
|
|
169
170
|
RequireEncryption: [],
|
|
170
171
|
Tags: (_) => _json(_),
|
|
@@ -271,6 +272,15 @@ export const se_DeleteVoiceConnectorEmergencyCallingConfigurationCommand = async
|
|
|
271
272
|
b.m("DELETE").h(headers).b(body);
|
|
272
273
|
return b.build();
|
|
273
274
|
};
|
|
275
|
+
export const se_DeleteVoiceConnectorExternalSystemsConfigurationCommand = async (input, context) => {
|
|
276
|
+
const b = rb(input, context);
|
|
277
|
+
const headers = {};
|
|
278
|
+
b.bp("/voice-connectors/{VoiceConnectorId}/external-systems-configuration");
|
|
279
|
+
b.p("VoiceConnectorId", () => input.VoiceConnectorId, "{VoiceConnectorId}", false);
|
|
280
|
+
let body;
|
|
281
|
+
b.m("DELETE").h(headers).b(body);
|
|
282
|
+
return b.build();
|
|
283
|
+
};
|
|
274
284
|
export const se_DeleteVoiceConnectorGroupCommand = async (input, context) => {
|
|
275
285
|
const b = rb(input, context);
|
|
276
286
|
const headers = {};
|
|
@@ -493,6 +503,15 @@ export const se_GetVoiceConnectorEmergencyCallingConfigurationCommand = async (i
|
|
|
493
503
|
b.m("GET").h(headers).b(body);
|
|
494
504
|
return b.build();
|
|
495
505
|
};
|
|
506
|
+
export const se_GetVoiceConnectorExternalSystemsConfigurationCommand = async (input, context) => {
|
|
507
|
+
const b = rb(input, context);
|
|
508
|
+
const headers = {};
|
|
509
|
+
b.bp("/voice-connectors/{VoiceConnectorId}/external-systems-configuration");
|
|
510
|
+
b.p("VoiceConnectorId", () => input.VoiceConnectorId, "{VoiceConnectorId}", false);
|
|
511
|
+
let body;
|
|
512
|
+
b.m("GET").h(headers).b(body);
|
|
513
|
+
return b.build();
|
|
514
|
+
};
|
|
496
515
|
export const se_GetVoiceConnectorGroupCommand = async (input, context) => {
|
|
497
516
|
const b = rb(input, context);
|
|
498
517
|
const headers = {};
|
|
@@ -784,6 +803,21 @@ export const se_PutVoiceConnectorEmergencyCallingConfigurationCommand = async (i
|
|
|
784
803
|
b.m("PUT").h(headers).b(body);
|
|
785
804
|
return b.build();
|
|
786
805
|
};
|
|
806
|
+
export const se_PutVoiceConnectorExternalSystemsConfigurationCommand = async (input, context) => {
|
|
807
|
+
const b = rb(input, context);
|
|
808
|
+
const headers = {
|
|
809
|
+
"content-type": "application/json",
|
|
810
|
+
};
|
|
811
|
+
b.bp("/voice-connectors/{VoiceConnectorId}/external-systems-configuration");
|
|
812
|
+
b.p("VoiceConnectorId", () => input.VoiceConnectorId, "{VoiceConnectorId}", false);
|
|
813
|
+
let body;
|
|
814
|
+
body = JSON.stringify(take(input, {
|
|
815
|
+
ContactCenterSystemTypes: (_) => _json(_),
|
|
816
|
+
SessionBorderControllerTypes: (_) => _json(_),
|
|
817
|
+
}));
|
|
818
|
+
b.m("PUT").h(headers).b(body);
|
|
819
|
+
return b.build();
|
|
820
|
+
};
|
|
787
821
|
export const se_PutVoiceConnectorLoggingConfigurationCommand = async (input, context) => {
|
|
788
822
|
const b = rb(input, context);
|
|
789
823
|
const headers = {
|
|
@@ -1422,6 +1456,16 @@ export const de_DeleteVoiceConnectorEmergencyCallingConfigurationCommand = async
|
|
|
1422
1456
|
await collectBody(output.body, context);
|
|
1423
1457
|
return contents;
|
|
1424
1458
|
};
|
|
1459
|
+
export const de_DeleteVoiceConnectorExternalSystemsConfigurationCommand = async (output, context) => {
|
|
1460
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1461
|
+
return de_CommandError(output, context);
|
|
1462
|
+
}
|
|
1463
|
+
const contents = map({
|
|
1464
|
+
$metadata: deserializeMetadata(output),
|
|
1465
|
+
});
|
|
1466
|
+
await collectBody(output.body, context);
|
|
1467
|
+
return contents;
|
|
1468
|
+
};
|
|
1425
1469
|
export const de_DeleteVoiceConnectorGroupCommand = async (output, context) => {
|
|
1426
1470
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1427
1471
|
return de_CommandError(output, context);
|
|
@@ -1699,6 +1743,20 @@ export const de_GetVoiceConnectorEmergencyCallingConfigurationCommand = async (o
|
|
|
1699
1743
|
Object.assign(contents, doc);
|
|
1700
1744
|
return contents;
|
|
1701
1745
|
};
|
|
1746
|
+
export const de_GetVoiceConnectorExternalSystemsConfigurationCommand = async (output, context) => {
|
|
1747
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1748
|
+
return de_CommandError(output, context);
|
|
1749
|
+
}
|
|
1750
|
+
const contents = map({
|
|
1751
|
+
$metadata: deserializeMetadata(output),
|
|
1752
|
+
});
|
|
1753
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1754
|
+
const doc = take(data, {
|
|
1755
|
+
ExternalSystemsConfiguration: _json,
|
|
1756
|
+
});
|
|
1757
|
+
Object.assign(contents, doc);
|
|
1758
|
+
return contents;
|
|
1759
|
+
};
|
|
1702
1760
|
export const de_GetVoiceConnectorGroupCommand = async (output, context) => {
|
|
1703
1761
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1704
1762
|
return de_CommandError(output, context);
|
|
@@ -2072,6 +2130,20 @@ export const de_PutVoiceConnectorEmergencyCallingConfigurationCommand = async (o
|
|
|
2072
2130
|
Object.assign(contents, doc);
|
|
2073
2131
|
return contents;
|
|
2074
2132
|
};
|
|
2133
|
+
export const de_PutVoiceConnectorExternalSystemsConfigurationCommand = async (output, context) => {
|
|
2134
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2135
|
+
return de_CommandError(output, context);
|
|
2136
|
+
}
|
|
2137
|
+
const contents = map({
|
|
2138
|
+
$metadata: deserializeMetadata(output),
|
|
2139
|
+
});
|
|
2140
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2141
|
+
const doc = take(data, {
|
|
2142
|
+
ExternalSystemsConfiguration: _json,
|
|
2143
|
+
});
|
|
2144
|
+
Object.assign(contents, doc);
|
|
2145
|
+
return contents;
|
|
2146
|
+
};
|
|
2075
2147
|
export const de_PutVoiceConnectorLoggingConfigurationCommand = async (output, context) => {
|
|
2076
2148
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2077
2149
|
return de_CommandError(output, context);
|
|
@@ -2800,6 +2872,7 @@ const de_VoiceConnector = (output, context) => {
|
|
|
2800
2872
|
return take(output, {
|
|
2801
2873
|
AwsRegion: __expectString,
|
|
2802
2874
|
CreatedTimestamp: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2875
|
+
IntegrationType: __expectString,
|
|
2803
2876
|
Name: __expectString,
|
|
2804
2877
|
OutboundHostName: __expectString,
|
|
2805
2878
|
RequireEncryption: __expectBoolean,
|
|
@@ -19,6 +19,7 @@ import { DeleteSipMediaApplicationCommandInput, DeleteSipMediaApplicationCommand
|
|
|
19
19
|
import { DeleteSipRuleCommandInput, DeleteSipRuleCommandOutput } from "./commands/DeleteSipRuleCommand";
|
|
20
20
|
import { DeleteVoiceConnectorCommandInput, DeleteVoiceConnectorCommandOutput } from "./commands/DeleteVoiceConnectorCommand";
|
|
21
21
|
import { DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "./commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
22
|
+
import { DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput } from "./commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand";
|
|
22
23
|
import { DeleteVoiceConnectorGroupCommandInput, DeleteVoiceConnectorGroupCommandOutput } from "./commands/DeleteVoiceConnectorGroupCommand";
|
|
23
24
|
import { DeleteVoiceConnectorOriginationCommandInput, DeleteVoiceConnectorOriginationCommandOutput } from "./commands/DeleteVoiceConnectorOriginationCommand";
|
|
24
25
|
import { DeleteVoiceConnectorProxyCommandInput, DeleteVoiceConnectorProxyCommandOutput } from "./commands/DeleteVoiceConnectorProxyCommand";
|
|
@@ -41,6 +42,7 @@ import { GetSipRuleCommandInput, GetSipRuleCommandOutput } from "./commands/GetS
|
|
|
41
42
|
import { GetSpeakerSearchTaskCommandInput, GetSpeakerSearchTaskCommandOutput } from "./commands/GetSpeakerSearchTaskCommand";
|
|
42
43
|
import { GetVoiceConnectorCommandInput, GetVoiceConnectorCommandOutput } from "./commands/GetVoiceConnectorCommand";
|
|
43
44
|
import { GetVoiceConnectorEmergencyCallingConfigurationCommandInput, GetVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "./commands/GetVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
45
|
+
import { GetVoiceConnectorExternalSystemsConfigurationCommandInput, GetVoiceConnectorExternalSystemsConfigurationCommandOutput } from "./commands/GetVoiceConnectorExternalSystemsConfigurationCommand";
|
|
44
46
|
import { GetVoiceConnectorGroupCommandInput, GetVoiceConnectorGroupCommandOutput } from "./commands/GetVoiceConnectorGroupCommand";
|
|
45
47
|
import { GetVoiceConnectorLoggingConfigurationCommandInput, GetVoiceConnectorLoggingConfigurationCommandOutput } from "./commands/GetVoiceConnectorLoggingConfigurationCommand";
|
|
46
48
|
import { GetVoiceConnectorOriginationCommandInput, GetVoiceConnectorOriginationCommandOutput } from "./commands/GetVoiceConnectorOriginationCommand";
|
|
@@ -67,6 +69,7 @@ import { ListVoiceProfilesCommandInput, ListVoiceProfilesCommandOutput } from ".
|
|
|
67
69
|
import { PutSipMediaApplicationAlexaSkillConfigurationCommandInput, PutSipMediaApplicationAlexaSkillConfigurationCommandOutput } from "./commands/PutSipMediaApplicationAlexaSkillConfigurationCommand";
|
|
68
70
|
import { PutSipMediaApplicationLoggingConfigurationCommandInput, PutSipMediaApplicationLoggingConfigurationCommandOutput } from "./commands/PutSipMediaApplicationLoggingConfigurationCommand";
|
|
69
71
|
import { PutVoiceConnectorEmergencyCallingConfigurationCommandInput, PutVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "./commands/PutVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
72
|
+
import { PutVoiceConnectorExternalSystemsConfigurationCommandInput, PutVoiceConnectorExternalSystemsConfigurationCommandOutput } from "./commands/PutVoiceConnectorExternalSystemsConfigurationCommand";
|
|
70
73
|
import { PutVoiceConnectorLoggingConfigurationCommandInput, PutVoiceConnectorLoggingConfigurationCommandOutput } from "./commands/PutVoiceConnectorLoggingConfigurationCommand";
|
|
71
74
|
import { PutVoiceConnectorOriginationCommandInput, PutVoiceConnectorOriginationCommandOutput } from "./commands/PutVoiceConnectorOriginationCommand";
|
|
72
75
|
import { PutVoiceConnectorProxyCommandInput, PutVoiceConnectorProxyCommandOutput } from "./commands/PutVoiceConnectorProxyCommand";
|
|
@@ -208,6 +211,12 @@ export interface ChimeSDKVoice {
|
|
|
208
211
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
209
212
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
210
213
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
214
|
+
/**
|
|
215
|
+
* @see {@link DeleteVoiceConnectorExternalSystemsConfigurationCommand}
|
|
216
|
+
*/
|
|
217
|
+
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput>;
|
|
218
|
+
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
219
|
+
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
211
220
|
/**
|
|
212
221
|
* @see {@link DeleteVoiceConnectorGroupCommand}
|
|
213
222
|
*/
|
|
@@ -342,6 +351,12 @@ export interface ChimeSDKVoice {
|
|
|
342
351
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
343
352
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
344
353
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
354
|
+
/**
|
|
355
|
+
* @see {@link GetVoiceConnectorExternalSystemsConfigurationCommand}
|
|
356
|
+
*/
|
|
357
|
+
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorExternalSystemsConfigurationCommandOutput>;
|
|
358
|
+
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
359
|
+
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
345
360
|
/**
|
|
346
361
|
* @see {@link GetVoiceConnectorGroupCommand}
|
|
347
362
|
*/
|
|
@@ -506,6 +521,12 @@ export interface ChimeSDKVoice {
|
|
|
506
521
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
507
522
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
508
523
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
524
|
+
/**
|
|
525
|
+
* @see {@link PutVoiceConnectorExternalSystemsConfigurationCommand}
|
|
526
|
+
*/
|
|
527
|
+
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorExternalSystemsConfigurationCommandOutput>;
|
|
528
|
+
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
529
|
+
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
509
530
|
/**
|
|
510
531
|
* @see {@link PutVoiceConnectorLoggingConfigurationCommand}
|
|
511
532
|
*/
|
|
@@ -26,6 +26,7 @@ import { DeleteSipMediaApplicationCommandInput, DeleteSipMediaApplicationCommand
|
|
|
26
26
|
import { DeleteSipRuleCommandInput, DeleteSipRuleCommandOutput } from "./commands/DeleteSipRuleCommand";
|
|
27
27
|
import { DeleteVoiceConnectorCommandInput, DeleteVoiceConnectorCommandOutput } from "./commands/DeleteVoiceConnectorCommand";
|
|
28
28
|
import { DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "./commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
29
|
+
import { DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput } from "./commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand";
|
|
29
30
|
import { DeleteVoiceConnectorGroupCommandInput, DeleteVoiceConnectorGroupCommandOutput } from "./commands/DeleteVoiceConnectorGroupCommand";
|
|
30
31
|
import { DeleteVoiceConnectorOriginationCommandInput, DeleteVoiceConnectorOriginationCommandOutput } from "./commands/DeleteVoiceConnectorOriginationCommand";
|
|
31
32
|
import { DeleteVoiceConnectorProxyCommandInput, DeleteVoiceConnectorProxyCommandOutput } from "./commands/DeleteVoiceConnectorProxyCommand";
|
|
@@ -48,6 +49,7 @@ import { GetSipRuleCommandInput, GetSipRuleCommandOutput } from "./commands/GetS
|
|
|
48
49
|
import { GetSpeakerSearchTaskCommandInput, GetSpeakerSearchTaskCommandOutput } from "./commands/GetSpeakerSearchTaskCommand";
|
|
49
50
|
import { GetVoiceConnectorCommandInput, GetVoiceConnectorCommandOutput } from "./commands/GetVoiceConnectorCommand";
|
|
50
51
|
import { GetVoiceConnectorEmergencyCallingConfigurationCommandInput, GetVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "./commands/GetVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
52
|
+
import { GetVoiceConnectorExternalSystemsConfigurationCommandInput, GetVoiceConnectorExternalSystemsConfigurationCommandOutput } from "./commands/GetVoiceConnectorExternalSystemsConfigurationCommand";
|
|
51
53
|
import { GetVoiceConnectorGroupCommandInput, GetVoiceConnectorGroupCommandOutput } from "./commands/GetVoiceConnectorGroupCommand";
|
|
52
54
|
import { GetVoiceConnectorLoggingConfigurationCommandInput, GetVoiceConnectorLoggingConfigurationCommandOutput } from "./commands/GetVoiceConnectorLoggingConfigurationCommand";
|
|
53
55
|
import { GetVoiceConnectorOriginationCommandInput, GetVoiceConnectorOriginationCommandOutput } from "./commands/GetVoiceConnectorOriginationCommand";
|
|
@@ -74,6 +76,7 @@ import { ListVoiceProfilesCommandInput, ListVoiceProfilesCommandOutput } from ".
|
|
|
74
76
|
import { PutSipMediaApplicationAlexaSkillConfigurationCommandInput, PutSipMediaApplicationAlexaSkillConfigurationCommandOutput } from "./commands/PutSipMediaApplicationAlexaSkillConfigurationCommand";
|
|
75
77
|
import { PutSipMediaApplicationLoggingConfigurationCommandInput, PutSipMediaApplicationLoggingConfigurationCommandOutput } from "./commands/PutSipMediaApplicationLoggingConfigurationCommand";
|
|
76
78
|
import { PutVoiceConnectorEmergencyCallingConfigurationCommandInput, PutVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "./commands/PutVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
79
|
+
import { PutVoiceConnectorExternalSystemsConfigurationCommandInput, PutVoiceConnectorExternalSystemsConfigurationCommandOutput } from "./commands/PutVoiceConnectorExternalSystemsConfigurationCommand";
|
|
77
80
|
import { PutVoiceConnectorLoggingConfigurationCommandInput, PutVoiceConnectorLoggingConfigurationCommandOutput } from "./commands/PutVoiceConnectorLoggingConfigurationCommand";
|
|
78
81
|
import { PutVoiceConnectorOriginationCommandInput, PutVoiceConnectorOriginationCommandOutput } from "./commands/PutVoiceConnectorOriginationCommand";
|
|
79
82
|
import { PutVoiceConnectorProxyCommandInput, PutVoiceConnectorProxyCommandOutput } from "./commands/PutVoiceConnectorProxyCommand";
|
|
@@ -106,11 +109,11 @@ export { __Client };
|
|
|
106
109
|
/**
|
|
107
110
|
* @public
|
|
108
111
|
*/
|
|
109
|
-
export type ServiceInputTypes = AssociatePhoneNumbersWithVoiceConnectorCommandInput | AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput | BatchDeletePhoneNumberCommandInput | BatchUpdatePhoneNumberCommandInput | CreatePhoneNumberOrderCommandInput | CreateProxySessionCommandInput | CreateSipMediaApplicationCallCommandInput | CreateSipMediaApplicationCommandInput | CreateSipRuleCommandInput | CreateVoiceConnectorCommandInput | CreateVoiceConnectorGroupCommandInput | CreateVoiceProfileCommandInput | CreateVoiceProfileDomainCommandInput | DeletePhoneNumberCommandInput | DeleteProxySessionCommandInput | DeleteSipMediaApplicationCommandInput | DeleteSipRuleCommandInput | DeleteVoiceConnectorCommandInput | DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput | DeleteVoiceConnectorGroupCommandInput | DeleteVoiceConnectorOriginationCommandInput | DeleteVoiceConnectorProxyCommandInput | DeleteVoiceConnectorStreamingConfigurationCommandInput | DeleteVoiceConnectorTerminationCommandInput | DeleteVoiceConnectorTerminationCredentialsCommandInput | DeleteVoiceProfileCommandInput | DeleteVoiceProfileDomainCommandInput | DisassociatePhoneNumbersFromVoiceConnectorCommandInput | DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput | GetGlobalSettingsCommandInput | GetPhoneNumberCommandInput | GetPhoneNumberOrderCommandInput | GetPhoneNumberSettingsCommandInput | GetProxySessionCommandInput | GetSipMediaApplicationAlexaSkillConfigurationCommandInput | GetSipMediaApplicationCommandInput | GetSipMediaApplicationLoggingConfigurationCommandInput | GetSipRuleCommandInput | GetSpeakerSearchTaskCommandInput | GetVoiceConnectorCommandInput | GetVoiceConnectorEmergencyCallingConfigurationCommandInput | GetVoiceConnectorGroupCommandInput | GetVoiceConnectorLoggingConfigurationCommandInput | GetVoiceConnectorOriginationCommandInput | GetVoiceConnectorProxyCommandInput | GetVoiceConnectorStreamingConfigurationCommandInput | GetVoiceConnectorTerminationCommandInput | GetVoiceConnectorTerminationHealthCommandInput | GetVoiceProfileCommandInput | GetVoiceProfileDomainCommandInput | GetVoiceToneAnalysisTaskCommandInput | ListAvailableVoiceConnectorRegionsCommandInput | ListPhoneNumberOrdersCommandInput | ListPhoneNumbersCommandInput | ListProxySessionsCommandInput | ListSipMediaApplicationsCommandInput | ListSipRulesCommandInput | ListSupportedPhoneNumberCountriesCommandInput | ListTagsForResourceCommandInput | ListVoiceConnectorGroupsCommandInput | ListVoiceConnectorTerminationCredentialsCommandInput | ListVoiceConnectorsCommandInput | ListVoiceProfileDomainsCommandInput | ListVoiceProfilesCommandInput | PutSipMediaApplicationAlexaSkillConfigurationCommandInput | PutSipMediaApplicationLoggingConfigurationCommandInput | PutVoiceConnectorEmergencyCallingConfigurationCommandInput | PutVoiceConnectorLoggingConfigurationCommandInput | PutVoiceConnectorOriginationCommandInput | PutVoiceConnectorProxyCommandInput | PutVoiceConnectorStreamingConfigurationCommandInput | PutVoiceConnectorTerminationCommandInput | PutVoiceConnectorTerminationCredentialsCommandInput | RestorePhoneNumberCommandInput | SearchAvailablePhoneNumbersCommandInput | StartSpeakerSearchTaskCommandInput | StartVoiceToneAnalysisTaskCommandInput | StopSpeakerSearchTaskCommandInput | StopVoiceToneAnalysisTaskCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateGlobalSettingsCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberSettingsCommandInput | UpdateProxySessionCommandInput | UpdateSipMediaApplicationCallCommandInput | UpdateSipMediaApplicationCommandInput | UpdateSipRuleCommandInput | UpdateVoiceConnectorCommandInput | UpdateVoiceConnectorGroupCommandInput | UpdateVoiceProfileCommandInput | UpdateVoiceProfileDomainCommandInput | ValidateE911AddressCommandInput;
|
|
112
|
+
export type ServiceInputTypes = AssociatePhoneNumbersWithVoiceConnectorCommandInput | AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput | BatchDeletePhoneNumberCommandInput | BatchUpdatePhoneNumberCommandInput | CreatePhoneNumberOrderCommandInput | CreateProxySessionCommandInput | CreateSipMediaApplicationCallCommandInput | CreateSipMediaApplicationCommandInput | CreateSipRuleCommandInput | CreateVoiceConnectorCommandInput | CreateVoiceConnectorGroupCommandInput | CreateVoiceProfileCommandInput | CreateVoiceProfileDomainCommandInput | DeletePhoneNumberCommandInput | DeleteProxySessionCommandInput | DeleteSipMediaApplicationCommandInput | DeleteSipRuleCommandInput | DeleteVoiceConnectorCommandInput | DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput | DeleteVoiceConnectorExternalSystemsConfigurationCommandInput | DeleteVoiceConnectorGroupCommandInput | DeleteVoiceConnectorOriginationCommandInput | DeleteVoiceConnectorProxyCommandInput | DeleteVoiceConnectorStreamingConfigurationCommandInput | DeleteVoiceConnectorTerminationCommandInput | DeleteVoiceConnectorTerminationCredentialsCommandInput | DeleteVoiceProfileCommandInput | DeleteVoiceProfileDomainCommandInput | DisassociatePhoneNumbersFromVoiceConnectorCommandInput | DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput | GetGlobalSettingsCommandInput | GetPhoneNumberCommandInput | GetPhoneNumberOrderCommandInput | GetPhoneNumberSettingsCommandInput | GetProxySessionCommandInput | GetSipMediaApplicationAlexaSkillConfigurationCommandInput | GetSipMediaApplicationCommandInput | GetSipMediaApplicationLoggingConfigurationCommandInput | GetSipRuleCommandInput | GetSpeakerSearchTaskCommandInput | GetVoiceConnectorCommandInput | GetVoiceConnectorEmergencyCallingConfigurationCommandInput | GetVoiceConnectorExternalSystemsConfigurationCommandInput | GetVoiceConnectorGroupCommandInput | GetVoiceConnectorLoggingConfigurationCommandInput | GetVoiceConnectorOriginationCommandInput | GetVoiceConnectorProxyCommandInput | GetVoiceConnectorStreamingConfigurationCommandInput | GetVoiceConnectorTerminationCommandInput | GetVoiceConnectorTerminationHealthCommandInput | GetVoiceProfileCommandInput | GetVoiceProfileDomainCommandInput | GetVoiceToneAnalysisTaskCommandInput | ListAvailableVoiceConnectorRegionsCommandInput | ListPhoneNumberOrdersCommandInput | ListPhoneNumbersCommandInput | ListProxySessionsCommandInput | ListSipMediaApplicationsCommandInput | ListSipRulesCommandInput | ListSupportedPhoneNumberCountriesCommandInput | ListTagsForResourceCommandInput | ListVoiceConnectorGroupsCommandInput | ListVoiceConnectorTerminationCredentialsCommandInput | ListVoiceConnectorsCommandInput | ListVoiceProfileDomainsCommandInput | ListVoiceProfilesCommandInput | PutSipMediaApplicationAlexaSkillConfigurationCommandInput | PutSipMediaApplicationLoggingConfigurationCommandInput | PutVoiceConnectorEmergencyCallingConfigurationCommandInput | PutVoiceConnectorExternalSystemsConfigurationCommandInput | PutVoiceConnectorLoggingConfigurationCommandInput | PutVoiceConnectorOriginationCommandInput | PutVoiceConnectorProxyCommandInput | PutVoiceConnectorStreamingConfigurationCommandInput | PutVoiceConnectorTerminationCommandInput | PutVoiceConnectorTerminationCredentialsCommandInput | RestorePhoneNumberCommandInput | SearchAvailablePhoneNumbersCommandInput | StartSpeakerSearchTaskCommandInput | StartVoiceToneAnalysisTaskCommandInput | StopSpeakerSearchTaskCommandInput | StopVoiceToneAnalysisTaskCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateGlobalSettingsCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberSettingsCommandInput | UpdateProxySessionCommandInput | UpdateSipMediaApplicationCallCommandInput | UpdateSipMediaApplicationCommandInput | UpdateSipRuleCommandInput | UpdateVoiceConnectorCommandInput | UpdateVoiceConnectorGroupCommandInput | UpdateVoiceProfileCommandInput | UpdateVoiceProfileDomainCommandInput | ValidateE911AddressCommandInput;
|
|
110
113
|
/**
|
|
111
114
|
* @public
|
|
112
115
|
*/
|
|
113
|
-
export type ServiceOutputTypes = AssociatePhoneNumbersWithVoiceConnectorCommandOutput | AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput | BatchDeletePhoneNumberCommandOutput | BatchUpdatePhoneNumberCommandOutput | CreatePhoneNumberOrderCommandOutput | CreateProxySessionCommandOutput | CreateSipMediaApplicationCallCommandOutput | CreateSipMediaApplicationCommandOutput | CreateSipRuleCommandOutput | CreateVoiceConnectorCommandOutput | CreateVoiceConnectorGroupCommandOutput | CreateVoiceProfileCommandOutput | CreateVoiceProfileDomainCommandOutput | DeletePhoneNumberCommandOutput | DeleteProxySessionCommandOutput | DeleteSipMediaApplicationCommandOutput | DeleteSipRuleCommandOutput | DeleteVoiceConnectorCommandOutput | DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput | DeleteVoiceConnectorGroupCommandOutput | DeleteVoiceConnectorOriginationCommandOutput | DeleteVoiceConnectorProxyCommandOutput | DeleteVoiceConnectorStreamingConfigurationCommandOutput | DeleteVoiceConnectorTerminationCommandOutput | DeleteVoiceConnectorTerminationCredentialsCommandOutput | DeleteVoiceProfileCommandOutput | DeleteVoiceProfileDomainCommandOutput | DisassociatePhoneNumbersFromVoiceConnectorCommandOutput | DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput | GetGlobalSettingsCommandOutput | GetPhoneNumberCommandOutput | GetPhoneNumberOrderCommandOutput | GetPhoneNumberSettingsCommandOutput | GetProxySessionCommandOutput | GetSipMediaApplicationAlexaSkillConfigurationCommandOutput | GetSipMediaApplicationCommandOutput | GetSipMediaApplicationLoggingConfigurationCommandOutput | GetSipRuleCommandOutput | GetSpeakerSearchTaskCommandOutput | GetVoiceConnectorCommandOutput | GetVoiceConnectorEmergencyCallingConfigurationCommandOutput | GetVoiceConnectorGroupCommandOutput | GetVoiceConnectorLoggingConfigurationCommandOutput | GetVoiceConnectorOriginationCommandOutput | GetVoiceConnectorProxyCommandOutput | GetVoiceConnectorStreamingConfigurationCommandOutput | GetVoiceConnectorTerminationCommandOutput | GetVoiceConnectorTerminationHealthCommandOutput | GetVoiceProfileCommandOutput | GetVoiceProfileDomainCommandOutput | GetVoiceToneAnalysisTaskCommandOutput | ListAvailableVoiceConnectorRegionsCommandOutput | ListPhoneNumberOrdersCommandOutput | ListPhoneNumbersCommandOutput | ListProxySessionsCommandOutput | ListSipMediaApplicationsCommandOutput | ListSipRulesCommandOutput | ListSupportedPhoneNumberCountriesCommandOutput | ListTagsForResourceCommandOutput | ListVoiceConnectorGroupsCommandOutput | ListVoiceConnectorTerminationCredentialsCommandOutput | ListVoiceConnectorsCommandOutput | ListVoiceProfileDomainsCommandOutput | ListVoiceProfilesCommandOutput | PutSipMediaApplicationAlexaSkillConfigurationCommandOutput | PutSipMediaApplicationLoggingConfigurationCommandOutput | PutVoiceConnectorEmergencyCallingConfigurationCommandOutput | PutVoiceConnectorLoggingConfigurationCommandOutput | PutVoiceConnectorOriginationCommandOutput | PutVoiceConnectorProxyCommandOutput | PutVoiceConnectorStreamingConfigurationCommandOutput | PutVoiceConnectorTerminationCommandOutput | PutVoiceConnectorTerminationCredentialsCommandOutput | RestorePhoneNumberCommandOutput | SearchAvailablePhoneNumbersCommandOutput | StartSpeakerSearchTaskCommandOutput | StartVoiceToneAnalysisTaskCommandOutput | StopSpeakerSearchTaskCommandOutput | StopVoiceToneAnalysisTaskCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateGlobalSettingsCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberSettingsCommandOutput | UpdateProxySessionCommandOutput | UpdateSipMediaApplicationCallCommandOutput | UpdateSipMediaApplicationCommandOutput | UpdateSipRuleCommandOutput | UpdateVoiceConnectorCommandOutput | UpdateVoiceConnectorGroupCommandOutput | UpdateVoiceProfileCommandOutput | UpdateVoiceProfileDomainCommandOutput | ValidateE911AddressCommandOutput;
|
|
116
|
+
export type ServiceOutputTypes = AssociatePhoneNumbersWithVoiceConnectorCommandOutput | AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput | BatchDeletePhoneNumberCommandOutput | BatchUpdatePhoneNumberCommandOutput | CreatePhoneNumberOrderCommandOutput | CreateProxySessionCommandOutput | CreateSipMediaApplicationCallCommandOutput | CreateSipMediaApplicationCommandOutput | CreateSipRuleCommandOutput | CreateVoiceConnectorCommandOutput | CreateVoiceConnectorGroupCommandOutput | CreateVoiceProfileCommandOutput | CreateVoiceProfileDomainCommandOutput | DeletePhoneNumberCommandOutput | DeleteProxySessionCommandOutput | DeleteSipMediaApplicationCommandOutput | DeleteSipRuleCommandOutput | DeleteVoiceConnectorCommandOutput | DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput | DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput | DeleteVoiceConnectorGroupCommandOutput | DeleteVoiceConnectorOriginationCommandOutput | DeleteVoiceConnectorProxyCommandOutput | DeleteVoiceConnectorStreamingConfigurationCommandOutput | DeleteVoiceConnectorTerminationCommandOutput | DeleteVoiceConnectorTerminationCredentialsCommandOutput | DeleteVoiceProfileCommandOutput | DeleteVoiceProfileDomainCommandOutput | DisassociatePhoneNumbersFromVoiceConnectorCommandOutput | DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput | GetGlobalSettingsCommandOutput | GetPhoneNumberCommandOutput | GetPhoneNumberOrderCommandOutput | GetPhoneNumberSettingsCommandOutput | GetProxySessionCommandOutput | GetSipMediaApplicationAlexaSkillConfigurationCommandOutput | GetSipMediaApplicationCommandOutput | GetSipMediaApplicationLoggingConfigurationCommandOutput | GetSipRuleCommandOutput | GetSpeakerSearchTaskCommandOutput | GetVoiceConnectorCommandOutput | GetVoiceConnectorEmergencyCallingConfigurationCommandOutput | GetVoiceConnectorExternalSystemsConfigurationCommandOutput | GetVoiceConnectorGroupCommandOutput | GetVoiceConnectorLoggingConfigurationCommandOutput | GetVoiceConnectorOriginationCommandOutput | GetVoiceConnectorProxyCommandOutput | GetVoiceConnectorStreamingConfigurationCommandOutput | GetVoiceConnectorTerminationCommandOutput | GetVoiceConnectorTerminationHealthCommandOutput | GetVoiceProfileCommandOutput | GetVoiceProfileDomainCommandOutput | GetVoiceToneAnalysisTaskCommandOutput | ListAvailableVoiceConnectorRegionsCommandOutput | ListPhoneNumberOrdersCommandOutput | ListPhoneNumbersCommandOutput | ListProxySessionsCommandOutput | ListSipMediaApplicationsCommandOutput | ListSipRulesCommandOutput | ListSupportedPhoneNumberCountriesCommandOutput | ListTagsForResourceCommandOutput | ListVoiceConnectorGroupsCommandOutput | ListVoiceConnectorTerminationCredentialsCommandOutput | ListVoiceConnectorsCommandOutput | ListVoiceProfileDomainsCommandOutput | ListVoiceProfilesCommandOutput | PutSipMediaApplicationAlexaSkillConfigurationCommandOutput | PutSipMediaApplicationLoggingConfigurationCommandOutput | PutVoiceConnectorEmergencyCallingConfigurationCommandOutput | PutVoiceConnectorExternalSystemsConfigurationCommandOutput | PutVoiceConnectorLoggingConfigurationCommandOutput | PutVoiceConnectorOriginationCommandOutput | PutVoiceConnectorProxyCommandOutput | PutVoiceConnectorStreamingConfigurationCommandOutput | PutVoiceConnectorTerminationCommandOutput | PutVoiceConnectorTerminationCredentialsCommandOutput | RestorePhoneNumberCommandOutput | SearchAvailablePhoneNumbersCommandOutput | StartSpeakerSearchTaskCommandOutput | StartVoiceToneAnalysisTaskCommandOutput | StopSpeakerSearchTaskCommandOutput | StopVoiceToneAnalysisTaskCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateGlobalSettingsCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberSettingsCommandOutput | UpdateProxySessionCommandOutput | UpdateSipMediaApplicationCallCommandOutput | UpdateSipMediaApplicationCommandOutput | UpdateSipRuleCommandOutput | UpdateVoiceConnectorCommandOutput | UpdateVoiceConnectorGroupCommandOutput | UpdateVoiceProfileCommandOutput | UpdateVoiceProfileDomainCommandOutput | ValidateE911AddressCommandOutput;
|
|
114
117
|
/**
|
|
115
118
|
* @public
|
|
116
119
|
*/
|
|
@@ -47,6 +47,7 @@ declare const CreateVoiceConnectorCommand_base: {
|
|
|
47
47
|
* Value: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
|
+
* IntegrationType: "CONNECT_CALL_TRANSFER_CONNECTOR" || "CONNECT_ANALYTICS_CONNECTOR",
|
|
50
51
|
* };
|
|
51
52
|
* const command = new CreateVoiceConnectorCommand(input);
|
|
52
53
|
* const response = await client.send(command);
|
|
@@ -60,6 +61,7 @@ declare const CreateVoiceConnectorCommand_base: {
|
|
|
60
61
|
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
61
62
|
* // UpdatedTimestamp: new Date("TIMESTAMP"),
|
|
62
63
|
* // VoiceConnectorArn: "STRING_VALUE",
|
|
64
|
+
* // IntegrationType: "CONNECT_CALL_TRANSFER_CONNECTOR" || "CONNECT_ANALYTICS_CONNECTOR",
|
|
63
65
|
* // },
|
|
64
66
|
* // };
|
|
65
67
|
*
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient";
|
|
4
|
+
import { DeleteVoiceConnectorExternalSystemsConfigurationRequest } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteVoiceConnectorExternalSystemsConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteVoiceConnectorExternalSystemsConfigurationCommandInput extends DeleteVoiceConnectorExternalSystemsConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteVoiceConnectorExternalSystemsConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteVoiceConnectorExternalSystemsConfigurationCommand_base: {
|
|
25
|
+
new (input: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput, ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput, ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the external systems configuration for a Voice Connector.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { ChimeSDKVoiceClient, DeleteVoiceConnectorExternalSystemsConfigurationCommand } from "@aws-sdk/client-chime-sdk-voice"; // ES Modules import
|
|
35
|
+
* // const { ChimeSDKVoiceClient, DeleteVoiceConnectorExternalSystemsConfigurationCommand } = require("@aws-sdk/client-chime-sdk-voice"); // CommonJS import
|
|
36
|
+
* const client = new ChimeSDKVoiceClient(config);
|
|
37
|
+
* const input = { // DeleteVoiceConnectorExternalSystemsConfigurationRequest
|
|
38
|
+
* VoiceConnectorId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteVoiceConnectorExternalSystemsConfigurationCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param DeleteVoiceConnectorExternalSystemsConfigurationCommandInput - {@link DeleteVoiceConnectorExternalSystemsConfigurationCommandInput}
|
|
47
|
+
* @returns {@link DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput}
|
|
48
|
+
* @see {@link DeleteVoiceConnectorExternalSystemsConfigurationCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link ChimeSDKVoiceClientResolvedConfig | config} for ChimeSDKVoiceClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link BadRequestException} (client fault)
|
|
53
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
56
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link NotFoundException} (client fault)
|
|
59
|
+
* <p>The requested resource couldn't be found.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
62
|
+
* <p>The service encountered an unexpected error.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
65
|
+
* <p>The service is currently unavailable.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottledClientException} (client fault)
|
|
68
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link UnauthorizedClientException} (client fault)
|
|
71
|
+
* <p>The client isn't authorized to request a resource.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ChimeSDKVoiceServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ChimeSDKVoice service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class DeleteVoiceConnectorExternalSystemsConfigurationCommand extends DeleteVoiceConnectorExternalSystemsConfigurationCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: DeleteVoiceConnectorExternalSystemsConfigurationRequest;
|
|
83
|
+
output: {};
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput;
|
|
87
|
+
output: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -50,6 +50,7 @@ declare const GetVoiceConnectorCommand_base: {
|
|
|
50
50
|
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
51
51
|
* // UpdatedTimestamp: new Date("TIMESTAMP"),
|
|
52
52
|
* // VoiceConnectorArn: "STRING_VALUE",
|
|
53
|
+
* // IntegrationType: "CONNECT_CALL_TRANSFER_CONNECTOR" || "CONNECT_ANALYTICS_CONNECTOR",
|
|
53
54
|
* // },
|
|
54
55
|
* // };
|
|
55
56
|
*
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient";
|
|
4
|
+
import { GetVoiceConnectorExternalSystemsConfigurationRequest, GetVoiceConnectorExternalSystemsConfigurationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetVoiceConnectorExternalSystemsConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetVoiceConnectorExternalSystemsConfigurationCommandInput extends GetVoiceConnectorExternalSystemsConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetVoiceConnectorExternalSystemsConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetVoiceConnectorExternalSystemsConfigurationCommandOutput extends GetVoiceConnectorExternalSystemsConfigurationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetVoiceConnectorExternalSystemsConfigurationCommand_base: {
|
|
25
|
+
new (input: GetVoiceConnectorExternalSystemsConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetVoiceConnectorExternalSystemsConfigurationCommandInput, GetVoiceConnectorExternalSystemsConfigurationCommandOutput, ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetVoiceConnectorExternalSystemsConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetVoiceConnectorExternalSystemsConfigurationCommandInput, GetVoiceConnectorExternalSystemsConfigurationCommandOutput, ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets information about an external systems configuration for a Voice
|
|
31
|
+
* Connector.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { ChimeSDKVoiceClient, GetVoiceConnectorExternalSystemsConfigurationCommand } from "@aws-sdk/client-chime-sdk-voice"; // ES Modules import
|
|
36
|
+
* // const { ChimeSDKVoiceClient, GetVoiceConnectorExternalSystemsConfigurationCommand } = require("@aws-sdk/client-chime-sdk-voice"); // CommonJS import
|
|
37
|
+
* const client = new ChimeSDKVoiceClient(config);
|
|
38
|
+
* const input = { // GetVoiceConnectorExternalSystemsConfigurationRequest
|
|
39
|
+
* VoiceConnectorId: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetVoiceConnectorExternalSystemsConfigurationCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetVoiceConnectorExternalSystemsConfigurationResponse
|
|
44
|
+
* // ExternalSystemsConfiguration: { // ExternalSystemsConfiguration
|
|
45
|
+
* // SessionBorderControllerTypes: [ // SessionBorderControllerTypeList
|
|
46
|
+
* // "RIBBON_SBC" || "ORACLE_ACME_PACKET_SBC" || "AVAYA_SBCE" || "CISCO_UNIFIED_BORDER_ELEMENT" || "AUDIOCODES_MEDIANT_SBC",
|
|
47
|
+
* // ],
|
|
48
|
+
* // ContactCenterSystemTypes: [ // ContactCenterSystemTypeList
|
|
49
|
+
* // "GENESYS_ENGAGE_ON_PREMISES" || "AVAYA_AURA_CALL_CENTER_ELITE" || "AVAYA_AURA_CONTACT_CENTER" || "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param GetVoiceConnectorExternalSystemsConfigurationCommandInput - {@link GetVoiceConnectorExternalSystemsConfigurationCommandInput}
|
|
57
|
+
* @returns {@link GetVoiceConnectorExternalSystemsConfigurationCommandOutput}
|
|
58
|
+
* @see {@link GetVoiceConnectorExternalSystemsConfigurationCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link GetVoiceConnectorExternalSystemsConfigurationCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link ChimeSDKVoiceClientResolvedConfig | config} for ChimeSDKVoiceClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link BadRequestException} (client fault)
|
|
63
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
66
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link NotFoundException} (client fault)
|
|
69
|
+
* <p>The requested resource couldn't be found.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
72
|
+
* <p>The service encountered an unexpected error.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
75
|
+
* <p>The service is currently unavailable.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottledClientException} (client fault)
|
|
78
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link UnauthorizedClientException} (client fault)
|
|
81
|
+
* <p>The client isn't authorized to request a resource.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ChimeSDKVoiceServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from ChimeSDKVoice service.</p>
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class GetVoiceConnectorExternalSystemsConfigurationCommand extends GetVoiceConnectorExternalSystemsConfigurationCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: GetVoiceConnectorExternalSystemsConfigurationRequest;
|
|
93
|
+
output: GetVoiceConnectorExternalSystemsConfigurationResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: GetVoiceConnectorExternalSystemsConfigurationCommandInput;
|
|
97
|
+
output: GetVoiceConnectorExternalSystemsConfigurationCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -52,6 +52,7 @@ declare const ListVoiceConnectorsCommand_base: {
|
|
|
52
52
|
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
53
53
|
* // UpdatedTimestamp: new Date("TIMESTAMP"),
|
|
54
54
|
* // VoiceConnectorArn: "STRING_VALUE",
|
|
55
|
+
* // IntegrationType: "CONNECT_CALL_TRANSFER_CONNECTOR" || "CONNECT_ANALYTICS_CONNECTOR",
|
|
55
56
|
* // },
|
|
56
57
|
* // ],
|
|
57
58
|
* // NextToken: "STRING_VALUE",
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient";
|
|
4
|
+
import { PutVoiceConnectorExternalSystemsConfigurationRequest, PutVoiceConnectorExternalSystemsConfigurationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link PutVoiceConnectorExternalSystemsConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface PutVoiceConnectorExternalSystemsConfigurationCommandInput extends PutVoiceConnectorExternalSystemsConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link PutVoiceConnectorExternalSystemsConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface PutVoiceConnectorExternalSystemsConfigurationCommandOutput extends PutVoiceConnectorExternalSystemsConfigurationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const PutVoiceConnectorExternalSystemsConfigurationCommand_base: {
|
|
25
|
+
new (input: PutVoiceConnectorExternalSystemsConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutVoiceConnectorExternalSystemsConfigurationCommandInput, PutVoiceConnectorExternalSystemsConfigurationCommandOutput, ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: PutVoiceConnectorExternalSystemsConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutVoiceConnectorExternalSystemsConfigurationCommandInput, PutVoiceConnectorExternalSystemsConfigurationCommandOutput, ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Adds an external systems configuration to a Voice Connector.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { ChimeSDKVoiceClient, PutVoiceConnectorExternalSystemsConfigurationCommand } from "@aws-sdk/client-chime-sdk-voice"; // ES Modules import
|
|
35
|
+
* // const { ChimeSDKVoiceClient, PutVoiceConnectorExternalSystemsConfigurationCommand } = require("@aws-sdk/client-chime-sdk-voice"); // CommonJS import
|
|
36
|
+
* const client = new ChimeSDKVoiceClient(config);
|
|
37
|
+
* const input = { // PutVoiceConnectorExternalSystemsConfigurationRequest
|
|
38
|
+
* VoiceConnectorId: "STRING_VALUE", // required
|
|
39
|
+
* SessionBorderControllerTypes: [ // SessionBorderControllerTypeList
|
|
40
|
+
* "RIBBON_SBC" || "ORACLE_ACME_PACKET_SBC" || "AVAYA_SBCE" || "CISCO_UNIFIED_BORDER_ELEMENT" || "AUDIOCODES_MEDIANT_SBC",
|
|
41
|
+
* ],
|
|
42
|
+
* ContactCenterSystemTypes: [ // ContactCenterSystemTypeList
|
|
43
|
+
* "GENESYS_ENGAGE_ON_PREMISES" || "AVAYA_AURA_CALL_CENTER_ELITE" || "AVAYA_AURA_CONTACT_CENTER" || "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE",
|
|
44
|
+
* ],
|
|
45
|
+
* };
|
|
46
|
+
* const command = new PutVoiceConnectorExternalSystemsConfigurationCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // PutVoiceConnectorExternalSystemsConfigurationResponse
|
|
49
|
+
* // ExternalSystemsConfiguration: { // ExternalSystemsConfiguration
|
|
50
|
+
* // SessionBorderControllerTypes: [ // SessionBorderControllerTypeList
|
|
51
|
+
* // "RIBBON_SBC" || "ORACLE_ACME_PACKET_SBC" || "AVAYA_SBCE" || "CISCO_UNIFIED_BORDER_ELEMENT" || "AUDIOCODES_MEDIANT_SBC",
|
|
52
|
+
* // ],
|
|
53
|
+
* // ContactCenterSystemTypes: [ // ContactCenterSystemTypeList
|
|
54
|
+
* // "GENESYS_ENGAGE_ON_PREMISES" || "AVAYA_AURA_CALL_CENTER_ELITE" || "AVAYA_AURA_CONTACT_CENTER" || "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param PutVoiceConnectorExternalSystemsConfigurationCommandInput - {@link PutVoiceConnectorExternalSystemsConfigurationCommandInput}
|
|
62
|
+
* @returns {@link PutVoiceConnectorExternalSystemsConfigurationCommandOutput}
|
|
63
|
+
* @see {@link PutVoiceConnectorExternalSystemsConfigurationCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link PutVoiceConnectorExternalSystemsConfigurationCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link ChimeSDKVoiceClientResolvedConfig | config} for ChimeSDKVoiceClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link BadRequestException} (client fault)
|
|
68
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ConflictException} (client fault)
|
|
71
|
+
* <p>Multiple instances of the same request were made simultaneously.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
74
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link NotFoundException} (client fault)
|
|
77
|
+
* <p>The requested resource couldn't be found.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
80
|
+
* <p>The service encountered an unexpected error.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
83
|
+
* <p>The service is currently unavailable.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ThrottledClientException} (client fault)
|
|
86
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link UnauthorizedClientException} (client fault)
|
|
89
|
+
* <p>The client isn't authorized to request a resource.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ChimeSDKVoiceServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from ChimeSDKVoice service.</p>
|
|
93
|
+
*
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class PutVoiceConnectorExternalSystemsConfigurationCommand extends PutVoiceConnectorExternalSystemsConfigurationCommand_base {
|
|
97
|
+
/** @internal type navigation helper, not in runtime. */
|
|
98
|
+
protected static __types: {
|
|
99
|
+
api: {
|
|
100
|
+
input: PutVoiceConnectorExternalSystemsConfigurationRequest;
|
|
101
|
+
output: PutVoiceConnectorExternalSystemsConfigurationResponse;
|
|
102
|
+
};
|
|
103
|
+
sdk: {
|
|
104
|
+
input: PutVoiceConnectorExternalSystemsConfigurationCommandInput;
|
|
105
|
+
output: PutVoiceConnectorExternalSystemsConfigurationCommandOutput;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
}
|
|
@@ -51,6 +51,7 @@ declare const UpdateVoiceConnectorCommand_base: {
|
|
|
51
51
|
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
52
52
|
* // UpdatedTimestamp: new Date("TIMESTAMP"),
|
|
53
53
|
* // VoiceConnectorArn: "STRING_VALUE",
|
|
54
|
+
* // IntegrationType: "CONNECT_CALL_TRANSFER_CONNECTOR" || "CONNECT_ANALYTICS_CONNECTOR",
|
|
54
55
|
* // },
|
|
55
56
|
* // };
|
|
56
57
|
*
|
|
@@ -17,6 +17,7 @@ export * from "./DeleteSipMediaApplicationCommand";
|
|
|
17
17
|
export * from "./DeleteSipRuleCommand";
|
|
18
18
|
export * from "./DeleteVoiceConnectorCommand";
|
|
19
19
|
export * from "./DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
20
|
+
export * from "./DeleteVoiceConnectorExternalSystemsConfigurationCommand";
|
|
20
21
|
export * from "./DeleteVoiceConnectorGroupCommand";
|
|
21
22
|
export * from "./DeleteVoiceConnectorOriginationCommand";
|
|
22
23
|
export * from "./DeleteVoiceConnectorProxyCommand";
|
|
@@ -39,6 +40,7 @@ export * from "./GetSipRuleCommand";
|
|
|
39
40
|
export * from "./GetSpeakerSearchTaskCommand";
|
|
40
41
|
export * from "./GetVoiceConnectorCommand";
|
|
41
42
|
export * from "./GetVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
43
|
+
export * from "./GetVoiceConnectorExternalSystemsConfigurationCommand";
|
|
42
44
|
export * from "./GetVoiceConnectorGroupCommand";
|
|
43
45
|
export * from "./GetVoiceConnectorLoggingConfigurationCommand";
|
|
44
46
|
export * from "./GetVoiceConnectorOriginationCommand";
|
|
@@ -65,6 +67,7 @@ export * from "./ListVoiceProfilesCommand";
|
|
|
65
67
|
export * from "./PutSipMediaApplicationAlexaSkillConfigurationCommand";
|
|
66
68
|
export * from "./PutSipMediaApplicationLoggingConfigurationCommand";
|
|
67
69
|
export * from "./PutVoiceConnectorEmergencyCallingConfigurationCommand";
|
|
70
|
+
export * from "./PutVoiceConnectorExternalSystemsConfigurationCommand";
|
|
68
71
|
export * from "./PutVoiceConnectorLoggingConfigurationCommand";
|
|
69
72
|
export * from "./PutVoiceConnectorOriginationCommand";
|
|
70
73
|
export * from "./PutVoiceConnectorProxyCommand";
|