@gridscale/api
Version:
gridscale API Wrapper
18 lines (17 loc) • 362 B
TypeScript
/**
* Application's setup, consist the number of resource for creating the application
*/
export declare type MarketplaceApplicationSetup = {
/**
* Number of server cores.
*/
cores?: number;
/**
* Number of server memory.
*/
memory?: number;
/**
* The capacity of a storage in GB.
*/
capacity?: number;
};