@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
46 lines (45 loc) • 1.36 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.
*/
/**
* Flags will create a patch that will replace all flags for the container's command field. The only flags that will be used are those define. There are no guarantees around forward/backward compatibility. If set incorrectly this will cause the resource when rolled out to error until flags are updated.
* @export
* @interface V1Flags
*/
export interface V1Flags {
/**
*
* @type {{ [key: string]: string; }}
* @memberof V1Flags
*/
api?: {
[key: string]: string;
};
/**
*
* @type {{ [key: string]: string; }}
* @memberof V1Flags
*/
controller?: {
[key: string]: string;
};
/**
*
* @type {{ [key: string]: string; }}
* @memberof V1Flags
*/
handler?: {
[key: string]: string;
};
}
export declare function V1FlagsFromJSON(json: any): V1Flags;
export declare function V1FlagsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Flags;
export declare function V1FlagsToJSON(value?: V1Flags | null): any;