UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.44 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 { IoK8sApiAppsV1RollingUpdateDaemonSet } from './'; /** * DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet. * @export * @interface IoK8sApiAppsV1DaemonSetUpdateStrategy */ export interface IoK8sApiAppsV1DaemonSetUpdateStrategy { /** * * @type {IoK8sApiAppsV1RollingUpdateDaemonSet} * @memberof IoK8sApiAppsV1DaemonSetUpdateStrategy */ rollingUpdate?: IoK8sApiAppsV1RollingUpdateDaemonSet; /** * Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate. * @type {string} * @memberof IoK8sApiAppsV1DaemonSetUpdateStrategy */ type?: string; } export declare function IoK8sApiAppsV1DaemonSetUpdateStrategyFromJSON(json: any): IoK8sApiAppsV1DaemonSetUpdateStrategy; export declare function IoK8sApiAppsV1DaemonSetUpdateStrategyFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAppsV1DaemonSetUpdateStrategy; export declare function IoK8sApiAppsV1DaemonSetUpdateStrategyToJSON(value?: IoK8sApiAppsV1DaemonSetUpdateStrategy | null): any;