@kubevirt-ui-ext/kubevirt-api 1.7.0 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,148 +1,3 @@
1
- /**
2
- * KubeVirt Containerized Data Importer API
3
- * Containerized Data Importer for KubeVirt.
4
- *
5
- * The version of the OpenAPI document: 1.0.0
6
- * Contact: kubevirt-dev@googlegroups.com
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * Add missing GlobalFetch type
14
- */
15
- declare type GlobalFetch = any;
16
- declare const BASE_PATH: string;
17
- /**
18
- * This is the base class for all generated API classes.
19
- */
20
- declare class BaseAPI {
21
- protected configuration: Configuration;
22
- private middleware;
23
- constructor(configuration?: Configuration);
24
- withMiddleware<T extends BaseAPI>(this: T, ...middlewares: Middleware[]): T;
25
- withPreMiddleware<T extends BaseAPI>(this: T, ...preMiddlewares: Array<Middleware['pre']>): T;
26
- withPostMiddleware<T extends BaseAPI>(this: T, ...postMiddlewares: Array<Middleware['post']>): T;
27
- protected request(context: RequestOpts, initOverrides?: RequestInit): Promise<Response>;
28
- private createFetchParams;
29
- private fetchApi;
30
- /**
31
- * Create a shallow clone of `this` by constructing a new instance
32
- * and then shallow cloning data members.
33
- */
34
- private clone;
35
- }
36
- declare class RequiredError extends Error {
37
- field: string;
38
- name: 'RequiredError';
39
- constructor(field: string, msg?: string);
40
- }
41
- declare const COLLECTION_FORMATS: {
42
- csv: string;
43
- ssv: string;
44
- tsv: string;
45
- pipes: string;
46
- };
47
- declare type FetchAPI = GlobalFetch['fetch'];
48
- interface ConfigurationParameters {
49
- basePath?: string;
50
- fetchApi?: FetchAPI;
51
- middleware?: Middleware[];
52
- queryParamsStringify?: (params: HTTPQuery) => string;
53
- username?: string;
54
- password?: string;
55
- apiKey?: string | ((name: string) => string);
56
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string | Promise<string>);
57
- headers?: HTTPHeaders;
58
- credentials?: RequestCredentials;
59
- }
60
- declare class Configuration {
61
- private configuration;
62
- constructor(configuration?: ConfigurationParameters);
63
- get basePath(): string;
64
- get fetchApi(): FetchAPI | undefined;
65
- get middleware(): Middleware[];
66
- get queryParamsStringify(): (params: HTTPQuery) => string;
67
- get username(): string | undefined;
68
- get password(): string | undefined;
69
- get apiKey(): ((name: string) => string) | undefined;
70
- get accessToken(): ((name?: string, scopes?: string[]) => string | Promise<string>) | undefined;
71
- get headers(): HTTPHeaders | undefined;
72
- get credentials(): RequestCredentials | undefined;
73
- }
74
- declare type Json = any;
75
- declare type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'HEAD';
76
- declare type HTTPHeaders = {
77
- [key: string]: string;
78
- };
79
- declare type HTTPQuery = {
80
- [key: string]: string | number | null | boolean | Array<string | number | null | boolean> | HTTPQuery;
81
- };
82
- declare type HTTPBody = Json | FormData | URLSearchParams;
83
- declare type ModelPropertyNaming = 'camelCase' | 'snake_case' | 'PascalCase' | 'original';
84
- interface FetchParams {
85
- url: string;
86
- init: RequestInit;
87
- }
88
- interface RequestOpts {
89
- path: string;
90
- method: HTTPMethod;
91
- headers: HTTPHeaders;
92
- query?: HTTPQuery;
93
- body?: HTTPBody;
94
- }
95
- declare function exists(json: any, key: string): boolean;
96
- declare function querystring(params: HTTPQuery, prefix?: string): string;
97
- declare function mapValues(data: any, fn: (item: any) => any): {};
98
- declare function canConsumeForm(consumes: Consume[]): boolean;
99
- interface Consume {
100
- contentType: string;
101
- }
102
- interface RequestContext {
103
- fetch: FetchAPI;
104
- url: string;
105
- init: RequestInit;
106
- }
107
- interface ResponseContext {
108
- fetch: FetchAPI;
109
- url: string;
110
- init: RequestInit;
111
- response: Response;
112
- }
113
- interface Middleware {
114
- pre?(context: RequestContext): Promise<FetchParams | void>;
115
- post?(context: ResponseContext): Promise<Response | void>;
116
- }
117
- interface ApiResponse<T> {
118
- raw: Response;
119
- value(): Promise<T>;
120
- }
121
- interface ResponseTransformer<T> {
122
- (json: any): T;
123
- }
124
- declare class JSONApiResponse<T> {
125
- raw: Response;
126
- private transformer;
127
- constructor(raw: Response, transformer?: ResponseTransformer<T>);
128
- value(): Promise<T>;
129
- }
130
- declare class VoidApiResponse {
131
- raw: Response;
132
- constructor(raw: Response);
133
- value(): Promise<void>;
134
- }
135
- declare class BlobApiResponse {
136
- raw: Response;
137
- constructor(raw: Response);
138
- value(): Promise<Blob>;
139
- }
140
- declare class TextApiResponse {
141
- raw: Response;
142
- constructor(raw: Response);
143
- value(): Promise<string>;
144
- }
145
-
146
1
  /**
147
2
  * KubeVirt Containerized Data Importer API
148
3
  * Containerized Data Importer for KubeVirt.
@@ -182,9 +37,6 @@ interface ApiNodePlacement {
182
37
  */
183
38
  tolerations?: Array<V1Toleration>;
184
39
  }
185
- declare function ApiNodePlacementFromJSON(json: any): ApiNodePlacement;
186
- declare function ApiNodePlacementFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ApiNodePlacement;
187
- declare function ApiNodePlacementToJSON(value?: ApiNodePlacement | null): any;
188
40
 
189
41
  /**
190
42
  * KubeVirt Containerized Data Importer API
@@ -241,9 +93,6 @@ interface V1APIGroup {
241
93
  */
242
94
  versions: Array<V1GroupVersionForDiscovery>;
243
95
  }
244
- declare function V1APIGroupFromJSON(json: any): V1APIGroup;
245
- declare function V1APIGroupFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1APIGroup;
246
- declare function V1APIGroupToJSON(value?: V1APIGroup | null): any;
247
96
 
248
97
  /**
249
98
  * KubeVirt Containerized Data Importer API
@@ -282,9 +131,6 @@ interface V1APIGroupList {
282
131
  */
283
132
  kind?: string;
284
133
  }
285
- declare function V1APIGroupListFromJSON(json: any): V1APIGroupList;
286
- declare function V1APIGroupListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1APIGroupList;
287
- declare function V1APIGroupListToJSON(value?: V1APIGroupList | null): any;
288
134
 
289
135
  /**
290
136
  * KubeVirt Containerized Data Importer API
@@ -364,9 +210,6 @@ interface V1APIResource {
364
210
  */
365
211
  version?: string;
366
212
  }
367
- declare function V1APIResourceFromJSON(json: any): V1APIResource;
368
- declare function V1APIResourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1APIResource;
369
- declare function V1APIResourceToJSON(value?: V1APIResource | null): any;
370
213
 
371
214
  /**
372
215
  * KubeVirt Containerized Data Importer API
@@ -411,9 +254,6 @@ interface V1APIResourceList {
411
254
  */
412
255
  resources: Array<V1APIResource>;
413
256
  }
414
- declare function V1APIResourceListFromJSON(json: any): V1APIResourceList;
415
- declare function V1APIResourceListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1APIResourceList;
416
- declare function V1APIResourceListToJSON(value?: V1APIResourceList | null): any;
417
257
 
418
258
  /**
419
259
  * KubeVirt Containerized Data Importer API
@@ -452,9 +292,6 @@ interface V1Affinity {
452
292
  */
453
293
  podAntiAffinity?: V1PodAntiAffinity;
454
294
  }
455
- declare function V1AffinityFromJSON(json: any): V1Affinity;
456
- declare function V1AffinityFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Affinity;
457
- declare function V1AffinityToJSON(value?: V1Affinity | null): any;
458
295
 
459
296
  /**
460
297
  * KubeVirt Containerized Data Importer API
@@ -510,9 +347,6 @@ interface V1Condition {
510
347
  */
511
348
  type: string;
512
349
  }
513
- declare function V1ConditionFromJSON(json: any): V1Condition;
514
- declare function V1ConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Condition;
515
- declare function V1ConditionToJSON(value?: V1Condition | null): any;
516
350
 
517
351
  /**
518
352
  * KubeVirt Containerized Data Importer API
@@ -575,9 +409,6 @@ interface V1DeleteOptions {
575
409
  */
576
410
  propagationPolicy?: string;
577
411
  }
578
- declare function V1DeleteOptionsFromJSON(json: any): V1DeleteOptions;
579
- declare function V1DeleteOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1DeleteOptions;
580
- declare function V1DeleteOptionsToJSON(value?: V1DeleteOptions | null): any;
581
412
 
582
413
  /**
583
414
  * KubeVirt Containerized Data Importer API
@@ -609,9 +440,6 @@ interface V1GroupVersionForDiscovery {
609
440
  */
610
441
  version: string;
611
442
  }
612
- declare function V1GroupVersionForDiscoveryFromJSON(json: any): V1GroupVersionForDiscovery;
613
- declare function V1GroupVersionForDiscoveryFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1GroupVersionForDiscovery;
614
- declare function V1GroupVersionForDiscoveryToJSON(value?: V1GroupVersionForDiscovery | null): any;
615
443
 
616
444
  /**
617
445
  * KubeVirt Containerized Data Importer API
@@ -646,9 +474,6 @@ interface V1LabelSelector {
646
474
  [key: string]: string;
647
475
  };
648
476
  }
649
- declare function V1LabelSelectorFromJSON(json: any): V1LabelSelector;
650
- declare function V1LabelSelectorFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1LabelSelector;
651
- declare function V1LabelSelectorToJSON(value?: V1LabelSelector | null): any;
652
477
 
653
478
  /**
654
479
  * KubeVirt Containerized Data Importer API
@@ -686,9 +511,6 @@ interface V1LabelSelectorRequirement {
686
511
  */
687
512
  values?: Array<string>;
688
513
  }
689
- declare function V1LabelSelectorRequirementFromJSON(json: any): V1LabelSelectorRequirement;
690
- declare function V1LabelSelectorRequirementFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1LabelSelectorRequirement;
691
- declare function V1LabelSelectorRequirementToJSON(value?: V1LabelSelectorRequirement | null): any;
692
514
 
693
515
  /**
694
516
  * KubeVirt Containerized Data Importer API
@@ -732,9 +554,6 @@ interface V1ListMeta {
732
554
  */
733
555
  selfLink?: string;
734
556
  }
735
- declare function V1ListMetaFromJSON(json: any): V1ListMeta;
736
- declare function V1ListMetaFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ListMeta;
737
- declare function V1ListMetaToJSON(value?: V1ListMeta | null): any;
738
557
 
739
558
  /**
740
559
  * KubeVirt Containerized Data Importer API
@@ -760,9 +579,6 @@ interface V1LocalObjectReference {
760
579
  */
761
580
  name?: string;
762
581
  }
763
- declare function V1LocalObjectReferenceFromJSON(json: any): V1LocalObjectReference;
764
- declare function V1LocalObjectReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1LocalObjectReference;
765
- declare function V1LocalObjectReferenceToJSON(value?: V1LocalObjectReference | null): any;
766
582
 
767
583
  /**
768
584
  * KubeVirt Containerized Data Importer API
@@ -828,9 +644,6 @@ interface V1ManagedFieldsEntry {
828
644
  */
829
645
  time?: string;
830
646
  }
831
- declare function V1ManagedFieldsEntryFromJSON(json: any): V1ManagedFieldsEntry;
832
- declare function V1ManagedFieldsEntryFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ManagedFieldsEntry;
833
- declare function V1ManagedFieldsEntryToJSON(value?: V1ManagedFieldsEntry | null): any;
834
647
 
835
648
  /**
836
649
  * KubeVirt Containerized Data Importer API
@@ -863,9 +676,6 @@ interface V1NodeAffinity {
863
676
  */
864
677
  requiredDuringSchedulingIgnoredDuringExecution?: V1NodeSelector;
865
678
  }
866
- declare function V1NodeAffinityFromJSON(json: any): V1NodeAffinity;
867
- declare function V1NodeAffinityFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1NodeAffinity;
868
- declare function V1NodeAffinityToJSON(value?: V1NodeAffinity | null): any;
869
679
 
870
680
  /**
871
681
  * KubeVirt Containerized Data Importer API
@@ -892,9 +702,6 @@ interface V1NodeSelector {
892
702
  */
893
703
  nodeSelectorTerms: Array<V1NodeSelectorTerm>;
894
704
  }
895
- declare function V1NodeSelectorFromJSON(json: any): V1NodeSelector;
896
- declare function V1NodeSelectorFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1NodeSelector;
897
- declare function V1NodeSelectorToJSON(value?: V1NodeSelector | null): any;
898
705
 
899
706
  /**
900
707
  * KubeVirt Containerized Data Importer API
@@ -952,9 +759,6 @@ declare enum V1NodeSelectorRequirementOperatorEnum {
952
759
  Lt = "Lt",
953
760
  NotIn = "NotIn"
954
761
  }
955
- declare function V1NodeSelectorRequirementFromJSON(json: any): V1NodeSelectorRequirement;
956
- declare function V1NodeSelectorRequirementFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1NodeSelectorRequirement;
957
- declare function V1NodeSelectorRequirementToJSON(value?: V1NodeSelectorRequirement | null): any;
958
762
 
959
763
  /**
960
764
  * KubeVirt Containerized Data Importer API
@@ -987,9 +791,6 @@ interface V1NodeSelectorTerm {
987
791
  */
988
792
  matchFields?: Array<V1NodeSelectorRequirement>;
989
793
  }
990
- declare function V1NodeSelectorTermFromJSON(json: any): V1NodeSelectorTerm;
991
- declare function V1NodeSelectorTermFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1NodeSelectorTerm;
992
- declare function V1NodeSelectorTermToJSON(value?: V1NodeSelectorTerm | null): any;
993
794
 
994
795
  /**
995
796
  * KubeVirt Containerized Data Importer API
@@ -1114,9 +915,6 @@ interface V1ObjectMeta {
1114
915
  */
1115
916
  uid?: string;
1116
917
  }
1117
- declare function V1ObjectMetaFromJSON(json: any): V1ObjectMeta;
1118
- declare function V1ObjectMetaFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ObjectMeta;
1119
- declare function V1ObjectMetaToJSON(value?: V1ObjectMeta | null): any;
1120
918
 
1121
919
  /**
1122
920
  * KubeVirt Containerized Data Importer API
@@ -1172,9 +970,6 @@ interface V1OwnerReference {
1172
970
  */
1173
971
  uid: string;
1174
972
  }
1175
- declare function V1OwnerReferenceFromJSON(json: any): V1OwnerReference;
1176
- declare function V1OwnerReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1OwnerReference;
1177
- declare function V1OwnerReferenceToJSON(value?: V1OwnerReference | null): any;
1178
973
 
1179
974
  /**
1180
975
  * KubeVirt Containerized Data Importer API
@@ -1273,9 +1068,6 @@ declare enum V1PersistentVolumeClaimSpecVolumeModeEnum {
1273
1068
  Filesystem = "Filesystem",
1274
1069
  FromStorageProfile = "FromStorageProfile"
1275
1070
  }
1276
- declare function V1PersistentVolumeClaimSpecFromJSON(json: any): V1PersistentVolumeClaimSpec;
1277
- declare function V1PersistentVolumeClaimSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PersistentVolumeClaimSpec;
1278
- declare function V1PersistentVolumeClaimSpecToJSON(value?: V1PersistentVolumeClaimSpec | null): any;
1279
1071
 
1280
1072
  /**
1281
1073
  * KubeVirt Containerized Data Importer API
@@ -1308,9 +1100,6 @@ interface V1PodAffinity {
1308
1100
  */
1309
1101
  requiredDuringSchedulingIgnoredDuringExecution?: Array<V1PodAffinityTerm>;
1310
1102
  }
1311
- declare function V1PodAffinityFromJSON(json: any): V1PodAffinity;
1312
- declare function V1PodAffinityFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PodAffinity;
1313
- declare function V1PodAffinityToJSON(value?: V1PodAffinity | null): any;
1314
1103
 
1315
1104
  /**
1316
1105
  * KubeVirt Containerized Data Importer API
@@ -1367,9 +1156,6 @@ interface V1PodAffinityTerm {
1367
1156
  */
1368
1157
  topologyKey: string;
1369
1158
  }
1370
- declare function V1PodAffinityTermFromJSON(json: any): V1PodAffinityTerm;
1371
- declare function V1PodAffinityTermFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PodAffinityTerm;
1372
- declare function V1PodAffinityTermToJSON(value?: V1PodAffinityTerm | null): any;
1373
1159
 
1374
1160
  /**
1375
1161
  * KubeVirt Containerized Data Importer API
@@ -1402,9 +1188,6 @@ interface V1PodAntiAffinity {
1402
1188
  */
1403
1189
  requiredDuringSchedulingIgnoredDuringExecution?: Array<V1PodAffinityTerm>;
1404
1190
  }
1405
- declare function V1PodAntiAffinityFromJSON(json: any): V1PodAntiAffinity;
1406
- declare function V1PodAntiAffinityFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PodAntiAffinity;
1407
- declare function V1PodAntiAffinityToJSON(value?: V1PodAntiAffinity | null): any;
1408
1191
 
1409
1192
  /**
1410
1193
  * KubeVirt Containerized Data Importer API
@@ -1436,9 +1219,6 @@ interface V1Preconditions {
1436
1219
  */
1437
1220
  uid?: string;
1438
1221
  }
1439
- declare function V1PreconditionsFromJSON(json: any): V1Preconditions;
1440
- declare function V1PreconditionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Preconditions;
1441
- declare function V1PreconditionsToJSON(value?: V1Preconditions | null): any;
1442
1222
 
1443
1223
  /**
1444
1224
  * KubeVirt Containerized Data Importer API
@@ -1471,9 +1251,6 @@ interface V1PreferredSchedulingTerm {
1471
1251
  */
1472
1252
  weight: number;
1473
1253
  }
1474
- declare function V1PreferredSchedulingTermFromJSON(json: any): V1PreferredSchedulingTerm;
1475
- declare function V1PreferredSchedulingTermFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PreferredSchedulingTerm;
1476
- declare function V1PreferredSchedulingTermToJSON(value?: V1PreferredSchedulingTerm | null): any;
1477
1254
 
1478
1255
  /**
1479
1256
  * KubeVirt Containerized Data Importer API
@@ -1505,9 +1282,6 @@ interface V1ResourceClaim {
1505
1282
  */
1506
1283
  request?: string;
1507
1284
  }
1508
- declare function V1ResourceClaimFromJSON(json: any): V1ResourceClaim;
1509
- declare function V1ResourceClaimFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ResourceClaim;
1510
- declare function V1ResourceClaimToJSON(value?: V1ResourceClaim | null): any;
1511
1285
 
1512
1286
  /**
1513
1287
  * KubeVirt Containerized Data Importer API
@@ -1554,9 +1328,6 @@ interface V1ResourceRequirements {
1554
1328
  [key: string]: string;
1555
1329
  };
1556
1330
  }
1557
- declare function V1ResourceRequirementsFromJSON(json: any): V1ResourceRequirements;
1558
- declare function V1ResourceRequirementsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ResourceRequirements;
1559
- declare function V1ResourceRequirementsToJSON(value?: V1ResourceRequirements | null): any;
1560
1331
 
1561
1332
  /**
1562
1333
  * KubeVirt Containerized Data Importer API
@@ -1582,9 +1353,6 @@ interface V1RootPaths {
1582
1353
  */
1583
1354
  paths: Array<string>;
1584
1355
  }
1585
- declare function V1RootPathsFromJSON(json: any): V1RootPaths;
1586
- declare function V1RootPathsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1RootPaths;
1587
- declare function V1RootPathsToJSON(value?: V1RootPaths | null): any;
1588
1356
 
1589
1357
  /**
1590
1358
  * KubeVirt Containerized Data Importer API
@@ -1616,9 +1384,6 @@ interface V1ServerAddressByClientCIDR {
1616
1384
  */
1617
1385
  serverAddress: string;
1618
1386
  }
1619
- declare function V1ServerAddressByClientCIDRFromJSON(json: any): V1ServerAddressByClientCIDR;
1620
- declare function V1ServerAddressByClientCIDRFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ServerAddressByClientCIDR;
1621
- declare function V1ServerAddressByClientCIDRToJSON(value?: V1ServerAddressByClientCIDR | null): any;
1622
1387
 
1623
1388
  /**
1624
1389
  * KubeVirt Containerized Data Importer API
@@ -1687,9 +1452,6 @@ interface V1Status {
1687
1452
  */
1688
1453
  status?: string;
1689
1454
  }
1690
- declare function V1StatusFromJSON(json: any): V1Status;
1691
- declare function V1StatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Status;
1692
- declare function V1StatusToJSON(value?: V1Status | null): any;
1693
1455
 
1694
1456
  /**
1695
1457
  * KubeVirt Containerized Data Importer API
@@ -1731,9 +1493,6 @@ interface V1StatusCause {
1731
1493
  */
1732
1494
  reason?: string;
1733
1495
  }
1734
- declare function V1StatusCauseFromJSON(json: any): V1StatusCause;
1735
- declare function V1StatusCauseFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1StatusCause;
1736
- declare function V1StatusCauseToJSON(value?: V1StatusCause | null): any;
1737
1496
 
1738
1497
  /**
1739
1498
  * KubeVirt Containerized Data Importer API
@@ -1790,9 +1549,6 @@ interface V1StatusDetails {
1790
1549
  */
1791
1550
  uid?: string;
1792
1551
  }
1793
- declare function V1StatusDetailsFromJSON(json: any): V1StatusDetails;
1794
- declare function V1StatusDetailsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1StatusDetails;
1795
- declare function V1StatusDetailsToJSON(value?: V1StatusDetails | null): any;
1796
1552
 
1797
1553
  /**
1798
1554
  * KubeVirt Containerized Data Importer API
@@ -1868,9 +1624,6 @@ declare enum V1TolerationOperatorEnum {
1868
1624
  Equal = "Equal",
1869
1625
  Exists = "Exists"
1870
1626
  }
1871
- declare function V1TolerationFromJSON(json: any): V1Toleration;
1872
- declare function V1TolerationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Toleration;
1873
- declare function V1TolerationToJSON(value?: V1Toleration | null): any;
1874
1627
 
1875
1628
  /**
1876
1629
  * KubeVirt Containerized Data Importer API
@@ -1908,9 +1661,6 @@ interface V1TypedLocalObjectReference {
1908
1661
  */
1909
1662
  name: string;
1910
1663
  }
1911
- declare function V1TypedLocalObjectReferenceFromJSON(json: any): V1TypedLocalObjectReference;
1912
- declare function V1TypedLocalObjectReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1TypedLocalObjectReference;
1913
- declare function V1TypedLocalObjectReferenceToJSON(value?: V1TypedLocalObjectReference | null): any;
1914
1664
 
1915
1665
  /**
1916
1666
  * KubeVirt Containerized Data Importer API
@@ -1954,9 +1704,6 @@ interface V1TypedObjectReference {
1954
1704
  */
1955
1705
  namespace?: string;
1956
1706
  }
1957
- declare function V1TypedObjectReferenceFromJSON(json: any): V1TypedObjectReference;
1958
- declare function V1TypedObjectReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1TypedObjectReference;
1959
- declare function V1TypedObjectReferenceToJSON(value?: V1TypedObjectReference | null): any;
1960
1707
 
1961
1708
  /**
1962
1709
  * KubeVirt Containerized Data Importer API
@@ -1992,9 +1739,6 @@ interface V1VolumeResourceRequirements {
1992
1739
  [key: string]: string;
1993
1740
  };
1994
1741
  }
1995
- declare function V1VolumeResourceRequirementsFromJSON(json: any): V1VolumeResourceRequirements;
1996
- declare function V1VolumeResourceRequirementsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VolumeResourceRequirements;
1997
- declare function V1VolumeResourceRequirementsToJSON(value?: V1VolumeResourceRequirements | null): any;
1998
1742
 
1999
1743
  /**
2000
1744
  * KubeVirt Containerized Data Importer API
@@ -2063,9 +1807,6 @@ interface V1WatchEvent {
2063
1807
  */
2064
1808
  type: string;
2065
1809
  }
2066
- declare function V1WatchEventFromJSON(json: any): V1WatchEvent;
2067
- declare function V1WatchEventFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1WatchEvent;
2068
- declare function V1WatchEventToJSON(value?: V1WatchEvent | null): any;
2069
1810
 
2070
1811
  /**
2071
1812
  * KubeVirt Containerized Data Importer API
@@ -2098,9 +1839,6 @@ interface V1WeightedPodAffinityTerm {
2098
1839
  */
2099
1840
  weight: number;
2100
1841
  }
2101
- declare function V1WeightedPodAffinityTermFromJSON(json: any): V1WeightedPodAffinityTerm;
2102
- declare function V1WeightedPodAffinityTermFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1WeightedPodAffinityTerm;
2103
- declare function V1WeightedPodAffinityTermToJSON(value?: V1WeightedPodAffinityTerm | null): any;
2104
1842
 
2105
1843
  /**
2106
1844
  * KubeVirt Containerized Data Importer API
@@ -2151,9 +1889,6 @@ interface V1beta1CDI {
2151
1889
  */
2152
1890
  status?: V1beta1CDIStatus;
2153
1891
  }
2154
- declare function V1beta1CDIFromJSON(json: any): V1beta1CDI;
2155
- declare function V1beta1CDIFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDI;
2156
- declare function V1beta1CDIToJSON(value?: V1beta1CDI | null): any;
2157
1892
 
2158
1893
  /**
2159
1894
  * KubeVirt Containerized Data Importer API
@@ -2192,9 +1927,6 @@ interface V1beta1CDICertConfig {
2192
1927
  */
2193
1928
  server?: V1beta1CertConfig;
2194
1929
  }
2195
- declare function V1beta1CDICertConfigFromJSON(json: any): V1beta1CDICertConfig;
2196
- declare function V1beta1CDICertConfigFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDICertConfig;
2197
- declare function V1beta1CDICertConfigToJSON(value?: V1beta1CDICertConfig | null): any;
2198
1930
 
2199
1931
  /**
2200
1932
  * KubeVirt Containerized Data Importer API
@@ -2245,9 +1977,6 @@ interface V1beta1CDIConfig {
2245
1977
  */
2246
1978
  status?: V1beta1CDIConfigStatus;
2247
1979
  }
2248
- declare function V1beta1CDIConfigFromJSON(json: any): V1beta1CDIConfig;
2249
- declare function V1beta1CDIConfigFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIConfig;
2250
- declare function V1beta1CDIConfigToJSON(value?: V1beta1CDIConfig | null): any;
2251
1980
 
2252
1981
  /**
2253
1982
  * KubeVirt Containerized Data Importer API
@@ -2292,9 +2021,6 @@ interface V1beta1CDIConfigList {
2292
2021
  */
2293
2022
  metadata: V1ListMeta;
2294
2023
  }
2295
- declare function V1beta1CDIConfigListFromJSON(json: any): V1beta1CDIConfigList;
2296
- declare function V1beta1CDIConfigListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIConfigList;
2297
- declare function V1beta1CDIConfigListToJSON(value?: V1beta1CDIConfigList | null): any;
2298
2024
 
2299
2025
  /**
2300
2026
  * KubeVirt Containerized Data Importer API
@@ -2387,9 +2113,6 @@ interface V1beta1CDIConfigSpec {
2387
2113
  */
2388
2114
  uploadProxyURLOverride?: string;
2389
2115
  }
2390
- declare function V1beta1CDIConfigSpecFromJSON(json: any): V1beta1CDIConfigSpec;
2391
- declare function V1beta1CDIConfigSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIConfigSpec;
2392
- declare function V1beta1CDIConfigSpecToJSON(value?: V1beta1CDIConfigSpec | null): any;
2393
2116
 
2394
2117
  /**
2395
2118
  * KubeVirt Containerized Data Importer API
@@ -2458,9 +2181,6 @@ interface V1beta1CDIConfigStatus {
2458
2181
  */
2459
2182
  uploadProxyURL?: string;
2460
2183
  }
2461
- declare function V1beta1CDIConfigStatusFromJSON(json: any): V1beta1CDIConfigStatus;
2462
- declare function V1beta1CDIConfigStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIConfigStatus;
2463
- declare function V1beta1CDIConfigStatusToJSON(value?: V1beta1CDIConfigStatus | null): any;
2464
2184
 
2465
2185
  /**
2466
2186
  * KubeVirt Containerized Data Importer API
@@ -2505,9 +2225,6 @@ interface V1beta1CDIList {
2505
2225
  */
2506
2226
  metadata: V1ListMeta;
2507
2227
  }
2508
- declare function V1beta1CDIListFromJSON(json: any): V1beta1CDIList;
2509
- declare function V1beta1CDIListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIList;
2510
- declare function V1beta1CDIListToJSON(value?: V1beta1CDIList | null): any;
2511
2228
 
2512
2229
  /**
2513
2230
  * KubeVirt Containerized Data Importer API
@@ -2596,9 +2313,6 @@ declare enum V1beta1CDISpecImagePullPolicyEnum {
2596
2313
  IfNotPresent = "IfNotPresent",
2597
2314
  Never = "Never"
2598
2315
  }
2599
- declare function V1beta1CDISpecFromJSON(json: any): V1beta1CDISpec;
2600
- declare function V1beta1CDISpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDISpec;
2601
- declare function V1beta1CDISpecToJSON(value?: V1beta1CDISpec | null): any;
2602
2316
 
2603
2317
  /**
2604
2318
  * KubeVirt Containerized Data Importer API
@@ -2649,9 +2363,6 @@ interface V1beta1CDIStatus {
2649
2363
  */
2650
2364
  targetVersion?: string;
2651
2365
  }
2652
- declare function V1beta1CDIStatusFromJSON(json: any): V1beta1CDIStatus;
2653
- declare function V1beta1CDIStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIStatus;
2654
- declare function V1beta1CDIStatusToJSON(value?: V1beta1CDIStatus | null): any;
2655
2366
 
2656
2367
  /**
2657
2368
  * KubeVirt Containerized Data Importer API
@@ -2683,9 +2394,6 @@ interface V1beta1CertConfig {
2683
2394
  */
2684
2395
  renewBefore?: string;
2685
2396
  }
2686
- declare function V1beta1CertConfigFromJSON(json: any): V1beta1CertConfig;
2687
- declare function V1beta1CertConfigFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CertConfig;
2688
- declare function V1beta1CertConfigToJSON(value?: V1beta1CertConfig | null): any;
2689
2397
 
2690
2398
  /**
2691
2399
  * KubeVirt Containerized Data Importer API
@@ -2744,9 +2452,6 @@ interface V1beta1ComponentConfig {
2744
2452
  */
2745
2453
  uploadProxyReplicas?: number;
2746
2454
  }
2747
- declare function V1beta1ComponentConfigFromJSON(json: any): V1beta1ComponentConfig;
2748
- declare function V1beta1ComponentConfigFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1ComponentConfig;
2749
- declare function V1beta1ComponentConfigToJSON(value?: V1beta1ComponentConfig | null): any;
2750
2455
 
2751
2456
  /**
2752
2457
  * KubeVirt Containerized Data Importer API
@@ -2785,9 +2490,6 @@ interface V1beta1CustomTLSProfile {
2785
2490
  */
2786
2491
  minTLSVersion: string;
2787
2492
  }
2788
- declare function V1beta1CustomTLSProfileFromJSON(json: any): V1beta1CustomTLSProfile;
2789
- declare function V1beta1CustomTLSProfileFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CustomTLSProfile;
2790
- declare function V1beta1CustomTLSProfileToJSON(value?: V1beta1CustomTLSProfile | null): any;
2791
2493
 
2792
2494
  /**
2793
2495
  * KubeVirt Containerized Data Importer API
@@ -2820,9 +2522,6 @@ interface V1beta1CustomizeComponents {
2820
2522
  */
2821
2523
  patches?: Array<V1beta1CustomizeComponentsPatch>;
2822
2524
  }
2823
- declare function V1beta1CustomizeComponentsFromJSON(json: any): V1beta1CustomizeComponents;
2824
- declare function V1beta1CustomizeComponentsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CustomizeComponents;
2825
- declare function V1beta1CustomizeComponentsToJSON(value?: V1beta1CustomizeComponents | null): any;
2826
2525
 
2827
2526
  /**
2828
2527
  * KubeVirt Containerized Data Importer API
@@ -2866,9 +2565,6 @@ interface V1beta1CustomizeComponentsPatch {
2866
2565
  */
2867
2566
  type: string;
2868
2567
  }
2869
- declare function V1beta1CustomizeComponentsPatchFromJSON(json: any): V1beta1CustomizeComponentsPatch;
2870
- declare function V1beta1CustomizeComponentsPatchFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CustomizeComponentsPatch;
2871
- declare function V1beta1CustomizeComponentsPatchToJSON(value?: V1beta1CustomizeComponentsPatch | null): any;
2872
2568
 
2873
2569
  /**
2874
2570
  * KubeVirt Containerized Data Importer API
@@ -2919,9 +2615,6 @@ interface V1beta1DataImportCron {
2919
2615
  */
2920
2616
  status?: V1beta1DataImportCronStatus;
2921
2617
  }
2922
- declare function V1beta1DataImportCronFromJSON(json: any): V1beta1DataImportCron;
2923
- declare function V1beta1DataImportCronFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCron;
2924
- declare function V1beta1DataImportCronToJSON(value?: V1beta1DataImportCron | null): any;
2925
2618
 
2926
2619
  /**
2927
2620
  * KubeVirt Containerized Data Importer API
@@ -2977,9 +2670,6 @@ interface V1beta1DataImportCronCondition {
2977
2670
  */
2978
2671
  type: string;
2979
2672
  }
2980
- declare function V1beta1DataImportCronConditionFromJSON(json: any): V1beta1DataImportCronCondition;
2981
- declare function V1beta1DataImportCronConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCronCondition;
2982
- declare function V1beta1DataImportCronConditionToJSON(value?: V1beta1DataImportCronCondition | null): any;
2983
2673
 
2984
2674
  /**
2985
2675
  * KubeVirt Containerized Data Importer API
@@ -3024,9 +2714,6 @@ interface V1beta1DataImportCronList {
3024
2714
  */
3025
2715
  metadata: V1ListMeta;
3026
2716
  }
3027
- declare function V1beta1DataImportCronListFromJSON(json: any): V1beta1DataImportCronList;
3028
- declare function V1beta1DataImportCronListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCronList;
3029
- declare function V1beta1DataImportCronListToJSON(value?: V1beta1DataImportCronList | null): any;
3030
2717
 
3031
2718
  /**
3032
2719
  * KubeVirt Containerized Data Importer API
@@ -3065,7 +2752,7 @@ interface V1beta1DataImportCronSpec {
3065
2752
  */
3066
2753
  managedDataSource: string;
3067
2754
  /**
3068
- * RetentionPolicy specifies whether the created DataVolumes and DataSources are retained when their DataImportCron is deleted. Default is RatainAll.
2755
+ * RetentionPolicy specifies whether the created DataVolumes and DataSources are retained when their DataImportCron is deleted. Default is RetainAll.
3069
2756
  * @type {string}
3070
2757
  * @memberof V1beta1DataImportCronSpec
3071
2758
  */
@@ -3083,9 +2770,6 @@ interface V1beta1DataImportCronSpec {
3083
2770
  */
3084
2771
  template: V1beta1DataVolume;
3085
2772
  }
3086
- declare function V1beta1DataImportCronSpecFromJSON(json: any): V1beta1DataImportCronSpec;
3087
- declare function V1beta1DataImportCronSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCronSpec;
3088
- declare function V1beta1DataImportCronSpecToJSON(value?: V1beta1DataImportCronSpec | null): any;
3089
2773
 
3090
2774
  /**
3091
2775
  * KubeVirt Containerized Data Importer API
@@ -3142,9 +2826,6 @@ interface V1beta1DataImportCronStatus {
3142
2826
  */
3143
2827
  sourceFormat?: string;
3144
2828
  }
3145
- declare function V1beta1DataImportCronStatusFromJSON(json: any): V1beta1DataImportCronStatus;
3146
- declare function V1beta1DataImportCronStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCronStatus;
3147
- declare function V1beta1DataImportCronStatusToJSON(value?: V1beta1DataImportCronStatus | null): any;
3148
2829
 
3149
2830
  /**
3150
2831
  * KubeVirt Containerized Data Importer API
@@ -3195,9 +2876,6 @@ interface V1beta1DataSource {
3195
2876
  */
3196
2877
  status?: V1beta1DataSourceStatus;
3197
2878
  }
3198
- declare function V1beta1DataSourceFromJSON(json: any): V1beta1DataSource;
3199
- declare function V1beta1DataSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSource;
3200
- declare function V1beta1DataSourceToJSON(value?: V1beta1DataSource | null): any;
3201
2879
 
3202
2880
  /**
3203
2881
  * KubeVirt Containerized Data Importer API
@@ -3253,9 +2931,6 @@ interface V1beta1DataSourceCondition {
3253
2931
  */
3254
2932
  type: string;
3255
2933
  }
3256
- declare function V1beta1DataSourceConditionFromJSON(json: any): V1beta1DataSourceCondition;
3257
- declare function V1beta1DataSourceConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceCondition;
3258
- declare function V1beta1DataSourceConditionToJSON(value?: V1beta1DataSourceCondition | null): any;
3259
2934
 
3260
2935
  /**
3261
2936
  * KubeVirt Containerized Data Importer API
@@ -3300,9 +2975,6 @@ interface V1beta1DataSourceList {
3300
2975
  */
3301
2976
  metadata: V1ListMeta;
3302
2977
  }
3303
- declare function V1beta1DataSourceListFromJSON(json: any): V1beta1DataSourceList;
3304
- declare function V1beta1DataSourceListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceList;
3305
- declare function V1beta1DataSourceListToJSON(value?: V1beta1DataSourceList | null): any;
3306
2978
 
3307
2979
  /**
3308
2980
  * KubeVirt Containerized Data Importer API
@@ -3334,9 +3006,6 @@ interface V1beta1DataSourceRefSourceDataSource {
3334
3006
  */
3335
3007
  namespace: string;
3336
3008
  }
3337
- declare function V1beta1DataSourceRefSourceDataSourceFromJSON(json: any): V1beta1DataSourceRefSourceDataSource;
3338
- declare function V1beta1DataSourceRefSourceDataSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceRefSourceDataSource;
3339
- declare function V1beta1DataSourceRefSourceDataSourceToJSON(value?: V1beta1DataSourceRefSourceDataSource | null): any;
3340
3009
 
3341
3010
  /**
3342
3011
  * KubeVirt Containerized Data Importer API
@@ -3375,9 +3044,6 @@ interface V1beta1DataSourceSource {
3375
3044
  */
3376
3045
  snapshot?: V1beta1DataVolumeSourceSnapshot;
3377
3046
  }
3378
- declare function V1beta1DataSourceSourceFromJSON(json: any): V1beta1DataSourceSource;
3379
- declare function V1beta1DataSourceSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceSource;
3380
- declare function V1beta1DataSourceSourceToJSON(value?: V1beta1DataSourceSource | null): any;
3381
3047
 
3382
3048
  /**
3383
3049
  * KubeVirt Containerized Data Importer API
@@ -3404,9 +3070,6 @@ interface V1beta1DataSourceSpec {
3404
3070
  */
3405
3071
  source: V1beta1DataSourceSource;
3406
3072
  }
3407
- declare function V1beta1DataSourceSpecFromJSON(json: any): V1beta1DataSourceSpec;
3408
- declare function V1beta1DataSourceSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceSpec;
3409
- declare function V1beta1DataSourceSpecToJSON(value?: V1beta1DataSourceSpec | null): any;
3410
3073
 
3411
3074
  /**
3412
3075
  * KubeVirt Containerized Data Importer API
@@ -3439,9 +3102,6 @@ interface V1beta1DataSourceStatus {
3439
3102
  */
3440
3103
  source?: V1beta1DataSourceSource;
3441
3104
  }
3442
- declare function V1beta1DataSourceStatusFromJSON(json: any): V1beta1DataSourceStatus;
3443
- declare function V1beta1DataSourceStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceStatus;
3444
- declare function V1beta1DataSourceStatusToJSON(value?: V1beta1DataSourceStatus | null): any;
3445
3105
 
3446
3106
  /**
3447
3107
  * KubeVirt Containerized Data Importer API
@@ -3492,9 +3152,6 @@ interface V1beta1DataVolume {
3492
3152
  */
3493
3153
  status?: V1beta1DataVolumeStatus;
3494
3154
  }
3495
- declare function V1beta1DataVolumeFromJSON(json: any): V1beta1DataVolume;
3496
- declare function V1beta1DataVolumeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolume;
3497
- declare function V1beta1DataVolumeToJSON(value?: V1beta1DataVolume | null): any;
3498
3155
 
3499
3156
  /**
3500
3157
  * KubeVirt Containerized Data Importer API
@@ -3526,9 +3183,6 @@ interface V1beta1DataVolumeCheckpoint {
3526
3183
  */
3527
3184
  previous: string;
3528
3185
  }
3529
- declare function V1beta1DataVolumeCheckpointFromJSON(json: any): V1beta1DataVolumeCheckpoint;
3530
- declare function V1beta1DataVolumeCheckpointFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeCheckpoint;
3531
- declare function V1beta1DataVolumeCheckpointToJSON(value?: V1beta1DataVolumeCheckpoint | null): any;
3532
3186
 
3533
3187
  /**
3534
3188
  * KubeVirt Containerized Data Importer API
@@ -3584,9 +3238,6 @@ interface V1beta1DataVolumeCondition {
3584
3238
  */
3585
3239
  type: string;
3586
3240
  }
3587
- declare function V1beta1DataVolumeConditionFromJSON(json: any): V1beta1DataVolumeCondition;
3588
- declare function V1beta1DataVolumeConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeCondition;
3589
- declare function V1beta1DataVolumeConditionToJSON(value?: V1beta1DataVolumeCondition | null): any;
3590
3241
 
3591
3242
  /**
3592
3243
  * KubeVirt Containerized Data Importer API
@@ -3631,9 +3282,6 @@ interface V1beta1DataVolumeList {
3631
3282
  */
3632
3283
  metadata: V1ListMeta;
3633
3284
  }
3634
- declare function V1beta1DataVolumeListFromJSON(json: any): V1beta1DataVolumeList;
3635
- declare function V1beta1DataVolumeListFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeList;
3636
- declare function V1beta1DataVolumeListToJSON(value?: V1beta1DataVolumeList | null): any;
3637
3285
 
3638
3286
  /**
3639
3287
  * KubeVirt Containerized Data Importer API
@@ -3714,9 +3362,6 @@ interface V1beta1DataVolumeSource {
3714
3362
  */
3715
3363
  vddk?: V1beta1DataVolumeSourceVDDK;
3716
3364
  }
3717
- declare function V1beta1DataVolumeSourceFromJSON(json: any): V1beta1DataVolumeSource;
3718
- declare function V1beta1DataVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSource;
3719
- declare function V1beta1DataVolumeSourceToJSON(value?: V1beta1DataVolumeSource | null): any;
3720
3365
 
3721
3366
  /**
3722
3367
  * KubeVirt Containerized Data Importer API
@@ -3748,9 +3393,6 @@ interface V1beta1DataVolumeSourceGCS {
3748
3393
  */
3749
3394
  url: string;
3750
3395
  }
3751
- declare function V1beta1DataVolumeSourceGCSFromJSON(json: any): V1beta1DataVolumeSourceGCS;
3752
- declare function V1beta1DataVolumeSourceGCSFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceGCS;
3753
- declare function V1beta1DataVolumeSourceGCSToJSON(value?: V1beta1DataVolumeSourceGCS | null): any;
3754
3396
 
3755
3397
  /**
3756
3398
  * KubeVirt Containerized Data Importer API
@@ -3775,6 +3417,12 @@ interface V1beta1DataVolumeSourceHTTP {
3775
3417
  * @memberof V1beta1DataVolumeSourceHTTP
3776
3418
  */
3777
3419
  certConfigMap?: string;
3420
+ /**
3421
+ * Checksum is the expected checksum of the file. Format: "algorithm:hash", e.g., "sha256:1234abcd..." or "md5:5678efgh..." Supported algorithms: md5, sha1, sha256, sha512 If specified, the importer will verify the downloaded content matches this checksum
3422
+ * @type {string}
3423
+ * @memberof V1beta1DataVolumeSourceHTTP
3424
+ */
3425
+ checksum?: string;
3778
3426
  /**
3779
3427
  * ExtraHeaders is a list of strings containing extra headers to include with HTTP transfer requests
3780
3428
  * @type {Array<string>}
@@ -3800,9 +3448,6 @@ interface V1beta1DataVolumeSourceHTTP {
3800
3448
  */
3801
3449
  url: string;
3802
3450
  }
3803
- declare function V1beta1DataVolumeSourceHTTPFromJSON(json: any): V1beta1DataVolumeSourceHTTP;
3804
- declare function V1beta1DataVolumeSourceHTTPFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceHTTP;
3805
- declare function V1beta1DataVolumeSourceHTTPToJSON(value?: V1beta1DataVolumeSourceHTTP | null): any;
3806
3451
 
3807
3452
  /**
3808
3453
  * KubeVirt Containerized Data Importer API
@@ -3846,9 +3491,6 @@ interface V1beta1DataVolumeSourceImageIO {
3846
3491
  */
3847
3492
  url: string;
3848
3493
  }
3849
- declare function V1beta1DataVolumeSourceImageIOFromJSON(json: any): V1beta1DataVolumeSourceImageIO;
3850
- declare function V1beta1DataVolumeSourceImageIOFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceImageIO;
3851
- declare function V1beta1DataVolumeSourceImageIOToJSON(value?: V1beta1DataVolumeSourceImageIO | null): any;
3852
3494
 
3853
3495
  /**
3854
3496
  * KubeVirt Containerized Data Importer API
@@ -3880,9 +3522,6 @@ interface V1beta1DataVolumeSourcePVC {
3880
3522
  */
3881
3523
  namespace: string;
3882
3524
  }
3883
- declare function V1beta1DataVolumeSourcePVCFromJSON(json: any): V1beta1DataVolumeSourcePVC;
3884
- declare function V1beta1DataVolumeSourcePVCFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourcePVC;
3885
- declare function V1beta1DataVolumeSourcePVCToJSON(value?: V1beta1DataVolumeSourcePVC | null): any;
3886
3525
 
3887
3526
  /**
3888
3527
  * KubeVirt Containerized Data Importer API
@@ -3920,9 +3559,6 @@ interface V1beta1DataVolumeSourceRef {
3920
3559
  */
3921
3560
  namespace?: string;
3922
3561
  }
3923
- declare function V1beta1DataVolumeSourceRefFromJSON(json: any): V1beta1DataVolumeSourceRef;
3924
- declare function V1beta1DataVolumeSourceRefFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceRef;
3925
- declare function V1beta1DataVolumeSourceRefToJSON(value?: V1beta1DataVolumeSourceRef | null): any;
3926
3562
 
3927
3563
  /**
3928
3564
  * KubeVirt Containerized Data Importer API
@@ -3979,9 +3615,6 @@ interface V1beta1DataVolumeSourceRegistry {
3979
3615
  */
3980
3616
  url?: string;
3981
3617
  }
3982
- declare function V1beta1DataVolumeSourceRegistryFromJSON(json: any): V1beta1DataVolumeSourceRegistry;
3983
- declare function V1beta1DataVolumeSourceRegistryFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceRegistry;
3984
- declare function V1beta1DataVolumeSourceRegistryToJSON(value?: V1beta1DataVolumeSourceRegistry | null): any;
3985
3618
 
3986
3619
  /**
3987
3620
  * KubeVirt Containerized Data Importer API
@@ -4019,9 +3652,6 @@ interface V1beta1DataVolumeSourceS3 {
4019
3652
  */
4020
3653
  url: string;
4021
3654
  }
4022
- declare function V1beta1DataVolumeSourceS3FromJSON(json: any): V1beta1DataVolumeSourceS3;
4023
- declare function V1beta1DataVolumeSourceS3FromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceS3;
4024
- declare function V1beta1DataVolumeSourceS3ToJSON(value?: V1beta1DataVolumeSourceS3 | null): any;
4025
3655
 
4026
3656
  /**
4027
3657
  * KubeVirt Containerized Data Importer API
@@ -4053,9 +3683,6 @@ interface V1beta1DataVolumeSourceSnapshot {
4053
3683
  */
4054
3684
  namespace: string;
4055
3685
  }
4056
- declare function V1beta1DataVolumeSourceSnapshotFromJSON(json: any): V1beta1DataVolumeSourceSnapshot;
4057
- declare function V1beta1DataVolumeSourceSnapshotFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceSnapshot;
4058
- declare function V1beta1DataVolumeSourceSnapshotToJSON(value?: V1beta1DataVolumeSourceSnapshot | null): any;
4059
3686
 
4060
3687
  /**
4061
3688
  * KubeVirt Containerized Data Importer API
@@ -4117,9 +3744,6 @@ interface V1beta1DataVolumeSourceVDDK {
4117
3744
  */
4118
3745
  uuid?: string;
4119
3746
  }
4120
- declare function V1beta1DataVolumeSourceVDDKFromJSON(json: any): V1beta1DataVolumeSourceVDDK;
4121
- declare function V1beta1DataVolumeSourceVDDKFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceVDDK;
4122
- declare function V1beta1DataVolumeSourceVDDKToJSON(value?: V1beta1DataVolumeSourceVDDK | null): any;
4123
3747
 
4124
3748
  /**
4125
3749
  * KubeVirt Containerized Data Importer API
@@ -4175,6 +3799,12 @@ interface V1beta1DataVolumeSpec {
4175
3799
  * @memberof V1beta1DataVolumeSpec
4176
3800
  */
4177
3801
  pvc?: V1PersistentVolumeClaimSpec;
3802
+ /**
3803
+ * ServiceAccountName for Importer and Uploader pod
3804
+ * @type {string}
3805
+ * @memberof V1beta1DataVolumeSpec
3806
+ */
3807
+ serviceAccountName?: string;
4178
3808
  /**
4179
3809
  *
4180
3810
  * @type {V1beta1DataVolumeSource}
@@ -4194,9 +3824,6 @@ interface V1beta1DataVolumeSpec {
4194
3824
  */
4195
3825
  storage?: V1beta1StorageSpec;
4196
3826
  }
4197
- declare function V1beta1DataVolumeSpecFromJSON(json: any): V1beta1DataVolumeSpec;
4198
- declare function V1beta1DataVolumeSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSpec;
4199
- declare function V1beta1DataVolumeSpecToJSON(value?: V1beta1DataVolumeSpec | null): any;
4200
3827
 
4201
3828
  /**
4202
3829
  * KubeVirt Containerized Data Importer API
@@ -4247,9 +3874,6 @@ interface V1beta1DataVolumeStatus {
4247
3874
  */
4248
3875
  restartCount?: number;
4249
3876
  }
4250
- declare function V1beta1DataVolumeStatusFromJSON(json: any): V1beta1DataVolumeStatus;
4251
- declare function V1beta1DataVolumeStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeStatus;
4252
- declare function V1beta1DataVolumeStatusToJSON(value?: V1beta1DataVolumeStatus | null): any;
4253
3877
 
4254
3878
  /**
4255
3879
  * KubeVirt Containerized Data Importer API
@@ -4283,9 +3907,6 @@ interface V1beta1FilesystemOverhead {
4283
3907
  [key: string]: string;
4284
3908
  };
4285
3909
  }
4286
- declare function V1beta1FilesystemOverheadFromJSON(json: any): V1beta1FilesystemOverhead;
4287
- declare function V1beta1FilesystemOverheadFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1FilesystemOverhead;
4288
- declare function V1beta1FilesystemOverheadToJSON(value?: V1beta1FilesystemOverhead | null): any;
4289
3910
 
4290
3911
  /**
4291
3912
  * KubeVirt Containerized Data Importer API
@@ -4329,9 +3950,6 @@ interface V1beta1Flags {
4329
3950
  [key: string]: string;
4330
3951
  };
4331
3952
  }
4332
- declare function V1beta1FlagsFromJSON(json: any): V1beta1Flags;
4333
- declare function V1beta1FlagsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1Flags;
4334
- declare function V1beta1FlagsToJSON(value?: V1beta1Flags | null): any;
4335
3953
 
4336
3954
  /**
4337
3955
  * KubeVirt Containerized Data Importer API
@@ -4384,9 +4002,6 @@ interface V1beta1ImportProxy {
4384
4002
  */
4385
4003
  trustedCAProxy?: string;
4386
4004
  }
4387
- declare function V1beta1ImportProxyFromJSON(json: any): V1beta1ImportProxy;
4388
- declare function V1beta1ImportProxyFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1ImportProxy;
4389
- declare function V1beta1ImportProxyToJSON(value?: V1beta1ImportProxy | null): any;
4390
4005
 
4391
4006
  /**
4392
4007
  * KubeVirt Containerized Data Importer API
@@ -4418,9 +4033,6 @@ interface V1beta1ImportStatus {
4418
4033
  */
4419
4034
  digest: string;
4420
4035
  }
4421
- declare function V1beta1ImportStatusFromJSON(json: any): V1beta1ImportStatus;
4422
- declare function V1beta1ImportStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1ImportStatus;
4423
- declare function V1beta1ImportStatusToJSON(value?: V1beta1ImportStatus | null): any;
4424
4036
 
4425
4037
  /**
4426
4038
  * KubeVirt Containerized Data Importer API
@@ -4446,9 +4058,6 @@ interface V1beta1PlatformOptions {
4446
4058
  */
4447
4059
  architecture?: string;
4448
4060
  }
4449
- declare function V1beta1PlatformOptionsFromJSON(json: any): V1beta1PlatformOptions;
4450
- declare function V1beta1PlatformOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1PlatformOptions;
4451
- declare function V1beta1PlatformOptionsToJSON(value?: V1beta1PlatformOptions | null): any;
4452
4061
 
4453
4062
  /**
4454
4063
  * KubeVirt Containerized Data Importer API
@@ -4541,9 +4150,6 @@ declare enum V1beta1StorageSpecVolumeModeEnum {
4541
4150
  Filesystem = "Filesystem",
4542
4151
  FromStorageProfile = "FromStorageProfile"
4543
4152
  }
4544
- declare function V1beta1StorageSpecFromJSON(json: any): V1beta1StorageSpec;
4545
- declare function V1beta1StorageSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1StorageSpec;
4546
- declare function V1beta1StorageSpecToJSON(value?: V1beta1StorageSpec | null): any;
4547
4153
 
4548
4154
  /**
4549
4155
  * KubeVirt Containerized Data Importer API
@@ -4600,9 +4206,6 @@ interface V1beta1TLSSecurityProfile {
4600
4206
  */
4601
4207
  type?: string;
4602
4208
  }
4603
- declare function V1beta1TLSSecurityProfileFromJSON(json: any): V1beta1TLSSecurityProfile;
4604
- declare function V1beta1TLSSecurityProfileFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1TLSSecurityProfile;
4605
- declare function V1beta1TLSSecurityProfileToJSON(value?: V1beta1TLSSecurityProfile | null): any;
4606
4209
 
4607
4210
  /**
4608
4211
  * KubeVirt Containerized Data Importer API
@@ -4653,9 +4256,6 @@ interface V1beta1UploadTokenRequest {
4653
4256
  */
4654
4257
  status: V1beta1UploadTokenRequestStatus;
4655
4258
  }
4656
- declare function V1beta1UploadTokenRequestFromJSON(json: any): V1beta1UploadTokenRequest;
4657
- declare function V1beta1UploadTokenRequestFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1UploadTokenRequest;
4658
- declare function V1beta1UploadTokenRequestToJSON(value?: V1beta1UploadTokenRequest | null): any;
4659
4259
 
4660
4260
  /**
4661
4261
  * KubeVirt Containerized Data Importer API
@@ -4681,9 +4281,6 @@ interface V1beta1UploadTokenRequestSpec {
4681
4281
  */
4682
4282
  pvcName: string;
4683
4283
  }
4684
- declare function V1beta1UploadTokenRequestSpecFromJSON(json: any): V1beta1UploadTokenRequestSpec;
4685
- declare function V1beta1UploadTokenRequestSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1UploadTokenRequestSpec;
4686
- declare function V1beta1UploadTokenRequestSpecToJSON(value?: V1beta1UploadTokenRequestSpec | null): any;
4687
4284
 
4688
4285
  /**
4689
4286
  * KubeVirt Containerized Data Importer API
@@ -4709,898 +4306,5 @@ interface V1beta1UploadTokenRequestStatus {
4709
4306
  */
4710
4307
  token?: string;
4711
4308
  }
4712
- declare function V1beta1UploadTokenRequestStatusFromJSON(json: any): V1beta1UploadTokenRequestStatus;
4713
- declare function V1beta1UploadTokenRequestStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1UploadTokenRequestStatus;
4714
- declare function V1beta1UploadTokenRequestStatusToJSON(value?: V1beta1UploadTokenRequestStatus | null): any;
4715
-
4716
- /**
4717
- * KubeVirt Containerized Data Importer API
4718
- * Containerized Data Importer for KubeVirt.
4719
- *
4720
- * The version of the OpenAPI document: 1.0.0
4721
- * Contact: kubevirt-dev@googlegroups.com
4722
- *
4723
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4724
- * https://openapi-generator.tech
4725
- * Do not edit the class manually.
4726
- */
4727
-
4728
- interface CreateNamespacedCDIRequest {
4729
- namespace: string;
4730
- body: V1beta1CDI;
4731
- }
4732
- interface CreateNamespacedCDIConfigRequest {
4733
- namespace: string;
4734
- body: V1beta1CDIConfig;
4735
- }
4736
- interface CreateNamespacedDataImportCronRequest {
4737
- namespace: string;
4738
- body: V1beta1DataImportCron;
4739
- }
4740
- interface CreateNamespacedDataSourceRequest {
4741
- namespace: string;
4742
- body: V1beta1DataSource;
4743
- }
4744
- interface CreateNamespacedDataVolumeRequest {
4745
- namespace: string;
4746
- body: V1beta1DataVolume;
4747
- }
4748
- interface CreateNamespacedUploadTokenRequestV1beta1Request {
4749
- namespace: string;
4750
- body: V1beta1UploadTokenRequest;
4751
- }
4752
- interface DeleteCollectionNamespacedCDIRequest {
4753
- _continue?: string;
4754
- fieldSelector?: string;
4755
- includeUninitialized?: boolean;
4756
- labelSelector?: string;
4757
- limit?: number;
4758
- resourceVersion?: string;
4759
- timeoutSeconds?: number;
4760
- watch?: boolean;
4761
- }
4762
- interface DeleteCollectionNamespacedCDIConfigRequest {
4763
- _continue?: string;
4764
- fieldSelector?: string;
4765
- includeUninitialized?: boolean;
4766
- labelSelector?: string;
4767
- limit?: number;
4768
- resourceVersion?: string;
4769
- timeoutSeconds?: number;
4770
- watch?: boolean;
4771
- }
4772
- interface DeleteCollectionNamespacedDataImportCronRequest {
4773
- _continue?: string;
4774
- fieldSelector?: string;
4775
- includeUninitialized?: boolean;
4776
- labelSelector?: string;
4777
- limit?: number;
4778
- resourceVersion?: string;
4779
- timeoutSeconds?: number;
4780
- watch?: boolean;
4781
- }
4782
- interface DeleteCollectionNamespacedDataSourceRequest {
4783
- _continue?: string;
4784
- fieldSelector?: string;
4785
- includeUninitialized?: boolean;
4786
- labelSelector?: string;
4787
- limit?: number;
4788
- resourceVersion?: string;
4789
- timeoutSeconds?: number;
4790
- watch?: boolean;
4791
- }
4792
- interface DeleteCollectionNamespacedDataVolumeRequest {
4793
- _continue?: string;
4794
- fieldSelector?: string;
4795
- includeUninitialized?: boolean;
4796
- labelSelector?: string;
4797
- limit?: number;
4798
- resourceVersion?: string;
4799
- timeoutSeconds?: number;
4800
- watch?: boolean;
4801
- }
4802
- interface DeleteNamespacedCDIRequest {
4803
- name: string;
4804
- namespace: string;
4805
- body: V1DeleteOptions;
4806
- gracePeriodSeconds?: number;
4807
- orphanDependents?: boolean;
4808
- propagationPolicy?: string;
4809
- }
4810
- interface DeleteNamespacedCDIConfigRequest {
4811
- name: string;
4812
- namespace: string;
4813
- body: V1DeleteOptions;
4814
- gracePeriodSeconds?: number;
4815
- orphanDependents?: boolean;
4816
- propagationPolicy?: string;
4817
- }
4818
- interface DeleteNamespacedDataImportCronRequest {
4819
- name: string;
4820
- namespace: string;
4821
- body: V1DeleteOptions;
4822
- gracePeriodSeconds?: number;
4823
- orphanDependents?: boolean;
4824
- propagationPolicy?: string;
4825
- }
4826
- interface DeleteNamespacedDataSourceRequest {
4827
- name: string;
4828
- namespace: string;
4829
- body: V1DeleteOptions;
4830
- gracePeriodSeconds?: number;
4831
- orphanDependents?: boolean;
4832
- propagationPolicy?: string;
4833
- }
4834
- interface DeleteNamespacedDataVolumeRequest {
4835
- name: string;
4836
- namespace: string;
4837
- body: V1DeleteOptions;
4838
- gracePeriodSeconds?: number;
4839
- orphanDependents?: boolean;
4840
- propagationPolicy?: string;
4841
- }
4842
- interface ListCDIConfigForAllNamespacesRequest {
4843
- _continue?: string;
4844
- fieldSelector?: string;
4845
- includeUninitialized?: boolean;
4846
- labelSelector?: string;
4847
- limit?: number;
4848
- resourceVersion?: string;
4849
- timeoutSeconds?: number;
4850
- watch?: boolean;
4851
- }
4852
- interface ListCDIForAllNamespacesRequest {
4853
- _continue?: string;
4854
- fieldSelector?: string;
4855
- includeUninitialized?: boolean;
4856
- labelSelector?: string;
4857
- limit?: number;
4858
- resourceVersion?: string;
4859
- timeoutSeconds?: number;
4860
- watch?: boolean;
4861
- }
4862
- interface ListDataImportCronForAllNamespacesRequest {
4863
- _continue?: string;
4864
- fieldSelector?: string;
4865
- includeUninitialized?: boolean;
4866
- labelSelector?: string;
4867
- limit?: number;
4868
- resourceVersion?: string;
4869
- timeoutSeconds?: number;
4870
- watch?: boolean;
4871
- }
4872
- interface ListDataSourceForAllNamespacesRequest {
4873
- _continue?: string;
4874
- fieldSelector?: string;
4875
- includeUninitialized?: boolean;
4876
- labelSelector?: string;
4877
- limit?: number;
4878
- resourceVersion?: string;
4879
- timeoutSeconds?: number;
4880
- watch?: boolean;
4881
- }
4882
- interface ListDataVolumeForAllNamespacesRequest {
4883
- _continue?: string;
4884
- fieldSelector?: string;
4885
- includeUninitialized?: boolean;
4886
- labelSelector?: string;
4887
- limit?: number;
4888
- resourceVersion?: string;
4889
- timeoutSeconds?: number;
4890
- watch?: boolean;
4891
- }
4892
- interface ListNamespacedCDIRequest {
4893
- namespace: string;
4894
- _continue?: string;
4895
- fieldSelector?: string;
4896
- includeUninitialized?: boolean;
4897
- labelSelector?: string;
4898
- limit?: number;
4899
- resourceVersion?: string;
4900
- timeoutSeconds?: number;
4901
- watch?: boolean;
4902
- }
4903
- interface ListNamespacedCDIConfigRequest {
4904
- namespace: string;
4905
- _continue?: string;
4906
- fieldSelector?: string;
4907
- includeUninitialized?: boolean;
4908
- labelSelector?: string;
4909
- limit?: number;
4910
- resourceVersion?: string;
4911
- timeoutSeconds?: number;
4912
- watch?: boolean;
4913
- }
4914
- interface ListNamespacedDataImportCronRequest {
4915
- namespace: string;
4916
- _continue?: string;
4917
- fieldSelector?: string;
4918
- includeUninitialized?: boolean;
4919
- labelSelector?: string;
4920
- limit?: number;
4921
- resourceVersion?: string;
4922
- timeoutSeconds?: number;
4923
- watch?: boolean;
4924
- }
4925
- interface ListNamespacedDataSourceRequest {
4926
- namespace: string;
4927
- _continue?: string;
4928
- fieldSelector?: string;
4929
- includeUninitialized?: boolean;
4930
- labelSelector?: string;
4931
- limit?: number;
4932
- resourceVersion?: string;
4933
- timeoutSeconds?: number;
4934
- watch?: boolean;
4935
- }
4936
- interface ListNamespacedDataVolumeRequest {
4937
- namespace: string;
4938
- _continue?: string;
4939
- fieldSelector?: string;
4940
- includeUninitialized?: boolean;
4941
- labelSelector?: string;
4942
- limit?: number;
4943
- resourceVersion?: string;
4944
- timeoutSeconds?: number;
4945
- watch?: boolean;
4946
- }
4947
- interface PatchNamespacedCDIRequest {
4948
- name: string;
4949
- namespace: string;
4950
- body: object;
4951
- }
4952
- interface PatchNamespacedCDIConfigRequest {
4953
- name: string;
4954
- namespace: string;
4955
- body: object;
4956
- }
4957
- interface PatchNamespacedDataImportCronRequest {
4958
- name: string;
4959
- namespace: string;
4960
- body: object;
4961
- }
4962
- interface PatchNamespacedDataSourceRequest {
4963
- name: string;
4964
- namespace: string;
4965
- body: object;
4966
- }
4967
- interface PatchNamespacedDataVolumeRequest {
4968
- name: string;
4969
- namespace: string;
4970
- body: object;
4971
- }
4972
- interface ReadNamespacedCDIRequest {
4973
- name: string;
4974
- namespace: string;
4975
- exact?: boolean;
4976
- _export?: boolean;
4977
- }
4978
- interface ReadNamespacedCDIConfigRequest {
4979
- name: string;
4980
- namespace: string;
4981
- exact?: boolean;
4982
- _export?: boolean;
4983
- }
4984
- interface ReadNamespacedDataImportCronRequest {
4985
- name: string;
4986
- namespace: string;
4987
- exact?: boolean;
4988
- _export?: boolean;
4989
- }
4990
- interface ReadNamespacedDataSourceRequest {
4991
- name: string;
4992
- namespace: string;
4993
- exact?: boolean;
4994
- _export?: boolean;
4995
- }
4996
- interface ReadNamespacedDataVolumeRequest {
4997
- name: string;
4998
- namespace: string;
4999
- exact?: boolean;
5000
- _export?: boolean;
5001
- }
5002
- interface ReplaceNamespacedCDIRequest {
5003
- name: string;
5004
- namespace: string;
5005
- body: V1beta1CDI;
5006
- }
5007
- interface ReplaceNamespacedCDIConfigRequest {
5008
- name: string;
5009
- namespace: string;
5010
- body: V1beta1CDIConfig;
5011
- }
5012
- interface ReplaceNamespacedDataImportCronRequest {
5013
- name: string;
5014
- namespace: string;
5015
- body: V1beta1DataImportCron;
5016
- }
5017
- interface ReplaceNamespacedDataSourceRequest {
5018
- name: string;
5019
- namespace: string;
5020
- body: V1beta1DataSource;
5021
- }
5022
- interface ReplaceNamespacedDataVolumeRequest {
5023
- name: string;
5024
- namespace: string;
5025
- body: V1beta1DataVolume;
5026
- }
5027
- interface WatchCDIConfigListForAllNamespacesRequest {
5028
- _continue?: string;
5029
- fieldSelector?: string;
5030
- includeUninitialized?: boolean;
5031
- labelSelector?: string;
5032
- limit?: number;
5033
- resourceVersion?: string;
5034
- timeoutSeconds?: number;
5035
- watch?: boolean;
5036
- }
5037
- interface WatchCDIListForAllNamespacesRequest {
5038
- _continue?: string;
5039
- fieldSelector?: string;
5040
- includeUninitialized?: boolean;
5041
- labelSelector?: string;
5042
- limit?: number;
5043
- resourceVersion?: string;
5044
- timeoutSeconds?: number;
5045
- watch?: boolean;
5046
- }
5047
- interface WatchDataImportCronListForAllNamespacesRequest {
5048
- _continue?: string;
5049
- fieldSelector?: string;
5050
- includeUninitialized?: boolean;
5051
- labelSelector?: string;
5052
- limit?: number;
5053
- resourceVersion?: string;
5054
- timeoutSeconds?: number;
5055
- watch?: boolean;
5056
- }
5057
- interface WatchDataSourceListForAllNamespacesRequest {
5058
- _continue?: string;
5059
- fieldSelector?: string;
5060
- includeUninitialized?: boolean;
5061
- labelSelector?: string;
5062
- limit?: number;
5063
- resourceVersion?: string;
5064
- timeoutSeconds?: number;
5065
- watch?: boolean;
5066
- }
5067
- interface WatchDataVolumeListForAllNamespacesRequest {
5068
- _continue?: string;
5069
- fieldSelector?: string;
5070
- includeUninitialized?: boolean;
5071
- labelSelector?: string;
5072
- limit?: number;
5073
- resourceVersion?: string;
5074
- timeoutSeconds?: number;
5075
- watch?: boolean;
5076
- }
5077
- interface WatchNamespacedCDIRequest {
5078
- namespace: string;
5079
- _continue?: string;
5080
- fieldSelector?: string;
5081
- includeUninitialized?: boolean;
5082
- labelSelector?: string;
5083
- limit?: number;
5084
- resourceVersion?: string;
5085
- timeoutSeconds?: number;
5086
- watch?: boolean;
5087
- }
5088
- interface WatchNamespacedCDIConfigRequest {
5089
- namespace: string;
5090
- _continue?: string;
5091
- fieldSelector?: string;
5092
- includeUninitialized?: boolean;
5093
- labelSelector?: string;
5094
- limit?: number;
5095
- resourceVersion?: string;
5096
- timeoutSeconds?: number;
5097
- watch?: boolean;
5098
- }
5099
- interface WatchNamespacedDataImportCronRequest {
5100
- namespace: string;
5101
- _continue?: string;
5102
- fieldSelector?: string;
5103
- includeUninitialized?: boolean;
5104
- labelSelector?: string;
5105
- limit?: number;
5106
- resourceVersion?: string;
5107
- timeoutSeconds?: number;
5108
- watch?: boolean;
5109
- }
5110
- interface WatchNamespacedDataSourceRequest {
5111
- namespace: string;
5112
- _continue?: string;
5113
- fieldSelector?: string;
5114
- includeUninitialized?: boolean;
5115
- labelSelector?: string;
5116
- limit?: number;
5117
- resourceVersion?: string;
5118
- timeoutSeconds?: number;
5119
- watch?: boolean;
5120
- }
5121
- interface WatchNamespacedDataVolumeRequest {
5122
- namespace: string;
5123
- _continue?: string;
5124
- fieldSelector?: string;
5125
- includeUninitialized?: boolean;
5126
- labelSelector?: string;
5127
- limit?: number;
5128
- resourceVersion?: string;
5129
- timeoutSeconds?: number;
5130
- watch?: boolean;
5131
- }
5132
- /**
5133
- *
5134
- */
5135
- declare class DefaultApi extends BaseAPI {
5136
- /**
5137
- * Create a CDI object.
5138
- */
5139
- createNamespacedCDIRaw(requestParameters: CreateNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDI>>;
5140
- /**
5141
- * Create a CDI object.
5142
- */
5143
- createNamespacedCDI(requestParameters: CreateNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1beta1CDI>;
5144
- /**
5145
- * Create a CDIConfig object.
5146
- */
5147
- createNamespacedCDIConfigRaw(requestParameters: CreateNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIConfig>>;
5148
- /**
5149
- * Create a CDIConfig object.
5150
- */
5151
- createNamespacedCDIConfig(requestParameters: CreateNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1beta1CDIConfig>;
5152
- /**
5153
- * Create a DataImportCron object.
5154
- */
5155
- createNamespacedDataImportCronRaw(requestParameters: CreateNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataImportCron>>;
5156
- /**
5157
- * Create a DataImportCron object.
5158
- */
5159
- createNamespacedDataImportCron(requestParameters: CreateNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1beta1DataImportCron>;
5160
- /**
5161
- * Create a DataSource object.
5162
- */
5163
- createNamespacedDataSourceRaw(requestParameters: CreateNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataSource>>;
5164
- /**
5165
- * Create a DataSource object.
5166
- */
5167
- createNamespacedDataSource(requestParameters: CreateNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1beta1DataSource>;
5168
- /**
5169
- * Create a DataVolume object.
5170
- */
5171
- createNamespacedDataVolumeRaw(requestParameters: CreateNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataVolume>>;
5172
- /**
5173
- * Create a DataVolume object.
5174
- */
5175
- createNamespacedDataVolume(requestParameters: CreateNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1beta1DataVolume>;
5176
- /**
5177
- * Create an UploadTokenRequest object.
5178
- */
5179
- createNamespacedUploadTokenRequestV1beta1Raw(requestParameters: CreateNamespacedUploadTokenRequestV1beta1Request, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1UploadTokenRequest>>;
5180
- /**
5181
- * Create an UploadTokenRequest object.
5182
- */
5183
- createNamespacedUploadTokenRequestV1beta1(requestParameters: CreateNamespacedUploadTokenRequestV1beta1Request, initOverrides?: RequestInit): Promise<V1beta1UploadTokenRequest>;
5184
- /**
5185
- * Delete a collection of CDI objects.
5186
- */
5187
- deleteCollectionNamespacedCDIRaw(requestParameters: DeleteCollectionNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5188
- /**
5189
- * Delete a collection of CDI objects.
5190
- */
5191
- deleteCollectionNamespacedCDI(requestParameters: DeleteCollectionNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1Status>;
5192
- /**
5193
- * Delete a collection of CDIConfig objects.
5194
- */
5195
- deleteCollectionNamespacedCDIConfigRaw(requestParameters: DeleteCollectionNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5196
- /**
5197
- * Delete a collection of CDIConfig objects.
5198
- */
5199
- deleteCollectionNamespacedCDIConfig(requestParameters: DeleteCollectionNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1Status>;
5200
- /**
5201
- * Delete a collection of DataImportCron objects.
5202
- */
5203
- deleteCollectionNamespacedDataImportCronRaw(requestParameters: DeleteCollectionNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5204
- /**
5205
- * Delete a collection of DataImportCron objects.
5206
- */
5207
- deleteCollectionNamespacedDataImportCron(requestParameters: DeleteCollectionNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1Status>;
5208
- /**
5209
- * Delete a collection of DataSource objects.
5210
- */
5211
- deleteCollectionNamespacedDataSourceRaw(requestParameters: DeleteCollectionNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5212
- /**
5213
- * Delete a collection of DataSource objects.
5214
- */
5215
- deleteCollectionNamespacedDataSource(requestParameters: DeleteCollectionNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1Status>;
5216
- /**
5217
- * Delete a collection of DataVolume objects.
5218
- */
5219
- deleteCollectionNamespacedDataVolumeRaw(requestParameters: DeleteCollectionNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5220
- /**
5221
- * Delete a collection of DataVolume objects.
5222
- */
5223
- deleteCollectionNamespacedDataVolume(requestParameters: DeleteCollectionNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1Status>;
5224
- /**
5225
- * Delete a CDI object.
5226
- */
5227
- deleteNamespacedCDIRaw(requestParameters: DeleteNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5228
- /**
5229
- * Delete a CDI object.
5230
- */
5231
- deleteNamespacedCDI(requestParameters: DeleteNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1Status>;
5232
- /**
5233
- * Delete a CDIConfig object.
5234
- */
5235
- deleteNamespacedCDIConfigRaw(requestParameters: DeleteNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5236
- /**
5237
- * Delete a CDIConfig object.
5238
- */
5239
- deleteNamespacedCDIConfig(requestParameters: DeleteNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1Status>;
5240
- /**
5241
- * Delete a DataImportCron object.
5242
- */
5243
- deleteNamespacedDataImportCronRaw(requestParameters: DeleteNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5244
- /**
5245
- * Delete a DataImportCron object.
5246
- */
5247
- deleteNamespacedDataImportCron(requestParameters: DeleteNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1Status>;
5248
- /**
5249
- * Delete a DataSource object.
5250
- */
5251
- deleteNamespacedDataSourceRaw(requestParameters: DeleteNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5252
- /**
5253
- * Delete a DataSource object.
5254
- */
5255
- deleteNamespacedDataSource(requestParameters: DeleteNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1Status>;
5256
- /**
5257
- * Delete a DataVolume object.
5258
- */
5259
- deleteNamespacedDataVolumeRaw(requestParameters: DeleteNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1Status>>;
5260
- /**
5261
- * Delete a DataVolume object.
5262
- */
5263
- deleteNamespacedDataVolume(requestParameters: DeleteNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1Status>;
5264
- /**
5265
- */
5266
- func5Raw(initOverrides?: RequestInit): Promise<ApiResponse<void>>;
5267
- /**
5268
- */
5269
- func5(initOverrides?: RequestInit): Promise<void>;
5270
- /**
5271
- * Get a KubeVirt CDI API group
5272
- */
5273
- getAPIGroupCdiKubevirtIoRaw(initOverrides?: RequestInit): Promise<ApiResponse<V1APIGroup>>;
5274
- /**
5275
- * Get a KubeVirt CDI API group
5276
- */
5277
- getAPIGroupCdiKubevirtIo(initOverrides?: RequestInit): Promise<V1APIGroup>;
5278
- /**
5279
- * Get KubeVirt API Resources
5280
- */
5281
- getAPIResourcesCdiKubevirtIoV1beta1Raw(initOverrides?: RequestInit): Promise<ApiResponse<V1APIResourceList>>;
5282
- /**
5283
- * Get KubeVirt API Resources
5284
- */
5285
- getAPIResourcesCdiKubevirtIoV1beta1(initOverrides?: RequestInit): Promise<V1APIResourceList>;
5286
- /**
5287
- * Get a CDI API resources
5288
- */
5289
- getAPIResourcesV1beta1Raw(initOverrides?: RequestInit): Promise<ApiResponse<V1APIResourceList>>;
5290
- /**
5291
- * Get a CDI API resources
5292
- */
5293
- getAPIResourcesV1beta1(initOverrides?: RequestInit): Promise<V1APIResourceList>;
5294
- /**
5295
- * Get a CDI API Group
5296
- */
5297
- getUploadAPIGroupRaw(initOverrides?: RequestInit): Promise<ApiResponse<V1APIGroup>>;
5298
- /**
5299
- * Get a CDI API Group
5300
- */
5301
- getUploadAPIGroup(initOverrides?: RequestInit): Promise<V1APIGroup>;
5302
- /**
5303
- * Get a CDI API GroupList
5304
- */
5305
- getUploadAPIsRaw(initOverrides?: RequestInit): Promise<ApiResponse<V1APIGroupList>>;
5306
- /**
5307
- * Get a CDI API GroupList
5308
- */
5309
- getUploadAPIs(initOverrides?: RequestInit): Promise<V1APIGroupList>;
5310
- /**
5311
- * Get a CDI API root paths
5312
- */
5313
- getUploadRootPathsRaw(initOverrides?: RequestInit): Promise<ApiResponse<V1RootPaths>>;
5314
- /**
5315
- * Get a CDI API root paths
5316
- */
5317
- getUploadRootPaths(initOverrides?: RequestInit): Promise<V1RootPaths>;
5318
- /**
5319
- */
5320
- healthzHandlerRaw(initOverrides?: RequestInit): Promise<ApiResponse<void>>;
5321
- /**
5322
- */
5323
- healthzHandler(initOverrides?: RequestInit): Promise<void>;
5324
- /**
5325
- * Get a list of all CDIConfig objects.
5326
- */
5327
- listCDIConfigForAllNamespacesRaw(requestParameters: ListCDIConfigForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIConfigList>>;
5328
- /**
5329
- * Get a list of all CDIConfig objects.
5330
- */
5331
- listCDIConfigForAllNamespaces(requestParameters: ListCDIConfigForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1beta1CDIConfigList>;
5332
- /**
5333
- * Get a list of all CDI objects.
5334
- */
5335
- listCDIForAllNamespacesRaw(requestParameters: ListCDIForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIList>>;
5336
- /**
5337
- * Get a list of all CDI objects.
5338
- */
5339
- listCDIForAllNamespaces(requestParameters: ListCDIForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1beta1CDIList>;
5340
- /**
5341
- * Get a list of all DataImportCron objects.
5342
- */
5343
- listDataImportCronForAllNamespacesRaw(requestParameters: ListDataImportCronForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataImportCronList>>;
5344
- /**
5345
- * Get a list of all DataImportCron objects.
5346
- */
5347
- listDataImportCronForAllNamespaces(requestParameters: ListDataImportCronForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1beta1DataImportCronList>;
5348
- /**
5349
- * Get a list of all DataSource objects.
5350
- */
5351
- listDataSourceForAllNamespacesRaw(requestParameters: ListDataSourceForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataSourceList>>;
5352
- /**
5353
- * Get a list of all DataSource objects.
5354
- */
5355
- listDataSourceForAllNamespaces(requestParameters: ListDataSourceForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1beta1DataSourceList>;
5356
- /**
5357
- * Get a list of all DataVolume objects.
5358
- */
5359
- listDataVolumeForAllNamespacesRaw(requestParameters: ListDataVolumeForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataVolumeList>>;
5360
- /**
5361
- * Get a list of all DataVolume objects.
5362
- */
5363
- listDataVolumeForAllNamespaces(requestParameters: ListDataVolumeForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1beta1DataVolumeList>;
5364
- /**
5365
- * Get a list of CDI objects.
5366
- */
5367
- listNamespacedCDIRaw(requestParameters: ListNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIList>>;
5368
- /**
5369
- * Get a list of CDI objects.
5370
- */
5371
- listNamespacedCDI(requestParameters: ListNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1beta1CDIList>;
5372
- /**
5373
- * Get a list of CDIConfig objects.
5374
- */
5375
- listNamespacedCDIConfigRaw(requestParameters: ListNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIConfigList>>;
5376
- /**
5377
- * Get a list of CDIConfig objects.
5378
- */
5379
- listNamespacedCDIConfig(requestParameters: ListNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1beta1CDIConfigList>;
5380
- /**
5381
- * Get a list of DataImportCron objects.
5382
- */
5383
- listNamespacedDataImportCronRaw(requestParameters: ListNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataImportCronList>>;
5384
- /**
5385
- * Get a list of DataImportCron objects.
5386
- */
5387
- listNamespacedDataImportCron(requestParameters: ListNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1beta1DataImportCronList>;
5388
- /**
5389
- * Get a list of DataSource objects.
5390
- */
5391
- listNamespacedDataSourceRaw(requestParameters: ListNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataSourceList>>;
5392
- /**
5393
- * Get a list of DataSource objects.
5394
- */
5395
- listNamespacedDataSource(requestParameters: ListNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1beta1DataSourceList>;
5396
- /**
5397
- * Get a list of DataVolume objects.
5398
- */
5399
- listNamespacedDataVolumeRaw(requestParameters: ListNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataVolumeList>>;
5400
- /**
5401
- * Get a list of DataVolume objects.
5402
- */
5403
- listNamespacedDataVolume(requestParameters: ListNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1beta1DataVolumeList>;
5404
- /**
5405
- * Patch a CDI object.
5406
- */
5407
- patchNamespacedCDIRaw(requestParameters: PatchNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDI>>;
5408
- /**
5409
- * Patch a CDI object.
5410
- */
5411
- patchNamespacedCDI(requestParameters: PatchNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1beta1CDI>;
5412
- /**
5413
- * Patch a CDIConfig object.
5414
- */
5415
- patchNamespacedCDIConfigRaw(requestParameters: PatchNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIConfig>>;
5416
- /**
5417
- * Patch a CDIConfig object.
5418
- */
5419
- patchNamespacedCDIConfig(requestParameters: PatchNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1beta1CDIConfig>;
5420
- /**
5421
- * Patch a DataImportCron object.
5422
- */
5423
- patchNamespacedDataImportCronRaw(requestParameters: PatchNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataImportCron>>;
5424
- /**
5425
- * Patch a DataImportCron object.
5426
- */
5427
- patchNamespacedDataImportCron(requestParameters: PatchNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1beta1DataImportCron>;
5428
- /**
5429
- * Patch a DataSource object.
5430
- */
5431
- patchNamespacedDataSourceRaw(requestParameters: PatchNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataSource>>;
5432
- /**
5433
- * Patch a DataSource object.
5434
- */
5435
- patchNamespacedDataSource(requestParameters: PatchNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1beta1DataSource>;
5436
- /**
5437
- * Patch a DataVolume object.
5438
- */
5439
- patchNamespacedDataVolumeRaw(requestParameters: PatchNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataVolume>>;
5440
- /**
5441
- * Patch a DataVolume object.
5442
- */
5443
- patchNamespacedDataVolume(requestParameters: PatchNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1beta1DataVolume>;
5444
- /**
5445
- * Get a CDI object.
5446
- */
5447
- readNamespacedCDIRaw(requestParameters: ReadNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDI>>;
5448
- /**
5449
- * Get a CDI object.
5450
- */
5451
- readNamespacedCDI(requestParameters: ReadNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1beta1CDI>;
5452
- /**
5453
- * Get a CDIConfig object.
5454
- */
5455
- readNamespacedCDIConfigRaw(requestParameters: ReadNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIConfig>>;
5456
- /**
5457
- * Get a CDIConfig object.
5458
- */
5459
- readNamespacedCDIConfig(requestParameters: ReadNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1beta1CDIConfig>;
5460
- /**
5461
- * Get a DataImportCron object.
5462
- */
5463
- readNamespacedDataImportCronRaw(requestParameters: ReadNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataImportCron>>;
5464
- /**
5465
- * Get a DataImportCron object.
5466
- */
5467
- readNamespacedDataImportCron(requestParameters: ReadNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1beta1DataImportCron>;
5468
- /**
5469
- * Get a DataSource object.
5470
- */
5471
- readNamespacedDataSourceRaw(requestParameters: ReadNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataSource>>;
5472
- /**
5473
- * Get a DataSource object.
5474
- */
5475
- readNamespacedDataSource(requestParameters: ReadNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1beta1DataSource>;
5476
- /**
5477
- * Get a DataVolume object.
5478
- */
5479
- readNamespacedDataVolumeRaw(requestParameters: ReadNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataVolume>>;
5480
- /**
5481
- * Get a DataVolume object.
5482
- */
5483
- readNamespacedDataVolume(requestParameters: ReadNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1beta1DataVolume>;
5484
- /**
5485
- * Update a CDI object.
5486
- */
5487
- replaceNamespacedCDIRaw(requestParameters: ReplaceNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDI>>;
5488
- /**
5489
- * Update a CDI object.
5490
- */
5491
- replaceNamespacedCDI(requestParameters: ReplaceNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1beta1CDI>;
5492
- /**
5493
- * Update a CDIConfig object.
5494
- */
5495
- replaceNamespacedCDIConfigRaw(requestParameters: ReplaceNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1CDIConfig>>;
5496
- /**
5497
- * Update a CDIConfig object.
5498
- */
5499
- replaceNamespacedCDIConfig(requestParameters: ReplaceNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1beta1CDIConfig>;
5500
- /**
5501
- * Update a DataImportCron object.
5502
- */
5503
- replaceNamespacedDataImportCronRaw(requestParameters: ReplaceNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataImportCron>>;
5504
- /**
5505
- * Update a DataImportCron object.
5506
- */
5507
- replaceNamespacedDataImportCron(requestParameters: ReplaceNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1beta1DataImportCron>;
5508
- /**
5509
- * Update a DataSource object.
5510
- */
5511
- replaceNamespacedDataSourceRaw(requestParameters: ReplaceNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataSource>>;
5512
- /**
5513
- * Update a DataSource object.
5514
- */
5515
- replaceNamespacedDataSource(requestParameters: ReplaceNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1beta1DataSource>;
5516
- /**
5517
- * Update a DataVolume object.
5518
- */
5519
- replaceNamespacedDataVolumeRaw(requestParameters: ReplaceNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1beta1DataVolume>>;
5520
- /**
5521
- * Update a DataVolume object.
5522
- */
5523
- replaceNamespacedDataVolume(requestParameters: ReplaceNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1beta1DataVolume>;
5524
- /**
5525
- * Watch a CDIConfigList object.
5526
- */
5527
- watchCDIConfigListForAllNamespacesRaw(requestParameters: WatchCDIConfigListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5528
- /**
5529
- * Watch a CDIConfigList object.
5530
- */
5531
- watchCDIConfigListForAllNamespaces(requestParameters: WatchCDIConfigListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5532
- /**
5533
- * Watch a CDIList object.
5534
- */
5535
- watchCDIListForAllNamespacesRaw(requestParameters: WatchCDIListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5536
- /**
5537
- * Watch a CDIList object.
5538
- */
5539
- watchCDIListForAllNamespaces(requestParameters: WatchCDIListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5540
- /**
5541
- * Watch a DataImportCronList object.
5542
- */
5543
- watchDataImportCronListForAllNamespacesRaw(requestParameters: WatchDataImportCronListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5544
- /**
5545
- * Watch a DataImportCronList object.
5546
- */
5547
- watchDataImportCronListForAllNamespaces(requestParameters: WatchDataImportCronListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5548
- /**
5549
- * Watch a DataSourceList object.
5550
- */
5551
- watchDataSourceListForAllNamespacesRaw(requestParameters: WatchDataSourceListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5552
- /**
5553
- * Watch a DataSourceList object.
5554
- */
5555
- watchDataSourceListForAllNamespaces(requestParameters: WatchDataSourceListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5556
- /**
5557
- * Watch a DataVolumeList object.
5558
- */
5559
- watchDataVolumeListForAllNamespacesRaw(requestParameters: WatchDataVolumeListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5560
- /**
5561
- * Watch a DataVolumeList object.
5562
- */
5563
- watchDataVolumeListForAllNamespaces(requestParameters: WatchDataVolumeListForAllNamespacesRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5564
- /**
5565
- * Watch a CDI object.
5566
- */
5567
- watchNamespacedCDIRaw(requestParameters: WatchNamespacedCDIRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5568
- /**
5569
- * Watch a CDI object.
5570
- */
5571
- watchNamespacedCDI(requestParameters: WatchNamespacedCDIRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5572
- /**
5573
- * Watch a CDIConfig object.
5574
- */
5575
- watchNamespacedCDIConfigRaw(requestParameters: WatchNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5576
- /**
5577
- * Watch a CDIConfig object.
5578
- */
5579
- watchNamespacedCDIConfig(requestParameters: WatchNamespacedCDIConfigRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5580
- /**
5581
- * Watch a DataImportCron object.
5582
- */
5583
- watchNamespacedDataImportCronRaw(requestParameters: WatchNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5584
- /**
5585
- * Watch a DataImportCron object.
5586
- */
5587
- watchNamespacedDataImportCron(requestParameters: WatchNamespacedDataImportCronRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5588
- /**
5589
- * Watch a DataSource object.
5590
- */
5591
- watchNamespacedDataSourceRaw(requestParameters: WatchNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5592
- /**
5593
- * Watch a DataSource object.
5594
- */
5595
- watchNamespacedDataSource(requestParameters: WatchNamespacedDataSourceRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5596
- /**
5597
- * Watch a DataVolume object.
5598
- */
5599
- watchNamespacedDataVolumeRaw(requestParameters: WatchNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<ApiResponse<V1WatchEvent>>;
5600
- /**
5601
- * Watch a DataVolume object.
5602
- */
5603
- watchNamespacedDataVolume(requestParameters: WatchNamespacedDataVolumeRequest, initOverrides?: RequestInit): Promise<V1WatchEvent>;
5604
- }
5605
4309
 
5606
- export { type ApiNodePlacement, ApiNodePlacementFromJSON, ApiNodePlacementFromJSONTyped, ApiNodePlacementToJSON, type ApiResponse, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, type ConfigurationParameters, type Consume, type CreateNamespacedCDIConfigRequest, type CreateNamespacedCDIRequest, type CreateNamespacedDataImportCronRequest, type CreateNamespacedDataSourceRequest, type CreateNamespacedDataVolumeRequest, type CreateNamespacedUploadTokenRequestV1beta1Request, DefaultApi, type DeleteCollectionNamespacedCDIConfigRequest, type DeleteCollectionNamespacedCDIRequest, type DeleteCollectionNamespacedDataImportCronRequest, type DeleteCollectionNamespacedDataSourceRequest, type DeleteCollectionNamespacedDataVolumeRequest, type DeleteNamespacedCDIConfigRequest, type DeleteNamespacedCDIRequest, type DeleteNamespacedDataImportCronRequest, type DeleteNamespacedDataSourceRequest, type DeleteNamespacedDataVolumeRequest, type FetchAPI, type FetchParams, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, JSONApiResponse, type Json, type ListCDIConfigForAllNamespacesRequest, type ListCDIForAllNamespacesRequest, type ListDataImportCronForAllNamespacesRequest, type ListDataSourceForAllNamespacesRequest, type ListDataVolumeForAllNamespacesRequest, type ListNamespacedCDIConfigRequest, type ListNamespacedCDIRequest, type ListNamespacedDataImportCronRequest, type ListNamespacedDataSourceRequest, type ListNamespacedDataVolumeRequest, type Middleware, type ModelPropertyNaming, type PatchNamespacedCDIConfigRequest, type PatchNamespacedCDIRequest, type PatchNamespacedDataImportCronRequest, type PatchNamespacedDataSourceRequest, type PatchNamespacedDataVolumeRequest, type ReadNamespacedCDIConfigRequest, type ReadNamespacedCDIRequest, type ReadNamespacedDataImportCronRequest, type ReadNamespacedDataSourceRequest, type ReadNamespacedDataVolumeRequest, type ReplaceNamespacedCDIConfigRequest, type ReplaceNamespacedCDIRequest, type ReplaceNamespacedDataImportCronRequest, type ReplaceNamespacedDataSourceRequest, type ReplaceNamespacedDataVolumeRequest, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, type ResponseTransformer, TextApiResponse, type V1APIGroup, V1APIGroupFromJSON, V1APIGroupFromJSONTyped, type V1APIGroupList, V1APIGroupListFromJSON, V1APIGroupListFromJSONTyped, V1APIGroupListToJSON, V1APIGroupToJSON, type V1APIResource, V1APIResourceFromJSON, V1APIResourceFromJSONTyped, type V1APIResourceList, V1APIResourceListFromJSON, V1APIResourceListFromJSONTyped, V1APIResourceListToJSON, V1APIResourceToJSON, type V1Affinity, V1AffinityFromJSON, V1AffinityFromJSONTyped, V1AffinityToJSON, type V1Condition, V1ConditionFromJSON, V1ConditionFromJSONTyped, V1ConditionToJSON, type V1DeleteOptions, V1DeleteOptionsFromJSON, V1DeleteOptionsFromJSONTyped, V1DeleteOptionsToJSON, type V1GroupVersionForDiscovery, V1GroupVersionForDiscoveryFromJSON, V1GroupVersionForDiscoveryFromJSONTyped, V1GroupVersionForDiscoveryToJSON, type V1LabelSelector, V1LabelSelectorFromJSON, V1LabelSelectorFromJSONTyped, type V1LabelSelectorRequirement, V1LabelSelectorRequirementFromJSON, V1LabelSelectorRequirementFromJSONTyped, V1LabelSelectorRequirementToJSON, V1LabelSelectorToJSON, type V1ListMeta, V1ListMetaFromJSON, V1ListMetaFromJSONTyped, V1ListMetaToJSON, type V1LocalObjectReference, V1LocalObjectReferenceFromJSON, V1LocalObjectReferenceFromJSONTyped, V1LocalObjectReferenceToJSON, type V1ManagedFieldsEntry, V1ManagedFieldsEntryFromJSON, V1ManagedFieldsEntryFromJSONTyped, V1ManagedFieldsEntryToJSON, type V1NodeAffinity, V1NodeAffinityFromJSON, V1NodeAffinityFromJSONTyped, V1NodeAffinityToJSON, type V1NodeSelector, V1NodeSelectorFromJSON, V1NodeSelectorFromJSONTyped, type V1NodeSelectorRequirement, V1NodeSelectorRequirementFromJSON, V1NodeSelectorRequirementFromJSONTyped, V1NodeSelectorRequirementOperatorEnum, V1NodeSelectorRequirementToJSON, type V1NodeSelectorTerm, V1NodeSelectorTermFromJSON, V1NodeSelectorTermFromJSONTyped, V1NodeSelectorTermToJSON, V1NodeSelectorToJSON, type V1ObjectMeta, V1ObjectMetaFromJSON, V1ObjectMetaFromJSONTyped, V1ObjectMetaToJSON, type V1OwnerReference, V1OwnerReferenceFromJSON, V1OwnerReferenceFromJSONTyped, V1OwnerReferenceToJSON, type V1PersistentVolumeClaimSpec, V1PersistentVolumeClaimSpecAccessModesEnum, V1PersistentVolumeClaimSpecFromJSON, V1PersistentVolumeClaimSpecFromJSONTyped, V1PersistentVolumeClaimSpecToJSON, V1PersistentVolumeClaimSpecVolumeModeEnum, type V1PodAffinity, V1PodAffinityFromJSON, V1PodAffinityFromJSONTyped, type V1PodAffinityTerm, V1PodAffinityTermFromJSON, V1PodAffinityTermFromJSONTyped, V1PodAffinityTermToJSON, V1PodAffinityToJSON, type V1PodAntiAffinity, V1PodAntiAffinityFromJSON, V1PodAntiAffinityFromJSONTyped, V1PodAntiAffinityToJSON, type V1Preconditions, V1PreconditionsFromJSON, V1PreconditionsFromJSONTyped, V1PreconditionsToJSON, type V1PreferredSchedulingTerm, V1PreferredSchedulingTermFromJSON, V1PreferredSchedulingTermFromJSONTyped, V1PreferredSchedulingTermToJSON, type V1ResourceClaim, V1ResourceClaimFromJSON, V1ResourceClaimFromJSONTyped, V1ResourceClaimToJSON, type V1ResourceRequirements, V1ResourceRequirementsFromJSON, V1ResourceRequirementsFromJSONTyped, V1ResourceRequirementsToJSON, type V1RootPaths, V1RootPathsFromJSON, V1RootPathsFromJSONTyped, V1RootPathsToJSON, type V1ServerAddressByClientCIDR, V1ServerAddressByClientCIDRFromJSON, V1ServerAddressByClientCIDRFromJSONTyped, V1ServerAddressByClientCIDRToJSON, type V1Status, type V1StatusCause, V1StatusCauseFromJSON, V1StatusCauseFromJSONTyped, V1StatusCauseToJSON, type V1StatusDetails, V1StatusDetailsFromJSON, V1StatusDetailsFromJSONTyped, V1StatusDetailsToJSON, V1StatusFromJSON, V1StatusFromJSONTyped, V1StatusToJSON, type V1Toleration, V1TolerationEffectEnum, V1TolerationFromJSON, V1TolerationFromJSONTyped, V1TolerationOperatorEnum, V1TolerationToJSON, type V1TypedLocalObjectReference, V1TypedLocalObjectReferenceFromJSON, V1TypedLocalObjectReferenceFromJSONTyped, V1TypedLocalObjectReferenceToJSON, type V1TypedObjectReference, V1TypedObjectReferenceFromJSON, V1TypedObjectReferenceFromJSONTyped, V1TypedObjectReferenceToJSON, type V1VolumeResourceRequirements, V1VolumeResourceRequirementsFromJSON, V1VolumeResourceRequirementsFromJSONTyped, V1VolumeResourceRequirementsToJSON, type V1WatchEvent, V1WatchEventFromJSON, V1WatchEventFromJSONTyped, V1WatchEventToJSON, type V1WeightedPodAffinityTerm, V1WeightedPodAffinityTermFromJSON, V1WeightedPodAffinityTermFromJSONTyped, V1WeightedPodAffinityTermToJSON, type V1beta1CDI, type V1beta1CDICertConfig, V1beta1CDICertConfigFromJSON, V1beta1CDICertConfigFromJSONTyped, V1beta1CDICertConfigToJSON, type V1beta1CDIConfig, V1beta1CDIConfigFromJSON, V1beta1CDIConfigFromJSONTyped, type V1beta1CDIConfigList, V1beta1CDIConfigListFromJSON, V1beta1CDIConfigListFromJSONTyped, V1beta1CDIConfigListToJSON, type V1beta1CDIConfigSpec, V1beta1CDIConfigSpecFromJSON, V1beta1CDIConfigSpecFromJSONTyped, V1beta1CDIConfigSpecToJSON, type V1beta1CDIConfigStatus, V1beta1CDIConfigStatusFromJSON, V1beta1CDIConfigStatusFromJSONTyped, V1beta1CDIConfigStatusToJSON, V1beta1CDIConfigToJSON, V1beta1CDIFromJSON, V1beta1CDIFromJSONTyped, type V1beta1CDIList, V1beta1CDIListFromJSON, V1beta1CDIListFromJSONTyped, V1beta1CDIListToJSON, type V1beta1CDISpec, V1beta1CDISpecFromJSON, V1beta1CDISpecFromJSONTyped, V1beta1CDISpecImagePullPolicyEnum, V1beta1CDISpecToJSON, type V1beta1CDIStatus, V1beta1CDIStatusFromJSON, V1beta1CDIStatusFromJSONTyped, V1beta1CDIStatusToJSON, V1beta1CDIToJSON, type V1beta1CertConfig, V1beta1CertConfigFromJSON, V1beta1CertConfigFromJSONTyped, V1beta1CertConfigToJSON, type V1beta1ComponentConfig, V1beta1ComponentConfigFromJSON, V1beta1ComponentConfigFromJSONTyped, V1beta1ComponentConfigToJSON, type V1beta1CustomTLSProfile, V1beta1CustomTLSProfileFromJSON, V1beta1CustomTLSProfileFromJSONTyped, V1beta1CustomTLSProfileToJSON, type V1beta1CustomizeComponents, V1beta1CustomizeComponentsFromJSON, V1beta1CustomizeComponentsFromJSONTyped, type V1beta1CustomizeComponentsPatch, V1beta1CustomizeComponentsPatchFromJSON, V1beta1CustomizeComponentsPatchFromJSONTyped, V1beta1CustomizeComponentsPatchToJSON, V1beta1CustomizeComponentsToJSON, type V1beta1DataImportCron, type V1beta1DataImportCronCondition, V1beta1DataImportCronConditionFromJSON, V1beta1DataImportCronConditionFromJSONTyped, V1beta1DataImportCronConditionToJSON, V1beta1DataImportCronFromJSON, V1beta1DataImportCronFromJSONTyped, type V1beta1DataImportCronList, V1beta1DataImportCronListFromJSON, V1beta1DataImportCronListFromJSONTyped, V1beta1DataImportCronListToJSON, type V1beta1DataImportCronSpec, V1beta1DataImportCronSpecFromJSON, V1beta1DataImportCronSpecFromJSONTyped, V1beta1DataImportCronSpecToJSON, type V1beta1DataImportCronStatus, V1beta1DataImportCronStatusFromJSON, V1beta1DataImportCronStatusFromJSONTyped, V1beta1DataImportCronStatusToJSON, V1beta1DataImportCronToJSON, type V1beta1DataSource, type V1beta1DataSourceCondition, V1beta1DataSourceConditionFromJSON, V1beta1DataSourceConditionFromJSONTyped, V1beta1DataSourceConditionToJSON, V1beta1DataSourceFromJSON, V1beta1DataSourceFromJSONTyped, type V1beta1DataSourceList, V1beta1DataSourceListFromJSON, V1beta1DataSourceListFromJSONTyped, V1beta1DataSourceListToJSON, type V1beta1DataSourceRefSourceDataSource, V1beta1DataSourceRefSourceDataSourceFromJSON, V1beta1DataSourceRefSourceDataSourceFromJSONTyped, V1beta1DataSourceRefSourceDataSourceToJSON, type V1beta1DataSourceSource, V1beta1DataSourceSourceFromJSON, V1beta1DataSourceSourceFromJSONTyped, V1beta1DataSourceSourceToJSON, type V1beta1DataSourceSpec, V1beta1DataSourceSpecFromJSON, V1beta1DataSourceSpecFromJSONTyped, V1beta1DataSourceSpecToJSON, type V1beta1DataSourceStatus, V1beta1DataSourceStatusFromJSON, V1beta1DataSourceStatusFromJSONTyped, V1beta1DataSourceStatusToJSON, V1beta1DataSourceToJSON, type V1beta1DataVolume, type V1beta1DataVolumeCheckpoint, V1beta1DataVolumeCheckpointFromJSON, V1beta1DataVolumeCheckpointFromJSONTyped, V1beta1DataVolumeCheckpointToJSON, type V1beta1DataVolumeCondition, V1beta1DataVolumeConditionFromJSON, V1beta1DataVolumeConditionFromJSONTyped, V1beta1DataVolumeConditionToJSON, V1beta1DataVolumeFromJSON, V1beta1DataVolumeFromJSONTyped, type V1beta1DataVolumeList, V1beta1DataVolumeListFromJSON, V1beta1DataVolumeListFromJSONTyped, V1beta1DataVolumeListToJSON, type V1beta1DataVolumeSource, V1beta1DataVolumeSourceFromJSON, V1beta1DataVolumeSourceFromJSONTyped, type V1beta1DataVolumeSourceGCS, V1beta1DataVolumeSourceGCSFromJSON, V1beta1DataVolumeSourceGCSFromJSONTyped, V1beta1DataVolumeSourceGCSToJSON, type V1beta1DataVolumeSourceHTTP, V1beta1DataVolumeSourceHTTPFromJSON, V1beta1DataVolumeSourceHTTPFromJSONTyped, V1beta1DataVolumeSourceHTTPToJSON, type V1beta1DataVolumeSourceImageIO, V1beta1DataVolumeSourceImageIOFromJSON, V1beta1DataVolumeSourceImageIOFromJSONTyped, V1beta1DataVolumeSourceImageIOToJSON, type V1beta1DataVolumeSourcePVC, V1beta1DataVolumeSourcePVCFromJSON, V1beta1DataVolumeSourcePVCFromJSONTyped, V1beta1DataVolumeSourcePVCToJSON, type V1beta1DataVolumeSourceRef, V1beta1DataVolumeSourceRefFromJSON, V1beta1DataVolumeSourceRefFromJSONTyped, V1beta1DataVolumeSourceRefToJSON, type V1beta1DataVolumeSourceRegistry, V1beta1DataVolumeSourceRegistryFromJSON, V1beta1DataVolumeSourceRegistryFromJSONTyped, V1beta1DataVolumeSourceRegistryToJSON, type V1beta1DataVolumeSourceS3, V1beta1DataVolumeSourceS3FromJSON, V1beta1DataVolumeSourceS3FromJSONTyped, V1beta1DataVolumeSourceS3ToJSON, type V1beta1DataVolumeSourceSnapshot, V1beta1DataVolumeSourceSnapshotFromJSON, V1beta1DataVolumeSourceSnapshotFromJSONTyped, V1beta1DataVolumeSourceSnapshotToJSON, V1beta1DataVolumeSourceToJSON, type V1beta1DataVolumeSourceVDDK, V1beta1DataVolumeSourceVDDKFromJSON, V1beta1DataVolumeSourceVDDKFromJSONTyped, V1beta1DataVolumeSourceVDDKToJSON, type V1beta1DataVolumeSpec, V1beta1DataVolumeSpecFromJSON, V1beta1DataVolumeSpecFromJSONTyped, V1beta1DataVolumeSpecToJSON, type V1beta1DataVolumeStatus, V1beta1DataVolumeStatusFromJSON, V1beta1DataVolumeStatusFromJSONTyped, V1beta1DataVolumeStatusToJSON, V1beta1DataVolumeToJSON, type V1beta1FilesystemOverhead, V1beta1FilesystemOverheadFromJSON, V1beta1FilesystemOverheadFromJSONTyped, V1beta1FilesystemOverheadToJSON, type V1beta1Flags, V1beta1FlagsFromJSON, V1beta1FlagsFromJSONTyped, V1beta1FlagsToJSON, type V1beta1ImportProxy, V1beta1ImportProxyFromJSON, V1beta1ImportProxyFromJSONTyped, V1beta1ImportProxyToJSON, type V1beta1ImportStatus, V1beta1ImportStatusFromJSON, V1beta1ImportStatusFromJSONTyped, V1beta1ImportStatusToJSON, type V1beta1PlatformOptions, V1beta1PlatformOptionsFromJSON, V1beta1PlatformOptionsFromJSONTyped, V1beta1PlatformOptionsToJSON, type V1beta1StorageSpec, V1beta1StorageSpecAccessModesEnum, V1beta1StorageSpecFromJSON, V1beta1StorageSpecFromJSONTyped, V1beta1StorageSpecToJSON, V1beta1StorageSpecVolumeModeEnum, type V1beta1TLSSecurityProfile, V1beta1TLSSecurityProfileFromJSON, V1beta1TLSSecurityProfileFromJSONTyped, V1beta1TLSSecurityProfileToJSON, type V1beta1UploadTokenRequest, V1beta1UploadTokenRequestFromJSON, V1beta1UploadTokenRequestFromJSONTyped, type V1beta1UploadTokenRequestSpec, V1beta1UploadTokenRequestSpecFromJSON, V1beta1UploadTokenRequestSpecFromJSONTyped, V1beta1UploadTokenRequestSpecToJSON, type V1beta1UploadTokenRequestStatus, V1beta1UploadTokenRequestStatusFromJSON, V1beta1UploadTokenRequestStatusFromJSONTyped, V1beta1UploadTokenRequestStatusToJSON, V1beta1UploadTokenRequestToJSON, VoidApiResponse, type WatchCDIConfigListForAllNamespacesRequest, type WatchCDIListForAllNamespacesRequest, type WatchDataImportCronListForAllNamespacesRequest, type WatchDataSourceListForAllNamespacesRequest, type WatchDataVolumeListForAllNamespacesRequest, type WatchNamespacedCDIConfigRequest, type WatchNamespacedCDIRequest, type WatchNamespacedDataImportCronRequest, type WatchNamespacedDataSourceRequest, type WatchNamespacedDataVolumeRequest, canConsumeForm, exists, mapValues, querystring };
4310
+ export { type ApiNodePlacement, type V1APIGroup, type V1APIGroupList, type V1APIResource, type V1APIResourceList, type V1Affinity, type V1Condition, type V1DeleteOptions, type V1GroupVersionForDiscovery, type V1LabelSelector, type V1LabelSelectorRequirement, type V1ListMeta, type V1LocalObjectReference, type V1ManagedFieldsEntry, type V1NodeAffinity, type V1NodeSelector, type V1NodeSelectorRequirement, V1NodeSelectorRequirementOperatorEnum, type V1NodeSelectorTerm, type V1ObjectMeta, type V1OwnerReference, type V1PersistentVolumeClaimSpec, V1PersistentVolumeClaimSpecAccessModesEnum, V1PersistentVolumeClaimSpecVolumeModeEnum, type V1PodAffinity, type V1PodAffinityTerm, type V1PodAntiAffinity, type V1Preconditions, type V1PreferredSchedulingTerm, type V1ResourceClaim, type V1ResourceRequirements, type V1RootPaths, type V1ServerAddressByClientCIDR, type V1Status, type V1StatusCause, type V1StatusDetails, type V1Toleration, V1TolerationEffectEnum, V1TolerationOperatorEnum, type V1TypedLocalObjectReference, type V1TypedObjectReference, type V1VolumeResourceRequirements, type V1WatchEvent, type V1WeightedPodAffinityTerm, type V1beta1CDI, type V1beta1CDICertConfig, type V1beta1CDIConfig, type V1beta1CDIConfigList, type V1beta1CDIConfigSpec, type V1beta1CDIConfigStatus, type V1beta1CDIList, type V1beta1CDISpec, V1beta1CDISpecImagePullPolicyEnum, type V1beta1CDIStatus, type V1beta1CertConfig, type V1beta1ComponentConfig, type V1beta1CustomTLSProfile, type V1beta1CustomizeComponents, type V1beta1CustomizeComponentsPatch, type V1beta1DataImportCron, type V1beta1DataImportCronCondition, type V1beta1DataImportCronList, type V1beta1DataImportCronSpec, type V1beta1DataImportCronStatus, type V1beta1DataSource, type V1beta1DataSourceCondition, type V1beta1DataSourceList, type V1beta1DataSourceRefSourceDataSource, type V1beta1DataSourceSource, type V1beta1DataSourceSpec, type V1beta1DataSourceStatus, type V1beta1DataVolume, type V1beta1DataVolumeCheckpoint, type V1beta1DataVolumeCondition, type V1beta1DataVolumeList, type V1beta1DataVolumeSource, type V1beta1DataVolumeSourceGCS, type V1beta1DataVolumeSourceHTTP, type V1beta1DataVolumeSourceImageIO, type V1beta1DataVolumeSourcePVC, type V1beta1DataVolumeSourceRef, type V1beta1DataVolumeSourceRegistry, type V1beta1DataVolumeSourceS3, type V1beta1DataVolumeSourceSnapshot, type V1beta1DataVolumeSourceVDDK, type V1beta1DataVolumeSpec, type V1beta1DataVolumeStatus, type V1beta1FilesystemOverhead, type V1beta1Flags, type V1beta1ImportProxy, type V1beta1ImportStatus, type V1beta1PlatformOptions, type V1beta1StorageSpec, V1beta1StorageSpecAccessModesEnum, V1beta1StorageSpecVolumeModeEnum, type V1beta1TLSSecurityProfile, type V1beta1UploadTokenRequest, type V1beta1UploadTokenRequestSpec, type V1beta1UploadTokenRequestStatus };