@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.26 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* PodOS defines the OS parameters of a pod.
* @export
* @interface IoK8sApiCoreV1PodOS
*/
export interface IoK8sApiCoreV1PodOS {
/**
* Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null
* @type {string}
* @memberof IoK8sApiCoreV1PodOS
*/
name: string;
}
export declare function IoK8sApiCoreV1PodOSFromJSON(json: any): IoK8sApiCoreV1PodOS;
export declare function IoK8sApiCoreV1PodOSFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1PodOS;
export declare function IoK8sApiCoreV1PodOSToJSON(value?: IoK8sApiCoreV1PodOS | null): any;