UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

53 lines (52 loc) 2.01 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 { V1CertConfig } from './'; /** * * @export * @interface V1KubeVirtSelfSignConfiguration */ export interface V1KubeVirtSelfSignConfiguration { /** * * @type {V1CertConfig} * @memberof V1KubeVirtSelfSignConfiguration */ ca?: V1CertConfig; /** * Duration is a wrapper around time.Duration which supports correct marshaling to YAML and JSON. In particular, it marshals into strings, which can be used as map keys in json. * @type {string} * @memberof V1KubeVirtSelfSignConfiguration */ caOverlapInterval?: string; /** * Duration is a wrapper around time.Duration which supports correct marshaling to YAML and JSON. In particular, it marshals into strings, which can be used as map keys in json. * @type {string} * @memberof V1KubeVirtSelfSignConfiguration */ caRotateInterval?: string; /** * Duration is a wrapper around time.Duration which supports correct marshaling to YAML and JSON. In particular, it marshals into strings, which can be used as map keys in json. * @type {string} * @memberof V1KubeVirtSelfSignConfiguration */ certRotateInterval?: string; /** * * @type {V1CertConfig} * @memberof V1KubeVirtSelfSignConfiguration */ server?: V1CertConfig; } export declare function V1KubeVirtSelfSignConfigurationFromJSON(json: any): V1KubeVirtSelfSignConfiguration; export declare function V1KubeVirtSelfSignConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KubeVirtSelfSignConfiguration; export declare function V1KubeVirtSelfSignConfigurationToJSON(value?: V1KubeVirtSelfSignConfiguration | null): any;