@xompass/sdk-cloud-api
Version:
Xompass Client for cloud-api
61 lines (60 loc) • 1.66 kB
TypeScript
import { ModelDefinition } from './BaseModels';
import { EdgeAgentTemplate } from './EdgeAgentTemplate';
import { Log } from './Log';
export interface EdgeAgentTemplateTagInterface {
name: string;
description?: string;
enabled?: boolean;
image?: string;
sharedPath?: string;
broker?: any;
modules?: any;
routes?: any;
moduleParameters?: any;
created?: Date;
modified?: Date;
deleted?: Date;
id?: any;
templateId?: any;
template?: EdgeAgentTemplate;
trackingLogs?: Log[];
}
export declare class EdgeAgentTemplateTag implements EdgeAgentTemplateTagInterface {
name: string;
description: string;
enabled: boolean;
image: string;
sharedPath: string;
broker: any;
modules: any;
routes: any;
moduleParameters: any;
created: Date;
modified: Date;
deleted: Date;
id: any;
templateId: any;
template?: EdgeAgentTemplate;
trackingLogs?: Log[];
constructor(data?: EdgeAgentTemplateTagInterface);
/**
* The name of the model represented by this $resource,
* i.e. `EdgeAgentTemplateTag`.
*/
static getModelName(): string;
/**
* @method factory
* @author Jonathan Casarrubias
* @license MIT
* This method creates an instance of EdgeAgentTemplateTag for dynamic purposes.
*/
static factory(data: EdgeAgentTemplateTagInterface): EdgeAgentTemplateTag;
/**
* @method getModelDefinition
* @author Julien Ledun
* @license MIT
* This method returns an object that represents some of the model
* definitions.
*/
static getModelDefinition(): ModelDefinition;
}