@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.33 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.
*/
/**
* Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
* @export
* @interface K8sIoApimachineryPkgApisMetaV1Preconditions
*/
export interface K8sIoApimachineryPkgApisMetaV1Preconditions {
/**
* Specifies the target ResourceVersion
* @type {string}
* @memberof K8sIoApimachineryPkgApisMetaV1Preconditions
*/
resourceVersion?: string;
/**
* Specifies the target UID.
* @type {string}
* @memberof K8sIoApimachineryPkgApisMetaV1Preconditions
*/
uid?: string;
}
export declare function K8sIoApimachineryPkgApisMetaV1PreconditionsFromJSON(json: any): K8sIoApimachineryPkgApisMetaV1Preconditions;
export declare function K8sIoApimachineryPkgApisMetaV1PreconditionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): K8sIoApimachineryPkgApisMetaV1Preconditions;
export declare function K8sIoApimachineryPkgApisMetaV1PreconditionsToJSON(value?: K8sIoApimachineryPkgApisMetaV1Preconditions | null): any;