@halo-dev/api-client 0.0.4 → 0.0.5
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.
- package/dist/index.cjs +707 -103
- package/dist/index.d.ts +804 -166
- package/dist/index.mjs +692 -100
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,68 @@ declare class BaseAPI {
|
|
|
118
118
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @export
|
|
124
|
+
* @interface Apple
|
|
125
|
+
*/
|
|
126
|
+
interface Apple {
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {AppleSpec}
|
|
130
|
+
* @memberof Apple
|
|
131
|
+
*/
|
|
132
|
+
spec?: AppleSpec;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @memberof Apple
|
|
137
|
+
*/
|
|
138
|
+
apiVersion: string;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof Apple
|
|
143
|
+
*/
|
|
144
|
+
kind: string;
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @type {Metadata}
|
|
148
|
+
* @memberof Apple
|
|
149
|
+
*/
|
|
150
|
+
metadata: Metadata;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @export
|
|
155
|
+
* @interface AppleSpec
|
|
156
|
+
*/
|
|
157
|
+
interface AppleSpec {
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof AppleSpec
|
|
162
|
+
*/
|
|
163
|
+
varieties: string;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {string}
|
|
167
|
+
* @memberof AppleSpec
|
|
168
|
+
*/
|
|
169
|
+
color?: string;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof AppleSpec
|
|
174
|
+
*/
|
|
175
|
+
size?: string;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {string}
|
|
179
|
+
* @memberof AppleSpec
|
|
180
|
+
*/
|
|
181
|
+
producingArea?: string;
|
|
182
|
+
}
|
|
121
183
|
/**
|
|
122
184
|
*
|
|
123
185
|
* @export
|
|
@@ -276,18 +338,123 @@ interface License {
|
|
|
276
338
|
* @interface Link
|
|
277
339
|
*/
|
|
278
340
|
interface Link {
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {LinkSpec}
|
|
344
|
+
* @memberof Link
|
|
345
|
+
*/
|
|
346
|
+
spec?: LinkSpec;
|
|
279
347
|
/**
|
|
280
348
|
*
|
|
281
349
|
* @type {string}
|
|
282
350
|
* @memberof Link
|
|
283
351
|
*/
|
|
284
|
-
|
|
352
|
+
apiVersion: string;
|
|
285
353
|
/**
|
|
286
354
|
*
|
|
287
|
-
* @type {
|
|
355
|
+
* @type {string}
|
|
356
|
+
* @memberof Link
|
|
357
|
+
*/
|
|
358
|
+
kind: string;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {Metadata}
|
|
288
362
|
* @memberof Link
|
|
289
363
|
*/
|
|
290
|
-
|
|
364
|
+
metadata: Metadata;
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
*
|
|
368
|
+
* @export
|
|
369
|
+
* @interface LinkGroup
|
|
370
|
+
*/
|
|
371
|
+
interface LinkGroup {
|
|
372
|
+
/**
|
|
373
|
+
*
|
|
374
|
+
* @type {LinkGroupSpec}
|
|
375
|
+
* @memberof LinkGroup
|
|
376
|
+
*/
|
|
377
|
+
spec?: LinkGroupSpec;
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* @type {string}
|
|
381
|
+
* @memberof LinkGroup
|
|
382
|
+
*/
|
|
383
|
+
apiVersion: string;
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @type {string}
|
|
387
|
+
* @memberof LinkGroup
|
|
388
|
+
*/
|
|
389
|
+
kind: string;
|
|
390
|
+
/**
|
|
391
|
+
*
|
|
392
|
+
* @type {Metadata}
|
|
393
|
+
* @memberof LinkGroup
|
|
394
|
+
*/
|
|
395
|
+
metadata: Metadata;
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
* @export
|
|
400
|
+
* @interface LinkGroupSpec
|
|
401
|
+
*/
|
|
402
|
+
interface LinkGroupSpec {
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @type {string}
|
|
406
|
+
* @memberof LinkGroupSpec
|
|
407
|
+
*/
|
|
408
|
+
displayName: string;
|
|
409
|
+
/**
|
|
410
|
+
*
|
|
411
|
+
* @type {number}
|
|
412
|
+
* @memberof LinkGroupSpec
|
|
413
|
+
*/
|
|
414
|
+
priority?: number;
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
*
|
|
418
|
+
* @export
|
|
419
|
+
* @interface LinkSpec
|
|
420
|
+
*/
|
|
421
|
+
interface LinkSpec {
|
|
422
|
+
/**
|
|
423
|
+
*
|
|
424
|
+
* @type {string}
|
|
425
|
+
* @memberof LinkSpec
|
|
426
|
+
*/
|
|
427
|
+
url: string;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @type {string}
|
|
431
|
+
* @memberof LinkSpec
|
|
432
|
+
*/
|
|
433
|
+
displayName: string;
|
|
434
|
+
/**
|
|
435
|
+
*
|
|
436
|
+
* @type {string}
|
|
437
|
+
* @memberof LinkSpec
|
|
438
|
+
*/
|
|
439
|
+
logo?: string;
|
|
440
|
+
/**
|
|
441
|
+
*
|
|
442
|
+
* @type {string}
|
|
443
|
+
* @memberof LinkSpec
|
|
444
|
+
*/
|
|
445
|
+
description?: string;
|
|
446
|
+
/**
|
|
447
|
+
*
|
|
448
|
+
* @type {string}
|
|
449
|
+
* @memberof LinkSpec
|
|
450
|
+
*/
|
|
451
|
+
groupName?: string;
|
|
452
|
+
/**
|
|
453
|
+
*
|
|
454
|
+
* @type {number}
|
|
455
|
+
* @memberof LinkSpec
|
|
456
|
+
*/
|
|
457
|
+
priority?: number;
|
|
291
458
|
}
|
|
292
459
|
/**
|
|
293
460
|
*
|
|
@@ -1418,135 +1585,6 @@ interface UserStatus {
|
|
|
1418
1585
|
*/
|
|
1419
1586
|
loginHistories?: Array<LoginHistory>;
|
|
1420
1587
|
}
|
|
1421
|
-
/**
|
|
1422
|
-
* ActuatorApi - axios parameter creator
|
|
1423
|
-
* @export
|
|
1424
|
-
*/
|
|
1425
|
-
declare const ActuatorApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1426
|
-
/**
|
|
1427
|
-
*
|
|
1428
|
-
* @summary Actuator web endpoint \'health\'
|
|
1429
|
-
* @param {*} [options] Override http request option.
|
|
1430
|
-
* @throws {RequiredError}
|
|
1431
|
-
*/
|
|
1432
|
-
health: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1433
|
-
/**
|
|
1434
|
-
*
|
|
1435
|
-
* @summary Actuator web endpoint \'health-path\'
|
|
1436
|
-
* @param {string} path
|
|
1437
|
-
* @param {*} [options] Override http request option.
|
|
1438
|
-
* @throws {RequiredError}
|
|
1439
|
-
*/
|
|
1440
|
-
healthPath: (path: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @summary Actuator root web endpoint
|
|
1444
|
-
* @param {*} [options] Override http request option.
|
|
1445
|
-
* @throws {RequiredError}
|
|
1446
|
-
*/
|
|
1447
|
-
links: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1448
|
-
};
|
|
1449
|
-
/**
|
|
1450
|
-
* ActuatorApi - functional programming interface
|
|
1451
|
-
* @export
|
|
1452
|
-
*/
|
|
1453
|
-
declare const ActuatorApiFp: (configuration?: Configuration) => {
|
|
1454
|
-
/**
|
|
1455
|
-
*
|
|
1456
|
-
* @summary Actuator web endpoint \'health\'
|
|
1457
|
-
* @param {*} [options] Override http request option.
|
|
1458
|
-
* @throws {RequiredError}
|
|
1459
|
-
*/
|
|
1460
|
-
health(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1461
|
-
/**
|
|
1462
|
-
*
|
|
1463
|
-
* @summary Actuator web endpoint \'health-path\'
|
|
1464
|
-
* @param {string} path
|
|
1465
|
-
* @param {*} [options] Override http request option.
|
|
1466
|
-
* @throws {RequiredError}
|
|
1467
|
-
*/
|
|
1468
|
-
healthPath(path: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1469
|
-
/**
|
|
1470
|
-
*
|
|
1471
|
-
* @summary Actuator root web endpoint
|
|
1472
|
-
* @param {*} [options] Override http request option.
|
|
1473
|
-
* @throws {RequiredError}
|
|
1474
|
-
*/
|
|
1475
|
-
links(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
1476
|
-
[key: string]: {
|
|
1477
|
-
[key: string]: Link;
|
|
1478
|
-
};
|
|
1479
|
-
}>>;
|
|
1480
|
-
};
|
|
1481
|
-
/**
|
|
1482
|
-
* ActuatorApi - factory interface
|
|
1483
|
-
* @export
|
|
1484
|
-
*/
|
|
1485
|
-
declare const ActuatorApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1486
|
-
/**
|
|
1487
|
-
*
|
|
1488
|
-
* @summary Actuator web endpoint \'health\'
|
|
1489
|
-
* @param {*} [options] Override http request option.
|
|
1490
|
-
* @throws {RequiredError}
|
|
1491
|
-
*/
|
|
1492
|
-
health(options?: any): AxiosPromise<object>;
|
|
1493
|
-
/**
|
|
1494
|
-
*
|
|
1495
|
-
* @summary Actuator web endpoint \'health-path\'
|
|
1496
|
-
* @param {string} path
|
|
1497
|
-
* @param {*} [options] Override http request option.
|
|
1498
|
-
* @throws {RequiredError}
|
|
1499
|
-
*/
|
|
1500
|
-
healthPath(path: string, options?: any): AxiosPromise<object>;
|
|
1501
|
-
/**
|
|
1502
|
-
*
|
|
1503
|
-
* @summary Actuator root web endpoint
|
|
1504
|
-
* @param {*} [options] Override http request option.
|
|
1505
|
-
* @throws {RequiredError}
|
|
1506
|
-
*/
|
|
1507
|
-
links(options?: any): AxiosPromise<{
|
|
1508
|
-
[key: string]: {
|
|
1509
|
-
[key: string]: Link;
|
|
1510
|
-
};
|
|
1511
|
-
}>;
|
|
1512
|
-
};
|
|
1513
|
-
/**
|
|
1514
|
-
* ActuatorApi - object-oriented interface
|
|
1515
|
-
* @export
|
|
1516
|
-
* @class ActuatorApi
|
|
1517
|
-
* @extends {BaseAPI}
|
|
1518
|
-
*/
|
|
1519
|
-
declare class ActuatorApi extends BaseAPI {
|
|
1520
|
-
/**
|
|
1521
|
-
*
|
|
1522
|
-
* @summary Actuator web endpoint \'health\'
|
|
1523
|
-
* @param {*} [options] Override http request option.
|
|
1524
|
-
* @throws {RequiredError}
|
|
1525
|
-
* @memberof ActuatorApi
|
|
1526
|
-
*/
|
|
1527
|
-
health(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
1528
|
-
/**
|
|
1529
|
-
*
|
|
1530
|
-
* @summary Actuator web endpoint \'health-path\'
|
|
1531
|
-
* @param {string} path
|
|
1532
|
-
* @param {*} [options] Override http request option.
|
|
1533
|
-
* @throws {RequiredError}
|
|
1534
|
-
* @memberof ActuatorApi
|
|
1535
|
-
*/
|
|
1536
|
-
healthPath(path: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
1537
|
-
/**
|
|
1538
|
-
*
|
|
1539
|
-
* @summary Actuator root web endpoint
|
|
1540
|
-
* @param {*} [options] Override http request option.
|
|
1541
|
-
* @throws {RequiredError}
|
|
1542
|
-
* @memberof ActuatorApi
|
|
1543
|
-
*/
|
|
1544
|
-
links(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<{
|
|
1545
|
-
[key: string]: {
|
|
1546
|
-
[key: string]: Link;
|
|
1547
|
-
};
|
|
1548
|
-
}, any>>;
|
|
1549
|
-
}
|
|
1550
1588
|
/**
|
|
1551
1589
|
* ApiHaloRunV1alpha1PluginApi - axios parameter creator
|
|
1552
1590
|
* @export
|
|
@@ -1749,68 +1787,485 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1749
1787
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1750
1788
|
}
|
|
1751
1789
|
/**
|
|
1752
|
-
*
|
|
1790
|
+
* ApplesControllerApi - axios parameter creator
|
|
1753
1791
|
* @export
|
|
1754
1792
|
*/
|
|
1755
|
-
declare const
|
|
1756
|
-
/**
|
|
1757
|
-
* Create plugin.halo.run/v1alpha1/Plugin
|
|
1758
|
-
* @param {Plugin} [plugin] Fresh plugin
|
|
1759
|
-
* @param {*} [options] Override http request option.
|
|
1760
|
-
* @throws {RequiredError}
|
|
1761
|
-
*/
|
|
1762
|
-
createpluginHaloRunV1alpha1Plugin: (plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1793
|
+
declare const ApplesControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1763
1794
|
/**
|
|
1764
|
-
*
|
|
1765
|
-
* @param {string} name Name of plugin
|
|
1795
|
+
*
|
|
1766
1796
|
* @param {*} [options] Override http request option.
|
|
1767
1797
|
* @throws {RequiredError}
|
|
1768
1798
|
*/
|
|
1769
|
-
|
|
1799
|
+
hello: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1800
|
+
};
|
|
1801
|
+
/**
|
|
1802
|
+
* ApplesControllerApi - functional programming interface
|
|
1803
|
+
* @export
|
|
1804
|
+
*/
|
|
1805
|
+
declare const ApplesControllerApiFp: (configuration?: Configuration) => {
|
|
1770
1806
|
/**
|
|
1771
|
-
*
|
|
1772
|
-
* @param {string} name Name of plugin
|
|
1807
|
+
*
|
|
1773
1808
|
* @param {*} [options] Override http request option.
|
|
1774
1809
|
* @throws {RequiredError}
|
|
1775
1810
|
*/
|
|
1776
|
-
|
|
1811
|
+
hello(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1812
|
+
};
|
|
1813
|
+
/**
|
|
1814
|
+
* ApplesControllerApi - factory interface
|
|
1815
|
+
* @export
|
|
1816
|
+
*/
|
|
1817
|
+
declare const ApplesControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1777
1818
|
/**
|
|
1778
|
-
*
|
|
1779
|
-
* @param {number} [page] Page index
|
|
1780
|
-
* @param {number} [size] Size of one page
|
|
1781
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1819
|
+
*
|
|
1782
1820
|
* @param {*} [options] Override http request option.
|
|
1783
1821
|
* @throws {RequiredError}
|
|
1784
1822
|
*/
|
|
1785
|
-
|
|
1823
|
+
hello(options?: any): AxiosPromise<string>;
|
|
1824
|
+
};
|
|
1825
|
+
/**
|
|
1826
|
+
* ApplesControllerApi - object-oriented interface
|
|
1827
|
+
* @export
|
|
1828
|
+
* @class ApplesControllerApi
|
|
1829
|
+
* @extends {BaseAPI}
|
|
1830
|
+
*/
|
|
1831
|
+
declare class ApplesControllerApi extends BaseAPI {
|
|
1786
1832
|
/**
|
|
1787
|
-
*
|
|
1788
|
-
* @param {string} name Name of plugin
|
|
1789
|
-
* @param {Plugin} [plugin] Updated plugin
|
|
1833
|
+
*
|
|
1790
1834
|
* @param {*} [options] Override http request option.
|
|
1791
1835
|
* @throws {RequiredError}
|
|
1836
|
+
* @memberof ApplesControllerApi
|
|
1792
1837
|
*/
|
|
1793
|
-
|
|
1794
|
-
}
|
|
1838
|
+
hello(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1839
|
+
}
|
|
1795
1840
|
/**
|
|
1796
|
-
*
|
|
1841
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
1797
1842
|
* @export
|
|
1798
1843
|
*/
|
|
1799
|
-
declare const
|
|
1844
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1800
1845
|
/**
|
|
1801
|
-
* Create
|
|
1802
|
-
* @param {
|
|
1846
|
+
* Create core.halo.run/v1alpha1/Link
|
|
1847
|
+
* @param {Link} [link] Fresh link
|
|
1803
1848
|
* @param {*} [options] Override http request option.
|
|
1804
1849
|
* @throws {RequiredError}
|
|
1805
1850
|
*/
|
|
1806
|
-
|
|
1851
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1807
1852
|
/**
|
|
1808
|
-
* Delete
|
|
1809
|
-
* @param {string} name Name of
|
|
1853
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
1854
|
+
* @param {string} name Name of link
|
|
1810
1855
|
* @param {*} [options] Override http request option.
|
|
1811
1856
|
* @throws {RequiredError}
|
|
1812
1857
|
*/
|
|
1813
|
-
|
|
1858
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1859
|
+
/**
|
|
1860
|
+
* Get core.halo.run/v1alpha1/Link
|
|
1861
|
+
* @param {string} name Name of link
|
|
1862
|
+
* @param {*} [options] Override http request option.
|
|
1863
|
+
* @throws {RequiredError}
|
|
1864
|
+
*/
|
|
1865
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1866
|
+
/**
|
|
1867
|
+
* List core.halo.run/v1alpha1/Link
|
|
1868
|
+
* @param {number} [page] Page index
|
|
1869
|
+
* @param {number} [size] Size of one page
|
|
1870
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1871
|
+
* @param {*} [options] Override http request option.
|
|
1872
|
+
* @throws {RequiredError}
|
|
1873
|
+
*/
|
|
1874
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1875
|
+
/**
|
|
1876
|
+
* Update core.halo.run/v1alpha1/Link
|
|
1877
|
+
* @param {string} name Name of link
|
|
1878
|
+
* @param {Link} [link] Updated link
|
|
1879
|
+
* @param {*} [options] Override http request option.
|
|
1880
|
+
* @throws {RequiredError}
|
|
1881
|
+
*/
|
|
1882
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1883
|
+
};
|
|
1884
|
+
/**
|
|
1885
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
1886
|
+
* @export
|
|
1887
|
+
*/
|
|
1888
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
1889
|
+
/**
|
|
1890
|
+
* Create core.halo.run/v1alpha1/Link
|
|
1891
|
+
* @param {Link} [link] Fresh link
|
|
1892
|
+
* @param {*} [options] Override http request option.
|
|
1893
|
+
* @throws {RequiredError}
|
|
1894
|
+
*/
|
|
1895
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
1896
|
+
/**
|
|
1897
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
1898
|
+
* @param {string} name Name of link
|
|
1899
|
+
* @param {*} [options] Override http request option.
|
|
1900
|
+
* @throws {RequiredError}
|
|
1901
|
+
*/
|
|
1902
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1903
|
+
/**
|
|
1904
|
+
* Get core.halo.run/v1alpha1/Link
|
|
1905
|
+
* @param {string} name Name of link
|
|
1906
|
+
* @param {*} [options] Override http request option.
|
|
1907
|
+
* @throws {RequiredError}
|
|
1908
|
+
*/
|
|
1909
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
1910
|
+
/**
|
|
1911
|
+
* List core.halo.run/v1alpha1/Link
|
|
1912
|
+
* @param {number} [page] Page index
|
|
1913
|
+
* @param {number} [size] Size of one page
|
|
1914
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1915
|
+
* @param {*} [options] Override http request option.
|
|
1916
|
+
* @throws {RequiredError}
|
|
1917
|
+
*/
|
|
1918
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1919
|
+
/**
|
|
1920
|
+
* Update core.halo.run/v1alpha1/Link
|
|
1921
|
+
* @param {string} name Name of link
|
|
1922
|
+
* @param {Link} [link] Updated link
|
|
1923
|
+
* @param {*} [options] Override http request option.
|
|
1924
|
+
* @throws {RequiredError}
|
|
1925
|
+
*/
|
|
1926
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
1927
|
+
};
|
|
1928
|
+
/**
|
|
1929
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
1930
|
+
* @export
|
|
1931
|
+
*/
|
|
1932
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1933
|
+
/**
|
|
1934
|
+
* Create core.halo.run/v1alpha1/Link
|
|
1935
|
+
* @param {Link} [link] Fresh link
|
|
1936
|
+
* @param {*} [options] Override http request option.
|
|
1937
|
+
* @throws {RequiredError}
|
|
1938
|
+
*/
|
|
1939
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
1940
|
+
/**
|
|
1941
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
1942
|
+
* @param {string} name Name of link
|
|
1943
|
+
* @param {*} [options] Override http request option.
|
|
1944
|
+
* @throws {RequiredError}
|
|
1945
|
+
*/
|
|
1946
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
1947
|
+
/**
|
|
1948
|
+
* Get core.halo.run/v1alpha1/Link
|
|
1949
|
+
* @param {string} name Name of link
|
|
1950
|
+
* @param {*} [options] Override http request option.
|
|
1951
|
+
* @throws {RequiredError}
|
|
1952
|
+
*/
|
|
1953
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
1954
|
+
/**
|
|
1955
|
+
* List core.halo.run/v1alpha1/Link
|
|
1956
|
+
* @param {number} [page] Page index
|
|
1957
|
+
* @param {number} [size] Size of one page
|
|
1958
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1959
|
+
* @param {*} [options] Override http request option.
|
|
1960
|
+
* @throws {RequiredError}
|
|
1961
|
+
*/
|
|
1962
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
1963
|
+
/**
|
|
1964
|
+
* Update core.halo.run/v1alpha1/Link
|
|
1965
|
+
* @param {string} name Name of link
|
|
1966
|
+
* @param {Link} [link] Updated link
|
|
1967
|
+
* @param {*} [options] Override http request option.
|
|
1968
|
+
* @throws {RequiredError}
|
|
1969
|
+
*/
|
|
1970
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
1971
|
+
};
|
|
1972
|
+
/**
|
|
1973
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
1974
|
+
* @export
|
|
1975
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
1976
|
+
* @extends {BaseAPI}
|
|
1977
|
+
*/
|
|
1978
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
1979
|
+
/**
|
|
1980
|
+
* Create core.halo.run/v1alpha1/Link
|
|
1981
|
+
* @param {Link} [link] Fresh link
|
|
1982
|
+
* @param {*} [options] Override http request option.
|
|
1983
|
+
* @throws {RequiredError}
|
|
1984
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
1985
|
+
*/
|
|
1986
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
1987
|
+
/**
|
|
1988
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
1989
|
+
* @param {string} name Name of link
|
|
1990
|
+
* @param {*} [options] Override http request option.
|
|
1991
|
+
* @throws {RequiredError}
|
|
1992
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
1993
|
+
*/
|
|
1994
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1995
|
+
/**
|
|
1996
|
+
* Get core.halo.run/v1alpha1/Link
|
|
1997
|
+
* @param {string} name Name of link
|
|
1998
|
+
* @param {*} [options] Override http request option.
|
|
1999
|
+
* @throws {RequiredError}
|
|
2000
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2001
|
+
*/
|
|
2002
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2003
|
+
/**
|
|
2004
|
+
* List core.halo.run/v1alpha1/Link
|
|
2005
|
+
* @param {number} [page] Page index
|
|
2006
|
+
* @param {number} [size] Size of one page
|
|
2007
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2008
|
+
* @param {*} [options] Override http request option.
|
|
2009
|
+
* @throws {RequiredError}
|
|
2010
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2011
|
+
*/
|
|
2012
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2013
|
+
/**
|
|
2014
|
+
* Update core.halo.run/v1alpha1/Link
|
|
2015
|
+
* @param {string} name Name of link
|
|
2016
|
+
* @param {Link} [link] Updated link
|
|
2017
|
+
* @param {*} [options] Override http request option.
|
|
2018
|
+
* @throws {RequiredError}
|
|
2019
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2020
|
+
*/
|
|
2021
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2022
|
+
}
|
|
2023
|
+
/**
|
|
2024
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
2025
|
+
* @export
|
|
2026
|
+
*/
|
|
2027
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2028
|
+
/**
|
|
2029
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2030
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2031
|
+
* @param {*} [options] Override http request option.
|
|
2032
|
+
* @throws {RequiredError}
|
|
2033
|
+
*/
|
|
2034
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2035
|
+
/**
|
|
2036
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2037
|
+
* @param {string} name Name of linkgroup
|
|
2038
|
+
* @param {*} [options] Override http request option.
|
|
2039
|
+
* @throws {RequiredError}
|
|
2040
|
+
*/
|
|
2041
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2042
|
+
/**
|
|
2043
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2044
|
+
* @param {string} name Name of linkgroup
|
|
2045
|
+
* @param {*} [options] Override http request option.
|
|
2046
|
+
* @throws {RequiredError}
|
|
2047
|
+
*/
|
|
2048
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2049
|
+
/**
|
|
2050
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2051
|
+
* @param {number} [page] Page index
|
|
2052
|
+
* @param {number} [size] Size of one page
|
|
2053
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2054
|
+
* @param {*} [options] Override http request option.
|
|
2055
|
+
* @throws {RequiredError}
|
|
2056
|
+
*/
|
|
2057
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2058
|
+
/**
|
|
2059
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2060
|
+
* @param {string} name Name of linkgroup
|
|
2061
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2062
|
+
* @param {*} [options] Override http request option.
|
|
2063
|
+
* @throws {RequiredError}
|
|
2064
|
+
*/
|
|
2065
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2066
|
+
};
|
|
2067
|
+
/**
|
|
2068
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
2069
|
+
* @export
|
|
2070
|
+
*/
|
|
2071
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
2072
|
+
/**
|
|
2073
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2074
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2075
|
+
* @param {*} [options] Override http request option.
|
|
2076
|
+
* @throws {RequiredError}
|
|
2077
|
+
*/
|
|
2078
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2079
|
+
/**
|
|
2080
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2081
|
+
* @param {string} name Name of linkgroup
|
|
2082
|
+
* @param {*} [options] Override http request option.
|
|
2083
|
+
* @throws {RequiredError}
|
|
2084
|
+
*/
|
|
2085
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2086
|
+
/**
|
|
2087
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2088
|
+
* @param {string} name Name of linkgroup
|
|
2089
|
+
* @param {*} [options] Override http request option.
|
|
2090
|
+
* @throws {RequiredError}
|
|
2091
|
+
*/
|
|
2092
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2093
|
+
/**
|
|
2094
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2095
|
+
* @param {number} [page] Page index
|
|
2096
|
+
* @param {number} [size] Size of one page
|
|
2097
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2098
|
+
* @param {*} [options] Override http request option.
|
|
2099
|
+
* @throws {RequiredError}
|
|
2100
|
+
*/
|
|
2101
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2102
|
+
/**
|
|
2103
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2104
|
+
* @param {string} name Name of linkgroup
|
|
2105
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2106
|
+
* @param {*} [options] Override http request option.
|
|
2107
|
+
* @throws {RequiredError}
|
|
2108
|
+
*/
|
|
2109
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2110
|
+
};
|
|
2111
|
+
/**
|
|
2112
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
2113
|
+
* @export
|
|
2114
|
+
*/
|
|
2115
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2116
|
+
/**
|
|
2117
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2118
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2119
|
+
* @param {*} [options] Override http request option.
|
|
2120
|
+
* @throws {RequiredError}
|
|
2121
|
+
*/
|
|
2122
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
2123
|
+
/**
|
|
2124
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2125
|
+
* @param {string} name Name of linkgroup
|
|
2126
|
+
* @param {*} [options] Override http request option.
|
|
2127
|
+
* @throws {RequiredError}
|
|
2128
|
+
*/
|
|
2129
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
2130
|
+
/**
|
|
2131
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2132
|
+
* @param {string} name Name of linkgroup
|
|
2133
|
+
* @param {*} [options] Override http request option.
|
|
2134
|
+
* @throws {RequiredError}
|
|
2135
|
+
*/
|
|
2136
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
2137
|
+
/**
|
|
2138
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2139
|
+
* @param {number} [page] Page index
|
|
2140
|
+
* @param {number} [size] Size of one page
|
|
2141
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2142
|
+
* @param {*} [options] Override http request option.
|
|
2143
|
+
* @throws {RequiredError}
|
|
2144
|
+
*/
|
|
2145
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
2146
|
+
/**
|
|
2147
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2148
|
+
* @param {string} name Name of linkgroup
|
|
2149
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2150
|
+
* @param {*} [options] Override http request option.
|
|
2151
|
+
* @throws {RequiredError}
|
|
2152
|
+
*/
|
|
2153
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
2154
|
+
};
|
|
2155
|
+
/**
|
|
2156
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
2157
|
+
* @export
|
|
2158
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
2159
|
+
* @extends {BaseAPI}
|
|
2160
|
+
*/
|
|
2161
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
2162
|
+
/**
|
|
2163
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2164
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2165
|
+
* @param {*} [options] Override http request option.
|
|
2166
|
+
* @throws {RequiredError}
|
|
2167
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2168
|
+
*/
|
|
2169
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2170
|
+
/**
|
|
2171
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2172
|
+
* @param {string} name Name of linkgroup
|
|
2173
|
+
* @param {*} [options] Override http request option.
|
|
2174
|
+
* @throws {RequiredError}
|
|
2175
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2176
|
+
*/
|
|
2177
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2178
|
+
/**
|
|
2179
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2180
|
+
* @param {string} name Name of linkgroup
|
|
2181
|
+
* @param {*} [options] Override http request option.
|
|
2182
|
+
* @throws {RequiredError}
|
|
2183
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2184
|
+
*/
|
|
2185
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2186
|
+
/**
|
|
2187
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2188
|
+
* @param {number} [page] Page index
|
|
2189
|
+
* @param {number} [size] Size of one page
|
|
2190
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2191
|
+
* @param {*} [options] Override http request option.
|
|
2192
|
+
* @throws {RequiredError}
|
|
2193
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2194
|
+
*/
|
|
2195
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2196
|
+
/**
|
|
2197
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2198
|
+
* @param {string} name Name of linkgroup
|
|
2199
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2200
|
+
* @param {*} [options] Override http request option.
|
|
2201
|
+
* @throws {RequiredError}
|
|
2202
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2203
|
+
*/
|
|
2204
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2205
|
+
}
|
|
2206
|
+
/**
|
|
2207
|
+
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
2208
|
+
* @export
|
|
2209
|
+
*/
|
|
2210
|
+
declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2211
|
+
/**
|
|
2212
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
2213
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
2214
|
+
* @param {*} [options] Override http request option.
|
|
2215
|
+
* @throws {RequiredError}
|
|
2216
|
+
*/
|
|
2217
|
+
createpluginHaloRunV1alpha1Plugin: (plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2218
|
+
/**
|
|
2219
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
2220
|
+
* @param {string} name Name of plugin
|
|
2221
|
+
* @param {*} [options] Override http request option.
|
|
2222
|
+
* @throws {RequiredError}
|
|
2223
|
+
*/
|
|
2224
|
+
deletepluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2225
|
+
/**
|
|
2226
|
+
* Get plugin.halo.run/v1alpha1/Plugin
|
|
2227
|
+
* @param {string} name Name of plugin
|
|
2228
|
+
* @param {*} [options] Override http request option.
|
|
2229
|
+
* @throws {RequiredError}
|
|
2230
|
+
*/
|
|
2231
|
+
getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2232
|
+
/**
|
|
2233
|
+
* List plugin.halo.run/v1alpha1/Plugin
|
|
2234
|
+
* @param {number} [page] Page index
|
|
2235
|
+
* @param {number} [size] Size of one page
|
|
2236
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2237
|
+
* @param {*} [options] Override http request option.
|
|
2238
|
+
* @throws {RequiredError}
|
|
2239
|
+
*/
|
|
2240
|
+
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2241
|
+
/**
|
|
2242
|
+
* Update plugin.halo.run/v1alpha1/Plugin
|
|
2243
|
+
* @param {string} name Name of plugin
|
|
2244
|
+
* @param {Plugin} [plugin] Updated plugin
|
|
2245
|
+
* @param {*} [options] Override http request option.
|
|
2246
|
+
* @throws {RequiredError}
|
|
2247
|
+
*/
|
|
2248
|
+
updatepluginHaloRunV1alpha1Plugin: (name: string, plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2249
|
+
};
|
|
2250
|
+
/**
|
|
2251
|
+
* PluginHaloRunV1alpha1PluginApi - functional programming interface
|
|
2252
|
+
* @export
|
|
2253
|
+
*/
|
|
2254
|
+
declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
2255
|
+
/**
|
|
2256
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
2257
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
2258
|
+
* @param {*} [options] Override http request option.
|
|
2259
|
+
* @throws {RequiredError}
|
|
2260
|
+
*/
|
|
2261
|
+
createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
2262
|
+
/**
|
|
2263
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
2264
|
+
* @param {string} name Name of plugin
|
|
2265
|
+
* @param {*} [options] Override http request option.
|
|
2266
|
+
* @throws {RequiredError}
|
|
2267
|
+
*/
|
|
2268
|
+
deletepluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1814
2269
|
/**
|
|
1815
2270
|
* Get plugin.halo.run/v1alpha1/Plugin
|
|
1816
2271
|
* @param {string} name Name of plugin
|
|
@@ -2114,6 +2569,189 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2114
2569
|
*/
|
|
2115
2570
|
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
2116
2571
|
}
|
|
2572
|
+
/**
|
|
2573
|
+
* RunHaloTemplateV1alpha1AppleApi - axios parameter creator
|
|
2574
|
+
* @export
|
|
2575
|
+
*/
|
|
2576
|
+
declare const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2577
|
+
/**
|
|
2578
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2579
|
+
* @param {Apple} [apple] Fresh apple
|
|
2580
|
+
* @param {*} [options] Override http request option.
|
|
2581
|
+
* @throws {RequiredError}
|
|
2582
|
+
*/
|
|
2583
|
+
createrunHaloTemplateV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2584
|
+
/**
|
|
2585
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2586
|
+
* @param {string} name Name of apple
|
|
2587
|
+
* @param {*} [options] Override http request option.
|
|
2588
|
+
* @throws {RequiredError}
|
|
2589
|
+
*/
|
|
2590
|
+
deleterunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2591
|
+
/**
|
|
2592
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2593
|
+
* @param {string} name Name of apple
|
|
2594
|
+
* @param {*} [options] Override http request option.
|
|
2595
|
+
* @throws {RequiredError}
|
|
2596
|
+
*/
|
|
2597
|
+
getrunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2598
|
+
/**
|
|
2599
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2600
|
+
* @param {number} [page] Page index
|
|
2601
|
+
* @param {number} [size] Size of one page
|
|
2602
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2603
|
+
* @param {*} [options] Override http request option.
|
|
2604
|
+
* @throws {RequiredError}
|
|
2605
|
+
*/
|
|
2606
|
+
listrunHaloTemplateV1alpha1Apple: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2607
|
+
/**
|
|
2608
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2609
|
+
* @param {string} name Name of apple
|
|
2610
|
+
* @param {Apple} [apple] Updated apple
|
|
2611
|
+
* @param {*} [options] Override http request option.
|
|
2612
|
+
* @throws {RequiredError}
|
|
2613
|
+
*/
|
|
2614
|
+
updaterunHaloTemplateV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2615
|
+
};
|
|
2616
|
+
/**
|
|
2617
|
+
* RunHaloTemplateV1alpha1AppleApi - functional programming interface
|
|
2618
|
+
* @export
|
|
2619
|
+
*/
|
|
2620
|
+
declare const RunHaloTemplateV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
2621
|
+
/**
|
|
2622
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2623
|
+
* @param {Apple} [apple] Fresh apple
|
|
2624
|
+
* @param {*} [options] Override http request option.
|
|
2625
|
+
* @throws {RequiredError}
|
|
2626
|
+
*/
|
|
2627
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2628
|
+
/**
|
|
2629
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2630
|
+
* @param {string} name Name of apple
|
|
2631
|
+
* @param {*} [options] Override http request option.
|
|
2632
|
+
* @throws {RequiredError}
|
|
2633
|
+
*/
|
|
2634
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2635
|
+
/**
|
|
2636
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2637
|
+
* @param {string} name Name of apple
|
|
2638
|
+
* @param {*} [options] Override http request option.
|
|
2639
|
+
* @throws {RequiredError}
|
|
2640
|
+
*/
|
|
2641
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2642
|
+
/**
|
|
2643
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2644
|
+
* @param {number} [page] Page index
|
|
2645
|
+
* @param {number} [size] Size of one page
|
|
2646
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2647
|
+
* @param {*} [options] Override http request option.
|
|
2648
|
+
* @throws {RequiredError}
|
|
2649
|
+
*/
|
|
2650
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2651
|
+
/**
|
|
2652
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2653
|
+
* @param {string} name Name of apple
|
|
2654
|
+
* @param {Apple} [apple] Updated apple
|
|
2655
|
+
* @param {*} [options] Override http request option.
|
|
2656
|
+
* @throws {RequiredError}
|
|
2657
|
+
*/
|
|
2658
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2659
|
+
};
|
|
2660
|
+
/**
|
|
2661
|
+
* RunHaloTemplateV1alpha1AppleApi - factory interface
|
|
2662
|
+
* @export
|
|
2663
|
+
*/
|
|
2664
|
+
declare const RunHaloTemplateV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2665
|
+
/**
|
|
2666
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2667
|
+
* @param {Apple} [apple] Fresh apple
|
|
2668
|
+
* @param {*} [options] Override http request option.
|
|
2669
|
+
* @throws {RequiredError}
|
|
2670
|
+
*/
|
|
2671
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2674
|
+
* @param {string} name Name of apple
|
|
2675
|
+
* @param {*} [options] Override http request option.
|
|
2676
|
+
* @throws {RequiredError}
|
|
2677
|
+
*/
|
|
2678
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
2679
|
+
/**
|
|
2680
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2681
|
+
* @param {string} name Name of apple
|
|
2682
|
+
* @param {*} [options] Override http request option.
|
|
2683
|
+
* @throws {RequiredError}
|
|
2684
|
+
*/
|
|
2685
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
2686
|
+
/**
|
|
2687
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2688
|
+
* @param {number} [page] Page index
|
|
2689
|
+
* @param {number} [size] Size of one page
|
|
2690
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2691
|
+
* @param {*} [options] Override http request option.
|
|
2692
|
+
* @throws {RequiredError}
|
|
2693
|
+
*/
|
|
2694
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
2695
|
+
/**
|
|
2696
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2697
|
+
* @param {string} name Name of apple
|
|
2698
|
+
* @param {Apple} [apple] Updated apple
|
|
2699
|
+
* @param {*} [options] Override http request option.
|
|
2700
|
+
* @throws {RequiredError}
|
|
2701
|
+
*/
|
|
2702
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2703
|
+
};
|
|
2704
|
+
/**
|
|
2705
|
+
* RunHaloTemplateV1alpha1AppleApi - object-oriented interface
|
|
2706
|
+
* @export
|
|
2707
|
+
* @class RunHaloTemplateV1alpha1AppleApi
|
|
2708
|
+
* @extends {BaseAPI}
|
|
2709
|
+
*/
|
|
2710
|
+
declare class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
2711
|
+
/**
|
|
2712
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2713
|
+
* @param {Apple} [apple] Fresh apple
|
|
2714
|
+
* @param {*} [options] Override http request option.
|
|
2715
|
+
* @throws {RequiredError}
|
|
2716
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2717
|
+
*/
|
|
2718
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2719
|
+
/**
|
|
2720
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2721
|
+
* @param {string} name Name of apple
|
|
2722
|
+
* @param {*} [options] Override http request option.
|
|
2723
|
+
* @throws {RequiredError}
|
|
2724
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2725
|
+
*/
|
|
2726
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2727
|
+
/**
|
|
2728
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2729
|
+
* @param {string} name Name of apple
|
|
2730
|
+
* @param {*} [options] Override http request option.
|
|
2731
|
+
* @throws {RequiredError}
|
|
2732
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2733
|
+
*/
|
|
2734
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2735
|
+
/**
|
|
2736
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2737
|
+
* @param {number} [page] Page index
|
|
2738
|
+
* @param {number} [size] Size of one page
|
|
2739
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2740
|
+
* @param {*} [options] Override http request option.
|
|
2741
|
+
* @throws {RequiredError}
|
|
2742
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2743
|
+
*/
|
|
2744
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2745
|
+
/**
|
|
2746
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2747
|
+
* @param {string} name Name of apple
|
|
2748
|
+
* @param {Apple} [apple] Updated apple
|
|
2749
|
+
* @param {*} [options] Override http request option.
|
|
2750
|
+
* @throws {RequiredError}
|
|
2751
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2752
|
+
*/
|
|
2753
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2754
|
+
}
|
|
2117
2755
|
/**
|
|
2118
2756
|
* V1alpha1ConfigMapApi - axios parameter creator
|
|
2119
2757
|
* @export
|
|
@@ -3213,4 +3851,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3213
3851
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3214
3852
|
}
|
|
3215
3853
|
|
|
3216
|
-
export {
|
|
3854
|
+
export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|