UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

47 lines (46 loc) 2.07 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. */ import { V1ListMeta, V1beta1DataImportCron } from './'; /** * DataImportCronList provides the needed parameters to do request a list of DataImportCrons from the system * @export * @interface V1beta1DataImportCronList */ export interface V1beta1DataImportCronList { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources * @type {string} * @memberof V1beta1DataImportCronList */ apiVersion?: string; /** * Items provides a list of DataImportCrons * @type {Array<V1beta1DataImportCron>} * @memberof V1beta1DataImportCronList */ items: Array<V1beta1DataImportCron>; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds * @type {string} * @memberof V1beta1DataImportCronList */ kind?: string; /** * * @type {V1ListMeta} * @memberof V1beta1DataImportCronList */ metadata: V1ListMeta; } export declare function V1beta1DataImportCronListFromJSON(json: any): V1beta1DataImportCronList; export declare function V1beta1DataImportCronListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCronList; export declare function V1beta1DataImportCronListToJSON(value?: V1beta1DataImportCronList | null): any;