@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.36 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* 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 IoK8sApimachineryPkgApisMetaV1Preconditions
*/
export interface IoK8sApimachineryPkgApisMetaV1Preconditions {
/**
* Specifies the target ResourceVersion
* @type {string}
* @memberof IoK8sApimachineryPkgApisMetaV1Preconditions
*/
resourceVersion?: string;
/**
* Specifies the target UID.
* @type {string}
* @memberof IoK8sApimachineryPkgApisMetaV1Preconditions
*/
uid?: string;
}
export declare function IoK8sApimachineryPkgApisMetaV1PreconditionsFromJSON(json: any): IoK8sApimachineryPkgApisMetaV1Preconditions;
export declare function IoK8sApimachineryPkgApisMetaV1PreconditionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApimachineryPkgApisMetaV1Preconditions;
export declare function IoK8sApimachineryPkgApisMetaV1PreconditionsToJSON(value?: IoK8sApimachineryPkgApisMetaV1Preconditions | null): any;