UNPKG

iotsuite-cli

Version:

Command Line Interface for deploying pre-configured IoT solutions through Azure

17 lines (16 loc) 657 B
/// <reference types="inquirer" /> import { DeviceTokenCredentialsOptions } from 'ms-rest-azure'; import { Answers } from 'inquirer'; export interface IDeploymentManager { submit(params: Answers | undefined): Promise<any>; } export declare class DeploymentManager implements IDeploymentManager { private _options; private _solutionType; private _template; private _parameters; constructor(options: DeviceTokenCredentialsOptions, solutionType: string, template: any, parameters: any); submit(params: Answers): Promise<any>; private downloadKubeConfig(outputs, sshFilePath); } export default DeploymentManager;