@azure/arm-botservice 4.0.1-alpha.20250618.1 → 4.0.1-alpha.20250717.1
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.
|
@@ -1,1134 +1,1134 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-botservice"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
|
8
|
-
import * as coreClient from '@azure/core-client';
|
|
9
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
-
import { PollerLike } from '@azure/core-lro';
|
|
11
|
-
import { PollOperationState } from '@azure/core-lro';
|
|
12
|
-
|
|
13
|
-
// @public
|
|
14
|
-
export interface AcsChatChannel extends Channel {
|
|
15
|
-
channelName: "AcsChatChannel";
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
// @public
|
|
19
|
-
export interface AlexaChannel extends Channel {
|
|
20
|
-
channelName: "AlexaChannel";
|
|
21
|
-
properties?: AlexaChannelProperties;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// @public
|
|
25
|
-
export interface AlexaChannelProperties {
|
|
26
|
-
alexaSkillId: string;
|
|
27
|
-
isEnabled: boolean;
|
|
28
|
-
readonly serviceEndpointUri?: string;
|
|
29
|
-
readonly urlFragment?: string;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// @public (undocumented)
|
|
33
|
-
export class AzureBotService extends coreClient.ServiceClient {
|
|
34
|
-
// (undocumented)
|
|
35
|
-
$host: string;
|
|
36
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureBotServiceOptionalParams);
|
|
37
|
-
// (undocumented)
|
|
38
|
-
apiVersion: string;
|
|
39
|
-
// (undocumented)
|
|
40
|
-
botConnection: BotConnection;
|
|
41
|
-
// (undocumented)
|
|
42
|
-
bots: Bots;
|
|
43
|
-
// (undocumented)
|
|
44
|
-
channels: Channels;
|
|
45
|
-
// (undocumented)
|
|
46
|
-
directLine: DirectLine;
|
|
47
|
-
// (undocumented)
|
|
48
|
-
email: Email;
|
|
49
|
-
// (undocumented)
|
|
50
|
-
hostSettings: HostSettings;
|
|
51
|
-
// (undocumented)
|
|
52
|
-
operationResults: OperationResults;
|
|
53
|
-
// (undocumented)
|
|
54
|
-
operations: Operations;
|
|
55
|
-
// (undocumented)
|
|
56
|
-
privateEndpointConnections: PrivateEndpointConnections;
|
|
57
|
-
// (undocumented)
|
|
58
|
-
privateLinkResources: PrivateLinkResources;
|
|
59
|
-
// (undocumented)
|
|
60
|
-
qnAMakerEndpointKeys: QnAMakerEndpointKeys;
|
|
61
|
-
// (undocumented)
|
|
62
|
-
subscriptionId: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// @public
|
|
66
|
-
export interface AzureBotServiceOptionalParams extends coreClient.ServiceClientOptions {
|
|
67
|
-
$host?: string;
|
|
68
|
-
apiVersion?: string;
|
|
69
|
-
endpoint?: string;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// @public
|
|
73
|
-
export interface Bot extends Resource {
|
|
74
|
-
properties?: BotProperties;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export interface BotChannel extends Resource {
|
|
79
|
-
properties?: ChannelUnion;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
// @public
|
|
83
|
-
export interface BotConnection {
|
|
84
|
-
create(resourceGroupName: string, resourceName: string, connectionName: string, parameters: ConnectionSetting, options?: BotConnectionCreateOptionalParams): Promise<BotConnectionCreateResponse>;
|
|
85
|
-
delete(resourceGroupName: string, resourceName: string, connectionName: string, options?: BotConnectionDeleteOptionalParams): Promise<void>;
|
|
86
|
-
get(resourceGroupName: string, resourceName: string, connectionName: string, options?: BotConnectionGetOptionalParams): Promise<BotConnectionGetResponse>;
|
|
87
|
-
listByBotService(resourceGroupName: string, resourceName: string, options?: BotConnectionListByBotServiceOptionalParams): PagedAsyncIterableIterator<ConnectionSetting>;
|
|
88
|
-
listServiceProviders(options?: BotConnectionListServiceProvidersOptionalParams): Promise<BotConnectionListServiceProvidersResponse>;
|
|
89
|
-
listWithSecrets(resourceGroupName: string, resourceName: string, connectionName: string, options?: BotConnectionListWithSecretsOptionalParams): Promise<BotConnectionListWithSecretsResponse>;
|
|
90
|
-
update(resourceGroupName: string, resourceName: string, connectionName: string, parameters: ConnectionSetting, options?: BotConnectionUpdateOptionalParams): Promise<BotConnectionUpdateResponse>;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export interface BotConnectionCreateOptionalParams extends coreClient.OperationOptions {
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
// @public
|
|
98
|
-
export type BotConnectionCreateResponse = ConnectionSetting;
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export interface BotConnectionDeleteOptionalParams extends coreClient.OperationOptions {
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
// @public
|
|
105
|
-
export interface BotConnectionGetOptionalParams extends coreClient.OperationOptions {
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
// @public
|
|
109
|
-
export type BotConnectionGetResponse = ConnectionSetting;
|
|
110
|
-
|
|
111
|
-
// @public
|
|
112
|
-
export interface BotConnectionListByBotServiceNextOptionalParams extends coreClient.OperationOptions {
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export type BotConnectionListByBotServiceNextResponse = ConnectionSettingResponseList;
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export interface BotConnectionListByBotServiceOptionalParams extends coreClient.OperationOptions {
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
// @public
|
|
123
|
-
export type BotConnectionListByBotServiceResponse = ConnectionSettingResponseList;
|
|
124
|
-
|
|
125
|
-
// @public
|
|
126
|
-
export interface BotConnectionListServiceProvidersOptionalParams extends coreClient.OperationOptions {
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export type BotConnectionListServiceProvidersResponse = ServiceProviderResponseList;
|
|
131
|
-
|
|
132
|
-
// @public
|
|
133
|
-
export interface BotConnectionListWithSecretsOptionalParams extends coreClient.OperationOptions {
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export type BotConnectionListWithSecretsResponse = ConnectionSetting;
|
|
138
|
-
|
|
139
|
-
// @public
|
|
140
|
-
export interface BotConnectionUpdateOptionalParams extends coreClient.OperationOptions {
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// @public
|
|
144
|
-
export type BotConnectionUpdateResponse = ConnectionSetting;
|
|
145
|
-
|
|
146
|
-
// @public
|
|
147
|
-
export interface BotProperties {
|
|
148
|
-
allSettings?: {
|
|
149
|
-
[propertyName: string]: string;
|
|
150
|
-
};
|
|
151
|
-
appPasswordHint?: string;
|
|
152
|
-
readonly cmekEncryptionStatus?: string;
|
|
153
|
-
cmekKeyVaultUrl?: string;
|
|
154
|
-
readonly configuredChannels?: string[];
|
|
155
|
-
description?: string;
|
|
156
|
-
developerAppInsightKey?: string;
|
|
157
|
-
developerAppInsightsApiKey?: string;
|
|
158
|
-
developerAppInsightsApplicationId?: string;
|
|
159
|
-
disableLocalAuth?: boolean;
|
|
160
|
-
displayName: string;
|
|
161
|
-
readonly enabledChannels?: string[];
|
|
162
|
-
endpoint: string | null;
|
|
163
|
-
readonly endpointVersion?: string;
|
|
164
|
-
iconUrl?: string;
|
|
165
|
-
isCmekEnabled?: boolean;
|
|
166
|
-
readonly isDeveloperAppInsightsApiKeySet?: boolean;
|
|
167
|
-
isStreamingSupported?: boolean;
|
|
168
|
-
luisAppIds?: string[];
|
|
169
|
-
luisKey?: string;
|
|
170
|
-
manifestUrl?: string;
|
|
171
|
-
readonly migrationToken?: string;
|
|
172
|
-
msaAppId: string;
|
|
173
|
-
msaAppMSIResourceId?: string;
|
|
174
|
-
msaAppTenantId?: string;
|
|
175
|
-
msaAppType?: MsaAppType;
|
|
176
|
-
openWithHint?: string;
|
|
177
|
-
parameters?: {
|
|
178
|
-
[propertyName: string]: string;
|
|
179
|
-
};
|
|
180
|
-
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
181
|
-
readonly provisioningState?: string;
|
|
182
|
-
publicNetworkAccess?: PublicNetworkAccess;
|
|
183
|
-
publishingCredentials?: string;
|
|
184
|
-
schemaTransformationVersion?: string;
|
|
185
|
-
storageResourceId?: string;
|
|
186
|
-
tenantId?: string;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
// @public
|
|
190
|
-
export interface BotResponseList {
|
|
191
|
-
nextLink?: string;
|
|
192
|
-
readonly value?: Bot[];
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// @public
|
|
196
|
-
export interface Bots {
|
|
197
|
-
create(resourceGroupName: string, resourceName: string, parameters: Bot, options?: BotsCreateOptionalParams): Promise<BotsCreateResponse>;
|
|
198
|
-
delete(resourceGroupName: string, resourceName: string, options?: BotsDeleteOptionalParams): Promise<void>;
|
|
199
|
-
get(resourceGroupName: string, resourceName: string, options?: BotsGetOptionalParams): Promise<BotsGetResponse>;
|
|
200
|
-
getCheckNameAvailability(parameters: CheckNameAvailabilityRequestBody, options?: BotsGetCheckNameAvailabilityOptionalParams): Promise<BotsGetCheckNameAvailabilityResponse>;
|
|
201
|
-
list(options?: BotsListOptionalParams): PagedAsyncIterableIterator<Bot>;
|
|
202
|
-
listByResourceGroup(resourceGroupName: string, options?: BotsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Bot>;
|
|
203
|
-
update(resourceGroupName: string, resourceName: string, options?: BotsUpdateOptionalParams): Promise<BotsUpdateResponse>;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
// @public
|
|
207
|
-
export interface BotsCreateOptionalParams extends coreClient.OperationOptions {
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
// @public
|
|
211
|
-
export type BotsCreateResponse = Bot;
|
|
212
|
-
|
|
213
|
-
// @public
|
|
214
|
-
export interface BotsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
// @public
|
|
218
|
-
export interface BotsGetCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// @public
|
|
222
|
-
export type BotsGetCheckNameAvailabilityResponse = CheckNameAvailabilityResponseBody;
|
|
223
|
-
|
|
224
|
-
// @public
|
|
225
|
-
export interface BotsGetOptionalParams extends coreClient.OperationOptions {
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
// @public
|
|
229
|
-
export type BotsGetResponse = Bot;
|
|
230
|
-
|
|
231
|
-
// @public
|
|
232
|
-
export interface BotsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
// @public
|
|
236
|
-
export type BotsListByResourceGroupNextResponse = BotResponseList;
|
|
237
|
-
|
|
238
|
-
// @public
|
|
239
|
-
export interface BotsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
// @public
|
|
243
|
-
export type BotsListByResourceGroupResponse = BotResponseList;
|
|
244
|
-
|
|
245
|
-
// @public
|
|
246
|
-
export interface BotsListNextOptionalParams extends coreClient.OperationOptions {
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
// @public
|
|
250
|
-
export type BotsListNextResponse = BotResponseList;
|
|
251
|
-
|
|
252
|
-
// @public
|
|
253
|
-
export interface BotsListOptionalParams extends coreClient.OperationOptions {
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
// @public
|
|
257
|
-
export type BotsListResponse = BotResponseList;
|
|
258
|
-
|
|
259
|
-
// @public
|
|
260
|
-
export interface BotsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
261
|
-
etag?: string;
|
|
262
|
-
kind?: Kind;
|
|
263
|
-
location?: string;
|
|
264
|
-
properties?: BotProperties;
|
|
265
|
-
sku?: Sku;
|
|
266
|
-
tags?: {
|
|
267
|
-
[propertyName: string]: string;
|
|
268
|
-
};
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
// @public
|
|
272
|
-
export type BotsUpdateResponse = Bot;
|
|
273
|
-
|
|
274
|
-
// @public
|
|
275
|
-
export interface Channel {
|
|
276
|
-
channelName: "AlexaChannel" | "FacebookChannel" | "EmailChannel" | "OutlookChannel" | "MsTeamsChannel" | "SkypeChannel" | "KikChannel" | "WebChatChannel" | "DirectLineChannel" | "TelegramChannel" | "SmsChannel" | "SlackChannel" | "LineChannel" | "DirectLineSpeechChannel" | "Omnichannel" | "TelephonyChannel" | "AcsChatChannel" | "SearchAssistant" | "M365Extensions";
|
|
277
|
-
etag?: string;
|
|
278
|
-
location?: string;
|
|
279
|
-
readonly provisioningState?: string;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
// @public
|
|
283
|
-
export type ChannelName = "AlexaChannel" | "FacebookChannel" | "EmailChannel" | "KikChannel" | "TelegramChannel" | "SlackChannel" | "MsTeamsChannel" | "SkypeChannel" | "WebChatChannel" | "DirectLineChannel" | "SmsChannel" | "LineChannel" | "DirectLineSpeechChannel" | "OutlookChannel" | "Omnichannel" | "TelephonyChannel" | "AcsChatChannel" | "SearchAssistant" | "M365Extensions";
|
|
284
|
-
|
|
285
|
-
// @public
|
|
286
|
-
export interface ChannelResponseList {
|
|
287
|
-
nextLink?: string;
|
|
288
|
-
readonly value?: BotChannel[];
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
// @public
|
|
292
|
-
export interface Channels {
|
|
293
|
-
create(resourceGroupName: string, resourceName: string, channelName: ChannelName, parameters: BotChannel, options?: ChannelsCreateOptionalParams): Promise<ChannelsCreateResponse>;
|
|
294
|
-
delete(resourceGroupName: string, resourceName: string, channelName: string, options?: ChannelsDeleteOptionalParams): Promise<void>;
|
|
295
|
-
get(resourceGroupName: string, resourceName: string, channelName: string, options?: ChannelsGetOptionalParams): Promise<ChannelsGetResponse>;
|
|
296
|
-
listByResourceGroup(resourceGroupName: string, resourceName: string, options?: ChannelsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<BotChannel>;
|
|
297
|
-
listWithKeys(resourceGroupName: string, resourceName: string, channelName: ChannelName, options?: ChannelsListWithKeysOptionalParams): Promise<ChannelsListWithKeysResponse>;
|
|
298
|
-
update(resourceGroupName: string, resourceName: string, channelName: ChannelName, options?: ChannelsUpdateOptionalParams): Promise<ChannelsUpdateResponse>;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
// @public
|
|
302
|
-
export interface ChannelsCreateOptionalParams extends coreClient.OperationOptions {
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
// @public
|
|
306
|
-
export type ChannelsCreateResponse = BotChannel;
|
|
307
|
-
|
|
308
|
-
// @public
|
|
309
|
-
export interface ChannelsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
// @public
|
|
313
|
-
export interface ChannelSettings {
|
|
314
|
-
botIconUrl?: string;
|
|
315
|
-
botId?: string;
|
|
316
|
-
channelDisplayName?: string;
|
|
317
|
-
channelId?: string;
|
|
318
|
-
disableLocalAuth?: boolean;
|
|
319
|
-
extensionKey1?: string;
|
|
320
|
-
extensionKey2?: string;
|
|
321
|
-
isEnabled?: boolean;
|
|
322
|
-
requireTermsAgreement?: boolean;
|
|
323
|
-
sites?: Site[];
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
// @public
|
|
327
|
-
export interface ChannelsGetOptionalParams extends coreClient.OperationOptions {
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
// @public
|
|
331
|
-
export type ChannelsGetResponse = BotChannel;
|
|
332
|
-
|
|
333
|
-
// @public
|
|
334
|
-
export interface ChannelsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
// @public
|
|
338
|
-
export type ChannelsListByResourceGroupNextResponse = ChannelResponseList;
|
|
339
|
-
|
|
340
|
-
// @public
|
|
341
|
-
export interface ChannelsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
// @public
|
|
345
|
-
export type ChannelsListByResourceGroupResponse = ChannelResponseList;
|
|
346
|
-
|
|
347
|
-
// @public
|
|
348
|
-
export interface ChannelsListWithKeysOptionalParams extends coreClient.OperationOptions {
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
// @public
|
|
352
|
-
export type ChannelsListWithKeysResponse = ListChannelWithKeysResponse;
|
|
353
|
-
|
|
354
|
-
// @public
|
|
355
|
-
export interface ChannelsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
356
|
-
etag?: string;
|
|
357
|
-
kind?: Kind;
|
|
358
|
-
location?: string;
|
|
359
|
-
properties?: ChannelUnion;
|
|
360
|
-
sku?: Sku;
|
|
361
|
-
tags?: {
|
|
362
|
-
[propertyName: string]: string;
|
|
363
|
-
};
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
// @public
|
|
367
|
-
export type ChannelsUpdateResponse = BotChannel;
|
|
368
|
-
|
|
369
|
-
// @public (undocumented)
|
|
370
|
-
export type ChannelUnion = Channel | AlexaChannel | FacebookChannel | EmailChannel | OutlookChannel | MsTeamsChannel | SkypeChannel | KikChannel | WebChatChannel | DirectLineChannel | TelegramChannel | SmsChannel | SlackChannel | LineChannel | DirectLineSpeechChannel | Omnichannel | TelephonyChannel | AcsChatChannel | SearchAssistant | M365Extensions;
|
|
371
|
-
|
|
372
|
-
// @public
|
|
373
|
-
export interface CheckNameAvailabilityRequestBody {
|
|
374
|
-
name?: string;
|
|
375
|
-
type?: string;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
// @public
|
|
379
|
-
export interface CheckNameAvailabilityResponseBody {
|
|
380
|
-
absCode?: string;
|
|
381
|
-
message?: string;
|
|
382
|
-
valid?: boolean;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
// @public
|
|
386
|
-
export interface ConnectionItemName {
|
|
387
|
-
readonly name?: string;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
// @public
|
|
391
|
-
export interface ConnectionSetting extends Resource {
|
|
392
|
-
properties?: ConnectionSettingProperties;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
// @public
|
|
396
|
-
export interface ConnectionSettingParameter {
|
|
397
|
-
key?: string;
|
|
398
|
-
value?: string;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
// @public
|
|
402
|
-
export interface ConnectionSettingProperties {
|
|
403
|
-
clientId?: string;
|
|
404
|
-
clientSecret?: string;
|
|
405
|
-
parameters?: ConnectionSettingParameter[];
|
|
406
|
-
provisioningState?: string;
|
|
407
|
-
scopes?: string;
|
|
408
|
-
serviceProviderDisplayName?: string;
|
|
409
|
-
serviceProviderId?: string;
|
|
410
|
-
readonly settingId?: string;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
// @public
|
|
414
|
-
export interface ConnectionSettingResponseList {
|
|
415
|
-
nextLink?: string;
|
|
416
|
-
readonly value?: ConnectionSetting[];
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export interface CreateEmailSignInUrlResponse {
|
|
421
|
-
readonly id?: string;
|
|
422
|
-
location?: string;
|
|
423
|
-
properties?: CreateEmailSignInUrlResponseProperties;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
// @public
|
|
427
|
-
export interface CreateEmailSignInUrlResponseProperties {
|
|
428
|
-
url?: string;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
// @public
|
|
432
|
-
export interface DirectLine {
|
|
433
|
-
regenerateKeys(resourceGroupName: string, resourceName: string, channelName: RegenerateKeysChannelName, parameters: SiteInfo, options?: DirectLineRegenerateKeysOptionalParams): Promise<DirectLineRegenerateKeysResponse>;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
// @public
|
|
437
|
-
export interface DirectLineChannel extends Channel {
|
|
438
|
-
channelName: "DirectLineChannel";
|
|
439
|
-
properties?: DirectLineChannelProperties;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
// @public
|
|
443
|
-
export interface DirectLineChannelProperties {
|
|
444
|
-
directLineEmbedCode?: string;
|
|
445
|
-
extensionKey1?: string;
|
|
446
|
-
extensionKey2?: string;
|
|
447
|
-
sites?: DirectLineSite[];
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
// @public
|
|
451
|
-
export interface DirectLineRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
// @public
|
|
455
|
-
export type DirectLineRegenerateKeysResponse = BotChannel;
|
|
456
|
-
|
|
457
|
-
// @public
|
|
458
|
-
export interface DirectLineSite extends Site {
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
// @public
|
|
462
|
-
export interface DirectLineSpeechChannel extends Channel {
|
|
463
|
-
channelName: "DirectLineSpeechChannel";
|
|
464
|
-
properties?: DirectLineSpeechChannelProperties;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
// @public
|
|
468
|
-
export interface DirectLineSpeechChannelProperties {
|
|
469
|
-
cognitiveServiceRegion?: string;
|
|
470
|
-
cognitiveServiceResourceId?: string;
|
|
471
|
-
cognitiveServiceSubscriptionKey?: string;
|
|
472
|
-
customSpeechModelId?: string;
|
|
473
|
-
customVoiceDeploymentId?: string;
|
|
474
|
-
isDefaultBotForCogSvcAccount?: boolean;
|
|
475
|
-
isEnabled?: boolean;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
// @public
|
|
479
|
-
export interface Email {
|
|
480
|
-
createSignInUrl(resourceGroupName: string, resourceName: string, options?: EmailCreateSignInUrlOptionalParams): Promise<EmailCreateSignInUrlResponse>;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
// @public
|
|
484
|
-
export interface EmailChannel extends Channel {
|
|
485
|
-
channelName: "EmailChannel";
|
|
486
|
-
properties?: EmailChannelProperties;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
// @public
|
|
490
|
-
export type EmailChannelAuthMethod = 0 | 1;
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export interface EmailChannelProperties {
|
|
494
|
-
authMethod?: EmailChannelAuthMethod;
|
|
495
|
-
emailAddress: string;
|
|
496
|
-
isEnabled: boolean;
|
|
497
|
-
magicCode?: string;
|
|
498
|
-
password?: string;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
// @public
|
|
502
|
-
export interface EmailCreateSignInUrlOptionalParams extends coreClient.OperationOptions {
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
// @public
|
|
506
|
-
export type EmailCreateSignInUrlResponse = CreateEmailSignInUrlResponse;
|
|
507
|
-
|
|
508
|
-
// @public
|
|
509
|
-
export interface ErrorBody {
|
|
510
|
-
code: string;
|
|
511
|
-
message: string;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
// @public
|
|
515
|
-
export interface ErrorModel {
|
|
516
|
-
error?: ErrorBody;
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
// @public
|
|
520
|
-
export interface FacebookChannel extends Channel {
|
|
521
|
-
channelName: "FacebookChannel";
|
|
522
|
-
properties?: FacebookChannelProperties;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
// @public
|
|
526
|
-
export interface FacebookChannelProperties {
|
|
527
|
-
appId: string;
|
|
528
|
-
appSecret?: string;
|
|
529
|
-
readonly callbackUrl?: string;
|
|
530
|
-
isEnabled: boolean;
|
|
531
|
-
pages?: FacebookPage[];
|
|
532
|
-
readonly verifyToken?: string;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
// @public
|
|
536
|
-
export interface FacebookPage {
|
|
537
|
-
accessToken?: string;
|
|
538
|
-
id: string;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
// @public
|
|
542
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
543
|
-
|
|
544
|
-
// @public
|
|
545
|
-
export interface HostSettings {
|
|
546
|
-
get(options?: HostSettingsGetOptionalParams): Promise<HostSettingsGetResponse>;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
// @public
|
|
550
|
-
export interface HostSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
// @public
|
|
554
|
-
export type HostSettingsGetResponse = HostSettingsResponse;
|
|
555
|
-
|
|
556
|
-
// @public
|
|
557
|
-
export interface HostSettingsResponse {
|
|
558
|
-
botOpenIdMetadata?: string;
|
|
559
|
-
oAuthUrl?: string;
|
|
560
|
-
toBotFromChannelOpenIdMetadataUrl?: string;
|
|
561
|
-
toBotFromChannelTokenIssuer?: string;
|
|
562
|
-
toBotFromEmulatorOpenIdMetadataUrl?: string;
|
|
563
|
-
toChannelFromBotLoginUrl?: string;
|
|
564
|
-
toChannelFromBotOAuthScope?: string;
|
|
565
|
-
validateAuthority?: boolean;
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
// @public
|
|
569
|
-
export type Key = "key1" | "key2";
|
|
570
|
-
|
|
571
|
-
// @public
|
|
572
|
-
export interface KikChannel extends Channel {
|
|
573
|
-
channelName: "KikChannel";
|
|
574
|
-
properties?: KikChannelProperties;
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
// @public
|
|
578
|
-
export interface KikChannelProperties {
|
|
579
|
-
apiKey?: string;
|
|
580
|
-
isEnabled: boolean;
|
|
581
|
-
isValidated?: boolean;
|
|
582
|
-
userName: string;
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
// @public
|
|
586
|
-
export type Kind = string;
|
|
587
|
-
|
|
588
|
-
// @public
|
|
589
|
-
export enum KnownKind {
|
|
590
|
-
Azurebot = "azurebot",
|
|
591
|
-
Bot = "bot",
|
|
592
|
-
Designer = "designer",
|
|
593
|
-
Function = "function",
|
|
594
|
-
Sdk = "sdk"
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
// @public
|
|
598
|
-
export enum KnownMsaAppType {
|
|
599
|
-
MultiTenant = "MultiTenant",
|
|
600
|
-
SingleTenant = "SingleTenant",
|
|
601
|
-
UserAssignedMSI = "UserAssignedMSI"
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
// @public
|
|
605
|
-
export enum KnownOperationResultStatus {
|
|
606
|
-
Canceled = "Canceled",
|
|
607
|
-
Failed = "Failed",
|
|
608
|
-
Requested = "Requested",
|
|
609
|
-
Running = "Running",
|
|
610
|
-
Succeeded = "Succeeded"
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
// @public
|
|
614
|
-
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
615
|
-
Creating = "Creating",
|
|
616
|
-
Deleting = "Deleting",
|
|
617
|
-
Failed = "Failed",
|
|
618
|
-
Succeeded = "Succeeded"
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
// @public
|
|
622
|
-
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
623
|
-
Approved = "Approved",
|
|
624
|
-
Pending = "Pending",
|
|
625
|
-
Rejected = "Rejected"
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
// @public
|
|
629
|
-
export enum KnownPublicNetworkAccess {
|
|
630
|
-
Disabled = "Disabled",
|
|
631
|
-
Enabled = "Enabled"
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
// @public
|
|
635
|
-
export enum KnownSkuName {
|
|
636
|
-
F0 = "F0",
|
|
637
|
-
S1 = "S1"
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
// @public
|
|
641
|
-
export enum KnownSkuTier {
|
|
642
|
-
Free = "Free",
|
|
643
|
-
Standard = "Standard"
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
// @public
|
|
647
|
-
export interface LineChannel extends Channel {
|
|
648
|
-
channelName: "LineChannel";
|
|
649
|
-
properties?: LineChannelProperties;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
// @public
|
|
653
|
-
export interface LineChannelProperties {
|
|
654
|
-
readonly callbackUrl?: string;
|
|
655
|
-
readonly isValidated?: boolean;
|
|
656
|
-
lineRegistrations: LineRegistration[];
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
// @public
|
|
660
|
-
export interface LineRegistration {
|
|
661
|
-
channelAccessToken?: string;
|
|
662
|
-
channelSecret?: string;
|
|
663
|
-
readonly generatedId?: string;
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
// @public
|
|
667
|
-
export interface ListChannelWithKeysResponse extends BotChannel {
|
|
668
|
-
changedTime?: string;
|
|
669
|
-
entityTag?: string;
|
|
670
|
-
provisioningState?: string;
|
|
671
|
-
resource?: ChannelUnion;
|
|
672
|
-
setting?: ChannelSettings;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
// @public
|
|
676
|
-
export interface M365Extensions extends Channel {
|
|
677
|
-
channelName: "M365Extensions";
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
// @public
|
|
681
|
-
export type MsaAppType = string;
|
|
682
|
-
|
|
683
|
-
// @public
|
|
684
|
-
export interface MsTeamsChannel extends Channel {
|
|
685
|
-
channelName: "MsTeamsChannel";
|
|
686
|
-
properties?: MsTeamsChannelProperties;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
// @public
|
|
690
|
-
export interface MsTeamsChannelProperties {
|
|
691
|
-
acceptedTerms?: boolean;
|
|
692
|
-
callingWebhook?: string;
|
|
693
|
-
deploymentEnvironment?: string;
|
|
694
|
-
enableCalling?: boolean;
|
|
695
|
-
incomingCallRoute?: string;
|
|
696
|
-
isEnabled: boolean;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
// @public
|
|
700
|
-
export interface Omnichannel extends Channel {
|
|
701
|
-
channelName: "Omnichannel";
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
// @public
|
|
705
|
-
export interface OperationDisplayInfo {
|
|
706
|
-
description?: string;
|
|
707
|
-
operation?: string;
|
|
708
|
-
provider?: string;
|
|
709
|
-
resource?: string;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
// @public
|
|
713
|
-
export interface OperationEntity {
|
|
714
|
-
display?: OperationDisplayInfo;
|
|
715
|
-
name?: string;
|
|
716
|
-
origin?: string;
|
|
717
|
-
properties?: Record<string, unknown>;
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
// @public
|
|
721
|
-
export interface OperationEntityListResult {
|
|
722
|
-
nextLink?: string;
|
|
723
|
-
value?: OperationEntity[];
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
// @public
|
|
727
|
-
export interface OperationResults {
|
|
728
|
-
beginGet(operationResultId: string, options?: OperationResultsGetOptionalParams): Promise<PollerLike<PollOperationState<OperationResultsGetResponse>, OperationResultsGetResponse>>;
|
|
729
|
-
beginGetAndWait(operationResultId: string, options?: OperationResultsGetOptionalParams): Promise<OperationResultsGetResponse>;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
// @public
|
|
733
|
-
export interface OperationResultsDescription {
|
|
734
|
-
readonly id?: string;
|
|
735
|
-
readonly name?: string;
|
|
736
|
-
readonly startTime?: Date;
|
|
737
|
-
readonly status?: OperationResultStatus;
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
// @public
|
|
741
|
-
export interface OperationResultsGetOptionalParams extends coreClient.OperationOptions {
|
|
742
|
-
resumeFrom?: string;
|
|
743
|
-
updateIntervalInMs?: number;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
// @public
|
|
747
|
-
export type OperationResultsGetResponse = OperationResultsDescription;
|
|
748
|
-
|
|
749
|
-
// @public
|
|
750
|
-
export type OperationResultStatus = string;
|
|
751
|
-
|
|
752
|
-
// @public
|
|
753
|
-
export interface Operations {
|
|
754
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
// @public
|
|
758
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
// @public
|
|
762
|
-
export type OperationsListNextResponse = OperationEntityListResult;
|
|
763
|
-
|
|
764
|
-
// @public
|
|
765
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
// @public
|
|
769
|
-
export type OperationsListResponse = OperationEntityListResult;
|
|
770
|
-
|
|
771
|
-
// @public
|
|
772
|
-
export interface OutlookChannel extends Channel {
|
|
773
|
-
channelName: "OutlookChannel";
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
// @public
|
|
777
|
-
export interface PrivateEndpoint {
|
|
778
|
-
readonly id?: string;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
// @public
|
|
782
|
-
export interface PrivateEndpointConnection extends PrivateLinkResourceBase {
|
|
783
|
-
groupIds?: string[];
|
|
784
|
-
privateEndpoint?: PrivateEndpoint;
|
|
785
|
-
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
786
|
-
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
// @public
|
|
790
|
-
export interface PrivateEndpointConnectionListResult {
|
|
791
|
-
value?: PrivateEndpointConnection[];
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
// @public
|
|
795
|
-
export type PrivateEndpointConnectionProvisioningState = string;
|
|
796
|
-
|
|
797
|
-
// @public
|
|
798
|
-
export interface PrivateEndpointConnections {
|
|
799
|
-
create(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOptionalParams): Promise<PrivateEndpointConnectionsCreateResponse>;
|
|
800
|
-
delete(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
801
|
-
get(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
802
|
-
list(resourceGroupName: string, resourceName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
// @public
|
|
806
|
-
export interface PrivateEndpointConnectionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
// @public
|
|
810
|
-
export type PrivateEndpointConnectionsCreateResponse = PrivateEndpointConnection;
|
|
811
|
-
|
|
812
|
-
// @public
|
|
813
|
-
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
// @public
|
|
817
|
-
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
// @public
|
|
821
|
-
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
822
|
-
|
|
823
|
-
// @public
|
|
824
|
-
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
// @public
|
|
828
|
-
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
829
|
-
|
|
830
|
-
// @public
|
|
831
|
-
export type PrivateEndpointServiceConnectionStatus = string;
|
|
832
|
-
|
|
833
|
-
// @public
|
|
834
|
-
export interface PrivateLinkResource extends PrivateLinkResourceBase {
|
|
835
|
-
readonly groupId?: string;
|
|
836
|
-
readonly requiredMembers?: string[];
|
|
837
|
-
requiredZoneNames?: string[];
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
// @public
|
|
841
|
-
export interface PrivateLinkResourceBase {
|
|
842
|
-
readonly id?: string;
|
|
843
|
-
readonly name?: string;
|
|
844
|
-
readonly type?: string;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
// @public
|
|
848
|
-
export interface PrivateLinkResourceListResult {
|
|
849
|
-
value?: PrivateLinkResource[];
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
// @public
|
|
853
|
-
export interface PrivateLinkResources {
|
|
854
|
-
listByBotResource(resourceGroupName: string, resourceName: string, options?: PrivateLinkResourcesListByBotResourceOptionalParams): Promise<PrivateLinkResourcesListByBotResourceResponse>;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
// @public
|
|
858
|
-
export interface PrivateLinkResourcesListByBotResourceOptionalParams extends coreClient.OperationOptions {
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
// @public
|
|
862
|
-
export type PrivateLinkResourcesListByBotResourceResponse = PrivateLinkResourceListResult;
|
|
863
|
-
|
|
864
|
-
// @public
|
|
865
|
-
export interface PrivateLinkServiceConnectionState {
|
|
866
|
-
actionsRequired?: string;
|
|
867
|
-
description?: string;
|
|
868
|
-
status?: PrivateEndpointServiceConnectionStatus;
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
// @public
|
|
872
|
-
export type PublicNetworkAccess = string;
|
|
873
|
-
|
|
874
|
-
// @public
|
|
875
|
-
export interface QnAMakerEndpointKeys {
|
|
876
|
-
get(parameters: QnAMakerEndpointKeysRequestBody, options?: QnAMakerEndpointKeysGetOptionalParams): Promise<QnAMakerEndpointKeysGetResponse>;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
// @public
|
|
880
|
-
export interface QnAMakerEndpointKeysGetOptionalParams extends coreClient.OperationOptions {
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
// @public
|
|
884
|
-
export type QnAMakerEndpointKeysGetResponse = QnAMakerEndpointKeysResponse;
|
|
885
|
-
|
|
886
|
-
// @public
|
|
887
|
-
export interface QnAMakerEndpointKeysRequestBody {
|
|
888
|
-
authkey?: string;
|
|
889
|
-
hostname?: string;
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
// @public
|
|
893
|
-
export interface QnAMakerEndpointKeysResponse {
|
|
894
|
-
installedVersion?: string;
|
|
895
|
-
lastStableVersion?: string;
|
|
896
|
-
primaryEndpointKey?: string;
|
|
897
|
-
secondaryEndpointKey?: string;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
// @public
|
|
901
|
-
export type RegenerateKeysChannelName = "WebChatChannel" | "DirectLineChannel";
|
|
902
|
-
|
|
903
|
-
// @public
|
|
904
|
-
export interface Resource {
|
|
905
|
-
etag?: string;
|
|
906
|
-
readonly id?: string;
|
|
907
|
-
kind?: Kind;
|
|
908
|
-
location?: string;
|
|
909
|
-
readonly name?: string;
|
|
910
|
-
sku?: Sku;
|
|
911
|
-
tags?: {
|
|
912
|
-
[propertyName: string]: string;
|
|
913
|
-
};
|
|
914
|
-
readonly type?: string;
|
|
915
|
-
readonly zones?: string[];
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
// @public
|
|
919
|
-
export interface SearchAssistant extends Channel {
|
|
920
|
-
channelName: "SearchAssistant";
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
// @public
|
|
924
|
-
export interface ServiceProvider {
|
|
925
|
-
properties?: ServiceProviderProperties;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
// @public
|
|
929
|
-
export interface ServiceProviderParameter {
|
|
930
|
-
readonly default?: string;
|
|
931
|
-
readonly description?: string;
|
|
932
|
-
readonly displayName?: string;
|
|
933
|
-
readonly helpUrl?: string;
|
|
934
|
-
readonly metadata?: ServiceProviderParameterMetadata;
|
|
935
|
-
readonly name?: string;
|
|
936
|
-
readonly type?: string;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
// @public
|
|
940
|
-
export interface ServiceProviderParameterMetadata {
|
|
941
|
-
constraints?: ServiceProviderParameterMetadataConstraints;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
// @public
|
|
945
|
-
export interface ServiceProviderParameterMetadataConstraints {
|
|
946
|
-
required?: boolean;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
// @public
|
|
950
|
-
export interface ServiceProviderProperties {
|
|
951
|
-
readonly devPortalUrl?: string;
|
|
952
|
-
readonly displayName?: string;
|
|
953
|
-
iconUrl?: string;
|
|
954
|
-
readonly id?: string;
|
|
955
|
-
parameters?: ServiceProviderParameter[];
|
|
956
|
-
readonly serviceProviderName?: string;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
// @public
|
|
960
|
-
export interface ServiceProviderResponseList {
|
|
961
|
-
nextLink?: string;
|
|
962
|
-
readonly value?: ServiceProvider[];
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
// @public
|
|
966
|
-
export interface Site {
|
|
967
|
-
appId?: string;
|
|
968
|
-
eTag?: string;
|
|
969
|
-
isBlockUserUploadEnabled?: boolean;
|
|
970
|
-
isDetailedLoggingEnabled?: boolean;
|
|
971
|
-
isEnabled: boolean;
|
|
972
|
-
isEndpointParametersEnabled?: boolean;
|
|
973
|
-
isNoStorageEnabled?: boolean;
|
|
974
|
-
isSecureSiteEnabled?: boolean;
|
|
975
|
-
readonly isTokenEnabled?: boolean;
|
|
976
|
-
isV1Enabled?: boolean;
|
|
977
|
-
isV3Enabled?: boolean;
|
|
978
|
-
isWebchatPreviewEnabled?: boolean;
|
|
979
|
-
isWebChatSpeechEnabled?: boolean;
|
|
980
|
-
readonly key?: string;
|
|
981
|
-
readonly key2?: string;
|
|
982
|
-
readonly siteId?: string;
|
|
983
|
-
siteName: string;
|
|
984
|
-
tenantId?: string;
|
|
985
|
-
trustedOrigins?: string[];
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
// @public
|
|
989
|
-
export interface SiteInfo {
|
|
990
|
-
key: Key;
|
|
991
|
-
siteName: string;
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
// @public
|
|
995
|
-
export interface Sku {
|
|
996
|
-
name: SkuName;
|
|
997
|
-
readonly tier?: SkuTier;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
// @public
|
|
1001
|
-
export type SkuName = string;
|
|
1002
|
-
|
|
1003
|
-
// @public
|
|
1004
|
-
export type SkuTier = string;
|
|
1005
|
-
|
|
1006
|
-
// @public
|
|
1007
|
-
export interface SkypeChannel extends Channel {
|
|
1008
|
-
channelName: "SkypeChannel";
|
|
1009
|
-
properties?: SkypeChannelProperties;
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
// @public
|
|
1013
|
-
export interface SkypeChannelProperties {
|
|
1014
|
-
callingWebHook?: string;
|
|
1015
|
-
enableCalling?: boolean;
|
|
1016
|
-
enableGroups?: boolean;
|
|
1017
|
-
enableMediaCards?: boolean;
|
|
1018
|
-
enableMessaging?: boolean;
|
|
1019
|
-
enableScreenSharing?: boolean;
|
|
1020
|
-
enableVideo?: boolean;
|
|
1021
|
-
groupsMode?: string;
|
|
1022
|
-
incomingCallRoute?: string;
|
|
1023
|
-
isEnabled: boolean;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
// @public
|
|
1027
|
-
export interface SlackChannel extends Channel {
|
|
1028
|
-
channelName: "SlackChannel";
|
|
1029
|
-
properties?: SlackChannelProperties;
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
// @public
|
|
1033
|
-
export interface SlackChannelProperties {
|
|
1034
|
-
clientId?: string;
|
|
1035
|
-
clientSecret?: string;
|
|
1036
|
-
isEnabled: boolean;
|
|
1037
|
-
readonly isValidated?: boolean;
|
|
1038
|
-
landingPageUrl?: string;
|
|
1039
|
-
readonly lastSubmissionId?: string;
|
|
1040
|
-
readonly redirectAction?: string;
|
|
1041
|
-
registerBeforeOAuthFlow?: boolean;
|
|
1042
|
-
scopes?: string;
|
|
1043
|
-
signingSecret?: string;
|
|
1044
|
-
verificationToken?: string;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
// @public
|
|
1048
|
-
export interface SmsChannel extends Channel {
|
|
1049
|
-
channelName: "SmsChannel";
|
|
1050
|
-
properties?: SmsChannelProperties;
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
// @public
|
|
1054
|
-
export interface SmsChannelProperties {
|
|
1055
|
-
accountSID: string;
|
|
1056
|
-
authToken?: string;
|
|
1057
|
-
isEnabled: boolean;
|
|
1058
|
-
isValidated?: boolean;
|
|
1059
|
-
phone: string;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
// @public
|
|
1063
|
-
export interface TelegramChannel extends Channel {
|
|
1064
|
-
channelName: "TelegramChannel";
|
|
1065
|
-
properties?: TelegramChannelProperties;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
// @public
|
|
1069
|
-
export interface TelegramChannelProperties {
|
|
1070
|
-
accessToken?: string;
|
|
1071
|
-
isEnabled: boolean;
|
|
1072
|
-
isValidated?: boolean;
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
// @public
|
|
1076
|
-
export interface TelephonyChannel extends Channel {
|
|
1077
|
-
channelName: "TelephonyChannel";
|
|
1078
|
-
properties?: TelephonyChannelProperties;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
// @public
|
|
1082
|
-
export interface TelephonyChannelProperties {
|
|
1083
|
-
apiConfigurations?: TelephonyChannelResourceApiConfiguration[];
|
|
1084
|
-
cognitiveServiceRegion?: string;
|
|
1085
|
-
cognitiveServiceSubscriptionKey?: string;
|
|
1086
|
-
defaultLocale?: string;
|
|
1087
|
-
isEnabled?: boolean;
|
|
1088
|
-
phoneNumbers?: TelephonyPhoneNumbers[];
|
|
1089
|
-
premiumSKU?: string;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
// @public
|
|
1093
|
-
export interface TelephonyChannelResourceApiConfiguration {
|
|
1094
|
-
cognitiveServiceRegion?: string;
|
|
1095
|
-
cognitiveServiceResourceId?: string;
|
|
1096
|
-
cognitiveServiceSubscriptionKey?: string;
|
|
1097
|
-
defaultLocale?: string;
|
|
1098
|
-
id?: string;
|
|
1099
|
-
providerName?: string;
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
// @public
|
|
1103
|
-
export interface TelephonyPhoneNumbers {
|
|
1104
|
-
acsEndpoint?: string;
|
|
1105
|
-
acsResourceId?: string;
|
|
1106
|
-
acsSecret?: string;
|
|
1107
|
-
cognitiveServiceRegion?: string;
|
|
1108
|
-
cognitiveServiceResourceId?: string;
|
|
1109
|
-
cognitiveServiceSubscriptionKey?: string;
|
|
1110
|
-
defaultLocale?: string;
|
|
1111
|
-
id?: string;
|
|
1112
|
-
offerType?: string;
|
|
1113
|
-
phoneNumber?: string;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
// @public
|
|
1117
|
-
export interface WebChatChannel extends Channel {
|
|
1118
|
-
channelName: "WebChatChannel";
|
|
1119
|
-
properties?: WebChatChannelProperties;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
// @public
|
|
1123
|
-
export interface WebChatChannelProperties {
|
|
1124
|
-
sites?: WebChatSite[];
|
|
1125
|
-
readonly webChatEmbedCode?: string;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
// @public
|
|
1129
|
-
export interface WebChatSite extends Site {
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
// (No @packageDocumentation comment for this package)
|
|
1133
|
-
|
|
1134
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-botservice"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
|
8
|
+
import * as coreClient from '@azure/core-client';
|
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
import { PollerLike } from '@azure/core-lro';
|
|
11
|
+
import { PollOperationState } from '@azure/core-lro';
|
|
12
|
+
|
|
13
|
+
// @public
|
|
14
|
+
export interface AcsChatChannel extends Channel {
|
|
15
|
+
channelName: "AcsChatChannel";
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// @public
|
|
19
|
+
export interface AlexaChannel extends Channel {
|
|
20
|
+
channelName: "AlexaChannel";
|
|
21
|
+
properties?: AlexaChannelProperties;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// @public
|
|
25
|
+
export interface AlexaChannelProperties {
|
|
26
|
+
alexaSkillId: string;
|
|
27
|
+
isEnabled: boolean;
|
|
28
|
+
readonly serviceEndpointUri?: string;
|
|
29
|
+
readonly urlFragment?: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// @public (undocumented)
|
|
33
|
+
export class AzureBotService extends coreClient.ServiceClient {
|
|
34
|
+
// (undocumented)
|
|
35
|
+
$host: string;
|
|
36
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureBotServiceOptionalParams);
|
|
37
|
+
// (undocumented)
|
|
38
|
+
apiVersion: string;
|
|
39
|
+
// (undocumented)
|
|
40
|
+
botConnection: BotConnection;
|
|
41
|
+
// (undocumented)
|
|
42
|
+
bots: Bots;
|
|
43
|
+
// (undocumented)
|
|
44
|
+
channels: Channels;
|
|
45
|
+
// (undocumented)
|
|
46
|
+
directLine: DirectLine;
|
|
47
|
+
// (undocumented)
|
|
48
|
+
email: Email;
|
|
49
|
+
// (undocumented)
|
|
50
|
+
hostSettings: HostSettings;
|
|
51
|
+
// (undocumented)
|
|
52
|
+
operationResults: OperationResults;
|
|
53
|
+
// (undocumented)
|
|
54
|
+
operations: Operations;
|
|
55
|
+
// (undocumented)
|
|
56
|
+
privateEndpointConnections: PrivateEndpointConnections;
|
|
57
|
+
// (undocumented)
|
|
58
|
+
privateLinkResources: PrivateLinkResources;
|
|
59
|
+
// (undocumented)
|
|
60
|
+
qnAMakerEndpointKeys: QnAMakerEndpointKeys;
|
|
61
|
+
// (undocumented)
|
|
62
|
+
subscriptionId: string;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// @public
|
|
66
|
+
export interface AzureBotServiceOptionalParams extends coreClient.ServiceClientOptions {
|
|
67
|
+
$host?: string;
|
|
68
|
+
apiVersion?: string;
|
|
69
|
+
endpoint?: string;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// @public
|
|
73
|
+
export interface Bot extends Resource {
|
|
74
|
+
properties?: BotProperties;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export interface BotChannel extends Resource {
|
|
79
|
+
properties?: ChannelUnion;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// @public
|
|
83
|
+
export interface BotConnection {
|
|
84
|
+
create(resourceGroupName: string, resourceName: string, connectionName: string, parameters: ConnectionSetting, options?: BotConnectionCreateOptionalParams): Promise<BotConnectionCreateResponse>;
|
|
85
|
+
delete(resourceGroupName: string, resourceName: string, connectionName: string, options?: BotConnectionDeleteOptionalParams): Promise<void>;
|
|
86
|
+
get(resourceGroupName: string, resourceName: string, connectionName: string, options?: BotConnectionGetOptionalParams): Promise<BotConnectionGetResponse>;
|
|
87
|
+
listByBotService(resourceGroupName: string, resourceName: string, options?: BotConnectionListByBotServiceOptionalParams): PagedAsyncIterableIterator<ConnectionSetting>;
|
|
88
|
+
listServiceProviders(options?: BotConnectionListServiceProvidersOptionalParams): Promise<BotConnectionListServiceProvidersResponse>;
|
|
89
|
+
listWithSecrets(resourceGroupName: string, resourceName: string, connectionName: string, options?: BotConnectionListWithSecretsOptionalParams): Promise<BotConnectionListWithSecretsResponse>;
|
|
90
|
+
update(resourceGroupName: string, resourceName: string, connectionName: string, parameters: ConnectionSetting, options?: BotConnectionUpdateOptionalParams): Promise<BotConnectionUpdateResponse>;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export interface BotConnectionCreateOptionalParams extends coreClient.OperationOptions {
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// @public
|
|
98
|
+
export type BotConnectionCreateResponse = ConnectionSetting;
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export interface BotConnectionDeleteOptionalParams extends coreClient.OperationOptions {
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// @public
|
|
105
|
+
export interface BotConnectionGetOptionalParams extends coreClient.OperationOptions {
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// @public
|
|
109
|
+
export type BotConnectionGetResponse = ConnectionSetting;
|
|
110
|
+
|
|
111
|
+
// @public
|
|
112
|
+
export interface BotConnectionListByBotServiceNextOptionalParams extends coreClient.OperationOptions {
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export type BotConnectionListByBotServiceNextResponse = ConnectionSettingResponseList;
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export interface BotConnectionListByBotServiceOptionalParams extends coreClient.OperationOptions {
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// @public
|
|
123
|
+
export type BotConnectionListByBotServiceResponse = ConnectionSettingResponseList;
|
|
124
|
+
|
|
125
|
+
// @public
|
|
126
|
+
export interface BotConnectionListServiceProvidersOptionalParams extends coreClient.OperationOptions {
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export type BotConnectionListServiceProvidersResponse = ServiceProviderResponseList;
|
|
131
|
+
|
|
132
|
+
// @public
|
|
133
|
+
export interface BotConnectionListWithSecretsOptionalParams extends coreClient.OperationOptions {
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export type BotConnectionListWithSecretsResponse = ConnectionSetting;
|
|
138
|
+
|
|
139
|
+
// @public
|
|
140
|
+
export interface BotConnectionUpdateOptionalParams extends coreClient.OperationOptions {
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// @public
|
|
144
|
+
export type BotConnectionUpdateResponse = ConnectionSetting;
|
|
145
|
+
|
|
146
|
+
// @public
|
|
147
|
+
export interface BotProperties {
|
|
148
|
+
allSettings?: {
|
|
149
|
+
[propertyName: string]: string;
|
|
150
|
+
};
|
|
151
|
+
appPasswordHint?: string;
|
|
152
|
+
readonly cmekEncryptionStatus?: string;
|
|
153
|
+
cmekKeyVaultUrl?: string;
|
|
154
|
+
readonly configuredChannels?: string[];
|
|
155
|
+
description?: string;
|
|
156
|
+
developerAppInsightKey?: string;
|
|
157
|
+
developerAppInsightsApiKey?: string;
|
|
158
|
+
developerAppInsightsApplicationId?: string;
|
|
159
|
+
disableLocalAuth?: boolean;
|
|
160
|
+
displayName: string;
|
|
161
|
+
readonly enabledChannels?: string[];
|
|
162
|
+
endpoint: string | null;
|
|
163
|
+
readonly endpointVersion?: string;
|
|
164
|
+
iconUrl?: string;
|
|
165
|
+
isCmekEnabled?: boolean;
|
|
166
|
+
readonly isDeveloperAppInsightsApiKeySet?: boolean;
|
|
167
|
+
isStreamingSupported?: boolean;
|
|
168
|
+
luisAppIds?: string[];
|
|
169
|
+
luisKey?: string;
|
|
170
|
+
manifestUrl?: string;
|
|
171
|
+
readonly migrationToken?: string;
|
|
172
|
+
msaAppId: string;
|
|
173
|
+
msaAppMSIResourceId?: string;
|
|
174
|
+
msaAppTenantId?: string;
|
|
175
|
+
msaAppType?: MsaAppType;
|
|
176
|
+
openWithHint?: string;
|
|
177
|
+
parameters?: {
|
|
178
|
+
[propertyName: string]: string;
|
|
179
|
+
};
|
|
180
|
+
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
181
|
+
readonly provisioningState?: string;
|
|
182
|
+
publicNetworkAccess?: PublicNetworkAccess;
|
|
183
|
+
publishingCredentials?: string;
|
|
184
|
+
schemaTransformationVersion?: string;
|
|
185
|
+
storageResourceId?: string;
|
|
186
|
+
tenantId?: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export interface BotResponseList {
|
|
191
|
+
nextLink?: string;
|
|
192
|
+
readonly value?: Bot[];
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// @public
|
|
196
|
+
export interface Bots {
|
|
197
|
+
create(resourceGroupName: string, resourceName: string, parameters: Bot, options?: BotsCreateOptionalParams): Promise<BotsCreateResponse>;
|
|
198
|
+
delete(resourceGroupName: string, resourceName: string, options?: BotsDeleteOptionalParams): Promise<void>;
|
|
199
|
+
get(resourceGroupName: string, resourceName: string, options?: BotsGetOptionalParams): Promise<BotsGetResponse>;
|
|
200
|
+
getCheckNameAvailability(parameters: CheckNameAvailabilityRequestBody, options?: BotsGetCheckNameAvailabilityOptionalParams): Promise<BotsGetCheckNameAvailabilityResponse>;
|
|
201
|
+
list(options?: BotsListOptionalParams): PagedAsyncIterableIterator<Bot>;
|
|
202
|
+
listByResourceGroup(resourceGroupName: string, options?: BotsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Bot>;
|
|
203
|
+
update(resourceGroupName: string, resourceName: string, options?: BotsUpdateOptionalParams): Promise<BotsUpdateResponse>;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// @public
|
|
207
|
+
export interface BotsCreateOptionalParams extends coreClient.OperationOptions {
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
// @public
|
|
211
|
+
export type BotsCreateResponse = Bot;
|
|
212
|
+
|
|
213
|
+
// @public
|
|
214
|
+
export interface BotsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// @public
|
|
218
|
+
export interface BotsGetCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// @public
|
|
222
|
+
export type BotsGetCheckNameAvailabilityResponse = CheckNameAvailabilityResponseBody;
|
|
223
|
+
|
|
224
|
+
// @public
|
|
225
|
+
export interface BotsGetOptionalParams extends coreClient.OperationOptions {
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// @public
|
|
229
|
+
export type BotsGetResponse = Bot;
|
|
230
|
+
|
|
231
|
+
// @public
|
|
232
|
+
export interface BotsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
// @public
|
|
236
|
+
export type BotsListByResourceGroupNextResponse = BotResponseList;
|
|
237
|
+
|
|
238
|
+
// @public
|
|
239
|
+
export interface BotsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// @public
|
|
243
|
+
export type BotsListByResourceGroupResponse = BotResponseList;
|
|
244
|
+
|
|
245
|
+
// @public
|
|
246
|
+
export interface BotsListNextOptionalParams extends coreClient.OperationOptions {
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
// @public
|
|
250
|
+
export type BotsListNextResponse = BotResponseList;
|
|
251
|
+
|
|
252
|
+
// @public
|
|
253
|
+
export interface BotsListOptionalParams extends coreClient.OperationOptions {
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// @public
|
|
257
|
+
export type BotsListResponse = BotResponseList;
|
|
258
|
+
|
|
259
|
+
// @public
|
|
260
|
+
export interface BotsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
261
|
+
etag?: string;
|
|
262
|
+
kind?: Kind;
|
|
263
|
+
location?: string;
|
|
264
|
+
properties?: BotProperties;
|
|
265
|
+
sku?: Sku;
|
|
266
|
+
tags?: {
|
|
267
|
+
[propertyName: string]: string;
|
|
268
|
+
};
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
// @public
|
|
272
|
+
export type BotsUpdateResponse = Bot;
|
|
273
|
+
|
|
274
|
+
// @public
|
|
275
|
+
export interface Channel {
|
|
276
|
+
channelName: "AlexaChannel" | "FacebookChannel" | "EmailChannel" | "OutlookChannel" | "MsTeamsChannel" | "SkypeChannel" | "KikChannel" | "WebChatChannel" | "DirectLineChannel" | "TelegramChannel" | "SmsChannel" | "SlackChannel" | "LineChannel" | "DirectLineSpeechChannel" | "Omnichannel" | "TelephonyChannel" | "AcsChatChannel" | "SearchAssistant" | "M365Extensions";
|
|
277
|
+
etag?: string;
|
|
278
|
+
location?: string;
|
|
279
|
+
readonly provisioningState?: string;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
// @public
|
|
283
|
+
export type ChannelName = "AlexaChannel" | "FacebookChannel" | "EmailChannel" | "KikChannel" | "TelegramChannel" | "SlackChannel" | "MsTeamsChannel" | "SkypeChannel" | "WebChatChannel" | "DirectLineChannel" | "SmsChannel" | "LineChannel" | "DirectLineSpeechChannel" | "OutlookChannel" | "Omnichannel" | "TelephonyChannel" | "AcsChatChannel" | "SearchAssistant" | "M365Extensions";
|
|
284
|
+
|
|
285
|
+
// @public
|
|
286
|
+
export interface ChannelResponseList {
|
|
287
|
+
nextLink?: string;
|
|
288
|
+
readonly value?: BotChannel[];
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// @public
|
|
292
|
+
export interface Channels {
|
|
293
|
+
create(resourceGroupName: string, resourceName: string, channelName: ChannelName, parameters: BotChannel, options?: ChannelsCreateOptionalParams): Promise<ChannelsCreateResponse>;
|
|
294
|
+
delete(resourceGroupName: string, resourceName: string, channelName: string, options?: ChannelsDeleteOptionalParams): Promise<void>;
|
|
295
|
+
get(resourceGroupName: string, resourceName: string, channelName: string, options?: ChannelsGetOptionalParams): Promise<ChannelsGetResponse>;
|
|
296
|
+
listByResourceGroup(resourceGroupName: string, resourceName: string, options?: ChannelsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<BotChannel>;
|
|
297
|
+
listWithKeys(resourceGroupName: string, resourceName: string, channelName: ChannelName, options?: ChannelsListWithKeysOptionalParams): Promise<ChannelsListWithKeysResponse>;
|
|
298
|
+
update(resourceGroupName: string, resourceName: string, channelName: ChannelName, options?: ChannelsUpdateOptionalParams): Promise<ChannelsUpdateResponse>;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
// @public
|
|
302
|
+
export interface ChannelsCreateOptionalParams extends coreClient.OperationOptions {
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// @public
|
|
306
|
+
export type ChannelsCreateResponse = BotChannel;
|
|
307
|
+
|
|
308
|
+
// @public
|
|
309
|
+
export interface ChannelsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// @public
|
|
313
|
+
export interface ChannelSettings {
|
|
314
|
+
botIconUrl?: string;
|
|
315
|
+
botId?: string;
|
|
316
|
+
channelDisplayName?: string;
|
|
317
|
+
channelId?: string;
|
|
318
|
+
disableLocalAuth?: boolean;
|
|
319
|
+
extensionKey1?: string;
|
|
320
|
+
extensionKey2?: string;
|
|
321
|
+
isEnabled?: boolean;
|
|
322
|
+
requireTermsAgreement?: boolean;
|
|
323
|
+
sites?: Site[];
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// @public
|
|
327
|
+
export interface ChannelsGetOptionalParams extends coreClient.OperationOptions {
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// @public
|
|
331
|
+
export type ChannelsGetResponse = BotChannel;
|
|
332
|
+
|
|
333
|
+
// @public
|
|
334
|
+
export interface ChannelsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
// @public
|
|
338
|
+
export type ChannelsListByResourceGroupNextResponse = ChannelResponseList;
|
|
339
|
+
|
|
340
|
+
// @public
|
|
341
|
+
export interface ChannelsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
// @public
|
|
345
|
+
export type ChannelsListByResourceGroupResponse = ChannelResponseList;
|
|
346
|
+
|
|
347
|
+
// @public
|
|
348
|
+
export interface ChannelsListWithKeysOptionalParams extends coreClient.OperationOptions {
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
// @public
|
|
352
|
+
export type ChannelsListWithKeysResponse = ListChannelWithKeysResponse;
|
|
353
|
+
|
|
354
|
+
// @public
|
|
355
|
+
export interface ChannelsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
356
|
+
etag?: string;
|
|
357
|
+
kind?: Kind;
|
|
358
|
+
location?: string;
|
|
359
|
+
properties?: ChannelUnion;
|
|
360
|
+
sku?: Sku;
|
|
361
|
+
tags?: {
|
|
362
|
+
[propertyName: string]: string;
|
|
363
|
+
};
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
// @public
|
|
367
|
+
export type ChannelsUpdateResponse = BotChannel;
|
|
368
|
+
|
|
369
|
+
// @public (undocumented)
|
|
370
|
+
export type ChannelUnion = Channel | AlexaChannel | FacebookChannel | EmailChannel | OutlookChannel | MsTeamsChannel | SkypeChannel | KikChannel | WebChatChannel | DirectLineChannel | TelegramChannel | SmsChannel | SlackChannel | LineChannel | DirectLineSpeechChannel | Omnichannel | TelephonyChannel | AcsChatChannel | SearchAssistant | M365Extensions;
|
|
371
|
+
|
|
372
|
+
// @public
|
|
373
|
+
export interface CheckNameAvailabilityRequestBody {
|
|
374
|
+
name?: string;
|
|
375
|
+
type?: string;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// @public
|
|
379
|
+
export interface CheckNameAvailabilityResponseBody {
|
|
380
|
+
absCode?: string;
|
|
381
|
+
message?: string;
|
|
382
|
+
valid?: boolean;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
// @public
|
|
386
|
+
export interface ConnectionItemName {
|
|
387
|
+
readonly name?: string;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
// @public
|
|
391
|
+
export interface ConnectionSetting extends Resource {
|
|
392
|
+
properties?: ConnectionSettingProperties;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
// @public
|
|
396
|
+
export interface ConnectionSettingParameter {
|
|
397
|
+
key?: string;
|
|
398
|
+
value?: string;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
// @public
|
|
402
|
+
export interface ConnectionSettingProperties {
|
|
403
|
+
clientId?: string;
|
|
404
|
+
clientSecret?: string;
|
|
405
|
+
parameters?: ConnectionSettingParameter[];
|
|
406
|
+
provisioningState?: string;
|
|
407
|
+
scopes?: string;
|
|
408
|
+
serviceProviderDisplayName?: string;
|
|
409
|
+
serviceProviderId?: string;
|
|
410
|
+
readonly settingId?: string;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// @public
|
|
414
|
+
export interface ConnectionSettingResponseList {
|
|
415
|
+
nextLink?: string;
|
|
416
|
+
readonly value?: ConnectionSetting[];
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export interface CreateEmailSignInUrlResponse {
|
|
421
|
+
readonly id?: string;
|
|
422
|
+
location?: string;
|
|
423
|
+
properties?: CreateEmailSignInUrlResponseProperties;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
// @public
|
|
427
|
+
export interface CreateEmailSignInUrlResponseProperties {
|
|
428
|
+
url?: string;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
// @public
|
|
432
|
+
export interface DirectLine {
|
|
433
|
+
regenerateKeys(resourceGroupName: string, resourceName: string, channelName: RegenerateKeysChannelName, parameters: SiteInfo, options?: DirectLineRegenerateKeysOptionalParams): Promise<DirectLineRegenerateKeysResponse>;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
// @public
|
|
437
|
+
export interface DirectLineChannel extends Channel {
|
|
438
|
+
channelName: "DirectLineChannel";
|
|
439
|
+
properties?: DirectLineChannelProperties;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// @public
|
|
443
|
+
export interface DirectLineChannelProperties {
|
|
444
|
+
directLineEmbedCode?: string;
|
|
445
|
+
extensionKey1?: string;
|
|
446
|
+
extensionKey2?: string;
|
|
447
|
+
sites?: DirectLineSite[];
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
// @public
|
|
451
|
+
export interface DirectLineRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
// @public
|
|
455
|
+
export type DirectLineRegenerateKeysResponse = BotChannel;
|
|
456
|
+
|
|
457
|
+
// @public
|
|
458
|
+
export interface DirectLineSite extends Site {
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
// @public
|
|
462
|
+
export interface DirectLineSpeechChannel extends Channel {
|
|
463
|
+
channelName: "DirectLineSpeechChannel";
|
|
464
|
+
properties?: DirectLineSpeechChannelProperties;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
// @public
|
|
468
|
+
export interface DirectLineSpeechChannelProperties {
|
|
469
|
+
cognitiveServiceRegion?: string;
|
|
470
|
+
cognitiveServiceResourceId?: string;
|
|
471
|
+
cognitiveServiceSubscriptionKey?: string;
|
|
472
|
+
customSpeechModelId?: string;
|
|
473
|
+
customVoiceDeploymentId?: string;
|
|
474
|
+
isDefaultBotForCogSvcAccount?: boolean;
|
|
475
|
+
isEnabled?: boolean;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
// @public
|
|
479
|
+
export interface Email {
|
|
480
|
+
createSignInUrl(resourceGroupName: string, resourceName: string, options?: EmailCreateSignInUrlOptionalParams): Promise<EmailCreateSignInUrlResponse>;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
// @public
|
|
484
|
+
export interface EmailChannel extends Channel {
|
|
485
|
+
channelName: "EmailChannel";
|
|
486
|
+
properties?: EmailChannelProperties;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
// @public
|
|
490
|
+
export type EmailChannelAuthMethod = 0 | 1;
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export interface EmailChannelProperties {
|
|
494
|
+
authMethod?: EmailChannelAuthMethod;
|
|
495
|
+
emailAddress: string;
|
|
496
|
+
isEnabled: boolean;
|
|
497
|
+
magicCode?: string;
|
|
498
|
+
password?: string;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
// @public
|
|
502
|
+
export interface EmailCreateSignInUrlOptionalParams extends coreClient.OperationOptions {
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
// @public
|
|
506
|
+
export type EmailCreateSignInUrlResponse = CreateEmailSignInUrlResponse;
|
|
507
|
+
|
|
508
|
+
// @public
|
|
509
|
+
export interface ErrorBody {
|
|
510
|
+
code: string;
|
|
511
|
+
message: string;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
// @public
|
|
515
|
+
export interface ErrorModel {
|
|
516
|
+
error?: ErrorBody;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
// @public
|
|
520
|
+
export interface FacebookChannel extends Channel {
|
|
521
|
+
channelName: "FacebookChannel";
|
|
522
|
+
properties?: FacebookChannelProperties;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
// @public
|
|
526
|
+
export interface FacebookChannelProperties {
|
|
527
|
+
appId: string;
|
|
528
|
+
appSecret?: string;
|
|
529
|
+
readonly callbackUrl?: string;
|
|
530
|
+
isEnabled: boolean;
|
|
531
|
+
pages?: FacebookPage[];
|
|
532
|
+
readonly verifyToken?: string;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
// @public
|
|
536
|
+
export interface FacebookPage {
|
|
537
|
+
accessToken?: string;
|
|
538
|
+
id: string;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
// @public
|
|
542
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
543
|
+
|
|
544
|
+
// @public
|
|
545
|
+
export interface HostSettings {
|
|
546
|
+
get(options?: HostSettingsGetOptionalParams): Promise<HostSettingsGetResponse>;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
// @public
|
|
550
|
+
export interface HostSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
// @public
|
|
554
|
+
export type HostSettingsGetResponse = HostSettingsResponse;
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export interface HostSettingsResponse {
|
|
558
|
+
botOpenIdMetadata?: string;
|
|
559
|
+
oAuthUrl?: string;
|
|
560
|
+
toBotFromChannelOpenIdMetadataUrl?: string;
|
|
561
|
+
toBotFromChannelTokenIssuer?: string;
|
|
562
|
+
toBotFromEmulatorOpenIdMetadataUrl?: string;
|
|
563
|
+
toChannelFromBotLoginUrl?: string;
|
|
564
|
+
toChannelFromBotOAuthScope?: string;
|
|
565
|
+
validateAuthority?: boolean;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
// @public
|
|
569
|
+
export type Key = "key1" | "key2";
|
|
570
|
+
|
|
571
|
+
// @public
|
|
572
|
+
export interface KikChannel extends Channel {
|
|
573
|
+
channelName: "KikChannel";
|
|
574
|
+
properties?: KikChannelProperties;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
// @public
|
|
578
|
+
export interface KikChannelProperties {
|
|
579
|
+
apiKey?: string;
|
|
580
|
+
isEnabled: boolean;
|
|
581
|
+
isValidated?: boolean;
|
|
582
|
+
userName: string;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// @public
|
|
586
|
+
export type Kind = string;
|
|
587
|
+
|
|
588
|
+
// @public
|
|
589
|
+
export enum KnownKind {
|
|
590
|
+
Azurebot = "azurebot",
|
|
591
|
+
Bot = "bot",
|
|
592
|
+
Designer = "designer",
|
|
593
|
+
Function = "function",
|
|
594
|
+
Sdk = "sdk"
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
// @public
|
|
598
|
+
export enum KnownMsaAppType {
|
|
599
|
+
MultiTenant = "MultiTenant",
|
|
600
|
+
SingleTenant = "SingleTenant",
|
|
601
|
+
UserAssignedMSI = "UserAssignedMSI"
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
// @public
|
|
605
|
+
export enum KnownOperationResultStatus {
|
|
606
|
+
Canceled = "Canceled",
|
|
607
|
+
Failed = "Failed",
|
|
608
|
+
Requested = "Requested",
|
|
609
|
+
Running = "Running",
|
|
610
|
+
Succeeded = "Succeeded"
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
// @public
|
|
614
|
+
export enum KnownPrivateEndpointConnectionProvisioningState {
|
|
615
|
+
Creating = "Creating",
|
|
616
|
+
Deleting = "Deleting",
|
|
617
|
+
Failed = "Failed",
|
|
618
|
+
Succeeded = "Succeeded"
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
// @public
|
|
622
|
+
export enum KnownPrivateEndpointServiceConnectionStatus {
|
|
623
|
+
Approved = "Approved",
|
|
624
|
+
Pending = "Pending",
|
|
625
|
+
Rejected = "Rejected"
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
// @public
|
|
629
|
+
export enum KnownPublicNetworkAccess {
|
|
630
|
+
Disabled = "Disabled",
|
|
631
|
+
Enabled = "Enabled"
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
// @public
|
|
635
|
+
export enum KnownSkuName {
|
|
636
|
+
F0 = "F0",
|
|
637
|
+
S1 = "S1"
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
// @public
|
|
641
|
+
export enum KnownSkuTier {
|
|
642
|
+
Free = "Free",
|
|
643
|
+
Standard = "Standard"
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
// @public
|
|
647
|
+
export interface LineChannel extends Channel {
|
|
648
|
+
channelName: "LineChannel";
|
|
649
|
+
properties?: LineChannelProperties;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
// @public
|
|
653
|
+
export interface LineChannelProperties {
|
|
654
|
+
readonly callbackUrl?: string;
|
|
655
|
+
readonly isValidated?: boolean;
|
|
656
|
+
lineRegistrations: LineRegistration[];
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
// @public
|
|
660
|
+
export interface LineRegistration {
|
|
661
|
+
channelAccessToken?: string;
|
|
662
|
+
channelSecret?: string;
|
|
663
|
+
readonly generatedId?: string;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
// @public
|
|
667
|
+
export interface ListChannelWithKeysResponse extends BotChannel {
|
|
668
|
+
changedTime?: string;
|
|
669
|
+
entityTag?: string;
|
|
670
|
+
provisioningState?: string;
|
|
671
|
+
resource?: ChannelUnion;
|
|
672
|
+
setting?: ChannelSettings;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
// @public
|
|
676
|
+
export interface M365Extensions extends Channel {
|
|
677
|
+
channelName: "M365Extensions";
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
// @public
|
|
681
|
+
export type MsaAppType = string;
|
|
682
|
+
|
|
683
|
+
// @public
|
|
684
|
+
export interface MsTeamsChannel extends Channel {
|
|
685
|
+
channelName: "MsTeamsChannel";
|
|
686
|
+
properties?: MsTeamsChannelProperties;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
// @public
|
|
690
|
+
export interface MsTeamsChannelProperties {
|
|
691
|
+
acceptedTerms?: boolean;
|
|
692
|
+
callingWebhook?: string;
|
|
693
|
+
deploymentEnvironment?: string;
|
|
694
|
+
enableCalling?: boolean;
|
|
695
|
+
incomingCallRoute?: string;
|
|
696
|
+
isEnabled: boolean;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
// @public
|
|
700
|
+
export interface Omnichannel extends Channel {
|
|
701
|
+
channelName: "Omnichannel";
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// @public
|
|
705
|
+
export interface OperationDisplayInfo {
|
|
706
|
+
description?: string;
|
|
707
|
+
operation?: string;
|
|
708
|
+
provider?: string;
|
|
709
|
+
resource?: string;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
// @public
|
|
713
|
+
export interface OperationEntity {
|
|
714
|
+
display?: OperationDisplayInfo;
|
|
715
|
+
name?: string;
|
|
716
|
+
origin?: string;
|
|
717
|
+
properties?: Record<string, unknown>;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
// @public
|
|
721
|
+
export interface OperationEntityListResult {
|
|
722
|
+
nextLink?: string;
|
|
723
|
+
value?: OperationEntity[];
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
// @public
|
|
727
|
+
export interface OperationResults {
|
|
728
|
+
beginGet(operationResultId: string, options?: OperationResultsGetOptionalParams): Promise<PollerLike<PollOperationState<OperationResultsGetResponse>, OperationResultsGetResponse>>;
|
|
729
|
+
beginGetAndWait(operationResultId: string, options?: OperationResultsGetOptionalParams): Promise<OperationResultsGetResponse>;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
// @public
|
|
733
|
+
export interface OperationResultsDescription {
|
|
734
|
+
readonly id?: string;
|
|
735
|
+
readonly name?: string;
|
|
736
|
+
readonly startTime?: Date;
|
|
737
|
+
readonly status?: OperationResultStatus;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
// @public
|
|
741
|
+
export interface OperationResultsGetOptionalParams extends coreClient.OperationOptions {
|
|
742
|
+
resumeFrom?: string;
|
|
743
|
+
updateIntervalInMs?: number;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
// @public
|
|
747
|
+
export type OperationResultsGetResponse = OperationResultsDescription;
|
|
748
|
+
|
|
749
|
+
// @public
|
|
750
|
+
export type OperationResultStatus = string;
|
|
751
|
+
|
|
752
|
+
// @public
|
|
753
|
+
export interface Operations {
|
|
754
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
// @public
|
|
758
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
// @public
|
|
762
|
+
export type OperationsListNextResponse = OperationEntityListResult;
|
|
763
|
+
|
|
764
|
+
// @public
|
|
765
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
// @public
|
|
769
|
+
export type OperationsListResponse = OperationEntityListResult;
|
|
770
|
+
|
|
771
|
+
// @public
|
|
772
|
+
export interface OutlookChannel extends Channel {
|
|
773
|
+
channelName: "OutlookChannel";
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
// @public
|
|
777
|
+
export interface PrivateEndpoint {
|
|
778
|
+
readonly id?: string;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
// @public
|
|
782
|
+
export interface PrivateEndpointConnection extends PrivateLinkResourceBase {
|
|
783
|
+
groupIds?: string[];
|
|
784
|
+
privateEndpoint?: PrivateEndpoint;
|
|
785
|
+
privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState;
|
|
786
|
+
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
// @public
|
|
790
|
+
export interface PrivateEndpointConnectionListResult {
|
|
791
|
+
value?: PrivateEndpointConnection[];
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
// @public
|
|
795
|
+
export type PrivateEndpointConnectionProvisioningState = string;
|
|
796
|
+
|
|
797
|
+
// @public
|
|
798
|
+
export interface PrivateEndpointConnections {
|
|
799
|
+
create(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsCreateOptionalParams): Promise<PrivateEndpointConnectionsCreateResponse>;
|
|
800
|
+
delete(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>;
|
|
801
|
+
get(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnectionsGetResponse>;
|
|
802
|
+
list(resourceGroupName: string, resourceName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection>;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
// @public
|
|
806
|
+
export interface PrivateEndpointConnectionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
// @public
|
|
810
|
+
export type PrivateEndpointConnectionsCreateResponse = PrivateEndpointConnection;
|
|
811
|
+
|
|
812
|
+
// @public
|
|
813
|
+
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
// @public
|
|
817
|
+
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
// @public
|
|
821
|
+
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
822
|
+
|
|
823
|
+
// @public
|
|
824
|
+
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
// @public
|
|
828
|
+
export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
|
829
|
+
|
|
830
|
+
// @public
|
|
831
|
+
export type PrivateEndpointServiceConnectionStatus = string;
|
|
832
|
+
|
|
833
|
+
// @public
|
|
834
|
+
export interface PrivateLinkResource extends PrivateLinkResourceBase {
|
|
835
|
+
readonly groupId?: string;
|
|
836
|
+
readonly requiredMembers?: string[];
|
|
837
|
+
requiredZoneNames?: string[];
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
// @public
|
|
841
|
+
export interface PrivateLinkResourceBase {
|
|
842
|
+
readonly id?: string;
|
|
843
|
+
readonly name?: string;
|
|
844
|
+
readonly type?: string;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
// @public
|
|
848
|
+
export interface PrivateLinkResourceListResult {
|
|
849
|
+
value?: PrivateLinkResource[];
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// @public
|
|
853
|
+
export interface PrivateLinkResources {
|
|
854
|
+
listByBotResource(resourceGroupName: string, resourceName: string, options?: PrivateLinkResourcesListByBotResourceOptionalParams): Promise<PrivateLinkResourcesListByBotResourceResponse>;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
// @public
|
|
858
|
+
export interface PrivateLinkResourcesListByBotResourceOptionalParams extends coreClient.OperationOptions {
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
// @public
|
|
862
|
+
export type PrivateLinkResourcesListByBotResourceResponse = PrivateLinkResourceListResult;
|
|
863
|
+
|
|
864
|
+
// @public
|
|
865
|
+
export interface PrivateLinkServiceConnectionState {
|
|
866
|
+
actionsRequired?: string;
|
|
867
|
+
description?: string;
|
|
868
|
+
status?: PrivateEndpointServiceConnectionStatus;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
// @public
|
|
872
|
+
export type PublicNetworkAccess = string;
|
|
873
|
+
|
|
874
|
+
// @public
|
|
875
|
+
export interface QnAMakerEndpointKeys {
|
|
876
|
+
get(parameters: QnAMakerEndpointKeysRequestBody, options?: QnAMakerEndpointKeysGetOptionalParams): Promise<QnAMakerEndpointKeysGetResponse>;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
// @public
|
|
880
|
+
export interface QnAMakerEndpointKeysGetOptionalParams extends coreClient.OperationOptions {
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
// @public
|
|
884
|
+
export type QnAMakerEndpointKeysGetResponse = QnAMakerEndpointKeysResponse;
|
|
885
|
+
|
|
886
|
+
// @public
|
|
887
|
+
export interface QnAMakerEndpointKeysRequestBody {
|
|
888
|
+
authkey?: string;
|
|
889
|
+
hostname?: string;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
// @public
|
|
893
|
+
export interface QnAMakerEndpointKeysResponse {
|
|
894
|
+
installedVersion?: string;
|
|
895
|
+
lastStableVersion?: string;
|
|
896
|
+
primaryEndpointKey?: string;
|
|
897
|
+
secondaryEndpointKey?: string;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
// @public
|
|
901
|
+
export type RegenerateKeysChannelName = "WebChatChannel" | "DirectLineChannel";
|
|
902
|
+
|
|
903
|
+
// @public
|
|
904
|
+
export interface Resource {
|
|
905
|
+
etag?: string;
|
|
906
|
+
readonly id?: string;
|
|
907
|
+
kind?: Kind;
|
|
908
|
+
location?: string;
|
|
909
|
+
readonly name?: string;
|
|
910
|
+
sku?: Sku;
|
|
911
|
+
tags?: {
|
|
912
|
+
[propertyName: string]: string;
|
|
913
|
+
};
|
|
914
|
+
readonly type?: string;
|
|
915
|
+
readonly zones?: string[];
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
// @public
|
|
919
|
+
export interface SearchAssistant extends Channel {
|
|
920
|
+
channelName: "SearchAssistant";
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
// @public
|
|
924
|
+
export interface ServiceProvider {
|
|
925
|
+
properties?: ServiceProviderProperties;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
// @public
|
|
929
|
+
export interface ServiceProviderParameter {
|
|
930
|
+
readonly default?: string;
|
|
931
|
+
readonly description?: string;
|
|
932
|
+
readonly displayName?: string;
|
|
933
|
+
readonly helpUrl?: string;
|
|
934
|
+
readonly metadata?: ServiceProviderParameterMetadata;
|
|
935
|
+
readonly name?: string;
|
|
936
|
+
readonly type?: string;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
// @public
|
|
940
|
+
export interface ServiceProviderParameterMetadata {
|
|
941
|
+
constraints?: ServiceProviderParameterMetadataConstraints;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
// @public
|
|
945
|
+
export interface ServiceProviderParameterMetadataConstraints {
|
|
946
|
+
required?: boolean;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
// @public
|
|
950
|
+
export interface ServiceProviderProperties {
|
|
951
|
+
readonly devPortalUrl?: string;
|
|
952
|
+
readonly displayName?: string;
|
|
953
|
+
iconUrl?: string;
|
|
954
|
+
readonly id?: string;
|
|
955
|
+
parameters?: ServiceProviderParameter[];
|
|
956
|
+
readonly serviceProviderName?: string;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
// @public
|
|
960
|
+
export interface ServiceProviderResponseList {
|
|
961
|
+
nextLink?: string;
|
|
962
|
+
readonly value?: ServiceProvider[];
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
// @public
|
|
966
|
+
export interface Site {
|
|
967
|
+
appId?: string;
|
|
968
|
+
eTag?: string;
|
|
969
|
+
isBlockUserUploadEnabled?: boolean;
|
|
970
|
+
isDetailedLoggingEnabled?: boolean;
|
|
971
|
+
isEnabled: boolean;
|
|
972
|
+
isEndpointParametersEnabled?: boolean;
|
|
973
|
+
isNoStorageEnabled?: boolean;
|
|
974
|
+
isSecureSiteEnabled?: boolean;
|
|
975
|
+
readonly isTokenEnabled?: boolean;
|
|
976
|
+
isV1Enabled?: boolean;
|
|
977
|
+
isV3Enabled?: boolean;
|
|
978
|
+
isWebchatPreviewEnabled?: boolean;
|
|
979
|
+
isWebChatSpeechEnabled?: boolean;
|
|
980
|
+
readonly key?: string;
|
|
981
|
+
readonly key2?: string;
|
|
982
|
+
readonly siteId?: string;
|
|
983
|
+
siteName: string;
|
|
984
|
+
tenantId?: string;
|
|
985
|
+
trustedOrigins?: string[];
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
// @public
|
|
989
|
+
export interface SiteInfo {
|
|
990
|
+
key: Key;
|
|
991
|
+
siteName: string;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
// @public
|
|
995
|
+
export interface Sku {
|
|
996
|
+
name: SkuName;
|
|
997
|
+
readonly tier?: SkuTier;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
// @public
|
|
1001
|
+
export type SkuName = string;
|
|
1002
|
+
|
|
1003
|
+
// @public
|
|
1004
|
+
export type SkuTier = string;
|
|
1005
|
+
|
|
1006
|
+
// @public
|
|
1007
|
+
export interface SkypeChannel extends Channel {
|
|
1008
|
+
channelName: "SkypeChannel";
|
|
1009
|
+
properties?: SkypeChannelProperties;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
// @public
|
|
1013
|
+
export interface SkypeChannelProperties {
|
|
1014
|
+
callingWebHook?: string;
|
|
1015
|
+
enableCalling?: boolean;
|
|
1016
|
+
enableGroups?: boolean;
|
|
1017
|
+
enableMediaCards?: boolean;
|
|
1018
|
+
enableMessaging?: boolean;
|
|
1019
|
+
enableScreenSharing?: boolean;
|
|
1020
|
+
enableVideo?: boolean;
|
|
1021
|
+
groupsMode?: string;
|
|
1022
|
+
incomingCallRoute?: string;
|
|
1023
|
+
isEnabled: boolean;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
// @public
|
|
1027
|
+
export interface SlackChannel extends Channel {
|
|
1028
|
+
channelName: "SlackChannel";
|
|
1029
|
+
properties?: SlackChannelProperties;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
// @public
|
|
1033
|
+
export interface SlackChannelProperties {
|
|
1034
|
+
clientId?: string;
|
|
1035
|
+
clientSecret?: string;
|
|
1036
|
+
isEnabled: boolean;
|
|
1037
|
+
readonly isValidated?: boolean;
|
|
1038
|
+
landingPageUrl?: string;
|
|
1039
|
+
readonly lastSubmissionId?: string;
|
|
1040
|
+
readonly redirectAction?: string;
|
|
1041
|
+
registerBeforeOAuthFlow?: boolean;
|
|
1042
|
+
scopes?: string;
|
|
1043
|
+
signingSecret?: string;
|
|
1044
|
+
verificationToken?: string;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// @public
|
|
1048
|
+
export interface SmsChannel extends Channel {
|
|
1049
|
+
channelName: "SmsChannel";
|
|
1050
|
+
properties?: SmsChannelProperties;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
// @public
|
|
1054
|
+
export interface SmsChannelProperties {
|
|
1055
|
+
accountSID: string;
|
|
1056
|
+
authToken?: string;
|
|
1057
|
+
isEnabled: boolean;
|
|
1058
|
+
isValidated?: boolean;
|
|
1059
|
+
phone: string;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
// @public
|
|
1063
|
+
export interface TelegramChannel extends Channel {
|
|
1064
|
+
channelName: "TelegramChannel";
|
|
1065
|
+
properties?: TelegramChannelProperties;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
// @public
|
|
1069
|
+
export interface TelegramChannelProperties {
|
|
1070
|
+
accessToken?: string;
|
|
1071
|
+
isEnabled: boolean;
|
|
1072
|
+
isValidated?: boolean;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
// @public
|
|
1076
|
+
export interface TelephonyChannel extends Channel {
|
|
1077
|
+
channelName: "TelephonyChannel";
|
|
1078
|
+
properties?: TelephonyChannelProperties;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
// @public
|
|
1082
|
+
export interface TelephonyChannelProperties {
|
|
1083
|
+
apiConfigurations?: TelephonyChannelResourceApiConfiguration[];
|
|
1084
|
+
cognitiveServiceRegion?: string;
|
|
1085
|
+
cognitiveServiceSubscriptionKey?: string;
|
|
1086
|
+
defaultLocale?: string;
|
|
1087
|
+
isEnabled?: boolean;
|
|
1088
|
+
phoneNumbers?: TelephonyPhoneNumbers[];
|
|
1089
|
+
premiumSKU?: string;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
// @public
|
|
1093
|
+
export interface TelephonyChannelResourceApiConfiguration {
|
|
1094
|
+
cognitiveServiceRegion?: string;
|
|
1095
|
+
cognitiveServiceResourceId?: string;
|
|
1096
|
+
cognitiveServiceSubscriptionKey?: string;
|
|
1097
|
+
defaultLocale?: string;
|
|
1098
|
+
id?: string;
|
|
1099
|
+
providerName?: string;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
// @public
|
|
1103
|
+
export interface TelephonyPhoneNumbers {
|
|
1104
|
+
acsEndpoint?: string;
|
|
1105
|
+
acsResourceId?: string;
|
|
1106
|
+
acsSecret?: string;
|
|
1107
|
+
cognitiveServiceRegion?: string;
|
|
1108
|
+
cognitiveServiceResourceId?: string;
|
|
1109
|
+
cognitiveServiceSubscriptionKey?: string;
|
|
1110
|
+
defaultLocale?: string;
|
|
1111
|
+
id?: string;
|
|
1112
|
+
offerType?: string;
|
|
1113
|
+
phoneNumber?: string;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
// @public
|
|
1117
|
+
export interface WebChatChannel extends Channel {
|
|
1118
|
+
channelName: "WebChatChannel";
|
|
1119
|
+
properties?: WebChatChannelProperties;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
// @public
|
|
1123
|
+
export interface WebChatChannelProperties {
|
|
1124
|
+
sites?: WebChatSite[];
|
|
1125
|
+
readonly webChatEmbedCode?: string;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
// @public
|
|
1129
|
+
export interface WebChatSite extends Site {
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
// (No @packageDocumentation comment for this package)
|
|
1133
|
+
|
|
1134
|
+
```
|