@halo-dev/api-client 0.0.3 → 0.0.4
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 +106 -522
- package/dist/index.d.ts +189 -777
- package/dist/index.mjs +99 -507
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -118,68 +118,6 @@ 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
|
-
}
|
|
183
121
|
/**
|
|
184
122
|
*
|
|
185
123
|
* @export
|
|
@@ -338,123 +276,18 @@ interface License {
|
|
|
338
276
|
* @interface Link
|
|
339
277
|
*/
|
|
340
278
|
interface Link {
|
|
341
|
-
/**
|
|
342
|
-
*
|
|
343
|
-
* @type {LinkSpec}
|
|
344
|
-
* @memberof Link
|
|
345
|
-
*/
|
|
346
|
-
spec?: LinkSpec;
|
|
347
279
|
/**
|
|
348
280
|
*
|
|
349
281
|
* @type {string}
|
|
350
282
|
* @memberof Link
|
|
351
283
|
*/
|
|
352
|
-
|
|
353
|
-
/**
|
|
354
|
-
*
|
|
355
|
-
* @type {string}
|
|
356
|
-
* @memberof Link
|
|
357
|
-
*/
|
|
358
|
-
kind: string;
|
|
284
|
+
href?: string;
|
|
359
285
|
/**
|
|
360
286
|
*
|
|
361
|
-
* @type {
|
|
287
|
+
* @type {boolean}
|
|
362
288
|
* @memberof Link
|
|
363
289
|
*/
|
|
364
|
-
|
|
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;
|
|
290
|
+
templated?: boolean;
|
|
458
291
|
}
|
|
459
292
|
/**
|
|
460
293
|
*
|
|
@@ -827,6 +660,7 @@ interface PluginSpec {
|
|
|
827
660
|
*
|
|
828
661
|
* @type {string}
|
|
829
662
|
* @memberof PluginSpec
|
|
663
|
+
* @deprecated
|
|
830
664
|
*/
|
|
831
665
|
pluginClass?: string;
|
|
832
666
|
/**
|
|
@@ -835,12 +669,6 @@ interface PluginSpec {
|
|
|
835
669
|
* @memberof PluginSpec
|
|
836
670
|
*/
|
|
837
671
|
enabled?: boolean;
|
|
838
|
-
/**
|
|
839
|
-
*
|
|
840
|
-
* @type {Array<string>}
|
|
841
|
-
* @memberof PluginSpec
|
|
842
|
-
*/
|
|
843
|
-
extensionLocations?: Array<string>;
|
|
844
672
|
/**
|
|
845
673
|
*
|
|
846
674
|
* @type {string}
|
|
@@ -1590,6 +1418,190 @@ interface UserStatus {
|
|
|
1590
1418
|
*/
|
|
1591
1419
|
loginHistories?: Array<LoginHistory>;
|
|
1592
1420
|
}
|
|
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
|
+
/**
|
|
1551
|
+
* ApiHaloRunV1alpha1PluginApi - axios parameter creator
|
|
1552
|
+
* @export
|
|
1553
|
+
*/
|
|
1554
|
+
declare const ApiHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1555
|
+
/**
|
|
1556
|
+
* Install a plugin by uploading a Jar file.
|
|
1557
|
+
* @param {any} file
|
|
1558
|
+
* @param {*} [options] Override http request option.
|
|
1559
|
+
* @throws {RequiredError}
|
|
1560
|
+
*/
|
|
1561
|
+
installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1562
|
+
};
|
|
1563
|
+
/**
|
|
1564
|
+
* ApiHaloRunV1alpha1PluginApi - functional programming interface
|
|
1565
|
+
* @export
|
|
1566
|
+
*/
|
|
1567
|
+
declare const ApiHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
1568
|
+
/**
|
|
1569
|
+
* Install a plugin by uploading a Jar file.
|
|
1570
|
+
* @param {any} file
|
|
1571
|
+
* @param {*} [options] Override http request option.
|
|
1572
|
+
* @throws {RequiredError}
|
|
1573
|
+
*/
|
|
1574
|
+
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1575
|
+
};
|
|
1576
|
+
/**
|
|
1577
|
+
* ApiHaloRunV1alpha1PluginApi - factory interface
|
|
1578
|
+
* @export
|
|
1579
|
+
*/
|
|
1580
|
+
declare const ApiHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1581
|
+
/**
|
|
1582
|
+
* Install a plugin by uploading a Jar file.
|
|
1583
|
+
* @param {any} file
|
|
1584
|
+
* @param {*} [options] Override http request option.
|
|
1585
|
+
* @throws {RequiredError}
|
|
1586
|
+
*/
|
|
1587
|
+
installPlugin(file: any, options?: any): AxiosPromise<void>;
|
|
1588
|
+
};
|
|
1589
|
+
/**
|
|
1590
|
+
* ApiHaloRunV1alpha1PluginApi - object-oriented interface
|
|
1591
|
+
* @export
|
|
1592
|
+
* @class ApiHaloRunV1alpha1PluginApi
|
|
1593
|
+
* @extends {BaseAPI}
|
|
1594
|
+
*/
|
|
1595
|
+
declare class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
1596
|
+
/**
|
|
1597
|
+
* Install a plugin by uploading a Jar file.
|
|
1598
|
+
* @param {any} file
|
|
1599
|
+
* @param {*} [options] Override http request option.
|
|
1600
|
+
* @throws {RequiredError}
|
|
1601
|
+
* @memberof ApiHaloRunV1alpha1PluginApi
|
|
1602
|
+
*/
|
|
1603
|
+
installPlugin(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1604
|
+
}
|
|
1593
1605
|
/**
|
|
1594
1606
|
* ApiHaloRunV1alpha1UserApi - axios parameter creator
|
|
1595
1607
|
* @export
|
|
@@ -1736,606 +1748,6 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1736
1748
|
*/
|
|
1737
1749
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1738
1750
|
}
|
|
1739
|
-
/**
|
|
1740
|
-
* AppleGuqingXyzV1alpha1AppleApi - axios parameter creator
|
|
1741
|
-
* @export
|
|
1742
|
-
*/
|
|
1743
|
-
declare const AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1744
|
-
/**
|
|
1745
|
-
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1746
|
-
* @param {Apple} [apple] Fresh apple
|
|
1747
|
-
* @param {*} [options] Override http request option.
|
|
1748
|
-
* @throws {RequiredError}
|
|
1749
|
-
*/
|
|
1750
|
-
createappleGuqingXyzV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1751
|
-
/**
|
|
1752
|
-
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1753
|
-
* @param {string} name Name of apple
|
|
1754
|
-
* @param {*} [options] Override http request option.
|
|
1755
|
-
* @throws {RequiredError}
|
|
1756
|
-
*/
|
|
1757
|
-
deleteappleGuqingXyzV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1758
|
-
/**
|
|
1759
|
-
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1760
|
-
* @param {string} name Name of apple
|
|
1761
|
-
* @param {*} [options] Override http request option.
|
|
1762
|
-
* @throws {RequiredError}
|
|
1763
|
-
*/
|
|
1764
|
-
getappleGuqingXyzV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1765
|
-
/**
|
|
1766
|
-
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1767
|
-
* @param {number} [page] Page index
|
|
1768
|
-
* @param {number} [size] Size of one page
|
|
1769
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1770
|
-
* @param {*} [options] Override http request option.
|
|
1771
|
-
* @throws {RequiredError}
|
|
1772
|
-
*/
|
|
1773
|
-
listappleGuqingXyzV1alpha1Apple: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1774
|
-
/**
|
|
1775
|
-
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1776
|
-
* @param {string} name Name of apple
|
|
1777
|
-
* @param {Apple} [apple] Updated apple
|
|
1778
|
-
* @param {*} [options] Override http request option.
|
|
1779
|
-
* @throws {RequiredError}
|
|
1780
|
-
*/
|
|
1781
|
-
updateappleGuqingXyzV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1782
|
-
};
|
|
1783
|
-
/**
|
|
1784
|
-
* AppleGuqingXyzV1alpha1AppleApi - functional programming interface
|
|
1785
|
-
* @export
|
|
1786
|
-
*/
|
|
1787
|
-
declare const AppleGuqingXyzV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
1788
|
-
/**
|
|
1789
|
-
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1790
|
-
* @param {Apple} [apple] Fresh apple
|
|
1791
|
-
* @param {*} [options] Override http request option.
|
|
1792
|
-
* @throws {RequiredError}
|
|
1793
|
-
*/
|
|
1794
|
-
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1795
|
-
/**
|
|
1796
|
-
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1797
|
-
* @param {string} name Name of apple
|
|
1798
|
-
* @param {*} [options] Override http request option.
|
|
1799
|
-
* @throws {RequiredError}
|
|
1800
|
-
*/
|
|
1801
|
-
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1802
|
-
/**
|
|
1803
|
-
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1804
|
-
* @param {string} name Name of apple
|
|
1805
|
-
* @param {*} [options] Override http request option.
|
|
1806
|
-
* @throws {RequiredError}
|
|
1807
|
-
*/
|
|
1808
|
-
getappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1809
|
-
/**
|
|
1810
|
-
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1811
|
-
* @param {number} [page] Page index
|
|
1812
|
-
* @param {number} [size] Size of one page
|
|
1813
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1814
|
-
* @param {*} [options] Override http request option.
|
|
1815
|
-
* @throws {RequiredError}
|
|
1816
|
-
*/
|
|
1817
|
-
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1818
|
-
/**
|
|
1819
|
-
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1820
|
-
* @param {string} name Name of apple
|
|
1821
|
-
* @param {Apple} [apple] Updated apple
|
|
1822
|
-
* @param {*} [options] Override http request option.
|
|
1823
|
-
* @throws {RequiredError}
|
|
1824
|
-
*/
|
|
1825
|
-
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1826
|
-
};
|
|
1827
|
-
/**
|
|
1828
|
-
* AppleGuqingXyzV1alpha1AppleApi - factory interface
|
|
1829
|
-
* @export
|
|
1830
|
-
*/
|
|
1831
|
-
declare const AppleGuqingXyzV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1832
|
-
/**
|
|
1833
|
-
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1834
|
-
* @param {Apple} [apple] Fresh apple
|
|
1835
|
-
* @param {*} [options] Override http request option.
|
|
1836
|
-
* @throws {RequiredError}
|
|
1837
|
-
*/
|
|
1838
|
-
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
1839
|
-
/**
|
|
1840
|
-
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1841
|
-
* @param {string} name Name of apple
|
|
1842
|
-
* @param {*} [options] Override http request option.
|
|
1843
|
-
* @throws {RequiredError}
|
|
1844
|
-
*/
|
|
1845
|
-
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
1846
|
-
/**
|
|
1847
|
-
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1848
|
-
* @param {string} name Name of apple
|
|
1849
|
-
* @param {*} [options] Override http request option.
|
|
1850
|
-
* @throws {RequiredError}
|
|
1851
|
-
*/
|
|
1852
|
-
getappleGuqingXyzV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
1853
|
-
/**
|
|
1854
|
-
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1855
|
-
* @param {number} [page] Page index
|
|
1856
|
-
* @param {number} [size] Size of one page
|
|
1857
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1858
|
-
* @param {*} [options] Override http request option.
|
|
1859
|
-
* @throws {RequiredError}
|
|
1860
|
-
*/
|
|
1861
|
-
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
1862
|
-
/**
|
|
1863
|
-
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1864
|
-
* @param {string} name Name of apple
|
|
1865
|
-
* @param {Apple} [apple] Updated apple
|
|
1866
|
-
* @param {*} [options] Override http request option.
|
|
1867
|
-
* @throws {RequiredError}
|
|
1868
|
-
*/
|
|
1869
|
-
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
1870
|
-
};
|
|
1871
|
-
/**
|
|
1872
|
-
* AppleGuqingXyzV1alpha1AppleApi - object-oriented interface
|
|
1873
|
-
* @export
|
|
1874
|
-
* @class AppleGuqingXyzV1alpha1AppleApi
|
|
1875
|
-
* @extends {BaseAPI}
|
|
1876
|
-
*/
|
|
1877
|
-
declare class AppleGuqingXyzV1alpha1AppleApi extends BaseAPI {
|
|
1878
|
-
/**
|
|
1879
|
-
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1880
|
-
* @param {Apple} [apple] Fresh apple
|
|
1881
|
-
* @param {*} [options] Override http request option.
|
|
1882
|
-
* @throws {RequiredError}
|
|
1883
|
-
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1884
|
-
*/
|
|
1885
|
-
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1886
|
-
/**
|
|
1887
|
-
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1888
|
-
* @param {string} name Name of apple
|
|
1889
|
-
* @param {*} [options] Override http request option.
|
|
1890
|
-
* @throws {RequiredError}
|
|
1891
|
-
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1892
|
-
*/
|
|
1893
|
-
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1894
|
-
/**
|
|
1895
|
-
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1896
|
-
* @param {string} name Name of apple
|
|
1897
|
-
* @param {*} [options] Override http request option.
|
|
1898
|
-
* @throws {RequiredError}
|
|
1899
|
-
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1900
|
-
*/
|
|
1901
|
-
getappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1902
|
-
/**
|
|
1903
|
-
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1904
|
-
* @param {number} [page] Page index
|
|
1905
|
-
* @param {number} [size] Size of one page
|
|
1906
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1907
|
-
* @param {*} [options] Override http request option.
|
|
1908
|
-
* @throws {RequiredError}
|
|
1909
|
-
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1910
|
-
*/
|
|
1911
|
-
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1912
|
-
/**
|
|
1913
|
-
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1914
|
-
* @param {string} name Name of apple
|
|
1915
|
-
* @param {Apple} [apple] Updated apple
|
|
1916
|
-
* @param {*} [options] Override http request option.
|
|
1917
|
-
* @throws {RequiredError}
|
|
1918
|
-
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1919
|
-
*/
|
|
1920
|
-
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1921
|
-
}
|
|
1922
|
-
/**
|
|
1923
|
-
* ApplesControllerApi - axios parameter creator
|
|
1924
|
-
* @export
|
|
1925
|
-
*/
|
|
1926
|
-
declare const ApplesControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1927
|
-
/**
|
|
1928
|
-
*
|
|
1929
|
-
* @param {*} [options] Override http request option.
|
|
1930
|
-
* @throws {RequiredError}
|
|
1931
|
-
*/
|
|
1932
|
-
hello: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1933
|
-
};
|
|
1934
|
-
/**
|
|
1935
|
-
* ApplesControllerApi - functional programming interface
|
|
1936
|
-
* @export
|
|
1937
|
-
*/
|
|
1938
|
-
declare const ApplesControllerApiFp: (configuration?: Configuration) => {
|
|
1939
|
-
/**
|
|
1940
|
-
*
|
|
1941
|
-
* @param {*} [options] Override http request option.
|
|
1942
|
-
* @throws {RequiredError}
|
|
1943
|
-
*/
|
|
1944
|
-
hello(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1945
|
-
};
|
|
1946
|
-
/**
|
|
1947
|
-
* ApplesControllerApi - factory interface
|
|
1948
|
-
* @export
|
|
1949
|
-
*/
|
|
1950
|
-
declare const ApplesControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1951
|
-
/**
|
|
1952
|
-
*
|
|
1953
|
-
* @param {*} [options] Override http request option.
|
|
1954
|
-
* @throws {RequiredError}
|
|
1955
|
-
*/
|
|
1956
|
-
hello(options?: any): AxiosPromise<string>;
|
|
1957
|
-
};
|
|
1958
|
-
/**
|
|
1959
|
-
* ApplesControllerApi - object-oriented interface
|
|
1960
|
-
* @export
|
|
1961
|
-
* @class ApplesControllerApi
|
|
1962
|
-
* @extends {BaseAPI}
|
|
1963
|
-
*/
|
|
1964
|
-
declare class ApplesControllerApi extends BaseAPI {
|
|
1965
|
-
/**
|
|
1966
|
-
*
|
|
1967
|
-
* @param {*} [options] Override http request option.
|
|
1968
|
-
* @throws {RequiredError}
|
|
1969
|
-
* @memberof ApplesControllerApi
|
|
1970
|
-
*/
|
|
1971
|
-
hello(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1972
|
-
}
|
|
1973
|
-
/**
|
|
1974
|
-
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
1975
|
-
* @export
|
|
1976
|
-
*/
|
|
1977
|
-
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1978
|
-
/**
|
|
1979
|
-
* Create core.halo.run/v1alpha1/Link
|
|
1980
|
-
* @param {Link} [link] Fresh link
|
|
1981
|
-
* @param {*} [options] Override http request option.
|
|
1982
|
-
* @throws {RequiredError}
|
|
1983
|
-
*/
|
|
1984
|
-
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1985
|
-
/**
|
|
1986
|
-
* Delete core.halo.run/v1alpha1/Link
|
|
1987
|
-
* @param {string} name Name of link
|
|
1988
|
-
* @param {*} [options] Override http request option.
|
|
1989
|
-
* @throws {RequiredError}
|
|
1990
|
-
*/
|
|
1991
|
-
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1992
|
-
/**
|
|
1993
|
-
* Get core.halo.run/v1alpha1/Link
|
|
1994
|
-
* @param {string} name Name of link
|
|
1995
|
-
* @param {*} [options] Override http request option.
|
|
1996
|
-
* @throws {RequiredError}
|
|
1997
|
-
*/
|
|
1998
|
-
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1999
|
-
/**
|
|
2000
|
-
* List core.halo.run/v1alpha1/Link
|
|
2001
|
-
* @param {number} [page] Page index
|
|
2002
|
-
* @param {number} [size] Size of one page
|
|
2003
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2004
|
-
* @param {*} [options] Override http request option.
|
|
2005
|
-
* @throws {RequiredError}
|
|
2006
|
-
*/
|
|
2007
|
-
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2008
|
-
/**
|
|
2009
|
-
* Update core.halo.run/v1alpha1/Link
|
|
2010
|
-
* @param {string} name Name of link
|
|
2011
|
-
* @param {Link} [link] Updated link
|
|
2012
|
-
* @param {*} [options] Override http request option.
|
|
2013
|
-
* @throws {RequiredError}
|
|
2014
|
-
*/
|
|
2015
|
-
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2016
|
-
};
|
|
2017
|
-
/**
|
|
2018
|
-
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
2019
|
-
* @export
|
|
2020
|
-
*/
|
|
2021
|
-
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
2022
|
-
/**
|
|
2023
|
-
* Create core.halo.run/v1alpha1/Link
|
|
2024
|
-
* @param {Link} [link] Fresh link
|
|
2025
|
-
* @param {*} [options] Override http request option.
|
|
2026
|
-
* @throws {RequiredError}
|
|
2027
|
-
*/
|
|
2028
|
-
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2029
|
-
/**
|
|
2030
|
-
* Delete core.halo.run/v1alpha1/Link
|
|
2031
|
-
* @param {string} name Name of link
|
|
2032
|
-
* @param {*} [options] Override http request option.
|
|
2033
|
-
* @throws {RequiredError}
|
|
2034
|
-
*/
|
|
2035
|
-
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2036
|
-
/**
|
|
2037
|
-
* Get core.halo.run/v1alpha1/Link
|
|
2038
|
-
* @param {string} name Name of link
|
|
2039
|
-
* @param {*} [options] Override http request option.
|
|
2040
|
-
* @throws {RequiredError}
|
|
2041
|
-
*/
|
|
2042
|
-
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2043
|
-
/**
|
|
2044
|
-
* List core.halo.run/v1alpha1/Link
|
|
2045
|
-
* @param {number} [page] Page index
|
|
2046
|
-
* @param {number} [size] Size of one page
|
|
2047
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2048
|
-
* @param {*} [options] Override http request option.
|
|
2049
|
-
* @throws {RequiredError}
|
|
2050
|
-
*/
|
|
2051
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2052
|
-
/**
|
|
2053
|
-
* Update core.halo.run/v1alpha1/Link
|
|
2054
|
-
* @param {string} name Name of link
|
|
2055
|
-
* @param {Link} [link] Updated link
|
|
2056
|
-
* @param {*} [options] Override http request option.
|
|
2057
|
-
* @throws {RequiredError}
|
|
2058
|
-
*/
|
|
2059
|
-
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2060
|
-
};
|
|
2061
|
-
/**
|
|
2062
|
-
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
2063
|
-
* @export
|
|
2064
|
-
*/
|
|
2065
|
-
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2066
|
-
/**
|
|
2067
|
-
* Create core.halo.run/v1alpha1/Link
|
|
2068
|
-
* @param {Link} [link] Fresh link
|
|
2069
|
-
* @param {*} [options] Override http request option.
|
|
2070
|
-
* @throws {RequiredError}
|
|
2071
|
-
*/
|
|
2072
|
-
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
2073
|
-
/**
|
|
2074
|
-
* Delete core.halo.run/v1alpha1/Link
|
|
2075
|
-
* @param {string} name Name of link
|
|
2076
|
-
* @param {*} [options] Override http request option.
|
|
2077
|
-
* @throws {RequiredError}
|
|
2078
|
-
*/
|
|
2079
|
-
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
2080
|
-
/**
|
|
2081
|
-
* Get core.halo.run/v1alpha1/Link
|
|
2082
|
-
* @param {string} name Name of link
|
|
2083
|
-
* @param {*} [options] Override http request option.
|
|
2084
|
-
* @throws {RequiredError}
|
|
2085
|
-
*/
|
|
2086
|
-
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
2087
|
-
/**
|
|
2088
|
-
* List core.halo.run/v1alpha1/Link
|
|
2089
|
-
* @param {number} [page] Page index
|
|
2090
|
-
* @param {number} [size] Size of one page
|
|
2091
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2092
|
-
* @param {*} [options] Override http request option.
|
|
2093
|
-
* @throws {RequiredError}
|
|
2094
|
-
*/
|
|
2095
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
2096
|
-
/**
|
|
2097
|
-
* Update core.halo.run/v1alpha1/Link
|
|
2098
|
-
* @param {string} name Name of link
|
|
2099
|
-
* @param {Link} [link] Updated link
|
|
2100
|
-
* @param {*} [options] Override http request option.
|
|
2101
|
-
* @throws {RequiredError}
|
|
2102
|
-
*/
|
|
2103
|
-
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
2104
|
-
};
|
|
2105
|
-
/**
|
|
2106
|
-
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
2107
|
-
* @export
|
|
2108
|
-
* @class CoreHaloRunV1alpha1LinkApi
|
|
2109
|
-
* @extends {BaseAPI}
|
|
2110
|
-
*/
|
|
2111
|
-
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
2112
|
-
/**
|
|
2113
|
-
* Create core.halo.run/v1alpha1/Link
|
|
2114
|
-
* @param {Link} [link] Fresh link
|
|
2115
|
-
* @param {*} [options] Override http request option.
|
|
2116
|
-
* @throws {RequiredError}
|
|
2117
|
-
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2118
|
-
*/
|
|
2119
|
-
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2120
|
-
/**
|
|
2121
|
-
* Delete core.halo.run/v1alpha1/Link
|
|
2122
|
-
* @param {string} name Name of link
|
|
2123
|
-
* @param {*} [options] Override http request option.
|
|
2124
|
-
* @throws {RequiredError}
|
|
2125
|
-
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2126
|
-
*/
|
|
2127
|
-
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2128
|
-
/**
|
|
2129
|
-
* Get core.halo.run/v1alpha1/Link
|
|
2130
|
-
* @param {string} name Name of link
|
|
2131
|
-
* @param {*} [options] Override http request option.
|
|
2132
|
-
* @throws {RequiredError}
|
|
2133
|
-
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2134
|
-
*/
|
|
2135
|
-
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2136
|
-
/**
|
|
2137
|
-
* List core.halo.run/v1alpha1/Link
|
|
2138
|
-
* @param {number} [page] Page index
|
|
2139
|
-
* @param {number} [size] Size of one page
|
|
2140
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2141
|
-
* @param {*} [options] Override http request option.
|
|
2142
|
-
* @throws {RequiredError}
|
|
2143
|
-
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2144
|
-
*/
|
|
2145
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2146
|
-
/**
|
|
2147
|
-
* Update core.halo.run/v1alpha1/Link
|
|
2148
|
-
* @param {string} name Name of link
|
|
2149
|
-
* @param {Link} [link] Updated link
|
|
2150
|
-
* @param {*} [options] Override http request option.
|
|
2151
|
-
* @throws {RequiredError}
|
|
2152
|
-
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2153
|
-
*/
|
|
2154
|
-
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2155
|
-
}
|
|
2156
|
-
/**
|
|
2157
|
-
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
2158
|
-
* @export
|
|
2159
|
-
*/
|
|
2160
|
-
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2161
|
-
/**
|
|
2162
|
-
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2163
|
-
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2164
|
-
* @param {*} [options] Override http request option.
|
|
2165
|
-
* @throws {RequiredError}
|
|
2166
|
-
*/
|
|
2167
|
-
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2168
|
-
/**
|
|
2169
|
-
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2170
|
-
* @param {string} name Name of linkgroup
|
|
2171
|
-
* @param {*} [options] Override http request option.
|
|
2172
|
-
* @throws {RequiredError}
|
|
2173
|
-
*/
|
|
2174
|
-
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2175
|
-
/**
|
|
2176
|
-
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2177
|
-
* @param {string} name Name of linkgroup
|
|
2178
|
-
* @param {*} [options] Override http request option.
|
|
2179
|
-
* @throws {RequiredError}
|
|
2180
|
-
*/
|
|
2181
|
-
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2182
|
-
/**
|
|
2183
|
-
* List core.halo.run/v1alpha1/LinkGroup
|
|
2184
|
-
* @param {number} [page] Page index
|
|
2185
|
-
* @param {number} [size] Size of one page
|
|
2186
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2187
|
-
* @param {*} [options] Override http request option.
|
|
2188
|
-
* @throws {RequiredError}
|
|
2189
|
-
*/
|
|
2190
|
-
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2191
|
-
/**
|
|
2192
|
-
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2193
|
-
* @param {string} name Name of linkgroup
|
|
2194
|
-
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2195
|
-
* @param {*} [options] Override http request option.
|
|
2196
|
-
* @throws {RequiredError}
|
|
2197
|
-
*/
|
|
2198
|
-
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2199
|
-
};
|
|
2200
|
-
/**
|
|
2201
|
-
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
2202
|
-
* @export
|
|
2203
|
-
*/
|
|
2204
|
-
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
2205
|
-
/**
|
|
2206
|
-
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2207
|
-
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2208
|
-
* @param {*} [options] Override http request option.
|
|
2209
|
-
* @throws {RequiredError}
|
|
2210
|
-
*/
|
|
2211
|
-
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2212
|
-
/**
|
|
2213
|
-
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2214
|
-
* @param {string} name Name of linkgroup
|
|
2215
|
-
* @param {*} [options] Override http request option.
|
|
2216
|
-
* @throws {RequiredError}
|
|
2217
|
-
*/
|
|
2218
|
-
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2219
|
-
/**
|
|
2220
|
-
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2221
|
-
* @param {string} name Name of linkgroup
|
|
2222
|
-
* @param {*} [options] Override http request option.
|
|
2223
|
-
* @throws {RequiredError}
|
|
2224
|
-
*/
|
|
2225
|
-
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2226
|
-
/**
|
|
2227
|
-
* List core.halo.run/v1alpha1/LinkGroup
|
|
2228
|
-
* @param {number} [page] Page index
|
|
2229
|
-
* @param {number} [size] Size of one page
|
|
2230
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2231
|
-
* @param {*} [options] Override http request option.
|
|
2232
|
-
* @throws {RequiredError}
|
|
2233
|
-
*/
|
|
2234
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2235
|
-
/**
|
|
2236
|
-
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2237
|
-
* @param {string} name Name of linkgroup
|
|
2238
|
-
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2239
|
-
* @param {*} [options] Override http request option.
|
|
2240
|
-
* @throws {RequiredError}
|
|
2241
|
-
*/
|
|
2242
|
-
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2243
|
-
};
|
|
2244
|
-
/**
|
|
2245
|
-
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
2246
|
-
* @export
|
|
2247
|
-
*/
|
|
2248
|
-
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2249
|
-
/**
|
|
2250
|
-
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2251
|
-
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2252
|
-
* @param {*} [options] Override http request option.
|
|
2253
|
-
* @throws {RequiredError}
|
|
2254
|
-
*/
|
|
2255
|
-
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
2256
|
-
/**
|
|
2257
|
-
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2258
|
-
* @param {string} name Name of linkgroup
|
|
2259
|
-
* @param {*} [options] Override http request option.
|
|
2260
|
-
* @throws {RequiredError}
|
|
2261
|
-
*/
|
|
2262
|
-
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
2263
|
-
/**
|
|
2264
|
-
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2265
|
-
* @param {string} name Name of linkgroup
|
|
2266
|
-
* @param {*} [options] Override http request option.
|
|
2267
|
-
* @throws {RequiredError}
|
|
2268
|
-
*/
|
|
2269
|
-
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
2270
|
-
/**
|
|
2271
|
-
* List core.halo.run/v1alpha1/LinkGroup
|
|
2272
|
-
* @param {number} [page] Page index
|
|
2273
|
-
* @param {number} [size] Size of one page
|
|
2274
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2275
|
-
* @param {*} [options] Override http request option.
|
|
2276
|
-
* @throws {RequiredError}
|
|
2277
|
-
*/
|
|
2278
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
2279
|
-
/**
|
|
2280
|
-
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2281
|
-
* @param {string} name Name of linkgroup
|
|
2282
|
-
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2283
|
-
* @param {*} [options] Override http request option.
|
|
2284
|
-
* @throws {RequiredError}
|
|
2285
|
-
*/
|
|
2286
|
-
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
2287
|
-
};
|
|
2288
|
-
/**
|
|
2289
|
-
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
2290
|
-
* @export
|
|
2291
|
-
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
2292
|
-
* @extends {BaseAPI}
|
|
2293
|
-
*/
|
|
2294
|
-
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
2295
|
-
/**
|
|
2296
|
-
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2297
|
-
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2298
|
-
* @param {*} [options] Override http request option.
|
|
2299
|
-
* @throws {RequiredError}
|
|
2300
|
-
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2301
|
-
*/
|
|
2302
|
-
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2303
|
-
/**
|
|
2304
|
-
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2305
|
-
* @param {string} name Name of linkgroup
|
|
2306
|
-
* @param {*} [options] Override http request option.
|
|
2307
|
-
* @throws {RequiredError}
|
|
2308
|
-
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2309
|
-
*/
|
|
2310
|
-
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2311
|
-
/**
|
|
2312
|
-
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2313
|
-
* @param {string} name Name of linkgroup
|
|
2314
|
-
* @param {*} [options] Override http request option.
|
|
2315
|
-
* @throws {RequiredError}
|
|
2316
|
-
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2317
|
-
*/
|
|
2318
|
-
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2319
|
-
/**
|
|
2320
|
-
* List core.halo.run/v1alpha1/LinkGroup
|
|
2321
|
-
* @param {number} [page] Page index
|
|
2322
|
-
* @param {number} [size] Size of one page
|
|
2323
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2324
|
-
* @param {*} [options] Override http request option.
|
|
2325
|
-
* @throws {RequiredError}
|
|
2326
|
-
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2327
|
-
*/
|
|
2328
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2329
|
-
/**
|
|
2330
|
-
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2331
|
-
* @param {string} name Name of linkgroup
|
|
2332
|
-
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2333
|
-
* @param {*} [options] Override http request option.
|
|
2334
|
-
* @throws {RequiredError}
|
|
2335
|
-
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2336
|
-
*/
|
|
2337
|
-
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2338
|
-
}
|
|
2339
1751
|
/**
|
|
2340
1752
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
2341
1753
|
* @export
|
|
@@ -3801,4 +3213,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3801
3213
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3802
3214
|
}
|
|
3803
3215
|
|
|
3804
|
-
export {
|
|
3216
|
+
export { ActuatorApi, ActuatorApiAxiosParamCreator, ActuatorApiFactory, ActuatorApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, FileReverseProxyProvider, GrantRequest, License, Link, 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, 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 };
|