@aws-sdk/client-chime-sdk-voice 3.1074.0 → 3.1076.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 +2854 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ChimeSDKVoiceServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -193
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2376
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultChimeSDKVoiceHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "chime",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultChimeSDKVoiceHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2471 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://voice-chime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://voice-chime-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://voice-chime.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://voice-chime.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class ChimeSDKVoiceServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ChimeSDKVoiceServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends ChimeSDKVoiceServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Code;
|
|
143
|
+
Message;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccessDeniedException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
151
|
+
this.Code = opts.Code;
|
|
152
|
+
this.Message = opts.Message;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class BadRequestException extends ChimeSDKVoiceServiceException {
|
|
156
|
+
name = "BadRequestException";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
Code;
|
|
159
|
+
Message;
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "BadRequestException",
|
|
163
|
+
$fault: "client",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
167
|
+
this.Code = opts.Code;
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class ForbiddenException extends ChimeSDKVoiceServiceException {
|
|
172
|
+
name = "ForbiddenException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
Code;
|
|
175
|
+
Message;
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "ForbiddenException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
183
|
+
this.Code = opts.Code;
|
|
184
|
+
this.Message = opts.Message;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class NotFoundException extends ChimeSDKVoiceServiceException {
|
|
188
|
+
name = "NotFoundException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
Code;
|
|
191
|
+
Message;
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "NotFoundException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
199
|
+
this.Code = opts.Code;
|
|
200
|
+
this.Message = opts.Message;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class ServiceFailureException extends ChimeSDKVoiceServiceException {
|
|
204
|
+
name = "ServiceFailureException";
|
|
205
|
+
$fault = "server";
|
|
206
|
+
Code;
|
|
207
|
+
Message;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "ServiceFailureException",
|
|
211
|
+
$fault: "server",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
215
|
+
this.Code = opts.Code;
|
|
216
|
+
this.Message = opts.Message;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ServiceUnavailableException extends ChimeSDKVoiceServiceException {
|
|
220
|
+
name = "ServiceUnavailableException";
|
|
221
|
+
$fault = "server";
|
|
222
|
+
Code;
|
|
223
|
+
Message;
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ServiceUnavailableException",
|
|
227
|
+
$fault: "server",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
231
|
+
this.Code = opts.Code;
|
|
232
|
+
this.Message = opts.Message;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class ThrottledClientException extends ChimeSDKVoiceServiceException {
|
|
236
|
+
name = "ThrottledClientException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
Code;
|
|
239
|
+
Message;
|
|
240
|
+
constructor(opts) {
|
|
241
|
+
super({
|
|
242
|
+
name: "ThrottledClientException",
|
|
243
|
+
$fault: "client",
|
|
244
|
+
...opts,
|
|
245
|
+
});
|
|
246
|
+
Object.setPrototypeOf(this, ThrottledClientException.prototype);
|
|
247
|
+
this.Code = opts.Code;
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class UnauthorizedClientException extends ChimeSDKVoiceServiceException {
|
|
252
|
+
name = "UnauthorizedClientException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Code;
|
|
255
|
+
Message;
|
|
256
|
+
constructor(opts) {
|
|
257
|
+
super({
|
|
258
|
+
name: "UnauthorizedClientException",
|
|
259
|
+
$fault: "client",
|
|
260
|
+
...opts,
|
|
261
|
+
});
|
|
262
|
+
Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
|
|
263
|
+
this.Code = opts.Code;
|
|
264
|
+
this.Message = opts.Message;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
class ResourceLimitExceededException extends ChimeSDKVoiceServiceException {
|
|
268
|
+
name = "ResourceLimitExceededException";
|
|
269
|
+
$fault = "client";
|
|
270
|
+
Code;
|
|
271
|
+
Message;
|
|
272
|
+
constructor(opts) {
|
|
273
|
+
super({
|
|
274
|
+
name: "ResourceLimitExceededException",
|
|
275
|
+
$fault: "client",
|
|
276
|
+
...opts,
|
|
277
|
+
});
|
|
278
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
279
|
+
this.Code = opts.Code;
|
|
280
|
+
this.Message = opts.Message;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class ConflictException extends ChimeSDKVoiceServiceException {
|
|
284
|
+
name = "ConflictException";
|
|
285
|
+
$fault = "client";
|
|
286
|
+
Code;
|
|
287
|
+
Message;
|
|
288
|
+
constructor(opts) {
|
|
289
|
+
super({
|
|
290
|
+
name: "ConflictException",
|
|
291
|
+
$fault: "client",
|
|
292
|
+
...opts,
|
|
293
|
+
});
|
|
294
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
295
|
+
this.Code = opts.Code;
|
|
296
|
+
this.Message = opts.Message;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
class GoneException extends ChimeSDKVoiceServiceException {
|
|
300
|
+
name = "GoneException";
|
|
301
|
+
$fault = "client";
|
|
302
|
+
Code;
|
|
303
|
+
Message;
|
|
304
|
+
constructor(opts) {
|
|
305
|
+
super({
|
|
306
|
+
name: "GoneException",
|
|
307
|
+
$fault: "client",
|
|
308
|
+
...opts,
|
|
309
|
+
});
|
|
310
|
+
Object.setPrototypeOf(this, GoneException.prototype);
|
|
311
|
+
this.Code = opts.Code;
|
|
312
|
+
this.Message = opts.Message;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
class UnprocessableEntityException extends ChimeSDKVoiceServiceException {
|
|
316
|
+
name = "UnprocessableEntityException";
|
|
317
|
+
$fault = "client";
|
|
318
|
+
Code;
|
|
319
|
+
Message;
|
|
320
|
+
constructor(opts) {
|
|
321
|
+
super({
|
|
322
|
+
name: "UnprocessableEntityException",
|
|
323
|
+
$fault: "client",
|
|
324
|
+
...opts,
|
|
325
|
+
});
|
|
326
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
327
|
+
this.Code = opts.Code;
|
|
328
|
+
this.Message = opts.Message;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
const _A = "Arn";
|
|
333
|
+
const _AAI = "AwsAccountId";
|
|
334
|
+
const _AC = "AreaCode";
|
|
335
|
+
const _ADE = "AccessDeniedException";
|
|
336
|
+
const _AEI = "AddressExternalId";
|
|
337
|
+
const _AM = "ArgumentsMap";
|
|
338
|
+
const _APNWVC = "AssociatePhoneNumbersWithVoiceConnector";
|
|
339
|
+
const _APNWVCG = "AssociatePhoneNumbersWithVoiceConnectorGroup";
|
|
340
|
+
const _APNWVCGR = "AssociatePhoneNumbersWithVoiceConnectorGroupRequest";
|
|
341
|
+
const _APNWVCGRs = "AssociatePhoneNumbersWithVoiceConnectorGroupResponse";
|
|
342
|
+
const _APNWVCR = "AssociatePhoneNumbersWithVoiceConnectorRequest";
|
|
343
|
+
const _APNWVCRs = "AssociatePhoneNumbersWithVoiceConnectorResponse";
|
|
344
|
+
const _AR = "AwsRegion";
|
|
345
|
+
const _ASI = "AlexaSkillId";
|
|
346
|
+
const _ASIL = "AlexaSkillIdList";
|
|
347
|
+
const _ASIl = "AlexaSkillIds";
|
|
348
|
+
const _ASS = "AlexaSkillStatus";
|
|
349
|
+
const _AT = "AssociatedTimestamp";
|
|
350
|
+
const _Ad = "Address";
|
|
351
|
+
const _Ar = "Arguments";
|
|
352
|
+
const _As = "Associations";
|
|
353
|
+
const _BDPN = "BatchDeletePhoneNumber";
|
|
354
|
+
const _BDPNR = "BatchDeletePhoneNumberRequest";
|
|
355
|
+
const _BDPNRa = "BatchDeletePhoneNumberResponse";
|
|
356
|
+
const _BRE = "BadRequestException";
|
|
357
|
+
const _BUPN = "BatchUpdatePhoneNumber";
|
|
358
|
+
const _BUPNR = "BatchUpdatePhoneNumberRequest";
|
|
359
|
+
const _BUPNRa = "BatchUpdatePhoneNumberResponse";
|
|
360
|
+
const _C = "Code";
|
|
361
|
+
const _CA = "CandidateAddress";
|
|
362
|
+
const _CAL = "CidrAllowedList";
|
|
363
|
+
const _CALa = "CandidateAddressList";
|
|
364
|
+
const _CAo = "ConfigurationArn";
|
|
365
|
+
const _CB = "CdrBucket";
|
|
366
|
+
const _CC = "CallingCountry";
|
|
367
|
+
const _CCST = "ContactCenterSystemTypes";
|
|
368
|
+
const _CCo = "CountryCode";
|
|
369
|
+
const _CD = "CallDetails";
|
|
370
|
+
const _CE = "ConflictException";
|
|
371
|
+
const _CL = "CallLeg";
|
|
372
|
+
const _CLp = "CpsLimit";
|
|
373
|
+
const _CLr = "CredentialList";
|
|
374
|
+
const _CN = "CallingName";
|
|
375
|
+
const _CNS = "CallingNameStatus";
|
|
376
|
+
const _CNUT = "CallingNameUpdatedTimestamp";
|
|
377
|
+
const _CPNO = "CreatePhoneNumberOrder";
|
|
378
|
+
const _CPNOR = "CreatePhoneNumberOrderRequest";
|
|
379
|
+
const _CPNORr = "CreatePhoneNumberOrderResponse";
|
|
380
|
+
const _CPS = "CreateProxySession";
|
|
381
|
+
const _CPSR = "CreateProxySessionRequest";
|
|
382
|
+
const _CPSRr = "CreateProxySessionResponse";
|
|
383
|
+
const _CR = "CallingRegions";
|
|
384
|
+
const _CRT = "ClientRequestToken";
|
|
385
|
+
const _CS = "ConfidenceScore";
|
|
386
|
+
const _CSMA = "CreateSipMediaApplication";
|
|
387
|
+
const _CSMAC = "CreateSipMediaApplicationCall";
|
|
388
|
+
const _CSMACR = "CreateSipMediaApplicationCallRequest";
|
|
389
|
+
const _CSMACRr = "CreateSipMediaApplicationCallResponse";
|
|
390
|
+
const _CSMAR = "CreateSipMediaApplicationRequest";
|
|
391
|
+
const _CSMARr = "CreateSipMediaApplicationResponse";
|
|
392
|
+
const _CSR = "CreateSipRule";
|
|
393
|
+
const _CSRR = "CreateSipRuleRequest";
|
|
394
|
+
const _CSRRr = "CreateSipRuleResponse";
|
|
395
|
+
const _CT = "CreatedTimestamp";
|
|
396
|
+
const _CVC = "CreateVoiceConnector";
|
|
397
|
+
const _CVCG = "CreateVoiceConnectorGroup";
|
|
398
|
+
const _CVCGR = "CreateVoiceConnectorGroupRequest";
|
|
399
|
+
const _CVCGRr = "CreateVoiceConnectorGroupResponse";
|
|
400
|
+
const _CVCR = "CreateVoiceConnectorRequest";
|
|
401
|
+
const _CVCRr = "CreateVoiceConnectorResponse";
|
|
402
|
+
const _CVP = "CreateVoiceProfile";
|
|
403
|
+
const _CVPD = "CreateVoiceProfileDomain";
|
|
404
|
+
const _CVPDR = "CreateVoiceProfileDomainRequest";
|
|
405
|
+
const _CVPDRr = "CreateVoiceProfileDomainResponse";
|
|
406
|
+
const _CVPR = "CreateVoiceProfileRequest";
|
|
407
|
+
const _CVPRr = "CreateVoiceProfileResponse";
|
|
408
|
+
const _Ca = "Capabilities";
|
|
409
|
+
const _Ci = "City";
|
|
410
|
+
const _Co = "Country";
|
|
411
|
+
const _Cr = "Credential";
|
|
412
|
+
const _Cre = "Credentials";
|
|
413
|
+
const _D = "Disabled";
|
|
414
|
+
const _DNIS = "DNIS";
|
|
415
|
+
const _DNISECC = "DNISEmergencyCallingConfiguration";
|
|
416
|
+
const _DNISECCL = "DNISEmergencyCallingConfigurationList";
|
|
417
|
+
const _DPN = "DefaultPhoneNumber";
|
|
418
|
+
const _DPNFVC = "DisassociatePhoneNumbersFromVoiceConnector";
|
|
419
|
+
const _DPNFVCG = "DisassociatePhoneNumbersFromVoiceConnectorGroup";
|
|
420
|
+
const _DPNFVCGR = "DisassociatePhoneNumbersFromVoiceConnectorGroupRequest";
|
|
421
|
+
const _DPNFVCGRi = "DisassociatePhoneNumbersFromVoiceConnectorGroupResponse";
|
|
422
|
+
const _DPNFVCR = "DisassociatePhoneNumbersFromVoiceConnectorRequest";
|
|
423
|
+
const _DPNFVCRi = "DisassociatePhoneNumbersFromVoiceConnectorResponse";
|
|
424
|
+
const _DPNR = "DeletePhoneNumberRequest";
|
|
425
|
+
const _DPNe = "DeletePhoneNumber";
|
|
426
|
+
const _DPS = "DeleteProxySession";
|
|
427
|
+
const _DPSR = "DeleteProxySessionRequest";
|
|
428
|
+
const _DRIH = "DataRetentionInHours";
|
|
429
|
+
const _DSEM = "DefaultSessionExpiryMinutes";
|
|
430
|
+
const _DSMA = "DeleteSipMediaApplication";
|
|
431
|
+
const _DSMAR = "DeleteSipMediaApplicationRequest";
|
|
432
|
+
const _DSR = "DeleteSipRule";
|
|
433
|
+
const _DSRR = "DeleteSipRuleRequest";
|
|
434
|
+
const _DT = "DeletionTimestamp";
|
|
435
|
+
const _DVC = "DeleteVoiceConnector";
|
|
436
|
+
const _DVCECC = "DeleteVoiceConnectorEmergencyCallingConfiguration";
|
|
437
|
+
const _DVCECCR = "DeleteVoiceConnectorEmergencyCallingConfigurationRequest";
|
|
438
|
+
const _DVCESC = "DeleteVoiceConnectorExternalSystemsConfiguration";
|
|
439
|
+
const _DVCESCR = "DeleteVoiceConnectorExternalSystemsConfigurationRequest";
|
|
440
|
+
const _DVCG = "DeleteVoiceConnectorGroup";
|
|
441
|
+
const _DVCGR = "DeleteVoiceConnectorGroupRequest";
|
|
442
|
+
const _DVCO = "DeleteVoiceConnectorOrigination";
|
|
443
|
+
const _DVCOR = "DeleteVoiceConnectorOriginationRequest";
|
|
444
|
+
const _DVCP = "DeleteVoiceConnectorProxy";
|
|
445
|
+
const _DVCPR = "DeleteVoiceConnectorProxyRequest";
|
|
446
|
+
const _DVCR = "DeleteVoiceConnectorRequest";
|
|
447
|
+
const _DVCSC = "DeleteVoiceConnectorStreamingConfiguration";
|
|
448
|
+
const _DVCSCR = "DeleteVoiceConnectorStreamingConfigurationRequest";
|
|
449
|
+
const _DVCT = "DeleteVoiceConnectorTermination";
|
|
450
|
+
const _DVCTC = "DeleteVoiceConnectorTerminationCredentials";
|
|
451
|
+
const _DVCTCR = "DeleteVoiceConnectorTerminationCredentialsRequest";
|
|
452
|
+
const _DVCTR = "DeleteVoiceConnectorTerminationRequest";
|
|
453
|
+
const _DVP = "DeleteVoiceProfile";
|
|
454
|
+
const _DVPD = "DeleteVoiceProfileDomain";
|
|
455
|
+
const _DVPDR = "DeleteVoiceProfileDomainRequest";
|
|
456
|
+
const _DVPR = "DeleteVoiceProfileRequest";
|
|
457
|
+
const _De = "Description";
|
|
458
|
+
const _E = "Endpoints";
|
|
459
|
+
const _EC = "ErrorCode";
|
|
460
|
+
const _ECC = "EmergencyCallingConfiguration";
|
|
461
|
+
const _EM = "ExpiryMinutes";
|
|
462
|
+
const _EMML = "EnableMediaMetricLogs";
|
|
463
|
+
const _EMr = "ErrorMessage";
|
|
464
|
+
const _EPN = "E164PhoneNumber";
|
|
465
|
+
const _EPNL = "E164PhoneNumberList";
|
|
466
|
+
const _EPNh = "E164PhoneNumbers";
|
|
467
|
+
const _EPNm = "EmergencyPhoneNumber";
|
|
468
|
+
const _ESC = "ExternalSystemsConfiguration";
|
|
469
|
+
const _ESIPL = "EnableSIPLogs";
|
|
470
|
+
const _ESMAML = "EnableSipMediaApplicationMessageLogs";
|
|
471
|
+
const _ET = "EndedTimestamp";
|
|
472
|
+
const _ETx = "ExpirationTimestamp";
|
|
473
|
+
const _FA = "FunctionArn";
|
|
474
|
+
const _FAo = "ForceAssociate";
|
|
475
|
+
const _FBPN = "FallBackPhoneNumber";
|
|
476
|
+
const _FD = "FocDate";
|
|
477
|
+
const _FE = "ForbiddenException";
|
|
478
|
+
const _FN = "FilterName";
|
|
479
|
+
const _FPN = "FromPhoneNumber";
|
|
480
|
+
const _FV = "FilterValue";
|
|
481
|
+
const _GE = "GoneException";
|
|
482
|
+
const _GGS = "GetGlobalSettings";
|
|
483
|
+
const _GGSR = "GetGlobalSettingsResponse";
|
|
484
|
+
const _GML = "GeoMatchLevel";
|
|
485
|
+
const _GMP = "GeoMatchParams";
|
|
486
|
+
const _GPN = "GetPhoneNumber";
|
|
487
|
+
const _GPNO = "GetPhoneNumberOrder";
|
|
488
|
+
const _GPNOR = "GetPhoneNumberOrderRequest";
|
|
489
|
+
const _GPNORe = "GetPhoneNumberOrderResponse";
|
|
490
|
+
const _GPNR = "GetPhoneNumberRequest";
|
|
491
|
+
const _GPNRe = "GetPhoneNumberResponse";
|
|
492
|
+
const _GPNS = "GetPhoneNumberSettings";
|
|
493
|
+
const _GPNSR = "GetPhoneNumberSettingsResponse";
|
|
494
|
+
const _GPS = "GetProxySession";
|
|
495
|
+
const _GPSR = "GetProxySessionRequest";
|
|
496
|
+
const _GPSRe = "GetProxySessionResponse";
|
|
497
|
+
const _GSMA = "GetSipMediaApplication";
|
|
498
|
+
const _GSMAASC = "GetSipMediaApplicationAlexaSkillConfiguration";
|
|
499
|
+
const _GSMAASCR = "GetSipMediaApplicationAlexaSkillConfigurationRequest";
|
|
500
|
+
const _GSMAASCRe = "GetSipMediaApplicationAlexaSkillConfigurationResponse";
|
|
501
|
+
const _GSMALC = "GetSipMediaApplicationLoggingConfiguration";
|
|
502
|
+
const _GSMALCR = "GetSipMediaApplicationLoggingConfigurationRequest";
|
|
503
|
+
const _GSMALCRe = "GetSipMediaApplicationLoggingConfigurationResponse";
|
|
504
|
+
const _GSMAR = "GetSipMediaApplicationRequest";
|
|
505
|
+
const _GSMARe = "GetSipMediaApplicationResponse";
|
|
506
|
+
const _GSR = "GetSipRule";
|
|
507
|
+
const _GSRR = "GetSipRuleRequest";
|
|
508
|
+
const _GSRRe = "GetSipRuleResponse";
|
|
509
|
+
const _GSST = "GetSpeakerSearchTask";
|
|
510
|
+
const _GSSTR = "GetSpeakerSearchTaskRequest";
|
|
511
|
+
const _GSSTRe = "GetSpeakerSearchTaskResponse";
|
|
512
|
+
const _GVC = "GetVoiceConnector";
|
|
513
|
+
const _GVCECC = "GetVoiceConnectorEmergencyCallingConfiguration";
|
|
514
|
+
const _GVCECCR = "GetVoiceConnectorEmergencyCallingConfigurationRequest";
|
|
515
|
+
const _GVCECCRe = "GetVoiceConnectorEmergencyCallingConfigurationResponse";
|
|
516
|
+
const _GVCESC = "GetVoiceConnectorExternalSystemsConfiguration";
|
|
517
|
+
const _GVCESCR = "GetVoiceConnectorExternalSystemsConfigurationRequest";
|
|
518
|
+
const _GVCESCRe = "GetVoiceConnectorExternalSystemsConfigurationResponse";
|
|
519
|
+
const _GVCG = "GetVoiceConnectorGroup";
|
|
520
|
+
const _GVCGR = "GetVoiceConnectorGroupRequest";
|
|
521
|
+
const _GVCGRe = "GetVoiceConnectorGroupResponse";
|
|
522
|
+
const _GVCLC = "GetVoiceConnectorLoggingConfiguration";
|
|
523
|
+
const _GVCLCR = "GetVoiceConnectorLoggingConfigurationRequest";
|
|
524
|
+
const _GVCLCRe = "GetVoiceConnectorLoggingConfigurationResponse";
|
|
525
|
+
const _GVCO = "GetVoiceConnectorOrigination";
|
|
526
|
+
const _GVCOR = "GetVoiceConnectorOriginationRequest";
|
|
527
|
+
const _GVCORe = "GetVoiceConnectorOriginationResponse";
|
|
528
|
+
const _GVCP = "GetVoiceConnectorProxy";
|
|
529
|
+
const _GVCPR = "GetVoiceConnectorProxyRequest";
|
|
530
|
+
const _GVCPRe = "GetVoiceConnectorProxyResponse";
|
|
531
|
+
const _GVCR = "GetVoiceConnectorRequest";
|
|
532
|
+
const _GVCRe = "GetVoiceConnectorResponse";
|
|
533
|
+
const _GVCSC = "GetVoiceConnectorStreamingConfiguration";
|
|
534
|
+
const _GVCSCR = "GetVoiceConnectorStreamingConfigurationRequest";
|
|
535
|
+
const _GVCSCRe = "GetVoiceConnectorStreamingConfigurationResponse";
|
|
536
|
+
const _GVCT = "GetVoiceConnectorTermination";
|
|
537
|
+
const _GVCTH = "GetVoiceConnectorTerminationHealth";
|
|
538
|
+
const _GVCTHR = "GetVoiceConnectorTerminationHealthRequest";
|
|
539
|
+
const _GVCTHRe = "GetVoiceConnectorTerminationHealthResponse";
|
|
540
|
+
const _GVCTR = "GetVoiceConnectorTerminationRequest";
|
|
541
|
+
const _GVCTRe = "GetVoiceConnectorTerminationResponse";
|
|
542
|
+
const _GVP = "GetVoiceProfile";
|
|
543
|
+
const _GVPD = "GetVoiceProfileDomain";
|
|
544
|
+
const _GVPDR = "GetVoiceProfileDomainRequest";
|
|
545
|
+
const _GVPDRe = "GetVoiceProfileDomainResponse";
|
|
546
|
+
const _GVPR = "GetVoiceProfileRequest";
|
|
547
|
+
const _GVPRe = "GetVoiceProfileResponse";
|
|
548
|
+
const _GVTAT = "GetVoiceToneAnalysisTask";
|
|
549
|
+
const _GVTATR = "GetVoiceToneAnalysisTaskRequest";
|
|
550
|
+
const _GVTATRe = "GetVoiceToneAnalysisTaskResponse";
|
|
551
|
+
const _H = "Host";
|
|
552
|
+
const _IC = "IsCaller";
|
|
553
|
+
const _ICn = "InboundCall";
|
|
554
|
+
const _IMMS = "InboundMMS";
|
|
555
|
+
const _ISMS = "InboundSMS";
|
|
556
|
+
const _IT = "IntegrationType";
|
|
557
|
+
const _K = "Key";
|
|
558
|
+
const _KKA = "KmsKeyArn";
|
|
559
|
+
const _LA = "LambdaArn";
|
|
560
|
+
const _LAVCR = "ListAvailableVoiceConnectorRegions";
|
|
561
|
+
const _LAVCRR = "ListAvailableVoiceConnectorRegionsResponse";
|
|
562
|
+
const _LC = "LoggingConfiguration";
|
|
563
|
+
const _LCa = "LanguageCode";
|
|
564
|
+
const _LPN = "ListPhoneNumbers";
|
|
565
|
+
const _LPNO = "ListPhoneNumberOrders";
|
|
566
|
+
const _LPNOR = "ListPhoneNumberOrdersRequest";
|
|
567
|
+
const _LPNORi = "ListPhoneNumberOrdersResponse";
|
|
568
|
+
const _LPNR = "ListPhoneNumbersRequest";
|
|
569
|
+
const _LPNRi = "ListPhoneNumbersResponse";
|
|
570
|
+
const _LPS = "ListProxySessions";
|
|
571
|
+
const _LPSR = "ListProxySessionsRequest";
|
|
572
|
+
const _LPSRi = "ListProxySessionsResponse";
|
|
573
|
+
const _LSMA = "ListSipMediaApplications";
|
|
574
|
+
const _LSMAR = "ListSipMediaApplicationsRequest";
|
|
575
|
+
const _LSMARi = "ListSipMediaApplicationsResponse";
|
|
576
|
+
const _LSPNC = "ListSupportedPhoneNumberCountries";
|
|
577
|
+
const _LSPNCR = "ListSupportedPhoneNumberCountriesRequest";
|
|
578
|
+
const _LSPNCRi = "ListSupportedPhoneNumberCountriesResponse";
|
|
579
|
+
const _LSR = "ListSipRules";
|
|
580
|
+
const _LSRR = "ListSipRulesRequest";
|
|
581
|
+
const _LSRRi = "ListSipRulesResponse";
|
|
582
|
+
const _LTFR = "ListTagsForResource";
|
|
583
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
584
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
585
|
+
const _LVC = "ListVoiceConnectors";
|
|
586
|
+
const _LVCG = "ListVoiceConnectorGroups";
|
|
587
|
+
const _LVCGR = "ListVoiceConnectorGroupsRequest";
|
|
588
|
+
const _LVCGRi = "ListVoiceConnectorGroupsResponse";
|
|
589
|
+
const _LVCR = "ListVoiceConnectorsRequest";
|
|
590
|
+
const _LVCRi = "ListVoiceConnectorsResponse";
|
|
591
|
+
const _LVCTC = "ListVoiceConnectorTerminationCredentials";
|
|
592
|
+
const _LVCTCR = "ListVoiceConnectorTerminationCredentialsRequest";
|
|
593
|
+
const _LVCTCRi = "ListVoiceConnectorTerminationCredentialsResponse";
|
|
594
|
+
const _LVP = "ListVoiceProfiles";
|
|
595
|
+
const _LVPD = "ListVoiceProfileDomains";
|
|
596
|
+
const _LVPDR = "ListVoiceProfileDomainsRequest";
|
|
597
|
+
const _LVPDRi = "ListVoiceProfileDomainsResponse";
|
|
598
|
+
const _LVPR = "ListVoiceProfilesRequest";
|
|
599
|
+
const _LVPRi = "ListVoiceProfilesResponse";
|
|
600
|
+
const _M = "Message";
|
|
601
|
+
const _MIC = "MediaInsightsConfiguration";
|
|
602
|
+
const _MR = "MaxResults";
|
|
603
|
+
const _N = "Name";
|
|
604
|
+
const _NFE = "NotFoundException";
|
|
605
|
+
const _NSB = "NumberSelectionBehavior";
|
|
606
|
+
const _NT = "NetworkType";
|
|
607
|
+
const _NTe = "NextToken";
|
|
608
|
+
const _NTo = "NotificationTarget";
|
|
609
|
+
const _O = "Origination";
|
|
610
|
+
const _OC = "OutboundCall";
|
|
611
|
+
const _OHN = "OutboundHostName";
|
|
612
|
+
const _OI = "OrderId";
|
|
613
|
+
const _OMMS = "OutboundMMS";
|
|
614
|
+
const _OPN = "OrderedPhoneNumber";
|
|
615
|
+
const _OPNL = "OrderedPhoneNumberList";
|
|
616
|
+
const _OPNr = "OrderedPhoneNumbers";
|
|
617
|
+
const _OR = "OriginationRoute";
|
|
618
|
+
const _ORL = "OriginationRouteList";
|
|
619
|
+
const _OSMS = "OutboundSMS";
|
|
620
|
+
const _OT = "OrderType";
|
|
621
|
+
const _P = "Password";
|
|
622
|
+
const _PC = "PostalCode";
|
|
623
|
+
const _PN = "PhoneNumber";
|
|
624
|
+
const _PNA = "PhoneNumberAssociation";
|
|
625
|
+
const _PNAL = "PhoneNumberAssociationList";
|
|
626
|
+
const _PNC = "PhoneNumberCountries";
|
|
627
|
+
const _PNCL = "PhoneNumberCountriesList";
|
|
628
|
+
const _PNCh = "PhoneNumberCapabilities";
|
|
629
|
+
const _PNCho = "PhoneNumberCountry";
|
|
630
|
+
const _PNE = "PhoneNumberErrors";
|
|
631
|
+
const _PNEL = "PhoneNumberErrorList";
|
|
632
|
+
const _PNEh = "PhoneNumberError";
|
|
633
|
+
const _PNI = "PhoneNumberIds";
|
|
634
|
+
const _PNIh = "PhoneNumberId";
|
|
635
|
+
const _PNL = "PhoneNumberList";
|
|
636
|
+
const _PNN = "PhoneNumberName";
|
|
637
|
+
const _PNO = "PhoneNumberOrder";
|
|
638
|
+
const _PNOI = "PhoneNumberOrderId";
|
|
639
|
+
const _PNOL = "PhoneNumberOrderList";
|
|
640
|
+
const _PNOh = "PhoneNumberOrders";
|
|
641
|
+
const _PNPC = "PhoneNumberPoolCountries";
|
|
642
|
+
const _PNT = "PhoneNumberType";
|
|
643
|
+
const _PNh = "PhoneNumbers";
|
|
644
|
+
const _PPN = "ParticipantPhoneNumbers";
|
|
645
|
+
const _PPNL = "ParticipantPhoneNumberList";
|
|
646
|
+
const _PPNr = "ProxyPhoneNumber";
|
|
647
|
+
const _PS = "ProxySession";
|
|
648
|
+
const _PSI = "ProxySessionId";
|
|
649
|
+
const _PSMAASC = "PutSipMediaApplicationAlexaSkillConfiguration";
|
|
650
|
+
const _PSMAASCR = "PutSipMediaApplicationAlexaSkillConfigurationRequest";
|
|
651
|
+
const _PSMAASCRu = "PutSipMediaApplicationAlexaSkillConfigurationResponse";
|
|
652
|
+
const _PSMALC = "PutSipMediaApplicationLoggingConfiguration";
|
|
653
|
+
const _PSMALCR = "PutSipMediaApplicationLoggingConfigurationRequest";
|
|
654
|
+
const _PSMALCRu = "PutSipMediaApplicationLoggingConfigurationResponse";
|
|
655
|
+
const _PSNS = "ProxySessionNameString";
|
|
656
|
+
const _PSr = "ProxySessions";
|
|
657
|
+
const _PT = "ProductType";
|
|
658
|
+
const _PVCECC = "PutVoiceConnectorEmergencyCallingConfiguration";
|
|
659
|
+
const _PVCECCR = "PutVoiceConnectorEmergencyCallingConfigurationRequest";
|
|
660
|
+
const _PVCECCRu = "PutVoiceConnectorEmergencyCallingConfigurationResponse";
|
|
661
|
+
const _PVCESC = "PutVoiceConnectorExternalSystemsConfiguration";
|
|
662
|
+
const _PVCESCR = "PutVoiceConnectorExternalSystemsConfigurationRequest";
|
|
663
|
+
const _PVCESCRu = "PutVoiceConnectorExternalSystemsConfigurationResponse";
|
|
664
|
+
const _PVCLC = "PutVoiceConnectorLoggingConfiguration";
|
|
665
|
+
const _PVCLCR = "PutVoiceConnectorLoggingConfigurationRequest";
|
|
666
|
+
const _PVCLCRu = "PutVoiceConnectorLoggingConfigurationResponse";
|
|
667
|
+
const _PVCO = "PutVoiceConnectorOrigination";
|
|
668
|
+
const _PVCOR = "PutVoiceConnectorOriginationRequest";
|
|
669
|
+
const _PVCORu = "PutVoiceConnectorOriginationResponse";
|
|
670
|
+
const _PVCP = "PutVoiceConnectorProxy";
|
|
671
|
+
const _PVCPR = "PutVoiceConnectorProxyRequest";
|
|
672
|
+
const _PVCPRu = "PutVoiceConnectorProxyResponse";
|
|
673
|
+
const _PVCSC = "PutVoiceConnectorStreamingConfiguration";
|
|
674
|
+
const _PVCSCR = "PutVoiceConnectorStreamingConfigurationRequest";
|
|
675
|
+
const _PVCSCRu = "PutVoiceConnectorStreamingConfigurationResponse";
|
|
676
|
+
const _PVCT = "PutVoiceConnectorTermination";
|
|
677
|
+
const _PVCTC = "PutVoiceConnectorTerminationCredentials";
|
|
678
|
+
const _PVCTCR = "PutVoiceConnectorTerminationCredentialsRequest";
|
|
679
|
+
const _PVCTR = "PutVoiceConnectorTerminationRequest";
|
|
680
|
+
const _PVCTRu = "PutVoiceConnectorTerminationResponse";
|
|
681
|
+
const _Pa = "Participant";
|
|
682
|
+
const _Par = "Participants";
|
|
683
|
+
const _Po = "Port";
|
|
684
|
+
const _Pr = "Proxy";
|
|
685
|
+
const _Pri = "Priority";
|
|
686
|
+
const _Pro = "Protocol";
|
|
687
|
+
const _R = "Routes";
|
|
688
|
+
const _RARN = "ResourceARN";
|
|
689
|
+
const _RE = "RequireEncryption";
|
|
690
|
+
const _RLEE = "ResourceLimitExceededException";
|
|
691
|
+
const _RPN = "RestorePhoneNumber";
|
|
692
|
+
const _RPNR = "RestorePhoneNumberRequest";
|
|
693
|
+
const _RPNRe = "RestorePhoneNumberResponse";
|
|
694
|
+
const _Re = "Results";
|
|
695
|
+
const _S = "Status";
|
|
696
|
+
const _SAPN = "SearchAvailablePhoneNumbers";
|
|
697
|
+
const _SAPNR = "SearchAvailablePhoneNumbersRequest";
|
|
698
|
+
const _SAPNRe = "SearchAvailablePhoneNumbersResponse";
|
|
699
|
+
const _SBCT = "SessionBorderControllerTypes";
|
|
700
|
+
const _SC = "StreamingConfiguration";
|
|
701
|
+
const _SFE = "ServiceFailureException";
|
|
702
|
+
const _SH = "SipHeaders";
|
|
703
|
+
const _SHM = "SipHeadersMap";
|
|
704
|
+
const _SI = "StreetInfo";
|
|
705
|
+
const _SM = "StatusMessage";
|
|
706
|
+
const _SMA = "SipMediaApplication";
|
|
707
|
+
const _SMAA = "SipMediaApplicationArn";
|
|
708
|
+
const _SMAASC = "SipMediaApplicationAlexaSkillConfiguration";
|
|
709
|
+
const _SMAC = "SipMediaApplicationCall";
|
|
710
|
+
const _SMACCAM = "SMACreateCallArgumentsMap";
|
|
711
|
+
const _SMAE = "SipMediaApplicationEndpoint";
|
|
712
|
+
const _SMAEL = "SipMediaApplicationEndpointList";
|
|
713
|
+
const _SMAI = "SipMediaApplicationId";
|
|
714
|
+
const _SMAL = "SipMediaApplicationList";
|
|
715
|
+
const _SMALC = "SipMediaApplicationLoggingConfiguration";
|
|
716
|
+
const _SMAUCAM = "SMAUpdateCallArgumentsMap";
|
|
717
|
+
const _SMAi = "SipMediaApplications";
|
|
718
|
+
const _SN = "StreetNumber";
|
|
719
|
+
const _SNES = "SensitiveNonEmptyString";
|
|
720
|
+
const _SNT = "StreamingNotificationTargets";
|
|
721
|
+
const _SNTL = "StreamingNotificationTargetList";
|
|
722
|
+
const _SNTt = "StreamingNotificationTarget";
|
|
723
|
+
const _SPNT = "SupportedPhoneNumberTypes";
|
|
724
|
+
const _SR = "SipRule";
|
|
725
|
+
const _SRI = "SipRuleId";
|
|
726
|
+
const _SRL = "SipRuleList";
|
|
727
|
+
const _SRTA = "SipRuleTargetApplication";
|
|
728
|
+
const _SRTAL = "SipRuleTargetApplicationList";
|
|
729
|
+
const _SRi = "SipRules";
|
|
730
|
+
const _SS = "SensitiveString";
|
|
731
|
+
const _SSD = "SpeakerSearchDetails";
|
|
732
|
+
const _SSEC = "ServerSideEncryptionConfiguration";
|
|
733
|
+
const _SSL = "SensitiveStringList";
|
|
734
|
+
const _SSR = "SpeakerSearchResult";
|
|
735
|
+
const _SSRL = "SpeakerSearchResultList";
|
|
736
|
+
const _SSST = "StartSpeakerSearchTask";
|
|
737
|
+
const _SSSTR = "StartSpeakerSearchTaskRequest";
|
|
738
|
+
const _SSSTRt = "StartSpeakerSearchTaskResponse";
|
|
739
|
+
const _SSSTRto = "StopSpeakerSearchTaskRequest";
|
|
740
|
+
const _SSSTt = "StopSpeakerSearchTask";
|
|
741
|
+
const _SST = "SpeakerSearchTask";
|
|
742
|
+
const _SSTI = "SpeakerSearchTaskId";
|
|
743
|
+
const _SSTS = "SpeakerSearchTaskStatus";
|
|
744
|
+
const _ST = "StartedTimestamp";
|
|
745
|
+
const _SUE = "ServiceUnavailableException";
|
|
746
|
+
const _SVTAT = "StartVoiceToneAnalysisTask";
|
|
747
|
+
const _SVTATR = "StartVoiceToneAnalysisTaskRequest";
|
|
748
|
+
const _SVTATRt = "StartVoiceToneAnalysisTaskResponse";
|
|
749
|
+
const _SVTATRto = "StopVoiceToneAnalysisTaskRequest";
|
|
750
|
+
const _SVTATt = "StopVoiceToneAnalysisTask";
|
|
751
|
+
const _So = "Source";
|
|
752
|
+
const _St = "State";
|
|
753
|
+
const _T = "Tags";
|
|
754
|
+
const _TA = "TargetApplications";
|
|
755
|
+
const _TCE = "ThrottledClientException";
|
|
756
|
+
const _TFP = "TollFreePrefix";
|
|
757
|
+
const _TH = "TerminationHealth";
|
|
758
|
+
const _TI = "TransactionId";
|
|
759
|
+
const _TK = "TagKey";
|
|
760
|
+
const _TKL = "TagKeyList";
|
|
761
|
+
const _TKa = "TagKeys";
|
|
762
|
+
const _TL = "TagList";
|
|
763
|
+
const _TPN = "ToPhoneNumber";
|
|
764
|
+
const _TPNe = "TestPhoneNumber";
|
|
765
|
+
const _TR = "TagResource";
|
|
766
|
+
const _TRR = "TagResourceRequest";
|
|
767
|
+
const _TT = "TriggerType";
|
|
768
|
+
const _TV = "TagValue";
|
|
769
|
+
const _TVr = "TriggerValue";
|
|
770
|
+
const _Ta = "Tag";
|
|
771
|
+
const _Te = "Termination";
|
|
772
|
+
const _Ti = "Timestamp";
|
|
773
|
+
const _Ty = "Type";
|
|
774
|
+
const _U = "Username";
|
|
775
|
+
const _UCE = "UnauthorizedClientException";
|
|
776
|
+
const _UEE = "UnprocessableEntityException";
|
|
777
|
+
const _UGS = "UpdateGlobalSettings";
|
|
778
|
+
const _UGSR = "UpdateGlobalSettingsRequest";
|
|
779
|
+
const _UPN = "UpdatePhoneNumber";
|
|
780
|
+
const _UPNR = "UpdatePhoneNumberRequest";
|
|
781
|
+
const _UPNRI = "UpdatePhoneNumberRequestItems";
|
|
782
|
+
const _UPNRIL = "UpdatePhoneNumberRequestItemList";
|
|
783
|
+
const _UPNRIp = "UpdatePhoneNumberRequestItem";
|
|
784
|
+
const _UPNRp = "UpdatePhoneNumberResponse";
|
|
785
|
+
const _UPNS = "UpdatePhoneNumberSettings";
|
|
786
|
+
const _UPNSR = "UpdatePhoneNumberSettingsRequest";
|
|
787
|
+
const _UPS = "UpdateProxySession";
|
|
788
|
+
const _UPSR = "UpdateProxySessionRequest";
|
|
789
|
+
const _UPSRp = "UpdateProxySessionResponse";
|
|
790
|
+
const _UR = "UntagResource";
|
|
791
|
+
const _URR = "UntagResourceRequest";
|
|
792
|
+
const _USMA = "UpdateSipMediaApplication";
|
|
793
|
+
const _USMAC = "UpdateSipMediaApplicationCall";
|
|
794
|
+
const _USMACR = "UpdateSipMediaApplicationCallRequest";
|
|
795
|
+
const _USMACRp = "UpdateSipMediaApplicationCallResponse";
|
|
796
|
+
const _USMAR = "UpdateSipMediaApplicationRequest";
|
|
797
|
+
const _USMARp = "UpdateSipMediaApplicationResponse";
|
|
798
|
+
const _USR = "UpdateSipRule";
|
|
799
|
+
const _USRR = "UpdateSipRuleRequest";
|
|
800
|
+
const _USRRp = "UpdateSipRuleResponse";
|
|
801
|
+
const _UT = "UpdatedTimestamp";
|
|
802
|
+
const _UVC = "UpdateVoiceConnector";
|
|
803
|
+
const _UVCG = "UpdateVoiceConnectorGroup";
|
|
804
|
+
const _UVCGR = "UpdateVoiceConnectorGroupRequest";
|
|
805
|
+
const _UVCGRp = "UpdateVoiceConnectorGroupResponse";
|
|
806
|
+
const _UVCR = "UpdateVoiceConnectorRequest";
|
|
807
|
+
const _UVCRp = "UpdateVoiceConnectorResponse";
|
|
808
|
+
const _UVP = "UpdateVoiceProfile";
|
|
809
|
+
const _UVPD = "UpdateVoiceProfileDomain";
|
|
810
|
+
const _UVPDR = "UpdateVoiceProfileDomainRequest";
|
|
811
|
+
const _UVPDRp = "UpdateVoiceProfileDomainResponse";
|
|
812
|
+
const _UVPR = "UpdateVoiceProfileRequest";
|
|
813
|
+
const _UVPRp = "UpdateVoiceProfileResponse";
|
|
814
|
+
const _Us = "Usernames";
|
|
815
|
+
const _V = "Value";
|
|
816
|
+
const _VC = "VoiceConnector";
|
|
817
|
+
const _VCA = "VoiceConnectorArn";
|
|
818
|
+
const _VCG = "VoiceConnectorGroup";
|
|
819
|
+
const _VCGA = "VoiceConnectorGroupArn";
|
|
820
|
+
const _VCGI = "VoiceConnectorGroupId";
|
|
821
|
+
const _VCGL = "VoiceConnectorGroupList";
|
|
822
|
+
const _VCGo = "VoiceConnectorGroups";
|
|
823
|
+
const _VCI = "VoiceConnectorId";
|
|
824
|
+
const _VCIL = "VoiceConnectorItemList";
|
|
825
|
+
const _VCIo = "VoiceConnectorItems";
|
|
826
|
+
const _VCIoi = "VoiceConnectorItem";
|
|
827
|
+
const _VCL = "VoiceConnectorList";
|
|
828
|
+
const _VCR = "VoiceConnectorRegions";
|
|
829
|
+
const _VCS = "VoiceConnectorSettings";
|
|
830
|
+
const _VCo = "VoiceConnectors";
|
|
831
|
+
const _VEA = "ValidateE911Address";
|
|
832
|
+
const _VEAR = "ValidateE911AddressRequest";
|
|
833
|
+
const _VEARa = "ValidateE911AddressResponse";
|
|
834
|
+
const _VGS = "VoiceprintGenerationStatus";
|
|
835
|
+
const _VP = "VoiceProfile";
|
|
836
|
+
const _VPA = "VoiceProfileArn";
|
|
837
|
+
const _VPD = "VoiceProfileDomain";
|
|
838
|
+
const _VPDA = "VoiceProfileDomainArn";
|
|
839
|
+
const _VPDI = "VoiceProfileDomainId";
|
|
840
|
+
const _VPDS = "VoiceProfileDomainSummary";
|
|
841
|
+
const _VPDSL = "VoiceProfileDomainSummaryList";
|
|
842
|
+
const _VPDo = "VoiceProfileDomains";
|
|
843
|
+
const _VPI = "VoiceProfileId";
|
|
844
|
+
const _VPS = "VoiceProfileSummary";
|
|
845
|
+
const _VPSL = "VoiceProfileSummaryList";
|
|
846
|
+
const _VPo = "VoiceProfiles";
|
|
847
|
+
const _VR = "ValidationResult";
|
|
848
|
+
const _VTAT = "VoiceToneAnalysisTask";
|
|
849
|
+
const _VTATI = "VoiceToneAnalysisTaskId";
|
|
850
|
+
const _VTATS = "VoiceToneAnalysisTaskStatus";
|
|
851
|
+
const _W = "Weight";
|
|
852
|
+
const _a = "arn";
|
|
853
|
+
const _ac = "area-code";
|
|
854
|
+
const _c = "client";
|
|
855
|
+
const _ci = "city";
|
|
856
|
+
const _co = "country";
|
|
857
|
+
const _e = "error";
|
|
858
|
+
const _fn = "filter-name";
|
|
859
|
+
const _fv = "filter-value";
|
|
860
|
+
const _h = "http";
|
|
861
|
+
const _hE = "httpError";
|
|
862
|
+
const _hQ = "httpQuery";
|
|
863
|
+
const _iC = "isCaller";
|
|
864
|
+
const _mr = "max-results";
|
|
865
|
+
const _nt = "next-token";
|
|
866
|
+
const _pC = "postalCode";
|
|
867
|
+
const _pCP = "postalCodePlus4";
|
|
868
|
+
const _pD = "postDirectional";
|
|
869
|
+
const _pDr = "preDirectional";
|
|
870
|
+
const _pnt = "phone-number-type";
|
|
871
|
+
const _pt = "product-type";
|
|
872
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkvoice";
|
|
873
|
+
const _sI = "streetInfo";
|
|
874
|
+
const _sN = "streetName";
|
|
875
|
+
const _sNt = "streetNumber";
|
|
876
|
+
const _sS = "streetSuffix";
|
|
877
|
+
const _se = "server";
|
|
878
|
+
const _sma = "sip-media-application";
|
|
879
|
+
const _st = "state";
|
|
880
|
+
const _sta = "status";
|
|
881
|
+
const _tfp = "toll-free-prefix";
|
|
882
|
+
const _vpdi = "voice-profile-domain-id";
|
|
883
|
+
const _xN = "xmlName";
|
|
884
|
+
const n0 = "com.amazonaws.chimesdkvoice";
|
|
885
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
886
|
+
var ChimeSDKVoiceServiceException$ = [-3, _s, "ChimeSDKVoiceServiceException", 0, [], []];
|
|
887
|
+
_s_registry.registerError(ChimeSDKVoiceServiceException$, ChimeSDKVoiceServiceException);
|
|
888
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
889
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
890
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
891
|
+
[_C, _M],
|
|
892
|
+
[0, 0]
|
|
893
|
+
];
|
|
894
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
895
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
896
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
897
|
+
[_C, _M],
|
|
898
|
+
[0, 0]
|
|
899
|
+
];
|
|
900
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
901
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
902
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
903
|
+
[_C, _M],
|
|
904
|
+
[0, 0]
|
|
905
|
+
];
|
|
906
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
907
|
+
var ForbiddenException$ = [-3, n0, _FE,
|
|
908
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
909
|
+
[_C, _M],
|
|
910
|
+
[0, 0]
|
|
911
|
+
];
|
|
912
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
913
|
+
var GoneException$ = [-3, n0, _GE,
|
|
914
|
+
{ [_e]: _c, [_hE]: 410 },
|
|
915
|
+
[_C, _M],
|
|
916
|
+
[0, 0]
|
|
917
|
+
];
|
|
918
|
+
n0_registry.registerError(GoneException$, GoneException);
|
|
919
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
920
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
921
|
+
[_C, _M],
|
|
922
|
+
[0, 0]
|
|
923
|
+
];
|
|
924
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
925
|
+
var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
926
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
927
|
+
[_C, _M],
|
|
928
|
+
[0, 0]
|
|
929
|
+
];
|
|
930
|
+
n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
931
|
+
var ServiceFailureException$ = [-3, n0, _SFE,
|
|
932
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
933
|
+
[_C, _M],
|
|
934
|
+
[0, 0]
|
|
935
|
+
];
|
|
936
|
+
n0_registry.registerError(ServiceFailureException$, ServiceFailureException);
|
|
937
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
938
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
939
|
+
[_C, _M],
|
|
940
|
+
[0, 0]
|
|
941
|
+
];
|
|
942
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
943
|
+
var ThrottledClientException$ = [-3, n0, _TCE,
|
|
944
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
945
|
+
[_C, _M],
|
|
946
|
+
[0, 0]
|
|
947
|
+
];
|
|
948
|
+
n0_registry.registerError(ThrottledClientException$, ThrottledClientException);
|
|
949
|
+
var UnauthorizedClientException$ = [-3, n0, _UCE,
|
|
950
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
951
|
+
[_C, _M],
|
|
952
|
+
[0, 0]
|
|
953
|
+
];
|
|
954
|
+
n0_registry.registerError(UnauthorizedClientException$, UnauthorizedClientException);
|
|
955
|
+
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
956
|
+
{ [_e]: _c, [_hE]: 422 },
|
|
957
|
+
[_C, _M],
|
|
958
|
+
[0, 0]
|
|
959
|
+
];
|
|
960
|
+
n0_registry.registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
961
|
+
const errorTypeRegistries = [
|
|
962
|
+
_s_registry,
|
|
963
|
+
n0_registry,
|
|
964
|
+
];
|
|
965
|
+
var AlexaSkillId = [0, n0, _ASI, 8, 0];
|
|
966
|
+
var Arn = [0, n0, _A, 8, 0];
|
|
967
|
+
var CallingName = [0, n0, _CN, 8, 0];
|
|
968
|
+
var E164PhoneNumber = [0, n0, _EPN, 8, 0];
|
|
969
|
+
var FunctionArn = [0, n0, _FA, 8, 0];
|
|
970
|
+
var PhoneNumberName = [0, n0, _PNN, 8, 0];
|
|
971
|
+
var ProxySessionNameString = [0, n0, _PSNS, 8, 0];
|
|
972
|
+
var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
|
|
973
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
974
|
+
var TagKey = [0, n0, _TK, 8, 0];
|
|
975
|
+
var TagValue = [0, n0, _TV, 8, 0];
|
|
976
|
+
var Address$ = [3, n0, _Ad,
|
|
977
|
+
0,
|
|
978
|
+
[_sN, _sS, _pD, _pDr, _sNt, _ci, _st, _pC, _pCP, _co],
|
|
979
|
+
[[() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]]
|
|
980
|
+
];
|
|
981
|
+
var AssociatePhoneNumbersWithVoiceConnectorGroupRequest$ = [3, n0, _APNWVCGR,
|
|
982
|
+
0,
|
|
983
|
+
[_VCGI, _EPNh, _FAo],
|
|
984
|
+
[[0, 1], [() => E164PhoneNumberList, 0], 2], 2
|
|
985
|
+
];
|
|
986
|
+
var AssociatePhoneNumbersWithVoiceConnectorGroupResponse$ = [3, n0, _APNWVCGRs,
|
|
987
|
+
0,
|
|
988
|
+
[_PNE],
|
|
989
|
+
[[() => PhoneNumberErrorList, 0]]
|
|
990
|
+
];
|
|
991
|
+
var AssociatePhoneNumbersWithVoiceConnectorRequest$ = [3, n0, _APNWVCR,
|
|
992
|
+
0,
|
|
993
|
+
[_VCI, _EPNh, _FAo],
|
|
994
|
+
[[0, 1], [() => E164PhoneNumberList, 0], 2], 2
|
|
995
|
+
];
|
|
996
|
+
var AssociatePhoneNumbersWithVoiceConnectorResponse$ = [3, n0, _APNWVCRs,
|
|
997
|
+
0,
|
|
998
|
+
[_PNE],
|
|
999
|
+
[[() => PhoneNumberErrorList, 0]]
|
|
1000
|
+
];
|
|
1001
|
+
var BatchDeletePhoneNumberRequest$ = [3, n0, _BDPNR,
|
|
1002
|
+
0,
|
|
1003
|
+
[_PNI],
|
|
1004
|
+
[64 | 0], 1
|
|
1005
|
+
];
|
|
1006
|
+
var BatchDeletePhoneNumberResponse$ = [3, n0, _BDPNRa,
|
|
1007
|
+
0,
|
|
1008
|
+
[_PNE],
|
|
1009
|
+
[[() => PhoneNumberErrorList, 0]]
|
|
1010
|
+
];
|
|
1011
|
+
var BatchUpdatePhoneNumberRequest$ = [3, n0, _BUPNR,
|
|
1012
|
+
0,
|
|
1013
|
+
[_UPNRI],
|
|
1014
|
+
[[() => UpdatePhoneNumberRequestItemList, 0]], 1
|
|
1015
|
+
];
|
|
1016
|
+
var BatchUpdatePhoneNumberResponse$ = [3, n0, _BUPNRa,
|
|
1017
|
+
0,
|
|
1018
|
+
[_PNE],
|
|
1019
|
+
[[() => PhoneNumberErrorList, 0]]
|
|
1020
|
+
];
|
|
1021
|
+
var CallDetails$ = [3, n0, _CD,
|
|
1022
|
+
0,
|
|
1023
|
+
[_VCI, _TI, _IC],
|
|
1024
|
+
[0, 0, 2]
|
|
1025
|
+
];
|
|
1026
|
+
var CandidateAddress$ = [3, n0, _CA,
|
|
1027
|
+
0,
|
|
1028
|
+
[_sI, _sNt, _ci, _st, _pC, _pCP, _co],
|
|
1029
|
+
[[() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]]
|
|
1030
|
+
];
|
|
1031
|
+
var CreatePhoneNumberOrderRequest$ = [3, n0, _CPNOR,
|
|
1032
|
+
0,
|
|
1033
|
+
[_PT, _EPNh, _N],
|
|
1034
|
+
[0, [() => E164PhoneNumberList, 0], [() => PhoneNumberName, 0]], 2
|
|
1035
|
+
];
|
|
1036
|
+
var CreatePhoneNumberOrderResponse$ = [3, n0, _CPNORr,
|
|
1037
|
+
0,
|
|
1038
|
+
[_PNO],
|
|
1039
|
+
[[() => PhoneNumberOrder$, 0]]
|
|
1040
|
+
];
|
|
1041
|
+
var CreateProxySessionRequest$ = [3, n0, _CPSR,
|
|
1042
|
+
0,
|
|
1043
|
+
[_VCI, _PPN, _Ca, _N, _EM, _NSB, _GML, _GMP],
|
|
1044
|
+
[[0, 1], [() => ParticipantPhoneNumberList, 0], 64 | 0, [() => ProxySessionNameString, 0], 1, 0, 0, () => GeoMatchParams$], 3
|
|
1045
|
+
];
|
|
1046
|
+
var CreateProxySessionResponse$ = [3, n0, _CPSRr,
|
|
1047
|
+
0,
|
|
1048
|
+
[_PS],
|
|
1049
|
+
[[() => ProxySession$, 0]]
|
|
1050
|
+
];
|
|
1051
|
+
var CreateSipMediaApplicationCallRequest$ = [3, n0, _CSMACR,
|
|
1052
|
+
0,
|
|
1053
|
+
[_FPN, _TPN, _SMAI, _SH, _AM],
|
|
1054
|
+
[[() => E164PhoneNumber, 0], [() => E164PhoneNumber, 0], [0, 1], [() => SipHeadersMap, 0], [() => SMACreateCallArgumentsMap, 0]], 3
|
|
1055
|
+
];
|
|
1056
|
+
var CreateSipMediaApplicationCallResponse$ = [3, n0, _CSMACRr,
|
|
1057
|
+
0,
|
|
1058
|
+
[_SMAC],
|
|
1059
|
+
[() => SipMediaApplicationCall$]
|
|
1060
|
+
];
|
|
1061
|
+
var CreateSipMediaApplicationRequest$ = [3, n0, _CSMAR,
|
|
1062
|
+
0,
|
|
1063
|
+
[_AR, _N, _E, _T],
|
|
1064
|
+
[0, 0, [() => SipMediaApplicationEndpointList, 0], [() => TagList, 0]], 3
|
|
1065
|
+
];
|
|
1066
|
+
var CreateSipMediaApplicationResponse$ = [3, n0, _CSMARr,
|
|
1067
|
+
0,
|
|
1068
|
+
[_SMA],
|
|
1069
|
+
[[() => SipMediaApplication$, 0]]
|
|
1070
|
+
];
|
|
1071
|
+
var CreateSipRuleRequest$ = [3, n0, _CSRR,
|
|
1072
|
+
0,
|
|
1073
|
+
[_N, _TT, _TVr, _D, _TA],
|
|
1074
|
+
[0, 0, 0, 2, () => SipRuleTargetApplicationList], 3
|
|
1075
|
+
];
|
|
1076
|
+
var CreateSipRuleResponse$ = [3, n0, _CSRRr,
|
|
1077
|
+
0,
|
|
1078
|
+
[_SR],
|
|
1079
|
+
[() => SipRule$]
|
|
1080
|
+
];
|
|
1081
|
+
var CreateVoiceConnectorGroupRequest$ = [3, n0, _CVCGR,
|
|
1082
|
+
0,
|
|
1083
|
+
[_N, _VCIo],
|
|
1084
|
+
[0, () => VoiceConnectorItemList], 1
|
|
1085
|
+
];
|
|
1086
|
+
var CreateVoiceConnectorGroupResponse$ = [3, n0, _CVCGRr,
|
|
1087
|
+
0,
|
|
1088
|
+
[_VCG],
|
|
1089
|
+
[() => VoiceConnectorGroup$]
|
|
1090
|
+
];
|
|
1091
|
+
var CreateVoiceConnectorRequest$ = [3, n0, _CVCR,
|
|
1092
|
+
0,
|
|
1093
|
+
[_N, _RE, _AR, _T, _IT, _NT],
|
|
1094
|
+
[0, 2, 0, [() => TagList, 0], 0, 0], 2
|
|
1095
|
+
];
|
|
1096
|
+
var CreateVoiceConnectorResponse$ = [3, n0, _CVCRr,
|
|
1097
|
+
0,
|
|
1098
|
+
[_VC],
|
|
1099
|
+
[() => VoiceConnector$]
|
|
1100
|
+
];
|
|
1101
|
+
var CreateVoiceProfileDomainRequest$ = [3, n0, _CVPDR,
|
|
1102
|
+
0,
|
|
1103
|
+
[_N, _SSEC, _De, _CRT, _T],
|
|
1104
|
+
[0, [() => ServerSideEncryptionConfiguration$, 0], 0, 0, [() => TagList, 0]], 2
|
|
1105
|
+
];
|
|
1106
|
+
var CreateVoiceProfileDomainResponse$ = [3, n0, _CVPDRr,
|
|
1107
|
+
0,
|
|
1108
|
+
[_VPD],
|
|
1109
|
+
[[() => VoiceProfileDomain$, 0]]
|
|
1110
|
+
];
|
|
1111
|
+
var CreateVoiceProfileRequest$ = [3, n0, _CVPR,
|
|
1112
|
+
0,
|
|
1113
|
+
[_SSTI],
|
|
1114
|
+
[0], 1
|
|
1115
|
+
];
|
|
1116
|
+
var CreateVoiceProfileResponse$ = [3, n0, _CVPRr,
|
|
1117
|
+
0,
|
|
1118
|
+
[_VP],
|
|
1119
|
+
[[() => VoiceProfile$, 0]]
|
|
1120
|
+
];
|
|
1121
|
+
var Credential$ = [3, n0, _Cr,
|
|
1122
|
+
0,
|
|
1123
|
+
[_U, _P],
|
|
1124
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
1125
|
+
];
|
|
1126
|
+
var DeletePhoneNumberRequest$ = [3, n0, _DPNR,
|
|
1127
|
+
0,
|
|
1128
|
+
[_PNIh],
|
|
1129
|
+
[[() => SensitiveNonEmptyString, 1]], 1
|
|
1130
|
+
];
|
|
1131
|
+
var DeleteProxySessionRequest$ = [3, n0, _DPSR,
|
|
1132
|
+
0,
|
|
1133
|
+
[_VCI, _PSI],
|
|
1134
|
+
[[0, 1], [0, 1]], 2
|
|
1135
|
+
];
|
|
1136
|
+
var DeleteSipMediaApplicationRequest$ = [3, n0, _DSMAR,
|
|
1137
|
+
0,
|
|
1138
|
+
[_SMAI],
|
|
1139
|
+
[[0, 1]], 1
|
|
1140
|
+
];
|
|
1141
|
+
var DeleteSipRuleRequest$ = [3, n0, _DSRR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_SRI],
|
|
1144
|
+
[[0, 1]], 1
|
|
1145
|
+
];
|
|
1146
|
+
var DeleteVoiceConnectorEmergencyCallingConfigurationRequest$ = [3, n0, _DVCECCR,
|
|
1147
|
+
0,
|
|
1148
|
+
[_VCI],
|
|
1149
|
+
[[0, 1]], 1
|
|
1150
|
+
];
|
|
1151
|
+
var DeleteVoiceConnectorExternalSystemsConfigurationRequest$ = [3, n0, _DVCESCR,
|
|
1152
|
+
0,
|
|
1153
|
+
[_VCI],
|
|
1154
|
+
[[0, 1]], 1
|
|
1155
|
+
];
|
|
1156
|
+
var DeleteVoiceConnectorGroupRequest$ = [3, n0, _DVCGR,
|
|
1157
|
+
0,
|
|
1158
|
+
[_VCGI],
|
|
1159
|
+
[[0, 1]], 1
|
|
1160
|
+
];
|
|
1161
|
+
var DeleteVoiceConnectorOriginationRequest$ = [3, n0, _DVCOR,
|
|
1162
|
+
0,
|
|
1163
|
+
[_VCI],
|
|
1164
|
+
[[0, 1]], 1
|
|
1165
|
+
];
|
|
1166
|
+
var DeleteVoiceConnectorProxyRequest$ = [3, n0, _DVCPR,
|
|
1167
|
+
0,
|
|
1168
|
+
[_VCI],
|
|
1169
|
+
[[0, 1]], 1
|
|
1170
|
+
];
|
|
1171
|
+
var DeleteVoiceConnectorRequest$ = [3, n0, _DVCR,
|
|
1172
|
+
0,
|
|
1173
|
+
[_VCI],
|
|
1174
|
+
[[0, 1]], 1
|
|
1175
|
+
];
|
|
1176
|
+
var DeleteVoiceConnectorStreamingConfigurationRequest$ = [3, n0, _DVCSCR,
|
|
1177
|
+
0,
|
|
1178
|
+
[_VCI],
|
|
1179
|
+
[[0, 1]], 1
|
|
1180
|
+
];
|
|
1181
|
+
var DeleteVoiceConnectorTerminationCredentialsRequest$ = [3, n0, _DVCTCR,
|
|
1182
|
+
0,
|
|
1183
|
+
[_VCI, _Us],
|
|
1184
|
+
[[0, 1], [() => SensitiveStringList, 0]], 2
|
|
1185
|
+
];
|
|
1186
|
+
var DeleteVoiceConnectorTerminationRequest$ = [3, n0, _DVCTR,
|
|
1187
|
+
0,
|
|
1188
|
+
[_VCI],
|
|
1189
|
+
[[0, 1]], 1
|
|
1190
|
+
];
|
|
1191
|
+
var DeleteVoiceProfileDomainRequest$ = [3, n0, _DVPDR,
|
|
1192
|
+
0,
|
|
1193
|
+
[_VPDI],
|
|
1194
|
+
[[0, 1]], 1
|
|
1195
|
+
];
|
|
1196
|
+
var DeleteVoiceProfileRequest$ = [3, n0, _DVPR,
|
|
1197
|
+
0,
|
|
1198
|
+
[_VPI],
|
|
1199
|
+
[[0, 1]], 1
|
|
1200
|
+
];
|
|
1201
|
+
var DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$ = [3, n0, _DPNFVCGR,
|
|
1202
|
+
0,
|
|
1203
|
+
[_VCGI, _EPNh],
|
|
1204
|
+
[[0, 1], [() => E164PhoneNumberList, 0]], 2
|
|
1205
|
+
];
|
|
1206
|
+
var DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$ = [3, n0, _DPNFVCGRi,
|
|
1207
|
+
0,
|
|
1208
|
+
[_PNE],
|
|
1209
|
+
[[() => PhoneNumberErrorList, 0]]
|
|
1210
|
+
];
|
|
1211
|
+
var DisassociatePhoneNumbersFromVoiceConnectorRequest$ = [3, n0, _DPNFVCR,
|
|
1212
|
+
0,
|
|
1213
|
+
[_VCI, _EPNh],
|
|
1214
|
+
[[0, 1], [() => E164PhoneNumberList, 0]], 2
|
|
1215
|
+
];
|
|
1216
|
+
var DisassociatePhoneNumbersFromVoiceConnectorResponse$ = [3, n0, _DPNFVCRi,
|
|
1217
|
+
0,
|
|
1218
|
+
[_PNE],
|
|
1219
|
+
[[() => PhoneNumberErrorList, 0]]
|
|
1220
|
+
];
|
|
1221
|
+
var DNISEmergencyCallingConfiguration$ = [3, n0, _DNISECC,
|
|
1222
|
+
0,
|
|
1223
|
+
[_EPNm, _CC, _TPNe],
|
|
1224
|
+
[[() => E164PhoneNumber, 0], 0, [() => E164PhoneNumber, 0]], 2
|
|
1225
|
+
];
|
|
1226
|
+
var EmergencyCallingConfiguration$ = [3, n0, _ECC,
|
|
1227
|
+
0,
|
|
1228
|
+
[_DNIS],
|
|
1229
|
+
[[() => DNISEmergencyCallingConfigurationList, 0]]
|
|
1230
|
+
];
|
|
1231
|
+
var ExternalSystemsConfiguration$ = [3, n0, _ESC,
|
|
1232
|
+
0,
|
|
1233
|
+
[_SBCT, _CCST],
|
|
1234
|
+
[64 | 0, 64 | 0]
|
|
1235
|
+
];
|
|
1236
|
+
var GeoMatchParams$ = [3, n0, _GMP,
|
|
1237
|
+
0,
|
|
1238
|
+
[_Co, _AC],
|
|
1239
|
+
[0, 0], 2
|
|
1240
|
+
];
|
|
1241
|
+
var GetGlobalSettingsResponse$ = [3, n0, _GGSR,
|
|
1242
|
+
0,
|
|
1243
|
+
[_VC],
|
|
1244
|
+
[() => VoiceConnectorSettings$]
|
|
1245
|
+
];
|
|
1246
|
+
var GetPhoneNumberOrderRequest$ = [3, n0, _GPNOR,
|
|
1247
|
+
0,
|
|
1248
|
+
[_PNOI],
|
|
1249
|
+
[[0, 1]], 1
|
|
1250
|
+
];
|
|
1251
|
+
var GetPhoneNumberOrderResponse$ = [3, n0, _GPNORe,
|
|
1252
|
+
0,
|
|
1253
|
+
[_PNO],
|
|
1254
|
+
[[() => PhoneNumberOrder$, 0]]
|
|
1255
|
+
];
|
|
1256
|
+
var GetPhoneNumberRequest$ = [3, n0, _GPNR,
|
|
1257
|
+
0,
|
|
1258
|
+
[_PNIh],
|
|
1259
|
+
[[() => SensitiveNonEmptyString, 1]], 1
|
|
1260
|
+
];
|
|
1261
|
+
var GetPhoneNumberResponse$ = [3, n0, _GPNRe,
|
|
1262
|
+
0,
|
|
1263
|
+
[_PN],
|
|
1264
|
+
[[() => PhoneNumber$, 0]]
|
|
1265
|
+
];
|
|
1266
|
+
var GetPhoneNumberSettingsResponse$ = [3, n0, _GPNSR,
|
|
1267
|
+
0,
|
|
1268
|
+
[_CN, _CNUT],
|
|
1269
|
+
[[() => CallingName, 0], 5]
|
|
1270
|
+
];
|
|
1271
|
+
var GetProxySessionRequest$ = [3, n0, _GPSR,
|
|
1272
|
+
0,
|
|
1273
|
+
[_VCI, _PSI],
|
|
1274
|
+
[[0, 1], [0, 1]], 2
|
|
1275
|
+
];
|
|
1276
|
+
var GetProxySessionResponse$ = [3, n0, _GPSRe,
|
|
1277
|
+
0,
|
|
1278
|
+
[_PS],
|
|
1279
|
+
[[() => ProxySession$, 0]]
|
|
1280
|
+
];
|
|
1281
|
+
var GetSipMediaApplicationAlexaSkillConfigurationRequest$ = [3, n0, _GSMAASCR,
|
|
1282
|
+
0,
|
|
1283
|
+
[_SMAI],
|
|
1284
|
+
[[0, 1]], 1
|
|
1285
|
+
];
|
|
1286
|
+
var GetSipMediaApplicationAlexaSkillConfigurationResponse$ = [3, n0, _GSMAASCRe,
|
|
1287
|
+
0,
|
|
1288
|
+
[_SMAASC],
|
|
1289
|
+
[[() => SipMediaApplicationAlexaSkillConfiguration$, 0]]
|
|
1290
|
+
];
|
|
1291
|
+
var GetSipMediaApplicationLoggingConfigurationRequest$ = [3, n0, _GSMALCR,
|
|
1292
|
+
0,
|
|
1293
|
+
[_SMAI],
|
|
1294
|
+
[[0, 1]], 1
|
|
1295
|
+
];
|
|
1296
|
+
var GetSipMediaApplicationLoggingConfigurationResponse$ = [3, n0, _GSMALCRe,
|
|
1297
|
+
0,
|
|
1298
|
+
[_SMALC],
|
|
1299
|
+
[() => SipMediaApplicationLoggingConfiguration$]
|
|
1300
|
+
];
|
|
1301
|
+
var GetSipMediaApplicationRequest$ = [3, n0, _GSMAR,
|
|
1302
|
+
0,
|
|
1303
|
+
[_SMAI],
|
|
1304
|
+
[[0, 1]], 1
|
|
1305
|
+
];
|
|
1306
|
+
var GetSipMediaApplicationResponse$ = [3, n0, _GSMARe,
|
|
1307
|
+
0,
|
|
1308
|
+
[_SMA],
|
|
1309
|
+
[[() => SipMediaApplication$, 0]]
|
|
1310
|
+
];
|
|
1311
|
+
var GetSipRuleRequest$ = [3, n0, _GSRR,
|
|
1312
|
+
0,
|
|
1313
|
+
[_SRI],
|
|
1314
|
+
[[0, 1]], 1
|
|
1315
|
+
];
|
|
1316
|
+
var GetSipRuleResponse$ = [3, n0, _GSRRe,
|
|
1317
|
+
0,
|
|
1318
|
+
[_SR],
|
|
1319
|
+
[() => SipRule$]
|
|
1320
|
+
];
|
|
1321
|
+
var GetSpeakerSearchTaskRequest$ = [3, n0, _GSSTR,
|
|
1322
|
+
0,
|
|
1323
|
+
[_VCI, _SSTI],
|
|
1324
|
+
[[0, 1], [0, 1]], 2
|
|
1325
|
+
];
|
|
1326
|
+
var GetSpeakerSearchTaskResponse$ = [3, n0, _GSSTRe,
|
|
1327
|
+
0,
|
|
1328
|
+
[_SST],
|
|
1329
|
+
[() => SpeakerSearchTask$]
|
|
1330
|
+
];
|
|
1331
|
+
var GetVoiceConnectorEmergencyCallingConfigurationRequest$ = [3, n0, _GVCECCR,
|
|
1332
|
+
0,
|
|
1333
|
+
[_VCI],
|
|
1334
|
+
[[0, 1]], 1
|
|
1335
|
+
];
|
|
1336
|
+
var GetVoiceConnectorEmergencyCallingConfigurationResponse$ = [3, n0, _GVCECCRe,
|
|
1337
|
+
0,
|
|
1338
|
+
[_ECC],
|
|
1339
|
+
[[() => EmergencyCallingConfiguration$, 0]]
|
|
1340
|
+
];
|
|
1341
|
+
var GetVoiceConnectorExternalSystemsConfigurationRequest$ = [3, n0, _GVCESCR,
|
|
1342
|
+
0,
|
|
1343
|
+
[_VCI],
|
|
1344
|
+
[[0, 1]], 1
|
|
1345
|
+
];
|
|
1346
|
+
var GetVoiceConnectorExternalSystemsConfigurationResponse$ = [3, n0, _GVCESCRe,
|
|
1347
|
+
0,
|
|
1348
|
+
[_ESC],
|
|
1349
|
+
[() => ExternalSystemsConfiguration$]
|
|
1350
|
+
];
|
|
1351
|
+
var GetVoiceConnectorGroupRequest$ = [3, n0, _GVCGR,
|
|
1352
|
+
0,
|
|
1353
|
+
[_VCGI],
|
|
1354
|
+
[[0, 1]], 1
|
|
1355
|
+
];
|
|
1356
|
+
var GetVoiceConnectorGroupResponse$ = [3, n0, _GVCGRe,
|
|
1357
|
+
0,
|
|
1358
|
+
[_VCG],
|
|
1359
|
+
[() => VoiceConnectorGroup$]
|
|
1360
|
+
];
|
|
1361
|
+
var GetVoiceConnectorLoggingConfigurationRequest$ = [3, n0, _GVCLCR,
|
|
1362
|
+
0,
|
|
1363
|
+
[_VCI],
|
|
1364
|
+
[[0, 1]], 1
|
|
1365
|
+
];
|
|
1366
|
+
var GetVoiceConnectorLoggingConfigurationResponse$ = [3, n0, _GVCLCRe,
|
|
1367
|
+
0,
|
|
1368
|
+
[_LC],
|
|
1369
|
+
[() => LoggingConfiguration$]
|
|
1370
|
+
];
|
|
1371
|
+
var GetVoiceConnectorOriginationRequest$ = [3, n0, _GVCOR,
|
|
1372
|
+
0,
|
|
1373
|
+
[_VCI],
|
|
1374
|
+
[[0, 1]], 1
|
|
1375
|
+
];
|
|
1376
|
+
var GetVoiceConnectorOriginationResponse$ = [3, n0, _GVCORe,
|
|
1377
|
+
0,
|
|
1378
|
+
[_O],
|
|
1379
|
+
[() => Origination$]
|
|
1380
|
+
];
|
|
1381
|
+
var GetVoiceConnectorProxyRequest$ = [3, n0, _GVCPR,
|
|
1382
|
+
0,
|
|
1383
|
+
[_VCI],
|
|
1384
|
+
[[0, 1]], 1
|
|
1385
|
+
];
|
|
1386
|
+
var GetVoiceConnectorProxyResponse$ = [3, n0, _GVCPRe,
|
|
1387
|
+
0,
|
|
1388
|
+
[_Pr],
|
|
1389
|
+
[[() => Proxy$, 0]]
|
|
1390
|
+
];
|
|
1391
|
+
var GetVoiceConnectorRequest$ = [3, n0, _GVCR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_VCI],
|
|
1394
|
+
[[0, 1]], 1
|
|
1395
|
+
];
|
|
1396
|
+
var GetVoiceConnectorResponse$ = [3, n0, _GVCRe,
|
|
1397
|
+
0,
|
|
1398
|
+
[_VC],
|
|
1399
|
+
[() => VoiceConnector$]
|
|
1400
|
+
];
|
|
1401
|
+
var GetVoiceConnectorStreamingConfigurationRequest$ = [3, n0, _GVCSCR,
|
|
1402
|
+
0,
|
|
1403
|
+
[_VCI],
|
|
1404
|
+
[[0, 1]], 1
|
|
1405
|
+
];
|
|
1406
|
+
var GetVoiceConnectorStreamingConfigurationResponse$ = [3, n0, _GVCSCRe,
|
|
1407
|
+
0,
|
|
1408
|
+
[_SC],
|
|
1409
|
+
[[() => StreamingConfiguration$, 0]]
|
|
1410
|
+
];
|
|
1411
|
+
var GetVoiceConnectorTerminationHealthRequest$ = [3, n0, _GVCTHR,
|
|
1412
|
+
0,
|
|
1413
|
+
[_VCI],
|
|
1414
|
+
[[0, 1]], 1
|
|
1415
|
+
];
|
|
1416
|
+
var GetVoiceConnectorTerminationHealthResponse$ = [3, n0, _GVCTHRe,
|
|
1417
|
+
0,
|
|
1418
|
+
[_TH],
|
|
1419
|
+
[() => TerminationHealth$]
|
|
1420
|
+
];
|
|
1421
|
+
var GetVoiceConnectorTerminationRequest$ = [3, n0, _GVCTR,
|
|
1422
|
+
0,
|
|
1423
|
+
[_VCI],
|
|
1424
|
+
[[0, 1]], 1
|
|
1425
|
+
];
|
|
1426
|
+
var GetVoiceConnectorTerminationResponse$ = [3, n0, _GVCTRe,
|
|
1427
|
+
0,
|
|
1428
|
+
[_Te],
|
|
1429
|
+
[[() => Termination$, 0]]
|
|
1430
|
+
];
|
|
1431
|
+
var GetVoiceProfileDomainRequest$ = [3, n0, _GVPDR,
|
|
1432
|
+
0,
|
|
1433
|
+
[_VPDI],
|
|
1434
|
+
[[0, 1]], 1
|
|
1435
|
+
];
|
|
1436
|
+
var GetVoiceProfileDomainResponse$ = [3, n0, _GVPDRe,
|
|
1437
|
+
0,
|
|
1438
|
+
[_VPD],
|
|
1439
|
+
[[() => VoiceProfileDomain$, 0]]
|
|
1440
|
+
];
|
|
1441
|
+
var GetVoiceProfileRequest$ = [3, n0, _GVPR,
|
|
1442
|
+
0,
|
|
1443
|
+
[_VPI],
|
|
1444
|
+
[[0, 1]], 1
|
|
1445
|
+
];
|
|
1446
|
+
var GetVoiceProfileResponse$ = [3, n0, _GVPRe,
|
|
1447
|
+
0,
|
|
1448
|
+
[_VP],
|
|
1449
|
+
[[() => VoiceProfile$, 0]]
|
|
1450
|
+
];
|
|
1451
|
+
var GetVoiceToneAnalysisTaskRequest$ = [3, n0, _GVTATR,
|
|
1452
|
+
0,
|
|
1453
|
+
[_VCI, _VTATI, _IC],
|
|
1454
|
+
[[0, 1], [0, 1], [2, { [_hQ]: _iC }]], 3
|
|
1455
|
+
];
|
|
1456
|
+
var GetVoiceToneAnalysisTaskResponse$ = [3, n0, _GVTATRe,
|
|
1457
|
+
0,
|
|
1458
|
+
[_VTAT],
|
|
1459
|
+
[() => VoiceToneAnalysisTask$]
|
|
1460
|
+
];
|
|
1461
|
+
var ListAvailableVoiceConnectorRegionsResponse$ = [3, n0, _LAVCRR,
|
|
1462
|
+
0,
|
|
1463
|
+
[_VCR],
|
|
1464
|
+
[64 | 0]
|
|
1465
|
+
];
|
|
1466
|
+
var ListPhoneNumberOrdersRequest$ = [3, n0, _LPNOR,
|
|
1467
|
+
0,
|
|
1468
|
+
[_NTe, _MR],
|
|
1469
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1470
|
+
];
|
|
1471
|
+
var ListPhoneNumberOrdersResponse$ = [3, n0, _LPNORi,
|
|
1472
|
+
0,
|
|
1473
|
+
[_PNOh, _NTe],
|
|
1474
|
+
[[() => PhoneNumberOrderList, 0], 0]
|
|
1475
|
+
];
|
|
1476
|
+
var ListPhoneNumbersRequest$ = [3, n0, _LPNR,
|
|
1477
|
+
0,
|
|
1478
|
+
[_S, _PT, _FN, _FV, _MR, _NTe],
|
|
1479
|
+
[[0, { [_hQ]: _sta }], [0, { [_hQ]: _pt }], [0, { [_hQ]: _fn }], [0, { [_hQ]: _fv }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1480
|
+
];
|
|
1481
|
+
var ListPhoneNumbersResponse$ = [3, n0, _LPNRi,
|
|
1482
|
+
0,
|
|
1483
|
+
[_PNh, _NTe],
|
|
1484
|
+
[[() => PhoneNumberList, 0], 0]
|
|
1485
|
+
];
|
|
1486
|
+
var ListProxySessionsRequest$ = [3, n0, _LPSR,
|
|
1487
|
+
0,
|
|
1488
|
+
[_VCI, _S, _NTe, _MR],
|
|
1489
|
+
[[0, 1], [0, { [_hQ]: _sta }], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
1490
|
+
];
|
|
1491
|
+
var ListProxySessionsResponse$ = [3, n0, _LPSRi,
|
|
1492
|
+
0,
|
|
1493
|
+
[_PSr, _NTe],
|
|
1494
|
+
[[() => ProxySessions, 0], 0]
|
|
1495
|
+
];
|
|
1496
|
+
var ListSipMediaApplicationsRequest$ = [3, n0, _LSMAR,
|
|
1497
|
+
0,
|
|
1498
|
+
[_MR, _NTe],
|
|
1499
|
+
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1500
|
+
];
|
|
1501
|
+
var ListSipMediaApplicationsResponse$ = [3, n0, _LSMARi,
|
|
1502
|
+
0,
|
|
1503
|
+
[_SMAi, _NTe],
|
|
1504
|
+
[[() => SipMediaApplicationList, 0], 0]
|
|
1505
|
+
];
|
|
1506
|
+
var ListSipRulesRequest$ = [3, n0, _LSRR,
|
|
1507
|
+
0,
|
|
1508
|
+
[_SMAI, _MR, _NTe],
|
|
1509
|
+
[[0, { [_hQ]: _sma }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1510
|
+
];
|
|
1511
|
+
var ListSipRulesResponse$ = [3, n0, _LSRRi,
|
|
1512
|
+
0,
|
|
1513
|
+
[_SRi, _NTe],
|
|
1514
|
+
[() => SipRuleList, 0]
|
|
1515
|
+
];
|
|
1516
|
+
var ListSupportedPhoneNumberCountriesRequest$ = [3, n0, _LSPNCR,
|
|
1517
|
+
0,
|
|
1518
|
+
[_PT],
|
|
1519
|
+
[[0, { [_hQ]: _pt }]], 1
|
|
1520
|
+
];
|
|
1521
|
+
var ListSupportedPhoneNumberCountriesResponse$ = [3, n0, _LSPNCRi,
|
|
1522
|
+
0,
|
|
1523
|
+
[_PNC],
|
|
1524
|
+
[() => PhoneNumberCountriesList]
|
|
1525
|
+
];
|
|
1526
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1527
|
+
0,
|
|
1528
|
+
[_RARN],
|
|
1529
|
+
[[() => Arn, { [_hQ]: _a }]], 1
|
|
1530
|
+
];
|
|
1531
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1532
|
+
0,
|
|
1533
|
+
[_T],
|
|
1534
|
+
[[() => TagList, 0]]
|
|
1535
|
+
];
|
|
1536
|
+
var ListVoiceConnectorGroupsRequest$ = [3, n0, _LVCGR,
|
|
1537
|
+
0,
|
|
1538
|
+
[_NTe, _MR],
|
|
1539
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1540
|
+
];
|
|
1541
|
+
var ListVoiceConnectorGroupsResponse$ = [3, n0, _LVCGRi,
|
|
1542
|
+
0,
|
|
1543
|
+
[_VCGo, _NTe],
|
|
1544
|
+
[() => VoiceConnectorGroupList, 0]
|
|
1545
|
+
];
|
|
1546
|
+
var ListVoiceConnectorsRequest$ = [3, n0, _LVCR,
|
|
1547
|
+
0,
|
|
1548
|
+
[_NTe, _MR],
|
|
1549
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1550
|
+
];
|
|
1551
|
+
var ListVoiceConnectorsResponse$ = [3, n0, _LVCRi,
|
|
1552
|
+
0,
|
|
1553
|
+
[_VCo, _NTe],
|
|
1554
|
+
[() => VoiceConnectorList, 0]
|
|
1555
|
+
];
|
|
1556
|
+
var ListVoiceConnectorTerminationCredentialsRequest$ = [3, n0, _LVCTCR,
|
|
1557
|
+
0,
|
|
1558
|
+
[_VCI],
|
|
1559
|
+
[[0, 1]], 1
|
|
1560
|
+
];
|
|
1561
|
+
var ListVoiceConnectorTerminationCredentialsResponse$ = [3, n0, _LVCTCRi,
|
|
1562
|
+
0,
|
|
1563
|
+
[_Us],
|
|
1564
|
+
[[() => SensitiveStringList, 0]]
|
|
1565
|
+
];
|
|
1566
|
+
var ListVoiceProfileDomainsRequest$ = [3, n0, _LVPDR,
|
|
1567
|
+
0,
|
|
1568
|
+
[_NTe, _MR],
|
|
1569
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1570
|
+
];
|
|
1571
|
+
var ListVoiceProfileDomainsResponse$ = [3, n0, _LVPDRi,
|
|
1572
|
+
0,
|
|
1573
|
+
[_VPDo, _NTe],
|
|
1574
|
+
[[() => VoiceProfileDomainSummaryList, 0], 0]
|
|
1575
|
+
];
|
|
1576
|
+
var ListVoiceProfilesRequest$ = [3, n0, _LVPR,
|
|
1577
|
+
0,
|
|
1578
|
+
[_VPDI, _NTe, _MR],
|
|
1579
|
+
[[0, { [_hQ]: _vpdi }], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
1580
|
+
];
|
|
1581
|
+
var ListVoiceProfilesResponse$ = [3, n0, _LVPRi,
|
|
1582
|
+
0,
|
|
1583
|
+
[_VPo, _NTe],
|
|
1584
|
+
[[() => VoiceProfileSummaryList, 0], 0]
|
|
1585
|
+
];
|
|
1586
|
+
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1587
|
+
0,
|
|
1588
|
+
[_ESIPL, _EMML],
|
|
1589
|
+
[2, 2]
|
|
1590
|
+
];
|
|
1591
|
+
var MediaInsightsConfiguration$ = [3, n0, _MIC,
|
|
1592
|
+
0,
|
|
1593
|
+
[_D, _CAo],
|
|
1594
|
+
[2, [() => Arn, 0]]
|
|
1595
|
+
];
|
|
1596
|
+
var OrderedPhoneNumber$ = [3, n0, _OPN,
|
|
1597
|
+
0,
|
|
1598
|
+
[_EPN, _S],
|
|
1599
|
+
[[() => E164PhoneNumber, 0], 0]
|
|
1600
|
+
];
|
|
1601
|
+
var Origination$ = [3, n0, _O,
|
|
1602
|
+
0,
|
|
1603
|
+
[_R, _D],
|
|
1604
|
+
[() => OriginationRouteList, 2]
|
|
1605
|
+
];
|
|
1606
|
+
var OriginationRoute$ = [3, n0, _OR,
|
|
1607
|
+
0,
|
|
1608
|
+
[_H, _Po, _Pro, _Pri, _W],
|
|
1609
|
+
[0, 1, 0, 1, 1]
|
|
1610
|
+
];
|
|
1611
|
+
var Participant$ = [3, n0, _Pa,
|
|
1612
|
+
0,
|
|
1613
|
+
[_PN, _PPNr],
|
|
1614
|
+
[[() => E164PhoneNumber, 0], [() => E164PhoneNumber, 0]]
|
|
1615
|
+
];
|
|
1616
|
+
var PhoneNumber$ = [3, n0, _PN,
|
|
1617
|
+
0,
|
|
1618
|
+
[_PNIh, _EPN, _Co, _Ty, _PT, _S, _Ca, _As, _CN, _CNS, _CT, _UT, _DT, _OI, _N],
|
|
1619
|
+
[[() => SensitiveNonEmptyString, 0], [() => E164PhoneNumber, 0], 0, 0, 0, 0, () => PhoneNumberCapabilities$, () => PhoneNumberAssociationList, [() => CallingName, 0], 0, 5, 5, 5, 0, [() => PhoneNumberName, 0]]
|
|
1620
|
+
];
|
|
1621
|
+
var PhoneNumberAssociation$ = [3, n0, _PNA,
|
|
1622
|
+
0,
|
|
1623
|
+
[_V, _N, _AT],
|
|
1624
|
+
[0, 0, 5]
|
|
1625
|
+
];
|
|
1626
|
+
var PhoneNumberCapabilities$ = [3, n0, _PNCh,
|
|
1627
|
+
0,
|
|
1628
|
+
[_ICn, _OC, _ISMS, _OSMS, _IMMS, _OMMS],
|
|
1629
|
+
[2, 2, 2, 2, 2, 2]
|
|
1630
|
+
];
|
|
1631
|
+
var PhoneNumberCountry$ = [3, n0, _PNCho,
|
|
1632
|
+
0,
|
|
1633
|
+
[_CCo, _SPNT],
|
|
1634
|
+
[0, 64 | 0]
|
|
1635
|
+
];
|
|
1636
|
+
var PhoneNumberError$ = [3, n0, _PNEh,
|
|
1637
|
+
0,
|
|
1638
|
+
[_PNIh, _EC, _EMr],
|
|
1639
|
+
[[() => SensitiveNonEmptyString, 0], 0, 0]
|
|
1640
|
+
];
|
|
1641
|
+
var PhoneNumberOrder$ = [3, n0, _PNO,
|
|
1642
|
+
0,
|
|
1643
|
+
[_PNOI, _PT, _S, _OT, _OPNr, _CT, _UT, _FD],
|
|
1644
|
+
[0, 0, 0, 0, [() => OrderedPhoneNumberList, 0], 5, 5, 5]
|
|
1645
|
+
];
|
|
1646
|
+
var Proxy$ = [3, n0, _Pr,
|
|
1647
|
+
0,
|
|
1648
|
+
[_DSEM, _D, _FBPN, _PNC],
|
|
1649
|
+
[1, 2, [() => E164PhoneNumber, 0], 64 | 0]
|
|
1650
|
+
];
|
|
1651
|
+
var ProxySession$ = [3, n0, _PS,
|
|
1652
|
+
0,
|
|
1653
|
+
[_VCI, _PSI, _N, _S, _EM, _Ca, _CT, _UT, _ET, _Par, _NSB, _GML, _GMP],
|
|
1654
|
+
[0, 0, 0, 0, 1, 64 | 0, 5, 5, 5, [() => Participants, 0], 0, 0, () => GeoMatchParams$]
|
|
1655
|
+
];
|
|
1656
|
+
var PutSipMediaApplicationAlexaSkillConfigurationRequest$ = [3, n0, _PSMAASCR,
|
|
1657
|
+
0,
|
|
1658
|
+
[_SMAI, _SMAASC],
|
|
1659
|
+
[[0, 1], [() => SipMediaApplicationAlexaSkillConfiguration$, 0]], 1
|
|
1660
|
+
];
|
|
1661
|
+
var PutSipMediaApplicationAlexaSkillConfigurationResponse$ = [3, n0, _PSMAASCRu,
|
|
1662
|
+
0,
|
|
1663
|
+
[_SMAASC],
|
|
1664
|
+
[[() => SipMediaApplicationAlexaSkillConfiguration$, 0]]
|
|
1665
|
+
];
|
|
1666
|
+
var PutSipMediaApplicationLoggingConfigurationRequest$ = [3, n0, _PSMALCR,
|
|
1667
|
+
0,
|
|
1668
|
+
[_SMAI, _SMALC],
|
|
1669
|
+
[[0, 1], () => SipMediaApplicationLoggingConfiguration$], 1
|
|
1670
|
+
];
|
|
1671
|
+
var PutSipMediaApplicationLoggingConfigurationResponse$ = [3, n0, _PSMALCRu,
|
|
1672
|
+
0,
|
|
1673
|
+
[_SMALC],
|
|
1674
|
+
[() => SipMediaApplicationLoggingConfiguration$]
|
|
1675
|
+
];
|
|
1676
|
+
var PutVoiceConnectorEmergencyCallingConfigurationRequest$ = [3, n0, _PVCECCR,
|
|
1677
|
+
0,
|
|
1678
|
+
[_VCI, _ECC],
|
|
1679
|
+
[[0, 1], [() => EmergencyCallingConfiguration$, 0]], 2
|
|
1680
|
+
];
|
|
1681
|
+
var PutVoiceConnectorEmergencyCallingConfigurationResponse$ = [3, n0, _PVCECCRu,
|
|
1682
|
+
0,
|
|
1683
|
+
[_ECC],
|
|
1684
|
+
[[() => EmergencyCallingConfiguration$, 0]]
|
|
1685
|
+
];
|
|
1686
|
+
var PutVoiceConnectorExternalSystemsConfigurationRequest$ = [3, n0, _PVCESCR,
|
|
1687
|
+
0,
|
|
1688
|
+
[_VCI, _SBCT, _CCST],
|
|
1689
|
+
[[0, 1], 64 | 0, 64 | 0], 1
|
|
1690
|
+
];
|
|
1691
|
+
var PutVoiceConnectorExternalSystemsConfigurationResponse$ = [3, n0, _PVCESCRu,
|
|
1692
|
+
0,
|
|
1693
|
+
[_ESC],
|
|
1694
|
+
[() => ExternalSystemsConfiguration$]
|
|
1695
|
+
];
|
|
1696
|
+
var PutVoiceConnectorLoggingConfigurationRequest$ = [3, n0, _PVCLCR,
|
|
1697
|
+
0,
|
|
1698
|
+
[_VCI, _LC],
|
|
1699
|
+
[[0, 1], () => LoggingConfiguration$], 2
|
|
1700
|
+
];
|
|
1701
|
+
var PutVoiceConnectorLoggingConfigurationResponse$ = [3, n0, _PVCLCRu,
|
|
1702
|
+
0,
|
|
1703
|
+
[_LC],
|
|
1704
|
+
[() => LoggingConfiguration$]
|
|
1705
|
+
];
|
|
1706
|
+
var PutVoiceConnectorOriginationRequest$ = [3, n0, _PVCOR,
|
|
1707
|
+
0,
|
|
1708
|
+
[_VCI, _O],
|
|
1709
|
+
[[0, 1], () => Origination$], 2
|
|
1710
|
+
];
|
|
1711
|
+
var PutVoiceConnectorOriginationResponse$ = [3, n0, _PVCORu,
|
|
1712
|
+
0,
|
|
1713
|
+
[_O],
|
|
1714
|
+
[() => Origination$]
|
|
1715
|
+
];
|
|
1716
|
+
var PutVoiceConnectorProxyRequest$ = [3, n0, _PVCPR,
|
|
1717
|
+
0,
|
|
1718
|
+
[_VCI, _DSEM, _PNPC, _FBPN, _D],
|
|
1719
|
+
[[0, 1], 1, 64 | 0, [() => E164PhoneNumber, 0], 2], 3
|
|
1720
|
+
];
|
|
1721
|
+
var PutVoiceConnectorProxyResponse$ = [3, n0, _PVCPRu,
|
|
1722
|
+
0,
|
|
1723
|
+
[_Pr],
|
|
1724
|
+
[[() => Proxy$, 0]]
|
|
1725
|
+
];
|
|
1726
|
+
var PutVoiceConnectorStreamingConfigurationRequest$ = [3, n0, _PVCSCR,
|
|
1727
|
+
0,
|
|
1728
|
+
[_VCI, _SC],
|
|
1729
|
+
[[0, 1], [() => StreamingConfiguration$, 0]], 2
|
|
1730
|
+
];
|
|
1731
|
+
var PutVoiceConnectorStreamingConfigurationResponse$ = [3, n0, _PVCSCRu,
|
|
1732
|
+
0,
|
|
1733
|
+
[_SC],
|
|
1734
|
+
[[() => StreamingConfiguration$, 0]]
|
|
1735
|
+
];
|
|
1736
|
+
var PutVoiceConnectorTerminationCredentialsRequest$ = [3, n0, _PVCTCR,
|
|
1737
|
+
0,
|
|
1738
|
+
[_VCI, _Cre],
|
|
1739
|
+
[[0, 1], [() => CredentialList, 0]], 1
|
|
1740
|
+
];
|
|
1741
|
+
var PutVoiceConnectorTerminationRequest$ = [3, n0, _PVCTR,
|
|
1742
|
+
0,
|
|
1743
|
+
[_VCI, _Te],
|
|
1744
|
+
[[0, 1], [() => Termination$, 0]], 2
|
|
1745
|
+
];
|
|
1746
|
+
var PutVoiceConnectorTerminationResponse$ = [3, n0, _PVCTRu,
|
|
1747
|
+
0,
|
|
1748
|
+
[_Te],
|
|
1749
|
+
[[() => Termination$, 0]]
|
|
1750
|
+
];
|
|
1751
|
+
var RestorePhoneNumberRequest$ = [3, n0, _RPNR,
|
|
1752
|
+
0,
|
|
1753
|
+
[_PNIh],
|
|
1754
|
+
[[() => SensitiveNonEmptyString, 1]], 1
|
|
1755
|
+
];
|
|
1756
|
+
var RestorePhoneNumberResponse$ = [3, n0, _RPNRe,
|
|
1757
|
+
0,
|
|
1758
|
+
[_PN],
|
|
1759
|
+
[[() => PhoneNumber$, 0]]
|
|
1760
|
+
];
|
|
1761
|
+
var SearchAvailablePhoneNumbersRequest$ = [3, n0, _SAPNR,
|
|
1762
|
+
0,
|
|
1763
|
+
[_AC, _Ci, _Co, _St, _TFP, _PNT, _MR, _NTe],
|
|
1764
|
+
[[0, { [_hQ]: _ac }], [0, { [_hQ]: _ci }], [0, { [_hQ]: _co }], [0, { [_hQ]: _st }], [0, { [_hQ]: _tfp }], [0, { [_hQ]: _pnt }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1765
|
+
];
|
|
1766
|
+
var SearchAvailablePhoneNumbersResponse$ = [3, n0, _SAPNRe,
|
|
1767
|
+
0,
|
|
1768
|
+
[_EPNh, _NTe],
|
|
1769
|
+
[[() => E164PhoneNumberList, 0], 0]
|
|
1770
|
+
];
|
|
1771
|
+
var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
|
|
1772
|
+
0,
|
|
1773
|
+
[_KKA],
|
|
1774
|
+
[[() => Arn, 0]], 1
|
|
1775
|
+
];
|
|
1776
|
+
var SipMediaApplication$ = [3, n0, _SMA,
|
|
1777
|
+
0,
|
|
1778
|
+
[_SMAI, _AR, _N, _E, _CT, _UT, _SMAA],
|
|
1779
|
+
[0, 0, 0, [() => SipMediaApplicationEndpointList, 0], 5, 5, 0]
|
|
1780
|
+
];
|
|
1781
|
+
var SipMediaApplicationAlexaSkillConfiguration$ = [3, n0, _SMAASC,
|
|
1782
|
+
0,
|
|
1783
|
+
[_ASS, _ASIl],
|
|
1784
|
+
[0, [() => AlexaSkillIdList, 0]], 2
|
|
1785
|
+
];
|
|
1786
|
+
var SipMediaApplicationCall$ = [3, n0, _SMAC,
|
|
1787
|
+
0,
|
|
1788
|
+
[_TI],
|
|
1789
|
+
[0]
|
|
1790
|
+
];
|
|
1791
|
+
var SipMediaApplicationEndpoint$ = [3, n0, _SMAE,
|
|
1792
|
+
0,
|
|
1793
|
+
[_LA],
|
|
1794
|
+
[[() => FunctionArn, 0]]
|
|
1795
|
+
];
|
|
1796
|
+
var SipMediaApplicationLoggingConfiguration$ = [3, n0, _SMALC,
|
|
1797
|
+
0,
|
|
1798
|
+
[_ESMAML],
|
|
1799
|
+
[2]
|
|
1800
|
+
];
|
|
1801
|
+
var SipRule$ = [3, n0, _SR,
|
|
1802
|
+
0,
|
|
1803
|
+
[_SRI, _N, _D, _TT, _TVr, _TA, _CT, _UT],
|
|
1804
|
+
[0, 0, 2, 0, 0, () => SipRuleTargetApplicationList, 5, 5]
|
|
1805
|
+
];
|
|
1806
|
+
var SipRuleTargetApplication$ = [3, n0, _SRTA,
|
|
1807
|
+
0,
|
|
1808
|
+
[_SMAI, _Pri, _AR],
|
|
1809
|
+
[0, 1, 0]
|
|
1810
|
+
];
|
|
1811
|
+
var SpeakerSearchDetails$ = [3, n0, _SSD,
|
|
1812
|
+
0,
|
|
1813
|
+
[_Re, _VGS],
|
|
1814
|
+
[() => SpeakerSearchResultList, 0]
|
|
1815
|
+
];
|
|
1816
|
+
var SpeakerSearchResult$ = [3, n0, _SSR,
|
|
1817
|
+
0,
|
|
1818
|
+
[_CS, _VPI],
|
|
1819
|
+
[1, 0]
|
|
1820
|
+
];
|
|
1821
|
+
var SpeakerSearchTask$ = [3, n0, _SST,
|
|
1822
|
+
0,
|
|
1823
|
+
[_SSTI, _SSTS, _CD, _SSD, _CT, _UT, _ST, _SM],
|
|
1824
|
+
[0, 0, () => CallDetails$, () => SpeakerSearchDetails$, 5, 5, 5, 0]
|
|
1825
|
+
];
|
|
1826
|
+
var StartSpeakerSearchTaskRequest$ = [3, n0, _SSSTR,
|
|
1827
|
+
0,
|
|
1828
|
+
[_VCI, _TI, _VPDI, _CRT, _CL],
|
|
1829
|
+
[[0, 1], 0, 0, 0, 0], 3
|
|
1830
|
+
];
|
|
1831
|
+
var StartSpeakerSearchTaskResponse$ = [3, n0, _SSSTRt,
|
|
1832
|
+
0,
|
|
1833
|
+
[_SST],
|
|
1834
|
+
[() => SpeakerSearchTask$]
|
|
1835
|
+
];
|
|
1836
|
+
var StartVoiceToneAnalysisTaskRequest$ = [3, n0, _SVTATR,
|
|
1837
|
+
0,
|
|
1838
|
+
[_VCI, _TI, _LCa, _CRT],
|
|
1839
|
+
[[0, 1], 0, 0, 0], 3
|
|
1840
|
+
];
|
|
1841
|
+
var StartVoiceToneAnalysisTaskResponse$ = [3, n0, _SVTATRt,
|
|
1842
|
+
0,
|
|
1843
|
+
[_VTAT],
|
|
1844
|
+
[() => VoiceToneAnalysisTask$]
|
|
1845
|
+
];
|
|
1846
|
+
var StopSpeakerSearchTaskRequest$ = [3, n0, _SSSTRto,
|
|
1847
|
+
0,
|
|
1848
|
+
[_VCI, _SSTI],
|
|
1849
|
+
[[0, 1], [0, 1]], 2
|
|
1850
|
+
];
|
|
1851
|
+
var StopVoiceToneAnalysisTaskRequest$ = [3, n0, _SVTATRto,
|
|
1852
|
+
0,
|
|
1853
|
+
[_VCI, _VTATI],
|
|
1854
|
+
[[0, 1], [0, 1]], 2
|
|
1855
|
+
];
|
|
1856
|
+
var StreamingConfiguration$ = [3, n0, _SC,
|
|
1857
|
+
0,
|
|
1858
|
+
[_DRIH, _D, _SNT, _MIC],
|
|
1859
|
+
[1, 2, () => StreamingNotificationTargetList, [() => MediaInsightsConfiguration$, 0]], 2
|
|
1860
|
+
];
|
|
1861
|
+
var StreamingNotificationTarget$ = [3, n0, _SNTt,
|
|
1862
|
+
0,
|
|
1863
|
+
[_NTo],
|
|
1864
|
+
[0]
|
|
1865
|
+
];
|
|
1866
|
+
var Tag$ = [3, n0, _Ta,
|
|
1867
|
+
0,
|
|
1868
|
+
[_K, _V],
|
|
1869
|
+
[[() => TagKey, 0], [() => TagValue, 0]], 2
|
|
1870
|
+
];
|
|
1871
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1872
|
+
0,
|
|
1873
|
+
[_RARN, _T],
|
|
1874
|
+
[[() => Arn, 0], [() => TagList, 0]], 2
|
|
1875
|
+
];
|
|
1876
|
+
var Termination$ = [3, n0, _Te,
|
|
1877
|
+
0,
|
|
1878
|
+
[_CLp, _DPN, _CR, _CAL, _D],
|
|
1879
|
+
[1, [() => E164PhoneNumber, 0], 64 | 0, 64 | 0, 2]
|
|
1880
|
+
];
|
|
1881
|
+
var TerminationHealth$ = [3, n0, _TH,
|
|
1882
|
+
0,
|
|
1883
|
+
[_Ti, _So],
|
|
1884
|
+
[5, 0]
|
|
1885
|
+
];
|
|
1886
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1887
|
+
0,
|
|
1888
|
+
[_RARN, _TKa],
|
|
1889
|
+
[[() => Arn, 0], [() => TagKeyList, 0]], 2
|
|
1890
|
+
];
|
|
1891
|
+
var UpdateGlobalSettingsRequest$ = [3, n0, _UGSR,
|
|
1892
|
+
0,
|
|
1893
|
+
[_VC],
|
|
1894
|
+
[() => VoiceConnectorSettings$]
|
|
1895
|
+
];
|
|
1896
|
+
var UpdatePhoneNumberRequest$ = [3, n0, _UPNR,
|
|
1897
|
+
0,
|
|
1898
|
+
[_PNIh, _PT, _CN, _N],
|
|
1899
|
+
[[() => SensitiveNonEmptyString, 1], 0, [() => CallingName, 0], [() => PhoneNumberName, 0]], 1
|
|
1900
|
+
];
|
|
1901
|
+
var UpdatePhoneNumberRequestItem$ = [3, n0, _UPNRIp,
|
|
1902
|
+
0,
|
|
1903
|
+
[_PNIh, _PT, _CN, _N],
|
|
1904
|
+
[[() => SensitiveNonEmptyString, 0], 0, [() => CallingName, 0], [() => PhoneNumberName, 0]], 1
|
|
1905
|
+
];
|
|
1906
|
+
var UpdatePhoneNumberResponse$ = [3, n0, _UPNRp,
|
|
1907
|
+
0,
|
|
1908
|
+
[_PN],
|
|
1909
|
+
[[() => PhoneNumber$, 0]]
|
|
1910
|
+
];
|
|
1911
|
+
var UpdatePhoneNumberSettingsRequest$ = [3, n0, _UPNSR,
|
|
1912
|
+
0,
|
|
1913
|
+
[_CN],
|
|
1914
|
+
[[() => CallingName, 0]], 1
|
|
1915
|
+
];
|
|
1916
|
+
var UpdateProxySessionRequest$ = [3, n0, _UPSR,
|
|
1917
|
+
0,
|
|
1918
|
+
[_VCI, _PSI, _Ca, _EM],
|
|
1919
|
+
[[0, 1], [0, 1], 64 | 0, 1], 3
|
|
1920
|
+
];
|
|
1921
|
+
var UpdateProxySessionResponse$ = [3, n0, _UPSRp,
|
|
1922
|
+
0,
|
|
1923
|
+
[_PS],
|
|
1924
|
+
[[() => ProxySession$, 0]]
|
|
1925
|
+
];
|
|
1926
|
+
var UpdateSipMediaApplicationCallRequest$ = [3, n0, _USMACR,
|
|
1927
|
+
0,
|
|
1928
|
+
[_SMAI, _TI, _Ar],
|
|
1929
|
+
[[0, 1], [0, 1], [() => SMAUpdateCallArgumentsMap, 0]], 3
|
|
1930
|
+
];
|
|
1931
|
+
var UpdateSipMediaApplicationCallResponse$ = [3, n0, _USMACRp,
|
|
1932
|
+
0,
|
|
1933
|
+
[_SMAC],
|
|
1934
|
+
[() => SipMediaApplicationCall$]
|
|
1935
|
+
];
|
|
1936
|
+
var UpdateSipMediaApplicationRequest$ = [3, n0, _USMAR,
|
|
1937
|
+
0,
|
|
1938
|
+
[_SMAI, _N, _E],
|
|
1939
|
+
[[0, 1], 0, [() => SipMediaApplicationEndpointList, 0]], 1
|
|
1940
|
+
];
|
|
1941
|
+
var UpdateSipMediaApplicationResponse$ = [3, n0, _USMARp,
|
|
1942
|
+
0,
|
|
1943
|
+
[_SMA],
|
|
1944
|
+
[[() => SipMediaApplication$, 0]]
|
|
1945
|
+
];
|
|
1946
|
+
var UpdateSipRuleRequest$ = [3, n0, _USRR,
|
|
1947
|
+
0,
|
|
1948
|
+
[_SRI, _N, _D, _TA],
|
|
1949
|
+
[[0, 1], 0, 2, () => SipRuleTargetApplicationList], 2
|
|
1950
|
+
];
|
|
1951
|
+
var UpdateSipRuleResponse$ = [3, n0, _USRRp,
|
|
1952
|
+
0,
|
|
1953
|
+
[_SR],
|
|
1954
|
+
[() => SipRule$]
|
|
1955
|
+
];
|
|
1956
|
+
var UpdateVoiceConnectorGroupRequest$ = [3, n0, _UVCGR,
|
|
1957
|
+
0,
|
|
1958
|
+
[_VCGI, _N, _VCIo],
|
|
1959
|
+
[[0, 1], 0, () => VoiceConnectorItemList], 3
|
|
1960
|
+
];
|
|
1961
|
+
var UpdateVoiceConnectorGroupResponse$ = [3, n0, _UVCGRp,
|
|
1962
|
+
0,
|
|
1963
|
+
[_VCG],
|
|
1964
|
+
[() => VoiceConnectorGroup$]
|
|
1965
|
+
];
|
|
1966
|
+
var UpdateVoiceConnectorRequest$ = [3, n0, _UVCR,
|
|
1967
|
+
0,
|
|
1968
|
+
[_VCI, _N, _RE],
|
|
1969
|
+
[[0, 1], 0, 2], 3
|
|
1970
|
+
];
|
|
1971
|
+
var UpdateVoiceConnectorResponse$ = [3, n0, _UVCRp,
|
|
1972
|
+
0,
|
|
1973
|
+
[_VC],
|
|
1974
|
+
[() => VoiceConnector$]
|
|
1975
|
+
];
|
|
1976
|
+
var UpdateVoiceProfileDomainRequest$ = [3, n0, _UVPDR,
|
|
1977
|
+
0,
|
|
1978
|
+
[_VPDI, _N, _De],
|
|
1979
|
+
[[0, 1], 0, 0], 1
|
|
1980
|
+
];
|
|
1981
|
+
var UpdateVoiceProfileDomainResponse$ = [3, n0, _UVPDRp,
|
|
1982
|
+
0,
|
|
1983
|
+
[_VPD],
|
|
1984
|
+
[[() => VoiceProfileDomain$, 0]]
|
|
1985
|
+
];
|
|
1986
|
+
var UpdateVoiceProfileRequest$ = [3, n0, _UVPR,
|
|
1987
|
+
0,
|
|
1988
|
+
[_VPI, _SSTI],
|
|
1989
|
+
[[0, 1], 0], 2
|
|
1990
|
+
];
|
|
1991
|
+
var UpdateVoiceProfileResponse$ = [3, n0, _UVPRp,
|
|
1992
|
+
0,
|
|
1993
|
+
[_VP],
|
|
1994
|
+
[[() => VoiceProfile$, 0]]
|
|
1995
|
+
];
|
|
1996
|
+
var ValidateE911AddressRequest$ = [3, n0, _VEAR,
|
|
1997
|
+
0,
|
|
1998
|
+
[_AAI, _SN, _SI, _Ci, _St, _Co, _PC],
|
|
1999
|
+
[0, [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]], 7
|
|
2000
|
+
];
|
|
2001
|
+
var ValidateE911AddressResponse$ = [3, n0, _VEARa,
|
|
2002
|
+
0,
|
|
2003
|
+
[_VR, _AEI, _Ad, _CALa],
|
|
2004
|
+
[1, 0, [() => Address$, 0], [() => CandidateAddressList, 0]]
|
|
2005
|
+
];
|
|
2006
|
+
var VoiceConnector$ = [3, n0, _VC,
|
|
2007
|
+
0,
|
|
2008
|
+
[_VCI, _AR, _N, _OHN, _RE, _CT, _UT, _VCA, _IT, _NT],
|
|
2009
|
+
[0, 0, 0, 0, 2, 5, 5, 0, 0, 0]
|
|
2010
|
+
];
|
|
2011
|
+
var VoiceConnectorGroup$ = [3, n0, _VCG,
|
|
2012
|
+
0,
|
|
2013
|
+
[_VCGI, _N, _VCIo, _CT, _UT, _VCGA],
|
|
2014
|
+
[0, 0, () => VoiceConnectorItemList, 5, 5, 0]
|
|
2015
|
+
];
|
|
2016
|
+
var VoiceConnectorItem$ = [3, n0, _VCIoi,
|
|
2017
|
+
0,
|
|
2018
|
+
[_VCI, _Pri],
|
|
2019
|
+
[0, 1], 2
|
|
2020
|
+
];
|
|
2021
|
+
var VoiceConnectorSettings$ = [3, n0, _VCS,
|
|
2022
|
+
0,
|
|
2023
|
+
[_CB],
|
|
2024
|
+
[0]
|
|
2025
|
+
];
|
|
2026
|
+
var VoiceProfile$ = [3, n0, _VP,
|
|
2027
|
+
0,
|
|
2028
|
+
[_VPI, _VPA, _VPDI, _CT, _UT, _ETx],
|
|
2029
|
+
[0, [() => Arn, 0], 0, 5, 5, 5]
|
|
2030
|
+
];
|
|
2031
|
+
var VoiceProfileDomain$ = [3, n0, _VPD,
|
|
2032
|
+
0,
|
|
2033
|
+
[_VPDI, _VPDA, _N, _De, _SSEC, _CT, _UT],
|
|
2034
|
+
[0, [() => Arn, 0], 0, 0, [() => ServerSideEncryptionConfiguration$, 0], 5, 5]
|
|
2035
|
+
];
|
|
2036
|
+
var VoiceProfileDomainSummary$ = [3, n0, _VPDS,
|
|
2037
|
+
0,
|
|
2038
|
+
[_VPDI, _VPDA, _N, _De, _CT, _UT],
|
|
2039
|
+
[0, [() => Arn, 0], 0, 0, 5, 5]
|
|
2040
|
+
];
|
|
2041
|
+
var VoiceProfileSummary$ = [3, n0, _VPS,
|
|
2042
|
+
0,
|
|
2043
|
+
[_VPI, _VPA, _VPDI, _CT, _UT, _ETx],
|
|
2044
|
+
[0, [() => Arn, 0], 0, 5, 5, 5]
|
|
2045
|
+
];
|
|
2046
|
+
var VoiceToneAnalysisTask$ = [3, n0, _VTAT,
|
|
2047
|
+
0,
|
|
2048
|
+
[_VTATI, _VTATS, _CD, _CT, _UT, _ST, _SM],
|
|
2049
|
+
[0, 0, () => CallDetails$, 5, 5, 5, 0]
|
|
2050
|
+
];
|
|
2051
|
+
var __Unit = "unit";
|
|
2052
|
+
var AlexaSkillIdList = [1, n0, _ASIL,
|
|
2053
|
+
0, [() => AlexaSkillId,
|
|
2054
|
+
0]
|
|
2055
|
+
];
|
|
2056
|
+
var CandidateAddressList = [1, n0, _CALa,
|
|
2057
|
+
0, [() => CandidateAddress$,
|
|
2058
|
+
{ [_xN]: _CA }]
|
|
2059
|
+
];
|
|
2060
|
+
var CredentialList = [1, n0, _CLr,
|
|
2061
|
+
0, [() => Credential$,
|
|
2062
|
+
0]
|
|
2063
|
+
];
|
|
2064
|
+
var DNISEmergencyCallingConfigurationList = [1, n0, _DNISECCL,
|
|
2065
|
+
0, [() => DNISEmergencyCallingConfiguration$,
|
|
2066
|
+
0]
|
|
2067
|
+
];
|
|
2068
|
+
var E164PhoneNumberList = [1, n0, _EPNL,
|
|
2069
|
+
0, [() => E164PhoneNumber,
|
|
2070
|
+
0]
|
|
2071
|
+
];
|
|
2072
|
+
var OrderedPhoneNumberList = [1, n0, _OPNL,
|
|
2073
|
+
0, [() => OrderedPhoneNumber$,
|
|
2074
|
+
0]
|
|
2075
|
+
];
|
|
2076
|
+
var OriginationRouteList = [1, n0, _ORL,
|
|
2077
|
+
0, () => OriginationRoute$
|
|
2078
|
+
];
|
|
2079
|
+
var ParticipantPhoneNumberList = [1, n0, _PPNL,
|
|
2080
|
+
0, [() => E164PhoneNumber,
|
|
2081
|
+
0]
|
|
2082
|
+
];
|
|
2083
|
+
var Participants = [1, n0, _Par,
|
|
2084
|
+
0, [() => Participant$,
|
|
2085
|
+
0]
|
|
2086
|
+
];
|
|
2087
|
+
var PhoneNumberAssociationList = [1, n0, _PNAL,
|
|
2088
|
+
0, () => PhoneNumberAssociation$
|
|
2089
|
+
];
|
|
2090
|
+
var PhoneNumberCountriesList = [1, n0, _PNCL,
|
|
2091
|
+
0, () => PhoneNumberCountry$
|
|
2092
|
+
];
|
|
2093
|
+
var PhoneNumberErrorList = [1, n0, _PNEL,
|
|
2094
|
+
0, [() => PhoneNumberError$,
|
|
2095
|
+
0]
|
|
2096
|
+
];
|
|
2097
|
+
var PhoneNumberList = [1, n0, _PNL,
|
|
2098
|
+
0, [() => PhoneNumber$,
|
|
2099
|
+
0]
|
|
2100
|
+
];
|
|
2101
|
+
var PhoneNumberOrderList = [1, n0, _PNOL,
|
|
2102
|
+
0, [() => PhoneNumberOrder$,
|
|
2103
|
+
0]
|
|
2104
|
+
];
|
|
2105
|
+
var ProxySessions = [1, n0, _PSr,
|
|
2106
|
+
0, [() => ProxySession$,
|
|
2107
|
+
0]
|
|
2108
|
+
];
|
|
2109
|
+
var SensitiveStringList = [1, n0, _SSL,
|
|
2110
|
+
0, [() => SensitiveString,
|
|
2111
|
+
0]
|
|
2112
|
+
];
|
|
2113
|
+
var SipMediaApplicationEndpointList = [1, n0, _SMAEL,
|
|
2114
|
+
0, [() => SipMediaApplicationEndpoint$,
|
|
2115
|
+
0]
|
|
2116
|
+
];
|
|
2117
|
+
var SipMediaApplicationList = [1, n0, _SMAL,
|
|
2118
|
+
0, [() => SipMediaApplication$,
|
|
2119
|
+
0]
|
|
2120
|
+
];
|
|
2121
|
+
var SipRuleList = [1, n0, _SRL,
|
|
2122
|
+
0, () => SipRule$
|
|
2123
|
+
];
|
|
2124
|
+
var SipRuleTargetApplicationList = [1, n0, _SRTAL,
|
|
2125
|
+
0, () => SipRuleTargetApplication$
|
|
2126
|
+
];
|
|
2127
|
+
var SpeakerSearchResultList = [1, n0, _SSRL,
|
|
2128
|
+
0, () => SpeakerSearchResult$
|
|
2129
|
+
];
|
|
2130
|
+
var StreamingNotificationTargetList = [1, n0, _SNTL,
|
|
2131
|
+
0, () => StreamingNotificationTarget$
|
|
2132
|
+
];
|
|
2133
|
+
var TagKeyList = [1, n0, _TKL,
|
|
2134
|
+
0, [() => TagKey,
|
|
2135
|
+
0]
|
|
2136
|
+
];
|
|
2137
|
+
var TagList = [1, n0, _TL,
|
|
2138
|
+
0, [() => Tag$,
|
|
2139
|
+
0]
|
|
2140
|
+
];
|
|
2141
|
+
var UpdatePhoneNumberRequestItemList = [1, n0, _UPNRIL,
|
|
2142
|
+
0, [() => UpdatePhoneNumberRequestItem$,
|
|
2143
|
+
0]
|
|
2144
|
+
];
|
|
2145
|
+
var VoiceConnectorGroupList = [1, n0, _VCGL,
|
|
2146
|
+
0, () => VoiceConnectorGroup$
|
|
2147
|
+
];
|
|
2148
|
+
var VoiceConnectorItemList = [1, n0, _VCIL,
|
|
2149
|
+
0, () => VoiceConnectorItem$
|
|
2150
|
+
];
|
|
2151
|
+
var VoiceConnectorList = [1, n0, _VCL,
|
|
2152
|
+
0, () => VoiceConnector$
|
|
2153
|
+
];
|
|
2154
|
+
var VoiceProfileDomainSummaryList = [1, n0, _VPDSL,
|
|
2155
|
+
0, [() => VoiceProfileDomainSummary$,
|
|
2156
|
+
0]
|
|
2157
|
+
];
|
|
2158
|
+
var VoiceProfileSummaryList = [1, n0, _VPSL,
|
|
2159
|
+
0, [() => VoiceProfileSummary$,
|
|
2160
|
+
0]
|
|
2161
|
+
];
|
|
2162
|
+
var SipHeadersMap = [2, n0, _SHM,
|
|
2163
|
+
0, [() => SensitiveString,
|
|
2164
|
+
0],
|
|
2165
|
+
[() => SensitiveString,
|
|
2166
|
+
0]
|
|
2167
|
+
];
|
|
2168
|
+
var SMACreateCallArgumentsMap = [2, n0, _SMACCAM,
|
|
2169
|
+
0, [() => SensitiveString,
|
|
2170
|
+
0],
|
|
2171
|
+
[() => SensitiveString,
|
|
2172
|
+
0]
|
|
2173
|
+
];
|
|
2174
|
+
var SMAUpdateCallArgumentsMap = [2, n0, _SMAUCAM,
|
|
2175
|
+
0, [() => SensitiveString,
|
|
2176
|
+
0],
|
|
2177
|
+
[() => SensitiveString,
|
|
2178
|
+
0]
|
|
2179
|
+
];
|
|
2180
|
+
var AssociatePhoneNumbersWithVoiceConnector$ = [9, n0, _APNWVC,
|
|
2181
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}?operation=associate-phone-numbers", 200] }, () => AssociatePhoneNumbersWithVoiceConnectorRequest$, () => AssociatePhoneNumbersWithVoiceConnectorResponse$
|
|
2182
|
+
];
|
|
2183
|
+
var AssociatePhoneNumbersWithVoiceConnectorGroup$ = [9, n0, _APNWVCG,
|
|
2184
|
+
{ [_h]: ["POST", "/voice-connector-groups/{VoiceConnectorGroupId}?operation=associate-phone-numbers", 200] }, () => AssociatePhoneNumbersWithVoiceConnectorGroupRequest$, () => AssociatePhoneNumbersWithVoiceConnectorGroupResponse$
|
|
2185
|
+
];
|
|
2186
|
+
var BatchDeletePhoneNumber$ = [9, n0, _BDPN,
|
|
2187
|
+
{ [_h]: ["POST", "/phone-numbers?operation=batch-delete", 200] }, () => BatchDeletePhoneNumberRequest$, () => BatchDeletePhoneNumberResponse$
|
|
2188
|
+
];
|
|
2189
|
+
var BatchUpdatePhoneNumber$ = [9, n0, _BUPN,
|
|
2190
|
+
{ [_h]: ["POST", "/phone-numbers?operation=batch-update", 200] }, () => BatchUpdatePhoneNumberRequest$, () => BatchUpdatePhoneNumberResponse$
|
|
2191
|
+
];
|
|
2192
|
+
var CreatePhoneNumberOrder$ = [9, n0, _CPNO,
|
|
2193
|
+
{ [_h]: ["POST", "/phone-number-orders", 201] }, () => CreatePhoneNumberOrderRequest$, () => CreatePhoneNumberOrderResponse$
|
|
2194
|
+
];
|
|
2195
|
+
var CreateProxySession$ = [9, n0, _CPS,
|
|
2196
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/proxy-sessions", 201] }, () => CreateProxySessionRequest$, () => CreateProxySessionResponse$
|
|
2197
|
+
];
|
|
2198
|
+
var CreateSipMediaApplication$ = [9, n0, _CSMA,
|
|
2199
|
+
{ [_h]: ["POST", "/sip-media-applications", 201] }, () => CreateSipMediaApplicationRequest$, () => CreateSipMediaApplicationResponse$
|
|
2200
|
+
];
|
|
2201
|
+
var CreateSipMediaApplicationCall$ = [9, n0, _CSMAC,
|
|
2202
|
+
{ [_h]: ["POST", "/sip-media-applications/{SipMediaApplicationId}/calls", 201] }, () => CreateSipMediaApplicationCallRequest$, () => CreateSipMediaApplicationCallResponse$
|
|
2203
|
+
];
|
|
2204
|
+
var CreateSipRule$ = [9, n0, _CSR,
|
|
2205
|
+
{ [_h]: ["POST", "/sip-rules", 201] }, () => CreateSipRuleRequest$, () => CreateSipRuleResponse$
|
|
2206
|
+
];
|
|
2207
|
+
var CreateVoiceConnector$ = [9, n0, _CVC,
|
|
2208
|
+
{ [_h]: ["POST", "/voice-connectors", 201] }, () => CreateVoiceConnectorRequest$, () => CreateVoiceConnectorResponse$
|
|
2209
|
+
];
|
|
2210
|
+
var CreateVoiceConnectorGroup$ = [9, n0, _CVCG,
|
|
2211
|
+
{ [_h]: ["POST", "/voice-connector-groups", 201] }, () => CreateVoiceConnectorGroupRequest$, () => CreateVoiceConnectorGroupResponse$
|
|
2212
|
+
];
|
|
2213
|
+
var CreateVoiceProfile$ = [9, n0, _CVP,
|
|
2214
|
+
{ [_h]: ["POST", "/voice-profiles", 201] }, () => CreateVoiceProfileRequest$, () => CreateVoiceProfileResponse$
|
|
2215
|
+
];
|
|
2216
|
+
var CreateVoiceProfileDomain$ = [9, n0, _CVPD,
|
|
2217
|
+
{ [_h]: ["POST", "/voice-profile-domains", 201] }, () => CreateVoiceProfileDomainRequest$, () => CreateVoiceProfileDomainResponse$
|
|
2218
|
+
];
|
|
2219
|
+
var DeletePhoneNumber$ = [9, n0, _DPNe,
|
|
2220
|
+
{ [_h]: ["DELETE", "/phone-numbers/{PhoneNumberId}", 204] }, () => DeletePhoneNumberRequest$, () => __Unit
|
|
2221
|
+
];
|
|
2222
|
+
var DeleteProxySession$ = [9, n0, _DPS,
|
|
2223
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/proxy-sessions/{ProxySessionId}", 204] }, () => DeleteProxySessionRequest$, () => __Unit
|
|
2224
|
+
];
|
|
2225
|
+
var DeleteSipMediaApplication$ = [9, n0, _DSMA,
|
|
2226
|
+
{ [_h]: ["DELETE", "/sip-media-applications/{SipMediaApplicationId}", 204] }, () => DeleteSipMediaApplicationRequest$, () => __Unit
|
|
2227
|
+
];
|
|
2228
|
+
var DeleteSipRule$ = [9, n0, _DSR,
|
|
2229
|
+
{ [_h]: ["DELETE", "/sip-rules/{SipRuleId}", 204] }, () => DeleteSipRuleRequest$, () => __Unit
|
|
2230
|
+
];
|
|
2231
|
+
var DeleteVoiceConnector$ = [9, n0, _DVC,
|
|
2232
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}", 204] }, () => DeleteVoiceConnectorRequest$, () => __Unit
|
|
2233
|
+
];
|
|
2234
|
+
var DeleteVoiceConnectorEmergencyCallingConfiguration$ = [9, n0, _DVCECC,
|
|
2235
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/emergency-calling-configuration", 204] }, () => DeleteVoiceConnectorEmergencyCallingConfigurationRequest$, () => __Unit
|
|
2236
|
+
];
|
|
2237
|
+
var DeleteVoiceConnectorExternalSystemsConfiguration$ = [9, n0, _DVCESC,
|
|
2238
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/external-systems-configuration", 204] }, () => DeleteVoiceConnectorExternalSystemsConfigurationRequest$, () => __Unit
|
|
2239
|
+
];
|
|
2240
|
+
var DeleteVoiceConnectorGroup$ = [9, n0, _DVCG,
|
|
2241
|
+
{ [_h]: ["DELETE", "/voice-connector-groups/{VoiceConnectorGroupId}", 204] }, () => DeleteVoiceConnectorGroupRequest$, () => __Unit
|
|
2242
|
+
];
|
|
2243
|
+
var DeleteVoiceConnectorOrigination$ = [9, n0, _DVCO,
|
|
2244
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/origination", 204] }, () => DeleteVoiceConnectorOriginationRequest$, () => __Unit
|
|
2245
|
+
];
|
|
2246
|
+
var DeleteVoiceConnectorProxy$ = [9, n0, _DVCP,
|
|
2247
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/programmable-numbers/proxy", 204] }, () => DeleteVoiceConnectorProxyRequest$, () => __Unit
|
|
2248
|
+
];
|
|
2249
|
+
var DeleteVoiceConnectorStreamingConfiguration$ = [9, n0, _DVCSC,
|
|
2250
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/streaming-configuration", 204] }, () => DeleteVoiceConnectorStreamingConfigurationRequest$, () => __Unit
|
|
2251
|
+
];
|
|
2252
|
+
var DeleteVoiceConnectorTermination$ = [9, n0, _DVCT,
|
|
2253
|
+
{ [_h]: ["DELETE", "/voice-connectors/{VoiceConnectorId}/termination", 204] }, () => DeleteVoiceConnectorTerminationRequest$, () => __Unit
|
|
2254
|
+
];
|
|
2255
|
+
var DeleteVoiceConnectorTerminationCredentials$ = [9, n0, _DVCTC,
|
|
2256
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/termination/credentials?operation=delete", 204] }, () => DeleteVoiceConnectorTerminationCredentialsRequest$, () => __Unit
|
|
2257
|
+
];
|
|
2258
|
+
var DeleteVoiceProfile$ = [9, n0, _DVP,
|
|
2259
|
+
{ [_h]: ["DELETE", "/voice-profiles/{VoiceProfileId}", 204] }, () => DeleteVoiceProfileRequest$, () => __Unit
|
|
2260
|
+
];
|
|
2261
|
+
var DeleteVoiceProfileDomain$ = [9, n0, _DVPD,
|
|
2262
|
+
{ [_h]: ["DELETE", "/voice-profile-domains/{VoiceProfileDomainId}", 204] }, () => DeleteVoiceProfileDomainRequest$, () => __Unit
|
|
2263
|
+
];
|
|
2264
|
+
var DisassociatePhoneNumbersFromVoiceConnector$ = [9, n0, _DPNFVC,
|
|
2265
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}?operation=disassociate-phone-numbers", 200] }, () => DisassociatePhoneNumbersFromVoiceConnectorRequest$, () => DisassociatePhoneNumbersFromVoiceConnectorResponse$
|
|
2266
|
+
];
|
|
2267
|
+
var DisassociatePhoneNumbersFromVoiceConnectorGroup$ = [9, n0, _DPNFVCG,
|
|
2268
|
+
{ [_h]: ["POST", "/voice-connector-groups/{VoiceConnectorGroupId}?operation=disassociate-phone-numbers", 200] }, () => DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$, () => DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$
|
|
2269
|
+
];
|
|
2270
|
+
var GetGlobalSettings$ = [9, n0, _GGS,
|
|
2271
|
+
{ [_h]: ["GET", "/settings", 200] }, () => __Unit, () => GetGlobalSettingsResponse$
|
|
2272
|
+
];
|
|
2273
|
+
var GetPhoneNumber$ = [9, n0, _GPN,
|
|
2274
|
+
{ [_h]: ["GET", "/phone-numbers/{PhoneNumberId}", 200] }, () => GetPhoneNumberRequest$, () => GetPhoneNumberResponse$
|
|
2275
|
+
];
|
|
2276
|
+
var GetPhoneNumberOrder$ = [9, n0, _GPNO,
|
|
2277
|
+
{ [_h]: ["GET", "/phone-number-orders/{PhoneNumberOrderId}", 200] }, () => GetPhoneNumberOrderRequest$, () => GetPhoneNumberOrderResponse$
|
|
2278
|
+
];
|
|
2279
|
+
var GetPhoneNumberSettings$ = [9, n0, _GPNS,
|
|
2280
|
+
{ [_h]: ["GET", "/settings/phone-number", 200] }, () => __Unit, () => GetPhoneNumberSettingsResponse$
|
|
2281
|
+
];
|
|
2282
|
+
var GetProxySession$ = [9, n0, _GPS,
|
|
2283
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/proxy-sessions/{ProxySessionId}", 200] }, () => GetProxySessionRequest$, () => GetProxySessionResponse$
|
|
2284
|
+
];
|
|
2285
|
+
var GetSipMediaApplication$ = [9, n0, _GSMA,
|
|
2286
|
+
{ [_h]: ["GET", "/sip-media-applications/{SipMediaApplicationId}", 200] }, () => GetSipMediaApplicationRequest$, () => GetSipMediaApplicationResponse$
|
|
2287
|
+
];
|
|
2288
|
+
var GetSipMediaApplicationAlexaSkillConfiguration$ = [9, n0, _GSMAASC,
|
|
2289
|
+
{ [_h]: ["GET", "/sip-media-applications/{SipMediaApplicationId}/alexa-skill-configuration", 200] }, () => GetSipMediaApplicationAlexaSkillConfigurationRequest$, () => GetSipMediaApplicationAlexaSkillConfigurationResponse$
|
|
2290
|
+
];
|
|
2291
|
+
var GetSipMediaApplicationLoggingConfiguration$ = [9, n0, _GSMALC,
|
|
2292
|
+
{ [_h]: ["GET", "/sip-media-applications/{SipMediaApplicationId}/logging-configuration", 200] }, () => GetSipMediaApplicationLoggingConfigurationRequest$, () => GetSipMediaApplicationLoggingConfigurationResponse$
|
|
2293
|
+
];
|
|
2294
|
+
var GetSipRule$ = [9, n0, _GSR,
|
|
2295
|
+
{ [_h]: ["GET", "/sip-rules/{SipRuleId}", 200] }, () => GetSipRuleRequest$, () => GetSipRuleResponse$
|
|
2296
|
+
];
|
|
2297
|
+
var GetSpeakerSearchTask$ = [9, n0, _GSST,
|
|
2298
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/speaker-search-tasks/{SpeakerSearchTaskId}", 200] }, () => GetSpeakerSearchTaskRequest$, () => GetSpeakerSearchTaskResponse$
|
|
2299
|
+
];
|
|
2300
|
+
var GetVoiceConnector$ = [9, n0, _GVC,
|
|
2301
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}", 200] }, () => GetVoiceConnectorRequest$, () => GetVoiceConnectorResponse$
|
|
2302
|
+
];
|
|
2303
|
+
var GetVoiceConnectorEmergencyCallingConfiguration$ = [9, n0, _GVCECC,
|
|
2304
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/emergency-calling-configuration", 200] }, () => GetVoiceConnectorEmergencyCallingConfigurationRequest$, () => GetVoiceConnectorEmergencyCallingConfigurationResponse$
|
|
2305
|
+
];
|
|
2306
|
+
var GetVoiceConnectorExternalSystemsConfiguration$ = [9, n0, _GVCESC,
|
|
2307
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/external-systems-configuration", 200] }, () => GetVoiceConnectorExternalSystemsConfigurationRequest$, () => GetVoiceConnectorExternalSystemsConfigurationResponse$
|
|
2308
|
+
];
|
|
2309
|
+
var GetVoiceConnectorGroup$ = [9, n0, _GVCG,
|
|
2310
|
+
{ [_h]: ["GET", "/voice-connector-groups/{VoiceConnectorGroupId}", 200] }, () => GetVoiceConnectorGroupRequest$, () => GetVoiceConnectorGroupResponse$
|
|
2311
|
+
];
|
|
2312
|
+
var GetVoiceConnectorLoggingConfiguration$ = [9, n0, _GVCLC,
|
|
2313
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/logging-configuration", 200] }, () => GetVoiceConnectorLoggingConfigurationRequest$, () => GetVoiceConnectorLoggingConfigurationResponse$
|
|
2314
|
+
];
|
|
2315
|
+
var GetVoiceConnectorOrigination$ = [9, n0, _GVCO,
|
|
2316
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/origination", 200] }, () => GetVoiceConnectorOriginationRequest$, () => GetVoiceConnectorOriginationResponse$
|
|
2317
|
+
];
|
|
2318
|
+
var GetVoiceConnectorProxy$ = [9, n0, _GVCP,
|
|
2319
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/programmable-numbers/proxy", 200] }, () => GetVoiceConnectorProxyRequest$, () => GetVoiceConnectorProxyResponse$
|
|
2320
|
+
];
|
|
2321
|
+
var GetVoiceConnectorStreamingConfiguration$ = [9, n0, _GVCSC,
|
|
2322
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/streaming-configuration", 200] }, () => GetVoiceConnectorStreamingConfigurationRequest$, () => GetVoiceConnectorStreamingConfigurationResponse$
|
|
2323
|
+
];
|
|
2324
|
+
var GetVoiceConnectorTermination$ = [9, n0, _GVCT,
|
|
2325
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/termination", 200] }, () => GetVoiceConnectorTerminationRequest$, () => GetVoiceConnectorTerminationResponse$
|
|
2326
|
+
];
|
|
2327
|
+
var GetVoiceConnectorTerminationHealth$ = [9, n0, _GVCTH,
|
|
2328
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/termination/health", 200] }, () => GetVoiceConnectorTerminationHealthRequest$, () => GetVoiceConnectorTerminationHealthResponse$
|
|
2329
|
+
];
|
|
2330
|
+
var GetVoiceProfile$ = [9, n0, _GVP,
|
|
2331
|
+
{ [_h]: ["GET", "/voice-profiles/{VoiceProfileId}", 200] }, () => GetVoiceProfileRequest$, () => GetVoiceProfileResponse$
|
|
2332
|
+
];
|
|
2333
|
+
var GetVoiceProfileDomain$ = [9, n0, _GVPD,
|
|
2334
|
+
{ [_h]: ["GET", "/voice-profile-domains/{VoiceProfileDomainId}", 200] }, () => GetVoiceProfileDomainRequest$, () => GetVoiceProfileDomainResponse$
|
|
2335
|
+
];
|
|
2336
|
+
var GetVoiceToneAnalysisTask$ = [9, n0, _GVTAT,
|
|
2337
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/voice-tone-analysis-tasks/{VoiceToneAnalysisTaskId}", 200] }, () => GetVoiceToneAnalysisTaskRequest$, () => GetVoiceToneAnalysisTaskResponse$
|
|
2338
|
+
];
|
|
2339
|
+
var ListAvailableVoiceConnectorRegions$ = [9, n0, _LAVCR,
|
|
2340
|
+
{ [_h]: ["GET", "/voice-connector-regions", 200] }, () => __Unit, () => ListAvailableVoiceConnectorRegionsResponse$
|
|
2341
|
+
];
|
|
2342
|
+
var ListPhoneNumberOrders$ = [9, n0, _LPNO,
|
|
2343
|
+
{ [_h]: ["GET", "/phone-number-orders", 200] }, () => ListPhoneNumberOrdersRequest$, () => ListPhoneNumberOrdersResponse$
|
|
2344
|
+
];
|
|
2345
|
+
var ListPhoneNumbers$ = [9, n0, _LPN,
|
|
2346
|
+
{ [_h]: ["GET", "/phone-numbers", 200] }, () => ListPhoneNumbersRequest$, () => ListPhoneNumbersResponse$
|
|
2347
|
+
];
|
|
2348
|
+
var ListProxySessions$ = [9, n0, _LPS,
|
|
2349
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/proxy-sessions", 200] }, () => ListProxySessionsRequest$, () => ListProxySessionsResponse$
|
|
2350
|
+
];
|
|
2351
|
+
var ListSipMediaApplications$ = [9, n0, _LSMA,
|
|
2352
|
+
{ [_h]: ["GET", "/sip-media-applications", 200] }, () => ListSipMediaApplicationsRequest$, () => ListSipMediaApplicationsResponse$
|
|
2353
|
+
];
|
|
2354
|
+
var ListSipRules$ = [9, n0, _LSR,
|
|
2355
|
+
{ [_h]: ["GET", "/sip-rules", 200] }, () => ListSipRulesRequest$, () => ListSipRulesResponse$
|
|
2356
|
+
];
|
|
2357
|
+
var ListSupportedPhoneNumberCountries$ = [9, n0, _LSPNC,
|
|
2358
|
+
{ [_h]: ["GET", "/phone-number-countries", 200] }, () => ListSupportedPhoneNumberCountriesRequest$, () => ListSupportedPhoneNumberCountriesResponse$
|
|
2359
|
+
];
|
|
2360
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2361
|
+
{ [_h]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2362
|
+
];
|
|
2363
|
+
var ListVoiceConnectorGroups$ = [9, n0, _LVCG,
|
|
2364
|
+
{ [_h]: ["GET", "/voice-connector-groups", 200] }, () => ListVoiceConnectorGroupsRequest$, () => ListVoiceConnectorGroupsResponse$
|
|
2365
|
+
];
|
|
2366
|
+
var ListVoiceConnectors$ = [9, n0, _LVC,
|
|
2367
|
+
{ [_h]: ["GET", "/voice-connectors", 200] }, () => ListVoiceConnectorsRequest$, () => ListVoiceConnectorsResponse$
|
|
2368
|
+
];
|
|
2369
|
+
var ListVoiceConnectorTerminationCredentials$ = [9, n0, _LVCTC,
|
|
2370
|
+
{ [_h]: ["GET", "/voice-connectors/{VoiceConnectorId}/termination/credentials", 200] }, () => ListVoiceConnectorTerminationCredentialsRequest$, () => ListVoiceConnectorTerminationCredentialsResponse$
|
|
2371
|
+
];
|
|
2372
|
+
var ListVoiceProfileDomains$ = [9, n0, _LVPD,
|
|
2373
|
+
{ [_h]: ["GET", "/voice-profile-domains", 200] }, () => ListVoiceProfileDomainsRequest$, () => ListVoiceProfileDomainsResponse$
|
|
2374
|
+
];
|
|
2375
|
+
var ListVoiceProfiles$ = [9, n0, _LVP,
|
|
2376
|
+
{ [_h]: ["GET", "/voice-profiles", 200] }, () => ListVoiceProfilesRequest$, () => ListVoiceProfilesResponse$
|
|
2377
|
+
];
|
|
2378
|
+
var PutSipMediaApplicationAlexaSkillConfiguration$ = [9, n0, _PSMAASC,
|
|
2379
|
+
{ [_h]: ["PUT", "/sip-media-applications/{SipMediaApplicationId}/alexa-skill-configuration", 200] }, () => PutSipMediaApplicationAlexaSkillConfigurationRequest$, () => PutSipMediaApplicationAlexaSkillConfigurationResponse$
|
|
2380
|
+
];
|
|
2381
|
+
var PutSipMediaApplicationLoggingConfiguration$ = [9, n0, _PSMALC,
|
|
2382
|
+
{ [_h]: ["PUT", "/sip-media-applications/{SipMediaApplicationId}/logging-configuration", 200] }, () => PutSipMediaApplicationLoggingConfigurationRequest$, () => PutSipMediaApplicationLoggingConfigurationResponse$
|
|
2383
|
+
];
|
|
2384
|
+
var PutVoiceConnectorEmergencyCallingConfiguration$ = [9, n0, _PVCECC,
|
|
2385
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/emergency-calling-configuration", 200] }, () => PutVoiceConnectorEmergencyCallingConfigurationRequest$, () => PutVoiceConnectorEmergencyCallingConfigurationResponse$
|
|
2386
|
+
];
|
|
2387
|
+
var PutVoiceConnectorExternalSystemsConfiguration$ = [9, n0, _PVCESC,
|
|
2388
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/external-systems-configuration", 200] }, () => PutVoiceConnectorExternalSystemsConfigurationRequest$, () => PutVoiceConnectorExternalSystemsConfigurationResponse$
|
|
2389
|
+
];
|
|
2390
|
+
var PutVoiceConnectorLoggingConfiguration$ = [9, n0, _PVCLC,
|
|
2391
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/logging-configuration", 200] }, () => PutVoiceConnectorLoggingConfigurationRequest$, () => PutVoiceConnectorLoggingConfigurationResponse$
|
|
2392
|
+
];
|
|
2393
|
+
var PutVoiceConnectorOrigination$ = [9, n0, _PVCO,
|
|
2394
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/origination", 200] }, () => PutVoiceConnectorOriginationRequest$, () => PutVoiceConnectorOriginationResponse$
|
|
2395
|
+
];
|
|
2396
|
+
var PutVoiceConnectorProxy$ = [9, n0, _PVCP,
|
|
2397
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/programmable-numbers/proxy", 200] }, () => PutVoiceConnectorProxyRequest$, () => PutVoiceConnectorProxyResponse$
|
|
2398
|
+
];
|
|
2399
|
+
var PutVoiceConnectorStreamingConfiguration$ = [9, n0, _PVCSC,
|
|
2400
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/streaming-configuration", 200] }, () => PutVoiceConnectorStreamingConfigurationRequest$, () => PutVoiceConnectorStreamingConfigurationResponse$
|
|
2401
|
+
];
|
|
2402
|
+
var PutVoiceConnectorTermination$ = [9, n0, _PVCT,
|
|
2403
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}/termination", 200] }, () => PutVoiceConnectorTerminationRequest$, () => PutVoiceConnectorTerminationResponse$
|
|
2404
|
+
];
|
|
2405
|
+
var PutVoiceConnectorTerminationCredentials$ = [9, n0, _PVCTC,
|
|
2406
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/termination/credentials?operation=put", 204] }, () => PutVoiceConnectorTerminationCredentialsRequest$, () => __Unit
|
|
2407
|
+
];
|
|
2408
|
+
var RestorePhoneNumber$ = [9, n0, _RPN,
|
|
2409
|
+
{ [_h]: ["POST", "/phone-numbers/{PhoneNumberId}?operation=restore", 200] }, () => RestorePhoneNumberRequest$, () => RestorePhoneNumberResponse$
|
|
2410
|
+
];
|
|
2411
|
+
var SearchAvailablePhoneNumbers$ = [9, n0, _SAPN,
|
|
2412
|
+
{ [_h]: ["GET", "/search?type=phone-numbers", 200] }, () => SearchAvailablePhoneNumbersRequest$, () => SearchAvailablePhoneNumbersResponse$
|
|
2413
|
+
];
|
|
2414
|
+
var StartSpeakerSearchTask$ = [9, n0, _SSST,
|
|
2415
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/speaker-search-tasks", 201] }, () => StartSpeakerSearchTaskRequest$, () => StartSpeakerSearchTaskResponse$
|
|
2416
|
+
];
|
|
2417
|
+
var StartVoiceToneAnalysisTask$ = [9, n0, _SVTAT,
|
|
2418
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/voice-tone-analysis-tasks", 201] }, () => StartVoiceToneAnalysisTaskRequest$, () => StartVoiceToneAnalysisTaskResponse$
|
|
2419
|
+
];
|
|
2420
|
+
var StopSpeakerSearchTask$ = [9, n0, _SSSTt,
|
|
2421
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/speaker-search-tasks/{SpeakerSearchTaskId}?operation=stop", 204] }, () => StopSpeakerSearchTaskRequest$, () => __Unit
|
|
2422
|
+
];
|
|
2423
|
+
var StopVoiceToneAnalysisTask$ = [9, n0, _SVTATt,
|
|
2424
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/voice-tone-analysis-tasks/{VoiceToneAnalysisTaskId}?operation=stop", 204] }, () => StopVoiceToneAnalysisTaskRequest$, () => __Unit
|
|
2425
|
+
];
|
|
2426
|
+
var TagResource$ = [9, n0, _TR,
|
|
2427
|
+
{ [_h]: ["POST", "/tags?operation=tag-resource", 204] }, () => TagResourceRequest$, () => __Unit
|
|
2428
|
+
];
|
|
2429
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2430
|
+
{ [_h]: ["POST", "/tags?operation=untag-resource", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
2431
|
+
];
|
|
2432
|
+
var UpdateGlobalSettings$ = [9, n0, _UGS,
|
|
2433
|
+
{ [_h]: ["PUT", "/settings", 204] }, () => UpdateGlobalSettingsRequest$, () => __Unit
|
|
2434
|
+
];
|
|
2435
|
+
var UpdatePhoneNumber$ = [9, n0, _UPN,
|
|
2436
|
+
{ [_h]: ["POST", "/phone-numbers/{PhoneNumberId}", 200] }, () => UpdatePhoneNumberRequest$, () => UpdatePhoneNumberResponse$
|
|
2437
|
+
];
|
|
2438
|
+
var UpdatePhoneNumberSettings$ = [9, n0, _UPNS,
|
|
2439
|
+
{ [_h]: ["PUT", "/settings/phone-number", 204] }, () => UpdatePhoneNumberSettingsRequest$, () => __Unit
|
|
2440
|
+
];
|
|
2441
|
+
var UpdateProxySession$ = [9, n0, _UPS,
|
|
2442
|
+
{ [_h]: ["POST", "/voice-connectors/{VoiceConnectorId}/proxy-sessions/{ProxySessionId}", 201] }, () => UpdateProxySessionRequest$, () => UpdateProxySessionResponse$
|
|
2443
|
+
];
|
|
2444
|
+
var UpdateSipMediaApplication$ = [9, n0, _USMA,
|
|
2445
|
+
{ [_h]: ["PUT", "/sip-media-applications/{SipMediaApplicationId}", 200] }, () => UpdateSipMediaApplicationRequest$, () => UpdateSipMediaApplicationResponse$
|
|
2446
|
+
];
|
|
2447
|
+
var UpdateSipMediaApplicationCall$ = [9, n0, _USMAC,
|
|
2448
|
+
{ [_h]: ["POST", "/sip-media-applications/{SipMediaApplicationId}/calls/{TransactionId}", 202] }, () => UpdateSipMediaApplicationCallRequest$, () => UpdateSipMediaApplicationCallResponse$
|
|
2449
|
+
];
|
|
2450
|
+
var UpdateSipRule$ = [9, n0, _USR,
|
|
2451
|
+
{ [_h]: ["PUT", "/sip-rules/{SipRuleId}", 202] }, () => UpdateSipRuleRequest$, () => UpdateSipRuleResponse$
|
|
2452
|
+
];
|
|
2453
|
+
var UpdateVoiceConnector$ = [9, n0, _UVC,
|
|
2454
|
+
{ [_h]: ["PUT", "/voice-connectors/{VoiceConnectorId}", 200] }, () => UpdateVoiceConnectorRequest$, () => UpdateVoiceConnectorResponse$
|
|
2455
|
+
];
|
|
2456
|
+
var UpdateVoiceConnectorGroup$ = [9, n0, _UVCG,
|
|
2457
|
+
{ [_h]: ["PUT", "/voice-connector-groups/{VoiceConnectorGroupId}", 202] }, () => UpdateVoiceConnectorGroupRequest$, () => UpdateVoiceConnectorGroupResponse$
|
|
2458
|
+
];
|
|
2459
|
+
var UpdateVoiceProfile$ = [9, n0, _UVP,
|
|
2460
|
+
{ [_h]: ["PUT", "/voice-profiles/{VoiceProfileId}", 200] }, () => UpdateVoiceProfileRequest$, () => UpdateVoiceProfileResponse$
|
|
2461
|
+
];
|
|
2462
|
+
var UpdateVoiceProfileDomain$ = [9, n0, _UVPD,
|
|
2463
|
+
{ [_h]: ["PUT", "/voice-profile-domains/{VoiceProfileDomainId}", 200] }, () => UpdateVoiceProfileDomainRequest$, () => UpdateVoiceProfileDomainResponse$
|
|
2464
|
+
];
|
|
2465
|
+
var ValidateE911Address$ = [9, n0, _VEA,
|
|
2466
|
+
{ [_h]: ["POST", "/emergency-calling/address", 202] }, () => ValidateE911AddressRequest$, () => ValidateE911AddressResponse$
|
|
2467
|
+
];
|
|
2468
|
+
|
|
2469
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2470
|
+
return {
|
|
2471
|
+
apiVersion: "2022-08-03",
|
|
2472
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2473
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2474
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2475
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2476
|
+
extensions: config?.extensions ?? [],
|
|
2477
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultChimeSDKVoiceHttpAuthSchemeProvider,
|
|
2478
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2479
|
+
{
|
|
2480
|
+
schemeId: "aws.auth#sigv4",
|
|
2481
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2482
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2483
|
+
},
|
|
2484
|
+
],
|
|
2485
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2486
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2487
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2488
|
+
defaultNamespace: "com.amazonaws.chimesdkvoice",
|
|
2489
|
+
errorTypeRegistries,
|
|
2490
|
+
version: "2022-08-03",
|
|
2491
|
+
serviceTarget: "ChimeSDKTelephonyService",
|
|
2492
|
+
},
|
|
2493
|
+
serviceId: config?.serviceId ?? "Chime SDK Voice",
|
|
2494
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2495
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2496
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2497
|
+
};
|
|
2498
|
+
};
|
|
2499
|
+
|
|
2500
|
+
const getRuntimeConfig = (config) => {
|
|
2501
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2502
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2503
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2504
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2505
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2506
|
+
const loaderConfig = {
|
|
2507
|
+
profile: config?.profile,
|
|
2508
|
+
logger: clientSharedValues.logger,
|
|
2509
|
+
};
|
|
2510
|
+
return {
|
|
2511
|
+
...clientSharedValues,
|
|
2512
|
+
...config,
|
|
2513
|
+
runtime: "node",
|
|
2514
|
+
defaultsMode,
|
|
2515
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2516
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2517
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2518
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2519
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2520
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2521
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2522
|
+
retryMode: config?.retryMode ??
|
|
2523
|
+
loadConfig({
|
|
2524
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2525
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2526
|
+
}, config),
|
|
2527
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2528
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2529
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2530
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2531
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2532
|
+
};
|
|
2533
|
+
};
|
|
2534
|
+
|
|
34
2535
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2536
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2537
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1544,128 +4045,466 @@ const LanguageCode = {
|
|
|
1544
4045
|
EN_US: "en-US",
|
|
1545
4046
|
};
|
|
1546
4047
|
|
|
4048
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4049
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
4050
|
+
exports.Address$ = Address$;
|
|
1547
4051
|
exports.AlexaSkillStatus = AlexaSkillStatus;
|
|
4052
|
+
exports.AssociatePhoneNumbersWithVoiceConnector$ = AssociatePhoneNumbersWithVoiceConnector$;
|
|
1548
4053
|
exports.AssociatePhoneNumbersWithVoiceConnectorCommand = AssociatePhoneNumbersWithVoiceConnectorCommand;
|
|
4054
|
+
exports.AssociatePhoneNumbersWithVoiceConnectorGroup$ = AssociatePhoneNumbersWithVoiceConnectorGroup$;
|
|
1549
4055
|
exports.AssociatePhoneNumbersWithVoiceConnectorGroupCommand = AssociatePhoneNumbersWithVoiceConnectorGroupCommand;
|
|
4056
|
+
exports.AssociatePhoneNumbersWithVoiceConnectorGroupRequest$ = AssociatePhoneNumbersWithVoiceConnectorGroupRequest$;
|
|
4057
|
+
exports.AssociatePhoneNumbersWithVoiceConnectorGroupResponse$ = AssociatePhoneNumbersWithVoiceConnectorGroupResponse$;
|
|
4058
|
+
exports.AssociatePhoneNumbersWithVoiceConnectorRequest$ = AssociatePhoneNumbersWithVoiceConnectorRequest$;
|
|
4059
|
+
exports.AssociatePhoneNumbersWithVoiceConnectorResponse$ = AssociatePhoneNumbersWithVoiceConnectorResponse$;
|
|
4060
|
+
exports.BadRequestException = BadRequestException;
|
|
4061
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
4062
|
+
exports.BatchDeletePhoneNumber$ = BatchDeletePhoneNumber$;
|
|
1550
4063
|
exports.BatchDeletePhoneNumberCommand = BatchDeletePhoneNumberCommand;
|
|
4064
|
+
exports.BatchDeletePhoneNumberRequest$ = BatchDeletePhoneNumberRequest$;
|
|
4065
|
+
exports.BatchDeletePhoneNumberResponse$ = BatchDeletePhoneNumberResponse$;
|
|
4066
|
+
exports.BatchUpdatePhoneNumber$ = BatchUpdatePhoneNumber$;
|
|
1551
4067
|
exports.BatchUpdatePhoneNumberCommand = BatchUpdatePhoneNumberCommand;
|
|
4068
|
+
exports.BatchUpdatePhoneNumberRequest$ = BatchUpdatePhoneNumberRequest$;
|
|
4069
|
+
exports.BatchUpdatePhoneNumberResponse$ = BatchUpdatePhoneNumberResponse$;
|
|
4070
|
+
exports.CallDetails$ = CallDetails$;
|
|
1552
4071
|
exports.CallLegType = CallLegType;
|
|
1553
4072
|
exports.CallingNameStatus = CallingNameStatus;
|
|
4073
|
+
exports.CandidateAddress$ = CandidateAddress$;
|
|
1554
4074
|
exports.Capability = Capability;
|
|
1555
4075
|
exports.ChimeSDKVoice = ChimeSDKVoice;
|
|
1556
4076
|
exports.ChimeSDKVoiceClient = ChimeSDKVoiceClient;
|
|
4077
|
+
exports.ChimeSDKVoiceServiceException = ChimeSDKVoiceServiceException;
|
|
4078
|
+
exports.ChimeSDKVoiceServiceException$ = ChimeSDKVoiceServiceException$;
|
|
4079
|
+
exports.ConflictException = ConflictException;
|
|
4080
|
+
exports.ConflictException$ = ConflictException$;
|
|
1557
4081
|
exports.ContactCenterSystemType = ContactCenterSystemType;
|
|
4082
|
+
exports.CreatePhoneNumberOrder$ = CreatePhoneNumberOrder$;
|
|
1558
4083
|
exports.CreatePhoneNumberOrderCommand = CreatePhoneNumberOrderCommand;
|
|
4084
|
+
exports.CreatePhoneNumberOrderRequest$ = CreatePhoneNumberOrderRequest$;
|
|
4085
|
+
exports.CreatePhoneNumberOrderResponse$ = CreatePhoneNumberOrderResponse$;
|
|
4086
|
+
exports.CreateProxySession$ = CreateProxySession$;
|
|
1559
4087
|
exports.CreateProxySessionCommand = CreateProxySessionCommand;
|
|
4088
|
+
exports.CreateProxySessionRequest$ = CreateProxySessionRequest$;
|
|
4089
|
+
exports.CreateProxySessionResponse$ = CreateProxySessionResponse$;
|
|
4090
|
+
exports.CreateSipMediaApplication$ = CreateSipMediaApplication$;
|
|
4091
|
+
exports.CreateSipMediaApplicationCall$ = CreateSipMediaApplicationCall$;
|
|
1560
4092
|
exports.CreateSipMediaApplicationCallCommand = CreateSipMediaApplicationCallCommand;
|
|
4093
|
+
exports.CreateSipMediaApplicationCallRequest$ = CreateSipMediaApplicationCallRequest$;
|
|
4094
|
+
exports.CreateSipMediaApplicationCallResponse$ = CreateSipMediaApplicationCallResponse$;
|
|
1561
4095
|
exports.CreateSipMediaApplicationCommand = CreateSipMediaApplicationCommand;
|
|
4096
|
+
exports.CreateSipMediaApplicationRequest$ = CreateSipMediaApplicationRequest$;
|
|
4097
|
+
exports.CreateSipMediaApplicationResponse$ = CreateSipMediaApplicationResponse$;
|
|
4098
|
+
exports.CreateSipRule$ = CreateSipRule$;
|
|
1562
4099
|
exports.CreateSipRuleCommand = CreateSipRuleCommand;
|
|
4100
|
+
exports.CreateSipRuleRequest$ = CreateSipRuleRequest$;
|
|
4101
|
+
exports.CreateSipRuleResponse$ = CreateSipRuleResponse$;
|
|
4102
|
+
exports.CreateVoiceConnector$ = CreateVoiceConnector$;
|
|
1563
4103
|
exports.CreateVoiceConnectorCommand = CreateVoiceConnectorCommand;
|
|
4104
|
+
exports.CreateVoiceConnectorGroup$ = CreateVoiceConnectorGroup$;
|
|
1564
4105
|
exports.CreateVoiceConnectorGroupCommand = CreateVoiceConnectorGroupCommand;
|
|
4106
|
+
exports.CreateVoiceConnectorGroupRequest$ = CreateVoiceConnectorGroupRequest$;
|
|
4107
|
+
exports.CreateVoiceConnectorGroupResponse$ = CreateVoiceConnectorGroupResponse$;
|
|
4108
|
+
exports.CreateVoiceConnectorRequest$ = CreateVoiceConnectorRequest$;
|
|
4109
|
+
exports.CreateVoiceConnectorResponse$ = CreateVoiceConnectorResponse$;
|
|
4110
|
+
exports.CreateVoiceProfile$ = CreateVoiceProfile$;
|
|
1565
4111
|
exports.CreateVoiceProfileCommand = CreateVoiceProfileCommand;
|
|
4112
|
+
exports.CreateVoiceProfileDomain$ = CreateVoiceProfileDomain$;
|
|
1566
4113
|
exports.CreateVoiceProfileDomainCommand = CreateVoiceProfileDomainCommand;
|
|
4114
|
+
exports.CreateVoiceProfileDomainRequest$ = CreateVoiceProfileDomainRequest$;
|
|
4115
|
+
exports.CreateVoiceProfileDomainResponse$ = CreateVoiceProfileDomainResponse$;
|
|
4116
|
+
exports.CreateVoiceProfileRequest$ = CreateVoiceProfileRequest$;
|
|
4117
|
+
exports.CreateVoiceProfileResponse$ = CreateVoiceProfileResponse$;
|
|
4118
|
+
exports.Credential$ = Credential$;
|
|
4119
|
+
exports.DNISEmergencyCallingConfiguration$ = DNISEmergencyCallingConfiguration$;
|
|
4120
|
+
exports.DeletePhoneNumber$ = DeletePhoneNumber$;
|
|
1567
4121
|
exports.DeletePhoneNumberCommand = DeletePhoneNumberCommand;
|
|
4122
|
+
exports.DeletePhoneNumberRequest$ = DeletePhoneNumberRequest$;
|
|
4123
|
+
exports.DeleteProxySession$ = DeleteProxySession$;
|
|
1568
4124
|
exports.DeleteProxySessionCommand = DeleteProxySessionCommand;
|
|
4125
|
+
exports.DeleteProxySessionRequest$ = DeleteProxySessionRequest$;
|
|
4126
|
+
exports.DeleteSipMediaApplication$ = DeleteSipMediaApplication$;
|
|
1569
4127
|
exports.DeleteSipMediaApplicationCommand = DeleteSipMediaApplicationCommand;
|
|
4128
|
+
exports.DeleteSipMediaApplicationRequest$ = DeleteSipMediaApplicationRequest$;
|
|
4129
|
+
exports.DeleteSipRule$ = DeleteSipRule$;
|
|
1570
4130
|
exports.DeleteSipRuleCommand = DeleteSipRuleCommand;
|
|
4131
|
+
exports.DeleteSipRuleRequest$ = DeleteSipRuleRequest$;
|
|
4132
|
+
exports.DeleteVoiceConnector$ = DeleteVoiceConnector$;
|
|
1571
4133
|
exports.DeleteVoiceConnectorCommand = DeleteVoiceConnectorCommand;
|
|
4134
|
+
exports.DeleteVoiceConnectorEmergencyCallingConfiguration$ = DeleteVoiceConnectorEmergencyCallingConfiguration$;
|
|
1572
4135
|
exports.DeleteVoiceConnectorEmergencyCallingConfigurationCommand = DeleteVoiceConnectorEmergencyCallingConfigurationCommand;
|
|
4136
|
+
exports.DeleteVoiceConnectorEmergencyCallingConfigurationRequest$ = DeleteVoiceConnectorEmergencyCallingConfigurationRequest$;
|
|
4137
|
+
exports.DeleteVoiceConnectorExternalSystemsConfiguration$ = DeleteVoiceConnectorExternalSystemsConfiguration$;
|
|
1573
4138
|
exports.DeleteVoiceConnectorExternalSystemsConfigurationCommand = DeleteVoiceConnectorExternalSystemsConfigurationCommand;
|
|
4139
|
+
exports.DeleteVoiceConnectorExternalSystemsConfigurationRequest$ = DeleteVoiceConnectorExternalSystemsConfigurationRequest$;
|
|
4140
|
+
exports.DeleteVoiceConnectorGroup$ = DeleteVoiceConnectorGroup$;
|
|
1574
4141
|
exports.DeleteVoiceConnectorGroupCommand = DeleteVoiceConnectorGroupCommand;
|
|
4142
|
+
exports.DeleteVoiceConnectorGroupRequest$ = DeleteVoiceConnectorGroupRequest$;
|
|
4143
|
+
exports.DeleteVoiceConnectorOrigination$ = DeleteVoiceConnectorOrigination$;
|
|
1575
4144
|
exports.DeleteVoiceConnectorOriginationCommand = DeleteVoiceConnectorOriginationCommand;
|
|
4145
|
+
exports.DeleteVoiceConnectorOriginationRequest$ = DeleteVoiceConnectorOriginationRequest$;
|
|
4146
|
+
exports.DeleteVoiceConnectorProxy$ = DeleteVoiceConnectorProxy$;
|
|
1576
4147
|
exports.DeleteVoiceConnectorProxyCommand = DeleteVoiceConnectorProxyCommand;
|
|
4148
|
+
exports.DeleteVoiceConnectorProxyRequest$ = DeleteVoiceConnectorProxyRequest$;
|
|
4149
|
+
exports.DeleteVoiceConnectorRequest$ = DeleteVoiceConnectorRequest$;
|
|
4150
|
+
exports.DeleteVoiceConnectorStreamingConfiguration$ = DeleteVoiceConnectorStreamingConfiguration$;
|
|
1577
4151
|
exports.DeleteVoiceConnectorStreamingConfigurationCommand = DeleteVoiceConnectorStreamingConfigurationCommand;
|
|
4152
|
+
exports.DeleteVoiceConnectorStreamingConfigurationRequest$ = DeleteVoiceConnectorStreamingConfigurationRequest$;
|
|
4153
|
+
exports.DeleteVoiceConnectorTermination$ = DeleteVoiceConnectorTermination$;
|
|
1578
4154
|
exports.DeleteVoiceConnectorTerminationCommand = DeleteVoiceConnectorTerminationCommand;
|
|
4155
|
+
exports.DeleteVoiceConnectorTerminationCredentials$ = DeleteVoiceConnectorTerminationCredentials$;
|
|
1579
4156
|
exports.DeleteVoiceConnectorTerminationCredentialsCommand = DeleteVoiceConnectorTerminationCredentialsCommand;
|
|
4157
|
+
exports.DeleteVoiceConnectorTerminationCredentialsRequest$ = DeleteVoiceConnectorTerminationCredentialsRequest$;
|
|
4158
|
+
exports.DeleteVoiceConnectorTerminationRequest$ = DeleteVoiceConnectorTerminationRequest$;
|
|
4159
|
+
exports.DeleteVoiceProfile$ = DeleteVoiceProfile$;
|
|
1580
4160
|
exports.DeleteVoiceProfileCommand = DeleteVoiceProfileCommand;
|
|
4161
|
+
exports.DeleteVoiceProfileDomain$ = DeleteVoiceProfileDomain$;
|
|
1581
4162
|
exports.DeleteVoiceProfileDomainCommand = DeleteVoiceProfileDomainCommand;
|
|
4163
|
+
exports.DeleteVoiceProfileDomainRequest$ = DeleteVoiceProfileDomainRequest$;
|
|
4164
|
+
exports.DeleteVoiceProfileRequest$ = DeleteVoiceProfileRequest$;
|
|
4165
|
+
exports.DisassociatePhoneNumbersFromVoiceConnector$ = DisassociatePhoneNumbersFromVoiceConnector$;
|
|
1582
4166
|
exports.DisassociatePhoneNumbersFromVoiceConnectorCommand = DisassociatePhoneNumbersFromVoiceConnectorCommand;
|
|
4167
|
+
exports.DisassociatePhoneNumbersFromVoiceConnectorGroup$ = DisassociatePhoneNumbersFromVoiceConnectorGroup$;
|
|
1583
4168
|
exports.DisassociatePhoneNumbersFromVoiceConnectorGroupCommand = DisassociatePhoneNumbersFromVoiceConnectorGroupCommand;
|
|
4169
|
+
exports.DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$ = DisassociatePhoneNumbersFromVoiceConnectorGroupRequest$;
|
|
4170
|
+
exports.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$ = DisassociatePhoneNumbersFromVoiceConnectorGroupResponse$;
|
|
4171
|
+
exports.DisassociatePhoneNumbersFromVoiceConnectorRequest$ = DisassociatePhoneNumbersFromVoiceConnectorRequest$;
|
|
4172
|
+
exports.DisassociatePhoneNumbersFromVoiceConnectorResponse$ = DisassociatePhoneNumbersFromVoiceConnectorResponse$;
|
|
4173
|
+
exports.EmergencyCallingConfiguration$ = EmergencyCallingConfiguration$;
|
|
1584
4174
|
exports.ErrorCode = ErrorCode;
|
|
4175
|
+
exports.ExternalSystemsConfiguration$ = ExternalSystemsConfiguration$;
|
|
4176
|
+
exports.ForbiddenException = ForbiddenException;
|
|
4177
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
1585
4178
|
exports.GeoMatchLevel = GeoMatchLevel;
|
|
4179
|
+
exports.GeoMatchParams$ = GeoMatchParams$;
|
|
4180
|
+
exports.GetGlobalSettings$ = GetGlobalSettings$;
|
|
1586
4181
|
exports.GetGlobalSettingsCommand = GetGlobalSettingsCommand;
|
|
4182
|
+
exports.GetGlobalSettingsResponse$ = GetGlobalSettingsResponse$;
|
|
4183
|
+
exports.GetPhoneNumber$ = GetPhoneNumber$;
|
|
1587
4184
|
exports.GetPhoneNumberCommand = GetPhoneNumberCommand;
|
|
4185
|
+
exports.GetPhoneNumberOrder$ = GetPhoneNumberOrder$;
|
|
1588
4186
|
exports.GetPhoneNumberOrderCommand = GetPhoneNumberOrderCommand;
|
|
4187
|
+
exports.GetPhoneNumberOrderRequest$ = GetPhoneNumberOrderRequest$;
|
|
4188
|
+
exports.GetPhoneNumberOrderResponse$ = GetPhoneNumberOrderResponse$;
|
|
4189
|
+
exports.GetPhoneNumberRequest$ = GetPhoneNumberRequest$;
|
|
4190
|
+
exports.GetPhoneNumberResponse$ = GetPhoneNumberResponse$;
|
|
4191
|
+
exports.GetPhoneNumberSettings$ = GetPhoneNumberSettings$;
|
|
1589
4192
|
exports.GetPhoneNumberSettingsCommand = GetPhoneNumberSettingsCommand;
|
|
4193
|
+
exports.GetPhoneNumberSettingsResponse$ = GetPhoneNumberSettingsResponse$;
|
|
4194
|
+
exports.GetProxySession$ = GetProxySession$;
|
|
1590
4195
|
exports.GetProxySessionCommand = GetProxySessionCommand;
|
|
4196
|
+
exports.GetProxySessionRequest$ = GetProxySessionRequest$;
|
|
4197
|
+
exports.GetProxySessionResponse$ = GetProxySessionResponse$;
|
|
4198
|
+
exports.GetSipMediaApplication$ = GetSipMediaApplication$;
|
|
4199
|
+
exports.GetSipMediaApplicationAlexaSkillConfiguration$ = GetSipMediaApplicationAlexaSkillConfiguration$;
|
|
1591
4200
|
exports.GetSipMediaApplicationAlexaSkillConfigurationCommand = GetSipMediaApplicationAlexaSkillConfigurationCommand;
|
|
4201
|
+
exports.GetSipMediaApplicationAlexaSkillConfigurationRequest$ = GetSipMediaApplicationAlexaSkillConfigurationRequest$;
|
|
4202
|
+
exports.GetSipMediaApplicationAlexaSkillConfigurationResponse$ = GetSipMediaApplicationAlexaSkillConfigurationResponse$;
|
|
1592
4203
|
exports.GetSipMediaApplicationCommand = GetSipMediaApplicationCommand;
|
|
4204
|
+
exports.GetSipMediaApplicationLoggingConfiguration$ = GetSipMediaApplicationLoggingConfiguration$;
|
|
1593
4205
|
exports.GetSipMediaApplicationLoggingConfigurationCommand = GetSipMediaApplicationLoggingConfigurationCommand;
|
|
4206
|
+
exports.GetSipMediaApplicationLoggingConfigurationRequest$ = GetSipMediaApplicationLoggingConfigurationRequest$;
|
|
4207
|
+
exports.GetSipMediaApplicationLoggingConfigurationResponse$ = GetSipMediaApplicationLoggingConfigurationResponse$;
|
|
4208
|
+
exports.GetSipMediaApplicationRequest$ = GetSipMediaApplicationRequest$;
|
|
4209
|
+
exports.GetSipMediaApplicationResponse$ = GetSipMediaApplicationResponse$;
|
|
4210
|
+
exports.GetSipRule$ = GetSipRule$;
|
|
1594
4211
|
exports.GetSipRuleCommand = GetSipRuleCommand;
|
|
4212
|
+
exports.GetSipRuleRequest$ = GetSipRuleRequest$;
|
|
4213
|
+
exports.GetSipRuleResponse$ = GetSipRuleResponse$;
|
|
4214
|
+
exports.GetSpeakerSearchTask$ = GetSpeakerSearchTask$;
|
|
1595
4215
|
exports.GetSpeakerSearchTaskCommand = GetSpeakerSearchTaskCommand;
|
|
4216
|
+
exports.GetSpeakerSearchTaskRequest$ = GetSpeakerSearchTaskRequest$;
|
|
4217
|
+
exports.GetSpeakerSearchTaskResponse$ = GetSpeakerSearchTaskResponse$;
|
|
4218
|
+
exports.GetVoiceConnector$ = GetVoiceConnector$;
|
|
1596
4219
|
exports.GetVoiceConnectorCommand = GetVoiceConnectorCommand;
|
|
4220
|
+
exports.GetVoiceConnectorEmergencyCallingConfiguration$ = GetVoiceConnectorEmergencyCallingConfiguration$;
|
|
1597
4221
|
exports.GetVoiceConnectorEmergencyCallingConfigurationCommand = GetVoiceConnectorEmergencyCallingConfigurationCommand;
|
|
4222
|
+
exports.GetVoiceConnectorEmergencyCallingConfigurationRequest$ = GetVoiceConnectorEmergencyCallingConfigurationRequest$;
|
|
4223
|
+
exports.GetVoiceConnectorEmergencyCallingConfigurationResponse$ = GetVoiceConnectorEmergencyCallingConfigurationResponse$;
|
|
4224
|
+
exports.GetVoiceConnectorExternalSystemsConfiguration$ = GetVoiceConnectorExternalSystemsConfiguration$;
|
|
1598
4225
|
exports.GetVoiceConnectorExternalSystemsConfigurationCommand = GetVoiceConnectorExternalSystemsConfigurationCommand;
|
|
4226
|
+
exports.GetVoiceConnectorExternalSystemsConfigurationRequest$ = GetVoiceConnectorExternalSystemsConfigurationRequest$;
|
|
4227
|
+
exports.GetVoiceConnectorExternalSystemsConfigurationResponse$ = GetVoiceConnectorExternalSystemsConfigurationResponse$;
|
|
4228
|
+
exports.GetVoiceConnectorGroup$ = GetVoiceConnectorGroup$;
|
|
1599
4229
|
exports.GetVoiceConnectorGroupCommand = GetVoiceConnectorGroupCommand;
|
|
4230
|
+
exports.GetVoiceConnectorGroupRequest$ = GetVoiceConnectorGroupRequest$;
|
|
4231
|
+
exports.GetVoiceConnectorGroupResponse$ = GetVoiceConnectorGroupResponse$;
|
|
4232
|
+
exports.GetVoiceConnectorLoggingConfiguration$ = GetVoiceConnectorLoggingConfiguration$;
|
|
1600
4233
|
exports.GetVoiceConnectorLoggingConfigurationCommand = GetVoiceConnectorLoggingConfigurationCommand;
|
|
4234
|
+
exports.GetVoiceConnectorLoggingConfigurationRequest$ = GetVoiceConnectorLoggingConfigurationRequest$;
|
|
4235
|
+
exports.GetVoiceConnectorLoggingConfigurationResponse$ = GetVoiceConnectorLoggingConfigurationResponse$;
|
|
4236
|
+
exports.GetVoiceConnectorOrigination$ = GetVoiceConnectorOrigination$;
|
|
1601
4237
|
exports.GetVoiceConnectorOriginationCommand = GetVoiceConnectorOriginationCommand;
|
|
4238
|
+
exports.GetVoiceConnectorOriginationRequest$ = GetVoiceConnectorOriginationRequest$;
|
|
4239
|
+
exports.GetVoiceConnectorOriginationResponse$ = GetVoiceConnectorOriginationResponse$;
|
|
4240
|
+
exports.GetVoiceConnectorProxy$ = GetVoiceConnectorProxy$;
|
|
1602
4241
|
exports.GetVoiceConnectorProxyCommand = GetVoiceConnectorProxyCommand;
|
|
4242
|
+
exports.GetVoiceConnectorProxyRequest$ = GetVoiceConnectorProxyRequest$;
|
|
4243
|
+
exports.GetVoiceConnectorProxyResponse$ = GetVoiceConnectorProxyResponse$;
|
|
4244
|
+
exports.GetVoiceConnectorRequest$ = GetVoiceConnectorRequest$;
|
|
4245
|
+
exports.GetVoiceConnectorResponse$ = GetVoiceConnectorResponse$;
|
|
4246
|
+
exports.GetVoiceConnectorStreamingConfiguration$ = GetVoiceConnectorStreamingConfiguration$;
|
|
1603
4247
|
exports.GetVoiceConnectorStreamingConfigurationCommand = GetVoiceConnectorStreamingConfigurationCommand;
|
|
4248
|
+
exports.GetVoiceConnectorStreamingConfigurationRequest$ = GetVoiceConnectorStreamingConfigurationRequest$;
|
|
4249
|
+
exports.GetVoiceConnectorStreamingConfigurationResponse$ = GetVoiceConnectorStreamingConfigurationResponse$;
|
|
4250
|
+
exports.GetVoiceConnectorTermination$ = GetVoiceConnectorTermination$;
|
|
1604
4251
|
exports.GetVoiceConnectorTerminationCommand = GetVoiceConnectorTerminationCommand;
|
|
4252
|
+
exports.GetVoiceConnectorTerminationHealth$ = GetVoiceConnectorTerminationHealth$;
|
|
1605
4253
|
exports.GetVoiceConnectorTerminationHealthCommand = GetVoiceConnectorTerminationHealthCommand;
|
|
4254
|
+
exports.GetVoiceConnectorTerminationHealthRequest$ = GetVoiceConnectorTerminationHealthRequest$;
|
|
4255
|
+
exports.GetVoiceConnectorTerminationHealthResponse$ = GetVoiceConnectorTerminationHealthResponse$;
|
|
4256
|
+
exports.GetVoiceConnectorTerminationRequest$ = GetVoiceConnectorTerminationRequest$;
|
|
4257
|
+
exports.GetVoiceConnectorTerminationResponse$ = GetVoiceConnectorTerminationResponse$;
|
|
4258
|
+
exports.GetVoiceProfile$ = GetVoiceProfile$;
|
|
1606
4259
|
exports.GetVoiceProfileCommand = GetVoiceProfileCommand;
|
|
4260
|
+
exports.GetVoiceProfileDomain$ = GetVoiceProfileDomain$;
|
|
1607
4261
|
exports.GetVoiceProfileDomainCommand = GetVoiceProfileDomainCommand;
|
|
4262
|
+
exports.GetVoiceProfileDomainRequest$ = GetVoiceProfileDomainRequest$;
|
|
4263
|
+
exports.GetVoiceProfileDomainResponse$ = GetVoiceProfileDomainResponse$;
|
|
4264
|
+
exports.GetVoiceProfileRequest$ = GetVoiceProfileRequest$;
|
|
4265
|
+
exports.GetVoiceProfileResponse$ = GetVoiceProfileResponse$;
|
|
4266
|
+
exports.GetVoiceToneAnalysisTask$ = GetVoiceToneAnalysisTask$;
|
|
1608
4267
|
exports.GetVoiceToneAnalysisTaskCommand = GetVoiceToneAnalysisTaskCommand;
|
|
4268
|
+
exports.GetVoiceToneAnalysisTaskRequest$ = GetVoiceToneAnalysisTaskRequest$;
|
|
4269
|
+
exports.GetVoiceToneAnalysisTaskResponse$ = GetVoiceToneAnalysisTaskResponse$;
|
|
4270
|
+
exports.GoneException = GoneException;
|
|
4271
|
+
exports.GoneException$ = GoneException$;
|
|
1609
4272
|
exports.LanguageCode = LanguageCode;
|
|
4273
|
+
exports.ListAvailableVoiceConnectorRegions$ = ListAvailableVoiceConnectorRegions$;
|
|
1610
4274
|
exports.ListAvailableVoiceConnectorRegionsCommand = ListAvailableVoiceConnectorRegionsCommand;
|
|
4275
|
+
exports.ListAvailableVoiceConnectorRegionsResponse$ = ListAvailableVoiceConnectorRegionsResponse$;
|
|
4276
|
+
exports.ListPhoneNumberOrders$ = ListPhoneNumberOrders$;
|
|
1611
4277
|
exports.ListPhoneNumberOrdersCommand = ListPhoneNumberOrdersCommand;
|
|
4278
|
+
exports.ListPhoneNumberOrdersRequest$ = ListPhoneNumberOrdersRequest$;
|
|
4279
|
+
exports.ListPhoneNumberOrdersResponse$ = ListPhoneNumberOrdersResponse$;
|
|
4280
|
+
exports.ListPhoneNumbers$ = ListPhoneNumbers$;
|
|
1612
4281
|
exports.ListPhoneNumbersCommand = ListPhoneNumbersCommand;
|
|
4282
|
+
exports.ListPhoneNumbersRequest$ = ListPhoneNumbersRequest$;
|
|
4283
|
+
exports.ListPhoneNumbersResponse$ = ListPhoneNumbersResponse$;
|
|
4284
|
+
exports.ListProxySessions$ = ListProxySessions$;
|
|
1613
4285
|
exports.ListProxySessionsCommand = ListProxySessionsCommand;
|
|
4286
|
+
exports.ListProxySessionsRequest$ = ListProxySessionsRequest$;
|
|
4287
|
+
exports.ListProxySessionsResponse$ = ListProxySessionsResponse$;
|
|
4288
|
+
exports.ListSipMediaApplications$ = ListSipMediaApplications$;
|
|
1614
4289
|
exports.ListSipMediaApplicationsCommand = ListSipMediaApplicationsCommand;
|
|
4290
|
+
exports.ListSipMediaApplicationsRequest$ = ListSipMediaApplicationsRequest$;
|
|
4291
|
+
exports.ListSipMediaApplicationsResponse$ = ListSipMediaApplicationsResponse$;
|
|
4292
|
+
exports.ListSipRules$ = ListSipRules$;
|
|
1615
4293
|
exports.ListSipRulesCommand = ListSipRulesCommand;
|
|
4294
|
+
exports.ListSipRulesRequest$ = ListSipRulesRequest$;
|
|
4295
|
+
exports.ListSipRulesResponse$ = ListSipRulesResponse$;
|
|
4296
|
+
exports.ListSupportedPhoneNumberCountries$ = ListSupportedPhoneNumberCountries$;
|
|
1616
4297
|
exports.ListSupportedPhoneNumberCountriesCommand = ListSupportedPhoneNumberCountriesCommand;
|
|
4298
|
+
exports.ListSupportedPhoneNumberCountriesRequest$ = ListSupportedPhoneNumberCountriesRequest$;
|
|
4299
|
+
exports.ListSupportedPhoneNumberCountriesResponse$ = ListSupportedPhoneNumberCountriesResponse$;
|
|
4300
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1617
4301
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4302
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4303
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4304
|
+
exports.ListVoiceConnectorGroups$ = ListVoiceConnectorGroups$;
|
|
1618
4305
|
exports.ListVoiceConnectorGroupsCommand = ListVoiceConnectorGroupsCommand;
|
|
4306
|
+
exports.ListVoiceConnectorGroupsRequest$ = ListVoiceConnectorGroupsRequest$;
|
|
4307
|
+
exports.ListVoiceConnectorGroupsResponse$ = ListVoiceConnectorGroupsResponse$;
|
|
4308
|
+
exports.ListVoiceConnectorTerminationCredentials$ = ListVoiceConnectorTerminationCredentials$;
|
|
1619
4309
|
exports.ListVoiceConnectorTerminationCredentialsCommand = ListVoiceConnectorTerminationCredentialsCommand;
|
|
4310
|
+
exports.ListVoiceConnectorTerminationCredentialsRequest$ = ListVoiceConnectorTerminationCredentialsRequest$;
|
|
4311
|
+
exports.ListVoiceConnectorTerminationCredentialsResponse$ = ListVoiceConnectorTerminationCredentialsResponse$;
|
|
4312
|
+
exports.ListVoiceConnectors$ = ListVoiceConnectors$;
|
|
1620
4313
|
exports.ListVoiceConnectorsCommand = ListVoiceConnectorsCommand;
|
|
4314
|
+
exports.ListVoiceConnectorsRequest$ = ListVoiceConnectorsRequest$;
|
|
4315
|
+
exports.ListVoiceConnectorsResponse$ = ListVoiceConnectorsResponse$;
|
|
4316
|
+
exports.ListVoiceProfileDomains$ = ListVoiceProfileDomains$;
|
|
1621
4317
|
exports.ListVoiceProfileDomainsCommand = ListVoiceProfileDomainsCommand;
|
|
4318
|
+
exports.ListVoiceProfileDomainsRequest$ = ListVoiceProfileDomainsRequest$;
|
|
4319
|
+
exports.ListVoiceProfileDomainsResponse$ = ListVoiceProfileDomainsResponse$;
|
|
4320
|
+
exports.ListVoiceProfiles$ = ListVoiceProfiles$;
|
|
1622
4321
|
exports.ListVoiceProfilesCommand = ListVoiceProfilesCommand;
|
|
4322
|
+
exports.ListVoiceProfilesRequest$ = ListVoiceProfilesRequest$;
|
|
4323
|
+
exports.ListVoiceProfilesResponse$ = ListVoiceProfilesResponse$;
|
|
4324
|
+
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
4325
|
+
exports.MediaInsightsConfiguration$ = MediaInsightsConfiguration$;
|
|
1623
4326
|
exports.NetworkType = NetworkType;
|
|
4327
|
+
exports.NotFoundException = NotFoundException;
|
|
4328
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
1624
4329
|
exports.NotificationTarget = NotificationTarget;
|
|
1625
4330
|
exports.NumberSelectionBehavior = NumberSelectionBehavior;
|
|
4331
|
+
exports.OrderedPhoneNumber$ = OrderedPhoneNumber$;
|
|
1626
4332
|
exports.OrderedPhoneNumberStatus = OrderedPhoneNumberStatus;
|
|
4333
|
+
exports.Origination$ = Origination$;
|
|
4334
|
+
exports.OriginationRoute$ = OriginationRoute$;
|
|
1627
4335
|
exports.OriginationRouteProtocol = OriginationRouteProtocol;
|
|
4336
|
+
exports.Participant$ = Participant$;
|
|
4337
|
+
exports.PhoneNumber$ = PhoneNumber$;
|
|
4338
|
+
exports.PhoneNumberAssociation$ = PhoneNumberAssociation$;
|
|
1628
4339
|
exports.PhoneNumberAssociationName = PhoneNumberAssociationName;
|
|
4340
|
+
exports.PhoneNumberCapabilities$ = PhoneNumberCapabilities$;
|
|
4341
|
+
exports.PhoneNumberCountry$ = PhoneNumberCountry$;
|
|
4342
|
+
exports.PhoneNumberError$ = PhoneNumberError$;
|
|
4343
|
+
exports.PhoneNumberOrder$ = PhoneNumberOrder$;
|
|
1629
4344
|
exports.PhoneNumberOrderStatus = PhoneNumberOrderStatus;
|
|
1630
4345
|
exports.PhoneNumberOrderType = PhoneNumberOrderType;
|
|
1631
4346
|
exports.PhoneNumberProductType = PhoneNumberProductType;
|
|
1632
4347
|
exports.PhoneNumberStatus = PhoneNumberStatus;
|
|
1633
4348
|
exports.PhoneNumberType = PhoneNumberType;
|
|
4349
|
+
exports.Proxy$ = Proxy$;
|
|
4350
|
+
exports.ProxySession$ = ProxySession$;
|
|
1634
4351
|
exports.ProxySessionStatus = ProxySessionStatus;
|
|
4352
|
+
exports.PutSipMediaApplicationAlexaSkillConfiguration$ = PutSipMediaApplicationAlexaSkillConfiguration$;
|
|
1635
4353
|
exports.PutSipMediaApplicationAlexaSkillConfigurationCommand = PutSipMediaApplicationAlexaSkillConfigurationCommand;
|
|
4354
|
+
exports.PutSipMediaApplicationAlexaSkillConfigurationRequest$ = PutSipMediaApplicationAlexaSkillConfigurationRequest$;
|
|
4355
|
+
exports.PutSipMediaApplicationAlexaSkillConfigurationResponse$ = PutSipMediaApplicationAlexaSkillConfigurationResponse$;
|
|
4356
|
+
exports.PutSipMediaApplicationLoggingConfiguration$ = PutSipMediaApplicationLoggingConfiguration$;
|
|
1636
4357
|
exports.PutSipMediaApplicationLoggingConfigurationCommand = PutSipMediaApplicationLoggingConfigurationCommand;
|
|
4358
|
+
exports.PutSipMediaApplicationLoggingConfigurationRequest$ = PutSipMediaApplicationLoggingConfigurationRequest$;
|
|
4359
|
+
exports.PutSipMediaApplicationLoggingConfigurationResponse$ = PutSipMediaApplicationLoggingConfigurationResponse$;
|
|
4360
|
+
exports.PutVoiceConnectorEmergencyCallingConfiguration$ = PutVoiceConnectorEmergencyCallingConfiguration$;
|
|
1637
4361
|
exports.PutVoiceConnectorEmergencyCallingConfigurationCommand = PutVoiceConnectorEmergencyCallingConfigurationCommand;
|
|
4362
|
+
exports.PutVoiceConnectorEmergencyCallingConfigurationRequest$ = PutVoiceConnectorEmergencyCallingConfigurationRequest$;
|
|
4363
|
+
exports.PutVoiceConnectorEmergencyCallingConfigurationResponse$ = PutVoiceConnectorEmergencyCallingConfigurationResponse$;
|
|
4364
|
+
exports.PutVoiceConnectorExternalSystemsConfiguration$ = PutVoiceConnectorExternalSystemsConfiguration$;
|
|
1638
4365
|
exports.PutVoiceConnectorExternalSystemsConfigurationCommand = PutVoiceConnectorExternalSystemsConfigurationCommand;
|
|
4366
|
+
exports.PutVoiceConnectorExternalSystemsConfigurationRequest$ = PutVoiceConnectorExternalSystemsConfigurationRequest$;
|
|
4367
|
+
exports.PutVoiceConnectorExternalSystemsConfigurationResponse$ = PutVoiceConnectorExternalSystemsConfigurationResponse$;
|
|
4368
|
+
exports.PutVoiceConnectorLoggingConfiguration$ = PutVoiceConnectorLoggingConfiguration$;
|
|
1639
4369
|
exports.PutVoiceConnectorLoggingConfigurationCommand = PutVoiceConnectorLoggingConfigurationCommand;
|
|
4370
|
+
exports.PutVoiceConnectorLoggingConfigurationRequest$ = PutVoiceConnectorLoggingConfigurationRequest$;
|
|
4371
|
+
exports.PutVoiceConnectorLoggingConfigurationResponse$ = PutVoiceConnectorLoggingConfigurationResponse$;
|
|
4372
|
+
exports.PutVoiceConnectorOrigination$ = PutVoiceConnectorOrigination$;
|
|
1640
4373
|
exports.PutVoiceConnectorOriginationCommand = PutVoiceConnectorOriginationCommand;
|
|
4374
|
+
exports.PutVoiceConnectorOriginationRequest$ = PutVoiceConnectorOriginationRequest$;
|
|
4375
|
+
exports.PutVoiceConnectorOriginationResponse$ = PutVoiceConnectorOriginationResponse$;
|
|
4376
|
+
exports.PutVoiceConnectorProxy$ = PutVoiceConnectorProxy$;
|
|
1641
4377
|
exports.PutVoiceConnectorProxyCommand = PutVoiceConnectorProxyCommand;
|
|
4378
|
+
exports.PutVoiceConnectorProxyRequest$ = PutVoiceConnectorProxyRequest$;
|
|
4379
|
+
exports.PutVoiceConnectorProxyResponse$ = PutVoiceConnectorProxyResponse$;
|
|
4380
|
+
exports.PutVoiceConnectorStreamingConfiguration$ = PutVoiceConnectorStreamingConfiguration$;
|
|
1642
4381
|
exports.PutVoiceConnectorStreamingConfigurationCommand = PutVoiceConnectorStreamingConfigurationCommand;
|
|
4382
|
+
exports.PutVoiceConnectorStreamingConfigurationRequest$ = PutVoiceConnectorStreamingConfigurationRequest$;
|
|
4383
|
+
exports.PutVoiceConnectorStreamingConfigurationResponse$ = PutVoiceConnectorStreamingConfigurationResponse$;
|
|
4384
|
+
exports.PutVoiceConnectorTermination$ = PutVoiceConnectorTermination$;
|
|
1643
4385
|
exports.PutVoiceConnectorTerminationCommand = PutVoiceConnectorTerminationCommand;
|
|
4386
|
+
exports.PutVoiceConnectorTerminationCredentials$ = PutVoiceConnectorTerminationCredentials$;
|
|
1644
4387
|
exports.PutVoiceConnectorTerminationCredentialsCommand = PutVoiceConnectorTerminationCredentialsCommand;
|
|
4388
|
+
exports.PutVoiceConnectorTerminationCredentialsRequest$ = PutVoiceConnectorTerminationCredentialsRequest$;
|
|
4389
|
+
exports.PutVoiceConnectorTerminationRequest$ = PutVoiceConnectorTerminationRequest$;
|
|
4390
|
+
exports.PutVoiceConnectorTerminationResponse$ = PutVoiceConnectorTerminationResponse$;
|
|
4391
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
4392
|
+
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
4393
|
+
exports.RestorePhoneNumber$ = RestorePhoneNumber$;
|
|
1645
4394
|
exports.RestorePhoneNumberCommand = RestorePhoneNumberCommand;
|
|
4395
|
+
exports.RestorePhoneNumberRequest$ = RestorePhoneNumberRequest$;
|
|
4396
|
+
exports.RestorePhoneNumberResponse$ = RestorePhoneNumberResponse$;
|
|
4397
|
+
exports.SearchAvailablePhoneNumbers$ = SearchAvailablePhoneNumbers$;
|
|
1646
4398
|
exports.SearchAvailablePhoneNumbersCommand = SearchAvailablePhoneNumbersCommand;
|
|
4399
|
+
exports.SearchAvailablePhoneNumbersRequest$ = SearchAvailablePhoneNumbersRequest$;
|
|
4400
|
+
exports.SearchAvailablePhoneNumbersResponse$ = SearchAvailablePhoneNumbersResponse$;
|
|
4401
|
+
exports.ServerSideEncryptionConfiguration$ = ServerSideEncryptionConfiguration$;
|
|
4402
|
+
exports.ServiceFailureException = ServiceFailureException;
|
|
4403
|
+
exports.ServiceFailureException$ = ServiceFailureException$;
|
|
4404
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4405
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1647
4406
|
exports.SessionBorderControllerType = SessionBorderControllerType;
|
|
4407
|
+
exports.SipMediaApplication$ = SipMediaApplication$;
|
|
4408
|
+
exports.SipMediaApplicationAlexaSkillConfiguration$ = SipMediaApplicationAlexaSkillConfiguration$;
|
|
4409
|
+
exports.SipMediaApplicationCall$ = SipMediaApplicationCall$;
|
|
4410
|
+
exports.SipMediaApplicationEndpoint$ = SipMediaApplicationEndpoint$;
|
|
4411
|
+
exports.SipMediaApplicationLoggingConfiguration$ = SipMediaApplicationLoggingConfiguration$;
|
|
4412
|
+
exports.SipRule$ = SipRule$;
|
|
4413
|
+
exports.SipRuleTargetApplication$ = SipRuleTargetApplication$;
|
|
1648
4414
|
exports.SipRuleTriggerType = SipRuleTriggerType;
|
|
4415
|
+
exports.SpeakerSearchDetails$ = SpeakerSearchDetails$;
|
|
4416
|
+
exports.SpeakerSearchResult$ = SpeakerSearchResult$;
|
|
4417
|
+
exports.SpeakerSearchTask$ = SpeakerSearchTask$;
|
|
4418
|
+
exports.StartSpeakerSearchTask$ = StartSpeakerSearchTask$;
|
|
1649
4419
|
exports.StartSpeakerSearchTaskCommand = StartSpeakerSearchTaskCommand;
|
|
4420
|
+
exports.StartSpeakerSearchTaskRequest$ = StartSpeakerSearchTaskRequest$;
|
|
4421
|
+
exports.StartSpeakerSearchTaskResponse$ = StartSpeakerSearchTaskResponse$;
|
|
4422
|
+
exports.StartVoiceToneAnalysisTask$ = StartVoiceToneAnalysisTask$;
|
|
1650
4423
|
exports.StartVoiceToneAnalysisTaskCommand = StartVoiceToneAnalysisTaskCommand;
|
|
4424
|
+
exports.StartVoiceToneAnalysisTaskRequest$ = StartVoiceToneAnalysisTaskRequest$;
|
|
4425
|
+
exports.StartVoiceToneAnalysisTaskResponse$ = StartVoiceToneAnalysisTaskResponse$;
|
|
4426
|
+
exports.StopSpeakerSearchTask$ = StopSpeakerSearchTask$;
|
|
1651
4427
|
exports.StopSpeakerSearchTaskCommand = StopSpeakerSearchTaskCommand;
|
|
4428
|
+
exports.StopSpeakerSearchTaskRequest$ = StopSpeakerSearchTaskRequest$;
|
|
4429
|
+
exports.StopVoiceToneAnalysisTask$ = StopVoiceToneAnalysisTask$;
|
|
1652
4430
|
exports.StopVoiceToneAnalysisTaskCommand = StopVoiceToneAnalysisTaskCommand;
|
|
4431
|
+
exports.StopVoiceToneAnalysisTaskRequest$ = StopVoiceToneAnalysisTaskRequest$;
|
|
4432
|
+
exports.StreamingConfiguration$ = StreamingConfiguration$;
|
|
4433
|
+
exports.StreamingNotificationTarget$ = StreamingNotificationTarget$;
|
|
4434
|
+
exports.Tag$ = Tag$;
|
|
4435
|
+
exports.TagResource$ = TagResource$;
|
|
1653
4436
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4437
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4438
|
+
exports.Termination$ = Termination$;
|
|
4439
|
+
exports.TerminationHealth$ = TerminationHealth$;
|
|
4440
|
+
exports.ThrottledClientException = ThrottledClientException;
|
|
4441
|
+
exports.ThrottledClientException$ = ThrottledClientException$;
|
|
4442
|
+
exports.UnauthorizedClientException = UnauthorizedClientException;
|
|
4443
|
+
exports.UnauthorizedClientException$ = UnauthorizedClientException$;
|
|
4444
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
4445
|
+
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
4446
|
+
exports.UntagResource$ = UntagResource$;
|
|
1654
4447
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4448
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4449
|
+
exports.UpdateGlobalSettings$ = UpdateGlobalSettings$;
|
|
1655
4450
|
exports.UpdateGlobalSettingsCommand = UpdateGlobalSettingsCommand;
|
|
4451
|
+
exports.UpdateGlobalSettingsRequest$ = UpdateGlobalSettingsRequest$;
|
|
4452
|
+
exports.UpdatePhoneNumber$ = UpdatePhoneNumber$;
|
|
1656
4453
|
exports.UpdatePhoneNumberCommand = UpdatePhoneNumberCommand;
|
|
4454
|
+
exports.UpdatePhoneNumberRequest$ = UpdatePhoneNumberRequest$;
|
|
4455
|
+
exports.UpdatePhoneNumberRequestItem$ = UpdatePhoneNumberRequestItem$;
|
|
4456
|
+
exports.UpdatePhoneNumberResponse$ = UpdatePhoneNumberResponse$;
|
|
4457
|
+
exports.UpdatePhoneNumberSettings$ = UpdatePhoneNumberSettings$;
|
|
1657
4458
|
exports.UpdatePhoneNumberSettingsCommand = UpdatePhoneNumberSettingsCommand;
|
|
4459
|
+
exports.UpdatePhoneNumberSettingsRequest$ = UpdatePhoneNumberSettingsRequest$;
|
|
4460
|
+
exports.UpdateProxySession$ = UpdateProxySession$;
|
|
1658
4461
|
exports.UpdateProxySessionCommand = UpdateProxySessionCommand;
|
|
4462
|
+
exports.UpdateProxySessionRequest$ = UpdateProxySessionRequest$;
|
|
4463
|
+
exports.UpdateProxySessionResponse$ = UpdateProxySessionResponse$;
|
|
4464
|
+
exports.UpdateSipMediaApplication$ = UpdateSipMediaApplication$;
|
|
4465
|
+
exports.UpdateSipMediaApplicationCall$ = UpdateSipMediaApplicationCall$;
|
|
1659
4466
|
exports.UpdateSipMediaApplicationCallCommand = UpdateSipMediaApplicationCallCommand;
|
|
4467
|
+
exports.UpdateSipMediaApplicationCallRequest$ = UpdateSipMediaApplicationCallRequest$;
|
|
4468
|
+
exports.UpdateSipMediaApplicationCallResponse$ = UpdateSipMediaApplicationCallResponse$;
|
|
1660
4469
|
exports.UpdateSipMediaApplicationCommand = UpdateSipMediaApplicationCommand;
|
|
4470
|
+
exports.UpdateSipMediaApplicationRequest$ = UpdateSipMediaApplicationRequest$;
|
|
4471
|
+
exports.UpdateSipMediaApplicationResponse$ = UpdateSipMediaApplicationResponse$;
|
|
4472
|
+
exports.UpdateSipRule$ = UpdateSipRule$;
|
|
1661
4473
|
exports.UpdateSipRuleCommand = UpdateSipRuleCommand;
|
|
4474
|
+
exports.UpdateSipRuleRequest$ = UpdateSipRuleRequest$;
|
|
4475
|
+
exports.UpdateSipRuleResponse$ = UpdateSipRuleResponse$;
|
|
4476
|
+
exports.UpdateVoiceConnector$ = UpdateVoiceConnector$;
|
|
1662
4477
|
exports.UpdateVoiceConnectorCommand = UpdateVoiceConnectorCommand;
|
|
4478
|
+
exports.UpdateVoiceConnectorGroup$ = UpdateVoiceConnectorGroup$;
|
|
1663
4479
|
exports.UpdateVoiceConnectorGroupCommand = UpdateVoiceConnectorGroupCommand;
|
|
4480
|
+
exports.UpdateVoiceConnectorGroupRequest$ = UpdateVoiceConnectorGroupRequest$;
|
|
4481
|
+
exports.UpdateVoiceConnectorGroupResponse$ = UpdateVoiceConnectorGroupResponse$;
|
|
4482
|
+
exports.UpdateVoiceConnectorRequest$ = UpdateVoiceConnectorRequest$;
|
|
4483
|
+
exports.UpdateVoiceConnectorResponse$ = UpdateVoiceConnectorResponse$;
|
|
4484
|
+
exports.UpdateVoiceProfile$ = UpdateVoiceProfile$;
|
|
1664
4485
|
exports.UpdateVoiceProfileCommand = UpdateVoiceProfileCommand;
|
|
4486
|
+
exports.UpdateVoiceProfileDomain$ = UpdateVoiceProfileDomain$;
|
|
1665
4487
|
exports.UpdateVoiceProfileDomainCommand = UpdateVoiceProfileDomainCommand;
|
|
4488
|
+
exports.UpdateVoiceProfileDomainRequest$ = UpdateVoiceProfileDomainRequest$;
|
|
4489
|
+
exports.UpdateVoiceProfileDomainResponse$ = UpdateVoiceProfileDomainResponse$;
|
|
4490
|
+
exports.UpdateVoiceProfileRequest$ = UpdateVoiceProfileRequest$;
|
|
4491
|
+
exports.UpdateVoiceProfileResponse$ = UpdateVoiceProfileResponse$;
|
|
4492
|
+
exports.ValidateE911Address$ = ValidateE911Address$;
|
|
1666
4493
|
exports.ValidateE911AddressCommand = ValidateE911AddressCommand;
|
|
4494
|
+
exports.ValidateE911AddressRequest$ = ValidateE911AddressRequest$;
|
|
4495
|
+
exports.ValidateE911AddressResponse$ = ValidateE911AddressResponse$;
|
|
4496
|
+
exports.VoiceConnector$ = VoiceConnector$;
|
|
1667
4497
|
exports.VoiceConnectorAwsRegion = VoiceConnectorAwsRegion;
|
|
4498
|
+
exports.VoiceConnectorGroup$ = VoiceConnectorGroup$;
|
|
1668
4499
|
exports.VoiceConnectorIntegrationType = VoiceConnectorIntegrationType;
|
|
4500
|
+
exports.VoiceConnectorItem$ = VoiceConnectorItem$;
|
|
4501
|
+
exports.VoiceConnectorSettings$ = VoiceConnectorSettings$;
|
|
4502
|
+
exports.VoiceProfile$ = VoiceProfile$;
|
|
4503
|
+
exports.VoiceProfileDomain$ = VoiceProfileDomain$;
|
|
4504
|
+
exports.VoiceProfileDomainSummary$ = VoiceProfileDomainSummary$;
|
|
4505
|
+
exports.VoiceProfileSummary$ = VoiceProfileSummary$;
|
|
4506
|
+
exports.VoiceToneAnalysisTask$ = VoiceToneAnalysisTask$;
|
|
4507
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1669
4508
|
exports.paginateListPhoneNumberOrders = paginateListPhoneNumberOrders;
|
|
1670
4509
|
exports.paginateListPhoneNumbers = paginateListPhoneNumbers;
|
|
1671
4510
|
exports.paginateListProxySessions = paginateListProxySessions;
|