@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 960 B
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.
*/
/**
*
* @export
* @interface V1ACPI
*/
export interface V1ACPI {
/**
* SlicNameRef should match the volume name of a secret object. The data in the secret should be a binary blob that follows the ACPI SLIC standard, see: https://learn.microsoft.com/en-us/previous-versions/windows/hardware/design/dn653305(v=vs.85)
* @type {string}
* @memberof V1ACPI
*/
slicNameRef?: string;
}
export declare function V1ACPIFromJSON(json: any): V1ACPI;
export declare function V1ACPIFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ACPI;
export declare function V1ACPIToJSON(value?: V1ACPI | null): any;