@gridscale/api
Version:
gridscale API Wrapper
17 lines (16 loc) • 548 B
TypeScript
import { PaasServiceTemplate } from './PaasServiceTemplate';
import { PaasSecurityZone } from './PaasSecurityZone';
import { PaasService } from './PaasService';
import { APIClass } from '../api';
/**
* this class is only a wrapper to the PaasService, PaasServiceTemplate and PaasSecurityZone classes, due to historical reasons...
* @deprecated
*/
declare class PAAS {
private _api;
constructor(_api: APIClass);
serviceTemplates: PaasServiceTemplate;
securityZones: PaasSecurityZone;
services: PaasService;
}
export { PAAS };