ARM automation done.

This commit is contained in:
Rodrigo Rodriguez (pragmatismo.io) 2018-10-25 18:14:15 -03:00
parent d9b41490ce
commit 94a145f895

View file

@ -30,58 +30,63 @@
| | | |
\*****************************************************************************/ \*****************************************************************************/
"use strict" "use strict";
export interface IGBInstance { export interface IGBInstance {
botId:string botId: string;
whoAmIVideo: string whoAmIVideo: string;
botServerUrl: string botEndpoint: string;
authenticatorTenant: string authenticatorTenant: string;
authenticatorClientId: string authenticatorClientId: string;
authenticatorClientSecret: string authenticatorClientSecret: string;
authenticatorAuthorityHostUrl: string authenticatorAuthorityHostUrl: string;
cloudSubscriptionId: string cloudSubscriptionId: string;
cloudRegion: string cloudUsername: string;
instanceId: number cloudPassword: string;
title: string cloudLocation: string;
description: string instanceId: number;
version: string title: string;
enabledAdmin: boolean description: string;
engineName: string version: string;
marketplaceId: string enabledAdmin: boolean;
textAnalyticsKey: string engineName: string;
textAnalyticsServerUrl: string marketplaceId: string;
marketplacePassword: string textAnalyticsKey: string;
webchatKey: string textAnalyticsEndpoint: string;
whatsappServiceKey: string marketplacePassword: string;
whatsappBotKey: string webchatKey: string;
whatsappServiceNumber: string whatsappServiceKey: string;
whatsappServiceUrl: string whatsappBotKey: string;
whatsappServiceWebhookUrl: string whatsappServiceNumber: string;
smsKey: string whatsappServiceUrl: string;
smsSecret: string whatsappServiceWebhookUrl: string;
smsServiceNumber: string smsKey: string;
theme: string smsSecret: string;
ui: string smsServiceNumber: string;
kb: string theme: string;
nlpAppId: string ui: string;
nlpKey: string kb: string;
nlpEndpoint: string nlpAppId: string;
speechKey: string nlpKey: string;
speechEndpoint: string nlpEndpoint: string;
spellcheckerKey: string nlpAuthoringKey: string;
spellcheckerEndpoint: string deploymentPaths: string;
searchHost: string speechKey: string;
searchKey: string speechEndpoint: string;
searchIndex: string spellcheckerKey: string;
searchIndexer: string spellcheckerEndpoint: string;
nlpVsSearch: number searchHost: string;
searchScore: number searchKey: string;
nlpScore: number searchIndex: string;
storageUsername: string searchIndexer: string;
storagePassword: string nlpVsSearch: number;
storageName: string searchScore: number;
storageServer: string nlpScore: number;
storageDialect: string storageUsername: string;
storagePath: string storagePassword: string;
} storageName: string;
storageServer: string;
storageDialect: string;
storagePath: string;
adminPass: string;
}