@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
27 lines • 904 B
TypeScript
import { DiskTypeEnum } from '../storage/DiskTypeEnum';
import { ResourceMetadata } from '../../iam/ResourceMetadata';
import { Ip } from '../../Ip';
/** Storage nas HA */
export interface StorageWithIAM {
/** True, if partition creation is allowed on this nas HA */
canCreatePartition: boolean;
/** The name you give to the nas */
customName?: string;
/** area of nas */
datacenter?: string;
/** the disk type of the nasHa */
diskType: DiskTypeEnum;
/** IAM resource metadata */
iam?: ResourceMetadata;
/** Access ip of nas */
ip?: Ip;
/** Send an email to customer if any issue is detected */
monitored: boolean;
/** The storage service name */
serviceName: string;
/** percentage of nas space used in % */
zpoolCapacity: number;
/** the size of the nas */
zpoolSize: number;
}
//# sourceMappingURL=StorageWithIAM.d.ts.map