@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
52 lines (51 loc) • 1.27 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.
*/
/**
*
* @export
* @interface V1SMBiosConfiguration
*/
export interface V1SMBiosConfiguration {
/**
*
* @type {string}
* @memberof V1SMBiosConfiguration
*/
family?: string;
/**
*
* @type {string}
* @memberof V1SMBiosConfiguration
*/
manufacturer?: string;
/**
*
* @type {string}
* @memberof V1SMBiosConfiguration
*/
product?: string;
/**
*
* @type {string}
* @memberof V1SMBiosConfiguration
*/
sku?: string;
/**
*
* @type {string}
* @memberof V1SMBiosConfiguration
*/
version?: string;
}
export declare function V1SMBiosConfigurationFromJSON(json: any): V1SMBiosConfiguration;
export declare function V1SMBiosConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1SMBiosConfiguration;
export declare function V1SMBiosConfigurationToJSON(value?: V1SMBiosConfiguration | null): any;