@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
52 lines (51 loc) • 1.17 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.
*/
/**
* Chassis specifies the chassis info passed to the domain.
* @export
* @interface V1Chassis
*/
export interface V1Chassis {
/**
*
* @type {string}
* @memberof V1Chassis
*/
asset?: string;
/**
*
* @type {string}
* @memberof V1Chassis
*/
manufacturer?: string;
/**
*
* @type {string}
* @memberof V1Chassis
*/
serial?: string;
/**
*
* @type {string}
* @memberof V1Chassis
*/
sku?: string;
/**
*
* @type {string}
* @memberof V1Chassis
*/
version?: string;
}
export declare function V1ChassisFromJSON(json: any): V1Chassis;
export declare function V1ChassisFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Chassis;
export declare function V1ChassisToJSON(value?: V1Chassis | null): any;