UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.6 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. */ import { IoK8sApiAppsV1RollingUpdateStatefulSetStrategy } from './'; /** * StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy. * @export * @interface IoK8sApiAppsV1StatefulSetUpdateStrategy */ export interface IoK8sApiAppsV1StatefulSetUpdateStrategy { /** * * @type {IoK8sApiAppsV1RollingUpdateStatefulSetStrategy} * @memberof IoK8sApiAppsV1StatefulSetUpdateStrategy */ rollingUpdate?: IoK8sApiAppsV1RollingUpdateStatefulSetStrategy; /** * Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate. * @type {string} * @memberof IoK8sApiAppsV1StatefulSetUpdateStrategy */ type?: string; } export declare function IoK8sApiAppsV1StatefulSetUpdateStrategyFromJSON(json: any): IoK8sApiAppsV1StatefulSetUpdateStrategy; export declare function IoK8sApiAppsV1StatefulSetUpdateStrategyFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAppsV1StatefulSetUpdateStrategy; export declare function IoK8sApiAppsV1StatefulSetUpdateStrategyToJSON(value?: IoK8sApiAppsV1StatefulSetUpdateStrategy | null): any;