@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.27 kB
TypeScript
/**
* 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.
*/
/**
* CertConfig contains the tunables for TLS certificates
* @export
* @interface V1CertConfig
*/
export interface 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 V1CertConfig
*/
duration?: 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 V1CertConfig
*/
renewBefore?: string;
}
export declare function V1CertConfigFromJSON(json: any): V1CertConfig;
export declare function V1CertConfigFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1CertConfig;
export declare function V1CertConfigToJSON(value?: V1CertConfig | null): any;