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