UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

54 lines (53 loc) 1.38 kB
import { ModelDefinition } from './BaseModels'; import { Log } from './Log'; export interface XEdgeModuleInterface { name: string; description?: string; repository?: string; image: string; latest: string; debug?: boolean; created?: Date; modified?: Date; deleted?: Date; id?: any; _tags?: Array<any>; trackingLogs?: Log[]; tags?: any[]; } export declare class XEdgeModule implements XEdgeModuleInterface { name: string; description: string; repository: string; image: string; latest: string; debug: boolean; created: Date; modified: Date; deleted: Date; id: any; _tags: Array<any>; trackingLogs?: Log[]; tags?: any[]; constructor(data?: XEdgeModuleInterface); /** * The name of the model represented by this $resource, * i.e. `XEdgeModule`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of XEdgeModule for dynamic purposes. */ static factory(data: XEdgeModuleInterface): XEdgeModule; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }