import { Ipv4 } from '../../Ipv4';
/** Information for configuring the SAP HANA servers. */
export interface HanaServers {
    /** The name of the datastore for the SAP HANA server. */
    datastoreName: string;
    /** Whether the password for the SAP HANA server is encrypted. */
    encryptPassword: boolean;
    /** The IPv4 address of the gateway. */
    gateway: Ipv4;
    /** The instance number of the SAP HANA server. */
    instanceNumber: string;
    /** The IP address of the SAP HANA server. */
    ipAddress: Ipv4;
    /** The amount of memory of the SAP HANA server in gigibytes. */
    memory: number;
    /** The hostname of the SAP HANA virtual machine. */
    name: string;
    /** The netmask of the SAP HANA server. */
    netmask: Ipv4;
    /** The network name for the SAP HANA server. */
    network: string;
    /** The OVA template of the SAP HANA server. */
    ovaTemplate: string;
    /** The password for the SAP HANA server. This is used to authenticate the root of the SAP HANA virtual machine. */
    rootPassword: string;
    /** The thick datastore policy for the SAP HANA server. */
    thickDatastorePolicy: string;
    /** The thin datastore policy for the SAP HANA server. */
    thinDatastorePolicy: string;
    /** The number of CPUs of the SAP HANA server. */
    vcpus: number;
}
//# sourceMappingURL=HanaServers.d.ts.map