@aws-sdk/client-chime-sdk-voice 3.987.0 → 3.989.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/dist-cjs/index.js +115 -2764
- package/dist-cjs/models/ChimeSDKVoiceServiceException.js +12 -0
- package/dist-cjs/models/errors.js +208 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2157 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +88 -82
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ChimeSDKVoiceServiceException = require('./models/ChimeSDKVoiceServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2337 +113,6 @@ class ChimeSDKVoiceClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ChimeSDKVoiceServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ChimeSDKVoiceServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends ChimeSDKVoiceServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Code;
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.Code = opts.Code;
|
|
133
|
-
this.Message = opts.Message;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class BadRequestException extends ChimeSDKVoiceServiceException {
|
|
137
|
-
name = "BadRequestException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
Code;
|
|
140
|
-
Message;
|
|
141
|
-
constructor(opts) {
|
|
142
|
-
super({
|
|
143
|
-
name: "BadRequestException",
|
|
144
|
-
$fault: "client",
|
|
145
|
-
...opts,
|
|
146
|
-
});
|
|
147
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
148
|
-
this.Code = opts.Code;
|
|
149
|
-
this.Message = opts.Message;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
class ForbiddenException extends ChimeSDKVoiceServiceException {
|
|
153
|
-
name = "ForbiddenException";
|
|
154
|
-
$fault = "client";
|
|
155
|
-
Code;
|
|
156
|
-
Message;
|
|
157
|
-
constructor(opts) {
|
|
158
|
-
super({
|
|
159
|
-
name: "ForbiddenException",
|
|
160
|
-
$fault: "client",
|
|
161
|
-
...opts,
|
|
162
|
-
});
|
|
163
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
164
|
-
this.Code = opts.Code;
|
|
165
|
-
this.Message = opts.Message;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class NotFoundException extends ChimeSDKVoiceServiceException {
|
|
169
|
-
name = "NotFoundException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
Code;
|
|
172
|
-
Message;
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "NotFoundException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
180
|
-
this.Code = opts.Code;
|
|
181
|
-
this.Message = opts.Message;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class ServiceFailureException extends ChimeSDKVoiceServiceException {
|
|
185
|
-
name = "ServiceFailureException";
|
|
186
|
-
$fault = "server";
|
|
187
|
-
Code;
|
|
188
|
-
Message;
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "ServiceFailureException",
|
|
192
|
-
$fault: "server",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
196
|
-
this.Code = opts.Code;
|
|
197
|
-
this.Message = opts.Message;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
class ServiceUnavailableException extends ChimeSDKVoiceServiceException {
|
|
201
|
-
name = "ServiceUnavailableException";
|
|
202
|
-
$fault = "server";
|
|
203
|
-
Code;
|
|
204
|
-
Message;
|
|
205
|
-
constructor(opts) {
|
|
206
|
-
super({
|
|
207
|
-
name: "ServiceUnavailableException",
|
|
208
|
-
$fault: "server",
|
|
209
|
-
...opts,
|
|
210
|
-
});
|
|
211
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
212
|
-
this.Code = opts.Code;
|
|
213
|
-
this.Message = opts.Message;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class ThrottledClientException extends ChimeSDKVoiceServiceException {
|
|
217
|
-
name = "ThrottledClientException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
Code;
|
|
220
|
-
Message;
|
|
221
|
-
constructor(opts) {
|
|
222
|
-
super({
|
|
223
|
-
name: "ThrottledClientException",
|
|
224
|
-
$fault: "client",
|
|
225
|
-
...opts,
|
|
226
|
-
});
|
|
227
|
-
Object.setPrototypeOf(this, ThrottledClientException.prototype);
|
|
228
|
-
this.Code = opts.Code;
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class UnauthorizedClientException extends ChimeSDKVoiceServiceException {
|
|
233
|
-
name = "UnauthorizedClientException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
Code;
|
|
236
|
-
Message;
|
|
237
|
-
constructor(opts) {
|
|
238
|
-
super({
|
|
239
|
-
name: "UnauthorizedClientException",
|
|
240
|
-
$fault: "client",
|
|
241
|
-
...opts,
|
|
242
|
-
});
|
|
243
|
-
Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
|
|
244
|
-
this.Code = opts.Code;
|
|
245
|
-
this.Message = opts.Message;
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
class ResourceLimitExceededException extends ChimeSDKVoiceServiceException {
|
|
249
|
-
name = "ResourceLimitExceededException";
|
|
250
|
-
$fault = "client";
|
|
251
|
-
Code;
|
|
252
|
-
Message;
|
|
253
|
-
constructor(opts) {
|
|
254
|
-
super({
|
|
255
|
-
name: "ResourceLimitExceededException",
|
|
256
|
-
$fault: "client",
|
|
257
|
-
...opts,
|
|
258
|
-
});
|
|
259
|
-
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
260
|
-
this.Code = opts.Code;
|
|
261
|
-
this.Message = opts.Message;
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class ConflictException extends ChimeSDKVoiceServiceException {
|
|
265
|
-
name = "ConflictException";
|
|
266
|
-
$fault = "client";
|
|
267
|
-
Code;
|
|
268
|
-
Message;
|
|
269
|
-
constructor(opts) {
|
|
270
|
-
super({
|
|
271
|
-
name: "ConflictException",
|
|
272
|
-
$fault: "client",
|
|
273
|
-
...opts,
|
|
274
|
-
});
|
|
275
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
276
|
-
this.Code = opts.Code;
|
|
277
|
-
this.Message = opts.Message;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
class GoneException extends ChimeSDKVoiceServiceException {
|
|
281
|
-
name = "GoneException";
|
|
282
|
-
$fault = "client";
|
|
283
|
-
Code;
|
|
284
|
-
Message;
|
|
285
|
-
constructor(opts) {
|
|
286
|
-
super({
|
|
287
|
-
name: "GoneException",
|
|
288
|
-
$fault: "client",
|
|
289
|
-
...opts,
|
|
290
|
-
});
|
|
291
|
-
Object.setPrototypeOf(this, GoneException.prototype);
|
|
292
|
-
this.Code = opts.Code;
|
|
293
|
-
this.Message = opts.Message;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
class UnprocessableEntityException extends ChimeSDKVoiceServiceException {
|
|
297
|
-
name = "UnprocessableEntityException";
|
|
298
|
-
$fault = "client";
|
|
299
|
-
Code;
|
|
300
|
-
Message;
|
|
301
|
-
constructor(opts) {
|
|
302
|
-
super({
|
|
303
|
-
name: "UnprocessableEntityException",
|
|
304
|
-
$fault: "client",
|
|
305
|
-
...opts,
|
|
306
|
-
});
|
|
307
|
-
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
308
|
-
this.Code = opts.Code;
|
|
309
|
-
this.Message = opts.Message;
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
const _A = "Arn";
|
|
314
|
-
const _AAI = "AwsAccountId";
|
|
315
|
-
const _AC = "AreaCode";
|
|
316
|
-
const _ADE = "AccessDeniedException";
|
|
317
|
-
const _AEI = "AddressExternalId";
|
|
318
|
-
const _AM = "ArgumentsMap";
|
|
319
|
-
const _APNWVC = "AssociatePhoneNumbersWithVoiceConnector";
|
|
320
|
-
const _APNWVCG = "AssociatePhoneNumbersWithVoiceConnectorGroup";
|
|
321
|
-
const _APNWVCGR = "AssociatePhoneNumbersWithVoiceConnectorGroupRequest";
|
|
322
|
-
const _APNWVCGRs = "AssociatePhoneNumbersWithVoiceConnectorGroupResponse";
|
|
323
|
-
const _APNWVCR = "AssociatePhoneNumbersWithVoiceConnectorRequest";
|
|
324
|
-
const _APNWVCRs = "AssociatePhoneNumbersWithVoiceConnectorResponse";
|
|
325
|
-
const _AR = "AwsRegion";
|
|
326
|
-
const _ASI = "AlexaSkillId";
|
|
327
|
-
const _ASIL = "AlexaSkillIdList";
|
|
328
|
-
const _ASIl = "AlexaSkillIds";
|
|
329
|
-
const _ASS = "AlexaSkillStatus";
|
|
330
|
-
const _AT = "AssociatedTimestamp";
|
|
331
|
-
const _Ad = "Address";
|
|
332
|
-
const _Ar = "Arguments";
|
|
333
|
-
const _As = "Associations";
|
|
334
|
-
const _BDPN = "BatchDeletePhoneNumber";
|
|
335
|
-
const _BDPNR = "BatchDeletePhoneNumberRequest";
|
|
336
|
-
const _BDPNRa = "BatchDeletePhoneNumberResponse";
|
|
337
|
-
const _BRE = "BadRequestException";
|
|
338
|
-
const _BUPN = "BatchUpdatePhoneNumber";
|
|
339
|
-
const _BUPNR = "BatchUpdatePhoneNumberRequest";
|
|
340
|
-
const _BUPNRa = "BatchUpdatePhoneNumberResponse";
|
|
341
|
-
const _C = "Code";
|
|
342
|
-
const _CA = "CandidateAddress";
|
|
343
|
-
const _CAL = "CidrAllowedList";
|
|
344
|
-
const _CALa = "CandidateAddressList";
|
|
345
|
-
const _CAo = "ConfigurationArn";
|
|
346
|
-
const _CB = "CdrBucket";
|
|
347
|
-
const _CC = "CallingCountry";
|
|
348
|
-
const _CCST = "ContactCenterSystemTypes";
|
|
349
|
-
const _CCo = "CountryCode";
|
|
350
|
-
const _CD = "CallDetails";
|
|
351
|
-
const _CE = "ConflictException";
|
|
352
|
-
const _CL = "CallLeg";
|
|
353
|
-
const _CLp = "CpsLimit";
|
|
354
|
-
const _CLr = "CredentialList";
|
|
355
|
-
const _CN = "CallingName";
|
|
356
|
-
const _CNS = "CallingNameStatus";
|
|
357
|
-
const _CNUT = "CallingNameUpdatedTimestamp";
|
|
358
|
-
const _CPNO = "CreatePhoneNumberOrder";
|
|
359
|
-
const _CPNOR = "CreatePhoneNumberOrderRequest";
|
|
360
|
-
const _CPNORr = "CreatePhoneNumberOrderResponse";
|
|
361
|
-
const _CPS = "CreateProxySession";
|
|
362
|
-
const _CPSR = "CreateProxySessionRequest";
|
|
363
|
-
const _CPSRr = "CreateProxySessionResponse";
|
|
364
|
-
const _CR = "CallingRegions";
|
|
365
|
-
const _CRT = "ClientRequestToken";
|
|
366
|
-
const _CS = "ConfidenceScore";
|
|
367
|
-
const _CSMA = "CreateSipMediaApplication";
|
|
368
|
-
const _CSMAC = "CreateSipMediaApplicationCall";
|
|
369
|
-
const _CSMACR = "CreateSipMediaApplicationCallRequest";
|
|
370
|
-
const _CSMACRr = "CreateSipMediaApplicationCallResponse";
|
|
371
|
-
const _CSMAR = "CreateSipMediaApplicationRequest";
|
|
372
|
-
const _CSMARr = "CreateSipMediaApplicationResponse";
|
|
373
|
-
const _CSR = "CreateSipRule";
|
|
374
|
-
const _CSRR = "CreateSipRuleRequest";
|
|
375
|
-
const _CSRRr = "CreateSipRuleResponse";
|
|
376
|
-
const _CT = "CreatedTimestamp";
|
|
377
|
-
const _CVC = "CreateVoiceConnector";
|
|
378
|
-
const _CVCG = "CreateVoiceConnectorGroup";
|
|
379
|
-
const _CVCGR = "CreateVoiceConnectorGroupRequest";
|
|
380
|
-
const _CVCGRr = "CreateVoiceConnectorGroupResponse";
|
|
381
|
-
const _CVCR = "CreateVoiceConnectorRequest";
|
|
382
|
-
const _CVCRr = "CreateVoiceConnectorResponse";
|
|
383
|
-
const _CVP = "CreateVoiceProfile";
|
|
384
|
-
const _CVPD = "CreateVoiceProfileDomain";
|
|
385
|
-
const _CVPDR = "CreateVoiceProfileDomainRequest";
|
|
386
|
-
const _CVPDRr = "CreateVoiceProfileDomainResponse";
|
|
387
|
-
const _CVPR = "CreateVoiceProfileRequest";
|
|
388
|
-
const _CVPRr = "CreateVoiceProfileResponse";
|
|
389
|
-
const _Ca = "Capabilities";
|
|
390
|
-
const _Ci = "City";
|
|
391
|
-
const _Co = "Country";
|
|
392
|
-
const _Cr = "Credential";
|
|
393
|
-
const _Cre = "Credentials";
|
|
394
|
-
const _D = "Disabled";
|
|
395
|
-
const _DNIS = "DNIS";
|
|
396
|
-
const _DNISECC = "DNISEmergencyCallingConfiguration";
|
|
397
|
-
const _DNISECCL = "DNISEmergencyCallingConfigurationList";
|
|
398
|
-
const _DPN = "DefaultPhoneNumber";
|
|
399
|
-
const _DPNFVC = "DisassociatePhoneNumbersFromVoiceConnector";
|
|
400
|
-
const _DPNFVCG = "DisassociatePhoneNumbersFromVoiceConnectorGroup";
|
|
401
|
-
const _DPNFVCGR = "DisassociatePhoneNumbersFromVoiceConnectorGroupRequest";
|
|
402
|
-
const _DPNFVCGRi = "DisassociatePhoneNumbersFromVoiceConnectorGroupResponse";
|
|
403
|
-
const _DPNFVCR = "DisassociatePhoneNumbersFromVoiceConnectorRequest";
|
|
404
|
-
const _DPNFVCRi = "DisassociatePhoneNumbersFromVoiceConnectorResponse";
|
|
405
|
-
const _DPNR = "DeletePhoneNumberRequest";
|
|
406
|
-
const _DPNe = "DeletePhoneNumber";
|
|
407
|
-
const _DPS = "DeleteProxySession";
|
|
408
|
-
const _DPSR = "DeleteProxySessionRequest";
|
|
409
|
-
const _DRIH = "DataRetentionInHours";
|
|
410
|
-
const _DSEM = "DefaultSessionExpiryMinutes";
|
|
411
|
-
const _DSMA = "DeleteSipMediaApplication";
|
|
412
|
-
const _DSMAR = "DeleteSipMediaApplicationRequest";
|
|
413
|
-
const _DSR = "DeleteSipRule";
|
|
414
|
-
const _DSRR = "DeleteSipRuleRequest";
|
|
415
|
-
const _DT = "DeletionTimestamp";
|
|
416
|
-
const _DVC = "DeleteVoiceConnector";
|
|
417
|
-
const _DVCECC = "DeleteVoiceConnectorEmergencyCallingConfiguration";
|
|
418
|
-
const _DVCECCR = "DeleteVoiceConnectorEmergencyCallingConfigurationRequest";
|
|
419
|
-
const _DVCESC = "DeleteVoiceConnectorExternalSystemsConfiguration";
|
|
420
|
-
const _DVCESCR = "DeleteVoiceConnectorExternalSystemsConfigurationRequest";
|
|
421
|
-
const _DVCG = "DeleteVoiceConnectorGroup";
|
|
422
|
-
const _DVCGR = "DeleteVoiceConnectorGroupRequest";
|
|
423
|
-
const _DVCO = "DeleteVoiceConnectorOrigination";
|
|
424
|
-
const _DVCOR = "DeleteVoiceConnectorOriginationRequest";
|
|
425
|
-
const _DVCP = "DeleteVoiceConnectorProxy";
|
|
426
|
-
const _DVCPR = "DeleteVoiceConnectorProxyRequest";
|
|
427
|
-
const _DVCR = "DeleteVoiceConnectorRequest";
|
|
428
|
-
const _DVCSC = "DeleteVoiceConnectorStreamingConfiguration";
|
|
429
|
-
const _DVCSCR = "DeleteVoiceConnectorStreamingConfigurationRequest";
|
|
430
|
-
const _DVCT = "DeleteVoiceConnectorTermination";
|
|
431
|
-
const _DVCTC = "DeleteVoiceConnectorTerminationCredentials";
|
|
432
|
-
const _DVCTCR = "DeleteVoiceConnectorTerminationCredentialsRequest";
|
|
433
|
-
const _DVCTR = "DeleteVoiceConnectorTerminationRequest";
|
|
434
|
-
const _DVP = "DeleteVoiceProfile";
|
|
435
|
-
const _DVPD = "DeleteVoiceProfileDomain";
|
|
436
|
-
const _DVPDR = "DeleteVoiceProfileDomainRequest";
|
|
437
|
-
const _DVPR = "DeleteVoiceProfileRequest";
|
|
438
|
-
const _De = "Description";
|
|
439
|
-
const _E = "Endpoints";
|
|
440
|
-
const _EC = "ErrorCode";
|
|
441
|
-
const _ECC = "EmergencyCallingConfiguration";
|
|
442
|
-
const _EM = "ExpiryMinutes";
|
|
443
|
-
const _EMML = "EnableMediaMetricLogs";
|
|
444
|
-
const _EMr = "ErrorMessage";
|
|
445
|
-
const _EPN = "E164PhoneNumber";
|
|
446
|
-
const _EPNL = "E164PhoneNumberList";
|
|
447
|
-
const _EPNh = "E164PhoneNumbers";
|
|
448
|
-
const _EPNm = "EmergencyPhoneNumber";
|
|
449
|
-
const _ESC = "ExternalSystemsConfiguration";
|
|
450
|
-
const _ESIPL = "EnableSIPLogs";
|
|
451
|
-
const _ESMAML = "EnableSipMediaApplicationMessageLogs";
|
|
452
|
-
const _ET = "EndedTimestamp";
|
|
453
|
-
const _ETx = "ExpirationTimestamp";
|
|
454
|
-
const _FA = "FunctionArn";
|
|
455
|
-
const _FAo = "ForceAssociate";
|
|
456
|
-
const _FBPN = "FallBackPhoneNumber";
|
|
457
|
-
const _FD = "FocDate";
|
|
458
|
-
const _FE = "ForbiddenException";
|
|
459
|
-
const _FN = "FilterName";
|
|
460
|
-
const _FPN = "FromPhoneNumber";
|
|
461
|
-
const _FV = "FilterValue";
|
|
462
|
-
const _GE = "GoneException";
|
|
463
|
-
const _GGS = "GetGlobalSettings";
|
|
464
|
-
const _GGSR = "GetGlobalSettingsResponse";
|
|
465
|
-
const _GML = "GeoMatchLevel";
|
|
466
|
-
const _GMP = "GeoMatchParams";
|
|
467
|
-
const _GPN = "GetPhoneNumber";
|
|
468
|
-
const _GPNO = "GetPhoneNumberOrder";
|
|
469
|
-
const _GPNOR = "GetPhoneNumberOrderRequest";
|
|
470
|
-
const _GPNORe = "GetPhoneNumberOrderResponse";
|
|
471
|
-
const _GPNR = "GetPhoneNumberRequest";
|
|
472
|
-
const _GPNRe = "GetPhoneNumberResponse";
|
|
473
|
-
const _GPNS = "GetPhoneNumberSettings";
|
|
474
|
-
const _GPNSR = "GetPhoneNumberSettingsResponse";
|
|
475
|
-
const _GPS = "GetProxySession";
|
|
476
|
-
const _GPSR = "GetProxySessionRequest";
|
|
477
|
-
const _GPSRe = "GetProxySessionResponse";
|
|
478
|
-
const _GSMA = "GetSipMediaApplication";
|
|
479
|
-
const _GSMAASC = "GetSipMediaApplicationAlexaSkillConfiguration";
|
|
480
|
-
const _GSMAASCR = "GetSipMediaApplicationAlexaSkillConfigurationRequest";
|
|
481
|
-
const _GSMAASCRe = "GetSipMediaApplicationAlexaSkillConfigurationResponse";
|
|
482
|
-
const _GSMALC = "GetSipMediaApplicationLoggingConfiguration";
|
|
483
|
-
const _GSMALCR = "GetSipMediaApplicationLoggingConfigurationRequest";
|
|
484
|
-
const _GSMALCRe = "GetSipMediaApplicationLoggingConfigurationResponse";
|
|
485
|
-
const _GSMAR = "GetSipMediaApplicationRequest";
|
|
486
|
-
const _GSMARe = "GetSipMediaApplicationResponse";
|
|
487
|
-
const _GSR = "GetSipRule";
|
|
488
|
-
const _GSRR = "GetSipRuleRequest";
|
|
489
|
-
const _GSRRe = "GetSipRuleResponse";
|
|
490
|
-
const _GSST = "GetSpeakerSearchTask";
|
|
491
|
-
const _GSSTR = "GetSpeakerSearchTaskRequest";
|
|
492
|
-
const _GSSTRe = "GetSpeakerSearchTaskResponse";
|
|
493
|
-
const _GVC = "GetVoiceConnector";
|
|
494
|
-
const _GVCECC = "GetVoiceConnectorEmergencyCallingConfiguration";
|
|
495
|
-
const _GVCECCR = "GetVoiceConnectorEmergencyCallingConfigurationRequest";
|
|
496
|
-
const _GVCECCRe = "GetVoiceConnectorEmergencyCallingConfigurationResponse";
|
|
497
|
-
const _GVCESC = "GetVoiceConnectorExternalSystemsConfiguration";
|
|
498
|
-
const _GVCESCR = "GetVoiceConnectorExternalSystemsConfigurationRequest";
|
|
499
|
-
const _GVCESCRe = "GetVoiceConnectorExternalSystemsConfigurationResponse";
|
|
500
|
-
const _GVCG = "GetVoiceConnectorGroup";
|
|
501
|
-
const _GVCGR = "GetVoiceConnectorGroupRequest";
|
|
502
|
-
const _GVCGRe = "GetVoiceConnectorGroupResponse";
|
|
503
|
-
const _GVCLC = "GetVoiceConnectorLoggingConfiguration";
|
|
504
|
-
const _GVCLCR = "GetVoiceConnectorLoggingConfigurationRequest";
|
|
505
|
-
const _GVCLCRe = "GetVoiceConnectorLoggingConfigurationResponse";
|
|
506
|
-
const _GVCO = "GetVoiceConnectorOrigination";
|
|
507
|
-
const _GVCOR = "GetVoiceConnectorOriginationRequest";
|
|
508
|
-
const _GVCORe = "GetVoiceConnectorOriginationResponse";
|
|
509
|
-
const _GVCP = "GetVoiceConnectorProxy";
|
|
510
|
-
const _GVCPR = "GetVoiceConnectorProxyRequest";
|
|
511
|
-
const _GVCPRe = "GetVoiceConnectorProxyResponse";
|
|
512
|
-
const _GVCR = "GetVoiceConnectorRequest";
|
|
513
|
-
const _GVCRe = "GetVoiceConnectorResponse";
|
|
514
|
-
const _GVCSC = "GetVoiceConnectorStreamingConfiguration";
|
|
515
|
-
const _GVCSCR = "GetVoiceConnectorStreamingConfigurationRequest";
|
|
516
|
-
const _GVCSCRe = "GetVoiceConnectorStreamingConfigurationResponse";
|
|
517
|
-
const _GVCT = "GetVoiceConnectorTermination";
|
|
518
|
-
const _GVCTH = "GetVoiceConnectorTerminationHealth";
|
|
519
|
-
const _GVCTHR = "GetVoiceConnectorTerminationHealthRequest";
|
|
520
|
-
const _GVCTHRe = "GetVoiceConnectorTerminationHealthResponse";
|
|
521
|
-
const _GVCTR = "GetVoiceConnectorTerminationRequest";
|
|
522
|
-
const _GVCTRe = "GetVoiceConnectorTerminationResponse";
|
|
523
|
-
const _GVP = "GetVoiceProfile";
|
|
524
|
-
const _GVPD = "GetVoiceProfileDomain";
|
|
525
|
-
const _GVPDR = "GetVoiceProfileDomainRequest";
|
|
526
|
-
const _GVPDRe = "GetVoiceProfileDomainResponse";
|
|
527
|
-
const _GVPR = "GetVoiceProfileRequest";
|
|
528
|
-
const _GVPRe = "GetVoiceProfileResponse";
|
|
529
|
-
const _GVTAT = "GetVoiceToneAnalysisTask";
|
|
530
|
-
const _GVTATR = "GetVoiceToneAnalysisTaskRequest";
|
|
531
|
-
const _GVTATRe = "GetVoiceToneAnalysisTaskResponse";
|
|
532
|
-
const _H = "Host";
|
|
533
|
-
const _IC = "IsCaller";
|
|
534
|
-
const _ICn = "InboundCall";
|
|
535
|
-
const _IMMS = "InboundMMS";
|
|
536
|
-
const _ISMS = "InboundSMS";
|
|
537
|
-
const _IT = "IntegrationType";
|
|
538
|
-
const _K = "Key";
|
|
539
|
-
const _KKA = "KmsKeyArn";
|
|
540
|
-
const _LA = "LambdaArn";
|
|
541
|
-
const _LAVCR = "ListAvailableVoiceConnectorRegions";
|
|
542
|
-
const _LAVCRR = "ListAvailableVoiceConnectorRegionsResponse";
|
|
543
|
-
const _LC = "LoggingConfiguration";
|
|
544
|
-
const _LCa = "LanguageCode";
|
|
545
|
-
const _LPN = "ListPhoneNumbers";
|
|
546
|
-
const _LPNO = "ListPhoneNumberOrders";
|
|
547
|
-
const _LPNOR = "ListPhoneNumberOrdersRequest";
|
|
548
|
-
const _LPNORi = "ListPhoneNumberOrdersResponse";
|
|
549
|
-
const _LPNR = "ListPhoneNumbersRequest";
|
|
550
|
-
const _LPNRi = "ListPhoneNumbersResponse";
|
|
551
|
-
const _LPS = "ListProxySessions";
|
|
552
|
-
const _LPSR = "ListProxySessionsRequest";
|
|
553
|
-
const _LPSRi = "ListProxySessionsResponse";
|
|
554
|
-
const _LSMA = "ListSipMediaApplications";
|
|
555
|
-
const _LSMAR = "ListSipMediaApplicationsRequest";
|
|
556
|
-
const _LSMARi = "ListSipMediaApplicationsResponse";
|
|
557
|
-
const _LSPNC = "ListSupportedPhoneNumberCountries";
|
|
558
|
-
const _LSPNCR = "ListSupportedPhoneNumberCountriesRequest";
|
|
559
|
-
const _LSPNCRi = "ListSupportedPhoneNumberCountriesResponse";
|
|
560
|
-
const _LSR = "ListSipRules";
|
|
561
|
-
const _LSRR = "ListSipRulesRequest";
|
|
562
|
-
const _LSRRi = "ListSipRulesResponse";
|
|
563
|
-
const _LTFR = "ListTagsForResource";
|
|
564
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
565
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
566
|
-
const _LVC = "ListVoiceConnectors";
|
|
567
|
-
const _LVCG = "ListVoiceConnectorGroups";
|
|
568
|
-
const _LVCGR = "ListVoiceConnectorGroupsRequest";
|
|
569
|
-
const _LVCGRi = "ListVoiceConnectorGroupsResponse";
|
|
570
|
-
const _LVCR = "ListVoiceConnectorsRequest";
|
|
571
|
-
const _LVCRi = "ListVoiceConnectorsResponse";
|
|
572
|
-
const _LVCTC = "ListVoiceConnectorTerminationCredentials";
|
|
573
|
-
const _LVCTCR = "ListVoiceConnectorTerminationCredentialsRequest";
|
|
574
|
-
const _LVCTCRi = "ListVoiceConnectorTerminationCredentialsResponse";
|
|
575
|
-
const _LVP = "ListVoiceProfiles";
|
|
576
|
-
const _LVPD = "ListVoiceProfileDomains";
|
|
577
|
-
const _LVPDR = "ListVoiceProfileDomainsRequest";
|
|
578
|
-
const _LVPDRi = "ListVoiceProfileDomainsResponse";
|
|
579
|
-
const _LVPR = "ListVoiceProfilesRequest";
|
|
580
|
-
const _LVPRi = "ListVoiceProfilesResponse";
|
|
581
|
-
const _M = "Message";
|
|
582
|
-
const _MIC = "MediaInsightsConfiguration";
|
|
583
|
-
const _MR = "MaxResults";
|
|
584
|
-
const _N = "Name";
|
|
585
|
-
const _NFE = "NotFoundException";
|
|
586
|
-
const _NSB = "NumberSelectionBehavior";
|
|
587
|
-
const _NT = "NetworkType";
|
|
588
|
-
const _NTe = "NextToken";
|
|
589
|
-
const _NTo = "NotificationTarget";
|
|
590
|
-
const _O = "Origination";
|
|
591
|
-
const _OC = "OutboundCall";
|
|
592
|
-
const _OHN = "OutboundHostName";
|
|
593
|
-
const _OI = "OrderId";
|
|
594
|
-
const _OMMS = "OutboundMMS";
|
|
595
|
-
const _OPN = "OrderedPhoneNumber";
|
|
596
|
-
const _OPNL = "OrderedPhoneNumberList";
|
|
597
|
-
const _OPNr = "OrderedPhoneNumbers";
|
|
598
|
-
const _OR = "OriginationRoute";
|
|
599
|
-
const _ORL = "OriginationRouteList";
|
|
600
|
-
const _OSMS = "OutboundSMS";
|
|
601
|
-
const _OT = "OrderType";
|
|
602
|
-
const _P = "Password";
|
|
603
|
-
const _PC = "PostalCode";
|
|
604
|
-
const _PN = "PhoneNumber";
|
|
605
|
-
const _PNA = "PhoneNumberAssociation";
|
|
606
|
-
const _PNAL = "PhoneNumberAssociationList";
|
|
607
|
-
const _PNC = "PhoneNumberCountries";
|
|
608
|
-
const _PNCL = "PhoneNumberCountriesList";
|
|
609
|
-
const _PNCh = "PhoneNumberCapabilities";
|
|
610
|
-
const _PNCho = "PhoneNumberCountry";
|
|
611
|
-
const _PNE = "PhoneNumberErrors";
|
|
612
|
-
const _PNEL = "PhoneNumberErrorList";
|
|
613
|
-
const _PNEh = "PhoneNumberError";
|
|
614
|
-
const _PNI = "PhoneNumberIds";
|
|
615
|
-
const _PNIh = "PhoneNumberId";
|
|
616
|
-
const _PNL = "PhoneNumberList";
|
|
617
|
-
const _PNN = "PhoneNumberName";
|
|
618
|
-
const _PNO = "PhoneNumberOrder";
|
|
619
|
-
const _PNOI = "PhoneNumberOrderId";
|
|
620
|
-
const _PNOL = "PhoneNumberOrderList";
|
|
621
|
-
const _PNOh = "PhoneNumberOrders";
|
|
622
|
-
const _PNPC = "PhoneNumberPoolCountries";
|
|
623
|
-
const _PNT = "PhoneNumberType";
|
|
624
|
-
const _PNh = "PhoneNumbers";
|
|
625
|
-
const _PPN = "ParticipantPhoneNumbers";
|
|
626
|
-
const _PPNL = "ParticipantPhoneNumberList";
|
|
627
|
-
const _PPNr = "ProxyPhoneNumber";
|
|
628
|
-
const _PS = "ProxySession";
|
|
629
|
-
const _PSI = "ProxySessionId";
|
|
630
|
-
const _PSMAASC = "PutSipMediaApplicationAlexaSkillConfiguration";
|
|
631
|
-
const _PSMAASCR = "PutSipMediaApplicationAlexaSkillConfigurationRequest";
|
|
632
|
-
const _PSMAASCRu = "PutSipMediaApplicationAlexaSkillConfigurationResponse";
|
|
633
|
-
const _PSMALC = "PutSipMediaApplicationLoggingConfiguration";
|
|
634
|
-
const _PSMALCR = "PutSipMediaApplicationLoggingConfigurationRequest";
|
|
635
|
-
const _PSMALCRu = "PutSipMediaApplicationLoggingConfigurationResponse";
|
|
636
|
-
const _PSNS = "ProxySessionNameString";
|
|
637
|
-
const _PSr = "ProxySessions";
|
|
638
|
-
const _PT = "ProductType";
|
|
639
|
-
const _PVCECC = "PutVoiceConnectorEmergencyCallingConfiguration";
|
|
640
|
-
const _PVCECCR = "PutVoiceConnectorEmergencyCallingConfigurationRequest";
|
|
641
|
-
const _PVCECCRu = "PutVoiceConnectorEmergencyCallingConfigurationResponse";
|
|
642
|
-
const _PVCESC = "PutVoiceConnectorExternalSystemsConfiguration";
|
|
643
|
-
const _PVCESCR = "PutVoiceConnectorExternalSystemsConfigurationRequest";
|
|
644
|
-
const _PVCESCRu = "PutVoiceConnectorExternalSystemsConfigurationResponse";
|
|
645
|
-
const _PVCLC = "PutVoiceConnectorLoggingConfiguration";
|
|
646
|
-
const _PVCLCR = "PutVoiceConnectorLoggingConfigurationRequest";
|
|
647
|
-
const _PVCLCRu = "PutVoiceConnectorLoggingConfigurationResponse";
|
|
648
|
-
const _PVCO = "PutVoiceConnectorOrigination";
|
|
649
|
-
const _PVCOR = "PutVoiceConnectorOriginationRequest";
|
|
650
|
-
const _PVCORu = "PutVoiceConnectorOriginationResponse";
|
|
651
|
-
const _PVCP = "PutVoiceConnectorProxy";
|
|
652
|
-
const _PVCPR = "PutVoiceConnectorProxyRequest";
|
|
653
|
-
const _PVCPRu = "PutVoiceConnectorProxyResponse";
|
|
654
|
-
const _PVCSC = "PutVoiceConnectorStreamingConfiguration";
|
|
655
|
-
const _PVCSCR = "PutVoiceConnectorStreamingConfigurationRequest";
|
|
656
|
-
const _PVCSCRu = "PutVoiceConnectorStreamingConfigurationResponse";
|
|
657
|
-
const _PVCT = "PutVoiceConnectorTermination";
|
|
658
|
-
const _PVCTC = "PutVoiceConnectorTerminationCredentials";
|
|
659
|
-
const _PVCTCR = "PutVoiceConnectorTerminationCredentialsRequest";
|
|
660
|
-
const _PVCTR = "PutVoiceConnectorTerminationRequest";
|
|
661
|
-
const _PVCTRu = "PutVoiceConnectorTerminationResponse";
|
|
662
|
-
const _Pa = "Participant";
|
|
663
|
-
const _Par = "Participants";
|
|
664
|
-
const _Po = "Port";
|
|
665
|
-
const _Pr = "Proxy";
|
|
666
|
-
const _Pri = "Priority";
|
|
667
|
-
const _Pro = "Protocol";
|
|
668
|
-
const _R = "Routes";
|
|
669
|
-
const _RARN = "ResourceARN";
|
|
670
|
-
const _RE = "RequireEncryption";
|
|
671
|
-
const _RLEE = "ResourceLimitExceededException";
|
|
672
|
-
const _RPN = "RestorePhoneNumber";
|
|
673
|
-
const _RPNR = "RestorePhoneNumberRequest";
|
|
674
|
-
const _RPNRe = "RestorePhoneNumberResponse";
|
|
675
|
-
const _Re = "Results";
|
|
676
|
-
const _S = "Status";
|
|
677
|
-
const _SAPN = "SearchAvailablePhoneNumbers";
|
|
678
|
-
const _SAPNR = "SearchAvailablePhoneNumbersRequest";
|
|
679
|
-
const _SAPNRe = "SearchAvailablePhoneNumbersResponse";
|
|
680
|
-
const _SBCT = "SessionBorderControllerTypes";
|
|
681
|
-
const _SC = "StreamingConfiguration";
|
|
682
|
-
const _SFE = "ServiceFailureException";
|
|
683
|
-
const _SH = "SipHeaders";
|
|
684
|
-
const _SHM = "SipHeadersMap";
|
|
685
|
-
const _SI = "StreetInfo";
|
|
686
|
-
const _SM = "StatusMessage";
|
|
687
|
-
const _SMA = "SipMediaApplication";
|
|
688
|
-
const _SMAA = "SipMediaApplicationArn";
|
|
689
|
-
const _SMAASC = "SipMediaApplicationAlexaSkillConfiguration";
|
|
690
|
-
const _SMAC = "SipMediaApplicationCall";
|
|
691
|
-
const _SMACCAM = "SMACreateCallArgumentsMap";
|
|
692
|
-
const _SMAE = "SipMediaApplicationEndpoint";
|
|
693
|
-
const _SMAEL = "SipMediaApplicationEndpointList";
|
|
694
|
-
const _SMAI = "SipMediaApplicationId";
|
|
695
|
-
const _SMAL = "SipMediaApplicationList";
|
|
696
|
-
const _SMALC = "SipMediaApplicationLoggingConfiguration";
|
|
697
|
-
const _SMAUCAM = "SMAUpdateCallArgumentsMap";
|
|
698
|
-
const _SMAi = "SipMediaApplications";
|
|
699
|
-
const _SN = "StreetNumber";
|
|
700
|
-
const _SNES = "SensitiveNonEmptyString";
|
|
701
|
-
const _SNT = "StreamingNotificationTargets";
|
|
702
|
-
const _SNTL = "StreamingNotificationTargetList";
|
|
703
|
-
const _SNTt = "StreamingNotificationTarget";
|
|
704
|
-
const _SPNT = "SupportedPhoneNumberTypes";
|
|
705
|
-
const _SR = "SipRule";
|
|
706
|
-
const _SRI = "SipRuleId";
|
|
707
|
-
const _SRL = "SipRuleList";
|
|
708
|
-
const _SRTA = "SipRuleTargetApplication";
|
|
709
|
-
const _SRTAL = "SipRuleTargetApplicationList";
|
|
710
|
-
const _SRi = "SipRules";
|
|
711
|
-
const _SS = "SensitiveString";
|
|
712
|
-
const _SSD = "SpeakerSearchDetails";
|
|
713
|
-
const _SSEC = "ServerSideEncryptionConfiguration";
|
|
714
|
-
const _SSL = "SensitiveStringList";
|
|
715
|
-
const _SSR = "SpeakerSearchResult";
|
|
716
|
-
const _SSRL = "SpeakerSearchResultList";
|
|
717
|
-
const _SSST = "StartSpeakerSearchTask";
|
|
718
|
-
const _SSSTR = "StartSpeakerSearchTaskRequest";
|
|
719
|
-
const _SSSTRt = "StartSpeakerSearchTaskResponse";
|
|
720
|
-
const _SSSTRto = "StopSpeakerSearchTaskRequest";
|
|
721
|
-
const _SSSTt = "StopSpeakerSearchTask";
|
|
722
|
-
const _SST = "SpeakerSearchTask";
|
|
723
|
-
const _SSTI = "SpeakerSearchTaskId";
|
|
724
|
-
const _SSTS = "SpeakerSearchTaskStatus";
|
|
725
|
-
const _ST = "StartedTimestamp";
|
|
726
|
-
const _SUE = "ServiceUnavailableException";
|
|
727
|
-
const _SVTAT = "StartVoiceToneAnalysisTask";
|
|
728
|
-
const _SVTATR = "StartVoiceToneAnalysisTaskRequest";
|
|
729
|
-
const _SVTATRt = "StartVoiceToneAnalysisTaskResponse";
|
|
730
|
-
const _SVTATRto = "StopVoiceToneAnalysisTaskRequest";
|
|
731
|
-
const _SVTATt = "StopVoiceToneAnalysisTask";
|
|
732
|
-
const _So = "Source";
|
|
733
|
-
const _St = "State";
|
|
734
|
-
const _T = "Tags";
|
|
735
|
-
const _TA = "TargetApplications";
|
|
736
|
-
const _TCE = "ThrottledClientException";
|
|
737
|
-
const _TFP = "TollFreePrefix";
|
|
738
|
-
const _TH = "TerminationHealth";
|
|
739
|
-
const _TI = "TransactionId";
|
|
740
|
-
const _TK = "TagKey";
|
|
741
|
-
const _TKL = "TagKeyList";
|
|
742
|
-
const _TKa = "TagKeys";
|
|
743
|
-
const _TL = "TagList";
|
|
744
|
-
const _TPN = "ToPhoneNumber";
|
|
745
|
-
const _TPNe = "TestPhoneNumber";
|
|
746
|
-
const _TR = "TagResource";
|
|
747
|
-
const _TRR = "TagResourceRequest";
|
|
748
|
-
const _TT = "TriggerType";
|
|
749
|
-
const _TV = "TagValue";
|
|
750
|
-
const _TVr = "TriggerValue";
|
|
751
|
-
const _Ta = "Tag";
|
|
752
|
-
const _Te = "Termination";
|
|
753
|
-
const _Ti = "Timestamp";
|
|
754
|
-
const _Ty = "Type";
|
|
755
|
-
const _U = "Username";
|
|
756
|
-
const _UCE = "UnauthorizedClientException";
|
|
757
|
-
const _UEE = "UnprocessableEntityException";
|
|
758
|
-
const _UGS = "UpdateGlobalSettings";
|
|
759
|
-
const _UGSR = "UpdateGlobalSettingsRequest";
|
|
760
|
-
const _UPN = "UpdatePhoneNumber";
|
|
761
|
-
const _UPNR = "UpdatePhoneNumberRequest";
|
|
762
|
-
const _UPNRI = "UpdatePhoneNumberRequestItems";
|
|
763
|
-
const _UPNRIL = "UpdatePhoneNumberRequestItemList";
|
|
764
|
-
const _UPNRIp = "UpdatePhoneNumberRequestItem";
|
|
765
|
-
const _UPNRp = "UpdatePhoneNumberResponse";
|
|
766
|
-
const _UPNS = "UpdatePhoneNumberSettings";
|
|
767
|
-
const _UPNSR = "UpdatePhoneNumberSettingsRequest";
|
|
768
|
-
const _UPS = "UpdateProxySession";
|
|
769
|
-
const _UPSR = "UpdateProxySessionRequest";
|
|
770
|
-
const _UPSRp = "UpdateProxySessionResponse";
|
|
771
|
-
const _UR = "UntagResource";
|
|
772
|
-
const _URR = "UntagResourceRequest";
|
|
773
|
-
const _USMA = "UpdateSipMediaApplication";
|
|
774
|
-
const _USMAC = "UpdateSipMediaApplicationCall";
|
|
775
|
-
const _USMACR = "UpdateSipMediaApplicationCallRequest";
|
|
776
|
-
const _USMACRp = "UpdateSipMediaApplicationCallResponse";
|
|
777
|
-
const _USMAR = "UpdateSipMediaApplicationRequest";
|
|
778
|
-
const _USMARp = "UpdateSipMediaApplicationResponse";
|
|
779
|
-
const _USR = "UpdateSipRule";
|
|
780
|
-
const _USRR = "UpdateSipRuleRequest";
|
|
781
|
-
const _USRRp = "UpdateSipRuleResponse";
|
|
782
|
-
const _UT = "UpdatedTimestamp";
|
|
783
|
-
const _UVC = "UpdateVoiceConnector";
|
|
784
|
-
const _UVCG = "UpdateVoiceConnectorGroup";
|
|
785
|
-
const _UVCGR = "UpdateVoiceConnectorGroupRequest";
|
|
786
|
-
const _UVCGRp = "UpdateVoiceConnectorGroupResponse";
|
|
787
|
-
const _UVCR = "UpdateVoiceConnectorRequest";
|
|
788
|
-
const _UVCRp = "UpdateVoiceConnectorResponse";
|
|
789
|
-
const _UVP = "UpdateVoiceProfile";
|
|
790
|
-
const _UVPD = "UpdateVoiceProfileDomain";
|
|
791
|
-
const _UVPDR = "UpdateVoiceProfileDomainRequest";
|
|
792
|
-
const _UVPDRp = "UpdateVoiceProfileDomainResponse";
|
|
793
|
-
const _UVPR = "UpdateVoiceProfileRequest";
|
|
794
|
-
const _UVPRp = "UpdateVoiceProfileResponse";
|
|
795
|
-
const _Us = "Usernames";
|
|
796
|
-
const _V = "Value";
|
|
797
|
-
const _VC = "VoiceConnector";
|
|
798
|
-
const _VCA = "VoiceConnectorArn";
|
|
799
|
-
const _VCG = "VoiceConnectorGroup";
|
|
800
|
-
const _VCGA = "VoiceConnectorGroupArn";
|
|
801
|
-
const _VCGI = "VoiceConnectorGroupId";
|
|
802
|
-
const _VCGL = "VoiceConnectorGroupList";
|
|
803
|
-
const _VCGo = "VoiceConnectorGroups";
|
|
804
|
-
const _VCI = "VoiceConnectorId";
|
|
805
|
-
const _VCIL = "VoiceConnectorItemList";
|
|
806
|
-
const _VCIo = "VoiceConnectorItems";
|
|
807
|
-
const _VCIoi = "VoiceConnectorItem";
|
|
808
|
-
const _VCL = "VoiceConnectorList";
|
|
809
|
-
const _VCR = "VoiceConnectorRegions";
|
|
810
|
-
const _VCS = "VoiceConnectorSettings";
|
|
811
|
-
const _VCo = "VoiceConnectors";
|
|
812
|
-
const _VEA = "ValidateE911Address";
|
|
813
|
-
const _VEAR = "ValidateE911AddressRequest";
|
|
814
|
-
const _VEARa = "ValidateE911AddressResponse";
|
|
815
|
-
const _VGS = "VoiceprintGenerationStatus";
|
|
816
|
-
const _VP = "VoiceProfile";
|
|
817
|
-
const _VPA = "VoiceProfileArn";
|
|
818
|
-
const _VPD = "VoiceProfileDomain";
|
|
819
|
-
const _VPDA = "VoiceProfileDomainArn";
|
|
820
|
-
const _VPDI = "VoiceProfileDomainId";
|
|
821
|
-
const _VPDS = "VoiceProfileDomainSummary";
|
|
822
|
-
const _VPDSL = "VoiceProfileDomainSummaryList";
|
|
823
|
-
const _VPDo = "VoiceProfileDomains";
|
|
824
|
-
const _VPI = "VoiceProfileId";
|
|
825
|
-
const _VPS = "VoiceProfileSummary";
|
|
826
|
-
const _VPSL = "VoiceProfileSummaryList";
|
|
827
|
-
const _VPo = "VoiceProfiles";
|
|
828
|
-
const _VR = "ValidationResult";
|
|
829
|
-
const _VTAT = "VoiceToneAnalysisTask";
|
|
830
|
-
const _VTATI = "VoiceToneAnalysisTaskId";
|
|
831
|
-
const _VTATS = "VoiceToneAnalysisTaskStatus";
|
|
832
|
-
const _W = "Weight";
|
|
833
|
-
const _a = "arn";
|
|
834
|
-
const _ac = "area-code";
|
|
835
|
-
const _c = "client";
|
|
836
|
-
const _ci = "city";
|
|
837
|
-
const _co = "country";
|
|
838
|
-
const _e = "error";
|
|
839
|
-
const _fn = "filter-name";
|
|
840
|
-
const _fv = "filter-value";
|
|
841
|
-
const _h = "http";
|
|
842
|
-
const _hE = "httpError";
|
|
843
|
-
const _hQ = "httpQuery";
|
|
844
|
-
const _iC = "isCaller";
|
|
845
|
-
const _mr = "max-results";
|
|
846
|
-
const _nt = "next-token";
|
|
847
|
-
const _pC = "postalCode";
|
|
848
|
-
const _pCP = "postalCodePlus4";
|
|
849
|
-
const _pD = "postDirectional";
|
|
850
|
-
const _pDr = "preDirectional";
|
|
851
|
-
const _pnt = "phone-number-type";
|
|
852
|
-
const _pt = "product-type";
|
|
853
|
-
const _s = "state";
|
|
854
|
-
const _sI = "streetInfo";
|
|
855
|
-
const _sN = "streetName";
|
|
856
|
-
const _sNt = "streetNumber";
|
|
857
|
-
const _sS = "streetSuffix";
|
|
858
|
-
const _se = "server";
|
|
859
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkvoice";
|
|
860
|
-
const _sma = "sip-media-application";
|
|
861
|
-
const _st = "status";
|
|
862
|
-
const _tfp = "toll-free-prefix";
|
|
863
|
-
const _vpdi = "voice-profile-domain-id";
|
|
864
|
-
const _xN = "xmlName";
|
|
865
|
-
const n0 = "com.amazonaws.chimesdkvoice";
|
|
866
|
-
var AlexaSkillId = [0, n0, _ASI, 8, 0];
|
|
867
|
-
var Arn = [0, n0, _A, 8, 0];
|
|
868
|
-
var CallingName = [0, n0, _CN, 8, 0];
|
|
869
|
-
var E164PhoneNumber = [0, n0, _EPN, 8, 0];
|
|
870
|
-
var FunctionArn = [0, n0, _FA, 8, 0];
|
|
871
|
-
var PhoneNumberName = [0, n0, _PNN, 8, 0];
|
|
872
|
-
var ProxySessionNameString = [0, n0, _PSNS, 8, 0];
|
|
873
|
-
var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
|
|
874
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
875
|
-
var TagKey = [0, n0, _TK, 8, 0];
|
|
876
|
-
var TagValue = [0, n0, _TV, 8, 0];
|
|
877
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
878
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
879
|
-
[_C, _M],
|
|
880
|
-
[0, 0]
|
|
881
|
-
];
|
|
882
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
883
|
-
var Address$ = [3, n0, _Ad,
|
|
884
|
-
0,
|
|
885
|
-
[_sN, _sS, _pD, _pDr, _sNt, _ci, _s, _pC, _pCP, _co],
|
|
886
|
-
[[() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]]
|
|
887
|
-
];
|
|
888
|
-
var AssociatePhoneNumbersWithVoiceConnectorGroupRequest$ = [3, n0, _APNWVCGR,
|
|
889
|
-
0,
|
|
890
|
-
[_VCGI, _EPNh, _FAo],
|
|
891
|
-
[[0, 1], [() => E164PhoneNumberList, 0], 2], 2
|
|
892
|
-
];
|
|
893
|
-
var AssociatePhoneNumbersWithVoiceConnectorGroupResponse$ = [3, n0, _APNWVCGRs,
|
|
894
|
-
0,
|
|
895
|
-
[_PNE],
|
|
896
|
-
[[() => PhoneNumberErrorList, 0]]
|
|
897
|
-
];
|
|
898
|
-
var AssociatePhoneNumbersWithVoiceConnectorRequest$ = [3, n0, _APNWVCR,
|
|
899
|
-
0,
|
|
900
|
-
[_VCI, _EPNh, _FAo],
|
|
901
|
-
[[0, 1], [() => E164PhoneNumberList, 0], 2], 2
|
|
902
|
-
];
|
|
903
|
-
var AssociatePhoneNumbersWithVoiceConnectorResponse$ = [3, n0, _APNWVCRs,
|
|
904
|
-
0,
|
|
905
|
-
[_PNE],
|
|
906
|
-
[[() => PhoneNumberErrorList, 0]]
|
|
907
|
-
];
|
|
908
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
909
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
910
|
-
[_C, _M],
|
|
911
|
-
[0, 0]
|
|
912
|
-
];
|
|
913
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
914
|
-
var BatchDeletePhoneNumberRequest$ = [3, n0, _BDPNR,
|
|
915
|
-
0,
|
|
916
|
-
[_PNI],
|
|
917
|
-
[64 | 0], 1
|
|
918
|
-
];
|
|
919
|
-
var BatchDeletePhoneNumberResponse$ = [3, n0, _BDPNRa,
|
|
920
|
-
0,
|
|
921
|
-
[_PNE],
|
|
922
|
-
[[() => PhoneNumberErrorList, 0]]
|
|
923
|
-
];
|
|
924
|
-
var BatchUpdatePhoneNumberRequest$ = [3, n0, _BUPNR,
|
|
925
|
-
0,
|
|
926
|
-
[_UPNRI],
|
|
927
|
-
[[() => UpdatePhoneNumberRequestItemList, 0]], 1
|
|
928
|
-
];
|
|
929
|
-
var BatchUpdatePhoneNumberResponse$ = [3, n0, _BUPNRa,
|
|
930
|
-
0,
|
|
931
|
-
[_PNE],
|
|
932
|
-
[[() => PhoneNumberErrorList, 0]]
|
|
933
|
-
];
|
|
934
|
-
var CallDetails$ = [3, n0, _CD,
|
|
935
|
-
0,
|
|
936
|
-
[_VCI, _TI, _IC],
|
|
937
|
-
[0, 0, 2]
|
|
938
|
-
];
|
|
939
|
-
var CandidateAddress$ = [3, n0, _CA,
|
|
940
|
-
0,
|
|
941
|
-
[_sI, _sNt, _ci, _s, _pC, _pCP, _co],
|
|
942
|
-
[[() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]]
|
|
943
|
-
];
|
|
944
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
945
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
946
|
-
[_C, _M],
|
|
947
|
-
[0, 0]
|
|
948
|
-
];
|
|
949
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
950
|
-
var CreatePhoneNumberOrderRequest$ = [3, n0, _CPNOR,
|
|
951
|
-
0,
|
|
952
|
-
[_PT, _EPNh, _N],
|
|
953
|
-
[0, [() => E164PhoneNumberList, 0], [() => PhoneNumberName, 0]], 2
|
|
954
|
-
];
|
|
955
|
-
var CreatePhoneNumberOrderResponse$ = [3, n0, _CPNORr,
|
|
956
|
-
0,
|
|
957
|
-
[_PNO],
|
|
958
|
-
[[() => PhoneNumberOrder$, 0]]
|
|
959
|
-
];
|
|
960
|
-
var CreateProxySessionRequest$ = [3, n0, _CPSR,
|
|
961
|
-
0,
|
|
962
|
-
[_VCI, _PPN, _Ca, _N, _EM, _NSB, _GML, _GMP],
|
|
963
|
-
[[0, 1], [() => ParticipantPhoneNumberList, 0], 64 | 0, [() => ProxySessionNameString, 0], 1, 0, 0, () => GeoMatchParams$], 3
|
|
964
|
-
];
|
|
965
|
-
var CreateProxySessionResponse$ = [3, n0, _CPSRr,
|
|
966
|
-
0,
|
|
967
|
-
[_PS],
|
|
968
|
-
[[() => ProxySession$, 0]]
|
|
969
|
-
];
|
|
970
|
-
var CreateSipMediaApplicationCallRequest$ = [3, n0, _CSMACR,
|
|
971
|
-
0,
|
|
972
|
-
[_FPN, _TPN, _SMAI, _SH, _AM],
|
|
973
|
-
[[() => E164PhoneNumber, 0], [() => E164PhoneNumber, 0], [0, 1], [() => SipHeadersMap, 0], [() => SMACreateCallArgumentsMap, 0]], 3
|
|
974
|
-
];
|
|
975
|
-
var CreateSipMediaApplicationCallResponse$ = [3, n0, _CSMACRr,
|
|
976
|
-
0,
|
|
977
|
-
[_SMAC],
|
|
978
|
-
[() => SipMediaApplicationCall$]
|
|
979
|
-
];
|
|
980
|
-
var CreateSipMediaApplicationRequest$ = [3, n0, _CSMAR,
|
|
981
|
-
0,
|
|
982
|
-
[_AR, _N, _E, _T],
|
|
983
|
-
[0, 0, [() => SipMediaApplicationEndpointList, 0], [() => TagList, 0]], 3
|
|
984
|
-
];
|
|
985
|
-
var CreateSipMediaApplicationResponse$ = [3, n0, _CSMARr,
|
|
986
|
-
0,
|
|
987
|
-
[_SMA],
|
|
988
|
-
[[() => SipMediaApplication$, 0]]
|
|
989
|
-
];
|
|
990
|
-
var CreateSipRuleRequest$ = [3, n0, _CSRR,
|
|
991
|
-
0,
|
|
992
|
-
[_N, _TT, _TVr, _D, _TA],
|
|
993
|
-
[0, 0, 0, 2, () => SipRuleTargetApplicationList], 3
|
|
994
|
-
];
|
|
995
|
-
var CreateSipRuleResponse$ = [3, n0, _CSRRr,
|
|
996
|
-
0,
|
|
997
|
-
[_SR],
|
|
998
|
-
[() => SipRule$]
|
|
999
|
-
];
|
|
1000
|
-
var CreateVoiceConnectorGroupRequest$ = [3, n0, _CVCGR,
|
|
1001
|
-
0,
|
|
1002
|
-
[_N, _VCIo],
|
|
1003
|
-
[0, () => VoiceConnectorItemList], 1
|
|
1004
|
-
];
|
|
1005
|
-
var CreateVoiceConnectorGroupResponse$ = [3, n0, _CVCGRr,
|
|
1006
|
-
0,
|
|
1007
|
-
[_VCG],
|
|
1008
|
-
[() => VoiceConnectorGroup$]
|
|
1009
|
-
];
|
|
1010
|
-
var CreateVoiceConnectorRequest$ = [3, n0, _CVCR,
|
|
1011
|
-
0,
|
|
1012
|
-
[_N, _RE, _AR, _T, _IT, _NT],
|
|
1013
|
-
[0, 2, 0, [() => TagList, 0], 0, 0], 2
|
|
1014
|
-
];
|
|
1015
|
-
var CreateVoiceConnectorResponse$ = [3, n0, _CVCRr,
|
|
1016
|
-
0,
|
|
1017
|
-
[_VC],
|
|
1018
|
-
[() => VoiceConnector$]
|
|
1019
|
-
];
|
|
1020
|
-
var CreateVoiceProfileDomainRequest$ = [3, n0, _CVPDR,
|
|
1021
|
-
0,
|
|
1022
|
-
[_N, _SSEC, _De, _CRT, _T],
|
|
1023
|
-
[0, [() => ServerSideEncryptionConfiguration$, 0], 0, 0, [() => TagList, 0]], 2
|
|
1024
|
-
];
|
|
1025
|
-
var CreateVoiceProfileDomainResponse$ = [3, n0, _CVPDRr,
|
|
1026
|
-
0,
|
|
1027
|
-
[_VPD],
|
|
1028
|
-
[[() => VoiceProfileDomain$, 0]]
|
|
1029
|
-
];
|
|
1030
|
-
var CreateVoiceProfileRequest$ = [3, n0, _CVPR,
|
|
1031
|
-
0,
|
|
1032
|
-
[_SSTI],
|
|
1033
|
-
[0], 1
|
|
1034
|
-
];
|
|
1035
|
-
var CreateVoiceProfileResponse$ = [3, n0, _CVPRr,
|
|
1036
|
-
0,
|
|
1037
|
-
[_VP],
|
|
1038
|
-
[[() => VoiceProfile$, 0]]
|
|
1039
|
-
];
|
|
1040
|
-
var Credential$ = [3, n0, _Cr,
|
|
1041
|
-
0,
|
|
1042
|
-
[_U, _P],
|
|
1043
|
-
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
1044
|
-
];
|
|
1045
|
-
var DeletePhoneNumberRequest$ = [3, n0, _DPNR,
|
|
1046
|
-
0,
|
|
1047
|
-
[_PNIh],
|
|
1048
|
-
[[() => SensitiveNonEmptyString, 1]], 1
|
|
1049
|
-
];
|
|
1050
|
-
var DeleteProxySessionRequest$ = [3, n0, _DPSR,
|
|
1051
|
-
0,
|
|
1052
|
-
[_VCI, _PSI],
|
|
1053
|
-
[[0, 1], [0, 1]], 2
|
|
1054
|
-
];
|
|
1055
|
-
var DeleteSipMediaApplicationRequest$ = [3, n0, _DSMAR,
|
|
1056
|
-
0,
|
|
1057
|
-
[_SMAI],
|
|
1058
|
-
[[0, 1]], 1
|
|
1059
|
-
];
|
|
1060
|
-
var DeleteSipRuleRequest$ = [3, n0, _DSRR,
|
|
1061
|
-
0,
|
|
1062
|
-
[_SRI],
|
|
1063
|
-
[[0, 1]], 1
|
|
1064
|
-
];
|
|
1065
|
-
var DeleteVoiceConnectorEmergencyCallingConfigurationRequest$ = [3, n0, _DVCECCR,
|
|
1066
|
-
0,
|
|
1067
|
-
[_VCI],
|
|
1068
|
-
[[0, 1]], 1
|
|
1069
|
-
];
|
|
1070
|
-
var DeleteVoiceConnectorExternalSystemsConfigurationRequest$ = [3, n0, _DVCESCR,
|
|
1071
|
-
0,
|
|
1072
|
-
[_VCI],
|
|
1073
|
-
[[0, 1]], 1
|
|
1074
|
-
];
|
|
1075
|
-
var DeleteVoiceConnectorGroupRequest$ = [3, n0, _DVCGR,
|
|
1076
|
-
0,
|
|
1077
|
-
[_VCGI],
|
|
1078
|
-
[[0, 1]], 1
|
|
1079
|
-
];
|
|
1080
|
-
var DeleteVoiceConnectorOriginationRequest$ = [3, n0, _DVCOR,
|
|
1081
|
-
0,
|
|
1082
|
-
[_VCI],
|
|
1083
|
-
[[0, 1]], 1
|
|
1084
|
-
];
|
|
1085
|
-
var DeleteVoiceConnectorProxyRequest$ = [3, n0, _DVCPR,
|
|
1086
|
-
0,
|
|
1087
|
-
[_VCI],
|
|
1088
|
-
[[0, 1]], 1
|
|
1089
|
-
];
|
|
1090
|
-
var DeleteVoiceConnectorRequest$ = [3, n0, _DVCR,
|
|
1091
|
-
0,
|
|
1092
|
-
[_VCI],
|
|
1093
|
-
[[0, 1]], 1
|
|
1094
|
-
];
|
|
1095
|
-
var DeleteVoiceConnectorStreamingConfigurationRequest$ = [3, n0, _DVCSCR,
|
|
1096
|
-
0,
|
|
1097
|
-
[_VCI],
|
|
1098
|
-
[[0, 1]], 1
|
|
1099
|
-
];
|
|
1100
|
-
var DeleteVoiceConnectorTerminationCredentialsRequest$ = [3, n0, _DVCTCR,
|
|
1101
|
-
0,
|
|
1102
|
-
[_VCI, _Us],
|
|
1103
|
-
[[0, 1], [() => SensitiveStringList, 0]], 2
|
|
1104
|
-
];
|
|
1105
|
-
var DeleteVoiceConnectorTerminationRequest$ = [3, n0, _DVCTR,
|
|
1106
|
-
0,
|
|
1107
|
-
[_VCI],
|
|
1108
|
-
[[0, 1]], 1
|
|
1109
|
-
];
|
|
1110
|
-
var DeleteVoiceProfileDomainRequest$ = [3, n0, _DVPDR,
|
|
1111
|
-
0,
|
|
1112
|
-
[_VPDI],
|
|
1113
|
-
[[0, 1]], 1
|
|
1114
|
-
];
|
|
1115
|
-
var DeleteVoiceProfileRequest$ = [3, n0, _DVPR,
|
|
1116
|
-
0,
|
|
1117
|
-
[_VPI],
|
|
1118
|
-
[[0, 1]], 1
|
|
1119
|
-
];
|
|
1120
|
-
var DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$ = [3, n0, _DPNFVCGR,
|
|
1121
|
-
0,
|
|
1122
|
-
[_VCGI, _EPNh],
|
|
1123
|
-
[[0, 1], [() => E164PhoneNumberList, 0]], 2
|
|
1124
|
-
];
|
|
1125
|
-
var DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$ = [3, n0, _DPNFVCGRi,
|
|
1126
|
-
0,
|
|
1127
|
-
[_PNE],
|
|
1128
|
-
[[() => PhoneNumberErrorList, 0]]
|
|
1129
|
-
];
|
|
1130
|
-
var DisassociatePhoneNumbersFromVoiceConnectorRequest$ = [3, n0, _DPNFVCR,
|
|
1131
|
-
0,
|
|
1132
|
-
[_VCI, _EPNh],
|
|
1133
|
-
[[0, 1], [() => E164PhoneNumberList, 0]], 2
|
|
1134
|
-
];
|
|
1135
|
-
var DisassociatePhoneNumbersFromVoiceConnectorResponse$ = [3, n0, _DPNFVCRi,
|
|
1136
|
-
0,
|
|
1137
|
-
[_PNE],
|
|
1138
|
-
[[() => PhoneNumberErrorList, 0]]
|
|
1139
|
-
];
|
|
1140
|
-
var DNISEmergencyCallingConfiguration$ = [3, n0, _DNISECC,
|
|
1141
|
-
0,
|
|
1142
|
-
[_EPNm, _CC, _TPNe],
|
|
1143
|
-
[[() => E164PhoneNumber, 0], 0, [() => E164PhoneNumber, 0]], 2
|
|
1144
|
-
];
|
|
1145
|
-
var EmergencyCallingConfiguration$ = [3, n0, _ECC,
|
|
1146
|
-
0,
|
|
1147
|
-
[_DNIS],
|
|
1148
|
-
[[() => DNISEmergencyCallingConfigurationList, 0]]
|
|
1149
|
-
];
|
|
1150
|
-
var ExternalSystemsConfiguration$ = [3, n0, _ESC,
|
|
1151
|
-
0,
|
|
1152
|
-
[_SBCT, _CCST],
|
|
1153
|
-
[64 | 0, 64 | 0]
|
|
1154
|
-
];
|
|
1155
|
-
var ForbiddenException$ = [-3, n0, _FE,
|
|
1156
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1157
|
-
[_C, _M],
|
|
1158
|
-
[0, 0]
|
|
1159
|
-
];
|
|
1160
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
1161
|
-
var GeoMatchParams$ = [3, n0, _GMP,
|
|
1162
|
-
0,
|
|
1163
|
-
[_Co, _AC],
|
|
1164
|
-
[0, 0], 2
|
|
1165
|
-
];
|
|
1166
|
-
var GetGlobalSettingsResponse$ = [3, n0, _GGSR,
|
|
1167
|
-
0,
|
|
1168
|
-
[_VC],
|
|
1169
|
-
[() => VoiceConnectorSettings$]
|
|
1170
|
-
];
|
|
1171
|
-
var GetPhoneNumberOrderRequest$ = [3, n0, _GPNOR,
|
|
1172
|
-
0,
|
|
1173
|
-
[_PNOI],
|
|
1174
|
-
[[0, 1]], 1
|
|
1175
|
-
];
|
|
1176
|
-
var GetPhoneNumberOrderResponse$ = [3, n0, _GPNORe,
|
|
1177
|
-
0,
|
|
1178
|
-
[_PNO],
|
|
1179
|
-
[[() => PhoneNumberOrder$, 0]]
|
|
1180
|
-
];
|
|
1181
|
-
var GetPhoneNumberRequest$ = [3, n0, _GPNR,
|
|
1182
|
-
0,
|
|
1183
|
-
[_PNIh],
|
|
1184
|
-
[[() => SensitiveNonEmptyString, 1]], 1
|
|
1185
|
-
];
|
|
1186
|
-
var GetPhoneNumberResponse$ = [3, n0, _GPNRe,
|
|
1187
|
-
0,
|
|
1188
|
-
[_PN],
|
|
1189
|
-
[[() => PhoneNumber$, 0]]
|
|
1190
|
-
];
|
|
1191
|
-
var GetPhoneNumberSettingsResponse$ = [3, n0, _GPNSR,
|
|
1192
|
-
0,
|
|
1193
|
-
[_CN, _CNUT],
|
|
1194
|
-
[[() => CallingName, 0], 5]
|
|
1195
|
-
];
|
|
1196
|
-
var GetProxySessionRequest$ = [3, n0, _GPSR,
|
|
1197
|
-
0,
|
|
1198
|
-
[_VCI, _PSI],
|
|
1199
|
-
[[0, 1], [0, 1]], 2
|
|
1200
|
-
];
|
|
1201
|
-
var GetProxySessionResponse$ = [3, n0, _GPSRe,
|
|
1202
|
-
0,
|
|
1203
|
-
[_PS],
|
|
1204
|
-
[[() => ProxySession$, 0]]
|
|
1205
|
-
];
|
|
1206
|
-
var GetSipMediaApplicationAlexaSkillConfigurationRequest$ = [3, n0, _GSMAASCR,
|
|
1207
|
-
0,
|
|
1208
|
-
[_SMAI],
|
|
1209
|
-
[[0, 1]], 1
|
|
1210
|
-
];
|
|
1211
|
-
var GetSipMediaApplicationAlexaSkillConfigurationResponse$ = [3, n0, _GSMAASCRe,
|
|
1212
|
-
0,
|
|
1213
|
-
[_SMAASC],
|
|
1214
|
-
[[() => SipMediaApplicationAlexaSkillConfiguration$, 0]]
|
|
1215
|
-
];
|
|
1216
|
-
var GetSipMediaApplicationLoggingConfigurationRequest$ = [3, n0, _GSMALCR,
|
|
1217
|
-
0,
|
|
1218
|
-
[_SMAI],
|
|
1219
|
-
[[0, 1]], 1
|
|
1220
|
-
];
|
|
1221
|
-
var GetSipMediaApplicationLoggingConfigurationResponse$ = [3, n0, _GSMALCRe,
|
|
1222
|
-
0,
|
|
1223
|
-
[_SMALC],
|
|
1224
|
-
[() => SipMediaApplicationLoggingConfiguration$]
|
|
1225
|
-
];
|
|
1226
|
-
var GetSipMediaApplicationRequest$ = [3, n0, _GSMAR,
|
|
1227
|
-
0,
|
|
1228
|
-
[_SMAI],
|
|
1229
|
-
[[0, 1]], 1
|
|
1230
|
-
];
|
|
1231
|
-
var GetSipMediaApplicationResponse$ = [3, n0, _GSMARe,
|
|
1232
|
-
0,
|
|
1233
|
-
[_SMA],
|
|
1234
|
-
[[() => SipMediaApplication$, 0]]
|
|
1235
|
-
];
|
|
1236
|
-
var GetSipRuleRequest$ = [3, n0, _GSRR,
|
|
1237
|
-
0,
|
|
1238
|
-
[_SRI],
|
|
1239
|
-
[[0, 1]], 1
|
|
1240
|
-
];
|
|
1241
|
-
var GetSipRuleResponse$ = [3, n0, _GSRRe,
|
|
1242
|
-
0,
|
|
1243
|
-
[_SR],
|
|
1244
|
-
[() => SipRule$]
|
|
1245
|
-
];
|
|
1246
|
-
var GetSpeakerSearchTaskRequest$ = [3, n0, _GSSTR,
|
|
1247
|
-
0,
|
|
1248
|
-
[_VCI, _SSTI],
|
|
1249
|
-
[[0, 1], [0, 1]], 2
|
|
1250
|
-
];
|
|
1251
|
-
var GetSpeakerSearchTaskResponse$ = [3, n0, _GSSTRe,
|
|
1252
|
-
0,
|
|
1253
|
-
[_SST],
|
|
1254
|
-
[() => SpeakerSearchTask$]
|
|
1255
|
-
];
|
|
1256
|
-
var GetVoiceConnectorEmergencyCallingConfigurationRequest$ = [3, n0, _GVCECCR,
|
|
1257
|
-
0,
|
|
1258
|
-
[_VCI],
|
|
1259
|
-
[[0, 1]], 1
|
|
1260
|
-
];
|
|
1261
|
-
var GetVoiceConnectorEmergencyCallingConfigurationResponse$ = [3, n0, _GVCECCRe,
|
|
1262
|
-
0,
|
|
1263
|
-
[_ECC],
|
|
1264
|
-
[[() => EmergencyCallingConfiguration$, 0]]
|
|
1265
|
-
];
|
|
1266
|
-
var GetVoiceConnectorExternalSystemsConfigurationRequest$ = [3, n0, _GVCESCR,
|
|
1267
|
-
0,
|
|
1268
|
-
[_VCI],
|
|
1269
|
-
[[0, 1]], 1
|
|
1270
|
-
];
|
|
1271
|
-
var GetVoiceConnectorExternalSystemsConfigurationResponse$ = [3, n0, _GVCESCRe,
|
|
1272
|
-
0,
|
|
1273
|
-
[_ESC],
|
|
1274
|
-
[() => ExternalSystemsConfiguration$]
|
|
1275
|
-
];
|
|
1276
|
-
var GetVoiceConnectorGroupRequest$ = [3, n0, _GVCGR,
|
|
1277
|
-
0,
|
|
1278
|
-
[_VCGI],
|
|
1279
|
-
[[0, 1]], 1
|
|
1280
|
-
];
|
|
1281
|
-
var GetVoiceConnectorGroupResponse$ = [3, n0, _GVCGRe,
|
|
1282
|
-
0,
|
|
1283
|
-
[_VCG],
|
|
1284
|
-
[() => VoiceConnectorGroup$]
|
|
1285
|
-
];
|
|
1286
|
-
var GetVoiceConnectorLoggingConfigurationRequest$ = [3, n0, _GVCLCR,
|
|
1287
|
-
0,
|
|
1288
|
-
[_VCI],
|
|
1289
|
-
[[0, 1]], 1
|
|
1290
|
-
];
|
|
1291
|
-
var GetVoiceConnectorLoggingConfigurationResponse$ = [3, n0, _GVCLCRe,
|
|
1292
|
-
0,
|
|
1293
|
-
[_LC],
|
|
1294
|
-
[() => LoggingConfiguration$]
|
|
1295
|
-
];
|
|
1296
|
-
var GetVoiceConnectorOriginationRequest$ = [3, n0, _GVCOR,
|
|
1297
|
-
0,
|
|
1298
|
-
[_VCI],
|
|
1299
|
-
[[0, 1]], 1
|
|
1300
|
-
];
|
|
1301
|
-
var GetVoiceConnectorOriginationResponse$ = [3, n0, _GVCORe,
|
|
1302
|
-
0,
|
|
1303
|
-
[_O],
|
|
1304
|
-
[() => Origination$]
|
|
1305
|
-
];
|
|
1306
|
-
var GetVoiceConnectorProxyRequest$ = [3, n0, _GVCPR,
|
|
1307
|
-
0,
|
|
1308
|
-
[_VCI],
|
|
1309
|
-
[[0, 1]], 1
|
|
1310
|
-
];
|
|
1311
|
-
var GetVoiceConnectorProxyResponse$ = [3, n0, _GVCPRe,
|
|
1312
|
-
0,
|
|
1313
|
-
[_Pr],
|
|
1314
|
-
[[() => Proxy$, 0]]
|
|
1315
|
-
];
|
|
1316
|
-
var GetVoiceConnectorRequest$ = [3, n0, _GVCR,
|
|
1317
|
-
0,
|
|
1318
|
-
[_VCI],
|
|
1319
|
-
[[0, 1]], 1
|
|
1320
|
-
];
|
|
1321
|
-
var GetVoiceConnectorResponse$ = [3, n0, _GVCRe,
|
|
1322
|
-
0,
|
|
1323
|
-
[_VC],
|
|
1324
|
-
[() => VoiceConnector$]
|
|
1325
|
-
];
|
|
1326
|
-
var GetVoiceConnectorStreamingConfigurationRequest$ = [3, n0, _GVCSCR,
|
|
1327
|
-
0,
|
|
1328
|
-
[_VCI],
|
|
1329
|
-
[[0, 1]], 1
|
|
1330
|
-
];
|
|
1331
|
-
var GetVoiceConnectorStreamingConfigurationResponse$ = [3, n0, _GVCSCRe,
|
|
1332
|
-
0,
|
|
1333
|
-
[_SC],
|
|
1334
|
-
[[() => StreamingConfiguration$, 0]]
|
|
1335
|
-
];
|
|
1336
|
-
var GetVoiceConnectorTerminationHealthRequest$ = [3, n0, _GVCTHR,
|
|
1337
|
-
0,
|
|
1338
|
-
[_VCI],
|
|
1339
|
-
[[0, 1]], 1
|
|
1340
|
-
];
|
|
1341
|
-
var GetVoiceConnectorTerminationHealthResponse$ = [3, n0, _GVCTHRe,
|
|
1342
|
-
0,
|
|
1343
|
-
[_TH],
|
|
1344
|
-
[() => TerminationHealth$]
|
|
1345
|
-
];
|
|
1346
|
-
var GetVoiceConnectorTerminationRequest$ = [3, n0, _GVCTR,
|
|
1347
|
-
0,
|
|
1348
|
-
[_VCI],
|
|
1349
|
-
[[0, 1]], 1
|
|
1350
|
-
];
|
|
1351
|
-
var GetVoiceConnectorTerminationResponse$ = [3, n0, _GVCTRe,
|
|
1352
|
-
0,
|
|
1353
|
-
[_Te],
|
|
1354
|
-
[[() => Termination$, 0]]
|
|
1355
|
-
];
|
|
1356
|
-
var GetVoiceProfileDomainRequest$ = [3, n0, _GVPDR,
|
|
1357
|
-
0,
|
|
1358
|
-
[_VPDI],
|
|
1359
|
-
[[0, 1]], 1
|
|
1360
|
-
];
|
|
1361
|
-
var GetVoiceProfileDomainResponse$ = [3, n0, _GVPDRe,
|
|
1362
|
-
0,
|
|
1363
|
-
[_VPD],
|
|
1364
|
-
[[() => VoiceProfileDomain$, 0]]
|
|
1365
|
-
];
|
|
1366
|
-
var GetVoiceProfileRequest$ = [3, n0, _GVPR,
|
|
1367
|
-
0,
|
|
1368
|
-
[_VPI],
|
|
1369
|
-
[[0, 1]], 1
|
|
1370
|
-
];
|
|
1371
|
-
var GetVoiceProfileResponse$ = [3, n0, _GVPRe,
|
|
1372
|
-
0,
|
|
1373
|
-
[_VP],
|
|
1374
|
-
[[() => VoiceProfile$, 0]]
|
|
1375
|
-
];
|
|
1376
|
-
var GetVoiceToneAnalysisTaskRequest$ = [3, n0, _GVTATR,
|
|
1377
|
-
0,
|
|
1378
|
-
[_VCI, _VTATI, _IC],
|
|
1379
|
-
[[0, 1], [0, 1], [2, { [_hQ]: _iC }]], 3
|
|
1380
|
-
];
|
|
1381
|
-
var GetVoiceToneAnalysisTaskResponse$ = [3, n0, _GVTATRe,
|
|
1382
|
-
0,
|
|
1383
|
-
[_VTAT],
|
|
1384
|
-
[() => VoiceToneAnalysisTask$]
|
|
1385
|
-
];
|
|
1386
|
-
var GoneException$ = [-3, n0, _GE,
|
|
1387
|
-
{ [_e]: _c, [_hE]: 410 },
|
|
1388
|
-
[_C, _M],
|
|
1389
|
-
[0, 0]
|
|
1390
|
-
];
|
|
1391
|
-
schema.TypeRegistry.for(n0).registerError(GoneException$, GoneException);
|
|
1392
|
-
var ListAvailableVoiceConnectorRegionsResponse$ = [3, n0, _LAVCRR,
|
|
1393
|
-
0,
|
|
1394
|
-
[_VCR],
|
|
1395
|
-
[64 | 0]
|
|
1396
|
-
];
|
|
1397
|
-
var ListPhoneNumberOrdersRequest$ = [3, n0, _LPNOR,
|
|
1398
|
-
0,
|
|
1399
|
-
[_NTe, _MR],
|
|
1400
|
-
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1401
|
-
];
|
|
1402
|
-
var ListPhoneNumberOrdersResponse$ = [3, n0, _LPNORi,
|
|
1403
|
-
0,
|
|
1404
|
-
[_PNOh, _NTe],
|
|
1405
|
-
[[() => PhoneNumberOrderList, 0], 0]
|
|
1406
|
-
];
|
|
1407
|
-
var ListPhoneNumbersRequest$ = [3, n0, _LPNR,
|
|
1408
|
-
0,
|
|
1409
|
-
[_S, _PT, _FN, _FV, _MR, _NTe],
|
|
1410
|
-
[[0, { [_hQ]: _st }], [0, { [_hQ]: _pt }], [0, { [_hQ]: _fn }], [0, { [_hQ]: _fv }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1411
|
-
];
|
|
1412
|
-
var ListPhoneNumbersResponse$ = [3, n0, _LPNRi,
|
|
1413
|
-
0,
|
|
1414
|
-
[_PNh, _NTe],
|
|
1415
|
-
[[() => PhoneNumberList, 0], 0]
|
|
1416
|
-
];
|
|
1417
|
-
var ListProxySessionsRequest$ = [3, n0, _LPSR,
|
|
1418
|
-
0,
|
|
1419
|
-
[_VCI, _S, _NTe, _MR],
|
|
1420
|
-
[[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
1421
|
-
];
|
|
1422
|
-
var ListProxySessionsResponse$ = [3, n0, _LPSRi,
|
|
1423
|
-
0,
|
|
1424
|
-
[_PSr, _NTe],
|
|
1425
|
-
[[() => ProxySessions, 0], 0]
|
|
1426
|
-
];
|
|
1427
|
-
var ListSipMediaApplicationsRequest$ = [3, n0, _LSMAR,
|
|
1428
|
-
0,
|
|
1429
|
-
[_MR, _NTe],
|
|
1430
|
-
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1431
|
-
];
|
|
1432
|
-
var ListSipMediaApplicationsResponse$ = [3, n0, _LSMARi,
|
|
1433
|
-
0,
|
|
1434
|
-
[_SMAi, _NTe],
|
|
1435
|
-
[[() => SipMediaApplicationList, 0], 0]
|
|
1436
|
-
];
|
|
1437
|
-
var ListSipRulesRequest$ = [3, n0, _LSRR,
|
|
1438
|
-
0,
|
|
1439
|
-
[_SMAI, _MR, _NTe],
|
|
1440
|
-
[[0, { [_hQ]: _sma }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1441
|
-
];
|
|
1442
|
-
var ListSipRulesResponse$ = [3, n0, _LSRRi,
|
|
1443
|
-
0,
|
|
1444
|
-
[_SRi, _NTe],
|
|
1445
|
-
[() => SipRuleList, 0]
|
|
1446
|
-
];
|
|
1447
|
-
var ListSupportedPhoneNumberCountriesRequest$ = [3, n0, _LSPNCR,
|
|
1448
|
-
0,
|
|
1449
|
-
[_PT],
|
|
1450
|
-
[[0, { [_hQ]: _pt }]], 1
|
|
1451
|
-
];
|
|
1452
|
-
var ListSupportedPhoneNumberCountriesResponse$ = [3, n0, _LSPNCRi,
|
|
1453
|
-
0,
|
|
1454
|
-
[_PNC],
|
|
1455
|
-
[() => PhoneNumberCountriesList]
|
|
1456
|
-
];
|
|
1457
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1458
|
-
0,
|
|
1459
|
-
[_RARN],
|
|
1460
|
-
[[() => Arn, { [_hQ]: _a }]], 1
|
|
1461
|
-
];
|
|
1462
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1463
|
-
0,
|
|
1464
|
-
[_T],
|
|
1465
|
-
[[() => TagList, 0]]
|
|
1466
|
-
];
|
|
1467
|
-
var ListVoiceConnectorGroupsRequest$ = [3, n0, _LVCGR,
|
|
1468
|
-
0,
|
|
1469
|
-
[_NTe, _MR],
|
|
1470
|
-
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1471
|
-
];
|
|
1472
|
-
var ListVoiceConnectorGroupsResponse$ = [3, n0, _LVCGRi,
|
|
1473
|
-
0,
|
|
1474
|
-
[_VCGo, _NTe],
|
|
1475
|
-
[() => VoiceConnectorGroupList, 0]
|
|
1476
|
-
];
|
|
1477
|
-
var ListVoiceConnectorsRequest$ = [3, n0, _LVCR,
|
|
1478
|
-
0,
|
|
1479
|
-
[_NTe, _MR],
|
|
1480
|
-
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1481
|
-
];
|
|
1482
|
-
var ListVoiceConnectorsResponse$ = [3, n0, _LVCRi,
|
|
1483
|
-
0,
|
|
1484
|
-
[_VCo, _NTe],
|
|
1485
|
-
[() => VoiceConnectorList, 0]
|
|
1486
|
-
];
|
|
1487
|
-
var ListVoiceConnectorTerminationCredentialsRequest$ = [3, n0, _LVCTCR,
|
|
1488
|
-
0,
|
|
1489
|
-
[_VCI],
|
|
1490
|
-
[[0, 1]], 1
|
|
1491
|
-
];
|
|
1492
|
-
var ListVoiceConnectorTerminationCredentialsResponse$ = [3, n0, _LVCTCRi,
|
|
1493
|
-
0,
|
|
1494
|
-
[_Us],
|
|
1495
|
-
[[() => SensitiveStringList, 0]]
|
|
1496
|
-
];
|
|
1497
|
-
var ListVoiceProfileDomainsRequest$ = [3, n0, _LVPDR,
|
|
1498
|
-
0,
|
|
1499
|
-
[_NTe, _MR],
|
|
1500
|
-
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1501
|
-
];
|
|
1502
|
-
var ListVoiceProfileDomainsResponse$ = [3, n0, _LVPDRi,
|
|
1503
|
-
0,
|
|
1504
|
-
[_VPDo, _NTe],
|
|
1505
|
-
[[() => VoiceProfileDomainSummaryList, 0], 0]
|
|
1506
|
-
];
|
|
1507
|
-
var ListVoiceProfilesRequest$ = [3, n0, _LVPR,
|
|
1508
|
-
0,
|
|
1509
|
-
[_VPDI, _NTe, _MR],
|
|
1510
|
-
[[0, { [_hQ]: _vpdi }], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
1511
|
-
];
|
|
1512
|
-
var ListVoiceProfilesResponse$ = [3, n0, _LVPRi,
|
|
1513
|
-
0,
|
|
1514
|
-
[_VPo, _NTe],
|
|
1515
|
-
[[() => VoiceProfileSummaryList, 0], 0]
|
|
1516
|
-
];
|
|
1517
|
-
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1518
|
-
0,
|
|
1519
|
-
[_ESIPL, _EMML],
|
|
1520
|
-
[2, 2]
|
|
1521
|
-
];
|
|
1522
|
-
var MediaInsightsConfiguration$ = [3, n0, _MIC,
|
|
1523
|
-
0,
|
|
1524
|
-
[_D, _CAo],
|
|
1525
|
-
[2, [() => Arn, 0]]
|
|
1526
|
-
];
|
|
1527
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
1528
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1529
|
-
[_C, _M],
|
|
1530
|
-
[0, 0]
|
|
1531
|
-
];
|
|
1532
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
1533
|
-
var OrderedPhoneNumber$ = [3, n0, _OPN,
|
|
1534
|
-
0,
|
|
1535
|
-
[_EPN, _S],
|
|
1536
|
-
[[() => E164PhoneNumber, 0], 0]
|
|
1537
|
-
];
|
|
1538
|
-
var Origination$ = [3, n0, _O,
|
|
1539
|
-
0,
|
|
1540
|
-
[_R, _D],
|
|
1541
|
-
[() => OriginationRouteList, 2]
|
|
1542
|
-
];
|
|
1543
|
-
var OriginationRoute$ = [3, n0, _OR,
|
|
1544
|
-
0,
|
|
1545
|
-
[_H, _Po, _Pro, _Pri, _W],
|
|
1546
|
-
[0, 1, 0, 1, 1]
|
|
1547
|
-
];
|
|
1548
|
-
var Participant$ = [3, n0, _Pa,
|
|
1549
|
-
0,
|
|
1550
|
-
[_PN, _PPNr],
|
|
1551
|
-
[[() => E164PhoneNumber, 0], [() => E164PhoneNumber, 0]]
|
|
1552
|
-
];
|
|
1553
|
-
var PhoneNumber$ = [3, n0, _PN,
|
|
1554
|
-
0,
|
|
1555
|
-
[_PNIh, _EPN, _Co, _Ty, _PT, _S, _Ca, _As, _CN, _CNS, _CT, _UT, _DT, _OI, _N],
|
|
1556
|
-
[[() => SensitiveNonEmptyString, 0], [() => E164PhoneNumber, 0], 0, 0, 0, 0, () => PhoneNumberCapabilities$, () => PhoneNumberAssociationList, [() => CallingName, 0], 0, 5, 5, 5, 0, [() => PhoneNumberName, 0]]
|
|
1557
|
-
];
|
|
1558
|
-
var PhoneNumberAssociation$ = [3, n0, _PNA,
|
|
1559
|
-
0,
|
|
1560
|
-
[_V, _N, _AT],
|
|
1561
|
-
[0, 0, 5]
|
|
1562
|
-
];
|
|
1563
|
-
var PhoneNumberCapabilities$ = [3, n0, _PNCh,
|
|
1564
|
-
0,
|
|
1565
|
-
[_ICn, _OC, _ISMS, _OSMS, _IMMS, _OMMS],
|
|
1566
|
-
[2, 2, 2, 2, 2, 2]
|
|
1567
|
-
];
|
|
1568
|
-
var PhoneNumberCountry$ = [3, n0, _PNCho,
|
|
1569
|
-
0,
|
|
1570
|
-
[_CCo, _SPNT],
|
|
1571
|
-
[0, 64 | 0]
|
|
1572
|
-
];
|
|
1573
|
-
var PhoneNumberError$ = [3, n0, _PNEh,
|
|
1574
|
-
0,
|
|
1575
|
-
[_PNIh, _EC, _EMr],
|
|
1576
|
-
[[() => SensitiveNonEmptyString, 0], 0, 0]
|
|
1577
|
-
];
|
|
1578
|
-
var PhoneNumberOrder$ = [3, n0, _PNO,
|
|
1579
|
-
0,
|
|
1580
|
-
[_PNOI, _PT, _S, _OT, _OPNr, _CT, _UT, _FD],
|
|
1581
|
-
[0, 0, 0, 0, [() => OrderedPhoneNumberList, 0], 5, 5, 5]
|
|
1582
|
-
];
|
|
1583
|
-
var Proxy$ = [3, n0, _Pr,
|
|
1584
|
-
0,
|
|
1585
|
-
[_DSEM, _D, _FBPN, _PNC],
|
|
1586
|
-
[1, 2, [() => E164PhoneNumber, 0], 64 | 0]
|
|
1587
|
-
];
|
|
1588
|
-
var ProxySession$ = [3, n0, _PS,
|
|
1589
|
-
0,
|
|
1590
|
-
[_VCI, _PSI, _N, _S, _EM, _Ca, _CT, _UT, _ET, _Par, _NSB, _GML, _GMP],
|
|
1591
|
-
[0, 0, 0, 0, 1, 64 | 0, 5, 5, 5, [() => Participants, 0], 0, 0, () => GeoMatchParams$]
|
|
1592
|
-
];
|
|
1593
|
-
var PutSipMediaApplicationAlexaSkillConfigurationRequest$ = [3, n0, _PSMAASCR,
|
|
1594
|
-
0,
|
|
1595
|
-
[_SMAI, _SMAASC],
|
|
1596
|
-
[[0, 1], [() => SipMediaApplicationAlexaSkillConfiguration$, 0]], 1
|
|
1597
|
-
];
|
|
1598
|
-
var PutSipMediaApplicationAlexaSkillConfigurationResponse$ = [3, n0, _PSMAASCRu,
|
|
1599
|
-
0,
|
|
1600
|
-
[_SMAASC],
|
|
1601
|
-
[[() => SipMediaApplicationAlexaSkillConfiguration$, 0]]
|
|
1602
|
-
];
|
|
1603
|
-
var PutSipMediaApplicationLoggingConfigurationRequest$ = [3, n0, _PSMALCR,
|
|
1604
|
-
0,
|
|
1605
|
-
[_SMAI, _SMALC],
|
|
1606
|
-
[[0, 1], () => SipMediaApplicationLoggingConfiguration$], 1
|
|
1607
|
-
];
|
|
1608
|
-
var PutSipMediaApplicationLoggingConfigurationResponse$ = [3, n0, _PSMALCRu,
|
|
1609
|
-
0,
|
|
1610
|
-
[_SMALC],
|
|
1611
|
-
[() => SipMediaApplicationLoggingConfiguration$]
|
|
1612
|
-
];
|
|
1613
|
-
var PutVoiceConnectorEmergencyCallingConfigurationRequest$ = [3, n0, _PVCECCR,
|
|
1614
|
-
0,
|
|
1615
|
-
[_VCI, _ECC],
|
|
1616
|
-
[[0, 1], [() => EmergencyCallingConfiguration$, 0]], 2
|
|
1617
|
-
];
|
|
1618
|
-
var PutVoiceConnectorEmergencyCallingConfigurationResponse$ = [3, n0, _PVCECCRu,
|
|
1619
|
-
0,
|
|
1620
|
-
[_ECC],
|
|
1621
|
-
[[() => EmergencyCallingConfiguration$, 0]]
|
|
1622
|
-
];
|
|
1623
|
-
var PutVoiceConnectorExternalSystemsConfigurationRequest$ = [3, n0, _PVCESCR,
|
|
1624
|
-
0,
|
|
1625
|
-
[_VCI, _SBCT, _CCST],
|
|
1626
|
-
[[0, 1], 64 | 0, 64 | 0], 1
|
|
1627
|
-
];
|
|
1628
|
-
var PutVoiceConnectorExternalSystemsConfigurationResponse$ = [3, n0, _PVCESCRu,
|
|
1629
|
-
0,
|
|
1630
|
-
[_ESC],
|
|
1631
|
-
[() => ExternalSystemsConfiguration$]
|
|
1632
|
-
];
|
|
1633
|
-
var PutVoiceConnectorLoggingConfigurationRequest$ = [3, n0, _PVCLCR,
|
|
1634
|
-
0,
|
|
1635
|
-
[_VCI, _LC],
|
|
1636
|
-
[[0, 1], () => LoggingConfiguration$], 2
|
|
1637
|
-
];
|
|
1638
|
-
var PutVoiceConnectorLoggingConfigurationResponse$ = [3, n0, _PVCLCRu,
|
|
1639
|
-
0,
|
|
1640
|
-
[_LC],
|
|
1641
|
-
[() => LoggingConfiguration$]
|
|
1642
|
-
];
|
|
1643
|
-
var PutVoiceConnectorOriginationRequest$ = [3, n0, _PVCOR,
|
|
1644
|
-
0,
|
|
1645
|
-
[_VCI, _O],
|
|
1646
|
-
[[0, 1], () => Origination$], 2
|
|
1647
|
-
];
|
|
1648
|
-
var PutVoiceConnectorOriginationResponse$ = [3, n0, _PVCORu,
|
|
1649
|
-
0,
|
|
1650
|
-
[_O],
|
|
1651
|
-
[() => Origination$]
|
|
1652
|
-
];
|
|
1653
|
-
var PutVoiceConnectorProxyRequest$ = [3, n0, _PVCPR,
|
|
1654
|
-
0,
|
|
1655
|
-
[_VCI, _DSEM, _PNPC, _FBPN, _D],
|
|
1656
|
-
[[0, 1], 1, 64 | 0, [() => E164PhoneNumber, 0], 2], 3
|
|
1657
|
-
];
|
|
1658
|
-
var PutVoiceConnectorProxyResponse$ = [3, n0, _PVCPRu,
|
|
1659
|
-
0,
|
|
1660
|
-
[_Pr],
|
|
1661
|
-
[[() => Proxy$, 0]]
|
|
1662
|
-
];
|
|
1663
|
-
var PutVoiceConnectorStreamingConfigurationRequest$ = [3, n0, _PVCSCR,
|
|
1664
|
-
0,
|
|
1665
|
-
[_VCI, _SC],
|
|
1666
|
-
[[0, 1], [() => StreamingConfiguration$, 0]], 2
|
|
1667
|
-
];
|
|
1668
|
-
var PutVoiceConnectorStreamingConfigurationResponse$ = [3, n0, _PVCSCRu,
|
|
1669
|
-
0,
|
|
1670
|
-
[_SC],
|
|
1671
|
-
[[() => StreamingConfiguration$, 0]]
|
|
1672
|
-
];
|
|
1673
|
-
var PutVoiceConnectorTerminationCredentialsRequest$ = [3, n0, _PVCTCR,
|
|
1674
|
-
0,
|
|
1675
|
-
[_VCI, _Cre],
|
|
1676
|
-
[[0, 1], [() => CredentialList, 0]], 1
|
|
1677
|
-
];
|
|
1678
|
-
var PutVoiceConnectorTerminationRequest$ = [3, n0, _PVCTR,
|
|
1679
|
-
0,
|
|
1680
|
-
[_VCI, _Te],
|
|
1681
|
-
[[0, 1], [() => Termination$, 0]], 2
|
|
1682
|
-
];
|
|
1683
|
-
var PutVoiceConnectorTerminationResponse$ = [3, n0, _PVCTRu,
|
|
1684
|
-
0,
|
|
1685
|
-
[_Te],
|
|
1686
|
-
[[() => Termination$, 0]]
|
|
1687
|
-
];
|
|
1688
|
-
var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
1689
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1690
|
-
[_C, _M],
|
|
1691
|
-
[0, 0]
|
|
1692
|
-
];
|
|
1693
|
-
schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
1694
|
-
var RestorePhoneNumberRequest$ = [3, n0, _RPNR,
|
|
1695
|
-
0,
|
|
1696
|
-
[_PNIh],
|
|
1697
|
-
[[() => SensitiveNonEmptyString, 1]], 1
|
|
1698
|
-
];
|
|
1699
|
-
var RestorePhoneNumberResponse$ = [3, n0, _RPNRe,
|
|
1700
|
-
0,
|
|
1701
|
-
[_PN],
|
|
1702
|
-
[[() => PhoneNumber$, 0]]
|
|
1703
|
-
];
|
|
1704
|
-
var SearchAvailablePhoneNumbersRequest$ = [3, n0, _SAPNR,
|
|
1705
|
-
0,
|
|
1706
|
-
[_AC, _Ci, _Co, _St, _TFP, _PNT, _MR, _NTe],
|
|
1707
|
-
[[0, { [_hQ]: _ac }], [0, { [_hQ]: _ci }], [0, { [_hQ]: _co }], [0, { [_hQ]: _s }], [0, { [_hQ]: _tfp }], [0, { [_hQ]: _pnt }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1708
|
-
];
|
|
1709
|
-
var SearchAvailablePhoneNumbersResponse$ = [3, n0, _SAPNRe,
|
|
1710
|
-
0,
|
|
1711
|
-
[_EPNh, _NTe],
|
|
1712
|
-
[[() => E164PhoneNumberList, 0], 0]
|
|
1713
|
-
];
|
|
1714
|
-
var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
|
|
1715
|
-
0,
|
|
1716
|
-
[_KKA],
|
|
1717
|
-
[[() => Arn, 0]], 1
|
|
1718
|
-
];
|
|
1719
|
-
var ServiceFailureException$ = [-3, n0, _SFE,
|
|
1720
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1721
|
-
[_C, _M],
|
|
1722
|
-
[0, 0]
|
|
1723
|
-
];
|
|
1724
|
-
schema.TypeRegistry.for(n0).registerError(ServiceFailureException$, ServiceFailureException);
|
|
1725
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
1726
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
1727
|
-
[_C, _M],
|
|
1728
|
-
[0, 0]
|
|
1729
|
-
];
|
|
1730
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1731
|
-
var SipMediaApplication$ = [3, n0, _SMA,
|
|
1732
|
-
0,
|
|
1733
|
-
[_SMAI, _AR, _N, _E, _CT, _UT, _SMAA],
|
|
1734
|
-
[0, 0, 0, [() => SipMediaApplicationEndpointList, 0], 5, 5, 0]
|
|
1735
|
-
];
|
|
1736
|
-
var SipMediaApplicationAlexaSkillConfiguration$ = [3, n0, _SMAASC,
|
|
1737
|
-
0,
|
|
1738
|
-
[_ASS, _ASIl],
|
|
1739
|
-
[0, [() => AlexaSkillIdList, 0]], 2
|
|
1740
|
-
];
|
|
1741
|
-
var SipMediaApplicationCall$ = [3, n0, _SMAC,
|
|
1742
|
-
0,
|
|
1743
|
-
[_TI],
|
|
1744
|
-
[0]
|
|
1745
|
-
];
|
|
1746
|
-
var SipMediaApplicationEndpoint$ = [3, n0, _SMAE,
|
|
1747
|
-
0,
|
|
1748
|
-
[_LA],
|
|
1749
|
-
[[() => FunctionArn, 0]]
|
|
1750
|
-
];
|
|
1751
|
-
var SipMediaApplicationLoggingConfiguration$ = [3, n0, _SMALC,
|
|
1752
|
-
0,
|
|
1753
|
-
[_ESMAML],
|
|
1754
|
-
[2]
|
|
1755
|
-
];
|
|
1756
|
-
var SipRule$ = [3, n0, _SR,
|
|
1757
|
-
0,
|
|
1758
|
-
[_SRI, _N, _D, _TT, _TVr, _TA, _CT, _UT],
|
|
1759
|
-
[0, 0, 2, 0, 0, () => SipRuleTargetApplicationList, 5, 5]
|
|
1760
|
-
];
|
|
1761
|
-
var SipRuleTargetApplication$ = [3, n0, _SRTA,
|
|
1762
|
-
0,
|
|
1763
|
-
[_SMAI, _Pri, _AR],
|
|
1764
|
-
[0, 1, 0]
|
|
1765
|
-
];
|
|
1766
|
-
var SpeakerSearchDetails$ = [3, n0, _SSD,
|
|
1767
|
-
0,
|
|
1768
|
-
[_Re, _VGS],
|
|
1769
|
-
[() => SpeakerSearchResultList, 0]
|
|
1770
|
-
];
|
|
1771
|
-
var SpeakerSearchResult$ = [3, n0, _SSR,
|
|
1772
|
-
0,
|
|
1773
|
-
[_CS, _VPI],
|
|
1774
|
-
[1, 0]
|
|
1775
|
-
];
|
|
1776
|
-
var SpeakerSearchTask$ = [3, n0, _SST,
|
|
1777
|
-
0,
|
|
1778
|
-
[_SSTI, _SSTS, _CD, _SSD, _CT, _UT, _ST, _SM],
|
|
1779
|
-
[0, 0, () => CallDetails$, () => SpeakerSearchDetails$, 5, 5, 5, 0]
|
|
1780
|
-
];
|
|
1781
|
-
var StartSpeakerSearchTaskRequest$ = [3, n0, _SSSTR,
|
|
1782
|
-
0,
|
|
1783
|
-
[_VCI, _TI, _VPDI, _CRT, _CL],
|
|
1784
|
-
[[0, 1], 0, 0, 0, 0], 3
|
|
1785
|
-
];
|
|
1786
|
-
var StartSpeakerSearchTaskResponse$ = [3, n0, _SSSTRt,
|
|
1787
|
-
0,
|
|
1788
|
-
[_SST],
|
|
1789
|
-
[() => SpeakerSearchTask$]
|
|
1790
|
-
];
|
|
1791
|
-
var StartVoiceToneAnalysisTaskRequest$ = [3, n0, _SVTATR,
|
|
1792
|
-
0,
|
|
1793
|
-
[_VCI, _TI, _LCa, _CRT],
|
|
1794
|
-
[[0, 1], 0, 0, 0], 3
|
|
1795
|
-
];
|
|
1796
|
-
var StartVoiceToneAnalysisTaskResponse$ = [3, n0, _SVTATRt,
|
|
1797
|
-
0,
|
|
1798
|
-
[_VTAT],
|
|
1799
|
-
[() => VoiceToneAnalysisTask$]
|
|
1800
|
-
];
|
|
1801
|
-
var StopSpeakerSearchTaskRequest$ = [3, n0, _SSSTRto,
|
|
1802
|
-
0,
|
|
1803
|
-
[_VCI, _SSTI],
|
|
1804
|
-
[[0, 1], [0, 1]], 2
|
|
1805
|
-
];
|
|
1806
|
-
var StopVoiceToneAnalysisTaskRequest$ = [3, n0, _SVTATRto,
|
|
1807
|
-
0,
|
|
1808
|
-
[_VCI, _VTATI],
|
|
1809
|
-
[[0, 1], [0, 1]], 2
|
|
1810
|
-
];
|
|
1811
|
-
var StreamingConfiguration$ = [3, n0, _SC,
|
|
1812
|
-
0,
|
|
1813
|
-
[_DRIH, _D, _SNT, _MIC],
|
|
1814
|
-
[1, 2, () => StreamingNotificationTargetList, [() => MediaInsightsConfiguration$, 0]], 2
|
|
1815
|
-
];
|
|
1816
|
-
var StreamingNotificationTarget$ = [3, n0, _SNTt,
|
|
1817
|
-
0,
|
|
1818
|
-
[_NTo],
|
|
1819
|
-
[0]
|
|
1820
|
-
];
|
|
1821
|
-
var Tag$ = [3, n0, _Ta,
|
|
1822
|
-
0,
|
|
1823
|
-
[_K, _V],
|
|
1824
|
-
[[() => TagKey, 0], [() => TagValue, 0]], 2
|
|
1825
|
-
];
|
|
1826
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1827
|
-
0,
|
|
1828
|
-
[_RARN, _T],
|
|
1829
|
-
[[() => Arn, 0], [() => TagList, 0]], 2
|
|
1830
|
-
];
|
|
1831
|
-
var Termination$ = [3, n0, _Te,
|
|
1832
|
-
0,
|
|
1833
|
-
[_CLp, _DPN, _CR, _CAL, _D],
|
|
1834
|
-
[1, [() => E164PhoneNumber, 0], 64 | 0, 64 | 0, 2]
|
|
1835
|
-
];
|
|
1836
|
-
var TerminationHealth$ = [3, n0, _TH,
|
|
1837
|
-
0,
|
|
1838
|
-
[_Ti, _So],
|
|
1839
|
-
[5, 0]
|
|
1840
|
-
];
|
|
1841
|
-
var ThrottledClientException$ = [-3, n0, _TCE,
|
|
1842
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1843
|
-
[_C, _M],
|
|
1844
|
-
[0, 0]
|
|
1845
|
-
];
|
|
1846
|
-
schema.TypeRegistry.for(n0).registerError(ThrottledClientException$, ThrottledClientException);
|
|
1847
|
-
var UnauthorizedClientException$ = [-3, n0, _UCE,
|
|
1848
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
1849
|
-
[_C, _M],
|
|
1850
|
-
[0, 0]
|
|
1851
|
-
];
|
|
1852
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedClientException$, UnauthorizedClientException);
|
|
1853
|
-
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
1854
|
-
{ [_e]: _c, [_hE]: 422 },
|
|
1855
|
-
[_C, _M],
|
|
1856
|
-
[0, 0]
|
|
1857
|
-
];
|
|
1858
|
-
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
1859
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1860
|
-
0,
|
|
1861
|
-
[_RARN, _TKa],
|
|
1862
|
-
[[() => Arn, 0], [() => TagKeyList, 0]], 2
|
|
1863
|
-
];
|
|
1864
|
-
var UpdateGlobalSettingsRequest$ = [3, n0, _UGSR,
|
|
1865
|
-
0,
|
|
1866
|
-
[_VC],
|
|
1867
|
-
[() => VoiceConnectorSettings$]
|
|
1868
|
-
];
|
|
1869
|
-
var UpdatePhoneNumberRequest$ = [3, n0, _UPNR,
|
|
1870
|
-
0,
|
|
1871
|
-
[_PNIh, _PT, _CN, _N],
|
|
1872
|
-
[[() => SensitiveNonEmptyString, 1], 0, [() => CallingName, 0], [() => PhoneNumberName, 0]], 1
|
|
1873
|
-
];
|
|
1874
|
-
var UpdatePhoneNumberRequestItem$ = [3, n0, _UPNRIp,
|
|
1875
|
-
0,
|
|
1876
|
-
[_PNIh, _PT, _CN, _N],
|
|
1877
|
-
[[() => SensitiveNonEmptyString, 0], 0, [() => CallingName, 0], [() => PhoneNumberName, 0]], 1
|
|
1878
|
-
];
|
|
1879
|
-
var UpdatePhoneNumberResponse$ = [3, n0, _UPNRp,
|
|
1880
|
-
0,
|
|
1881
|
-
[_PN],
|
|
1882
|
-
[[() => PhoneNumber$, 0]]
|
|
1883
|
-
];
|
|
1884
|
-
var UpdatePhoneNumberSettingsRequest$ = [3, n0, _UPNSR,
|
|
1885
|
-
0,
|
|
1886
|
-
[_CN],
|
|
1887
|
-
[[() => CallingName, 0]], 1
|
|
1888
|
-
];
|
|
1889
|
-
var UpdateProxySessionRequest$ = [3, n0, _UPSR,
|
|
1890
|
-
0,
|
|
1891
|
-
[_VCI, _PSI, _Ca, _EM],
|
|
1892
|
-
[[0, 1], [0, 1], 64 | 0, 1], 3
|
|
1893
|
-
];
|
|
1894
|
-
var UpdateProxySessionResponse$ = [3, n0, _UPSRp,
|
|
1895
|
-
0,
|
|
1896
|
-
[_PS],
|
|
1897
|
-
[[() => ProxySession$, 0]]
|
|
1898
|
-
];
|
|
1899
|
-
var UpdateSipMediaApplicationCallRequest$ = [3, n0, _USMACR,
|
|
1900
|
-
0,
|
|
1901
|
-
[_SMAI, _TI, _Ar],
|
|
1902
|
-
[[0, 1], [0, 1], [() => SMAUpdateCallArgumentsMap, 0]], 3
|
|
1903
|
-
];
|
|
1904
|
-
var UpdateSipMediaApplicationCallResponse$ = [3, n0, _USMACRp,
|
|
1905
|
-
0,
|
|
1906
|
-
[_SMAC],
|
|
1907
|
-
[() => SipMediaApplicationCall$]
|
|
1908
|
-
];
|
|
1909
|
-
var UpdateSipMediaApplicationRequest$ = [3, n0, _USMAR,
|
|
1910
|
-
0,
|
|
1911
|
-
[_SMAI, _N, _E],
|
|
1912
|
-
[[0, 1], 0, [() => SipMediaApplicationEndpointList, 0]], 1
|
|
1913
|
-
];
|
|
1914
|
-
var UpdateSipMediaApplicationResponse$ = [3, n0, _USMARp,
|
|
1915
|
-
0,
|
|
1916
|
-
[_SMA],
|
|
1917
|
-
[[() => SipMediaApplication$, 0]]
|
|
1918
|
-
];
|
|
1919
|
-
var UpdateSipRuleRequest$ = [3, n0, _USRR,
|
|
1920
|
-
0,
|
|
1921
|
-
[_SRI, _N, _D, _TA],
|
|
1922
|
-
[[0, 1], 0, 2, () => SipRuleTargetApplicationList], 2
|
|
1923
|
-
];
|
|
1924
|
-
var UpdateSipRuleResponse$ = [3, n0, _USRRp,
|
|
1925
|
-
0,
|
|
1926
|
-
[_SR],
|
|
1927
|
-
[() => SipRule$]
|
|
1928
|
-
];
|
|
1929
|
-
var UpdateVoiceConnectorGroupRequest$ = [3, n0, _UVCGR,
|
|
1930
|
-
0,
|
|
1931
|
-
[_VCGI, _N, _VCIo],
|
|
1932
|
-
[[0, 1], 0, () => VoiceConnectorItemList], 3
|
|
1933
|
-
];
|
|
1934
|
-
var UpdateVoiceConnectorGroupResponse$ = [3, n0, _UVCGRp,
|
|
1935
|
-
0,
|
|
1936
|
-
[_VCG],
|
|
1937
|
-
[() => VoiceConnectorGroup$]
|
|
1938
|
-
];
|
|
1939
|
-
var UpdateVoiceConnectorRequest$ = [3, n0, _UVCR,
|
|
1940
|
-
0,
|
|
1941
|
-
[_VCI, _N, _RE],
|
|
1942
|
-
[[0, 1], 0, 2], 3
|
|
1943
|
-
];
|
|
1944
|
-
var UpdateVoiceConnectorResponse$ = [3, n0, _UVCRp,
|
|
1945
|
-
0,
|
|
1946
|
-
[_VC],
|
|
1947
|
-
[() => VoiceConnector$]
|
|
1948
|
-
];
|
|
1949
|
-
var UpdateVoiceProfileDomainRequest$ = [3, n0, _UVPDR,
|
|
1950
|
-
0,
|
|
1951
|
-
[_VPDI, _N, _De],
|
|
1952
|
-
[[0, 1], 0, 0], 1
|
|
1953
|
-
];
|
|
1954
|
-
var UpdateVoiceProfileDomainResponse$ = [3, n0, _UVPDRp,
|
|
1955
|
-
0,
|
|
1956
|
-
[_VPD],
|
|
1957
|
-
[[() => VoiceProfileDomain$, 0]]
|
|
1958
|
-
];
|
|
1959
|
-
var UpdateVoiceProfileRequest$ = [3, n0, _UVPR,
|
|
1960
|
-
0,
|
|
1961
|
-
[_VPI, _SSTI],
|
|
1962
|
-
[[0, 1], 0], 2
|
|
1963
|
-
];
|
|
1964
|
-
var UpdateVoiceProfileResponse$ = [3, n0, _UVPRp,
|
|
1965
|
-
0,
|
|
1966
|
-
[_VP],
|
|
1967
|
-
[[() => VoiceProfile$, 0]]
|
|
1968
|
-
];
|
|
1969
|
-
var ValidateE911AddressRequest$ = [3, n0, _VEAR,
|
|
1970
|
-
0,
|
|
1971
|
-
[_AAI, _SN, _SI, _Ci, _St, _Co, _PC],
|
|
1972
|
-
[0, [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]], 7
|
|
1973
|
-
];
|
|
1974
|
-
var ValidateE911AddressResponse$ = [3, n0, _VEARa,
|
|
1975
|
-
0,
|
|
1976
|
-
[_VR, _AEI, _Ad, _CALa],
|
|
1977
|
-
[1, 0, [() => Address$, 0], [() => CandidateAddressList, 0]]
|
|
1978
|
-
];
|
|
1979
|
-
var VoiceConnector$ = [3, n0, _VC,
|
|
1980
|
-
0,
|
|
1981
|
-
[_VCI, _AR, _N, _OHN, _RE, _CT, _UT, _VCA, _IT, _NT],
|
|
1982
|
-
[0, 0, 0, 0, 2, 5, 5, 0, 0, 0]
|
|
1983
|
-
];
|
|
1984
|
-
var VoiceConnectorGroup$ = [3, n0, _VCG,
|
|
1985
|
-
0,
|
|
1986
|
-
[_VCGI, _N, _VCIo, _CT, _UT, _VCGA],
|
|
1987
|
-
[0, 0, () => VoiceConnectorItemList, 5, 5, 0]
|
|
1988
|
-
];
|
|
1989
|
-
var VoiceConnectorItem$ = [3, n0, _VCIoi,
|
|
1990
|
-
0,
|
|
1991
|
-
[_VCI, _Pri],
|
|
1992
|
-
[0, 1], 2
|
|
1993
|
-
];
|
|
1994
|
-
var VoiceConnectorSettings$ = [3, n0, _VCS,
|
|
1995
|
-
0,
|
|
1996
|
-
[_CB],
|
|
1997
|
-
[0]
|
|
1998
|
-
];
|
|
1999
|
-
var VoiceProfile$ = [3, n0, _VP,
|
|
2000
|
-
0,
|
|
2001
|
-
[_VPI, _VPA, _VPDI, _CT, _UT, _ETx],
|
|
2002
|
-
[0, [() => Arn, 0], 0, 5, 5, 5]
|
|
2003
|
-
];
|
|
2004
|
-
var VoiceProfileDomain$ = [3, n0, _VPD,
|
|
2005
|
-
0,
|
|
2006
|
-
[_VPDI, _VPDA, _N, _De, _SSEC, _CT, _UT],
|
|
2007
|
-
[0, [() => Arn, 0], 0, 0, [() => ServerSideEncryptionConfiguration$, 0], 5, 5]
|
|
2008
|
-
];
|
|
2009
|
-
var VoiceProfileDomainSummary$ = [3, n0, _VPDS,
|
|
2010
|
-
0,
|
|
2011
|
-
[_VPDI, _VPDA, _N, _De, _CT, _UT],
|
|
2012
|
-
[0, [() => Arn, 0], 0, 0, 5, 5]
|
|
2013
|
-
];
|
|
2014
|
-
var VoiceProfileSummary$ = [3, n0, _VPS,
|
|
2015
|
-
0,
|
|
2016
|
-
[_VPI, _VPA, _VPDI, _CT, _UT, _ETx],
|
|
2017
|
-
[0, [() => Arn, 0], 0, 5, 5, 5]
|
|
2018
|
-
];
|
|
2019
|
-
var VoiceToneAnalysisTask$ = [3, n0, _VTAT,
|
|
2020
|
-
0,
|
|
2021
|
-
[_VTATI, _VTATS, _CD, _CT, _UT, _ST, _SM],
|
|
2022
|
-
[0, 0, () => CallDetails$, 5, 5, 5, 0]
|
|
2023
|
-
];
|
|
2024
|
-
var __Unit = "unit";
|
|
2025
|
-
var ChimeSDKVoiceServiceException$ = [-3, _sm, "ChimeSDKVoiceServiceException", 0, [], []];
|
|
2026
|
-
schema.TypeRegistry.for(_sm).registerError(ChimeSDKVoiceServiceException$, ChimeSDKVoiceServiceException);
|
|
2027
|
-
var AlexaSkillIdList = [1, n0, _ASIL,
|
|
2028
|
-
0, [() => AlexaSkillId,
|
|
2029
|
-
0]
|
|
2030
|
-
];
|
|
2031
|
-
var CandidateAddressList = [1, n0, _CALa,
|
|
2032
|
-
0, [() => CandidateAddress$,
|
|
2033
|
-
{ [_xN]: _CA }]
|
|
2034
|
-
];
|
|
2035
|
-
var CredentialList = [1, n0, _CLr,
|
|
2036
|
-
0, [() => Credential$,
|
|
2037
|
-
0]
|
|
2038
|
-
];
|
|
2039
|
-
var DNISEmergencyCallingConfigurationList = [1, n0, _DNISECCL,
|
|
2040
|
-
0, [() => DNISEmergencyCallingConfiguration$,
|
|
2041
|
-
0]
|
|
2042
|
-
];
|
|
2043
|
-
var E164PhoneNumberList = [1, n0, _EPNL,
|
|
2044
|
-
0, [() => E164PhoneNumber,
|
|
2045
|
-
0]
|
|
2046
|
-
];
|
|
2047
|
-
var OrderedPhoneNumberList = [1, n0, _OPNL,
|
|
2048
|
-
0, [() => OrderedPhoneNumber$,
|
|
2049
|
-
0]
|
|
2050
|
-
];
|
|
2051
|
-
var OriginationRouteList = [1, n0, _ORL,
|
|
2052
|
-
0, () => OriginationRoute$
|
|
2053
|
-
];
|
|
2054
|
-
var ParticipantPhoneNumberList = [1, n0, _PPNL,
|
|
2055
|
-
0, [() => E164PhoneNumber,
|
|
2056
|
-
0]
|
|
2057
|
-
];
|
|
2058
|
-
var Participants = [1, n0, _Par,
|
|
2059
|
-
0, [() => Participant$,
|
|
2060
|
-
0]
|
|
2061
|
-
];
|
|
2062
|
-
var PhoneNumberAssociationList = [1, n0, _PNAL,
|
|
2063
|
-
0, () => PhoneNumberAssociation$
|
|
2064
|
-
];
|
|
2065
|
-
var PhoneNumberCountriesList = [1, n0, _PNCL,
|
|
2066
|
-
0, () => PhoneNumberCountry$
|
|
2067
|
-
];
|
|
2068
|
-
var PhoneNumberErrorList = [1, n0, _PNEL,
|
|
2069
|
-
0, [() => PhoneNumberError$,
|
|
2070
|
-
0]
|
|
2071
|
-
];
|
|
2072
|
-
var PhoneNumberList = [1, n0, _PNL,
|
|
2073
|
-
0, [() => PhoneNumber$,
|
|
2074
|
-
0]
|
|
2075
|
-
];
|
|
2076
|
-
var PhoneNumberOrderList = [1, n0, _PNOL,
|
|
2077
|
-
0, [() => PhoneNumberOrder$,
|
|
2078
|
-
0]
|
|
2079
|
-
];
|
|
2080
|
-
var ProxySessions = [1, n0, _PSr,
|
|
2081
|
-
0, [() => ProxySession$,
|
|
2082
|
-
0]
|
|
2083
|
-
];
|
|
2084
|
-
var SensitiveStringList = [1, n0, _SSL,
|
|
2085
|
-
0, [() => SensitiveString,
|
|
2086
|
-
0]
|
|
2087
|
-
];
|
|
2088
|
-
var SipMediaApplicationEndpointList = [1, n0, _SMAEL,
|
|
2089
|
-
0, [() => SipMediaApplicationEndpoint$,
|
|
2090
|
-
0]
|
|
2091
|
-
];
|
|
2092
|
-
var SipMediaApplicationList = [1, n0, _SMAL,
|
|
2093
|
-
0, [() => SipMediaApplication$,
|
|
2094
|
-
0]
|
|
2095
|
-
];
|
|
2096
|
-
var SipRuleList = [1, n0, _SRL,
|
|
2097
|
-
0, () => SipRule$
|
|
2098
|
-
];
|
|
2099
|
-
var SipRuleTargetApplicationList = [1, n0, _SRTAL,
|
|
2100
|
-
0, () => SipRuleTargetApplication$
|
|
2101
|
-
];
|
|
2102
|
-
var SpeakerSearchResultList = [1, n0, _SSRL,
|
|
2103
|
-
0, () => SpeakerSearchResult$
|
|
2104
|
-
];
|
|
2105
|
-
var StreamingNotificationTargetList = [1, n0, _SNTL,
|
|
2106
|
-
0, () => StreamingNotificationTarget$
|
|
2107
|
-
];
|
|
2108
|
-
var TagKeyList = [1, n0, _TKL,
|
|
2109
|
-
0, [() => TagKey,
|
|
2110
|
-
0]
|
|
2111
|
-
];
|
|
2112
|
-
var TagList = [1, n0, _TL,
|
|
2113
|
-
0, [() => Tag$,
|
|
2114
|
-
0]
|
|
2115
|
-
];
|
|
2116
|
-
var UpdatePhoneNumberRequestItemList = [1, n0, _UPNRIL,
|
|
2117
|
-
0, [() => UpdatePhoneNumberRequestItem$,
|
|
2118
|
-
0]
|
|
2119
|
-
];
|
|
2120
|
-
var VoiceConnectorGroupList = [1, n0, _VCGL,
|
|
2121
|
-
0, () => VoiceConnectorGroup$
|
|
2122
|
-
];
|
|
2123
|
-
var VoiceConnectorItemList = [1, n0, _VCIL,
|
|
2124
|
-
0, () => VoiceConnectorItem$
|
|
2125
|
-
];
|
|
2126
|
-
var VoiceConnectorList = [1, n0, _VCL,
|
|
2127
|
-
0, () => VoiceConnector$
|
|
2128
|
-
];
|
|
2129
|
-
var VoiceProfileDomainSummaryList = [1, n0, _VPDSL,
|
|
2130
|
-
0, [() => VoiceProfileDomainSummary$,
|
|
2131
|
-
0]
|
|
2132
|
-
];
|
|
2133
|
-
var VoiceProfileSummaryList = [1, n0, _VPSL,
|
|
2134
|
-
0, [() => VoiceProfileSummary$,
|
|
2135
|
-
0]
|
|
2136
|
-
];
|
|
2137
|
-
var SipHeadersMap = [2, n0, _SHM,
|
|
2138
|
-
0, [() => SensitiveString,
|
|
2139
|
-
0],
|
|
2140
|
-
[() => SensitiveString,
|
|
2141
|
-
0]
|
|
2142
|
-
];
|
|
2143
|
-
var SMACreateCallArgumentsMap = [2, n0, _SMACCAM,
|
|
2144
|
-
0, [() => SensitiveString,
|
|
2145
|
-
0],
|
|
2146
|
-
[() => SensitiveString,
|
|
2147
|
-
0]
|
|
2148
|
-
];
|
|
2149
|
-
var SMAUpdateCallArgumentsMap = [2, n0, _SMAUCAM,
|
|
2150
|
-
0, [() => SensitiveString,
|
|
2151
|
-
0],
|
|
2152
|
-
[() => SensitiveString,
|
|
2153
|
-
0]
|
|
2154
|
-
];
|
|
2155
|
-
var AssociatePhoneNumbersWithVoiceConnector$ = [9, n0, _APNWVC,
|
|
2156
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}?operation=associate-phone-numbers", 200] }, () => AssociatePhoneNumbersWithVoiceConnectorRequest$, () => AssociatePhoneNumbersWithVoiceConnectorResponse$
|
|
2157
|
-
];
|
|
2158
|
-
var AssociatePhoneNumbersWithVoiceConnectorGroup$ = [9, n0, _APNWVCG,
|
|
2159
|
-
{ [_h]: ["POST", "/voice-connector-groups/{VoiceConnectorGroupId}?operation=associate-phone-numbers", 200] }, () => AssociatePhoneNumbersWithVoiceConnectorGroupRequest$, () => AssociatePhoneNumbersWithVoiceConnectorGroupResponse$
|
|
2160
|
-
];
|
|
2161
|
-
var BatchDeletePhoneNumber$ = [9, n0, _BDPN,
|
|
2162
|
-
{ [_h]: ["POST", "/phone-numbers?operation=batch-delete", 200] }, () => BatchDeletePhoneNumberRequest$, () => BatchDeletePhoneNumberResponse$
|
|
2163
|
-
];
|
|
2164
|
-
var BatchUpdatePhoneNumber$ = [9, n0, _BUPN,
|
|
2165
|
-
{ [_h]: ["POST", "/phone-numbers?operation=batch-update", 200] }, () => BatchUpdatePhoneNumberRequest$, () => BatchUpdatePhoneNumberResponse$
|
|
2166
|
-
];
|
|
2167
|
-
var CreatePhoneNumberOrder$ = [9, n0, _CPNO,
|
|
2168
|
-
{ [_h]: ["POST", "/phone-number-orders", 201] }, () => CreatePhoneNumberOrderRequest$, () => CreatePhoneNumberOrderResponse$
|
|
2169
|
-
];
|
|
2170
|
-
var CreateProxySession$ = [9, n0, _CPS,
|
|
2171
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/proxy-sessions", 201] }, () => CreateProxySessionRequest$, () => CreateProxySessionResponse$
|
|
2172
|
-
];
|
|
2173
|
-
var CreateSipMediaApplication$ = [9, n0, _CSMA,
|
|
2174
|
-
{ [_h]: ["POST", "/sip-media-applications", 201] }, () => CreateSipMediaApplicationRequest$, () => CreateSipMediaApplicationResponse$
|
|
2175
|
-
];
|
|
2176
|
-
var CreateSipMediaApplicationCall$ = [9, n0, _CSMAC,
|
|
2177
|
-
{ [_h]: ["POST", "/sip-media-applications/{SipMediaApplicationId}/calls", 201] }, () => CreateSipMediaApplicationCallRequest$, () => CreateSipMediaApplicationCallResponse$
|
|
2178
|
-
];
|
|
2179
|
-
var CreateSipRule$ = [9, n0, _CSR,
|
|
2180
|
-
{ [_h]: ["POST", "/sip-rules", 201] }, () => CreateSipRuleRequest$, () => CreateSipRuleResponse$
|
|
2181
|
-
];
|
|
2182
|
-
var CreateVoiceConnector$ = [9, n0, _CVC,
|
|
2183
|
-
{ [_h]: ["POST", "/voice-connectors", 201] }, () => CreateVoiceConnectorRequest$, () => CreateVoiceConnectorResponse$
|
|
2184
|
-
];
|
|
2185
|
-
var CreateVoiceConnectorGroup$ = [9, n0, _CVCG,
|
|
2186
|
-
{ [_h]: ["POST", "/voice-connector-groups", 201] }, () => CreateVoiceConnectorGroupRequest$, () => CreateVoiceConnectorGroupResponse$
|
|
2187
|
-
];
|
|
2188
|
-
var CreateVoiceProfile$ = [9, n0, _CVP,
|
|
2189
|
-
{ [_h]: ["POST", "/voice-profiles", 201] }, () => CreateVoiceProfileRequest$, () => CreateVoiceProfileResponse$
|
|
2190
|
-
];
|
|
2191
|
-
var CreateVoiceProfileDomain$ = [9, n0, _CVPD,
|
|
2192
|
-
{ [_h]: ["POST", "/voice-profile-domains", 201] }, () => CreateVoiceProfileDomainRequest$, () => CreateVoiceProfileDomainResponse$
|
|
2193
|
-
];
|
|
2194
|
-
var DeletePhoneNumber$ = [9, n0, _DPNe,
|
|
2195
|
-
{ [_h]: ["DELETE", "/phone-numbers/{PhoneNumberId}", 204] }, () => DeletePhoneNumberRequest$, () => __Unit
|
|
2196
|
-
];
|
|
2197
|
-
var DeleteProxySession$ = [9, n0, _DPS,
|
|
2198
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/proxy-sessions/{ProxySessionId}", 204] }, () => DeleteProxySessionRequest$, () => __Unit
|
|
2199
|
-
];
|
|
2200
|
-
var DeleteSipMediaApplication$ = [9, n0, _DSMA,
|
|
2201
|
-
{ [_h]: ["DELETE", "/sip-media-applications/{SipMediaApplicationId}", 204] }, () => DeleteSipMediaApplicationRequest$, () => __Unit
|
|
2202
|
-
];
|
|
2203
|
-
var DeleteSipRule$ = [9, n0, _DSR,
|
|
2204
|
-
{ [_h]: ["DELETE", "/sip-rules/{SipRuleId}", 204] }, () => DeleteSipRuleRequest$, () => __Unit
|
|
2205
|
-
];
|
|
2206
|
-
var DeleteVoiceConnector$ = [9, n0, _DVC,
|
|
2207
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}", 204] }, () => DeleteVoiceConnectorRequest$, () => __Unit
|
|
2208
|
-
];
|
|
2209
|
-
var DeleteVoiceConnectorEmergencyCallingConfiguration$ = [9, n0, _DVCECC,
|
|
2210
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/emergency-calling-configuration", 204] }, () => DeleteVoiceConnectorEmergencyCallingConfigurationRequest$, () => __Unit
|
|
2211
|
-
];
|
|
2212
|
-
var DeleteVoiceConnectorExternalSystemsConfiguration$ = [9, n0, _DVCESC,
|
|
2213
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/external-systems-configuration", 204] }, () => DeleteVoiceConnectorExternalSystemsConfigurationRequest$, () => __Unit
|
|
2214
|
-
];
|
|
2215
|
-
var DeleteVoiceConnectorGroup$ = [9, n0, _DVCG,
|
|
2216
|
-
{ [_h]: ["DELETE", "/voice-connector-groups/{VoiceConnectorGroupId}", 204] }, () => DeleteVoiceConnectorGroupRequest$, () => __Unit
|
|
2217
|
-
];
|
|
2218
|
-
var DeleteVoiceConnectorOrigination$ = [9, n0, _DVCO,
|
|
2219
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/origination", 204] }, () => DeleteVoiceConnectorOriginationRequest$, () => __Unit
|
|
2220
|
-
];
|
|
2221
|
-
var DeleteVoiceConnectorProxy$ = [9, n0, _DVCP,
|
|
2222
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/programmable-numbers/proxy", 204] }, () => DeleteVoiceConnectorProxyRequest$, () => __Unit
|
|
2223
|
-
];
|
|
2224
|
-
var DeleteVoiceConnectorStreamingConfiguration$ = [9, n0, _DVCSC,
|
|
2225
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/streaming-configuration", 204] }, () => DeleteVoiceConnectorStreamingConfigurationRequest$, () => __Unit
|
|
2226
|
-
];
|
|
2227
|
-
var DeleteVoiceConnectorTermination$ = [9, n0, _DVCT,
|
|
2228
|
-
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/termination", 204] }, () => DeleteVoiceConnectorTerminationRequest$, () => __Unit
|
|
2229
|
-
];
|
|
2230
|
-
var DeleteVoiceConnectorTerminationCredentials$ = [9, n0, _DVCTC,
|
|
2231
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/termination/credentials?operation=delete", 204] }, () => DeleteVoiceConnectorTerminationCredentialsRequest$, () => __Unit
|
|
2232
|
-
];
|
|
2233
|
-
var DeleteVoiceProfile$ = [9, n0, _DVP,
|
|
2234
|
-
{ [_h]: ["DELETE", "/voice-profiles/{VoiceProfileId}", 204] }, () => DeleteVoiceProfileRequest$, () => __Unit
|
|
2235
|
-
];
|
|
2236
|
-
var DeleteVoiceProfileDomain$ = [9, n0, _DVPD,
|
|
2237
|
-
{ [_h]: ["DELETE", "/voice-profile-domains/{VoiceProfileDomainId}", 204] }, () => DeleteVoiceProfileDomainRequest$, () => __Unit
|
|
2238
|
-
];
|
|
2239
|
-
var DisassociatePhoneNumbersFromVoiceConnector$ = [9, n0, _DPNFVC,
|
|
2240
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}?operation=disassociate-phone-numbers", 200] }, () => DisassociatePhoneNumbersFromVoiceConnectorRequest$, () => DisassociatePhoneNumbersFromVoiceConnectorResponse$
|
|
2241
|
-
];
|
|
2242
|
-
var DisassociatePhoneNumbersFromVoiceConnectorGroup$ = [9, n0, _DPNFVCG,
|
|
2243
|
-
{ [_h]: ["POST", "/voice-connector-groups/{VoiceConnectorGroupId}?operation=disassociate-phone-numbers", 200] }, () => DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$, () => DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$
|
|
2244
|
-
];
|
|
2245
|
-
var GetGlobalSettings$ = [9, n0, _GGS,
|
|
2246
|
-
{ [_h]: ["GET", "/settings", 200] }, () => __Unit, () => GetGlobalSettingsResponse$
|
|
2247
|
-
];
|
|
2248
|
-
var GetPhoneNumber$ = [9, n0, _GPN,
|
|
2249
|
-
{ [_h]: ["GET", "/phone-numbers/{PhoneNumberId}", 200] }, () => GetPhoneNumberRequest$, () => GetPhoneNumberResponse$
|
|
2250
|
-
];
|
|
2251
|
-
var GetPhoneNumberOrder$ = [9, n0, _GPNO,
|
|
2252
|
-
{ [_h]: ["GET", "/phone-number-orders/{PhoneNumberOrderId}", 200] }, () => GetPhoneNumberOrderRequest$, () => GetPhoneNumberOrderResponse$
|
|
2253
|
-
];
|
|
2254
|
-
var GetPhoneNumberSettings$ = [9, n0, _GPNS,
|
|
2255
|
-
{ [_h]: ["GET", "/settings/phone-number", 200] }, () => __Unit, () => GetPhoneNumberSettingsResponse$
|
|
2256
|
-
];
|
|
2257
|
-
var GetProxySession$ = [9, n0, _GPS,
|
|
2258
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/proxy-sessions/{ProxySessionId}", 200] }, () => GetProxySessionRequest$, () => GetProxySessionResponse$
|
|
2259
|
-
];
|
|
2260
|
-
var GetSipMediaApplication$ = [9, n0, _GSMA,
|
|
2261
|
-
{ [_h]: ["GET", "/sip-media-applications/{SipMediaApplicationId}", 200] }, () => GetSipMediaApplicationRequest$, () => GetSipMediaApplicationResponse$
|
|
2262
|
-
];
|
|
2263
|
-
var GetSipMediaApplicationAlexaSkillConfiguration$ = [9, n0, _GSMAASC,
|
|
2264
|
-
{ [_h]: ["GET", "/sip-media-applications/{SipMediaApplicationId}/alexa-skill-configuration", 200] }, () => GetSipMediaApplicationAlexaSkillConfigurationRequest$, () => GetSipMediaApplicationAlexaSkillConfigurationResponse$
|
|
2265
|
-
];
|
|
2266
|
-
var GetSipMediaApplicationLoggingConfiguration$ = [9, n0, _GSMALC,
|
|
2267
|
-
{ [_h]: ["GET", "/sip-media-applications/{SipMediaApplicationId}/logging-configuration", 200] }, () => GetSipMediaApplicationLoggingConfigurationRequest$, () => GetSipMediaApplicationLoggingConfigurationResponse$
|
|
2268
|
-
];
|
|
2269
|
-
var GetSipRule$ = [9, n0, _GSR,
|
|
2270
|
-
{ [_h]: ["GET", "/sip-rules/{SipRuleId}", 200] }, () => GetSipRuleRequest$, () => GetSipRuleResponse$
|
|
2271
|
-
];
|
|
2272
|
-
var GetSpeakerSearchTask$ = [9, n0, _GSST,
|
|
2273
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/speaker-search-tasks/{SpeakerSearchTaskId}", 200] }, () => GetSpeakerSearchTaskRequest$, () => GetSpeakerSearchTaskResponse$
|
|
2274
|
-
];
|
|
2275
|
-
var GetVoiceConnector$ = [9, n0, _GVC,
|
|
2276
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}", 200] }, () => GetVoiceConnectorRequest$, () => GetVoiceConnectorResponse$
|
|
2277
|
-
];
|
|
2278
|
-
var GetVoiceConnectorEmergencyCallingConfiguration$ = [9, n0, _GVCECC,
|
|
2279
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/emergency-calling-configuration", 200] }, () => GetVoiceConnectorEmergencyCallingConfigurationRequest$, () => GetVoiceConnectorEmergencyCallingConfigurationResponse$
|
|
2280
|
-
];
|
|
2281
|
-
var GetVoiceConnectorExternalSystemsConfiguration$ = [9, n0, _GVCESC,
|
|
2282
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/external-systems-configuration", 200] }, () => GetVoiceConnectorExternalSystemsConfigurationRequest$, () => GetVoiceConnectorExternalSystemsConfigurationResponse$
|
|
2283
|
-
];
|
|
2284
|
-
var GetVoiceConnectorGroup$ = [9, n0, _GVCG,
|
|
2285
|
-
{ [_h]: ["GET", "/voice-connector-groups/{VoiceConnectorGroupId}", 200] }, () => GetVoiceConnectorGroupRequest$, () => GetVoiceConnectorGroupResponse$
|
|
2286
|
-
];
|
|
2287
|
-
var GetVoiceConnectorLoggingConfiguration$ = [9, n0, _GVCLC,
|
|
2288
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/logging-configuration", 200] }, () => GetVoiceConnectorLoggingConfigurationRequest$, () => GetVoiceConnectorLoggingConfigurationResponse$
|
|
2289
|
-
];
|
|
2290
|
-
var GetVoiceConnectorOrigination$ = [9, n0, _GVCO,
|
|
2291
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/origination", 200] }, () => GetVoiceConnectorOriginationRequest$, () => GetVoiceConnectorOriginationResponse$
|
|
2292
|
-
];
|
|
2293
|
-
var GetVoiceConnectorProxy$ = [9, n0, _GVCP,
|
|
2294
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/programmable-numbers/proxy", 200] }, () => GetVoiceConnectorProxyRequest$, () => GetVoiceConnectorProxyResponse$
|
|
2295
|
-
];
|
|
2296
|
-
var GetVoiceConnectorStreamingConfiguration$ = [9, n0, _GVCSC,
|
|
2297
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/streaming-configuration", 200] }, () => GetVoiceConnectorStreamingConfigurationRequest$, () => GetVoiceConnectorStreamingConfigurationResponse$
|
|
2298
|
-
];
|
|
2299
|
-
var GetVoiceConnectorTermination$ = [9, n0, _GVCT,
|
|
2300
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/termination", 200] }, () => GetVoiceConnectorTerminationRequest$, () => GetVoiceConnectorTerminationResponse$
|
|
2301
|
-
];
|
|
2302
|
-
var GetVoiceConnectorTerminationHealth$ = [9, n0, _GVCTH,
|
|
2303
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/termination/health", 200] }, () => GetVoiceConnectorTerminationHealthRequest$, () => GetVoiceConnectorTerminationHealthResponse$
|
|
2304
|
-
];
|
|
2305
|
-
var GetVoiceProfile$ = [9, n0, _GVP,
|
|
2306
|
-
{ [_h]: ["GET", "/voice-profiles/{VoiceProfileId}", 200] }, () => GetVoiceProfileRequest$, () => GetVoiceProfileResponse$
|
|
2307
|
-
];
|
|
2308
|
-
var GetVoiceProfileDomain$ = [9, n0, _GVPD,
|
|
2309
|
-
{ [_h]: ["GET", "/voice-profile-domains/{VoiceProfileDomainId}", 200] }, () => GetVoiceProfileDomainRequest$, () => GetVoiceProfileDomainResponse$
|
|
2310
|
-
];
|
|
2311
|
-
var GetVoiceToneAnalysisTask$ = [9, n0, _GVTAT,
|
|
2312
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/voice-tone-analysis-tasks/{VoiceToneAnalysisTaskId}", 200] }, () => GetVoiceToneAnalysisTaskRequest$, () => GetVoiceToneAnalysisTaskResponse$
|
|
2313
|
-
];
|
|
2314
|
-
var ListAvailableVoiceConnectorRegions$ = [9, n0, _LAVCR,
|
|
2315
|
-
{ [_h]: ["GET", "/voice-connector-regions", 200] }, () => __Unit, () => ListAvailableVoiceConnectorRegionsResponse$
|
|
2316
|
-
];
|
|
2317
|
-
var ListPhoneNumberOrders$ = [9, n0, _LPNO,
|
|
2318
|
-
{ [_h]: ["GET", "/phone-number-orders", 200] }, () => ListPhoneNumberOrdersRequest$, () => ListPhoneNumberOrdersResponse$
|
|
2319
|
-
];
|
|
2320
|
-
var ListPhoneNumbers$ = [9, n0, _LPN,
|
|
2321
|
-
{ [_h]: ["GET", "/phone-numbers", 200] }, () => ListPhoneNumbersRequest$, () => ListPhoneNumbersResponse$
|
|
2322
|
-
];
|
|
2323
|
-
var ListProxySessions$ = [9, n0, _LPS,
|
|
2324
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/proxy-sessions", 200] }, () => ListProxySessionsRequest$, () => ListProxySessionsResponse$
|
|
2325
|
-
];
|
|
2326
|
-
var ListSipMediaApplications$ = [9, n0, _LSMA,
|
|
2327
|
-
{ [_h]: ["GET", "/sip-media-applications", 200] }, () => ListSipMediaApplicationsRequest$, () => ListSipMediaApplicationsResponse$
|
|
2328
|
-
];
|
|
2329
|
-
var ListSipRules$ = [9, n0, _LSR,
|
|
2330
|
-
{ [_h]: ["GET", "/sip-rules", 200] }, () => ListSipRulesRequest$, () => ListSipRulesResponse$
|
|
2331
|
-
];
|
|
2332
|
-
var ListSupportedPhoneNumberCountries$ = [9, n0, _LSPNC,
|
|
2333
|
-
{ [_h]: ["GET", "/phone-number-countries", 200] }, () => ListSupportedPhoneNumberCountriesRequest$, () => ListSupportedPhoneNumberCountriesResponse$
|
|
2334
|
-
];
|
|
2335
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2336
|
-
{ [_h]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2337
|
-
];
|
|
2338
|
-
var ListVoiceConnectorGroups$ = [9, n0, _LVCG,
|
|
2339
|
-
{ [_h]: ["GET", "/voice-connector-groups", 200] }, () => ListVoiceConnectorGroupsRequest$, () => ListVoiceConnectorGroupsResponse$
|
|
2340
|
-
];
|
|
2341
|
-
var ListVoiceConnectors$ = [9, n0, _LVC,
|
|
2342
|
-
{ [_h]: ["GET", "/voice-connectors", 200] }, () => ListVoiceConnectorsRequest$, () => ListVoiceConnectorsResponse$
|
|
2343
|
-
];
|
|
2344
|
-
var ListVoiceConnectorTerminationCredentials$ = [9, n0, _LVCTC,
|
|
2345
|
-
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/termination/credentials", 200] }, () => ListVoiceConnectorTerminationCredentialsRequest$, () => ListVoiceConnectorTerminationCredentialsResponse$
|
|
2346
|
-
];
|
|
2347
|
-
var ListVoiceProfileDomains$ = [9, n0, _LVPD,
|
|
2348
|
-
{ [_h]: ["GET", "/voice-profile-domains", 200] }, () => ListVoiceProfileDomainsRequest$, () => ListVoiceProfileDomainsResponse$
|
|
2349
|
-
];
|
|
2350
|
-
var ListVoiceProfiles$ = [9, n0, _LVP,
|
|
2351
|
-
{ [_h]: ["GET", "/voice-profiles", 200] }, () => ListVoiceProfilesRequest$, () => ListVoiceProfilesResponse$
|
|
2352
|
-
];
|
|
2353
|
-
var PutSipMediaApplicationAlexaSkillConfiguration$ = [9, n0, _PSMAASC,
|
|
2354
|
-
{ [_h]: ["PUT", "/sip-media-applications/{SipMediaApplicationId}/alexa-skill-configuration", 200] }, () => PutSipMediaApplicationAlexaSkillConfigurationRequest$, () => PutSipMediaApplicationAlexaSkillConfigurationResponse$
|
|
2355
|
-
];
|
|
2356
|
-
var PutSipMediaApplicationLoggingConfiguration$ = [9, n0, _PSMALC,
|
|
2357
|
-
{ [_h]: ["PUT", "/sip-media-applications/{SipMediaApplicationId}/logging-configuration", 200] }, () => PutSipMediaApplicationLoggingConfigurationRequest$, () => PutSipMediaApplicationLoggingConfigurationResponse$
|
|
2358
|
-
];
|
|
2359
|
-
var PutVoiceConnectorEmergencyCallingConfiguration$ = [9, n0, _PVCECC,
|
|
2360
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/emergency-calling-configuration", 200] }, () => PutVoiceConnectorEmergencyCallingConfigurationRequest$, () => PutVoiceConnectorEmergencyCallingConfigurationResponse$
|
|
2361
|
-
];
|
|
2362
|
-
var PutVoiceConnectorExternalSystemsConfiguration$ = [9, n0, _PVCESC,
|
|
2363
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/external-systems-configuration", 200] }, () => PutVoiceConnectorExternalSystemsConfigurationRequest$, () => PutVoiceConnectorExternalSystemsConfigurationResponse$
|
|
2364
|
-
];
|
|
2365
|
-
var PutVoiceConnectorLoggingConfiguration$ = [9, n0, _PVCLC,
|
|
2366
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/logging-configuration", 200] }, () => PutVoiceConnectorLoggingConfigurationRequest$, () => PutVoiceConnectorLoggingConfigurationResponse$
|
|
2367
|
-
];
|
|
2368
|
-
var PutVoiceConnectorOrigination$ = [9, n0, _PVCO,
|
|
2369
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/origination", 200] }, () => PutVoiceConnectorOriginationRequest$, () => PutVoiceConnectorOriginationResponse$
|
|
2370
|
-
];
|
|
2371
|
-
var PutVoiceConnectorProxy$ = [9, n0, _PVCP,
|
|
2372
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/programmable-numbers/proxy", 200] }, () => PutVoiceConnectorProxyRequest$, () => PutVoiceConnectorProxyResponse$
|
|
2373
|
-
];
|
|
2374
|
-
var PutVoiceConnectorStreamingConfiguration$ = [9, n0, _PVCSC,
|
|
2375
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/streaming-configuration", 200] }, () => PutVoiceConnectorStreamingConfigurationRequest$, () => PutVoiceConnectorStreamingConfigurationResponse$
|
|
2376
|
-
];
|
|
2377
|
-
var PutVoiceConnectorTermination$ = [9, n0, _PVCT,
|
|
2378
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/termination", 200] }, () => PutVoiceConnectorTerminationRequest$, () => PutVoiceConnectorTerminationResponse$
|
|
2379
|
-
];
|
|
2380
|
-
var PutVoiceConnectorTerminationCredentials$ = [9, n0, _PVCTC,
|
|
2381
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/termination/credentials?operation=put", 204] }, () => PutVoiceConnectorTerminationCredentialsRequest$, () => __Unit
|
|
2382
|
-
];
|
|
2383
|
-
var RestorePhoneNumber$ = [9, n0, _RPN,
|
|
2384
|
-
{ [_h]: ["POST", "/phone-numbers/{PhoneNumberId}?operation=restore", 200] }, () => RestorePhoneNumberRequest$, () => RestorePhoneNumberResponse$
|
|
2385
|
-
];
|
|
2386
|
-
var SearchAvailablePhoneNumbers$ = [9, n0, _SAPN,
|
|
2387
|
-
{ [_h]: ["GET", "/search?type=phone-numbers", 200] }, () => SearchAvailablePhoneNumbersRequest$, () => SearchAvailablePhoneNumbersResponse$
|
|
2388
|
-
];
|
|
2389
|
-
var StartSpeakerSearchTask$ = [9, n0, _SSST,
|
|
2390
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/speaker-search-tasks", 201] }, () => StartSpeakerSearchTaskRequest$, () => StartSpeakerSearchTaskResponse$
|
|
2391
|
-
];
|
|
2392
|
-
var StartVoiceToneAnalysisTask$ = [9, n0, _SVTAT,
|
|
2393
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/voice-tone-analysis-tasks", 201] }, () => StartVoiceToneAnalysisTaskRequest$, () => StartVoiceToneAnalysisTaskResponse$
|
|
2394
|
-
];
|
|
2395
|
-
var StopSpeakerSearchTask$ = [9, n0, _SSSTt,
|
|
2396
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/speaker-search-tasks/{SpeakerSearchTaskId}?operation=stop", 204] }, () => StopSpeakerSearchTaskRequest$, () => __Unit
|
|
2397
|
-
];
|
|
2398
|
-
var StopVoiceToneAnalysisTask$ = [9, n0, _SVTATt,
|
|
2399
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/voice-tone-analysis-tasks/{VoiceToneAnalysisTaskId}?operation=stop", 204] }, () => StopVoiceToneAnalysisTaskRequest$, () => __Unit
|
|
2400
|
-
];
|
|
2401
|
-
var TagResource$ = [9, n0, _TR,
|
|
2402
|
-
{ [_h]: ["POST", "/tags?operation=tag-resource", 204] }, () => TagResourceRequest$, () => __Unit
|
|
2403
|
-
];
|
|
2404
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2405
|
-
{ [_h]: ["POST", "/tags?operation=untag-resource", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
2406
|
-
];
|
|
2407
|
-
var UpdateGlobalSettings$ = [9, n0, _UGS,
|
|
2408
|
-
{ [_h]: ["PUT", "/settings", 204] }, () => UpdateGlobalSettingsRequest$, () => __Unit
|
|
2409
|
-
];
|
|
2410
|
-
var UpdatePhoneNumber$ = [9, n0, _UPN,
|
|
2411
|
-
{ [_h]: ["POST", "/phone-numbers/{PhoneNumberId}", 200] }, () => UpdatePhoneNumberRequest$, () => UpdatePhoneNumberResponse$
|
|
2412
|
-
];
|
|
2413
|
-
var UpdatePhoneNumberSettings$ = [9, n0, _UPNS,
|
|
2414
|
-
{ [_h]: ["PUT", "/settings/phone-number", 204] }, () => UpdatePhoneNumberSettingsRequest$, () => __Unit
|
|
2415
|
-
];
|
|
2416
|
-
var UpdateProxySession$ = [9, n0, _UPS,
|
|
2417
|
-
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/proxy-sessions/{ProxySessionId}", 201] }, () => UpdateProxySessionRequest$, () => UpdateProxySessionResponse$
|
|
2418
|
-
];
|
|
2419
|
-
var UpdateSipMediaApplication$ = [9, n0, _USMA,
|
|
2420
|
-
{ [_h]: ["PUT", "/sip-media-applications/{SipMediaApplicationId}", 200] }, () => UpdateSipMediaApplicationRequest$, () => UpdateSipMediaApplicationResponse$
|
|
2421
|
-
];
|
|
2422
|
-
var UpdateSipMediaApplicationCall$ = [9, n0, _USMAC,
|
|
2423
|
-
{ [_h]: ["POST", "/sip-media-applications/{SipMediaApplicationId}/calls/{TransactionId}", 202] }, () => UpdateSipMediaApplicationCallRequest$, () => UpdateSipMediaApplicationCallResponse$
|
|
2424
|
-
];
|
|
2425
|
-
var UpdateSipRule$ = [9, n0, _USR,
|
|
2426
|
-
{ [_h]: ["PUT", "/sip-rules/{SipRuleId}", 202] }, () => UpdateSipRuleRequest$, () => UpdateSipRuleResponse$
|
|
2427
|
-
];
|
|
2428
|
-
var UpdateVoiceConnector$ = [9, n0, _UVC,
|
|
2429
|
-
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}", 200] }, () => UpdateVoiceConnectorRequest$, () => UpdateVoiceConnectorResponse$
|
|
2430
|
-
];
|
|
2431
|
-
var UpdateVoiceConnectorGroup$ = [9, n0, _UVCG,
|
|
2432
|
-
{ [_h]: ["PUT", "/voice-connector-groups/{VoiceConnectorGroupId}", 202] }, () => UpdateVoiceConnectorGroupRequest$, () => UpdateVoiceConnectorGroupResponse$
|
|
2433
|
-
];
|
|
2434
|
-
var UpdateVoiceProfile$ = [9, n0, _UVP,
|
|
2435
|
-
{ [_h]: ["PUT", "/voice-profiles/{VoiceProfileId}", 200] }, () => UpdateVoiceProfileRequest$, () => UpdateVoiceProfileResponse$
|
|
2436
|
-
];
|
|
2437
|
-
var UpdateVoiceProfileDomain$ = [9, n0, _UVPD,
|
|
2438
|
-
{ [_h]: ["PUT", "/voice-profile-domains/{VoiceProfileDomainId}", 200] }, () => UpdateVoiceProfileDomainRequest$, () => UpdateVoiceProfileDomainResponse$
|
|
2439
|
-
];
|
|
2440
|
-
var ValidateE911Address$ = [9, n0, _VEA,
|
|
2441
|
-
{ [_h]: ["POST", "/emergency-calling/address", 202] }, () => ValidateE911AddressRequest$, () => ValidateE911AddressResponse$
|
|
2442
|
-
];
|
|
2443
|
-
|
|
2444
116
|
class AssociatePhoneNumbersWithVoiceConnectorCommand extends smithyClient.Command
|
|
2445
117
|
.classBuilder()
|
|
2446
118
|
.ep(commonParams)
|
|
@@ -2449,7 +121,7 @@ class AssociatePhoneNumbersWithVoiceConnectorCommand extends smithyClient.Comman
|
|
|
2449
121
|
})
|
|
2450
122
|
.s("ChimeSDKTelephonyService", "AssociatePhoneNumbersWithVoiceConnector", {})
|
|
2451
123
|
.n("ChimeSDKVoiceClient", "AssociatePhoneNumbersWithVoiceConnectorCommand")
|
|
2452
|
-
.sc(AssociatePhoneNumbersWithVoiceConnector$)
|
|
124
|
+
.sc(schemas_0.AssociatePhoneNumbersWithVoiceConnector$)
|
|
2453
125
|
.build() {
|
|
2454
126
|
}
|
|
2455
127
|
|
|
@@ -2461,7 +133,7 @@ class AssociatePhoneNumbersWithVoiceConnectorGroupCommand extends smithyClient.C
|
|
|
2461
133
|
})
|
|
2462
134
|
.s("ChimeSDKTelephonyService", "AssociatePhoneNumbersWithVoiceConnectorGroup", {})
|
|
2463
135
|
.n("ChimeSDKVoiceClient", "AssociatePhoneNumbersWithVoiceConnectorGroupCommand")
|
|
2464
|
-
.sc(AssociatePhoneNumbersWithVoiceConnectorGroup$)
|
|
136
|
+
.sc(schemas_0.AssociatePhoneNumbersWithVoiceConnectorGroup$)
|
|
2465
137
|
.build() {
|
|
2466
138
|
}
|
|
2467
139
|
|
|
@@ -2473,7 +145,7 @@ class BatchDeletePhoneNumberCommand extends smithyClient.Command
|
|
|
2473
145
|
})
|
|
2474
146
|
.s("ChimeSDKTelephonyService", "BatchDeletePhoneNumber", {})
|
|
2475
147
|
.n("ChimeSDKVoiceClient", "BatchDeletePhoneNumberCommand")
|
|
2476
|
-
.sc(BatchDeletePhoneNumber$)
|
|
148
|
+
.sc(schemas_0.BatchDeletePhoneNumber$)
|
|
2477
149
|
.build() {
|
|
2478
150
|
}
|
|
2479
151
|
|
|
@@ -2485,7 +157,7 @@ class BatchUpdatePhoneNumberCommand extends smithyClient.Command
|
|
|
2485
157
|
})
|
|
2486
158
|
.s("ChimeSDKTelephonyService", "BatchUpdatePhoneNumber", {})
|
|
2487
159
|
.n("ChimeSDKVoiceClient", "BatchUpdatePhoneNumberCommand")
|
|
2488
|
-
.sc(BatchUpdatePhoneNumber$)
|
|
160
|
+
.sc(schemas_0.BatchUpdatePhoneNumber$)
|
|
2489
161
|
.build() {
|
|
2490
162
|
}
|
|
2491
163
|
|
|
@@ -2497,7 +169,7 @@ class CreatePhoneNumberOrderCommand extends smithyClient.Command
|
|
|
2497
169
|
})
|
|
2498
170
|
.s("ChimeSDKTelephonyService", "CreatePhoneNumberOrder", {})
|
|
2499
171
|
.n("ChimeSDKVoiceClient", "CreatePhoneNumberOrderCommand")
|
|
2500
|
-
.sc(CreatePhoneNumberOrder$)
|
|
172
|
+
.sc(schemas_0.CreatePhoneNumberOrder$)
|
|
2501
173
|
.build() {
|
|
2502
174
|
}
|
|
2503
175
|
|
|
@@ -2509,7 +181,7 @@ class CreateProxySessionCommand extends smithyClient.Command
|
|
|
2509
181
|
})
|
|
2510
182
|
.s("ChimeSDKTelephonyService", "CreateProxySession", {})
|
|
2511
183
|
.n("ChimeSDKVoiceClient", "CreateProxySessionCommand")
|
|
2512
|
-
.sc(CreateProxySession$)
|
|
184
|
+
.sc(schemas_0.CreateProxySession$)
|
|
2513
185
|
.build() {
|
|
2514
186
|
}
|
|
2515
187
|
|
|
@@ -2521,7 +193,7 @@ class CreateSipMediaApplicationCallCommand extends smithyClient.Command
|
|
|
2521
193
|
})
|
|
2522
194
|
.s("ChimeSDKTelephonyService", "CreateSipMediaApplicationCall", {})
|
|
2523
195
|
.n("ChimeSDKVoiceClient", "CreateSipMediaApplicationCallCommand")
|
|
2524
|
-
.sc(CreateSipMediaApplicationCall$)
|
|
196
|
+
.sc(schemas_0.CreateSipMediaApplicationCall$)
|
|
2525
197
|
.build() {
|
|
2526
198
|
}
|
|
2527
199
|
|
|
@@ -2533,7 +205,7 @@ class CreateSipMediaApplicationCommand extends smithyClient.Command
|
|
|
2533
205
|
})
|
|
2534
206
|
.s("ChimeSDKTelephonyService", "CreateSipMediaApplication", {})
|
|
2535
207
|
.n("ChimeSDKVoiceClient", "CreateSipMediaApplicationCommand")
|
|
2536
|
-
.sc(CreateSipMediaApplication$)
|
|
208
|
+
.sc(schemas_0.CreateSipMediaApplication$)
|
|
2537
209
|
.build() {
|
|
2538
210
|
}
|
|
2539
211
|
|
|
@@ -2545,7 +217,7 @@ class CreateSipRuleCommand extends smithyClient.Command
|
|
|
2545
217
|
})
|
|
2546
218
|
.s("ChimeSDKTelephonyService", "CreateSipRule", {})
|
|
2547
219
|
.n("ChimeSDKVoiceClient", "CreateSipRuleCommand")
|
|
2548
|
-
.sc(CreateSipRule$)
|
|
220
|
+
.sc(schemas_0.CreateSipRule$)
|
|
2549
221
|
.build() {
|
|
2550
222
|
}
|
|
2551
223
|
|
|
@@ -2557,7 +229,7 @@ class CreateVoiceConnectorCommand extends smithyClient.Command
|
|
|
2557
229
|
})
|
|
2558
230
|
.s("ChimeSDKTelephonyService", "CreateVoiceConnector", {})
|
|
2559
231
|
.n("ChimeSDKVoiceClient", "CreateVoiceConnectorCommand")
|
|
2560
|
-
.sc(CreateVoiceConnector$)
|
|
232
|
+
.sc(schemas_0.CreateVoiceConnector$)
|
|
2561
233
|
.build() {
|
|
2562
234
|
}
|
|
2563
235
|
|
|
@@ -2569,7 +241,7 @@ class CreateVoiceConnectorGroupCommand extends smithyClient.Command
|
|
|
2569
241
|
})
|
|
2570
242
|
.s("ChimeSDKTelephonyService", "CreateVoiceConnectorGroup", {})
|
|
2571
243
|
.n("ChimeSDKVoiceClient", "CreateVoiceConnectorGroupCommand")
|
|
2572
|
-
.sc(CreateVoiceConnectorGroup$)
|
|
244
|
+
.sc(schemas_0.CreateVoiceConnectorGroup$)
|
|
2573
245
|
.build() {
|
|
2574
246
|
}
|
|
2575
247
|
|
|
@@ -2581,7 +253,7 @@ class CreateVoiceProfileCommand extends smithyClient.Command
|
|
|
2581
253
|
})
|
|
2582
254
|
.s("ChimeSDKTelephonyService", "CreateVoiceProfile", {})
|
|
2583
255
|
.n("ChimeSDKVoiceClient", "CreateVoiceProfileCommand")
|
|
2584
|
-
.sc(CreateVoiceProfile$)
|
|
256
|
+
.sc(schemas_0.CreateVoiceProfile$)
|
|
2585
257
|
.build() {
|
|
2586
258
|
}
|
|
2587
259
|
|
|
@@ -2593,7 +265,7 @@ class CreateVoiceProfileDomainCommand extends smithyClient.Command
|
|
|
2593
265
|
})
|
|
2594
266
|
.s("ChimeSDKTelephonyService", "CreateVoiceProfileDomain", {})
|
|
2595
267
|
.n("ChimeSDKVoiceClient", "CreateVoiceProfileDomainCommand")
|
|
2596
|
-
.sc(CreateVoiceProfileDomain$)
|
|
268
|
+
.sc(schemas_0.CreateVoiceProfileDomain$)
|
|
2597
269
|
.build() {
|
|
2598
270
|
}
|
|
2599
271
|
|
|
@@ -2605,7 +277,7 @@ class DeletePhoneNumberCommand extends smithyClient.Command
|
|
|
2605
277
|
})
|
|
2606
278
|
.s("ChimeSDKTelephonyService", "DeletePhoneNumber", {})
|
|
2607
279
|
.n("ChimeSDKVoiceClient", "DeletePhoneNumberCommand")
|
|
2608
|
-
.sc(DeletePhoneNumber$)
|
|
280
|
+
.sc(schemas_0.DeletePhoneNumber$)
|
|
2609
281
|
.build() {
|
|
2610
282
|
}
|
|
2611
283
|
|
|
@@ -2617,7 +289,7 @@ class DeleteProxySessionCommand extends smithyClient.Command
|
|
|
2617
289
|
})
|
|
2618
290
|
.s("ChimeSDKTelephonyService", "DeleteProxySession", {})
|
|
2619
291
|
.n("ChimeSDKVoiceClient", "DeleteProxySessionCommand")
|
|
2620
|
-
.sc(DeleteProxySession$)
|
|
292
|
+
.sc(schemas_0.DeleteProxySession$)
|
|
2621
293
|
.build() {
|
|
2622
294
|
}
|
|
2623
295
|
|
|
@@ -2629,7 +301,7 @@ class DeleteSipMediaApplicationCommand extends smithyClient.Command
|
|
|
2629
301
|
})
|
|
2630
302
|
.s("ChimeSDKTelephonyService", "DeleteSipMediaApplication", {})
|
|
2631
303
|
.n("ChimeSDKVoiceClient", "DeleteSipMediaApplicationCommand")
|
|
2632
|
-
.sc(DeleteSipMediaApplication$)
|
|
304
|
+
.sc(schemas_0.DeleteSipMediaApplication$)
|
|
2633
305
|
.build() {
|
|
2634
306
|
}
|
|
2635
307
|
|
|
@@ -2641,7 +313,7 @@ class DeleteSipRuleCommand extends smithyClient.Command
|
|
|
2641
313
|
})
|
|
2642
314
|
.s("ChimeSDKTelephonyService", "DeleteSipRule", {})
|
|
2643
315
|
.n("ChimeSDKVoiceClient", "DeleteSipRuleCommand")
|
|
2644
|
-
.sc(DeleteSipRule$)
|
|
316
|
+
.sc(schemas_0.DeleteSipRule$)
|
|
2645
317
|
.build() {
|
|
2646
318
|
}
|
|
2647
319
|
|
|
@@ -2653,7 +325,7 @@ class DeleteVoiceConnectorCommand extends smithyClient.Command
|
|
|
2653
325
|
})
|
|
2654
326
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnector", {})
|
|
2655
327
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorCommand")
|
|
2656
|
-
.sc(DeleteVoiceConnector$)
|
|
328
|
+
.sc(schemas_0.DeleteVoiceConnector$)
|
|
2657
329
|
.build() {
|
|
2658
330
|
}
|
|
2659
331
|
|
|
@@ -2665,7 +337,7 @@ class DeleteVoiceConnectorEmergencyCallingConfigurationCommand extends smithyCli
|
|
|
2665
337
|
})
|
|
2666
338
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorEmergencyCallingConfiguration", {})
|
|
2667
339
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorEmergencyCallingConfigurationCommand")
|
|
2668
|
-
.sc(DeleteVoiceConnectorEmergencyCallingConfiguration$)
|
|
340
|
+
.sc(schemas_0.DeleteVoiceConnectorEmergencyCallingConfiguration$)
|
|
2669
341
|
.build() {
|
|
2670
342
|
}
|
|
2671
343
|
|
|
@@ -2677,7 +349,7 @@ class DeleteVoiceConnectorExternalSystemsConfigurationCommand extends smithyClie
|
|
|
2677
349
|
})
|
|
2678
350
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorExternalSystemsConfiguration", {})
|
|
2679
351
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorExternalSystemsConfigurationCommand")
|
|
2680
|
-
.sc(DeleteVoiceConnectorExternalSystemsConfiguration$)
|
|
352
|
+
.sc(schemas_0.DeleteVoiceConnectorExternalSystemsConfiguration$)
|
|
2681
353
|
.build() {
|
|
2682
354
|
}
|
|
2683
355
|
|
|
@@ -2689,7 +361,7 @@ class DeleteVoiceConnectorGroupCommand extends smithyClient.Command
|
|
|
2689
361
|
})
|
|
2690
362
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorGroup", {})
|
|
2691
363
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorGroupCommand")
|
|
2692
|
-
.sc(DeleteVoiceConnectorGroup$)
|
|
364
|
+
.sc(schemas_0.DeleteVoiceConnectorGroup$)
|
|
2693
365
|
.build() {
|
|
2694
366
|
}
|
|
2695
367
|
|
|
@@ -2701,7 +373,7 @@ class DeleteVoiceConnectorOriginationCommand extends smithyClient.Command
|
|
|
2701
373
|
})
|
|
2702
374
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorOrigination", {})
|
|
2703
375
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorOriginationCommand")
|
|
2704
|
-
.sc(DeleteVoiceConnectorOrigination$)
|
|
376
|
+
.sc(schemas_0.DeleteVoiceConnectorOrigination$)
|
|
2705
377
|
.build() {
|
|
2706
378
|
}
|
|
2707
379
|
|
|
@@ -2713,7 +385,7 @@ class DeleteVoiceConnectorProxyCommand extends smithyClient.Command
|
|
|
2713
385
|
})
|
|
2714
386
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorProxy", {})
|
|
2715
387
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorProxyCommand")
|
|
2716
|
-
.sc(DeleteVoiceConnectorProxy$)
|
|
388
|
+
.sc(schemas_0.DeleteVoiceConnectorProxy$)
|
|
2717
389
|
.build() {
|
|
2718
390
|
}
|
|
2719
391
|
|
|
@@ -2725,7 +397,7 @@ class DeleteVoiceConnectorStreamingConfigurationCommand extends smithyClient.Com
|
|
|
2725
397
|
})
|
|
2726
398
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorStreamingConfiguration", {})
|
|
2727
399
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorStreamingConfigurationCommand")
|
|
2728
|
-
.sc(DeleteVoiceConnectorStreamingConfiguration$)
|
|
400
|
+
.sc(schemas_0.DeleteVoiceConnectorStreamingConfiguration$)
|
|
2729
401
|
.build() {
|
|
2730
402
|
}
|
|
2731
403
|
|
|
@@ -2737,7 +409,7 @@ class DeleteVoiceConnectorTerminationCommand extends smithyClient.Command
|
|
|
2737
409
|
})
|
|
2738
410
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorTermination", {})
|
|
2739
411
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorTerminationCommand")
|
|
2740
|
-
.sc(DeleteVoiceConnectorTermination$)
|
|
412
|
+
.sc(schemas_0.DeleteVoiceConnectorTermination$)
|
|
2741
413
|
.build() {
|
|
2742
414
|
}
|
|
2743
415
|
|
|
@@ -2749,7 +421,7 @@ class DeleteVoiceConnectorTerminationCredentialsCommand extends smithyClient.Com
|
|
|
2749
421
|
})
|
|
2750
422
|
.s("ChimeSDKTelephonyService", "DeleteVoiceConnectorTerminationCredentials", {})
|
|
2751
423
|
.n("ChimeSDKVoiceClient", "DeleteVoiceConnectorTerminationCredentialsCommand")
|
|
2752
|
-
.sc(DeleteVoiceConnectorTerminationCredentials$)
|
|
424
|
+
.sc(schemas_0.DeleteVoiceConnectorTerminationCredentials$)
|
|
2753
425
|
.build() {
|
|
2754
426
|
}
|
|
2755
427
|
|
|
@@ -2761,7 +433,7 @@ class DeleteVoiceProfileCommand extends smithyClient.Command
|
|
|
2761
433
|
})
|
|
2762
434
|
.s("ChimeSDKTelephonyService", "DeleteVoiceProfile", {})
|
|
2763
435
|
.n("ChimeSDKVoiceClient", "DeleteVoiceProfileCommand")
|
|
2764
|
-
.sc(DeleteVoiceProfile$)
|
|
436
|
+
.sc(schemas_0.DeleteVoiceProfile$)
|
|
2765
437
|
.build() {
|
|
2766
438
|
}
|
|
2767
439
|
|
|
@@ -2773,7 +445,7 @@ class DeleteVoiceProfileDomainCommand extends smithyClient.Command
|
|
|
2773
445
|
})
|
|
2774
446
|
.s("ChimeSDKTelephonyService", "DeleteVoiceProfileDomain", {})
|
|
2775
447
|
.n("ChimeSDKVoiceClient", "DeleteVoiceProfileDomainCommand")
|
|
2776
|
-
.sc(DeleteVoiceProfileDomain$)
|
|
448
|
+
.sc(schemas_0.DeleteVoiceProfileDomain$)
|
|
2777
449
|
.build() {
|
|
2778
450
|
}
|
|
2779
451
|
|
|
@@ -2785,7 +457,7 @@ class DisassociatePhoneNumbersFromVoiceConnectorCommand extends smithyClient.Com
|
|
|
2785
457
|
})
|
|
2786
458
|
.s("ChimeSDKTelephonyService", "DisassociatePhoneNumbersFromVoiceConnector", {})
|
|
2787
459
|
.n("ChimeSDKVoiceClient", "DisassociatePhoneNumbersFromVoiceConnectorCommand")
|
|
2788
|
-
.sc(DisassociatePhoneNumbersFromVoiceConnector$)
|
|
460
|
+
.sc(schemas_0.DisassociatePhoneNumbersFromVoiceConnector$)
|
|
2789
461
|
.build() {
|
|
2790
462
|
}
|
|
2791
463
|
|
|
@@ -2797,7 +469,7 @@ class DisassociatePhoneNumbersFromVoiceConnectorGroupCommand extends smithyClien
|
|
|
2797
469
|
})
|
|
2798
470
|
.s("ChimeSDKTelephonyService", "DisassociatePhoneNumbersFromVoiceConnectorGroup", {})
|
|
2799
471
|
.n("ChimeSDKVoiceClient", "DisassociatePhoneNumbersFromVoiceConnectorGroupCommand")
|
|
2800
|
-
.sc(DisassociatePhoneNumbersFromVoiceConnectorGroup$)
|
|
472
|
+
.sc(schemas_0.DisassociatePhoneNumbersFromVoiceConnectorGroup$)
|
|
2801
473
|
.build() {
|
|
2802
474
|
}
|
|
2803
475
|
|
|
@@ -2809,7 +481,7 @@ class GetGlobalSettingsCommand extends smithyClient.Command
|
|
|
2809
481
|
})
|
|
2810
482
|
.s("ChimeSDKTelephonyService", "GetGlobalSettings", {})
|
|
2811
483
|
.n("ChimeSDKVoiceClient", "GetGlobalSettingsCommand")
|
|
2812
|
-
.sc(GetGlobalSettings$)
|
|
484
|
+
.sc(schemas_0.GetGlobalSettings$)
|
|
2813
485
|
.build() {
|
|
2814
486
|
}
|
|
2815
487
|
|
|
@@ -2821,7 +493,7 @@ class GetPhoneNumberCommand extends smithyClient.Command
|
|
|
2821
493
|
})
|
|
2822
494
|
.s("ChimeSDKTelephonyService", "GetPhoneNumber", {})
|
|
2823
495
|
.n("ChimeSDKVoiceClient", "GetPhoneNumberCommand")
|
|
2824
|
-
.sc(GetPhoneNumber$)
|
|
496
|
+
.sc(schemas_0.GetPhoneNumber$)
|
|
2825
497
|
.build() {
|
|
2826
498
|
}
|
|
2827
499
|
|
|
@@ -2833,7 +505,7 @@ class GetPhoneNumberOrderCommand extends smithyClient.Command
|
|
|
2833
505
|
})
|
|
2834
506
|
.s("ChimeSDKTelephonyService", "GetPhoneNumberOrder", {})
|
|
2835
507
|
.n("ChimeSDKVoiceClient", "GetPhoneNumberOrderCommand")
|
|
2836
|
-
.sc(GetPhoneNumberOrder$)
|
|
508
|
+
.sc(schemas_0.GetPhoneNumberOrder$)
|
|
2837
509
|
.build() {
|
|
2838
510
|
}
|
|
2839
511
|
|
|
@@ -2845,7 +517,7 @@ class GetPhoneNumberSettingsCommand extends smithyClient.Command
|
|
|
2845
517
|
})
|
|
2846
518
|
.s("ChimeSDKTelephonyService", "GetPhoneNumberSettings", {})
|
|
2847
519
|
.n("ChimeSDKVoiceClient", "GetPhoneNumberSettingsCommand")
|
|
2848
|
-
.sc(GetPhoneNumberSettings$)
|
|
520
|
+
.sc(schemas_0.GetPhoneNumberSettings$)
|
|
2849
521
|
.build() {
|
|
2850
522
|
}
|
|
2851
523
|
|
|
@@ -2857,7 +529,7 @@ class GetProxySessionCommand extends smithyClient.Command
|
|
|
2857
529
|
})
|
|
2858
530
|
.s("ChimeSDKTelephonyService", "GetProxySession", {})
|
|
2859
531
|
.n("ChimeSDKVoiceClient", "GetProxySessionCommand")
|
|
2860
|
-
.sc(GetProxySession$)
|
|
532
|
+
.sc(schemas_0.GetProxySession$)
|
|
2861
533
|
.build() {
|
|
2862
534
|
}
|
|
2863
535
|
|
|
@@ -2869,7 +541,7 @@ class GetSipMediaApplicationAlexaSkillConfigurationCommand extends smithyClient.
|
|
|
2869
541
|
})
|
|
2870
542
|
.s("ChimeSDKTelephonyService", "GetSipMediaApplicationAlexaSkillConfiguration", {})
|
|
2871
543
|
.n("ChimeSDKVoiceClient", "GetSipMediaApplicationAlexaSkillConfigurationCommand")
|
|
2872
|
-
.sc(GetSipMediaApplicationAlexaSkillConfiguration$)
|
|
544
|
+
.sc(schemas_0.GetSipMediaApplicationAlexaSkillConfiguration$)
|
|
2873
545
|
.build() {
|
|
2874
546
|
}
|
|
2875
547
|
|
|
@@ -2881,7 +553,7 @@ class GetSipMediaApplicationCommand extends smithyClient.Command
|
|
|
2881
553
|
})
|
|
2882
554
|
.s("ChimeSDKTelephonyService", "GetSipMediaApplication", {})
|
|
2883
555
|
.n("ChimeSDKVoiceClient", "GetSipMediaApplicationCommand")
|
|
2884
|
-
.sc(GetSipMediaApplication$)
|
|
556
|
+
.sc(schemas_0.GetSipMediaApplication$)
|
|
2885
557
|
.build() {
|
|
2886
558
|
}
|
|
2887
559
|
|
|
@@ -2893,7 +565,7 @@ class GetSipMediaApplicationLoggingConfigurationCommand extends smithyClient.Com
|
|
|
2893
565
|
})
|
|
2894
566
|
.s("ChimeSDKTelephonyService", "GetSipMediaApplicationLoggingConfiguration", {})
|
|
2895
567
|
.n("ChimeSDKVoiceClient", "GetSipMediaApplicationLoggingConfigurationCommand")
|
|
2896
|
-
.sc(GetSipMediaApplicationLoggingConfiguration$)
|
|
568
|
+
.sc(schemas_0.GetSipMediaApplicationLoggingConfiguration$)
|
|
2897
569
|
.build() {
|
|
2898
570
|
}
|
|
2899
571
|
|
|
@@ -2905,7 +577,7 @@ class GetSipRuleCommand extends smithyClient.Command
|
|
|
2905
577
|
})
|
|
2906
578
|
.s("ChimeSDKTelephonyService", "GetSipRule", {})
|
|
2907
579
|
.n("ChimeSDKVoiceClient", "GetSipRuleCommand")
|
|
2908
|
-
.sc(GetSipRule$)
|
|
580
|
+
.sc(schemas_0.GetSipRule$)
|
|
2909
581
|
.build() {
|
|
2910
582
|
}
|
|
2911
583
|
|
|
@@ -2917,7 +589,7 @@ class GetSpeakerSearchTaskCommand extends smithyClient.Command
|
|
|
2917
589
|
})
|
|
2918
590
|
.s("ChimeSDKTelephonyService", "GetSpeakerSearchTask", {})
|
|
2919
591
|
.n("ChimeSDKVoiceClient", "GetSpeakerSearchTaskCommand")
|
|
2920
|
-
.sc(GetSpeakerSearchTask$)
|
|
592
|
+
.sc(schemas_0.GetSpeakerSearchTask$)
|
|
2921
593
|
.build() {
|
|
2922
594
|
}
|
|
2923
595
|
|
|
@@ -2929,7 +601,7 @@ class GetVoiceConnectorCommand extends smithyClient.Command
|
|
|
2929
601
|
})
|
|
2930
602
|
.s("ChimeSDKTelephonyService", "GetVoiceConnector", {})
|
|
2931
603
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorCommand")
|
|
2932
|
-
.sc(GetVoiceConnector$)
|
|
604
|
+
.sc(schemas_0.GetVoiceConnector$)
|
|
2933
605
|
.build() {
|
|
2934
606
|
}
|
|
2935
607
|
|
|
@@ -2941,7 +613,7 @@ class GetVoiceConnectorEmergencyCallingConfigurationCommand extends smithyClient
|
|
|
2941
613
|
})
|
|
2942
614
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorEmergencyCallingConfiguration", {})
|
|
2943
615
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorEmergencyCallingConfigurationCommand")
|
|
2944
|
-
.sc(GetVoiceConnectorEmergencyCallingConfiguration$)
|
|
616
|
+
.sc(schemas_0.GetVoiceConnectorEmergencyCallingConfiguration$)
|
|
2945
617
|
.build() {
|
|
2946
618
|
}
|
|
2947
619
|
|
|
@@ -2953,7 +625,7 @@ class GetVoiceConnectorExternalSystemsConfigurationCommand extends smithyClient.
|
|
|
2953
625
|
})
|
|
2954
626
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorExternalSystemsConfiguration", {})
|
|
2955
627
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorExternalSystemsConfigurationCommand")
|
|
2956
|
-
.sc(GetVoiceConnectorExternalSystemsConfiguration$)
|
|
628
|
+
.sc(schemas_0.GetVoiceConnectorExternalSystemsConfiguration$)
|
|
2957
629
|
.build() {
|
|
2958
630
|
}
|
|
2959
631
|
|
|
@@ -2965,7 +637,7 @@ class GetVoiceConnectorGroupCommand extends smithyClient.Command
|
|
|
2965
637
|
})
|
|
2966
638
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorGroup", {})
|
|
2967
639
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorGroupCommand")
|
|
2968
|
-
.sc(GetVoiceConnectorGroup$)
|
|
640
|
+
.sc(schemas_0.GetVoiceConnectorGroup$)
|
|
2969
641
|
.build() {
|
|
2970
642
|
}
|
|
2971
643
|
|
|
@@ -2977,7 +649,7 @@ class GetVoiceConnectorLoggingConfigurationCommand extends smithyClient.Command
|
|
|
2977
649
|
})
|
|
2978
650
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorLoggingConfiguration", {})
|
|
2979
651
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorLoggingConfigurationCommand")
|
|
2980
|
-
.sc(GetVoiceConnectorLoggingConfiguration$)
|
|
652
|
+
.sc(schemas_0.GetVoiceConnectorLoggingConfiguration$)
|
|
2981
653
|
.build() {
|
|
2982
654
|
}
|
|
2983
655
|
|
|
@@ -2989,7 +661,7 @@ class GetVoiceConnectorOriginationCommand extends smithyClient.Command
|
|
|
2989
661
|
})
|
|
2990
662
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorOrigination", {})
|
|
2991
663
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorOriginationCommand")
|
|
2992
|
-
.sc(GetVoiceConnectorOrigination$)
|
|
664
|
+
.sc(schemas_0.GetVoiceConnectorOrigination$)
|
|
2993
665
|
.build() {
|
|
2994
666
|
}
|
|
2995
667
|
|
|
@@ -3001,7 +673,7 @@ class GetVoiceConnectorProxyCommand extends smithyClient.Command
|
|
|
3001
673
|
})
|
|
3002
674
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorProxy", {})
|
|
3003
675
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorProxyCommand")
|
|
3004
|
-
.sc(GetVoiceConnectorProxy$)
|
|
676
|
+
.sc(schemas_0.GetVoiceConnectorProxy$)
|
|
3005
677
|
.build() {
|
|
3006
678
|
}
|
|
3007
679
|
|
|
@@ -3013,7 +685,7 @@ class GetVoiceConnectorStreamingConfigurationCommand extends smithyClient.Comman
|
|
|
3013
685
|
})
|
|
3014
686
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorStreamingConfiguration", {})
|
|
3015
687
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorStreamingConfigurationCommand")
|
|
3016
|
-
.sc(GetVoiceConnectorStreamingConfiguration$)
|
|
688
|
+
.sc(schemas_0.GetVoiceConnectorStreamingConfiguration$)
|
|
3017
689
|
.build() {
|
|
3018
690
|
}
|
|
3019
691
|
|
|
@@ -3025,7 +697,7 @@ class GetVoiceConnectorTerminationCommand extends smithyClient.Command
|
|
|
3025
697
|
})
|
|
3026
698
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorTermination", {})
|
|
3027
699
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorTerminationCommand")
|
|
3028
|
-
.sc(GetVoiceConnectorTermination$)
|
|
700
|
+
.sc(schemas_0.GetVoiceConnectorTermination$)
|
|
3029
701
|
.build() {
|
|
3030
702
|
}
|
|
3031
703
|
|
|
@@ -3037,7 +709,7 @@ class GetVoiceConnectorTerminationHealthCommand extends smithyClient.Command
|
|
|
3037
709
|
})
|
|
3038
710
|
.s("ChimeSDKTelephonyService", "GetVoiceConnectorTerminationHealth", {})
|
|
3039
711
|
.n("ChimeSDKVoiceClient", "GetVoiceConnectorTerminationHealthCommand")
|
|
3040
|
-
.sc(GetVoiceConnectorTerminationHealth$)
|
|
712
|
+
.sc(schemas_0.GetVoiceConnectorTerminationHealth$)
|
|
3041
713
|
.build() {
|
|
3042
714
|
}
|
|
3043
715
|
|
|
@@ -3049,7 +721,7 @@ class GetVoiceProfileCommand extends smithyClient.Command
|
|
|
3049
721
|
})
|
|
3050
722
|
.s("ChimeSDKTelephonyService", "GetVoiceProfile", {})
|
|
3051
723
|
.n("ChimeSDKVoiceClient", "GetVoiceProfileCommand")
|
|
3052
|
-
.sc(GetVoiceProfile$)
|
|
724
|
+
.sc(schemas_0.GetVoiceProfile$)
|
|
3053
725
|
.build() {
|
|
3054
726
|
}
|
|
3055
727
|
|
|
@@ -3061,7 +733,7 @@ class GetVoiceProfileDomainCommand extends smithyClient.Command
|
|
|
3061
733
|
})
|
|
3062
734
|
.s("ChimeSDKTelephonyService", "GetVoiceProfileDomain", {})
|
|
3063
735
|
.n("ChimeSDKVoiceClient", "GetVoiceProfileDomainCommand")
|
|
3064
|
-
.sc(GetVoiceProfileDomain$)
|
|
736
|
+
.sc(schemas_0.GetVoiceProfileDomain$)
|
|
3065
737
|
.build() {
|
|
3066
738
|
}
|
|
3067
739
|
|
|
@@ -3073,7 +745,7 @@ class GetVoiceToneAnalysisTaskCommand extends smithyClient.Command
|
|
|
3073
745
|
})
|
|
3074
746
|
.s("ChimeSDKTelephonyService", "GetVoiceToneAnalysisTask", {})
|
|
3075
747
|
.n("ChimeSDKVoiceClient", "GetVoiceToneAnalysisTaskCommand")
|
|
3076
|
-
.sc(GetVoiceToneAnalysisTask$)
|
|
748
|
+
.sc(schemas_0.GetVoiceToneAnalysisTask$)
|
|
3077
749
|
.build() {
|
|
3078
750
|
}
|
|
3079
751
|
|
|
@@ -3085,7 +757,7 @@ class ListAvailableVoiceConnectorRegionsCommand extends smithyClient.Command
|
|
|
3085
757
|
})
|
|
3086
758
|
.s("ChimeSDKTelephonyService", "ListAvailableVoiceConnectorRegions", {})
|
|
3087
759
|
.n("ChimeSDKVoiceClient", "ListAvailableVoiceConnectorRegionsCommand")
|
|
3088
|
-
.sc(ListAvailableVoiceConnectorRegions$)
|
|
760
|
+
.sc(schemas_0.ListAvailableVoiceConnectorRegions$)
|
|
3089
761
|
.build() {
|
|
3090
762
|
}
|
|
3091
763
|
|
|
@@ -3097,7 +769,7 @@ class ListPhoneNumberOrdersCommand extends smithyClient.Command
|
|
|
3097
769
|
})
|
|
3098
770
|
.s("ChimeSDKTelephonyService", "ListPhoneNumberOrders", {})
|
|
3099
771
|
.n("ChimeSDKVoiceClient", "ListPhoneNumberOrdersCommand")
|
|
3100
|
-
.sc(ListPhoneNumberOrders$)
|
|
772
|
+
.sc(schemas_0.ListPhoneNumberOrders$)
|
|
3101
773
|
.build() {
|
|
3102
774
|
}
|
|
3103
775
|
|
|
@@ -3109,7 +781,7 @@ class ListPhoneNumbersCommand extends smithyClient.Command
|
|
|
3109
781
|
})
|
|
3110
782
|
.s("ChimeSDKTelephonyService", "ListPhoneNumbers", {})
|
|
3111
783
|
.n("ChimeSDKVoiceClient", "ListPhoneNumbersCommand")
|
|
3112
|
-
.sc(ListPhoneNumbers$)
|
|
784
|
+
.sc(schemas_0.ListPhoneNumbers$)
|
|
3113
785
|
.build() {
|
|
3114
786
|
}
|
|
3115
787
|
|
|
@@ -3121,7 +793,7 @@ class ListProxySessionsCommand extends smithyClient.Command
|
|
|
3121
793
|
})
|
|
3122
794
|
.s("ChimeSDKTelephonyService", "ListProxySessions", {})
|
|
3123
795
|
.n("ChimeSDKVoiceClient", "ListProxySessionsCommand")
|
|
3124
|
-
.sc(ListProxySessions$)
|
|
796
|
+
.sc(schemas_0.ListProxySessions$)
|
|
3125
797
|
.build() {
|
|
3126
798
|
}
|
|
3127
799
|
|
|
@@ -3133,7 +805,7 @@ class ListSipMediaApplicationsCommand extends smithyClient.Command
|
|
|
3133
805
|
})
|
|
3134
806
|
.s("ChimeSDKTelephonyService", "ListSipMediaApplications", {})
|
|
3135
807
|
.n("ChimeSDKVoiceClient", "ListSipMediaApplicationsCommand")
|
|
3136
|
-
.sc(ListSipMediaApplications$)
|
|
808
|
+
.sc(schemas_0.ListSipMediaApplications$)
|
|
3137
809
|
.build() {
|
|
3138
810
|
}
|
|
3139
811
|
|
|
@@ -3145,7 +817,7 @@ class ListSipRulesCommand extends smithyClient.Command
|
|
|
3145
817
|
})
|
|
3146
818
|
.s("ChimeSDKTelephonyService", "ListSipRules", {})
|
|
3147
819
|
.n("ChimeSDKVoiceClient", "ListSipRulesCommand")
|
|
3148
|
-
.sc(ListSipRules$)
|
|
820
|
+
.sc(schemas_0.ListSipRules$)
|
|
3149
821
|
.build() {
|
|
3150
822
|
}
|
|
3151
823
|
|
|
@@ -3157,7 +829,7 @@ class ListSupportedPhoneNumberCountriesCommand extends smithyClient.Command
|
|
|
3157
829
|
})
|
|
3158
830
|
.s("ChimeSDKTelephonyService", "ListSupportedPhoneNumberCountries", {})
|
|
3159
831
|
.n("ChimeSDKVoiceClient", "ListSupportedPhoneNumberCountriesCommand")
|
|
3160
|
-
.sc(ListSupportedPhoneNumberCountries$)
|
|
832
|
+
.sc(schemas_0.ListSupportedPhoneNumberCountries$)
|
|
3161
833
|
.build() {
|
|
3162
834
|
}
|
|
3163
835
|
|
|
@@ -3169,7 +841,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3169
841
|
})
|
|
3170
842
|
.s("ChimeSDKTelephonyService", "ListTagsForResource", {})
|
|
3171
843
|
.n("ChimeSDKVoiceClient", "ListTagsForResourceCommand")
|
|
3172
|
-
.sc(ListTagsForResource$)
|
|
844
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3173
845
|
.build() {
|
|
3174
846
|
}
|
|
3175
847
|
|
|
@@ -3181,7 +853,7 @@ class ListVoiceConnectorGroupsCommand extends smithyClient.Command
|
|
|
3181
853
|
})
|
|
3182
854
|
.s("ChimeSDKTelephonyService", "ListVoiceConnectorGroups", {})
|
|
3183
855
|
.n("ChimeSDKVoiceClient", "ListVoiceConnectorGroupsCommand")
|
|
3184
|
-
.sc(ListVoiceConnectorGroups$)
|
|
856
|
+
.sc(schemas_0.ListVoiceConnectorGroups$)
|
|
3185
857
|
.build() {
|
|
3186
858
|
}
|
|
3187
859
|
|
|
@@ -3193,7 +865,7 @@ class ListVoiceConnectorsCommand extends smithyClient.Command
|
|
|
3193
865
|
})
|
|
3194
866
|
.s("ChimeSDKTelephonyService", "ListVoiceConnectors", {})
|
|
3195
867
|
.n("ChimeSDKVoiceClient", "ListVoiceConnectorsCommand")
|
|
3196
|
-
.sc(ListVoiceConnectors$)
|
|
868
|
+
.sc(schemas_0.ListVoiceConnectors$)
|
|
3197
869
|
.build() {
|
|
3198
870
|
}
|
|
3199
871
|
|
|
@@ -3205,7 +877,7 @@ class ListVoiceConnectorTerminationCredentialsCommand extends smithyClient.Comma
|
|
|
3205
877
|
})
|
|
3206
878
|
.s("ChimeSDKTelephonyService", "ListVoiceConnectorTerminationCredentials", {})
|
|
3207
879
|
.n("ChimeSDKVoiceClient", "ListVoiceConnectorTerminationCredentialsCommand")
|
|
3208
|
-
.sc(ListVoiceConnectorTerminationCredentials$)
|
|
880
|
+
.sc(schemas_0.ListVoiceConnectorTerminationCredentials$)
|
|
3209
881
|
.build() {
|
|
3210
882
|
}
|
|
3211
883
|
|
|
@@ -3217,7 +889,7 @@ class ListVoiceProfileDomainsCommand extends smithyClient.Command
|
|
|
3217
889
|
})
|
|
3218
890
|
.s("ChimeSDKTelephonyService", "ListVoiceProfileDomains", {})
|
|
3219
891
|
.n("ChimeSDKVoiceClient", "ListVoiceProfileDomainsCommand")
|
|
3220
|
-
.sc(ListVoiceProfileDomains$)
|
|
892
|
+
.sc(schemas_0.ListVoiceProfileDomains$)
|
|
3221
893
|
.build() {
|
|
3222
894
|
}
|
|
3223
895
|
|
|
@@ -3229,7 +901,7 @@ class ListVoiceProfilesCommand extends smithyClient.Command
|
|
|
3229
901
|
})
|
|
3230
902
|
.s("ChimeSDKTelephonyService", "ListVoiceProfiles", {})
|
|
3231
903
|
.n("ChimeSDKVoiceClient", "ListVoiceProfilesCommand")
|
|
3232
|
-
.sc(ListVoiceProfiles$)
|
|
904
|
+
.sc(schemas_0.ListVoiceProfiles$)
|
|
3233
905
|
.build() {
|
|
3234
906
|
}
|
|
3235
907
|
|
|
@@ -3241,7 +913,7 @@ class PutSipMediaApplicationAlexaSkillConfigurationCommand extends smithyClient.
|
|
|
3241
913
|
})
|
|
3242
914
|
.s("ChimeSDKTelephonyService", "PutSipMediaApplicationAlexaSkillConfiguration", {})
|
|
3243
915
|
.n("ChimeSDKVoiceClient", "PutSipMediaApplicationAlexaSkillConfigurationCommand")
|
|
3244
|
-
.sc(PutSipMediaApplicationAlexaSkillConfiguration$)
|
|
916
|
+
.sc(schemas_0.PutSipMediaApplicationAlexaSkillConfiguration$)
|
|
3245
917
|
.build() {
|
|
3246
918
|
}
|
|
3247
919
|
|
|
@@ -3253,7 +925,7 @@ class PutSipMediaApplicationLoggingConfigurationCommand extends smithyClient.Com
|
|
|
3253
925
|
})
|
|
3254
926
|
.s("ChimeSDKTelephonyService", "PutSipMediaApplicationLoggingConfiguration", {})
|
|
3255
927
|
.n("ChimeSDKVoiceClient", "PutSipMediaApplicationLoggingConfigurationCommand")
|
|
3256
|
-
.sc(PutSipMediaApplicationLoggingConfiguration$)
|
|
928
|
+
.sc(schemas_0.PutSipMediaApplicationLoggingConfiguration$)
|
|
3257
929
|
.build() {
|
|
3258
930
|
}
|
|
3259
931
|
|
|
@@ -3265,7 +937,7 @@ class PutVoiceConnectorEmergencyCallingConfigurationCommand extends smithyClient
|
|
|
3265
937
|
})
|
|
3266
938
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorEmergencyCallingConfiguration", {})
|
|
3267
939
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorEmergencyCallingConfigurationCommand")
|
|
3268
|
-
.sc(PutVoiceConnectorEmergencyCallingConfiguration$)
|
|
940
|
+
.sc(schemas_0.PutVoiceConnectorEmergencyCallingConfiguration$)
|
|
3269
941
|
.build() {
|
|
3270
942
|
}
|
|
3271
943
|
|
|
@@ -3277,7 +949,7 @@ class PutVoiceConnectorExternalSystemsConfigurationCommand extends smithyClient.
|
|
|
3277
949
|
})
|
|
3278
950
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorExternalSystemsConfiguration", {})
|
|
3279
951
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorExternalSystemsConfigurationCommand")
|
|
3280
|
-
.sc(PutVoiceConnectorExternalSystemsConfiguration$)
|
|
952
|
+
.sc(schemas_0.PutVoiceConnectorExternalSystemsConfiguration$)
|
|
3281
953
|
.build() {
|
|
3282
954
|
}
|
|
3283
955
|
|
|
@@ -3289,7 +961,7 @@ class PutVoiceConnectorLoggingConfigurationCommand extends smithyClient.Command
|
|
|
3289
961
|
})
|
|
3290
962
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorLoggingConfiguration", {})
|
|
3291
963
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorLoggingConfigurationCommand")
|
|
3292
|
-
.sc(PutVoiceConnectorLoggingConfiguration$)
|
|
964
|
+
.sc(schemas_0.PutVoiceConnectorLoggingConfiguration$)
|
|
3293
965
|
.build() {
|
|
3294
966
|
}
|
|
3295
967
|
|
|
@@ -3301,7 +973,7 @@ class PutVoiceConnectorOriginationCommand extends smithyClient.Command
|
|
|
3301
973
|
})
|
|
3302
974
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorOrigination", {})
|
|
3303
975
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorOriginationCommand")
|
|
3304
|
-
.sc(PutVoiceConnectorOrigination$)
|
|
976
|
+
.sc(schemas_0.PutVoiceConnectorOrigination$)
|
|
3305
977
|
.build() {
|
|
3306
978
|
}
|
|
3307
979
|
|
|
@@ -3313,7 +985,7 @@ class PutVoiceConnectorProxyCommand extends smithyClient.Command
|
|
|
3313
985
|
})
|
|
3314
986
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorProxy", {})
|
|
3315
987
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorProxyCommand")
|
|
3316
|
-
.sc(PutVoiceConnectorProxy$)
|
|
988
|
+
.sc(schemas_0.PutVoiceConnectorProxy$)
|
|
3317
989
|
.build() {
|
|
3318
990
|
}
|
|
3319
991
|
|
|
@@ -3325,7 +997,7 @@ class PutVoiceConnectorStreamingConfigurationCommand extends smithyClient.Comman
|
|
|
3325
997
|
})
|
|
3326
998
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorStreamingConfiguration", {})
|
|
3327
999
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorStreamingConfigurationCommand")
|
|
3328
|
-
.sc(PutVoiceConnectorStreamingConfiguration$)
|
|
1000
|
+
.sc(schemas_0.PutVoiceConnectorStreamingConfiguration$)
|
|
3329
1001
|
.build() {
|
|
3330
1002
|
}
|
|
3331
1003
|
|
|
@@ -3337,7 +1009,7 @@ class PutVoiceConnectorTerminationCommand extends smithyClient.Command
|
|
|
3337
1009
|
})
|
|
3338
1010
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorTermination", {})
|
|
3339
1011
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorTerminationCommand")
|
|
3340
|
-
.sc(PutVoiceConnectorTermination$)
|
|
1012
|
+
.sc(schemas_0.PutVoiceConnectorTermination$)
|
|
3341
1013
|
.build() {
|
|
3342
1014
|
}
|
|
3343
1015
|
|
|
@@ -3349,7 +1021,7 @@ class PutVoiceConnectorTerminationCredentialsCommand extends smithyClient.Comman
|
|
|
3349
1021
|
})
|
|
3350
1022
|
.s("ChimeSDKTelephonyService", "PutVoiceConnectorTerminationCredentials", {})
|
|
3351
1023
|
.n("ChimeSDKVoiceClient", "PutVoiceConnectorTerminationCredentialsCommand")
|
|
3352
|
-
.sc(PutVoiceConnectorTerminationCredentials$)
|
|
1024
|
+
.sc(schemas_0.PutVoiceConnectorTerminationCredentials$)
|
|
3353
1025
|
.build() {
|
|
3354
1026
|
}
|
|
3355
1027
|
|
|
@@ -3361,7 +1033,7 @@ class RestorePhoneNumberCommand extends smithyClient.Command
|
|
|
3361
1033
|
})
|
|
3362
1034
|
.s("ChimeSDKTelephonyService", "RestorePhoneNumber", {})
|
|
3363
1035
|
.n("ChimeSDKVoiceClient", "RestorePhoneNumberCommand")
|
|
3364
|
-
.sc(RestorePhoneNumber$)
|
|
1036
|
+
.sc(schemas_0.RestorePhoneNumber$)
|
|
3365
1037
|
.build() {
|
|
3366
1038
|
}
|
|
3367
1039
|
|
|
@@ -3373,7 +1045,7 @@ class SearchAvailablePhoneNumbersCommand extends smithyClient.Command
|
|
|
3373
1045
|
})
|
|
3374
1046
|
.s("ChimeSDKTelephonyService", "SearchAvailablePhoneNumbers", {})
|
|
3375
1047
|
.n("ChimeSDKVoiceClient", "SearchAvailablePhoneNumbersCommand")
|
|
3376
|
-
.sc(SearchAvailablePhoneNumbers$)
|
|
1048
|
+
.sc(schemas_0.SearchAvailablePhoneNumbers$)
|
|
3377
1049
|
.build() {
|
|
3378
1050
|
}
|
|
3379
1051
|
|
|
@@ -3385,7 +1057,7 @@ class StartSpeakerSearchTaskCommand extends smithyClient.Command
|
|
|
3385
1057
|
})
|
|
3386
1058
|
.s("ChimeSDKTelephonyService", "StartSpeakerSearchTask", {})
|
|
3387
1059
|
.n("ChimeSDKVoiceClient", "StartSpeakerSearchTaskCommand")
|
|
3388
|
-
.sc(StartSpeakerSearchTask$)
|
|
1060
|
+
.sc(schemas_0.StartSpeakerSearchTask$)
|
|
3389
1061
|
.build() {
|
|
3390
1062
|
}
|
|
3391
1063
|
|
|
@@ -3397,7 +1069,7 @@ class StartVoiceToneAnalysisTaskCommand extends smithyClient.Command
|
|
|
3397
1069
|
})
|
|
3398
1070
|
.s("ChimeSDKTelephonyService", "StartVoiceToneAnalysisTask", {})
|
|
3399
1071
|
.n("ChimeSDKVoiceClient", "StartVoiceToneAnalysisTaskCommand")
|
|
3400
|
-
.sc(StartVoiceToneAnalysisTask$)
|
|
1072
|
+
.sc(schemas_0.StartVoiceToneAnalysisTask$)
|
|
3401
1073
|
.build() {
|
|
3402
1074
|
}
|
|
3403
1075
|
|
|
@@ -3409,7 +1081,7 @@ class StopSpeakerSearchTaskCommand extends smithyClient.Command
|
|
|
3409
1081
|
})
|
|
3410
1082
|
.s("ChimeSDKTelephonyService", "StopSpeakerSearchTask", {})
|
|
3411
1083
|
.n("ChimeSDKVoiceClient", "StopSpeakerSearchTaskCommand")
|
|
3412
|
-
.sc(StopSpeakerSearchTask$)
|
|
1084
|
+
.sc(schemas_0.StopSpeakerSearchTask$)
|
|
3413
1085
|
.build() {
|
|
3414
1086
|
}
|
|
3415
1087
|
|
|
@@ -3421,7 +1093,7 @@ class StopVoiceToneAnalysisTaskCommand extends smithyClient.Command
|
|
|
3421
1093
|
})
|
|
3422
1094
|
.s("ChimeSDKTelephonyService", "StopVoiceToneAnalysisTask", {})
|
|
3423
1095
|
.n("ChimeSDKVoiceClient", "StopVoiceToneAnalysisTaskCommand")
|
|
3424
|
-
.sc(StopVoiceToneAnalysisTask$)
|
|
1096
|
+
.sc(schemas_0.StopVoiceToneAnalysisTask$)
|
|
3425
1097
|
.build() {
|
|
3426
1098
|
}
|
|
3427
1099
|
|
|
@@ -3433,7 +1105,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3433
1105
|
})
|
|
3434
1106
|
.s("ChimeSDKTelephonyService", "TagResource", {})
|
|
3435
1107
|
.n("ChimeSDKVoiceClient", "TagResourceCommand")
|
|
3436
|
-
.sc(TagResource$)
|
|
1108
|
+
.sc(schemas_0.TagResource$)
|
|
3437
1109
|
.build() {
|
|
3438
1110
|
}
|
|
3439
1111
|
|
|
@@ -3445,7 +1117,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3445
1117
|
})
|
|
3446
1118
|
.s("ChimeSDKTelephonyService", "UntagResource", {})
|
|
3447
1119
|
.n("ChimeSDKVoiceClient", "UntagResourceCommand")
|
|
3448
|
-
.sc(UntagResource$)
|
|
1120
|
+
.sc(schemas_0.UntagResource$)
|
|
3449
1121
|
.build() {
|
|
3450
1122
|
}
|
|
3451
1123
|
|
|
@@ -3457,7 +1129,7 @@ class UpdateGlobalSettingsCommand extends smithyClient.Command
|
|
|
3457
1129
|
})
|
|
3458
1130
|
.s("ChimeSDKTelephonyService", "UpdateGlobalSettings", {})
|
|
3459
1131
|
.n("ChimeSDKVoiceClient", "UpdateGlobalSettingsCommand")
|
|
3460
|
-
.sc(UpdateGlobalSettings$)
|
|
1132
|
+
.sc(schemas_0.UpdateGlobalSettings$)
|
|
3461
1133
|
.build() {
|
|
3462
1134
|
}
|
|
3463
1135
|
|
|
@@ -3469,7 +1141,7 @@ class UpdatePhoneNumberCommand extends smithyClient.Command
|
|
|
3469
1141
|
})
|
|
3470
1142
|
.s("ChimeSDKTelephonyService", "UpdatePhoneNumber", {})
|
|
3471
1143
|
.n("ChimeSDKVoiceClient", "UpdatePhoneNumberCommand")
|
|
3472
|
-
.sc(UpdatePhoneNumber$)
|
|
1144
|
+
.sc(schemas_0.UpdatePhoneNumber$)
|
|
3473
1145
|
.build() {
|
|
3474
1146
|
}
|
|
3475
1147
|
|
|
@@ -3481,7 +1153,7 @@ class UpdatePhoneNumberSettingsCommand extends smithyClient.Command
|
|
|
3481
1153
|
})
|
|
3482
1154
|
.s("ChimeSDKTelephonyService", "UpdatePhoneNumberSettings", {})
|
|
3483
1155
|
.n("ChimeSDKVoiceClient", "UpdatePhoneNumberSettingsCommand")
|
|
3484
|
-
.sc(UpdatePhoneNumberSettings$)
|
|
1156
|
+
.sc(schemas_0.UpdatePhoneNumberSettings$)
|
|
3485
1157
|
.build() {
|
|
3486
1158
|
}
|
|
3487
1159
|
|
|
@@ -3493,7 +1165,7 @@ class UpdateProxySessionCommand extends smithyClient.Command
|
|
|
3493
1165
|
})
|
|
3494
1166
|
.s("ChimeSDKTelephonyService", "UpdateProxySession", {})
|
|
3495
1167
|
.n("ChimeSDKVoiceClient", "UpdateProxySessionCommand")
|
|
3496
|
-
.sc(UpdateProxySession$)
|
|
1168
|
+
.sc(schemas_0.UpdateProxySession$)
|
|
3497
1169
|
.build() {
|
|
3498
1170
|
}
|
|
3499
1171
|
|
|
@@ -3505,7 +1177,7 @@ class UpdateSipMediaApplicationCallCommand extends smithyClient.Command
|
|
|
3505
1177
|
})
|
|
3506
1178
|
.s("ChimeSDKTelephonyService", "UpdateSipMediaApplicationCall", {})
|
|
3507
1179
|
.n("ChimeSDKVoiceClient", "UpdateSipMediaApplicationCallCommand")
|
|
3508
|
-
.sc(UpdateSipMediaApplicationCall$)
|
|
1180
|
+
.sc(schemas_0.UpdateSipMediaApplicationCall$)
|
|
3509
1181
|
.build() {
|
|
3510
1182
|
}
|
|
3511
1183
|
|
|
@@ -3517,7 +1189,7 @@ class UpdateSipMediaApplicationCommand extends smithyClient.Command
|
|
|
3517
1189
|
})
|
|
3518
1190
|
.s("ChimeSDKTelephonyService", "UpdateSipMediaApplication", {})
|
|
3519
1191
|
.n("ChimeSDKVoiceClient", "UpdateSipMediaApplicationCommand")
|
|
3520
|
-
.sc(UpdateSipMediaApplication$)
|
|
1192
|
+
.sc(schemas_0.UpdateSipMediaApplication$)
|
|
3521
1193
|
.build() {
|
|
3522
1194
|
}
|
|
3523
1195
|
|
|
@@ -3529,7 +1201,7 @@ class UpdateSipRuleCommand extends smithyClient.Command
|
|
|
3529
1201
|
})
|
|
3530
1202
|
.s("ChimeSDKTelephonyService", "UpdateSipRule", {})
|
|
3531
1203
|
.n("ChimeSDKVoiceClient", "UpdateSipRuleCommand")
|
|
3532
|
-
.sc(UpdateSipRule$)
|
|
1204
|
+
.sc(schemas_0.UpdateSipRule$)
|
|
3533
1205
|
.build() {
|
|
3534
1206
|
}
|
|
3535
1207
|
|
|
@@ -3541,7 +1213,7 @@ class UpdateVoiceConnectorCommand extends smithyClient.Command
|
|
|
3541
1213
|
})
|
|
3542
1214
|
.s("ChimeSDKTelephonyService", "UpdateVoiceConnector", {})
|
|
3543
1215
|
.n("ChimeSDKVoiceClient", "UpdateVoiceConnectorCommand")
|
|
3544
|
-
.sc(UpdateVoiceConnector$)
|
|
1216
|
+
.sc(schemas_0.UpdateVoiceConnector$)
|
|
3545
1217
|
.build() {
|
|
3546
1218
|
}
|
|
3547
1219
|
|
|
@@ -3553,7 +1225,7 @@ class UpdateVoiceConnectorGroupCommand extends smithyClient.Command
|
|
|
3553
1225
|
})
|
|
3554
1226
|
.s("ChimeSDKTelephonyService", "UpdateVoiceConnectorGroup", {})
|
|
3555
1227
|
.n("ChimeSDKVoiceClient", "UpdateVoiceConnectorGroupCommand")
|
|
3556
|
-
.sc(UpdateVoiceConnectorGroup$)
|
|
1228
|
+
.sc(schemas_0.UpdateVoiceConnectorGroup$)
|
|
3557
1229
|
.build() {
|
|
3558
1230
|
}
|
|
3559
1231
|
|
|
@@ -3565,7 +1237,7 @@ class UpdateVoiceProfileCommand extends smithyClient.Command
|
|
|
3565
1237
|
})
|
|
3566
1238
|
.s("ChimeSDKTelephonyService", "UpdateVoiceProfile", {})
|
|
3567
1239
|
.n("ChimeSDKVoiceClient", "UpdateVoiceProfileCommand")
|
|
3568
|
-
.sc(UpdateVoiceProfile$)
|
|
1240
|
+
.sc(schemas_0.UpdateVoiceProfile$)
|
|
3569
1241
|
.build() {
|
|
3570
1242
|
}
|
|
3571
1243
|
|
|
@@ -3577,7 +1249,7 @@ class UpdateVoiceProfileDomainCommand extends smithyClient.Command
|
|
|
3577
1249
|
})
|
|
3578
1250
|
.s("ChimeSDKTelephonyService", "UpdateVoiceProfileDomain", {})
|
|
3579
1251
|
.n("ChimeSDKVoiceClient", "UpdateVoiceProfileDomainCommand")
|
|
3580
|
-
.sc(UpdateVoiceProfileDomain$)
|
|
1252
|
+
.sc(schemas_0.UpdateVoiceProfileDomain$)
|
|
3581
1253
|
.build() {
|
|
3582
1254
|
}
|
|
3583
1255
|
|
|
@@ -3589,7 +1261,7 @@ class ValidateE911AddressCommand extends smithyClient.Command
|
|
|
3589
1261
|
})
|
|
3590
1262
|
.s("ChimeSDKTelephonyService", "ValidateE911Address", {})
|
|
3591
1263
|
.n("ChimeSDKVoiceClient", "ValidateE911AddressCommand")
|
|
3592
|
-
.sc(ValidateE911Address$)
|
|
1264
|
+
.sc(schemas_0.ValidateE911Address$)
|
|
3593
1265
|
.build() {
|
|
3594
1266
|
}
|
|
3595
1267
|
|
|
@@ -3882,465 +1554,132 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3882
1554
|
enumerable: true,
|
|
3883
1555
|
get: function () { return smithyClient.Client; }
|
|
3884
1556
|
});
|
|
3885
|
-
exports
|
|
3886
|
-
|
|
3887
|
-
|
|
1557
|
+
Object.defineProperty(exports, "ChimeSDKVoiceServiceException", {
|
|
1558
|
+
enumerable: true,
|
|
1559
|
+
get: function () { return ChimeSDKVoiceServiceException.ChimeSDKVoiceServiceException; }
|
|
1560
|
+
});
|
|
3888
1561
|
exports.AlexaSkillStatus = AlexaSkillStatus;
|
|
3889
|
-
exports.AssociatePhoneNumbersWithVoiceConnector$ = AssociatePhoneNumbersWithVoiceConnector$;
|
|
3890
1562
|
exports.AssociatePhoneNumbersWithVoiceConnectorCommand = AssociatePhoneNumbersWithVoiceConnectorCommand;
|
|
3891
|
-
exports.AssociatePhoneNumbersWithVoiceConnectorGroup$ = AssociatePhoneNumbersWithVoiceConnectorGroup$;
|
|
3892
1563
|
exports.AssociatePhoneNumbersWithVoiceConnectorGroupCommand = AssociatePhoneNumbersWithVoiceConnectorGroupCommand;
|
|
3893
|
-
exports.AssociatePhoneNumbersWithVoiceConnectorGroupRequest$ = AssociatePhoneNumbersWithVoiceConnectorGroupRequest$;
|
|
3894
|
-
exports.AssociatePhoneNumbersWithVoiceConnectorGroupResponse$ = AssociatePhoneNumbersWithVoiceConnectorGroupResponse$;
|
|
3895
|
-
exports.AssociatePhoneNumbersWithVoiceConnectorRequest$ = AssociatePhoneNumbersWithVoiceConnectorRequest$;
|
|
3896
|
-
exports.AssociatePhoneNumbersWithVoiceConnectorResponse$ = AssociatePhoneNumbersWithVoiceConnectorResponse$;
|
|
3897
|
-
exports.BadRequestException = BadRequestException;
|
|
3898
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
3899
|
-
exports.BatchDeletePhoneNumber$ = BatchDeletePhoneNumber$;
|
|
3900
1564
|
exports.BatchDeletePhoneNumberCommand = BatchDeletePhoneNumberCommand;
|
|
3901
|
-
exports.BatchDeletePhoneNumberRequest$ = BatchDeletePhoneNumberRequest$;
|
|
3902
|
-
exports.BatchDeletePhoneNumberResponse$ = BatchDeletePhoneNumberResponse$;
|
|
3903
|
-
exports.BatchUpdatePhoneNumber$ = BatchUpdatePhoneNumber$;
|
|
3904
1565
|
exports.BatchUpdatePhoneNumberCommand = BatchUpdatePhoneNumberCommand;
|
|
3905
|
-
exports.BatchUpdatePhoneNumberRequest$ = BatchUpdatePhoneNumberRequest$;
|
|
3906
|
-
exports.BatchUpdatePhoneNumberResponse$ = BatchUpdatePhoneNumberResponse$;
|
|
3907
|
-
exports.CallDetails$ = CallDetails$;
|
|
3908
1566
|
exports.CallLegType = CallLegType;
|
|
3909
1567
|
exports.CallingNameStatus = CallingNameStatus;
|
|
3910
|
-
exports.CandidateAddress$ = CandidateAddress$;
|
|
3911
1568
|
exports.Capability = Capability;
|
|
3912
1569
|
exports.ChimeSDKVoice = ChimeSDKVoice;
|
|
3913
1570
|
exports.ChimeSDKVoiceClient = ChimeSDKVoiceClient;
|
|
3914
|
-
exports.ChimeSDKVoiceServiceException = ChimeSDKVoiceServiceException;
|
|
3915
|
-
exports.ChimeSDKVoiceServiceException$ = ChimeSDKVoiceServiceException$;
|
|
3916
|
-
exports.ConflictException = ConflictException;
|
|
3917
|
-
exports.ConflictException$ = ConflictException$;
|
|
3918
1571
|
exports.ContactCenterSystemType = ContactCenterSystemType;
|
|
3919
|
-
exports.CreatePhoneNumberOrder$ = CreatePhoneNumberOrder$;
|
|
3920
1572
|
exports.CreatePhoneNumberOrderCommand = CreatePhoneNumberOrderCommand;
|
|
3921
|
-
exports.CreatePhoneNumberOrderRequest$ = CreatePhoneNumberOrderRequest$;
|
|
3922
|
-
exports.CreatePhoneNumberOrderResponse$ = CreatePhoneNumberOrderResponse$;
|
|
3923
|
-
exports.CreateProxySession$ = CreateProxySession$;
|
|
3924
1573
|
exports.CreateProxySessionCommand = CreateProxySessionCommand;
|
|
3925
|
-
exports.CreateProxySessionRequest$ = CreateProxySessionRequest$;
|
|
3926
|
-
exports.CreateProxySessionResponse$ = CreateProxySessionResponse$;
|
|
3927
|
-
exports.CreateSipMediaApplication$ = CreateSipMediaApplication$;
|
|
3928
|
-
exports.CreateSipMediaApplicationCall$ = CreateSipMediaApplicationCall$;
|
|
3929
1574
|
exports.CreateSipMediaApplicationCallCommand = CreateSipMediaApplicationCallCommand;
|
|
3930
|
-
exports.CreateSipMediaApplicationCallRequest$ = CreateSipMediaApplicationCallRequest$;
|
|
3931
|
-
exports.CreateSipMediaApplicationCallResponse$ = CreateSipMediaApplicationCallResponse$;
|
|
3932
1575
|
exports.CreateSipMediaApplicationCommand = CreateSipMediaApplicationCommand;
|
|
3933
|
-
exports.CreateSipMediaApplicationRequest$ = CreateSipMediaApplicationRequest$;
|
|
3934
|
-
exports.CreateSipMediaApplicationResponse$ = CreateSipMediaApplicationResponse$;
|
|
3935
|
-
exports.CreateSipRule$ = CreateSipRule$;
|
|
3936
1576
|
exports.CreateSipRuleCommand = CreateSipRuleCommand;
|
|
3937
|
-
exports.CreateSipRuleRequest$ = CreateSipRuleRequest$;
|
|
3938
|
-
exports.CreateSipRuleResponse$ = CreateSipRuleResponse$;
|
|
3939
|
-
exports.CreateVoiceConnector$ = CreateVoiceConnector$;
|
|
3940
1577
|
exports.CreateVoiceConnectorCommand = CreateVoiceConnectorCommand;
|
|
3941
|
-
exports.CreateVoiceConnectorGroup$ = CreateVoiceConnectorGroup$;
|
|
3942
1578
|
exports.CreateVoiceConnectorGroupCommand = CreateVoiceConnectorGroupCommand;
|
|
3943
|
-
exports.CreateVoiceConnectorGroupRequest$ = CreateVoiceConnectorGroupRequest$;
|
|
3944
|
-
exports.CreateVoiceConnectorGroupResponse$ = CreateVoiceConnectorGroupResponse$;
|
|
3945
|
-
exports.CreateVoiceConnectorRequest$ = CreateVoiceConnectorRequest$;
|
|
3946
|
-
exports.CreateVoiceConnectorResponse$ = CreateVoiceConnectorResponse$;
|
|
3947
|
-
exports.CreateVoiceProfile$ = CreateVoiceProfile$;
|
|
3948
1579
|
exports.CreateVoiceProfileCommand = CreateVoiceProfileCommand;
|
|
3949
|
-
exports.CreateVoiceProfileDomain$ = CreateVoiceProfileDomain$;
|
|
3950
1580
|
exports.CreateVoiceProfileDomainCommand = CreateVoiceProfileDomainCommand;
|
|
3951
|
-
exports.CreateVoiceProfileDomainRequest$ = CreateVoiceProfileDomainRequest$;
|
|
3952
|
-
exports.CreateVoiceProfileDomainResponse$ = CreateVoiceProfileDomainResponse$;
|
|
3953
|
-
exports.CreateVoiceProfileRequest$ = CreateVoiceProfileRequest$;
|
|
3954
|
-
exports.CreateVoiceProfileResponse$ = CreateVoiceProfileResponse$;
|
|
3955
|
-
exports.Credential$ = Credential$;
|
|
3956
|
-
exports.DNISEmergencyCallingConfiguration$ = DNISEmergencyCallingConfiguration$;
|
|
3957
|
-
exports.DeletePhoneNumber$ = DeletePhoneNumber$;
|
|
3958
1581
|
exports.DeletePhoneNumberCommand = DeletePhoneNumberCommand;
|
|
3959
|
-
exports.DeletePhoneNumberRequest$ = DeletePhoneNumberRequest$;
|
|
3960
|
-
exports.DeleteProxySession$ = DeleteProxySession$;
|
|
3961
1582
|
exports.DeleteProxySessionCommand = DeleteProxySessionCommand;
|
|
3962
|
-
exports.DeleteProxySessionRequest$ = DeleteProxySessionRequest$;
|
|
3963
|
-
exports.DeleteSipMediaApplication$ = DeleteSipMediaApplication$;
|
|
3964
1583
|
exports.DeleteSipMediaApplicationCommand = DeleteSipMediaApplicationCommand;
|
|
3965
|
-
exports.DeleteSipMediaApplicationRequest$ = DeleteSipMediaApplicationRequest$;
|
|
3966
|
-
exports.DeleteSipRule$ = DeleteSipRule$;
|
|
3967
1584
|
exports.DeleteSipRuleCommand = DeleteSipRuleCommand;
|
|
3968
|
-
exports.DeleteSipRuleRequest$ = DeleteSipRuleRequest$;
|
|
3969
|
-
exports.DeleteVoiceConnector$ = DeleteVoiceConnector$;
|
|
3970
1585
|
exports.DeleteVoiceConnectorCommand = DeleteVoiceConnectorCommand;
|
|
3971
|
-
exports.DeleteVoiceConnectorEmergencyCallingConfiguration$ = DeleteVoiceConnectorEmergencyCallingConfiguration$;
|
|
3972
1586
|
exports.DeleteVoiceConnectorEmergencyCallingConfigurationCommand = DeleteVoiceConnectorEmergencyCallingConfigurationCommand;
|
|
3973
|
-
exports.DeleteVoiceConnectorEmergencyCallingConfigurationRequest$ = DeleteVoiceConnectorEmergencyCallingConfigurationRequest$;
|
|
3974
|
-
exports.DeleteVoiceConnectorExternalSystemsConfiguration$ = DeleteVoiceConnectorExternalSystemsConfiguration$;
|
|
3975
1587
|
exports.DeleteVoiceConnectorExternalSystemsConfigurationCommand = DeleteVoiceConnectorExternalSystemsConfigurationCommand;
|
|
3976
|
-
exports.DeleteVoiceConnectorExternalSystemsConfigurationRequest$ = DeleteVoiceConnectorExternalSystemsConfigurationRequest$;
|
|
3977
|
-
exports.DeleteVoiceConnectorGroup$ = DeleteVoiceConnectorGroup$;
|
|
3978
1588
|
exports.DeleteVoiceConnectorGroupCommand = DeleteVoiceConnectorGroupCommand;
|
|
3979
|
-
exports.DeleteVoiceConnectorGroupRequest$ = DeleteVoiceConnectorGroupRequest$;
|
|
3980
|
-
exports.DeleteVoiceConnectorOrigination$ = DeleteVoiceConnectorOrigination$;
|
|
3981
1589
|
exports.DeleteVoiceConnectorOriginationCommand = DeleteVoiceConnectorOriginationCommand;
|
|
3982
|
-
exports.DeleteVoiceConnectorOriginationRequest$ = DeleteVoiceConnectorOriginationRequest$;
|
|
3983
|
-
exports.DeleteVoiceConnectorProxy$ = DeleteVoiceConnectorProxy$;
|
|
3984
1590
|
exports.DeleteVoiceConnectorProxyCommand = DeleteVoiceConnectorProxyCommand;
|
|
3985
|
-
exports.DeleteVoiceConnectorProxyRequest$ = DeleteVoiceConnectorProxyRequest$;
|
|
3986
|
-
exports.DeleteVoiceConnectorRequest$ = DeleteVoiceConnectorRequest$;
|
|
3987
|
-
exports.DeleteVoiceConnectorStreamingConfiguration$ = DeleteVoiceConnectorStreamingConfiguration$;
|
|
3988
1591
|
exports.DeleteVoiceConnectorStreamingConfigurationCommand = DeleteVoiceConnectorStreamingConfigurationCommand;
|
|
3989
|
-
exports.DeleteVoiceConnectorStreamingConfigurationRequest$ = DeleteVoiceConnectorStreamingConfigurationRequest$;
|
|
3990
|
-
exports.DeleteVoiceConnectorTermination$ = DeleteVoiceConnectorTermination$;
|
|
3991
1592
|
exports.DeleteVoiceConnectorTerminationCommand = DeleteVoiceConnectorTerminationCommand;
|
|
3992
|
-
exports.DeleteVoiceConnectorTerminationCredentials$ = DeleteVoiceConnectorTerminationCredentials$;
|
|
3993
1593
|
exports.DeleteVoiceConnectorTerminationCredentialsCommand = DeleteVoiceConnectorTerminationCredentialsCommand;
|
|
3994
|
-
exports.DeleteVoiceConnectorTerminationCredentialsRequest$ = DeleteVoiceConnectorTerminationCredentialsRequest$;
|
|
3995
|
-
exports.DeleteVoiceConnectorTerminationRequest$ = DeleteVoiceConnectorTerminationRequest$;
|
|
3996
|
-
exports.DeleteVoiceProfile$ = DeleteVoiceProfile$;
|
|
3997
1594
|
exports.DeleteVoiceProfileCommand = DeleteVoiceProfileCommand;
|
|
3998
|
-
exports.DeleteVoiceProfileDomain$ = DeleteVoiceProfileDomain$;
|
|
3999
1595
|
exports.DeleteVoiceProfileDomainCommand = DeleteVoiceProfileDomainCommand;
|
|
4000
|
-
exports.DeleteVoiceProfileDomainRequest$ = DeleteVoiceProfileDomainRequest$;
|
|
4001
|
-
exports.DeleteVoiceProfileRequest$ = DeleteVoiceProfileRequest$;
|
|
4002
|
-
exports.DisassociatePhoneNumbersFromVoiceConnector$ = DisassociatePhoneNumbersFromVoiceConnector$;
|
|
4003
1596
|
exports.DisassociatePhoneNumbersFromVoiceConnectorCommand = DisassociatePhoneNumbersFromVoiceConnectorCommand;
|
|
4004
|
-
exports.DisassociatePhoneNumbersFromVoiceConnectorGroup$ = DisassociatePhoneNumbersFromVoiceConnectorGroup$;
|
|
4005
1597
|
exports.DisassociatePhoneNumbersFromVoiceConnectorGroupCommand = DisassociatePhoneNumbersFromVoiceConnectorGroupCommand;
|
|
4006
|
-
exports.DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$ = DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$;
|
|
4007
|
-
exports.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$ = DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$;
|
|
4008
|
-
exports.DisassociatePhoneNumbersFromVoiceConnectorRequest$ = DisassociatePhoneNumbersFromVoiceConnectorRequest$;
|
|
4009
|
-
exports.DisassociatePhoneNumbersFromVoiceConnectorResponse$ = DisassociatePhoneNumbersFromVoiceConnectorResponse$;
|
|
4010
|
-
exports.EmergencyCallingConfiguration$ = EmergencyCallingConfiguration$;
|
|
4011
1598
|
exports.ErrorCode = ErrorCode;
|
|
4012
|
-
exports.ExternalSystemsConfiguration$ = ExternalSystemsConfiguration$;
|
|
4013
|
-
exports.ForbiddenException = ForbiddenException;
|
|
4014
|
-
exports.ForbiddenException$ = ForbiddenException$;
|
|
4015
1599
|
exports.GeoMatchLevel = GeoMatchLevel;
|
|
4016
|
-
exports.GeoMatchParams$ = GeoMatchParams$;
|
|
4017
|
-
exports.GetGlobalSettings$ = GetGlobalSettings$;
|
|
4018
1600
|
exports.GetGlobalSettingsCommand = GetGlobalSettingsCommand;
|
|
4019
|
-
exports.GetGlobalSettingsResponse$ = GetGlobalSettingsResponse$;
|
|
4020
|
-
exports.GetPhoneNumber$ = GetPhoneNumber$;
|
|
4021
1601
|
exports.GetPhoneNumberCommand = GetPhoneNumberCommand;
|
|
4022
|
-
exports.GetPhoneNumberOrder$ = GetPhoneNumberOrder$;
|
|
4023
1602
|
exports.GetPhoneNumberOrderCommand = GetPhoneNumberOrderCommand;
|
|
4024
|
-
exports.GetPhoneNumberOrderRequest$ = GetPhoneNumberOrderRequest$;
|
|
4025
|
-
exports.GetPhoneNumberOrderResponse$ = GetPhoneNumberOrderResponse$;
|
|
4026
|
-
exports.GetPhoneNumberRequest$ = GetPhoneNumberRequest$;
|
|
4027
|
-
exports.GetPhoneNumberResponse$ = GetPhoneNumberResponse$;
|
|
4028
|
-
exports.GetPhoneNumberSettings$ = GetPhoneNumberSettings$;
|
|
4029
1603
|
exports.GetPhoneNumberSettingsCommand = GetPhoneNumberSettingsCommand;
|
|
4030
|
-
exports.GetPhoneNumberSettingsResponse$ = GetPhoneNumberSettingsResponse$;
|
|
4031
|
-
exports.GetProxySession$ = GetProxySession$;
|
|
4032
1604
|
exports.GetProxySessionCommand = GetProxySessionCommand;
|
|
4033
|
-
exports.GetProxySessionRequest$ = GetProxySessionRequest$;
|
|
4034
|
-
exports.GetProxySessionResponse$ = GetProxySessionResponse$;
|
|
4035
|
-
exports.GetSipMediaApplication$ = GetSipMediaApplication$;
|
|
4036
|
-
exports.GetSipMediaApplicationAlexaSkillConfiguration$ = GetSipMediaApplicationAlexaSkillConfiguration$;
|
|
4037
1605
|
exports.GetSipMediaApplicationAlexaSkillConfigurationCommand = GetSipMediaApplicationAlexaSkillConfigurationCommand;
|
|
4038
|
-
exports.GetSipMediaApplicationAlexaSkillConfigurationRequest$ = GetSipMediaApplicationAlexaSkillConfigurationRequest$;
|
|
4039
|
-
exports.GetSipMediaApplicationAlexaSkillConfigurationResponse$ = GetSipMediaApplicationAlexaSkillConfigurationResponse$;
|
|
4040
1606
|
exports.GetSipMediaApplicationCommand = GetSipMediaApplicationCommand;
|
|
4041
|
-
exports.GetSipMediaApplicationLoggingConfiguration$ = GetSipMediaApplicationLoggingConfiguration$;
|
|
4042
1607
|
exports.GetSipMediaApplicationLoggingConfigurationCommand = GetSipMediaApplicationLoggingConfigurationCommand;
|
|
4043
|
-
exports.GetSipMediaApplicationLoggingConfigurationRequest$ = GetSipMediaApplicationLoggingConfigurationRequest$;
|
|
4044
|
-
exports.GetSipMediaApplicationLoggingConfigurationResponse$ = GetSipMediaApplicationLoggingConfigurationResponse$;
|
|
4045
|
-
exports.GetSipMediaApplicationRequest$ = GetSipMediaApplicationRequest$;
|
|
4046
|
-
exports.GetSipMediaApplicationResponse$ = GetSipMediaApplicationResponse$;
|
|
4047
|
-
exports.GetSipRule$ = GetSipRule$;
|
|
4048
1608
|
exports.GetSipRuleCommand = GetSipRuleCommand;
|
|
4049
|
-
exports.GetSipRuleRequest$ = GetSipRuleRequest$;
|
|
4050
|
-
exports.GetSipRuleResponse$ = GetSipRuleResponse$;
|
|
4051
|
-
exports.GetSpeakerSearchTask$ = GetSpeakerSearchTask$;
|
|
4052
1609
|
exports.GetSpeakerSearchTaskCommand = GetSpeakerSearchTaskCommand;
|
|
4053
|
-
exports.GetSpeakerSearchTaskRequest$ = GetSpeakerSearchTaskRequest$;
|
|
4054
|
-
exports.GetSpeakerSearchTaskResponse$ = GetSpeakerSearchTaskResponse$;
|
|
4055
|
-
exports.GetVoiceConnector$ = GetVoiceConnector$;
|
|
4056
1610
|
exports.GetVoiceConnectorCommand = GetVoiceConnectorCommand;
|
|
4057
|
-
exports.GetVoiceConnectorEmergencyCallingConfiguration$ = GetVoiceConnectorEmergencyCallingConfiguration$;
|
|
4058
1611
|
exports.GetVoiceConnectorEmergencyCallingConfigurationCommand = GetVoiceConnectorEmergencyCallingConfigurationCommand;
|
|
4059
|
-
exports.GetVoiceConnectorEmergencyCallingConfigurationRequest$ = GetVoiceConnectorEmergencyCallingConfigurationRequest$;
|
|
4060
|
-
exports.GetVoiceConnectorEmergencyCallingConfigurationResponse$ = GetVoiceConnectorEmergencyCallingConfigurationResponse$;
|
|
4061
|
-
exports.GetVoiceConnectorExternalSystemsConfiguration$ = GetVoiceConnectorExternalSystemsConfiguration$;
|
|
4062
1612
|
exports.GetVoiceConnectorExternalSystemsConfigurationCommand = GetVoiceConnectorExternalSystemsConfigurationCommand;
|
|
4063
|
-
exports.GetVoiceConnectorExternalSystemsConfigurationRequest$ = GetVoiceConnectorExternalSystemsConfigurationRequest$;
|
|
4064
|
-
exports.GetVoiceConnectorExternalSystemsConfigurationResponse$ = GetVoiceConnectorExternalSystemsConfigurationResponse$;
|
|
4065
|
-
exports.GetVoiceConnectorGroup$ = GetVoiceConnectorGroup$;
|
|
4066
1613
|
exports.GetVoiceConnectorGroupCommand = GetVoiceConnectorGroupCommand;
|
|
4067
|
-
exports.GetVoiceConnectorGroupRequest$ = GetVoiceConnectorGroupRequest$;
|
|
4068
|
-
exports.GetVoiceConnectorGroupResponse$ = GetVoiceConnectorGroupResponse$;
|
|
4069
|
-
exports.GetVoiceConnectorLoggingConfiguration$ = GetVoiceConnectorLoggingConfiguration$;
|
|
4070
1614
|
exports.GetVoiceConnectorLoggingConfigurationCommand = GetVoiceConnectorLoggingConfigurationCommand;
|
|
4071
|
-
exports.GetVoiceConnectorLoggingConfigurationRequest$ = GetVoiceConnectorLoggingConfigurationRequest$;
|
|
4072
|
-
exports.GetVoiceConnectorLoggingConfigurationResponse$ = GetVoiceConnectorLoggingConfigurationResponse$;
|
|
4073
|
-
exports.GetVoiceConnectorOrigination$ = GetVoiceConnectorOrigination$;
|
|
4074
1615
|
exports.GetVoiceConnectorOriginationCommand = GetVoiceConnectorOriginationCommand;
|
|
4075
|
-
exports.GetVoiceConnectorOriginationRequest$ = GetVoiceConnectorOriginationRequest$;
|
|
4076
|
-
exports.GetVoiceConnectorOriginationResponse$ = GetVoiceConnectorOriginationResponse$;
|
|
4077
|
-
exports.GetVoiceConnectorProxy$ = GetVoiceConnectorProxy$;
|
|
4078
1616
|
exports.GetVoiceConnectorProxyCommand = GetVoiceConnectorProxyCommand;
|
|
4079
|
-
exports.GetVoiceConnectorProxyRequest$ = GetVoiceConnectorProxyRequest$;
|
|
4080
|
-
exports.GetVoiceConnectorProxyResponse$ = GetVoiceConnectorProxyResponse$;
|
|
4081
|
-
exports.GetVoiceConnectorRequest$ = GetVoiceConnectorRequest$;
|
|
4082
|
-
exports.GetVoiceConnectorResponse$ = GetVoiceConnectorResponse$;
|
|
4083
|
-
exports.GetVoiceConnectorStreamingConfiguration$ = GetVoiceConnectorStreamingConfiguration$;
|
|
4084
1617
|
exports.GetVoiceConnectorStreamingConfigurationCommand = GetVoiceConnectorStreamingConfigurationCommand;
|
|
4085
|
-
exports.GetVoiceConnectorStreamingConfigurationRequest$ = GetVoiceConnectorStreamingConfigurationRequest$;
|
|
4086
|
-
exports.GetVoiceConnectorStreamingConfigurationResponse$ = GetVoiceConnectorStreamingConfigurationResponse$;
|
|
4087
|
-
exports.GetVoiceConnectorTermination$ = GetVoiceConnectorTermination$;
|
|
4088
1618
|
exports.GetVoiceConnectorTerminationCommand = GetVoiceConnectorTerminationCommand;
|
|
4089
|
-
exports.GetVoiceConnectorTerminationHealth$ = GetVoiceConnectorTerminationHealth$;
|
|
4090
1619
|
exports.GetVoiceConnectorTerminationHealthCommand = GetVoiceConnectorTerminationHealthCommand;
|
|
4091
|
-
exports.GetVoiceConnectorTerminationHealthRequest$ = GetVoiceConnectorTerminationHealthRequest$;
|
|
4092
|
-
exports.GetVoiceConnectorTerminationHealthResponse$ = GetVoiceConnectorTerminationHealthResponse$;
|
|
4093
|
-
exports.GetVoiceConnectorTerminationRequest$ = GetVoiceConnectorTerminationRequest$;
|
|
4094
|
-
exports.GetVoiceConnectorTerminationResponse$ = GetVoiceConnectorTerminationResponse$;
|
|
4095
|
-
exports.GetVoiceProfile$ = GetVoiceProfile$;
|
|
4096
1620
|
exports.GetVoiceProfileCommand = GetVoiceProfileCommand;
|
|
4097
|
-
exports.GetVoiceProfileDomain$ = GetVoiceProfileDomain$;
|
|
4098
1621
|
exports.GetVoiceProfileDomainCommand = GetVoiceProfileDomainCommand;
|
|
4099
|
-
exports.GetVoiceProfileDomainRequest$ = GetVoiceProfileDomainRequest$;
|
|
4100
|
-
exports.GetVoiceProfileDomainResponse$ = GetVoiceProfileDomainResponse$;
|
|
4101
|
-
exports.GetVoiceProfileRequest$ = GetVoiceProfileRequest$;
|
|
4102
|
-
exports.GetVoiceProfileResponse$ = GetVoiceProfileResponse$;
|
|
4103
|
-
exports.GetVoiceToneAnalysisTask$ = GetVoiceToneAnalysisTask$;
|
|
4104
1622
|
exports.GetVoiceToneAnalysisTaskCommand = GetVoiceToneAnalysisTaskCommand;
|
|
4105
|
-
exports.GetVoiceToneAnalysisTaskRequest$ = GetVoiceToneAnalysisTaskRequest$;
|
|
4106
|
-
exports.GetVoiceToneAnalysisTaskResponse$ = GetVoiceToneAnalysisTaskResponse$;
|
|
4107
|
-
exports.GoneException = GoneException;
|
|
4108
|
-
exports.GoneException$ = GoneException$;
|
|
4109
1623
|
exports.LanguageCode = LanguageCode;
|
|
4110
|
-
exports.ListAvailableVoiceConnectorRegions$ = ListAvailableVoiceConnectorRegions$;
|
|
4111
1624
|
exports.ListAvailableVoiceConnectorRegionsCommand = ListAvailableVoiceConnectorRegionsCommand;
|
|
4112
|
-
exports.ListAvailableVoiceConnectorRegionsResponse$ = ListAvailableVoiceConnectorRegionsResponse$;
|
|
4113
|
-
exports.ListPhoneNumberOrders$ = ListPhoneNumberOrders$;
|
|
4114
1625
|
exports.ListPhoneNumberOrdersCommand = ListPhoneNumberOrdersCommand;
|
|
4115
|
-
exports.ListPhoneNumberOrdersRequest$ = ListPhoneNumberOrdersRequest$;
|
|
4116
|
-
exports.ListPhoneNumberOrdersResponse$ = ListPhoneNumberOrdersResponse$;
|
|
4117
|
-
exports.ListPhoneNumbers$ = ListPhoneNumbers$;
|
|
4118
1626
|
exports.ListPhoneNumbersCommand = ListPhoneNumbersCommand;
|
|
4119
|
-
exports.ListPhoneNumbersRequest$ = ListPhoneNumbersRequest$;
|
|
4120
|
-
exports.ListPhoneNumbersResponse$ = ListPhoneNumbersResponse$;
|
|
4121
|
-
exports.ListProxySessions$ = ListProxySessions$;
|
|
4122
1627
|
exports.ListProxySessionsCommand = ListProxySessionsCommand;
|
|
4123
|
-
exports.ListProxySessionsRequest$ = ListProxySessionsRequest$;
|
|
4124
|
-
exports.ListProxySessionsResponse$ = ListProxySessionsResponse$;
|
|
4125
|
-
exports.ListSipMediaApplications$ = ListSipMediaApplications$;
|
|
4126
1628
|
exports.ListSipMediaApplicationsCommand = ListSipMediaApplicationsCommand;
|
|
4127
|
-
exports.ListSipMediaApplicationsRequest$ = ListSipMediaApplicationsRequest$;
|
|
4128
|
-
exports.ListSipMediaApplicationsResponse$ = ListSipMediaApplicationsResponse$;
|
|
4129
|
-
exports.ListSipRules$ = ListSipRules$;
|
|
4130
1629
|
exports.ListSipRulesCommand = ListSipRulesCommand;
|
|
4131
|
-
exports.ListSipRulesRequest$ = ListSipRulesRequest$;
|
|
4132
|
-
exports.ListSipRulesResponse$ = ListSipRulesResponse$;
|
|
4133
|
-
exports.ListSupportedPhoneNumberCountries$ = ListSupportedPhoneNumberCountries$;
|
|
4134
1630
|
exports.ListSupportedPhoneNumberCountriesCommand = ListSupportedPhoneNumberCountriesCommand;
|
|
4135
|
-
exports.ListSupportedPhoneNumberCountriesRequest$ = ListSupportedPhoneNumberCountriesRequest$;
|
|
4136
|
-
exports.ListSupportedPhoneNumberCountriesResponse$ = ListSupportedPhoneNumberCountriesResponse$;
|
|
4137
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
4138
1631
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4139
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4140
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4141
|
-
exports.ListVoiceConnectorGroups$ = ListVoiceConnectorGroups$;
|
|
4142
1632
|
exports.ListVoiceConnectorGroupsCommand = ListVoiceConnectorGroupsCommand;
|
|
4143
|
-
exports.ListVoiceConnectorGroupsRequest$ = ListVoiceConnectorGroupsRequest$;
|
|
4144
|
-
exports.ListVoiceConnectorGroupsResponse$ = ListVoiceConnectorGroupsResponse$;
|
|
4145
|
-
exports.ListVoiceConnectorTerminationCredentials$ = ListVoiceConnectorTerminationCredentials$;
|
|
4146
1633
|
exports.ListVoiceConnectorTerminationCredentialsCommand = ListVoiceConnectorTerminationCredentialsCommand;
|
|
4147
|
-
exports.ListVoiceConnectorTerminationCredentialsRequest$ = ListVoiceConnectorTerminationCredentialsRequest$;
|
|
4148
|
-
exports.ListVoiceConnectorTerminationCredentialsResponse$ = ListVoiceConnectorTerminationCredentialsResponse$;
|
|
4149
|
-
exports.ListVoiceConnectors$ = ListVoiceConnectors$;
|
|
4150
1634
|
exports.ListVoiceConnectorsCommand = ListVoiceConnectorsCommand;
|
|
4151
|
-
exports.ListVoiceConnectorsRequest$ = ListVoiceConnectorsRequest$;
|
|
4152
|
-
exports.ListVoiceConnectorsResponse$ = ListVoiceConnectorsResponse$;
|
|
4153
|
-
exports.ListVoiceProfileDomains$ = ListVoiceProfileDomains$;
|
|
4154
1635
|
exports.ListVoiceProfileDomainsCommand = ListVoiceProfileDomainsCommand;
|
|
4155
|
-
exports.ListVoiceProfileDomainsRequest$ = ListVoiceProfileDomainsRequest$;
|
|
4156
|
-
exports.ListVoiceProfileDomainsResponse$ = ListVoiceProfileDomainsResponse$;
|
|
4157
|
-
exports.ListVoiceProfiles$ = ListVoiceProfiles$;
|
|
4158
1636
|
exports.ListVoiceProfilesCommand = ListVoiceProfilesCommand;
|
|
4159
|
-
exports.ListVoiceProfilesRequest$ = ListVoiceProfilesRequest$;
|
|
4160
|
-
exports.ListVoiceProfilesResponse$ = ListVoiceProfilesResponse$;
|
|
4161
|
-
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
4162
|
-
exports.MediaInsightsConfiguration$ = MediaInsightsConfiguration$;
|
|
4163
1637
|
exports.NetworkType = NetworkType;
|
|
4164
|
-
exports.NotFoundException = NotFoundException;
|
|
4165
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
4166
1638
|
exports.NotificationTarget = NotificationTarget;
|
|
4167
1639
|
exports.NumberSelectionBehavior = NumberSelectionBehavior;
|
|
4168
|
-
exports.OrderedPhoneNumber$ = OrderedPhoneNumber$;
|
|
4169
1640
|
exports.OrderedPhoneNumberStatus = OrderedPhoneNumberStatus;
|
|
4170
|
-
exports.Origination$ = Origination$;
|
|
4171
|
-
exports.OriginationRoute$ = OriginationRoute$;
|
|
4172
1641
|
exports.OriginationRouteProtocol = OriginationRouteProtocol;
|
|
4173
|
-
exports.Participant$ = Participant$;
|
|
4174
|
-
exports.PhoneNumber$ = PhoneNumber$;
|
|
4175
|
-
exports.PhoneNumberAssociation$ = PhoneNumberAssociation$;
|
|
4176
1642
|
exports.PhoneNumberAssociationName = PhoneNumberAssociationName;
|
|
4177
|
-
exports.PhoneNumberCapabilities$ = PhoneNumberCapabilities$;
|
|
4178
|
-
exports.PhoneNumberCountry$ = PhoneNumberCountry$;
|
|
4179
|
-
exports.PhoneNumberError$ = PhoneNumberError$;
|
|
4180
|
-
exports.PhoneNumberOrder$ = PhoneNumberOrder$;
|
|
4181
1643
|
exports.PhoneNumberOrderStatus = PhoneNumberOrderStatus;
|
|
4182
1644
|
exports.PhoneNumberOrderType = PhoneNumberOrderType;
|
|
4183
1645
|
exports.PhoneNumberProductType = PhoneNumberProductType;
|
|
4184
1646
|
exports.PhoneNumberStatus = PhoneNumberStatus;
|
|
4185
1647
|
exports.PhoneNumberType = PhoneNumberType;
|
|
4186
|
-
exports.Proxy$ = Proxy$;
|
|
4187
|
-
exports.ProxySession$ = ProxySession$;
|
|
4188
1648
|
exports.ProxySessionStatus = ProxySessionStatus;
|
|
4189
|
-
exports.PutSipMediaApplicationAlexaSkillConfiguration$ = PutSipMediaApplicationAlexaSkillConfiguration$;
|
|
4190
1649
|
exports.PutSipMediaApplicationAlexaSkillConfigurationCommand = PutSipMediaApplicationAlexaSkillConfigurationCommand;
|
|
4191
|
-
exports.PutSipMediaApplicationAlexaSkillConfigurationRequest$ = PutSipMediaApplicationAlexaSkillConfigurationRequest$;
|
|
4192
|
-
exports.PutSipMediaApplicationAlexaSkillConfigurationResponse$ = PutSipMediaApplicationAlexaSkillConfigurationResponse$;
|
|
4193
|
-
exports.PutSipMediaApplicationLoggingConfiguration$ = PutSipMediaApplicationLoggingConfiguration$;
|
|
4194
1650
|
exports.PutSipMediaApplicationLoggingConfigurationCommand = PutSipMediaApplicationLoggingConfigurationCommand;
|
|
4195
|
-
exports.PutSipMediaApplicationLoggingConfigurationRequest$ = PutSipMediaApplicationLoggingConfigurationRequest$;
|
|
4196
|
-
exports.PutSipMediaApplicationLoggingConfigurationResponse$ = PutSipMediaApplicationLoggingConfigurationResponse$;
|
|
4197
|
-
exports.PutVoiceConnectorEmergencyCallingConfiguration$ = PutVoiceConnectorEmergencyCallingConfiguration$;
|
|
4198
1651
|
exports.PutVoiceConnectorEmergencyCallingConfigurationCommand = PutVoiceConnectorEmergencyCallingConfigurationCommand;
|
|
4199
|
-
exports.PutVoiceConnectorEmergencyCallingConfigurationRequest$ = PutVoiceConnectorEmergencyCallingConfigurationRequest$;
|
|
4200
|
-
exports.PutVoiceConnectorEmergencyCallingConfigurationResponse$ = PutVoiceConnectorEmergencyCallingConfigurationResponse$;
|
|
4201
|
-
exports.PutVoiceConnectorExternalSystemsConfiguration$ = PutVoiceConnectorExternalSystemsConfiguration$;
|
|
4202
1652
|
exports.PutVoiceConnectorExternalSystemsConfigurationCommand = PutVoiceConnectorExternalSystemsConfigurationCommand;
|
|
4203
|
-
exports.PutVoiceConnectorExternalSystemsConfigurationRequest$ = PutVoiceConnectorExternalSystemsConfigurationRequest$;
|
|
4204
|
-
exports.PutVoiceConnectorExternalSystemsConfigurationResponse$ = PutVoiceConnectorExternalSystemsConfigurationResponse$;
|
|
4205
|
-
exports.PutVoiceConnectorLoggingConfiguration$ = PutVoiceConnectorLoggingConfiguration$;
|
|
4206
1653
|
exports.PutVoiceConnectorLoggingConfigurationCommand = PutVoiceConnectorLoggingConfigurationCommand;
|
|
4207
|
-
exports.PutVoiceConnectorLoggingConfigurationRequest$ = PutVoiceConnectorLoggingConfigurationRequest$;
|
|
4208
|
-
exports.PutVoiceConnectorLoggingConfigurationResponse$ = PutVoiceConnectorLoggingConfigurationResponse$;
|
|
4209
|
-
exports.PutVoiceConnectorOrigination$ = PutVoiceConnectorOrigination$;
|
|
4210
1654
|
exports.PutVoiceConnectorOriginationCommand = PutVoiceConnectorOriginationCommand;
|
|
4211
|
-
exports.PutVoiceConnectorOriginationRequest$ = PutVoiceConnectorOriginationRequest$;
|
|
4212
|
-
exports.PutVoiceConnectorOriginationResponse$ = PutVoiceConnectorOriginationResponse$;
|
|
4213
|
-
exports.PutVoiceConnectorProxy$ = PutVoiceConnectorProxy$;
|
|
4214
1655
|
exports.PutVoiceConnectorProxyCommand = PutVoiceConnectorProxyCommand;
|
|
4215
|
-
exports.PutVoiceConnectorProxyRequest$ = PutVoiceConnectorProxyRequest$;
|
|
4216
|
-
exports.PutVoiceConnectorProxyResponse$ = PutVoiceConnectorProxyResponse$;
|
|
4217
|
-
exports.PutVoiceConnectorStreamingConfiguration$ = PutVoiceConnectorStreamingConfiguration$;
|
|
4218
1656
|
exports.PutVoiceConnectorStreamingConfigurationCommand = PutVoiceConnectorStreamingConfigurationCommand;
|
|
4219
|
-
exports.PutVoiceConnectorStreamingConfigurationRequest$ = PutVoiceConnectorStreamingConfigurationRequest$;
|
|
4220
|
-
exports.PutVoiceConnectorStreamingConfigurationResponse$ = PutVoiceConnectorStreamingConfigurationResponse$;
|
|
4221
|
-
exports.PutVoiceConnectorTermination$ = PutVoiceConnectorTermination$;
|
|
4222
1657
|
exports.PutVoiceConnectorTerminationCommand = PutVoiceConnectorTerminationCommand;
|
|
4223
|
-
exports.PutVoiceConnectorTerminationCredentials$ = PutVoiceConnectorTerminationCredentials$;
|
|
4224
1658
|
exports.PutVoiceConnectorTerminationCredentialsCommand = PutVoiceConnectorTerminationCredentialsCommand;
|
|
4225
|
-
exports.PutVoiceConnectorTerminationCredentialsRequest$ = PutVoiceConnectorTerminationCredentialsRequest$;
|
|
4226
|
-
exports.PutVoiceConnectorTerminationRequest$ = PutVoiceConnectorTerminationRequest$;
|
|
4227
|
-
exports.PutVoiceConnectorTerminationResponse$ = PutVoiceConnectorTerminationResponse$;
|
|
4228
|
-
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
4229
|
-
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
4230
|
-
exports.RestorePhoneNumber$ = RestorePhoneNumber$;
|
|
4231
1659
|
exports.RestorePhoneNumberCommand = RestorePhoneNumberCommand;
|
|
4232
|
-
exports.RestorePhoneNumberRequest$ = RestorePhoneNumberRequest$;
|
|
4233
|
-
exports.RestorePhoneNumberResponse$ = RestorePhoneNumberResponse$;
|
|
4234
|
-
exports.SearchAvailablePhoneNumbers$ = SearchAvailablePhoneNumbers$;
|
|
4235
1660
|
exports.SearchAvailablePhoneNumbersCommand = SearchAvailablePhoneNumbersCommand;
|
|
4236
|
-
exports.SearchAvailablePhoneNumbersRequest$ = SearchAvailablePhoneNumbersRequest$;
|
|
4237
|
-
exports.SearchAvailablePhoneNumbersResponse$ = SearchAvailablePhoneNumbersResponse$;
|
|
4238
|
-
exports.ServerSideEncryptionConfiguration$ = ServerSideEncryptionConfiguration$;
|
|
4239
|
-
exports.ServiceFailureException = ServiceFailureException;
|
|
4240
|
-
exports.ServiceFailureException$ = ServiceFailureException$;
|
|
4241
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4242
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
4243
1661
|
exports.SessionBorderControllerType = SessionBorderControllerType;
|
|
4244
|
-
exports.SipMediaApplication$ = SipMediaApplication$;
|
|
4245
|
-
exports.SipMediaApplicationAlexaSkillConfiguration$ = SipMediaApplicationAlexaSkillConfiguration$;
|
|
4246
|
-
exports.SipMediaApplicationCall$ = SipMediaApplicationCall$;
|
|
4247
|
-
exports.SipMediaApplicationEndpoint$ = SipMediaApplicationEndpoint$;
|
|
4248
|
-
exports.SipMediaApplicationLoggingConfiguration$ = SipMediaApplicationLoggingConfiguration$;
|
|
4249
|
-
exports.SipRule$ = SipRule$;
|
|
4250
|
-
exports.SipRuleTargetApplication$ = SipRuleTargetApplication$;
|
|
4251
1662
|
exports.SipRuleTriggerType = SipRuleTriggerType;
|
|
4252
|
-
exports.SpeakerSearchDetails$ = SpeakerSearchDetails$;
|
|
4253
|
-
exports.SpeakerSearchResult$ = SpeakerSearchResult$;
|
|
4254
|
-
exports.SpeakerSearchTask$ = SpeakerSearchTask$;
|
|
4255
|
-
exports.StartSpeakerSearchTask$ = StartSpeakerSearchTask$;
|
|
4256
1663
|
exports.StartSpeakerSearchTaskCommand = StartSpeakerSearchTaskCommand;
|
|
4257
|
-
exports.StartSpeakerSearchTaskRequest$ = StartSpeakerSearchTaskRequest$;
|
|
4258
|
-
exports.StartSpeakerSearchTaskResponse$ = StartSpeakerSearchTaskResponse$;
|
|
4259
|
-
exports.StartVoiceToneAnalysisTask$ = StartVoiceToneAnalysisTask$;
|
|
4260
1664
|
exports.StartVoiceToneAnalysisTaskCommand = StartVoiceToneAnalysisTaskCommand;
|
|
4261
|
-
exports.StartVoiceToneAnalysisTaskRequest$ = StartVoiceToneAnalysisTaskRequest$;
|
|
4262
|
-
exports.StartVoiceToneAnalysisTaskResponse$ = StartVoiceToneAnalysisTaskResponse$;
|
|
4263
|
-
exports.StopSpeakerSearchTask$ = StopSpeakerSearchTask$;
|
|
4264
1665
|
exports.StopSpeakerSearchTaskCommand = StopSpeakerSearchTaskCommand;
|
|
4265
|
-
exports.StopSpeakerSearchTaskRequest$ = StopSpeakerSearchTaskRequest$;
|
|
4266
|
-
exports.StopVoiceToneAnalysisTask$ = StopVoiceToneAnalysisTask$;
|
|
4267
1666
|
exports.StopVoiceToneAnalysisTaskCommand = StopVoiceToneAnalysisTaskCommand;
|
|
4268
|
-
exports.StopVoiceToneAnalysisTaskRequest$ = StopVoiceToneAnalysisTaskRequest$;
|
|
4269
|
-
exports.StreamingConfiguration$ = StreamingConfiguration$;
|
|
4270
|
-
exports.StreamingNotificationTarget$ = StreamingNotificationTarget$;
|
|
4271
|
-
exports.Tag$ = Tag$;
|
|
4272
|
-
exports.TagResource$ = TagResource$;
|
|
4273
1667
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4274
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4275
|
-
exports.Termination$ = Termination$;
|
|
4276
|
-
exports.TerminationHealth$ = TerminationHealth$;
|
|
4277
|
-
exports.ThrottledClientException = ThrottledClientException;
|
|
4278
|
-
exports.ThrottledClientException$ = ThrottledClientException$;
|
|
4279
|
-
exports.UnauthorizedClientException = UnauthorizedClientException;
|
|
4280
|
-
exports.UnauthorizedClientException$ = UnauthorizedClientException$;
|
|
4281
|
-
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
4282
|
-
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
4283
|
-
exports.UntagResource$ = UntagResource$;
|
|
4284
1668
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4285
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4286
|
-
exports.UpdateGlobalSettings$ = UpdateGlobalSettings$;
|
|
4287
1669
|
exports.UpdateGlobalSettingsCommand = UpdateGlobalSettingsCommand;
|
|
4288
|
-
exports.UpdateGlobalSettingsRequest$ = UpdateGlobalSettingsRequest$;
|
|
4289
|
-
exports.UpdatePhoneNumber$ = UpdatePhoneNumber$;
|
|
4290
1670
|
exports.UpdatePhoneNumberCommand = UpdatePhoneNumberCommand;
|
|
4291
|
-
exports.UpdatePhoneNumberRequest$ = UpdatePhoneNumberRequest$;
|
|
4292
|
-
exports.UpdatePhoneNumberRequestItem$ = UpdatePhoneNumberRequestItem$;
|
|
4293
|
-
exports.UpdatePhoneNumberResponse$ = UpdatePhoneNumberResponse$;
|
|
4294
|
-
exports.UpdatePhoneNumberSettings$ = UpdatePhoneNumberSettings$;
|
|
4295
1671
|
exports.UpdatePhoneNumberSettingsCommand = UpdatePhoneNumberSettingsCommand;
|
|
4296
|
-
exports.UpdatePhoneNumberSettingsRequest$ = UpdatePhoneNumberSettingsRequest$;
|
|
4297
|
-
exports.UpdateProxySession$ = UpdateProxySession$;
|
|
4298
1672
|
exports.UpdateProxySessionCommand = UpdateProxySessionCommand;
|
|
4299
|
-
exports.UpdateProxySessionRequest$ = UpdateProxySessionRequest$;
|
|
4300
|
-
exports.UpdateProxySessionResponse$ = UpdateProxySessionResponse$;
|
|
4301
|
-
exports.UpdateSipMediaApplication$ = UpdateSipMediaApplication$;
|
|
4302
|
-
exports.UpdateSipMediaApplicationCall$ = UpdateSipMediaApplicationCall$;
|
|
4303
1673
|
exports.UpdateSipMediaApplicationCallCommand = UpdateSipMediaApplicationCallCommand;
|
|
4304
|
-
exports.UpdateSipMediaApplicationCallRequest$ = UpdateSipMediaApplicationCallRequest$;
|
|
4305
|
-
exports.UpdateSipMediaApplicationCallResponse$ = UpdateSipMediaApplicationCallResponse$;
|
|
4306
1674
|
exports.UpdateSipMediaApplicationCommand = UpdateSipMediaApplicationCommand;
|
|
4307
|
-
exports.UpdateSipMediaApplicationRequest$ = UpdateSipMediaApplicationRequest$;
|
|
4308
|
-
exports.UpdateSipMediaApplicationResponse$ = UpdateSipMediaApplicationResponse$;
|
|
4309
|
-
exports.UpdateSipRule$ = UpdateSipRule$;
|
|
4310
1675
|
exports.UpdateSipRuleCommand = UpdateSipRuleCommand;
|
|
4311
|
-
exports.UpdateSipRuleRequest$ = UpdateSipRuleRequest$;
|
|
4312
|
-
exports.UpdateSipRuleResponse$ = UpdateSipRuleResponse$;
|
|
4313
|
-
exports.UpdateVoiceConnector$ = UpdateVoiceConnector$;
|
|
4314
1676
|
exports.UpdateVoiceConnectorCommand = UpdateVoiceConnectorCommand;
|
|
4315
|
-
exports.UpdateVoiceConnectorGroup$ = UpdateVoiceConnectorGroup$;
|
|
4316
1677
|
exports.UpdateVoiceConnectorGroupCommand = UpdateVoiceConnectorGroupCommand;
|
|
4317
|
-
exports.UpdateVoiceConnectorGroupRequest$ = UpdateVoiceConnectorGroupRequest$;
|
|
4318
|
-
exports.UpdateVoiceConnectorGroupResponse$ = UpdateVoiceConnectorGroupResponse$;
|
|
4319
|
-
exports.UpdateVoiceConnectorRequest$ = UpdateVoiceConnectorRequest$;
|
|
4320
|
-
exports.UpdateVoiceConnectorResponse$ = UpdateVoiceConnectorResponse$;
|
|
4321
|
-
exports.UpdateVoiceProfile$ = UpdateVoiceProfile$;
|
|
4322
1678
|
exports.UpdateVoiceProfileCommand = UpdateVoiceProfileCommand;
|
|
4323
|
-
exports.UpdateVoiceProfileDomain$ = UpdateVoiceProfileDomain$;
|
|
4324
1679
|
exports.UpdateVoiceProfileDomainCommand = UpdateVoiceProfileDomainCommand;
|
|
4325
|
-
exports.UpdateVoiceProfileDomainRequest$ = UpdateVoiceProfileDomainRequest$;
|
|
4326
|
-
exports.UpdateVoiceProfileDomainResponse$ = UpdateVoiceProfileDomainResponse$;
|
|
4327
|
-
exports.UpdateVoiceProfileRequest$ = UpdateVoiceProfileRequest$;
|
|
4328
|
-
exports.UpdateVoiceProfileResponse$ = UpdateVoiceProfileResponse$;
|
|
4329
|
-
exports.ValidateE911Address$ = ValidateE911Address$;
|
|
4330
1680
|
exports.ValidateE911AddressCommand = ValidateE911AddressCommand;
|
|
4331
|
-
exports.ValidateE911AddressRequest$ = ValidateE911AddressRequest$;
|
|
4332
|
-
exports.ValidateE911AddressResponse$ = ValidateE911AddressResponse$;
|
|
4333
|
-
exports.VoiceConnector$ = VoiceConnector$;
|
|
4334
1681
|
exports.VoiceConnectorAwsRegion = VoiceConnectorAwsRegion;
|
|
4335
|
-
exports.VoiceConnectorGroup$ = VoiceConnectorGroup$;
|
|
4336
1682
|
exports.VoiceConnectorIntegrationType = VoiceConnectorIntegrationType;
|
|
4337
|
-
exports.VoiceConnectorItem$ = VoiceConnectorItem$;
|
|
4338
|
-
exports.VoiceConnectorSettings$ = VoiceConnectorSettings$;
|
|
4339
|
-
exports.VoiceProfile$ = VoiceProfile$;
|
|
4340
|
-
exports.VoiceProfileDomain$ = VoiceProfileDomain$;
|
|
4341
|
-
exports.VoiceProfileDomainSummary$ = VoiceProfileDomainSummary$;
|
|
4342
|
-
exports.VoiceProfileSummary$ = VoiceProfileSummary$;
|
|
4343
|
-
exports.VoiceToneAnalysisTask$ = VoiceToneAnalysisTask$;
|
|
4344
1683
|
exports.paginateListPhoneNumberOrders = paginateListPhoneNumberOrders;
|
|
4345
1684
|
exports.paginateListPhoneNumbers = paginateListPhoneNumbers;
|
|
4346
1685
|
exports.paginateListProxySessions = paginateListProxySessions;
|
|
@@ -4351,3 +1690,15 @@ exports.paginateListVoiceConnectors = paginateListVoiceConnectors;
|
|
|
4351
1690
|
exports.paginateListVoiceProfileDomains = paginateListVoiceProfileDomains;
|
|
4352
1691
|
exports.paginateListVoiceProfiles = paginateListVoiceProfiles;
|
|
4353
1692
|
exports.paginateSearchAvailablePhoneNumbers = paginateSearchAvailablePhoneNumbers;
|
|
1693
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1694
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1695
|
+
enumerable: true,
|
|
1696
|
+
get: function () { return schemas_0[k]; }
|
|
1697
|
+
});
|
|
1698
|
+
});
|
|
1699
|
+
Object.keys(errors).forEach(function (k) {
|
|
1700
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1701
|
+
enumerable: true,
|
|
1702
|
+
get: function () { return errors[k]; }
|
|
1703
|
+
});
|
|
1704
|
+
});
|