@aws-sdk/client-chime-sdk-voice 3.1137.0 → 3.1138.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 +3 -3
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/ChimeSDKVoice.d.ts +199 -193
- package/dist-types/ts3.4/ChimeSDKVoice.d.ts +196 -192
- package/package.json +8 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, MetricsRecorder as __MetricsRecorder, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { ChimeSDKVoiceClient } from "./ChimeSDKVoiceClient";
|
|
3
3
|
import { type AssociatePhoneNumbersWithVoiceConnectorCommandInput, type AssociatePhoneNumbersWithVoiceConnectorCommandOutput } from "./commands/AssociatePhoneNumbersWithVoiceConnectorCommand";
|
|
4
4
|
import { type AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, type AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput } from "./commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand";
|
|
@@ -96,594 +96,600 @@ import { type UpdateVoiceConnectorGroupCommandInput, type UpdateVoiceConnectorGr
|
|
|
96
96
|
import { type UpdateVoiceProfileCommandInput, type UpdateVoiceProfileCommandOutput } from "./commands/UpdateVoiceProfileCommand";
|
|
97
97
|
import { type UpdateVoiceProfileDomainCommandInput, type UpdateVoiceProfileDomainCommandOutput } from "./commands/UpdateVoiceProfileDomainCommand";
|
|
98
98
|
import { type ValidateE911AddressCommandInput, type ValidateE911AddressCommandOutput } from "./commands/ValidateE911AddressCommand";
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export interface ChimeSDKVoiceRequestOptions extends __HttpHandlerOptions {
|
|
103
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
104
|
+
}
|
|
99
105
|
export interface ChimeSDKVoice {
|
|
100
106
|
/**
|
|
101
107
|
* @see {@link AssociatePhoneNumbersWithVoiceConnectorCommand}
|
|
102
108
|
*/
|
|
103
|
-
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options?:
|
|
109
|
+
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<AssociatePhoneNumbersWithVoiceConnectorCommandOutput>;
|
|
104
110
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorCommandOutput) => void): void;
|
|
105
|
-
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options:
|
|
111
|
+
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorCommandOutput) => void): void;
|
|
106
112
|
/**
|
|
107
113
|
* @see {@link AssociatePhoneNumbersWithVoiceConnectorGroupCommand}
|
|
108
114
|
*/
|
|
109
|
-
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options?:
|
|
115
|
+
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput>;
|
|
110
116
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput) => void): void;
|
|
111
|
-
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options:
|
|
117
|
+
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput) => void): void;
|
|
112
118
|
/**
|
|
113
119
|
* @see {@link BatchDeletePhoneNumberCommand}
|
|
114
120
|
*/
|
|
115
|
-
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options?:
|
|
121
|
+
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<BatchDeletePhoneNumberCommandOutput>;
|
|
116
122
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, cb: (err: any, data?: BatchDeletePhoneNumberCommandOutput) => void): void;
|
|
117
|
-
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options:
|
|
123
|
+
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: BatchDeletePhoneNumberCommandOutput) => void): void;
|
|
118
124
|
/**
|
|
119
125
|
* @see {@link BatchUpdatePhoneNumberCommand}
|
|
120
126
|
*/
|
|
121
|
-
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options?:
|
|
127
|
+
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<BatchUpdatePhoneNumberCommandOutput>;
|
|
122
128
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, cb: (err: any, data?: BatchUpdatePhoneNumberCommandOutput) => void): void;
|
|
123
|
-
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options:
|
|
129
|
+
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: BatchUpdatePhoneNumberCommandOutput) => void): void;
|
|
124
130
|
/**
|
|
125
131
|
* @see {@link CreatePhoneNumberOrderCommand}
|
|
126
132
|
*/
|
|
127
|
-
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options?:
|
|
133
|
+
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreatePhoneNumberOrderCommandOutput>;
|
|
128
134
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, cb: (err: any, data?: CreatePhoneNumberOrderCommandOutput) => void): void;
|
|
129
|
-
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options:
|
|
135
|
+
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreatePhoneNumberOrderCommandOutput) => void): void;
|
|
130
136
|
/**
|
|
131
137
|
* @see {@link CreateProxySessionCommand}
|
|
132
138
|
*/
|
|
133
|
-
createProxySession(args: CreateProxySessionCommandInput, options?:
|
|
139
|
+
createProxySession(args: CreateProxySessionCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateProxySessionCommandOutput>;
|
|
134
140
|
createProxySession(args: CreateProxySessionCommandInput, cb: (err: any, data?: CreateProxySessionCommandOutput) => void): void;
|
|
135
|
-
createProxySession(args: CreateProxySessionCommandInput, options:
|
|
141
|
+
createProxySession(args: CreateProxySessionCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateProxySessionCommandOutput) => void): void;
|
|
136
142
|
/**
|
|
137
143
|
* @see {@link CreateSipMediaApplicationCommand}
|
|
138
144
|
*/
|
|
139
|
-
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options?:
|
|
145
|
+
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateSipMediaApplicationCommandOutput>;
|
|
140
146
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, cb: (err: any, data?: CreateSipMediaApplicationCommandOutput) => void): void;
|
|
141
|
-
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options:
|
|
147
|
+
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateSipMediaApplicationCommandOutput) => void): void;
|
|
142
148
|
/**
|
|
143
149
|
* @see {@link CreateSipMediaApplicationCallCommand}
|
|
144
150
|
*/
|
|
145
|
-
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options?:
|
|
151
|
+
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateSipMediaApplicationCallCommandOutput>;
|
|
146
152
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, cb: (err: any, data?: CreateSipMediaApplicationCallCommandOutput) => void): void;
|
|
147
|
-
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options:
|
|
153
|
+
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateSipMediaApplicationCallCommandOutput) => void): void;
|
|
148
154
|
/**
|
|
149
155
|
* @see {@link CreateSipRuleCommand}
|
|
150
156
|
*/
|
|
151
|
-
createSipRule(args: CreateSipRuleCommandInput, options?:
|
|
157
|
+
createSipRule(args: CreateSipRuleCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateSipRuleCommandOutput>;
|
|
152
158
|
createSipRule(args: CreateSipRuleCommandInput, cb: (err: any, data?: CreateSipRuleCommandOutput) => void): void;
|
|
153
|
-
createSipRule(args: CreateSipRuleCommandInput, options:
|
|
159
|
+
createSipRule(args: CreateSipRuleCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateSipRuleCommandOutput) => void): void;
|
|
154
160
|
/**
|
|
155
161
|
* @see {@link CreateVoiceConnectorCommand}
|
|
156
162
|
*/
|
|
157
|
-
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options?:
|
|
163
|
+
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateVoiceConnectorCommandOutput>;
|
|
158
164
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, cb: (err: any, data?: CreateVoiceConnectorCommandOutput) => void): void;
|
|
159
|
-
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options:
|
|
165
|
+
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateVoiceConnectorCommandOutput) => void): void;
|
|
160
166
|
/**
|
|
161
167
|
* @see {@link CreateVoiceConnectorGroupCommand}
|
|
162
168
|
*/
|
|
163
|
-
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options?:
|
|
169
|
+
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateVoiceConnectorGroupCommandOutput>;
|
|
164
170
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, cb: (err: any, data?: CreateVoiceConnectorGroupCommandOutput) => void): void;
|
|
165
|
-
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options:
|
|
171
|
+
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateVoiceConnectorGroupCommandOutput) => void): void;
|
|
166
172
|
/**
|
|
167
173
|
* @see {@link CreateVoiceProfileCommand}
|
|
168
174
|
*/
|
|
169
|
-
createVoiceProfile(args: CreateVoiceProfileCommandInput, options?:
|
|
175
|
+
createVoiceProfile(args: CreateVoiceProfileCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateVoiceProfileCommandOutput>;
|
|
170
176
|
createVoiceProfile(args: CreateVoiceProfileCommandInput, cb: (err: any, data?: CreateVoiceProfileCommandOutput) => void): void;
|
|
171
|
-
createVoiceProfile(args: CreateVoiceProfileCommandInput, options:
|
|
177
|
+
createVoiceProfile(args: CreateVoiceProfileCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateVoiceProfileCommandOutput) => void): void;
|
|
172
178
|
/**
|
|
173
179
|
* @see {@link CreateVoiceProfileDomainCommand}
|
|
174
180
|
*/
|
|
175
|
-
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, options?:
|
|
181
|
+
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<CreateVoiceProfileDomainCommandOutput>;
|
|
176
182
|
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, cb: (err: any, data?: CreateVoiceProfileDomainCommandOutput) => void): void;
|
|
177
|
-
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, options:
|
|
183
|
+
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: CreateVoiceProfileDomainCommandOutput) => void): void;
|
|
178
184
|
/**
|
|
179
185
|
* @see {@link DeletePhoneNumberCommand}
|
|
180
186
|
*/
|
|
181
|
-
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options?:
|
|
187
|
+
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeletePhoneNumberCommandOutput>;
|
|
182
188
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, cb: (err: any, data?: DeletePhoneNumberCommandOutput) => void): void;
|
|
183
|
-
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options:
|
|
189
|
+
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeletePhoneNumberCommandOutput) => void): void;
|
|
184
190
|
/**
|
|
185
191
|
* @see {@link DeleteProxySessionCommand}
|
|
186
192
|
*/
|
|
187
|
-
deleteProxySession(args: DeleteProxySessionCommandInput, options?:
|
|
193
|
+
deleteProxySession(args: DeleteProxySessionCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteProxySessionCommandOutput>;
|
|
188
194
|
deleteProxySession(args: DeleteProxySessionCommandInput, cb: (err: any, data?: DeleteProxySessionCommandOutput) => void): void;
|
|
189
|
-
deleteProxySession(args: DeleteProxySessionCommandInput, options:
|
|
195
|
+
deleteProxySession(args: DeleteProxySessionCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteProxySessionCommandOutput) => void): void;
|
|
190
196
|
/**
|
|
191
197
|
* @see {@link DeleteSipMediaApplicationCommand}
|
|
192
198
|
*/
|
|
193
|
-
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options?:
|
|
199
|
+
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteSipMediaApplicationCommandOutput>;
|
|
194
200
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, cb: (err: any, data?: DeleteSipMediaApplicationCommandOutput) => void): void;
|
|
195
|
-
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options:
|
|
201
|
+
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteSipMediaApplicationCommandOutput) => void): void;
|
|
196
202
|
/**
|
|
197
203
|
* @see {@link DeleteSipRuleCommand}
|
|
198
204
|
*/
|
|
199
|
-
deleteSipRule(args: DeleteSipRuleCommandInput, options?:
|
|
205
|
+
deleteSipRule(args: DeleteSipRuleCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteSipRuleCommandOutput>;
|
|
200
206
|
deleteSipRule(args: DeleteSipRuleCommandInput, cb: (err: any, data?: DeleteSipRuleCommandOutput) => void): void;
|
|
201
|
-
deleteSipRule(args: DeleteSipRuleCommandInput, options:
|
|
207
|
+
deleteSipRule(args: DeleteSipRuleCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteSipRuleCommandOutput) => void): void;
|
|
202
208
|
/**
|
|
203
209
|
* @see {@link DeleteVoiceConnectorCommand}
|
|
204
210
|
*/
|
|
205
|
-
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options?:
|
|
211
|
+
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorCommandOutput>;
|
|
206
212
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, cb: (err: any, data?: DeleteVoiceConnectorCommandOutput) => void): void;
|
|
207
|
-
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options:
|
|
213
|
+
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorCommandOutput) => void): void;
|
|
208
214
|
/**
|
|
209
215
|
* @see {@link DeleteVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
210
216
|
*/
|
|
211
|
-
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options?:
|
|
217
|
+
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
212
218
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
213
|
-
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options:
|
|
219
|
+
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
214
220
|
/**
|
|
215
221
|
* @see {@link DeleteVoiceConnectorExternalSystemsConfigurationCommand}
|
|
216
222
|
*/
|
|
217
|
-
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, options?:
|
|
223
|
+
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput>;
|
|
218
224
|
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
219
|
-
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, options:
|
|
225
|
+
deleteVoiceConnectorExternalSystemsConfiguration(args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
220
226
|
/**
|
|
221
227
|
* @see {@link DeleteVoiceConnectorGroupCommand}
|
|
222
228
|
*/
|
|
223
|
-
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options?:
|
|
229
|
+
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorGroupCommandOutput>;
|
|
224
230
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, cb: (err: any, data?: DeleteVoiceConnectorGroupCommandOutput) => void): void;
|
|
225
|
-
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options:
|
|
231
|
+
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorGroupCommandOutput) => void): void;
|
|
226
232
|
/**
|
|
227
233
|
* @see {@link DeleteVoiceConnectorOriginationCommand}
|
|
228
234
|
*/
|
|
229
|
-
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options?:
|
|
235
|
+
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorOriginationCommandOutput>;
|
|
230
236
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorOriginationCommandOutput) => void): void;
|
|
231
|
-
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options:
|
|
237
|
+
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorOriginationCommandOutput) => void): void;
|
|
232
238
|
/**
|
|
233
239
|
* @see {@link DeleteVoiceConnectorProxyCommand}
|
|
234
240
|
*/
|
|
235
|
-
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options?:
|
|
241
|
+
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorProxyCommandOutput>;
|
|
236
242
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, cb: (err: any, data?: DeleteVoiceConnectorProxyCommandOutput) => void): void;
|
|
237
|
-
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options:
|
|
243
|
+
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorProxyCommandOutput) => void): void;
|
|
238
244
|
/**
|
|
239
245
|
* @see {@link DeleteVoiceConnectorStreamingConfigurationCommand}
|
|
240
246
|
*/
|
|
241
|
-
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options?:
|
|
247
|
+
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
242
248
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
243
|
-
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options:
|
|
249
|
+
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
244
250
|
/**
|
|
245
251
|
* @see {@link DeleteVoiceConnectorTerminationCommand}
|
|
246
252
|
*/
|
|
247
|
-
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options?:
|
|
253
|
+
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorTerminationCommandOutput>;
|
|
248
254
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorTerminationCommandOutput) => void): void;
|
|
249
|
-
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options:
|
|
255
|
+
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorTerminationCommandOutput) => void): void;
|
|
250
256
|
/**
|
|
251
257
|
* @see {@link DeleteVoiceConnectorTerminationCredentialsCommand}
|
|
252
258
|
*/
|
|
253
|
-
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options?:
|
|
259
|
+
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
254
260
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: DeleteVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
255
|
-
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options:
|
|
261
|
+
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
256
262
|
/**
|
|
257
263
|
* @see {@link DeleteVoiceProfileCommand}
|
|
258
264
|
*/
|
|
259
|
-
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, options?:
|
|
265
|
+
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceProfileCommandOutput>;
|
|
260
266
|
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, cb: (err: any, data?: DeleteVoiceProfileCommandOutput) => void): void;
|
|
261
|
-
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, options:
|
|
267
|
+
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceProfileCommandOutput) => void): void;
|
|
262
268
|
/**
|
|
263
269
|
* @see {@link DeleteVoiceProfileDomainCommand}
|
|
264
270
|
*/
|
|
265
|
-
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, options?:
|
|
271
|
+
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DeleteVoiceProfileDomainCommandOutput>;
|
|
266
272
|
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, cb: (err: any, data?: DeleteVoiceProfileDomainCommandOutput) => void): void;
|
|
267
|
-
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, options:
|
|
273
|
+
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DeleteVoiceProfileDomainCommandOutput) => void): void;
|
|
268
274
|
/**
|
|
269
275
|
* @see {@link DisassociatePhoneNumbersFromVoiceConnectorCommand}
|
|
270
276
|
*/
|
|
271
|
-
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options?:
|
|
277
|
+
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DisassociatePhoneNumbersFromVoiceConnectorCommandOutput>;
|
|
272
278
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorCommandOutput) => void): void;
|
|
273
|
-
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options:
|
|
279
|
+
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorCommandOutput) => void): void;
|
|
274
280
|
/**
|
|
275
281
|
* @see {@link DisassociatePhoneNumbersFromVoiceConnectorGroupCommand}
|
|
276
282
|
*/
|
|
277
|
-
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options?:
|
|
283
|
+
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput>;
|
|
278
284
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput) => void): void;
|
|
279
|
-
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options:
|
|
285
|
+
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput) => void): void;
|
|
280
286
|
/**
|
|
281
287
|
* @see {@link GetGlobalSettingsCommand}
|
|
282
288
|
*/
|
|
283
289
|
getGlobalSettings(): Promise<GetGlobalSettingsCommandOutput>;
|
|
284
|
-
getGlobalSettings(args: GetGlobalSettingsCommandInput, options?:
|
|
290
|
+
getGlobalSettings(args: GetGlobalSettingsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetGlobalSettingsCommandOutput>;
|
|
285
291
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void): void;
|
|
286
|
-
getGlobalSettings(args: GetGlobalSettingsCommandInput, options:
|
|
292
|
+
getGlobalSettings(args: GetGlobalSettingsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void): void;
|
|
287
293
|
/**
|
|
288
294
|
* @see {@link GetPhoneNumberCommand}
|
|
289
295
|
*/
|
|
290
|
-
getPhoneNumber(args: GetPhoneNumberCommandInput, options?:
|
|
296
|
+
getPhoneNumber(args: GetPhoneNumberCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetPhoneNumberCommandOutput>;
|
|
291
297
|
getPhoneNumber(args: GetPhoneNumberCommandInput, cb: (err: any, data?: GetPhoneNumberCommandOutput) => void): void;
|
|
292
|
-
getPhoneNumber(args: GetPhoneNumberCommandInput, options:
|
|
298
|
+
getPhoneNumber(args: GetPhoneNumberCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetPhoneNumberCommandOutput) => void): void;
|
|
293
299
|
/**
|
|
294
300
|
* @see {@link GetPhoneNumberOrderCommand}
|
|
295
301
|
*/
|
|
296
|
-
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options?:
|
|
302
|
+
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetPhoneNumberOrderCommandOutput>;
|
|
297
303
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, cb: (err: any, data?: GetPhoneNumberOrderCommandOutput) => void): void;
|
|
298
|
-
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options:
|
|
304
|
+
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetPhoneNumberOrderCommandOutput) => void): void;
|
|
299
305
|
/**
|
|
300
306
|
* @see {@link GetPhoneNumberSettingsCommand}
|
|
301
307
|
*/
|
|
302
308
|
getPhoneNumberSettings(): Promise<GetPhoneNumberSettingsCommandOutput>;
|
|
303
|
-
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options?:
|
|
309
|
+
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetPhoneNumberSettingsCommandOutput>;
|
|
304
310
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, cb: (err: any, data?: GetPhoneNumberSettingsCommandOutput) => void): void;
|
|
305
|
-
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options:
|
|
311
|
+
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetPhoneNumberSettingsCommandOutput) => void): void;
|
|
306
312
|
/**
|
|
307
313
|
* @see {@link GetProxySessionCommand}
|
|
308
314
|
*/
|
|
309
|
-
getProxySession(args: GetProxySessionCommandInput, options?:
|
|
315
|
+
getProxySession(args: GetProxySessionCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetProxySessionCommandOutput>;
|
|
310
316
|
getProxySession(args: GetProxySessionCommandInput, cb: (err: any, data?: GetProxySessionCommandOutput) => void): void;
|
|
311
|
-
getProxySession(args: GetProxySessionCommandInput, options:
|
|
317
|
+
getProxySession(args: GetProxySessionCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetProxySessionCommandOutput) => void): void;
|
|
312
318
|
/**
|
|
313
319
|
* @see {@link GetSipMediaApplicationCommand}
|
|
314
320
|
*/
|
|
315
|
-
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options?:
|
|
321
|
+
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetSipMediaApplicationCommandOutput>;
|
|
316
322
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, cb: (err: any, data?: GetSipMediaApplicationCommandOutput) => void): void;
|
|
317
|
-
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options:
|
|
323
|
+
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetSipMediaApplicationCommandOutput) => void): void;
|
|
318
324
|
/**
|
|
319
325
|
* @see {@link GetSipMediaApplicationAlexaSkillConfigurationCommand}
|
|
320
326
|
*/
|
|
321
|
-
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, options?:
|
|
327
|
+
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetSipMediaApplicationAlexaSkillConfigurationCommandOutput>;
|
|
322
328
|
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, cb: (err: any, data?: GetSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
323
|
-
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, options:
|
|
329
|
+
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
324
330
|
/**
|
|
325
331
|
* @see {@link GetSipMediaApplicationLoggingConfigurationCommand}
|
|
326
332
|
*/
|
|
327
|
-
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options?:
|
|
333
|
+
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetSipMediaApplicationLoggingConfigurationCommandOutput>;
|
|
328
334
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, cb: (err: any, data?: GetSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
329
|
-
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options:
|
|
335
|
+
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
330
336
|
/**
|
|
331
337
|
* @see {@link GetSipRuleCommand}
|
|
332
338
|
*/
|
|
333
|
-
getSipRule(args: GetSipRuleCommandInput, options?:
|
|
339
|
+
getSipRule(args: GetSipRuleCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetSipRuleCommandOutput>;
|
|
334
340
|
getSipRule(args: GetSipRuleCommandInput, cb: (err: any, data?: GetSipRuleCommandOutput) => void): void;
|
|
335
|
-
getSipRule(args: GetSipRuleCommandInput, options:
|
|
341
|
+
getSipRule(args: GetSipRuleCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetSipRuleCommandOutput) => void): void;
|
|
336
342
|
/**
|
|
337
343
|
* @see {@link GetSpeakerSearchTaskCommand}
|
|
338
344
|
*/
|
|
339
|
-
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, options?:
|
|
345
|
+
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetSpeakerSearchTaskCommandOutput>;
|
|
340
346
|
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void): void;
|
|
341
|
-
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, options:
|
|
347
|
+
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void): void;
|
|
342
348
|
/**
|
|
343
349
|
* @see {@link GetVoiceConnectorCommand}
|
|
344
350
|
*/
|
|
345
|
-
getVoiceConnector(args: GetVoiceConnectorCommandInput, options?:
|
|
351
|
+
getVoiceConnector(args: GetVoiceConnectorCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorCommandOutput>;
|
|
346
352
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, cb: (err: any, data?: GetVoiceConnectorCommandOutput) => void): void;
|
|
347
|
-
getVoiceConnector(args: GetVoiceConnectorCommandInput, options:
|
|
353
|
+
getVoiceConnector(args: GetVoiceConnectorCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorCommandOutput) => void): void;
|
|
348
354
|
/**
|
|
349
355
|
* @see {@link GetVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
350
356
|
*/
|
|
351
|
-
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options?:
|
|
357
|
+
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
352
358
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
353
|
-
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options:
|
|
359
|
+
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
354
360
|
/**
|
|
355
361
|
* @see {@link GetVoiceConnectorExternalSystemsConfigurationCommand}
|
|
356
362
|
*/
|
|
357
|
-
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, options?:
|
|
363
|
+
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorExternalSystemsConfigurationCommandOutput>;
|
|
358
364
|
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
359
|
-
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, options:
|
|
365
|
+
getVoiceConnectorExternalSystemsConfiguration(args: GetVoiceConnectorExternalSystemsConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
360
366
|
/**
|
|
361
367
|
* @see {@link GetVoiceConnectorGroupCommand}
|
|
362
368
|
*/
|
|
363
|
-
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options?:
|
|
369
|
+
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorGroupCommandOutput>;
|
|
364
370
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, cb: (err: any, data?: GetVoiceConnectorGroupCommandOutput) => void): void;
|
|
365
|
-
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options:
|
|
371
|
+
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorGroupCommandOutput) => void): void;
|
|
366
372
|
/**
|
|
367
373
|
* @see {@link GetVoiceConnectorLoggingConfigurationCommand}
|
|
368
374
|
*/
|
|
369
|
-
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options?:
|
|
375
|
+
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorLoggingConfigurationCommandOutput>;
|
|
370
376
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
371
|
-
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options:
|
|
377
|
+
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
372
378
|
/**
|
|
373
379
|
* @see {@link GetVoiceConnectorOriginationCommand}
|
|
374
380
|
*/
|
|
375
|
-
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options?:
|
|
381
|
+
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorOriginationCommandOutput>;
|
|
376
382
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, cb: (err: any, data?: GetVoiceConnectorOriginationCommandOutput) => void): void;
|
|
377
|
-
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options:
|
|
383
|
+
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorOriginationCommandOutput) => void): void;
|
|
378
384
|
/**
|
|
379
385
|
* @see {@link GetVoiceConnectorProxyCommand}
|
|
380
386
|
*/
|
|
381
|
-
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options?:
|
|
387
|
+
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorProxyCommandOutput>;
|
|
382
388
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, cb: (err: any, data?: GetVoiceConnectorProxyCommandOutput) => void): void;
|
|
383
|
-
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options:
|
|
389
|
+
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorProxyCommandOutput) => void): void;
|
|
384
390
|
/**
|
|
385
391
|
* @see {@link GetVoiceConnectorStreamingConfigurationCommand}
|
|
386
392
|
*/
|
|
387
|
-
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options?:
|
|
393
|
+
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
388
394
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
389
|
-
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options:
|
|
395
|
+
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
390
396
|
/**
|
|
391
397
|
* @see {@link GetVoiceConnectorTerminationCommand}
|
|
392
398
|
*/
|
|
393
|
-
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options?:
|
|
399
|
+
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorTerminationCommandOutput>;
|
|
394
400
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, cb: (err: any, data?: GetVoiceConnectorTerminationCommandOutput) => void): void;
|
|
395
|
-
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options:
|
|
401
|
+
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorTerminationCommandOutput) => void): void;
|
|
396
402
|
/**
|
|
397
403
|
* @see {@link GetVoiceConnectorTerminationHealthCommand}
|
|
398
404
|
*/
|
|
399
|
-
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options?:
|
|
405
|
+
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceConnectorTerminationHealthCommandOutput>;
|
|
400
406
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, cb: (err: any, data?: GetVoiceConnectorTerminationHealthCommandOutput) => void): void;
|
|
401
|
-
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options:
|
|
407
|
+
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceConnectorTerminationHealthCommandOutput) => void): void;
|
|
402
408
|
/**
|
|
403
409
|
* @see {@link GetVoiceProfileCommand}
|
|
404
410
|
*/
|
|
405
|
-
getVoiceProfile(args: GetVoiceProfileCommandInput, options?:
|
|
411
|
+
getVoiceProfile(args: GetVoiceProfileCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceProfileCommandOutput>;
|
|
406
412
|
getVoiceProfile(args: GetVoiceProfileCommandInput, cb: (err: any, data?: GetVoiceProfileCommandOutput) => void): void;
|
|
407
|
-
getVoiceProfile(args: GetVoiceProfileCommandInput, options:
|
|
413
|
+
getVoiceProfile(args: GetVoiceProfileCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceProfileCommandOutput) => void): void;
|
|
408
414
|
/**
|
|
409
415
|
* @see {@link GetVoiceProfileDomainCommand}
|
|
410
416
|
*/
|
|
411
|
-
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, options?:
|
|
417
|
+
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceProfileDomainCommandOutput>;
|
|
412
418
|
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, cb: (err: any, data?: GetVoiceProfileDomainCommandOutput) => void): void;
|
|
413
|
-
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, options:
|
|
419
|
+
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceProfileDomainCommandOutput) => void): void;
|
|
414
420
|
/**
|
|
415
421
|
* @see {@link GetVoiceToneAnalysisTaskCommand}
|
|
416
422
|
*/
|
|
417
|
-
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, options?:
|
|
423
|
+
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<GetVoiceToneAnalysisTaskCommandOutput>;
|
|
418
424
|
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
419
|
-
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, options:
|
|
425
|
+
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
420
426
|
/**
|
|
421
427
|
* @see {@link ListAvailableVoiceConnectorRegionsCommand}
|
|
422
428
|
*/
|
|
423
429
|
listAvailableVoiceConnectorRegions(): Promise<ListAvailableVoiceConnectorRegionsCommandOutput>;
|
|
424
|
-
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, options?:
|
|
430
|
+
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListAvailableVoiceConnectorRegionsCommandOutput>;
|
|
425
431
|
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, cb: (err: any, data?: ListAvailableVoiceConnectorRegionsCommandOutput) => void): void;
|
|
426
|
-
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, options:
|
|
432
|
+
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListAvailableVoiceConnectorRegionsCommandOutput) => void): void;
|
|
427
433
|
/**
|
|
428
434
|
* @see {@link ListPhoneNumberOrdersCommand}
|
|
429
435
|
*/
|
|
430
436
|
listPhoneNumberOrders(): Promise<ListPhoneNumberOrdersCommandOutput>;
|
|
431
|
-
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options?:
|
|
437
|
+
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListPhoneNumberOrdersCommandOutput>;
|
|
432
438
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, cb: (err: any, data?: ListPhoneNumberOrdersCommandOutput) => void): void;
|
|
433
|
-
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options:
|
|
439
|
+
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListPhoneNumberOrdersCommandOutput) => void): void;
|
|
434
440
|
/**
|
|
435
441
|
* @see {@link ListPhoneNumbersCommand}
|
|
436
442
|
*/
|
|
437
443
|
listPhoneNumbers(): Promise<ListPhoneNumbersCommandOutput>;
|
|
438
|
-
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options?:
|
|
444
|
+
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListPhoneNumbersCommandOutput>;
|
|
439
445
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
440
|
-
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options:
|
|
446
|
+
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
441
447
|
/**
|
|
442
448
|
* @see {@link ListProxySessionsCommand}
|
|
443
449
|
*/
|
|
444
|
-
listProxySessions(args: ListProxySessionsCommandInput, options?:
|
|
450
|
+
listProxySessions(args: ListProxySessionsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListProxySessionsCommandOutput>;
|
|
445
451
|
listProxySessions(args: ListProxySessionsCommandInput, cb: (err: any, data?: ListProxySessionsCommandOutput) => void): void;
|
|
446
|
-
listProxySessions(args: ListProxySessionsCommandInput, options:
|
|
452
|
+
listProxySessions(args: ListProxySessionsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListProxySessionsCommandOutput) => void): void;
|
|
447
453
|
/**
|
|
448
454
|
* @see {@link ListSipMediaApplicationsCommand}
|
|
449
455
|
*/
|
|
450
456
|
listSipMediaApplications(): Promise<ListSipMediaApplicationsCommandOutput>;
|
|
451
|
-
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options?:
|
|
457
|
+
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListSipMediaApplicationsCommandOutput>;
|
|
452
458
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, cb: (err: any, data?: ListSipMediaApplicationsCommandOutput) => void): void;
|
|
453
|
-
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options:
|
|
459
|
+
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListSipMediaApplicationsCommandOutput) => void): void;
|
|
454
460
|
/**
|
|
455
461
|
* @see {@link ListSipRulesCommand}
|
|
456
462
|
*/
|
|
457
463
|
listSipRules(): Promise<ListSipRulesCommandOutput>;
|
|
458
|
-
listSipRules(args: ListSipRulesCommandInput, options?:
|
|
464
|
+
listSipRules(args: ListSipRulesCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListSipRulesCommandOutput>;
|
|
459
465
|
listSipRules(args: ListSipRulesCommandInput, cb: (err: any, data?: ListSipRulesCommandOutput) => void): void;
|
|
460
|
-
listSipRules(args: ListSipRulesCommandInput, options:
|
|
466
|
+
listSipRules(args: ListSipRulesCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListSipRulesCommandOutput) => void): void;
|
|
461
467
|
/**
|
|
462
468
|
* @see {@link ListSupportedPhoneNumberCountriesCommand}
|
|
463
469
|
*/
|
|
464
|
-
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options?:
|
|
470
|
+
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListSupportedPhoneNumberCountriesCommandOutput>;
|
|
465
471
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, cb: (err: any, data?: ListSupportedPhoneNumberCountriesCommandOutput) => void): void;
|
|
466
|
-
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options:
|
|
472
|
+
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListSupportedPhoneNumberCountriesCommandOutput) => void): void;
|
|
467
473
|
/**
|
|
468
474
|
* @see {@link ListTagsForResourceCommand}
|
|
469
475
|
*/
|
|
470
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?:
|
|
476
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
471
477
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
472
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options:
|
|
478
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
473
479
|
/**
|
|
474
480
|
* @see {@link ListVoiceConnectorGroupsCommand}
|
|
475
481
|
*/
|
|
476
482
|
listVoiceConnectorGroups(): Promise<ListVoiceConnectorGroupsCommandOutput>;
|
|
477
|
-
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options?:
|
|
483
|
+
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListVoiceConnectorGroupsCommandOutput>;
|
|
478
484
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, cb: (err: any, data?: ListVoiceConnectorGroupsCommandOutput) => void): void;
|
|
479
|
-
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options:
|
|
485
|
+
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListVoiceConnectorGroupsCommandOutput) => void): void;
|
|
480
486
|
/**
|
|
481
487
|
* @see {@link ListVoiceConnectorsCommand}
|
|
482
488
|
*/
|
|
483
489
|
listVoiceConnectors(): Promise<ListVoiceConnectorsCommandOutput>;
|
|
484
|
-
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options?:
|
|
490
|
+
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListVoiceConnectorsCommandOutput>;
|
|
485
491
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, cb: (err: any, data?: ListVoiceConnectorsCommandOutput) => void): void;
|
|
486
|
-
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options:
|
|
492
|
+
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListVoiceConnectorsCommandOutput) => void): void;
|
|
487
493
|
/**
|
|
488
494
|
* @see {@link ListVoiceConnectorTerminationCredentialsCommand}
|
|
489
495
|
*/
|
|
490
|
-
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options?:
|
|
496
|
+
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
491
497
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: ListVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
492
|
-
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options:
|
|
498
|
+
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
493
499
|
/**
|
|
494
500
|
* @see {@link ListVoiceProfileDomainsCommand}
|
|
495
501
|
*/
|
|
496
502
|
listVoiceProfileDomains(): Promise<ListVoiceProfileDomainsCommandOutput>;
|
|
497
|
-
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, options?:
|
|
503
|
+
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListVoiceProfileDomainsCommandOutput>;
|
|
498
504
|
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, cb: (err: any, data?: ListVoiceProfileDomainsCommandOutput) => void): void;
|
|
499
|
-
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, options:
|
|
505
|
+
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListVoiceProfileDomainsCommandOutput) => void): void;
|
|
500
506
|
/**
|
|
501
507
|
* @see {@link ListVoiceProfilesCommand}
|
|
502
508
|
*/
|
|
503
|
-
listVoiceProfiles(args: ListVoiceProfilesCommandInput, options?:
|
|
509
|
+
listVoiceProfiles(args: ListVoiceProfilesCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ListVoiceProfilesCommandOutput>;
|
|
504
510
|
listVoiceProfiles(args: ListVoiceProfilesCommandInput, cb: (err: any, data?: ListVoiceProfilesCommandOutput) => void): void;
|
|
505
|
-
listVoiceProfiles(args: ListVoiceProfilesCommandInput, options:
|
|
511
|
+
listVoiceProfiles(args: ListVoiceProfilesCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ListVoiceProfilesCommandOutput) => void): void;
|
|
506
512
|
/**
|
|
507
513
|
* @see {@link PutSipMediaApplicationAlexaSkillConfigurationCommand}
|
|
508
514
|
*/
|
|
509
|
-
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, options?:
|
|
515
|
+
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutSipMediaApplicationAlexaSkillConfigurationCommandOutput>;
|
|
510
516
|
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, cb: (err: any, data?: PutSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
511
|
-
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, options:
|
|
517
|
+
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
512
518
|
/**
|
|
513
519
|
* @see {@link PutSipMediaApplicationLoggingConfigurationCommand}
|
|
514
520
|
*/
|
|
515
|
-
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options?:
|
|
521
|
+
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutSipMediaApplicationLoggingConfigurationCommandOutput>;
|
|
516
522
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, cb: (err: any, data?: PutSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
517
|
-
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options:
|
|
523
|
+
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
518
524
|
/**
|
|
519
525
|
* @see {@link PutVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
520
526
|
*/
|
|
521
|
-
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options?:
|
|
527
|
+
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
522
528
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
523
|
-
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options:
|
|
529
|
+
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
524
530
|
/**
|
|
525
531
|
* @see {@link PutVoiceConnectorExternalSystemsConfigurationCommand}
|
|
526
532
|
*/
|
|
527
|
-
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, options?:
|
|
533
|
+
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorExternalSystemsConfigurationCommandOutput>;
|
|
528
534
|
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
529
|
-
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, options:
|
|
535
|
+
putVoiceConnectorExternalSystemsConfiguration(args: PutVoiceConnectorExternalSystemsConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorExternalSystemsConfigurationCommandOutput) => void): void;
|
|
530
536
|
/**
|
|
531
537
|
* @see {@link PutVoiceConnectorLoggingConfigurationCommand}
|
|
532
538
|
*/
|
|
533
|
-
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options?:
|
|
539
|
+
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorLoggingConfigurationCommandOutput>;
|
|
534
540
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
535
|
-
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options:
|
|
541
|
+
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
536
542
|
/**
|
|
537
543
|
* @see {@link PutVoiceConnectorOriginationCommand}
|
|
538
544
|
*/
|
|
539
|
-
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options?:
|
|
545
|
+
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorOriginationCommandOutput>;
|
|
540
546
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, cb: (err: any, data?: PutVoiceConnectorOriginationCommandOutput) => void): void;
|
|
541
|
-
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options:
|
|
547
|
+
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorOriginationCommandOutput) => void): void;
|
|
542
548
|
/**
|
|
543
549
|
* @see {@link PutVoiceConnectorProxyCommand}
|
|
544
550
|
*/
|
|
545
|
-
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options?:
|
|
551
|
+
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorProxyCommandOutput>;
|
|
546
552
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, cb: (err: any, data?: PutVoiceConnectorProxyCommandOutput) => void): void;
|
|
547
|
-
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options:
|
|
553
|
+
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorProxyCommandOutput) => void): void;
|
|
548
554
|
/**
|
|
549
555
|
* @see {@link PutVoiceConnectorStreamingConfigurationCommand}
|
|
550
556
|
*/
|
|
551
|
-
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options?:
|
|
557
|
+
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
552
558
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
553
|
-
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options:
|
|
559
|
+
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
554
560
|
/**
|
|
555
561
|
* @see {@link PutVoiceConnectorTerminationCommand}
|
|
556
562
|
*/
|
|
557
|
-
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options?:
|
|
563
|
+
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorTerminationCommandOutput>;
|
|
558
564
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, cb: (err: any, data?: PutVoiceConnectorTerminationCommandOutput) => void): void;
|
|
559
|
-
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options:
|
|
565
|
+
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorTerminationCommandOutput) => void): void;
|
|
560
566
|
/**
|
|
561
567
|
* @see {@link PutVoiceConnectorTerminationCredentialsCommand}
|
|
562
568
|
*/
|
|
563
|
-
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options?:
|
|
569
|
+
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<PutVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
564
570
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: PutVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
565
|
-
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options:
|
|
571
|
+
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: PutVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
566
572
|
/**
|
|
567
573
|
* @see {@link RestorePhoneNumberCommand}
|
|
568
574
|
*/
|
|
569
|
-
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options?:
|
|
575
|
+
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<RestorePhoneNumberCommandOutput>;
|
|
570
576
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, cb: (err: any, data?: RestorePhoneNumberCommandOutput) => void): void;
|
|
571
|
-
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options:
|
|
577
|
+
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: RestorePhoneNumberCommandOutput) => void): void;
|
|
572
578
|
/**
|
|
573
579
|
* @see {@link SearchAvailablePhoneNumbersCommand}
|
|
574
580
|
*/
|
|
575
581
|
searchAvailablePhoneNumbers(): Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
576
|
-
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?:
|
|
582
|
+
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
577
583
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
578
|
-
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options:
|
|
584
|
+
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
579
585
|
/**
|
|
580
586
|
* @see {@link StartSpeakerSearchTaskCommand}
|
|
581
587
|
*/
|
|
582
|
-
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, options?:
|
|
588
|
+
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<StartSpeakerSearchTaskCommandOutput>;
|
|
583
589
|
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void): void;
|
|
584
|
-
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, options:
|
|
590
|
+
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void): void;
|
|
585
591
|
/**
|
|
586
592
|
* @see {@link StartVoiceToneAnalysisTaskCommand}
|
|
587
593
|
*/
|
|
588
|
-
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, options?:
|
|
594
|
+
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<StartVoiceToneAnalysisTaskCommandOutput>;
|
|
589
595
|
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
590
|
-
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, options:
|
|
596
|
+
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
591
597
|
/**
|
|
592
598
|
* @see {@link StopSpeakerSearchTaskCommand}
|
|
593
599
|
*/
|
|
594
|
-
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, options?:
|
|
600
|
+
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<StopSpeakerSearchTaskCommandOutput>;
|
|
595
601
|
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void): void;
|
|
596
|
-
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, options:
|
|
602
|
+
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void): void;
|
|
597
603
|
/**
|
|
598
604
|
* @see {@link StopVoiceToneAnalysisTaskCommand}
|
|
599
605
|
*/
|
|
600
|
-
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, options?:
|
|
606
|
+
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<StopVoiceToneAnalysisTaskCommandOutput>;
|
|
601
607
|
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
602
|
-
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, options:
|
|
608
|
+
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
603
609
|
/**
|
|
604
610
|
* @see {@link TagResourceCommand}
|
|
605
611
|
*/
|
|
606
|
-
tagResource(args: TagResourceCommandInput, options?:
|
|
612
|
+
tagResource(args: TagResourceCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<TagResourceCommandOutput>;
|
|
607
613
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
608
|
-
tagResource(args: TagResourceCommandInput, options:
|
|
614
|
+
tagResource(args: TagResourceCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
609
615
|
/**
|
|
610
616
|
* @see {@link UntagResourceCommand}
|
|
611
617
|
*/
|
|
612
|
-
untagResource(args: UntagResourceCommandInput, options?:
|
|
618
|
+
untagResource(args: UntagResourceCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UntagResourceCommandOutput>;
|
|
613
619
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
614
|
-
untagResource(args: UntagResourceCommandInput, options:
|
|
620
|
+
untagResource(args: UntagResourceCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
615
621
|
/**
|
|
616
622
|
* @see {@link UpdateGlobalSettingsCommand}
|
|
617
623
|
*/
|
|
618
|
-
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options?:
|
|
624
|
+
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateGlobalSettingsCommandOutput>;
|
|
619
625
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
|
|
620
|
-
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options:
|
|
626
|
+
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
|
|
621
627
|
/**
|
|
622
628
|
* @see {@link UpdatePhoneNumberCommand}
|
|
623
629
|
*/
|
|
624
|
-
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options?:
|
|
630
|
+
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdatePhoneNumberCommandOutput>;
|
|
625
631
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
626
|
-
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options:
|
|
632
|
+
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
627
633
|
/**
|
|
628
634
|
* @see {@link UpdatePhoneNumberSettingsCommand}
|
|
629
635
|
*/
|
|
630
|
-
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options?:
|
|
636
|
+
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdatePhoneNumberSettingsCommandOutput>;
|
|
631
637
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, cb: (err: any, data?: UpdatePhoneNumberSettingsCommandOutput) => void): void;
|
|
632
|
-
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options:
|
|
638
|
+
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdatePhoneNumberSettingsCommandOutput) => void): void;
|
|
633
639
|
/**
|
|
634
640
|
* @see {@link UpdateProxySessionCommand}
|
|
635
641
|
*/
|
|
636
|
-
updateProxySession(args: UpdateProxySessionCommandInput, options?:
|
|
642
|
+
updateProxySession(args: UpdateProxySessionCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateProxySessionCommandOutput>;
|
|
637
643
|
updateProxySession(args: UpdateProxySessionCommandInput, cb: (err: any, data?: UpdateProxySessionCommandOutput) => void): void;
|
|
638
|
-
updateProxySession(args: UpdateProxySessionCommandInput, options:
|
|
644
|
+
updateProxySession(args: UpdateProxySessionCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateProxySessionCommandOutput) => void): void;
|
|
639
645
|
/**
|
|
640
646
|
* @see {@link UpdateSipMediaApplicationCommand}
|
|
641
647
|
*/
|
|
642
|
-
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options?:
|
|
648
|
+
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateSipMediaApplicationCommandOutput>;
|
|
643
649
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, cb: (err: any, data?: UpdateSipMediaApplicationCommandOutput) => void): void;
|
|
644
|
-
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options:
|
|
650
|
+
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateSipMediaApplicationCommandOutput) => void): void;
|
|
645
651
|
/**
|
|
646
652
|
* @see {@link UpdateSipMediaApplicationCallCommand}
|
|
647
653
|
*/
|
|
648
|
-
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options?:
|
|
654
|
+
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateSipMediaApplicationCallCommandOutput>;
|
|
649
655
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, cb: (err: any, data?: UpdateSipMediaApplicationCallCommandOutput) => void): void;
|
|
650
|
-
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options:
|
|
656
|
+
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateSipMediaApplicationCallCommandOutput) => void): void;
|
|
651
657
|
/**
|
|
652
658
|
* @see {@link UpdateSipRuleCommand}
|
|
653
659
|
*/
|
|
654
|
-
updateSipRule(args: UpdateSipRuleCommandInput, options?:
|
|
660
|
+
updateSipRule(args: UpdateSipRuleCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateSipRuleCommandOutput>;
|
|
655
661
|
updateSipRule(args: UpdateSipRuleCommandInput, cb: (err: any, data?: UpdateSipRuleCommandOutput) => void): void;
|
|
656
|
-
updateSipRule(args: UpdateSipRuleCommandInput, options:
|
|
662
|
+
updateSipRule(args: UpdateSipRuleCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateSipRuleCommandOutput) => void): void;
|
|
657
663
|
/**
|
|
658
664
|
* @see {@link UpdateVoiceConnectorCommand}
|
|
659
665
|
*/
|
|
660
|
-
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options?:
|
|
666
|
+
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateVoiceConnectorCommandOutput>;
|
|
661
667
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, cb: (err: any, data?: UpdateVoiceConnectorCommandOutput) => void): void;
|
|
662
|
-
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options:
|
|
668
|
+
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateVoiceConnectorCommandOutput) => void): void;
|
|
663
669
|
/**
|
|
664
670
|
* @see {@link UpdateVoiceConnectorGroupCommand}
|
|
665
671
|
*/
|
|
666
|
-
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options?:
|
|
672
|
+
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateVoiceConnectorGroupCommandOutput>;
|
|
667
673
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, cb: (err: any, data?: UpdateVoiceConnectorGroupCommandOutput) => void): void;
|
|
668
|
-
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options:
|
|
674
|
+
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateVoiceConnectorGroupCommandOutput) => void): void;
|
|
669
675
|
/**
|
|
670
676
|
* @see {@link UpdateVoiceProfileCommand}
|
|
671
677
|
*/
|
|
672
|
-
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, options?:
|
|
678
|
+
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateVoiceProfileCommandOutput>;
|
|
673
679
|
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, cb: (err: any, data?: UpdateVoiceProfileCommandOutput) => void): void;
|
|
674
|
-
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, options:
|
|
680
|
+
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateVoiceProfileCommandOutput) => void): void;
|
|
675
681
|
/**
|
|
676
682
|
* @see {@link UpdateVoiceProfileDomainCommand}
|
|
677
683
|
*/
|
|
678
|
-
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, options?:
|
|
684
|
+
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<UpdateVoiceProfileDomainCommandOutput>;
|
|
679
685
|
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, cb: (err: any, data?: UpdateVoiceProfileDomainCommandOutput) => void): void;
|
|
680
|
-
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, options:
|
|
686
|
+
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: UpdateVoiceProfileDomainCommandOutput) => void): void;
|
|
681
687
|
/**
|
|
682
688
|
* @see {@link ValidateE911AddressCommand}
|
|
683
689
|
*/
|
|
684
|
-
validateE911Address(args: ValidateE911AddressCommandInput, options?:
|
|
690
|
+
validateE911Address(args: ValidateE911AddressCommandInput, options?: ChimeSDKVoiceRequestOptions): Promise<ValidateE911AddressCommandOutput>;
|
|
685
691
|
validateE911Address(args: ValidateE911AddressCommandInput, cb: (err: any, data?: ValidateE911AddressCommandOutput) => void): void;
|
|
686
|
-
validateE911Address(args: ValidateE911AddressCommandInput, options:
|
|
692
|
+
validateE911Address(args: ValidateE911AddressCommandInput, options: ChimeSDKVoiceRequestOptions, cb: (err: any, data?: ValidateE911AddressCommandOutput) => void): void;
|
|
687
693
|
/**
|
|
688
694
|
* @see {@link ListPhoneNumberOrdersCommand}
|
|
689
695
|
* @param args - command input.
|