UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 1.08 kB
/** * 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. */ import { V1KubeVirtSelfSignConfiguration } from './'; /** * * @export * @interface V1KubeVirtCertificateRotateStrategy */ export interface V1KubeVirtCertificateRotateStrategy { /** * * @type {V1KubeVirtSelfSignConfiguration} * @memberof V1KubeVirtCertificateRotateStrategy */ selfSigned?: V1KubeVirtSelfSignConfiguration; } export declare function V1KubeVirtCertificateRotateStrategyFromJSON(json: any): V1KubeVirtCertificateRotateStrategy; export declare function V1KubeVirtCertificateRotateStrategyFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KubeVirtCertificateRotateStrategy; export declare function V1KubeVirtCertificateRotateStrategyToJSON(value?: V1KubeVirtCertificateRotateStrategy | null): any;