@gridscale/api
Version:
gridscale API Wrapper
19 lines (18 loc) • 449 B
TypeScript
export declare type StorageBackup = {
/**
* The UUID of a backup is always unique, and refers to a specific object.
*/
object_uuid?: string;
/**
* The name of the backup equals schedule name plus backup uuid.
*/
name?: string;
/**
* Defines the date and time the object was initially created.
*/
create_time?: string;
/**
* The size of a backup in GB.
*/
capacity?: number;
};