@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.07 kB
TypeScript
/**
* KubeVirt API
* This is KubeVirt API an add-on for Kubernetes.
*
* The version of the OpenAPI document: 1.0.0
* Contact: kubevirt-dev@googlegroups.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* SEVSessionOptions is used to provide SEV session parameters.
* @export
* @interface V1SEVSessionOptions
*/
export interface V1SEVSessionOptions {
/**
* Base64 encoded guest owner's Diffie-Hellman key.
* @type {string}
* @memberof V1SEVSessionOptions
*/
dhCert?: string;
/**
* Base64 encoded session blob.
* @type {string}
* @memberof V1SEVSessionOptions
*/
session?: string;
}
export declare function V1SEVSessionOptionsFromJSON(json: any): V1SEVSessionOptions;
export declare function V1SEVSessionOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1SEVSessionOptions;
export declare function V1SEVSessionOptionsToJSON(value?: V1SEVSessionOptions | null): any;