@gridscale/api
Version:
gridscale API Wrapper
20 lines (19 loc) • 543 B
TypeScript
import { StorageType } from './StorageType';
import { StorageVariant } from './StorageVariant';
export declare type StorageCreate = {
/**
* The human-readable name of the object. It supports the full UTF-8 character set, with a maximum of 64 characters.
*/
name: string;
/**
* Required (integer - minimum: 1 - maximum: 4096).
*/
capacity: number;
/**
* List of labels.
*/
labels?: Array<string>;
storage_type?: StorageType;
storage_variant?: StorageVariant;
template?: any;
};