UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.69 kB
/** * 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. */ /** * Spec to control the desired behavior of rolling update. * @export * @interface IoK8sApiAppsV1RollingUpdateDeployment */ export interface IoK8sApiAppsV1RollingUpdateDeployment { /** * IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number. * @type {string} * @memberof IoK8sApiAppsV1RollingUpdateDeployment */ maxSurge?: string; /** * IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number. * @type {string} * @memberof IoK8sApiAppsV1RollingUpdateDeployment */ maxUnavailable?: string; } export declare function IoK8sApiAppsV1RollingUpdateDeploymentFromJSON(json: any): IoK8sApiAppsV1RollingUpdateDeployment; export declare function IoK8sApiAppsV1RollingUpdateDeploymentFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAppsV1RollingUpdateDeployment; export declare function IoK8sApiAppsV1RollingUpdateDeploymentToJSON(value?: IoK8sApiAppsV1RollingUpdateDeployment | null): any;