src/waveform/waveform-launch-command-response.ts
Launch Command response indicates the success or failure of an attempt to launch a waveform. The returned applications list is the up-to-date list of running applications in the domain and launched is the newly launched instances's ID.
Properties |
applications |
applications:
|
Type : ResourceRefs
|
A list of all running applications (Waveforms) |
launched |
launched:
|
Type : string
|
The newly launched Waveform's ID |
import { ResourceRefs } from '../models/index';
/**
* Launch Command response indicates the success or failure of an attempt to
* launch a waveform. The returned applications list is the up-to-date list of
* running applications in the domain and launched is the newly launched
* instances's ID.
*/
export interface IWaveformLaunchCommandResponse {
/** The newly launched Waveform's ID */
launched: string;
/** A list of all running applications (Waveforms) */
applications: ResourceRefs;
}