@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.07 kB
TypeScript
/**
* KubeVirt Containerized Data Importer API
* Containerized Data Importer for KubeVirt.
*
* 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 V1Preconditions
*/
export interface V1Preconditions {
/**
* Specifies the target ResourceVersion
* @type {string}
* @memberof V1Preconditions
*/
resourceVersion?: string;
/**
* Specifies the target UID.
* @type {string}
* @memberof V1Preconditions
*/
uid?: string;
}
export declare function V1PreconditionsFromJSON(json: any): V1Preconditions;
export declare function V1PreconditionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Preconditions;
export declare function V1PreconditionsToJSON(value?: V1Preconditions | null): any;