@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.08 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.
*/
/**
* SEVSecretOptions is used to provide a secret for a running guest.
* @export
* @interface V1SEVSecretOptions
*/
export interface V1SEVSecretOptions {
/**
* Base64 encoded header needed to decrypt the secret.
* @type {string}
* @memberof V1SEVSecretOptions
*/
header?: string;
/**
* Base64 encoded encrypted launch secret.
* @type {string}
* @memberof V1SEVSecretOptions
*/
secret?: string;
}
export declare function V1SEVSecretOptionsFromJSON(json: any): V1SEVSecretOptions;
export declare function V1SEVSecretOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1SEVSecretOptions;
export declare function V1SEVSecretOptionsToJSON(value?: V1SEVSecretOptions | null): any;