@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 624 B
TypeScript
import { Ipv4 } from '../Ipv4';
import { StateEnum } from './optionAccessNetwork/StateEnum';
/** Virtual machine encryption KMS server */
export interface VMEncryptionAccessNetwork {
/** Description of your option access network */
description: string;
/** IP address of the remote service */
ip: Ipv4;
/** Id of the VM Encryption KMS */
kmsId: number;
/** VM Encryption KMS TCP port */
kmsTcpPort: number;
/** SSL thumbprint of the remote service */
sslThumbprint: string;
/** State of the option */
state: StateEnum;
}
//# sourceMappingURL=VMEncryptionAccessNetwork.d.ts.map