@halo-dev/api-client 0.0.4 → 0.0.7
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 +1106 -280
- package/dist/index.d.ts +1294 -265
- package/dist/index.mjs +1087 -277
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,87 @@ 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
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @export
|
|
186
|
+
* @interface Author
|
|
187
|
+
*/
|
|
188
|
+
interface Author {
|
|
189
|
+
/**
|
|
190
|
+
*
|
|
191
|
+
* @type {string}
|
|
192
|
+
* @memberof Author
|
|
193
|
+
*/
|
|
194
|
+
name: string;
|
|
195
|
+
/**
|
|
196
|
+
*
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof Author
|
|
199
|
+
*/
|
|
200
|
+
website?: string;
|
|
201
|
+
}
|
|
121
202
|
/**
|
|
122
203
|
*
|
|
123
204
|
* @export
|
|
@@ -276,18 +357,123 @@ interface License {
|
|
|
276
357
|
* @interface Link
|
|
277
358
|
*/
|
|
278
359
|
interface Link {
|
|
360
|
+
/**
|
|
361
|
+
*
|
|
362
|
+
* @type {LinkSpec}
|
|
363
|
+
* @memberof Link
|
|
364
|
+
*/
|
|
365
|
+
spec?: LinkSpec;
|
|
279
366
|
/**
|
|
280
367
|
*
|
|
281
368
|
* @type {string}
|
|
282
369
|
* @memberof Link
|
|
283
370
|
*/
|
|
284
|
-
|
|
371
|
+
apiVersion: string;
|
|
285
372
|
/**
|
|
286
373
|
*
|
|
287
|
-
* @type {
|
|
374
|
+
* @type {string}
|
|
375
|
+
* @memberof Link
|
|
376
|
+
*/
|
|
377
|
+
kind: string;
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* @type {Metadata}
|
|
288
381
|
* @memberof Link
|
|
289
382
|
*/
|
|
290
|
-
|
|
383
|
+
metadata: Metadata;
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
*
|
|
387
|
+
* @export
|
|
388
|
+
* @interface LinkGroup
|
|
389
|
+
*/
|
|
390
|
+
interface LinkGroup {
|
|
391
|
+
/**
|
|
392
|
+
*
|
|
393
|
+
* @type {LinkGroupSpec}
|
|
394
|
+
* @memberof LinkGroup
|
|
395
|
+
*/
|
|
396
|
+
spec?: LinkGroupSpec;
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof LinkGroup
|
|
401
|
+
*/
|
|
402
|
+
apiVersion: string;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @type {string}
|
|
406
|
+
* @memberof LinkGroup
|
|
407
|
+
*/
|
|
408
|
+
kind: string;
|
|
409
|
+
/**
|
|
410
|
+
*
|
|
411
|
+
* @type {Metadata}
|
|
412
|
+
* @memberof LinkGroup
|
|
413
|
+
*/
|
|
414
|
+
metadata: Metadata;
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
*
|
|
418
|
+
* @export
|
|
419
|
+
* @interface LinkGroupSpec
|
|
420
|
+
*/
|
|
421
|
+
interface LinkGroupSpec {
|
|
422
|
+
/**
|
|
423
|
+
*
|
|
424
|
+
* @type {string}
|
|
425
|
+
* @memberof LinkGroupSpec
|
|
426
|
+
*/
|
|
427
|
+
displayName: string;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @type {number}
|
|
431
|
+
* @memberof LinkGroupSpec
|
|
432
|
+
*/
|
|
433
|
+
priority?: number;
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* @export
|
|
438
|
+
* @interface LinkSpec
|
|
439
|
+
*/
|
|
440
|
+
interface LinkSpec {
|
|
441
|
+
/**
|
|
442
|
+
*
|
|
443
|
+
* @type {string}
|
|
444
|
+
* @memberof LinkSpec
|
|
445
|
+
*/
|
|
446
|
+
url: string;
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof LinkSpec
|
|
451
|
+
*/
|
|
452
|
+
displayName: string;
|
|
453
|
+
/**
|
|
454
|
+
*
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof LinkSpec
|
|
457
|
+
*/
|
|
458
|
+
logo?: string;
|
|
459
|
+
/**
|
|
460
|
+
*
|
|
461
|
+
* @type {string}
|
|
462
|
+
* @memberof LinkSpec
|
|
463
|
+
*/
|
|
464
|
+
description?: string;
|
|
465
|
+
/**
|
|
466
|
+
*
|
|
467
|
+
* @type {string}
|
|
468
|
+
* @memberof LinkSpec
|
|
469
|
+
*/
|
|
470
|
+
groupName?: string;
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @type {number}
|
|
474
|
+
* @memberof LinkSpec
|
|
475
|
+
*/
|
|
476
|
+
priority?: number;
|
|
291
477
|
}
|
|
292
478
|
/**
|
|
293
479
|
*
|
|
@@ -1221,6 +1407,147 @@ interface Subject {
|
|
|
1221
1407
|
*/
|
|
1222
1408
|
apiGroup?: string;
|
|
1223
1409
|
}
|
|
1410
|
+
/**
|
|
1411
|
+
*
|
|
1412
|
+
* @export
|
|
1413
|
+
* @interface Theme
|
|
1414
|
+
*/
|
|
1415
|
+
interface Theme {
|
|
1416
|
+
/**
|
|
1417
|
+
*
|
|
1418
|
+
* @type {ThemeSpec}
|
|
1419
|
+
* @memberof Theme
|
|
1420
|
+
*/
|
|
1421
|
+
spec: ThemeSpec;
|
|
1422
|
+
/**
|
|
1423
|
+
*
|
|
1424
|
+
* @type {string}
|
|
1425
|
+
* @memberof Theme
|
|
1426
|
+
*/
|
|
1427
|
+
apiVersion: string;
|
|
1428
|
+
/**
|
|
1429
|
+
*
|
|
1430
|
+
* @type {string}
|
|
1431
|
+
* @memberof Theme
|
|
1432
|
+
*/
|
|
1433
|
+
kind: string;
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* @type {Metadata}
|
|
1437
|
+
* @memberof Theme
|
|
1438
|
+
*/
|
|
1439
|
+
metadata: Metadata;
|
|
1440
|
+
}
|
|
1441
|
+
/**
|
|
1442
|
+
*
|
|
1443
|
+
* @export
|
|
1444
|
+
* @interface ThemeList
|
|
1445
|
+
*/
|
|
1446
|
+
interface ThemeList {
|
|
1447
|
+
/**
|
|
1448
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1449
|
+
* @type {number}
|
|
1450
|
+
* @memberof ThemeList
|
|
1451
|
+
*/
|
|
1452
|
+
page: number;
|
|
1453
|
+
/**
|
|
1454
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1455
|
+
* @type {number}
|
|
1456
|
+
* @memberof ThemeList
|
|
1457
|
+
*/
|
|
1458
|
+
size: number;
|
|
1459
|
+
/**
|
|
1460
|
+
* Total elements.
|
|
1461
|
+
* @type {number}
|
|
1462
|
+
* @memberof ThemeList
|
|
1463
|
+
*/
|
|
1464
|
+
total: number;
|
|
1465
|
+
/**
|
|
1466
|
+
* A chunk of items.
|
|
1467
|
+
* @type {Array<Theme>}
|
|
1468
|
+
* @memberof ThemeList
|
|
1469
|
+
*/
|
|
1470
|
+
items: Array<Theme>;
|
|
1471
|
+
/**
|
|
1472
|
+
* Indicates whether current page is the first page.
|
|
1473
|
+
* @type {boolean}
|
|
1474
|
+
* @memberof ThemeList
|
|
1475
|
+
*/
|
|
1476
|
+
first: boolean;
|
|
1477
|
+
/**
|
|
1478
|
+
* Indicates whether current page is the last page.
|
|
1479
|
+
* @type {boolean}
|
|
1480
|
+
* @memberof ThemeList
|
|
1481
|
+
*/
|
|
1482
|
+
last: boolean;
|
|
1483
|
+
/**
|
|
1484
|
+
* Indicates whether current page has previous page.
|
|
1485
|
+
* @type {boolean}
|
|
1486
|
+
* @memberof ThemeList
|
|
1487
|
+
*/
|
|
1488
|
+
hasNext: boolean;
|
|
1489
|
+
/**
|
|
1490
|
+
* Indicates whether current page has previous page.
|
|
1491
|
+
* @type {boolean}
|
|
1492
|
+
* @memberof ThemeList
|
|
1493
|
+
*/
|
|
1494
|
+
hasPrevious: boolean;
|
|
1495
|
+
}
|
|
1496
|
+
/**
|
|
1497
|
+
*
|
|
1498
|
+
* @export
|
|
1499
|
+
* @interface ThemeSpec
|
|
1500
|
+
*/
|
|
1501
|
+
interface ThemeSpec {
|
|
1502
|
+
/**
|
|
1503
|
+
*
|
|
1504
|
+
* @type {string}
|
|
1505
|
+
* @memberof ThemeSpec
|
|
1506
|
+
*/
|
|
1507
|
+
displayName: string;
|
|
1508
|
+
/**
|
|
1509
|
+
*
|
|
1510
|
+
* @type {Author}
|
|
1511
|
+
* @memberof ThemeSpec
|
|
1512
|
+
*/
|
|
1513
|
+
author: Author;
|
|
1514
|
+
/**
|
|
1515
|
+
*
|
|
1516
|
+
* @type {string}
|
|
1517
|
+
* @memberof ThemeSpec
|
|
1518
|
+
*/
|
|
1519
|
+
description?: string;
|
|
1520
|
+
/**
|
|
1521
|
+
*
|
|
1522
|
+
* @type {string}
|
|
1523
|
+
* @memberof ThemeSpec
|
|
1524
|
+
*/
|
|
1525
|
+
logo?: string;
|
|
1526
|
+
/**
|
|
1527
|
+
*
|
|
1528
|
+
* @type {string}
|
|
1529
|
+
* @memberof ThemeSpec
|
|
1530
|
+
*/
|
|
1531
|
+
website?: string;
|
|
1532
|
+
/**
|
|
1533
|
+
*
|
|
1534
|
+
* @type {string}
|
|
1535
|
+
* @memberof ThemeSpec
|
|
1536
|
+
*/
|
|
1537
|
+
repo?: string;
|
|
1538
|
+
/**
|
|
1539
|
+
*
|
|
1540
|
+
* @type {string}
|
|
1541
|
+
* @memberof ThemeSpec
|
|
1542
|
+
*/
|
|
1543
|
+
version?: string;
|
|
1544
|
+
/**
|
|
1545
|
+
*
|
|
1546
|
+
* @type {string}
|
|
1547
|
+
* @memberof ThemeSpec
|
|
1548
|
+
*/
|
|
1549
|
+
require?: string;
|
|
1550
|
+
}
|
|
1224
1551
|
/**
|
|
1225
1552
|
*
|
|
1226
1553
|
* @export
|
|
@@ -1419,142 +1746,13 @@ interface UserStatus {
|
|
|
1419
1746
|
loginHistories?: Array<LoginHistory>;
|
|
1420
1747
|
}
|
|
1421
1748
|
/**
|
|
1422
|
-
*
|
|
1749
|
+
* ApiHaloRunV1alpha1PluginApi - axios parameter creator
|
|
1423
1750
|
* @export
|
|
1424
1751
|
*/
|
|
1425
|
-
declare const
|
|
1752
|
+
declare const ApiHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1426
1753
|
/**
|
|
1427
|
-
*
|
|
1428
|
-
* @
|
|
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
|
|
1754
|
+
* Install a plugin by uploading a Jar file.
|
|
1755
|
+
* @param {any} file
|
|
1558
1756
|
* @param {*} [options] Override http request option.
|
|
1559
1757
|
* @throws {RequiredError}
|
|
1560
1758
|
*/
|
|
@@ -1748,6 +1946,431 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1748
1946
|
*/
|
|
1749
1947
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1750
1948
|
}
|
|
1949
|
+
/**
|
|
1950
|
+
* ApplesControllerApi - axios parameter creator
|
|
1951
|
+
* @export
|
|
1952
|
+
*/
|
|
1953
|
+
declare const ApplesControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1954
|
+
/**
|
|
1955
|
+
*
|
|
1956
|
+
* @param {*} [options] Override http request option.
|
|
1957
|
+
* @throws {RequiredError}
|
|
1958
|
+
*/
|
|
1959
|
+
hello: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1960
|
+
};
|
|
1961
|
+
/**
|
|
1962
|
+
* ApplesControllerApi - functional programming interface
|
|
1963
|
+
* @export
|
|
1964
|
+
*/
|
|
1965
|
+
declare const ApplesControllerApiFp: (configuration?: Configuration) => {
|
|
1966
|
+
/**
|
|
1967
|
+
*
|
|
1968
|
+
* @param {*} [options] Override http request option.
|
|
1969
|
+
* @throws {RequiredError}
|
|
1970
|
+
*/
|
|
1971
|
+
hello(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1972
|
+
};
|
|
1973
|
+
/**
|
|
1974
|
+
* ApplesControllerApi - factory interface
|
|
1975
|
+
* @export
|
|
1976
|
+
*/
|
|
1977
|
+
declare const ApplesControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @param {*} [options] Override http request option.
|
|
1981
|
+
* @throws {RequiredError}
|
|
1982
|
+
*/
|
|
1983
|
+
hello(options?: any): AxiosPromise<string>;
|
|
1984
|
+
};
|
|
1985
|
+
/**
|
|
1986
|
+
* ApplesControllerApi - object-oriented interface
|
|
1987
|
+
* @export
|
|
1988
|
+
* @class ApplesControllerApi
|
|
1989
|
+
* @extends {BaseAPI}
|
|
1990
|
+
*/
|
|
1991
|
+
declare class ApplesControllerApi extends BaseAPI {
|
|
1992
|
+
/**
|
|
1993
|
+
*
|
|
1994
|
+
* @param {*} [options] Override http request option.
|
|
1995
|
+
* @throws {RequiredError}
|
|
1996
|
+
* @memberof ApplesControllerApi
|
|
1997
|
+
*/
|
|
1998
|
+
hello(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1999
|
+
}
|
|
2000
|
+
/**
|
|
2001
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
2002
|
+
* @export
|
|
2003
|
+
*/
|
|
2004
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2005
|
+
/**
|
|
2006
|
+
* Create core.halo.run/v1alpha1/Link
|
|
2007
|
+
* @param {Link} [link] Fresh link
|
|
2008
|
+
* @param {*} [options] Override http request option.
|
|
2009
|
+
* @throws {RequiredError}
|
|
2010
|
+
*/
|
|
2011
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2012
|
+
/**
|
|
2013
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
2014
|
+
* @param {string} name Name of link
|
|
2015
|
+
* @param {*} [options] Override http request option.
|
|
2016
|
+
* @throws {RequiredError}
|
|
2017
|
+
*/
|
|
2018
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2019
|
+
/**
|
|
2020
|
+
* Get core.halo.run/v1alpha1/Link
|
|
2021
|
+
* @param {string} name Name of link
|
|
2022
|
+
* @param {*} [options] Override http request option.
|
|
2023
|
+
* @throws {RequiredError}
|
|
2024
|
+
*/
|
|
2025
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2026
|
+
/**
|
|
2027
|
+
* List core.halo.run/v1alpha1/Link
|
|
2028
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2029
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2030
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2031
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2032
|
+
* @param {*} [options] Override http request option.
|
|
2033
|
+
* @throws {RequiredError}
|
|
2034
|
+
*/
|
|
2035
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2036
|
+
/**
|
|
2037
|
+
* Update core.halo.run/v1alpha1/Link
|
|
2038
|
+
* @param {string} name Name of link
|
|
2039
|
+
* @param {Link} [link] Updated link
|
|
2040
|
+
* @param {*} [options] Override http request option.
|
|
2041
|
+
* @throws {RequiredError}
|
|
2042
|
+
*/
|
|
2043
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2044
|
+
};
|
|
2045
|
+
/**
|
|
2046
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
2047
|
+
* @export
|
|
2048
|
+
*/
|
|
2049
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
2050
|
+
/**
|
|
2051
|
+
* Create core.halo.run/v1alpha1/Link
|
|
2052
|
+
* @param {Link} [link] Fresh link
|
|
2053
|
+
* @param {*} [options] Override http request option.
|
|
2054
|
+
* @throws {RequiredError}
|
|
2055
|
+
*/
|
|
2056
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2057
|
+
/**
|
|
2058
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
2059
|
+
* @param {string} name Name of link
|
|
2060
|
+
* @param {*} [options] Override http request option.
|
|
2061
|
+
* @throws {RequiredError}
|
|
2062
|
+
*/
|
|
2063
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2064
|
+
/**
|
|
2065
|
+
* Get core.halo.run/v1alpha1/Link
|
|
2066
|
+
* @param {string} name Name of link
|
|
2067
|
+
* @param {*} [options] Override http request option.
|
|
2068
|
+
* @throws {RequiredError}
|
|
2069
|
+
*/
|
|
2070
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2071
|
+
/**
|
|
2072
|
+
* List core.halo.run/v1alpha1/Link
|
|
2073
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2074
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2075
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2076
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2077
|
+
* @param {*} [options] Override http request option.
|
|
2078
|
+
* @throws {RequiredError}
|
|
2079
|
+
*/
|
|
2080
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2081
|
+
/**
|
|
2082
|
+
* Update core.halo.run/v1alpha1/Link
|
|
2083
|
+
* @param {string} name Name of link
|
|
2084
|
+
* @param {Link} [link] Updated link
|
|
2085
|
+
* @param {*} [options] Override http request option.
|
|
2086
|
+
* @throws {RequiredError}
|
|
2087
|
+
*/
|
|
2088
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2089
|
+
};
|
|
2090
|
+
/**
|
|
2091
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
2092
|
+
* @export
|
|
2093
|
+
*/
|
|
2094
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2095
|
+
/**
|
|
2096
|
+
* Create core.halo.run/v1alpha1/Link
|
|
2097
|
+
* @param {Link} [link] Fresh link
|
|
2098
|
+
* @param {*} [options] Override http request option.
|
|
2099
|
+
* @throws {RequiredError}
|
|
2100
|
+
*/
|
|
2101
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
2102
|
+
/**
|
|
2103
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
2104
|
+
* @param {string} name Name of link
|
|
2105
|
+
* @param {*} [options] Override http request option.
|
|
2106
|
+
* @throws {RequiredError}
|
|
2107
|
+
*/
|
|
2108
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
2109
|
+
/**
|
|
2110
|
+
* Get core.halo.run/v1alpha1/Link
|
|
2111
|
+
* @param {string} name Name of link
|
|
2112
|
+
* @param {*} [options] Override http request option.
|
|
2113
|
+
* @throws {RequiredError}
|
|
2114
|
+
*/
|
|
2115
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
2116
|
+
/**
|
|
2117
|
+
* List core.halo.run/v1alpha1/Link
|
|
2118
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2119
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2120
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2121
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2122
|
+
* @param {*} [options] Override http request option.
|
|
2123
|
+
* @throws {RequiredError}
|
|
2124
|
+
*/
|
|
2125
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2126
|
+
/**
|
|
2127
|
+
* Update core.halo.run/v1alpha1/Link
|
|
2128
|
+
* @param {string} name Name of link
|
|
2129
|
+
* @param {Link} [link] Updated link
|
|
2130
|
+
* @param {*} [options] Override http request option.
|
|
2131
|
+
* @throws {RequiredError}
|
|
2132
|
+
*/
|
|
2133
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
2134
|
+
};
|
|
2135
|
+
/**
|
|
2136
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
2137
|
+
* @export
|
|
2138
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
2139
|
+
* @extends {BaseAPI}
|
|
2140
|
+
*/
|
|
2141
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
2142
|
+
/**
|
|
2143
|
+
* Create core.halo.run/v1alpha1/Link
|
|
2144
|
+
* @param {Link} [link] Fresh link
|
|
2145
|
+
* @param {*} [options] Override http request option.
|
|
2146
|
+
* @throws {RequiredError}
|
|
2147
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2148
|
+
*/
|
|
2149
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2150
|
+
/**
|
|
2151
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
2152
|
+
* @param {string} name Name of link
|
|
2153
|
+
* @param {*} [options] Override http request option.
|
|
2154
|
+
* @throws {RequiredError}
|
|
2155
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2156
|
+
*/
|
|
2157
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2158
|
+
/**
|
|
2159
|
+
* Get core.halo.run/v1alpha1/Link
|
|
2160
|
+
* @param {string} name Name of link
|
|
2161
|
+
* @param {*} [options] Override http request option.
|
|
2162
|
+
* @throws {RequiredError}
|
|
2163
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2164
|
+
*/
|
|
2165
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2166
|
+
/**
|
|
2167
|
+
* List core.halo.run/v1alpha1/Link
|
|
2168
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2169
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2170
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2171
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2172
|
+
* @param {*} [options] Override http request option.
|
|
2173
|
+
* @throws {RequiredError}
|
|
2174
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2175
|
+
*/
|
|
2176
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2177
|
+
/**
|
|
2178
|
+
* Update core.halo.run/v1alpha1/Link
|
|
2179
|
+
* @param {string} name Name of link
|
|
2180
|
+
* @param {Link} [link] Updated link
|
|
2181
|
+
* @param {*} [options] Override http request option.
|
|
2182
|
+
* @throws {RequiredError}
|
|
2183
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2184
|
+
*/
|
|
2185
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2186
|
+
}
|
|
2187
|
+
/**
|
|
2188
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
2189
|
+
* @export
|
|
2190
|
+
*/
|
|
2191
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2192
|
+
/**
|
|
2193
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2194
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2195
|
+
* @param {*} [options] Override http request option.
|
|
2196
|
+
* @throws {RequiredError}
|
|
2197
|
+
*/
|
|
2198
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2199
|
+
/**
|
|
2200
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2201
|
+
* @param {string} name Name of linkgroup
|
|
2202
|
+
* @param {*} [options] Override http request option.
|
|
2203
|
+
* @throws {RequiredError}
|
|
2204
|
+
*/
|
|
2205
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2206
|
+
/**
|
|
2207
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2208
|
+
* @param {string} name Name of linkgroup
|
|
2209
|
+
* @param {*} [options] Override http request option.
|
|
2210
|
+
* @throws {RequiredError}
|
|
2211
|
+
*/
|
|
2212
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2213
|
+
/**
|
|
2214
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2215
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2216
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2217
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2218
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2219
|
+
* @param {*} [options] Override http request option.
|
|
2220
|
+
* @throws {RequiredError}
|
|
2221
|
+
*/
|
|
2222
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2223
|
+
/**
|
|
2224
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2225
|
+
* @param {string} name Name of linkgroup
|
|
2226
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2227
|
+
* @param {*} [options] Override http request option.
|
|
2228
|
+
* @throws {RequiredError}
|
|
2229
|
+
*/
|
|
2230
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2231
|
+
};
|
|
2232
|
+
/**
|
|
2233
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
2234
|
+
* @export
|
|
2235
|
+
*/
|
|
2236
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
2237
|
+
/**
|
|
2238
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2239
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2240
|
+
* @param {*} [options] Override http request option.
|
|
2241
|
+
* @throws {RequiredError}
|
|
2242
|
+
*/
|
|
2243
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2244
|
+
/**
|
|
2245
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2246
|
+
* @param {string} name Name of linkgroup
|
|
2247
|
+
* @param {*} [options] Override http request option.
|
|
2248
|
+
* @throws {RequiredError}
|
|
2249
|
+
*/
|
|
2250
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2251
|
+
/**
|
|
2252
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2253
|
+
* @param {string} name Name of linkgroup
|
|
2254
|
+
* @param {*} [options] Override http request option.
|
|
2255
|
+
* @throws {RequiredError}
|
|
2256
|
+
*/
|
|
2257
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2258
|
+
/**
|
|
2259
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2260
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2261
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2262
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2263
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2264
|
+
* @param {*} [options] Override http request option.
|
|
2265
|
+
* @throws {RequiredError}
|
|
2266
|
+
*/
|
|
2267
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2268
|
+
/**
|
|
2269
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2270
|
+
* @param {string} name Name of linkgroup
|
|
2271
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2272
|
+
* @param {*} [options] Override http request option.
|
|
2273
|
+
* @throws {RequiredError}
|
|
2274
|
+
*/
|
|
2275
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2276
|
+
};
|
|
2277
|
+
/**
|
|
2278
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
2279
|
+
* @export
|
|
2280
|
+
*/
|
|
2281
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2282
|
+
/**
|
|
2283
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2284
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2285
|
+
* @param {*} [options] Override http request option.
|
|
2286
|
+
* @throws {RequiredError}
|
|
2287
|
+
*/
|
|
2288
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
2289
|
+
/**
|
|
2290
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2291
|
+
* @param {string} name Name of linkgroup
|
|
2292
|
+
* @param {*} [options] Override http request option.
|
|
2293
|
+
* @throws {RequiredError}
|
|
2294
|
+
*/
|
|
2295
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
2296
|
+
/**
|
|
2297
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2298
|
+
* @param {string} name Name of linkgroup
|
|
2299
|
+
* @param {*} [options] Override http request option.
|
|
2300
|
+
* @throws {RequiredError}
|
|
2301
|
+
*/
|
|
2302
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
2303
|
+
/**
|
|
2304
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2305
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2306
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2307
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2308
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2309
|
+
* @param {*} [options] Override http request option.
|
|
2310
|
+
* @throws {RequiredError}
|
|
2311
|
+
*/
|
|
2312
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2313
|
+
/**
|
|
2314
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2315
|
+
* @param {string} name Name of linkgroup
|
|
2316
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2317
|
+
* @param {*} [options] Override http request option.
|
|
2318
|
+
* @throws {RequiredError}
|
|
2319
|
+
*/
|
|
2320
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
2321
|
+
};
|
|
2322
|
+
/**
|
|
2323
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
2324
|
+
* @export
|
|
2325
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
2326
|
+
* @extends {BaseAPI}
|
|
2327
|
+
*/
|
|
2328
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
2329
|
+
/**
|
|
2330
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
2331
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
2332
|
+
* @param {*} [options] Override http request option.
|
|
2333
|
+
* @throws {RequiredError}
|
|
2334
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2335
|
+
*/
|
|
2336
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2337
|
+
/**
|
|
2338
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
2339
|
+
* @param {string} name Name of linkgroup
|
|
2340
|
+
* @param {*} [options] Override http request option.
|
|
2341
|
+
* @throws {RequiredError}
|
|
2342
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2343
|
+
*/
|
|
2344
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2345
|
+
/**
|
|
2346
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
2347
|
+
* @param {string} name Name of linkgroup
|
|
2348
|
+
* @param {*} [options] Override http request option.
|
|
2349
|
+
* @throws {RequiredError}
|
|
2350
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2351
|
+
*/
|
|
2352
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2353
|
+
/**
|
|
2354
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
2355
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2356
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2357
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2358
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2359
|
+
* @param {*} [options] Override http request option.
|
|
2360
|
+
* @throws {RequiredError}
|
|
2361
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2362
|
+
*/
|
|
2363
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2364
|
+
/**
|
|
2365
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2366
|
+
* @param {string} name Name of linkgroup
|
|
2367
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
2368
|
+
* @param {*} [options] Override http request option.
|
|
2369
|
+
* @throws {RequiredError}
|
|
2370
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2371
|
+
*/
|
|
2372
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2373
|
+
}
|
|
1751
2374
|
/**
|
|
1752
2375
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
1753
2376
|
* @export
|
|
@@ -1776,13 +2399,14 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
|
|
|
1776
2399
|
getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1777
2400
|
/**
|
|
1778
2401
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
1779
|
-
* @param {number} [page]
|
|
1780
|
-
* @param {number} [size] Size of one page
|
|
1781
|
-
* @param {string} [
|
|
2402
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2403
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2404
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2405
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
1782
2406
|
* @param {*} [options] Override http request option.
|
|
1783
2407
|
* @throws {RequiredError}
|
|
1784
2408
|
*/
|
|
1785
|
-
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number,
|
|
2409
|
+
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1786
2410
|
/**
|
|
1787
2411
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1788
2412
|
* @param {string} name Name of plugin
|
|
@@ -1820,13 +2444,14 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
|
|
|
1820
2444
|
getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
1821
2445
|
/**
|
|
1822
2446
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
1823
|
-
* @param {number} [page]
|
|
1824
|
-
* @param {number} [size] Size of one page
|
|
1825
|
-
* @param {string} [
|
|
2447
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2448
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2449
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2450
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
1826
2451
|
* @param {*} [options] Override http request option.
|
|
1827
2452
|
* @throws {RequiredError}
|
|
1828
2453
|
*/
|
|
1829
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number,
|
|
2454
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
1830
2455
|
/**
|
|
1831
2456
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1832
2457
|
* @param {string} name Name of plugin
|
|
@@ -1864,13 +2489,14 @@ declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configurat
|
|
|
1864
2489
|
getpluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<Plugin>;
|
|
1865
2490
|
/**
|
|
1866
2491
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
1867
|
-
* @param {number} [page]
|
|
1868
|
-
* @param {number} [size] Size of one page
|
|
1869
|
-
* @param {string} [
|
|
2492
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2493
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2494
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2495
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
1870
2496
|
* @param {*} [options] Override http request option.
|
|
1871
2497
|
* @throws {RequiredError}
|
|
1872
2498
|
*/
|
|
1873
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number,
|
|
2499
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
1874
2500
|
/**
|
|
1875
2501
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1876
2502
|
* @param {string} name Name of plugin
|
|
@@ -1913,14 +2539,15 @@ declare class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
1913
2539
|
getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
1914
2540
|
/**
|
|
1915
2541
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
1916
|
-
* @param {number} [page]
|
|
1917
|
-
* @param {number} [size] Size of one page
|
|
1918
|
-
* @param {string} [
|
|
2542
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2543
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2544
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2545
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
1919
2546
|
* @param {*} [options] Override http request option.
|
|
1920
2547
|
* @throws {RequiredError}
|
|
1921
2548
|
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
1922
2549
|
*/
|
|
1923
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number,
|
|
2550
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
1924
2551
|
/**
|
|
1925
2552
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1926
2553
|
* @param {string} name Name of plugin
|
|
@@ -1959,13 +2586,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configurat
|
|
|
1959
2586
|
getpluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1960
2587
|
/**
|
|
1961
2588
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
1962
|
-
* @param {number} [page]
|
|
1963
|
-
* @param {number} [size] Size of one page
|
|
1964
|
-
* @param {string} [
|
|
2589
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2590
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2591
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2592
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
1965
2593
|
* @param {*} [options] Override http request option.
|
|
1966
2594
|
* @throws {RequiredError}
|
|
1967
2595
|
*/
|
|
1968
|
-
listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number,
|
|
2596
|
+
listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1969
2597
|
/**
|
|
1970
2598
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
1971
2599
|
* @param {string} name Name of reverseproxy
|
|
@@ -2003,13 +2631,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
|
|
|
2003
2631
|
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
|
|
2004
2632
|
/**
|
|
2005
2633
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2006
|
-
* @param {number} [page]
|
|
2007
|
-
* @param {number} [size] Size of one page
|
|
2008
|
-
* @param {string} [
|
|
2634
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2635
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2636
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2637
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2009
2638
|
* @param {*} [options] Override http request option.
|
|
2010
2639
|
* @throws {RequiredError}
|
|
2011
2640
|
*/
|
|
2012
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number,
|
|
2641
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
|
|
2013
2642
|
/**
|
|
2014
2643
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2015
2644
|
* @param {string} name Name of reverseproxy
|
|
@@ -2047,13 +2676,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Conf
|
|
|
2047
2676
|
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<ReverseProxy>;
|
|
2048
2677
|
/**
|
|
2049
2678
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2050
|
-
* @param {number} [page]
|
|
2051
|
-
* @param {number} [size] Size of one page
|
|
2052
|
-
* @param {string} [
|
|
2679
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2680
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2681
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2682
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2053
2683
|
* @param {*} [options] Override http request option.
|
|
2054
2684
|
* @throws {RequiredError}
|
|
2055
2685
|
*/
|
|
2056
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number,
|
|
2686
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReverseProxyList>;
|
|
2057
2687
|
/**
|
|
2058
2688
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2059
2689
|
* @param {string} name Name of reverseproxy
|
|
@@ -2096,14 +2726,15 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2096
2726
|
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
2097
2727
|
/**
|
|
2098
2728
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2099
|
-
* @param {number} [page]
|
|
2100
|
-
* @param {number} [size] Size of one page
|
|
2101
|
-
* @param {string} [
|
|
2729
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2730
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2731
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2732
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2102
2733
|
* @param {*} [options] Override http request option.
|
|
2103
2734
|
* @throws {RequiredError}
|
|
2104
2735
|
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
2105
2736
|
*/
|
|
2106
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number,
|
|
2737
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxyList, any>>;
|
|
2107
2738
|
/**
|
|
2108
2739
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2109
2740
|
* @param {string} name Name of reverseproxy
|
|
@@ -2114,6 +2745,380 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2114
2745
|
*/
|
|
2115
2746
|
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
2116
2747
|
}
|
|
2748
|
+
/**
|
|
2749
|
+
* RunHaloTemplateV1alpha1AppleApi - axios parameter creator
|
|
2750
|
+
* @export
|
|
2751
|
+
*/
|
|
2752
|
+
declare const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2753
|
+
/**
|
|
2754
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2755
|
+
* @param {Apple} [apple] Fresh apple
|
|
2756
|
+
* @param {*} [options] Override http request option.
|
|
2757
|
+
* @throws {RequiredError}
|
|
2758
|
+
*/
|
|
2759
|
+
createrunHaloTemplateV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2760
|
+
/**
|
|
2761
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2762
|
+
* @param {string} name Name of apple
|
|
2763
|
+
* @param {*} [options] Override http request option.
|
|
2764
|
+
* @throws {RequiredError}
|
|
2765
|
+
*/
|
|
2766
|
+
deleterunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2767
|
+
/**
|
|
2768
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2769
|
+
* @param {string} name Name of apple
|
|
2770
|
+
* @param {*} [options] Override http request option.
|
|
2771
|
+
* @throws {RequiredError}
|
|
2772
|
+
*/
|
|
2773
|
+
getrunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2774
|
+
/**
|
|
2775
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2776
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2777
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2778
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2779
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2780
|
+
* @param {*} [options] Override http request option.
|
|
2781
|
+
* @throws {RequiredError}
|
|
2782
|
+
*/
|
|
2783
|
+
listrunHaloTemplateV1alpha1Apple: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2784
|
+
/**
|
|
2785
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2786
|
+
* @param {string} name Name of apple
|
|
2787
|
+
* @param {Apple} [apple] Updated apple
|
|
2788
|
+
* @param {*} [options] Override http request option.
|
|
2789
|
+
* @throws {RequiredError}
|
|
2790
|
+
*/
|
|
2791
|
+
updaterunHaloTemplateV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2792
|
+
};
|
|
2793
|
+
/**
|
|
2794
|
+
* RunHaloTemplateV1alpha1AppleApi - functional programming interface
|
|
2795
|
+
* @export
|
|
2796
|
+
*/
|
|
2797
|
+
declare const RunHaloTemplateV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
2798
|
+
/**
|
|
2799
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2800
|
+
* @param {Apple} [apple] Fresh apple
|
|
2801
|
+
* @param {*} [options] Override http request option.
|
|
2802
|
+
* @throws {RequiredError}
|
|
2803
|
+
*/
|
|
2804
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2805
|
+
/**
|
|
2806
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2807
|
+
* @param {string} name Name of apple
|
|
2808
|
+
* @param {*} [options] Override http request option.
|
|
2809
|
+
* @throws {RequiredError}
|
|
2810
|
+
*/
|
|
2811
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2812
|
+
/**
|
|
2813
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2814
|
+
* @param {string} name Name of apple
|
|
2815
|
+
* @param {*} [options] Override http request option.
|
|
2816
|
+
* @throws {RequiredError}
|
|
2817
|
+
*/
|
|
2818
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2819
|
+
/**
|
|
2820
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2821
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2822
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2823
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2824
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2825
|
+
* @param {*} [options] Override http request option.
|
|
2826
|
+
* @throws {RequiredError}
|
|
2827
|
+
*/
|
|
2828
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2829
|
+
/**
|
|
2830
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2831
|
+
* @param {string} name Name of apple
|
|
2832
|
+
* @param {Apple} [apple] Updated apple
|
|
2833
|
+
* @param {*} [options] Override http request option.
|
|
2834
|
+
* @throws {RequiredError}
|
|
2835
|
+
*/
|
|
2836
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2837
|
+
};
|
|
2838
|
+
/**
|
|
2839
|
+
* RunHaloTemplateV1alpha1AppleApi - factory interface
|
|
2840
|
+
* @export
|
|
2841
|
+
*/
|
|
2842
|
+
declare const RunHaloTemplateV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2843
|
+
/**
|
|
2844
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2845
|
+
* @param {Apple} [apple] Fresh apple
|
|
2846
|
+
* @param {*} [options] Override http request option.
|
|
2847
|
+
* @throws {RequiredError}
|
|
2848
|
+
*/
|
|
2849
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2850
|
+
/**
|
|
2851
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2852
|
+
* @param {string} name Name of apple
|
|
2853
|
+
* @param {*} [options] Override http request option.
|
|
2854
|
+
* @throws {RequiredError}
|
|
2855
|
+
*/
|
|
2856
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
2857
|
+
/**
|
|
2858
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2859
|
+
* @param {string} name Name of apple
|
|
2860
|
+
* @param {*} [options] Override http request option.
|
|
2861
|
+
* @throws {RequiredError}
|
|
2862
|
+
*/
|
|
2863
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
2864
|
+
/**
|
|
2865
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2866
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2867
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2868
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2869
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2870
|
+
* @param {*} [options] Override http request option.
|
|
2871
|
+
* @throws {RequiredError}
|
|
2872
|
+
*/
|
|
2873
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2874
|
+
/**
|
|
2875
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2876
|
+
* @param {string} name Name of apple
|
|
2877
|
+
* @param {Apple} [apple] Updated apple
|
|
2878
|
+
* @param {*} [options] Override http request option.
|
|
2879
|
+
* @throws {RequiredError}
|
|
2880
|
+
*/
|
|
2881
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2882
|
+
};
|
|
2883
|
+
/**
|
|
2884
|
+
* RunHaloTemplateV1alpha1AppleApi - object-oriented interface
|
|
2885
|
+
* @export
|
|
2886
|
+
* @class RunHaloTemplateV1alpha1AppleApi
|
|
2887
|
+
* @extends {BaseAPI}
|
|
2888
|
+
*/
|
|
2889
|
+
declare class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
2890
|
+
/**
|
|
2891
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2892
|
+
* @param {Apple} [apple] Fresh apple
|
|
2893
|
+
* @param {*} [options] Override http request option.
|
|
2894
|
+
* @throws {RequiredError}
|
|
2895
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2896
|
+
*/
|
|
2897
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2898
|
+
/**
|
|
2899
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2900
|
+
* @param {string} name Name of apple
|
|
2901
|
+
* @param {*} [options] Override http request option.
|
|
2902
|
+
* @throws {RequiredError}
|
|
2903
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2904
|
+
*/
|
|
2905
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2906
|
+
/**
|
|
2907
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2908
|
+
* @param {string} name Name of apple
|
|
2909
|
+
* @param {*} [options] Override http request option.
|
|
2910
|
+
* @throws {RequiredError}
|
|
2911
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2912
|
+
*/
|
|
2913
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2914
|
+
/**
|
|
2915
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2916
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2917
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2918
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2919
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2920
|
+
* @param {*} [options] Override http request option.
|
|
2921
|
+
* @throws {RequiredError}
|
|
2922
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2923
|
+
*/
|
|
2924
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2925
|
+
/**
|
|
2926
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2927
|
+
* @param {string} name Name of apple
|
|
2928
|
+
* @param {Apple} [apple] Updated apple
|
|
2929
|
+
* @param {*} [options] Override http request option.
|
|
2930
|
+
* @throws {RequiredError}
|
|
2931
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2932
|
+
*/
|
|
2933
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2934
|
+
}
|
|
2935
|
+
/**
|
|
2936
|
+
* ThemeHaloRunV1alpha1ThemeApi - axios parameter creator
|
|
2937
|
+
* @export
|
|
2938
|
+
*/
|
|
2939
|
+
declare const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2940
|
+
/**
|
|
2941
|
+
* Create theme.halo.run/v1alpha1/Theme
|
|
2942
|
+
* @param {Theme} [theme] Fresh theme
|
|
2943
|
+
* @param {*} [options] Override http request option.
|
|
2944
|
+
* @throws {RequiredError}
|
|
2945
|
+
*/
|
|
2946
|
+
createthemeHaloRunV1alpha1Theme: (theme?: Theme, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2947
|
+
/**
|
|
2948
|
+
* Delete theme.halo.run/v1alpha1/Theme
|
|
2949
|
+
* @param {string} name Name of theme
|
|
2950
|
+
* @param {*} [options] Override http request option.
|
|
2951
|
+
* @throws {RequiredError}
|
|
2952
|
+
*/
|
|
2953
|
+
deletethemeHaloRunV1alpha1Theme: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2954
|
+
/**
|
|
2955
|
+
* Get theme.halo.run/v1alpha1/Theme
|
|
2956
|
+
* @param {string} name Name of theme
|
|
2957
|
+
* @param {*} [options] Override http request option.
|
|
2958
|
+
* @throws {RequiredError}
|
|
2959
|
+
*/
|
|
2960
|
+
getthemeHaloRunV1alpha1Theme: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2961
|
+
/**
|
|
2962
|
+
* List theme.halo.run/v1alpha1/Theme
|
|
2963
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2964
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2965
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2966
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2967
|
+
* @param {*} [options] Override http request option.
|
|
2968
|
+
* @throws {RequiredError}
|
|
2969
|
+
*/
|
|
2970
|
+
listthemeHaloRunV1alpha1Theme: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2971
|
+
/**
|
|
2972
|
+
* Update theme.halo.run/v1alpha1/Theme
|
|
2973
|
+
* @param {string} name Name of theme
|
|
2974
|
+
* @param {Theme} [theme] Updated theme
|
|
2975
|
+
* @param {*} [options] Override http request option.
|
|
2976
|
+
* @throws {RequiredError}
|
|
2977
|
+
*/
|
|
2978
|
+
updatethemeHaloRunV1alpha1Theme: (name: string, theme?: Theme, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2979
|
+
};
|
|
2980
|
+
/**
|
|
2981
|
+
* ThemeHaloRunV1alpha1ThemeApi - functional programming interface
|
|
2982
|
+
* @export
|
|
2983
|
+
*/
|
|
2984
|
+
declare const ThemeHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
|
|
2985
|
+
/**
|
|
2986
|
+
* Create theme.halo.run/v1alpha1/Theme
|
|
2987
|
+
* @param {Theme} [theme] Fresh theme
|
|
2988
|
+
* @param {*} [options] Override http request option.
|
|
2989
|
+
* @throws {RequiredError}
|
|
2990
|
+
*/
|
|
2991
|
+
createthemeHaloRunV1alpha1Theme(theme?: Theme, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
2992
|
+
/**
|
|
2993
|
+
* Delete theme.halo.run/v1alpha1/Theme
|
|
2994
|
+
* @param {string} name Name of theme
|
|
2995
|
+
* @param {*} [options] Override http request option.
|
|
2996
|
+
* @throws {RequiredError}
|
|
2997
|
+
*/
|
|
2998
|
+
deletethemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2999
|
+
/**
|
|
3000
|
+
* Get theme.halo.run/v1alpha1/Theme
|
|
3001
|
+
* @param {string} name Name of theme
|
|
3002
|
+
* @param {*} [options] Override http request option.
|
|
3003
|
+
* @throws {RequiredError}
|
|
3004
|
+
*/
|
|
3005
|
+
getthemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
3006
|
+
/**
|
|
3007
|
+
* List theme.halo.run/v1alpha1/Theme
|
|
3008
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3009
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3010
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3011
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3012
|
+
* @param {*} [options] Override http request option.
|
|
3013
|
+
* @throws {RequiredError}
|
|
3014
|
+
*/
|
|
3015
|
+
listthemeHaloRunV1alpha1Theme(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
3016
|
+
/**
|
|
3017
|
+
* Update theme.halo.run/v1alpha1/Theme
|
|
3018
|
+
* @param {string} name Name of theme
|
|
3019
|
+
* @param {Theme} [theme] Updated theme
|
|
3020
|
+
* @param {*} [options] Override http request option.
|
|
3021
|
+
* @throws {RequiredError}
|
|
3022
|
+
*/
|
|
3023
|
+
updatethemeHaloRunV1alpha1Theme(name: string, theme?: Theme, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
3024
|
+
};
|
|
3025
|
+
/**
|
|
3026
|
+
* ThemeHaloRunV1alpha1ThemeApi - factory interface
|
|
3027
|
+
* @export
|
|
3028
|
+
*/
|
|
3029
|
+
declare const ThemeHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3030
|
+
/**
|
|
3031
|
+
* Create theme.halo.run/v1alpha1/Theme
|
|
3032
|
+
* @param {Theme} [theme] Fresh theme
|
|
3033
|
+
* @param {*} [options] Override http request option.
|
|
3034
|
+
* @throws {RequiredError}
|
|
3035
|
+
*/
|
|
3036
|
+
createthemeHaloRunV1alpha1Theme(theme?: Theme, options?: any): AxiosPromise<Theme>;
|
|
3037
|
+
/**
|
|
3038
|
+
* Delete theme.halo.run/v1alpha1/Theme
|
|
3039
|
+
* @param {string} name Name of theme
|
|
3040
|
+
* @param {*} [options] Override http request option.
|
|
3041
|
+
* @throws {RequiredError}
|
|
3042
|
+
*/
|
|
3043
|
+
deletethemeHaloRunV1alpha1Theme(name: string, options?: any): AxiosPromise<void>;
|
|
3044
|
+
/**
|
|
3045
|
+
* Get theme.halo.run/v1alpha1/Theme
|
|
3046
|
+
* @param {string} name Name of theme
|
|
3047
|
+
* @param {*} [options] Override http request option.
|
|
3048
|
+
* @throws {RequiredError}
|
|
3049
|
+
*/
|
|
3050
|
+
getthemeHaloRunV1alpha1Theme(name: string, options?: any): AxiosPromise<Theme>;
|
|
3051
|
+
/**
|
|
3052
|
+
* List theme.halo.run/v1alpha1/Theme
|
|
3053
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3054
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3055
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3056
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3057
|
+
* @param {*} [options] Override http request option.
|
|
3058
|
+
* @throws {RequiredError}
|
|
3059
|
+
*/
|
|
3060
|
+
listthemeHaloRunV1alpha1Theme(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
|
|
3061
|
+
/**
|
|
3062
|
+
* Update theme.halo.run/v1alpha1/Theme
|
|
3063
|
+
* @param {string} name Name of theme
|
|
3064
|
+
* @param {Theme} [theme] Updated theme
|
|
3065
|
+
* @param {*} [options] Override http request option.
|
|
3066
|
+
* @throws {RequiredError}
|
|
3067
|
+
*/
|
|
3068
|
+
updatethemeHaloRunV1alpha1Theme(name: string, theme?: Theme, options?: any): AxiosPromise<Theme>;
|
|
3069
|
+
};
|
|
3070
|
+
/**
|
|
3071
|
+
* ThemeHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
3072
|
+
* @export
|
|
3073
|
+
* @class ThemeHaloRunV1alpha1ThemeApi
|
|
3074
|
+
* @extends {BaseAPI}
|
|
3075
|
+
*/
|
|
3076
|
+
declare class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
3077
|
+
/**
|
|
3078
|
+
* Create theme.halo.run/v1alpha1/Theme
|
|
3079
|
+
* @param {Theme} [theme] Fresh theme
|
|
3080
|
+
* @param {*} [options] Override http request option.
|
|
3081
|
+
* @throws {RequiredError}
|
|
3082
|
+
* @memberof ThemeHaloRunV1alpha1ThemeApi
|
|
3083
|
+
*/
|
|
3084
|
+
createthemeHaloRunV1alpha1Theme(theme?: Theme, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
3085
|
+
/**
|
|
3086
|
+
* Delete theme.halo.run/v1alpha1/Theme
|
|
3087
|
+
* @param {string} name Name of theme
|
|
3088
|
+
* @param {*} [options] Override http request option.
|
|
3089
|
+
* @throws {RequiredError}
|
|
3090
|
+
* @memberof ThemeHaloRunV1alpha1ThemeApi
|
|
3091
|
+
*/
|
|
3092
|
+
deletethemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3093
|
+
/**
|
|
3094
|
+
* Get theme.halo.run/v1alpha1/Theme
|
|
3095
|
+
* @param {string} name Name of theme
|
|
3096
|
+
* @param {*} [options] Override http request option.
|
|
3097
|
+
* @throws {RequiredError}
|
|
3098
|
+
* @memberof ThemeHaloRunV1alpha1ThemeApi
|
|
3099
|
+
*/
|
|
3100
|
+
getthemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
3101
|
+
/**
|
|
3102
|
+
* List theme.halo.run/v1alpha1/Theme
|
|
3103
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3104
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3105
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3106
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3107
|
+
* @param {*} [options] Override http request option.
|
|
3108
|
+
* @throws {RequiredError}
|
|
3109
|
+
* @memberof ThemeHaloRunV1alpha1ThemeApi
|
|
3110
|
+
*/
|
|
3111
|
+
listthemeHaloRunV1alpha1Theme(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ThemeList, any>>;
|
|
3112
|
+
/**
|
|
3113
|
+
* Update theme.halo.run/v1alpha1/Theme
|
|
3114
|
+
* @param {string} name Name of theme
|
|
3115
|
+
* @param {Theme} [theme] Updated theme
|
|
3116
|
+
* @param {*} [options] Override http request option.
|
|
3117
|
+
* @throws {RequiredError}
|
|
3118
|
+
* @memberof ThemeHaloRunV1alpha1ThemeApi
|
|
3119
|
+
*/
|
|
3120
|
+
updatethemeHaloRunV1alpha1Theme(name: string, theme?: Theme, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
3121
|
+
}
|
|
2117
3122
|
/**
|
|
2118
3123
|
* V1alpha1ConfigMapApi - axios parameter creator
|
|
2119
3124
|
* @export
|
|
@@ -2142,13 +3147,14 @@ declare const V1alpha1ConfigMapApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2142
3147
|
getv1alpha1ConfigMap: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2143
3148
|
/**
|
|
2144
3149
|
* List v1alpha1/ConfigMap
|
|
2145
|
-
* @param {number} [page]
|
|
2146
|
-
* @param {number} [size] Size of one page
|
|
2147
|
-
* @param {string} [
|
|
3150
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3151
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3152
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3153
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2148
3154
|
* @param {*} [options] Override http request option.
|
|
2149
3155
|
* @throws {RequiredError}
|
|
2150
3156
|
*/
|
|
2151
|
-
listv1alpha1ConfigMap: (page?: number, size?: number,
|
|
3157
|
+
listv1alpha1ConfigMap: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2152
3158
|
/**
|
|
2153
3159
|
* Update v1alpha1/ConfigMap
|
|
2154
3160
|
* @param {string} name Name of configmap
|
|
@@ -2186,13 +3192,14 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
|
|
|
2186
3192
|
getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
2187
3193
|
/**
|
|
2188
3194
|
* List v1alpha1/ConfigMap
|
|
2189
|
-
* @param {number} [page]
|
|
2190
|
-
* @param {number} [size] Size of one page
|
|
2191
|
-
* @param {string} [
|
|
3195
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3196
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3197
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3198
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2192
3199
|
* @param {*} [options] Override http request option.
|
|
2193
3200
|
* @throws {RequiredError}
|
|
2194
3201
|
*/
|
|
2195
|
-
listv1alpha1ConfigMap(page?: number, size?: number,
|
|
3202
|
+
listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
|
|
2196
3203
|
/**
|
|
2197
3204
|
* Update v1alpha1/ConfigMap
|
|
2198
3205
|
* @param {string} name Name of configmap
|
|
@@ -2230,13 +3237,14 @@ declare const V1alpha1ConfigMapApiFactory: (configuration?: Configuration, baseP
|
|
|
2230
3237
|
getv1alpha1ConfigMap(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
2231
3238
|
/**
|
|
2232
3239
|
* List v1alpha1/ConfigMap
|
|
2233
|
-
* @param {number} [page]
|
|
2234
|
-
* @param {number} [size] Size of one page
|
|
2235
|
-
* @param {string} [
|
|
3240
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3241
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3242
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3243
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2236
3244
|
* @param {*} [options] Override http request option.
|
|
2237
3245
|
* @throws {RequiredError}
|
|
2238
3246
|
*/
|
|
2239
|
-
listv1alpha1ConfigMap(page?: number, size?: number,
|
|
3247
|
+
listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ConfigMapList>;
|
|
2240
3248
|
/**
|
|
2241
3249
|
* Update v1alpha1/ConfigMap
|
|
2242
3250
|
* @param {string} name Name of configmap
|
|
@@ -2279,14 +3287,15 @@ declare class V1alpha1ConfigMapApi extends BaseAPI {
|
|
|
2279
3287
|
getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
2280
3288
|
/**
|
|
2281
3289
|
* List v1alpha1/ConfigMap
|
|
2282
|
-
* @param {number} [page]
|
|
2283
|
-
* @param {number} [size] Size of one page
|
|
2284
|
-
* @param {string} [
|
|
3290
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3291
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3292
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3293
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2285
3294
|
* @param {*} [options] Override http request option.
|
|
2286
3295
|
* @throws {RequiredError}
|
|
2287
3296
|
* @memberof V1alpha1ConfigMapApi
|
|
2288
3297
|
*/
|
|
2289
|
-
listv1alpha1ConfigMap(page?: number, size?: number,
|
|
3298
|
+
listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMapList, any>>;
|
|
2290
3299
|
/**
|
|
2291
3300
|
* Update v1alpha1/ConfigMap
|
|
2292
3301
|
* @param {string} name Name of configmap
|
|
@@ -2325,13 +3334,14 @@ declare const V1alpha1PersonalAccessTokenApiAxiosParamCreator: (configuration?:
|
|
|
2325
3334
|
getv1alpha1PersonalAccessToken: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2326
3335
|
/**
|
|
2327
3336
|
* List v1alpha1/PersonalAccessToken
|
|
2328
|
-
* @param {number} [page]
|
|
2329
|
-
* @param {number} [size] Size of one page
|
|
2330
|
-
* @param {string} [
|
|
3337
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3338
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3339
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3340
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2331
3341
|
* @param {*} [options] Override http request option.
|
|
2332
3342
|
* @throws {RequiredError}
|
|
2333
3343
|
*/
|
|
2334
|
-
listv1alpha1PersonalAccessToken: (page?: number, size?: number,
|
|
3344
|
+
listv1alpha1PersonalAccessToken: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2335
3345
|
/**
|
|
2336
3346
|
* Update v1alpha1/PersonalAccessToken
|
|
2337
3347
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2369,13 +3379,14 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
|
|
|
2369
3379
|
getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessToken>>;
|
|
2370
3380
|
/**
|
|
2371
3381
|
* List v1alpha1/PersonalAccessToken
|
|
2372
|
-
* @param {number} [page]
|
|
2373
|
-
* @param {number} [size] Size of one page
|
|
2374
|
-
* @param {string} [
|
|
3382
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3383
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3384
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3385
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2375
3386
|
* @param {*} [options] Override http request option.
|
|
2376
3387
|
* @throws {RequiredError}
|
|
2377
3388
|
*/
|
|
2378
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number,
|
|
3389
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
|
|
2379
3390
|
/**
|
|
2380
3391
|
* Update v1alpha1/PersonalAccessToken
|
|
2381
3392
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2413,13 +3424,14 @@ declare const V1alpha1PersonalAccessTokenApiFactory: (configuration?: Configurat
|
|
|
2413
3424
|
getv1alpha1PersonalAccessToken(name: string, options?: any): AxiosPromise<PersonalAccessToken>;
|
|
2414
3425
|
/**
|
|
2415
3426
|
* List v1alpha1/PersonalAccessToken
|
|
2416
|
-
* @param {number} [page]
|
|
2417
|
-
* @param {number} [size] Size of one page
|
|
2418
|
-
* @param {string} [
|
|
3427
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3428
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3429
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3430
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2419
3431
|
* @param {*} [options] Override http request option.
|
|
2420
3432
|
* @throws {RequiredError}
|
|
2421
3433
|
*/
|
|
2422
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number,
|
|
3434
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PersonalAccessTokenList>;
|
|
2423
3435
|
/**
|
|
2424
3436
|
* Update v1alpha1/PersonalAccessToken
|
|
2425
3437
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2462,14 +3474,15 @@ declare class V1alpha1PersonalAccessTokenApi extends BaseAPI {
|
|
|
2462
3474
|
getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken, any>>;
|
|
2463
3475
|
/**
|
|
2464
3476
|
* List v1alpha1/PersonalAccessToken
|
|
2465
|
-
* @param {number} [page]
|
|
2466
|
-
* @param {number} [size] Size of one page
|
|
2467
|
-
* @param {string} [
|
|
3477
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3478
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3479
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3480
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2468
3481
|
* @param {*} [options] Override http request option.
|
|
2469
3482
|
* @throws {RequiredError}
|
|
2470
3483
|
* @memberof V1alpha1PersonalAccessTokenApi
|
|
2471
3484
|
*/
|
|
2472
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number,
|
|
3485
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessTokenList, any>>;
|
|
2473
3486
|
/**
|
|
2474
3487
|
* Update v1alpha1/PersonalAccessToken
|
|
2475
3488
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2508,13 +3521,14 @@ declare const V1alpha1RoleApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2508
3521
|
getv1alpha1Role: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2509
3522
|
/**
|
|
2510
3523
|
* List v1alpha1/Role
|
|
2511
|
-
* @param {number} [page]
|
|
2512
|
-
* @param {number} [size] Size of one page
|
|
2513
|
-
* @param {string} [
|
|
3524
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3525
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3526
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3527
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2514
3528
|
* @param {*} [options] Override http request option.
|
|
2515
3529
|
* @throws {RequiredError}
|
|
2516
3530
|
*/
|
|
2517
|
-
listv1alpha1Role: (page?: number, size?: number,
|
|
3531
|
+
listv1alpha1Role: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2518
3532
|
/**
|
|
2519
3533
|
* Update v1alpha1/Role
|
|
2520
3534
|
* @param {string} name Name of role
|
|
@@ -2552,13 +3566,14 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
|
|
|
2552
3566
|
getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
|
|
2553
3567
|
/**
|
|
2554
3568
|
* List v1alpha1/Role
|
|
2555
|
-
* @param {number} [page]
|
|
2556
|
-
* @param {number} [size] Size of one page
|
|
2557
|
-
* @param {string} [
|
|
3569
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3570
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3571
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3572
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2558
3573
|
* @param {*} [options] Override http request option.
|
|
2559
3574
|
* @throws {RequiredError}
|
|
2560
3575
|
*/
|
|
2561
|
-
listv1alpha1Role(page?: number, size?: number,
|
|
3576
|
+
listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
|
|
2562
3577
|
/**
|
|
2563
3578
|
* Update v1alpha1/Role
|
|
2564
3579
|
* @param {string} name Name of role
|
|
@@ -2596,13 +3611,14 @@ declare const V1alpha1RoleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2596
3611
|
getv1alpha1Role(name: string, options?: any): AxiosPromise<Role>;
|
|
2597
3612
|
/**
|
|
2598
3613
|
* List v1alpha1/Role
|
|
2599
|
-
* @param {number} [page]
|
|
2600
|
-
* @param {number} [size] Size of one page
|
|
2601
|
-
* @param {string} [
|
|
3614
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3615
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3616
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3617
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2602
3618
|
* @param {*} [options] Override http request option.
|
|
2603
3619
|
* @throws {RequiredError}
|
|
2604
3620
|
*/
|
|
2605
|
-
listv1alpha1Role(page?: number, size?: number,
|
|
3621
|
+
listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<RoleList>;
|
|
2606
3622
|
/**
|
|
2607
3623
|
* Update v1alpha1/Role
|
|
2608
3624
|
* @param {string} name Name of role
|
|
@@ -2645,14 +3661,15 @@ declare class V1alpha1RoleApi extends BaseAPI {
|
|
|
2645
3661
|
getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
|
|
2646
3662
|
/**
|
|
2647
3663
|
* List v1alpha1/Role
|
|
2648
|
-
* @param {number} [page]
|
|
2649
|
-
* @param {number} [size] Size of one page
|
|
2650
|
-
* @param {string} [
|
|
3664
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3665
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3666
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3667
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2651
3668
|
* @param {*} [options] Override http request option.
|
|
2652
3669
|
* @throws {RequiredError}
|
|
2653
3670
|
* @memberof V1alpha1RoleApi
|
|
2654
3671
|
*/
|
|
2655
|
-
listv1alpha1Role(page?: number, size?: number,
|
|
3672
|
+
listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleList, any>>;
|
|
2656
3673
|
/**
|
|
2657
3674
|
* Update v1alpha1/Role
|
|
2658
3675
|
* @param {string} name Name of role
|
|
@@ -2691,13 +3708,14 @@ declare const V1alpha1RoleBindingApiAxiosParamCreator: (configuration?: Configur
|
|
|
2691
3708
|
getv1alpha1RoleBinding: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2692
3709
|
/**
|
|
2693
3710
|
* List v1alpha1/RoleBinding
|
|
2694
|
-
* @param {number} [page]
|
|
2695
|
-
* @param {number} [size] Size of one page
|
|
2696
|
-
* @param {string} [
|
|
3711
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3712
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3713
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3714
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2697
3715
|
* @param {*} [options] Override http request option.
|
|
2698
3716
|
* @throws {RequiredError}
|
|
2699
3717
|
*/
|
|
2700
|
-
listv1alpha1RoleBinding: (page?: number, size?: number,
|
|
3718
|
+
listv1alpha1RoleBinding: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2701
3719
|
/**
|
|
2702
3720
|
* Update v1alpha1/RoleBinding
|
|
2703
3721
|
* @param {string} name Name of rolebinding
|
|
@@ -2735,13 +3753,14 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
|
|
|
2735
3753
|
getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBinding>>;
|
|
2736
3754
|
/**
|
|
2737
3755
|
* List v1alpha1/RoleBinding
|
|
2738
|
-
* @param {number} [page]
|
|
2739
|
-
* @param {number} [size] Size of one page
|
|
2740
|
-
* @param {string} [
|
|
3756
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3757
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3758
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3759
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2741
3760
|
* @param {*} [options] Override http request option.
|
|
2742
3761
|
* @throws {RequiredError}
|
|
2743
3762
|
*/
|
|
2744
|
-
listv1alpha1RoleBinding(page?: number, size?: number,
|
|
3763
|
+
listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
|
|
2745
3764
|
/**
|
|
2746
3765
|
* Update v1alpha1/RoleBinding
|
|
2747
3766
|
* @param {string} name Name of rolebinding
|
|
@@ -2779,13 +3798,14 @@ declare const V1alpha1RoleBindingApiFactory: (configuration?: Configuration, bas
|
|
|
2779
3798
|
getv1alpha1RoleBinding(name: string, options?: any): AxiosPromise<RoleBinding>;
|
|
2780
3799
|
/**
|
|
2781
3800
|
* List v1alpha1/RoleBinding
|
|
2782
|
-
* @param {number} [page]
|
|
2783
|
-
* @param {number} [size] Size of one page
|
|
2784
|
-
* @param {string} [
|
|
3801
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3802
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3803
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3804
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2785
3805
|
* @param {*} [options] Override http request option.
|
|
2786
3806
|
* @throws {RequiredError}
|
|
2787
3807
|
*/
|
|
2788
|
-
listv1alpha1RoleBinding(page?: number, size?: number,
|
|
3808
|
+
listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<RoleBindingList>;
|
|
2789
3809
|
/**
|
|
2790
3810
|
* Update v1alpha1/RoleBinding
|
|
2791
3811
|
* @param {string} name Name of rolebinding
|
|
@@ -2828,14 +3848,15 @@ declare class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
2828
3848
|
getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
|
|
2829
3849
|
/**
|
|
2830
3850
|
* List v1alpha1/RoleBinding
|
|
2831
|
-
* @param {number} [page]
|
|
2832
|
-
* @param {number} [size] Size of one page
|
|
2833
|
-
* @param {string} [
|
|
3851
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3852
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3853
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3854
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2834
3855
|
* @param {*} [options] Override http request option.
|
|
2835
3856
|
* @throws {RequiredError}
|
|
2836
3857
|
* @memberof V1alpha1RoleBindingApi
|
|
2837
3858
|
*/
|
|
2838
|
-
listv1alpha1RoleBinding(page?: number, size?: number,
|
|
3859
|
+
listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBindingList, any>>;
|
|
2839
3860
|
/**
|
|
2840
3861
|
* Update v1alpha1/RoleBinding
|
|
2841
3862
|
* @param {string} name Name of rolebinding
|
|
@@ -2874,13 +3895,14 @@ declare const V1alpha1SettingApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2874
3895
|
getv1alpha1Setting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2875
3896
|
/**
|
|
2876
3897
|
* List v1alpha1/Setting
|
|
2877
|
-
* @param {number} [page]
|
|
2878
|
-
* @param {number} [size] Size of one page
|
|
2879
|
-
* @param {string} [
|
|
3898
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3899
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3900
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3901
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2880
3902
|
* @param {*} [options] Override http request option.
|
|
2881
3903
|
* @throws {RequiredError}
|
|
2882
3904
|
*/
|
|
2883
|
-
listv1alpha1Setting: (page?: number, size?: number,
|
|
3905
|
+
listv1alpha1Setting: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2884
3906
|
/**
|
|
2885
3907
|
* Update v1alpha1/Setting
|
|
2886
3908
|
* @param {string} name Name of setting
|
|
@@ -2918,13 +3940,14 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
|
|
|
2918
3940
|
getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
2919
3941
|
/**
|
|
2920
3942
|
* List v1alpha1/Setting
|
|
2921
|
-
* @param {number} [page]
|
|
2922
|
-
* @param {number} [size] Size of one page
|
|
2923
|
-
* @param {string} [
|
|
3943
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3944
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3945
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3946
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2924
3947
|
* @param {*} [options] Override http request option.
|
|
2925
3948
|
* @throws {RequiredError}
|
|
2926
3949
|
*/
|
|
2927
|
-
listv1alpha1Setting(page?: number, size?: number,
|
|
3950
|
+
listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
|
|
2928
3951
|
/**
|
|
2929
3952
|
* Update v1alpha1/Setting
|
|
2930
3953
|
* @param {string} name Name of setting
|
|
@@ -2962,13 +3985,14 @@ declare const V1alpha1SettingApiFactory: (configuration?: Configuration, basePat
|
|
|
2962
3985
|
getv1alpha1Setting(name: string, options?: any): AxiosPromise<Setting>;
|
|
2963
3986
|
/**
|
|
2964
3987
|
* List v1alpha1/Setting
|
|
2965
|
-
* @param {number} [page]
|
|
2966
|
-
* @param {number} [size] Size of one page
|
|
2967
|
-
* @param {string} [
|
|
3988
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3989
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3990
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3991
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2968
3992
|
* @param {*} [options] Override http request option.
|
|
2969
3993
|
* @throws {RequiredError}
|
|
2970
3994
|
*/
|
|
2971
|
-
listv1alpha1Setting(page?: number, size?: number,
|
|
3995
|
+
listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SettingList>;
|
|
2972
3996
|
/**
|
|
2973
3997
|
* Update v1alpha1/Setting
|
|
2974
3998
|
* @param {string} name Name of setting
|
|
@@ -3011,14 +4035,15 @@ declare class V1alpha1SettingApi extends BaseAPI {
|
|
|
3011
4035
|
getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
|
|
3012
4036
|
/**
|
|
3013
4037
|
* List v1alpha1/Setting
|
|
3014
|
-
* @param {number} [page]
|
|
3015
|
-
* @param {number} [size] Size of one page
|
|
3016
|
-
* @param {string} [
|
|
4038
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
4039
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4040
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
4041
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3017
4042
|
* @param {*} [options] Override http request option.
|
|
3018
4043
|
* @throws {RequiredError}
|
|
3019
4044
|
* @memberof V1alpha1SettingApi
|
|
3020
4045
|
*/
|
|
3021
|
-
listv1alpha1Setting(page?: number, size?: number,
|
|
4046
|
+
listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SettingList, any>>;
|
|
3022
4047
|
/**
|
|
3023
4048
|
* Update v1alpha1/Setting
|
|
3024
4049
|
* @param {string} name Name of setting
|
|
@@ -3057,13 +4082,14 @@ declare const V1alpha1UserApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3057
4082
|
getv1alpha1User: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3058
4083
|
/**
|
|
3059
4084
|
* List v1alpha1/User
|
|
3060
|
-
* @param {number} [page]
|
|
3061
|
-
* @param {number} [size] Size of one page
|
|
3062
|
-
* @param {string} [
|
|
4085
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
4086
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4087
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
4088
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3063
4089
|
* @param {*} [options] Override http request option.
|
|
3064
4090
|
* @throws {RequiredError}
|
|
3065
4091
|
*/
|
|
3066
|
-
listv1alpha1User: (page?: number, size?: number,
|
|
4092
|
+
listv1alpha1User: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3067
4093
|
/**
|
|
3068
4094
|
* Update v1alpha1/User
|
|
3069
4095
|
* @param {string} name Name of user
|
|
@@ -3101,13 +4127,14 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
3101
4127
|
getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
3102
4128
|
/**
|
|
3103
4129
|
* List v1alpha1/User
|
|
3104
|
-
* @param {number} [page]
|
|
3105
|
-
* @param {number} [size] Size of one page
|
|
3106
|
-
* @param {string} [
|
|
4130
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
4131
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4132
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
4133
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3107
4134
|
* @param {*} [options] Override http request option.
|
|
3108
4135
|
* @throws {RequiredError}
|
|
3109
4136
|
*/
|
|
3110
|
-
listv1alpha1User(page?: number, size?: number,
|
|
4137
|
+
listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
|
|
3111
4138
|
/**
|
|
3112
4139
|
* Update v1alpha1/User
|
|
3113
4140
|
* @param {string} name Name of user
|
|
@@ -3145,13 +4172,14 @@ declare const V1alpha1UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3145
4172
|
getv1alpha1User(name: string, options?: any): AxiosPromise<User>;
|
|
3146
4173
|
/**
|
|
3147
4174
|
* List v1alpha1/User
|
|
3148
|
-
* @param {number} [page]
|
|
3149
|
-
* @param {number} [size] Size of one page
|
|
3150
|
-
* @param {string} [
|
|
4175
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
4176
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4177
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
4178
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3151
4179
|
* @param {*} [options] Override http request option.
|
|
3152
4180
|
* @throws {RequiredError}
|
|
3153
4181
|
*/
|
|
3154
|
-
listv1alpha1User(page?: number, size?: number,
|
|
4182
|
+
listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<UserList>;
|
|
3155
4183
|
/**
|
|
3156
4184
|
* Update v1alpha1/User
|
|
3157
4185
|
* @param {string} name Name of user
|
|
@@ -3194,14 +4222,15 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3194
4222
|
getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3195
4223
|
/**
|
|
3196
4224
|
* List v1alpha1/User
|
|
3197
|
-
* @param {number} [page]
|
|
3198
|
-
* @param {number} [size] Size of one page
|
|
3199
|
-
* @param {string} [
|
|
4225
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
4226
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4227
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
4228
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3200
4229
|
* @param {*} [options] Override http request option.
|
|
3201
4230
|
* @throws {RequiredError}
|
|
3202
4231
|
* @memberof V1alpha1UserApi
|
|
3203
4232
|
*/
|
|
3204
|
-
listv1alpha1User(page?: number, size?: number,
|
|
4233
|
+
listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserList, any>>;
|
|
3205
4234
|
/**
|
|
3206
4235
|
* Update v1alpha1/User
|
|
3207
4236
|
* @param {string} name Name of user
|
|
@@ -3213,4 +4242,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3213
4242
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3214
4243
|
}
|
|
3215
4244
|
|
|
3216
|
-
export {
|
|
4245
|
+
export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Author, 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, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, 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 };
|