UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

46 lines (45 loc) 1.37 kB
/** * 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. */ /** * CustomizeComponentsPatch defines a patch for some resource. * @export * @interface V1beta1CustomizeComponentsPatch */ export interface V1beta1CustomizeComponentsPatch { /** * * @type {string} * @memberof V1beta1CustomizeComponentsPatch */ patch: string; /** * * @type {string} * @memberof V1beta1CustomizeComponentsPatch */ resourceName: string; /** * * @type {string} * @memberof V1beta1CustomizeComponentsPatch */ resourceType: string; /** * * @type {string} * @memberof V1beta1CustomizeComponentsPatch */ type: string; } export declare function V1beta1CustomizeComponentsPatchFromJSON(json: any): V1beta1CustomizeComponentsPatch; export declare function V1beta1CustomizeComponentsPatchFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CustomizeComponentsPatch; export declare function V1beta1CustomizeComponentsPatchToJSON(value?: V1beta1CustomizeComponentsPatch | null): any;