@halo-dev/api-client 0.0.5 → 0.0.8

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.d.ts CHANGED
@@ -180,6 +180,25 @@ interface AppleSpec {
180
180
  */
181
181
  producingArea?: string;
182
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
+ }
183
202
  /**
184
203
  *
185
204
  * @export
@@ -1388,6 +1407,159 @@ interface Subject {
1388
1407
  */
1389
1408
  apiGroup?: string;
1390
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
+ /**
1551
+ *
1552
+ * @type {string}
1553
+ * @memberof ThemeSpec
1554
+ */
1555
+ settingName?: string;
1556
+ /**
1557
+ *
1558
+ * @type {string}
1559
+ * @memberof ThemeSpec
1560
+ */
1561
+ configMapName?: string;
1562
+ }
1391
1563
  /**
1392
1564
  *
1393
1565
  * @export
@@ -1865,13 +2037,14 @@ declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Conf
1865
2037
  getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1866
2038
  /**
1867
2039
  * List core.halo.run/v1alpha1/Link
1868
- * @param {number} [page] Page index
1869
- * @param {number} [size] Size of one page
1870
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2040
+ * @param {number} [page] The page number. Zero indicates no page.
2041
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2042
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2043
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
1871
2044
  * @param {*} [options] Override http request option.
1872
2045
  * @throws {RequiredError}
1873
2046
  */
1874
- listcoreHaloRunV1alpha1Link: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2047
+ listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1875
2048
  /**
1876
2049
  * Update core.halo.run/v1alpha1/Link
1877
2050
  * @param {string} name Name of link
@@ -1909,13 +2082,14 @@ declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
1909
2082
  getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
1910
2083
  /**
1911
2084
  * List core.halo.run/v1alpha1/Link
1912
- * @param {number} [page] Page index
1913
- * @param {number} [size] Size of one page
1914
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2085
+ * @param {number} [page] The page number. Zero indicates no page.
2086
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2087
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2088
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
1915
2089
  * @param {*} [options] Override http request option.
1916
2090
  * @throws {RequiredError}
1917
2091
  */
1918
- listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2092
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
1919
2093
  /**
1920
2094
  * Update core.halo.run/v1alpha1/Link
1921
2095
  * @param {string} name Name of link
@@ -1953,13 +2127,14 @@ declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration,
1953
2127
  getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
1954
2128
  /**
1955
2129
  * List core.halo.run/v1alpha1/Link
1956
- * @param {number} [page] Page index
1957
- * @param {number} [size] Size of one page
1958
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2130
+ * @param {number} [page] The page number. Zero indicates no page.
2131
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2132
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2133
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
1959
2134
  * @param {*} [options] Override http request option.
1960
2135
  * @throws {RequiredError}
1961
2136
  */
1962
- listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
2137
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
1963
2138
  /**
1964
2139
  * Update core.halo.run/v1alpha1/Link
1965
2140
  * @param {string} name Name of link
@@ -2002,14 +2177,15 @@ declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
2002
2177
  getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
2003
2178
  /**
2004
2179
  * List core.halo.run/v1alpha1/Link
2005
- * @param {number} [page] Page index
2006
- * @param {number} [size] Size of one page
2007
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2180
+ * @param {number} [page] The page number. Zero indicates no page.
2181
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2182
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2183
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2008
2184
  * @param {*} [options] Override http request option.
2009
2185
  * @throws {RequiredError}
2010
2186
  * @memberof CoreHaloRunV1alpha1LinkApi
2011
2187
  */
2012
- listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
2188
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
2013
2189
  /**
2014
2190
  * Update core.halo.run/v1alpha1/Link
2015
2191
  * @param {string} name Name of link
@@ -2048,13 +2224,14 @@ declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?:
2048
2224
  getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2049
2225
  /**
2050
2226
  * List core.halo.run/v1alpha1/LinkGroup
2051
- * @param {number} [page] Page index
2052
- * @param {number} [size] Size of one page
2053
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2227
+ * @param {number} [page] The page number. Zero indicates no page.
2228
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2229
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2230
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2054
2231
  * @param {*} [options] Override http request option.
2055
2232
  * @throws {RequiredError}
2056
2233
  */
2057
- listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2234
+ listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2058
2235
  /**
2059
2236
  * Update core.halo.run/v1alpha1/LinkGroup
2060
2237
  * @param {string} name Name of linkgroup
@@ -2092,13 +2269,14 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration)
2092
2269
  getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
2093
2270
  /**
2094
2271
  * List core.halo.run/v1alpha1/LinkGroup
2095
- * @param {number} [page] Page index
2096
- * @param {number} [size] Size of one page
2097
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2272
+ * @param {number} [page] The page number. Zero indicates no page.
2273
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2274
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2275
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2098
2276
  * @param {*} [options] Override http request option.
2099
2277
  * @throws {RequiredError}
2100
2278
  */
2101
- listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2279
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2102
2280
  /**
2103
2281
  * Update core.halo.run/v1alpha1/LinkGroup
2104
2282
  * @param {string} name Name of linkgroup
@@ -2136,13 +2314,14 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configura
2136
2314
  getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
2137
2315
  /**
2138
2316
  * List core.halo.run/v1alpha1/LinkGroup
2139
- * @param {number} [page] Page index
2140
- * @param {number} [size] Size of one page
2141
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2317
+ * @param {number} [page] The page number. Zero indicates no page.
2318
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2319
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2320
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2142
2321
  * @param {*} [options] Override http request option.
2143
2322
  * @throws {RequiredError}
2144
2323
  */
2145
- listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
2324
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
2146
2325
  /**
2147
2326
  * Update core.halo.run/v1alpha1/LinkGroup
2148
2327
  * @param {string} name Name of linkgroup
@@ -2185,14 +2364,15 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
2185
2364
  getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
2186
2365
  /**
2187
2366
  * List core.halo.run/v1alpha1/LinkGroup
2188
- * @param {number} [page] Page index
2189
- * @param {number} [size] Size of one page
2190
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2367
+ * @param {number} [page] The page number. Zero indicates no page.
2368
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2369
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2370
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2191
2371
  * @param {*} [options] Override http request option.
2192
2372
  * @throws {RequiredError}
2193
2373
  * @memberof CoreHaloRunV1alpha1LinkGroupApi
2194
2374
  */
2195
- listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
2375
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
2196
2376
  /**
2197
2377
  * Update core.halo.run/v1alpha1/LinkGroup
2198
2378
  * @param {string} name Name of linkgroup
@@ -2231,13 +2411,14 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
2231
2411
  getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2232
2412
  /**
2233
2413
  * List plugin.halo.run/v1alpha1/Plugin
2234
- * @param {number} [page] Page index
2235
- * @param {number} [size] Size of one page
2236
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2414
+ * @param {number} [page] The page number. Zero indicates no page.
2415
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2416
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2417
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2237
2418
  * @param {*} [options] Override http request option.
2238
2419
  * @throws {RequiredError}
2239
2420
  */
2240
- listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2421
+ listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2241
2422
  /**
2242
2423
  * Update plugin.halo.run/v1alpha1/Plugin
2243
2424
  * @param {string} name Name of plugin
@@ -2275,13 +2456,14 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
2275
2456
  getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
2276
2457
  /**
2277
2458
  * List plugin.halo.run/v1alpha1/Plugin
2278
- * @param {number} [page] Page index
2279
- * @param {number} [size] Size of one page
2280
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2459
+ * @param {number} [page] The page number. Zero indicates no page.
2460
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2461
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2462
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2281
2463
  * @param {*} [options] Override http request option.
2282
2464
  * @throws {RequiredError}
2283
2465
  */
2284
- listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
2466
+ listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
2285
2467
  /**
2286
2468
  * Update plugin.halo.run/v1alpha1/Plugin
2287
2469
  * @param {string} name Name of plugin
@@ -2319,13 +2501,14 @@ declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configurat
2319
2501
  getpluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<Plugin>;
2320
2502
  /**
2321
2503
  * List plugin.halo.run/v1alpha1/Plugin
2322
- * @param {number} [page] Page index
2323
- * @param {number} [size] Size of one page
2324
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2504
+ * @param {number} [page] The page number. Zero indicates no page.
2505
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2506
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2507
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2325
2508
  * @param {*} [options] Override http request option.
2326
2509
  * @throws {RequiredError}
2327
2510
  */
2328
- listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<PluginList>;
2511
+ listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
2329
2512
  /**
2330
2513
  * Update plugin.halo.run/v1alpha1/Plugin
2331
2514
  * @param {string} name Name of plugin
@@ -2368,14 +2551,15 @@ declare class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
2368
2551
  getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
2369
2552
  /**
2370
2553
  * List plugin.halo.run/v1alpha1/Plugin
2371
- * @param {number} [page] Page index
2372
- * @param {number} [size] Size of one page
2373
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2554
+ * @param {number} [page] The page number. Zero indicates no page.
2555
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2556
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2557
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2374
2558
  * @param {*} [options] Override http request option.
2375
2559
  * @throws {RequiredError}
2376
2560
  * @memberof PluginHaloRunV1alpha1PluginApi
2377
2561
  */
2378
- listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
2562
+ listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
2379
2563
  /**
2380
2564
  * Update plugin.halo.run/v1alpha1/Plugin
2381
2565
  * @param {string} name Name of plugin
@@ -2414,13 +2598,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configurat
2414
2598
  getpluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2415
2599
  /**
2416
2600
  * List plugin.halo.run/v1alpha1/ReverseProxy
2417
- * @param {number} [page] Page index
2418
- * @param {number} [size] Size of one page
2419
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2601
+ * @param {number} [page] The page number. Zero indicates no page.
2602
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2603
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2604
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2420
2605
  * @param {*} [options] Override http request option.
2421
2606
  * @throws {RequiredError}
2422
2607
  */
2423
- listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2608
+ listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2424
2609
  /**
2425
2610
  * Update plugin.halo.run/v1alpha1/ReverseProxy
2426
2611
  * @param {string} name Name of reverseproxy
@@ -2458,13 +2643,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
2458
2643
  getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
2459
2644
  /**
2460
2645
  * List plugin.halo.run/v1alpha1/ReverseProxy
2461
- * @param {number} [page] Page index
2462
- * @param {number} [size] Size of one page
2463
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2646
+ * @param {number} [page] The page number. Zero indicates no page.
2647
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2648
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2649
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2464
2650
  * @param {*} [options] Override http request option.
2465
2651
  * @throws {RequiredError}
2466
2652
  */
2467
- listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
2653
+ listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
2468
2654
  /**
2469
2655
  * Update plugin.halo.run/v1alpha1/ReverseProxy
2470
2656
  * @param {string} name Name of reverseproxy
@@ -2502,13 +2688,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Conf
2502
2688
  getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<ReverseProxy>;
2503
2689
  /**
2504
2690
  * List plugin.halo.run/v1alpha1/ReverseProxy
2505
- * @param {number} [page] Page index
2506
- * @param {number} [size] Size of one page
2507
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2691
+ * @param {number} [page] The page number. Zero indicates no page.
2692
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2693
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2694
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2508
2695
  * @param {*} [options] Override http request option.
2509
2696
  * @throws {RequiredError}
2510
2697
  */
2511
- listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<ReverseProxyList>;
2698
+ listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReverseProxyList>;
2512
2699
  /**
2513
2700
  * Update plugin.halo.run/v1alpha1/ReverseProxy
2514
2701
  * @param {string} name Name of reverseproxy
@@ -2551,14 +2738,15 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
2551
2738
  getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
2552
2739
  /**
2553
2740
  * List plugin.halo.run/v1alpha1/ReverseProxy
2554
- * @param {number} [page] Page index
2555
- * @param {number} [size] Size of one page
2556
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2741
+ * @param {number} [page] The page number. Zero indicates no page.
2742
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2743
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2744
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2557
2745
  * @param {*} [options] Override http request option.
2558
2746
  * @throws {RequiredError}
2559
2747
  * @memberof PluginHaloRunV1alpha1ReverseProxyApi
2560
2748
  */
2561
- listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxyList, any>>;
2749
+ listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxyList, any>>;
2562
2750
  /**
2563
2751
  * Update plugin.halo.run/v1alpha1/ReverseProxy
2564
2752
  * @param {string} name Name of reverseproxy
@@ -2597,13 +2785,14 @@ declare const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator: (configuration?:
2597
2785
  getrunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2598
2786
  /**
2599
2787
  * List run.halo.template/v1alpha1/Apple
2600
- * @param {number} [page] Page index
2601
- * @param {number} [size] Size of one page
2602
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2788
+ * @param {number} [page] The page number. Zero indicates no page.
2789
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2790
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2791
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2603
2792
  * @param {*} [options] Override http request option.
2604
2793
  * @throws {RequiredError}
2605
2794
  */
2606
- listrunHaloTemplateV1alpha1Apple: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2795
+ listrunHaloTemplateV1alpha1Apple: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2607
2796
  /**
2608
2797
  * Update run.halo.template/v1alpha1/Apple
2609
2798
  * @param {string} name Name of apple
@@ -2641,13 +2830,14 @@ declare const RunHaloTemplateV1alpha1AppleApiFp: (configuration?: Configuration)
2641
2830
  getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
2642
2831
  /**
2643
2832
  * List run.halo.template/v1alpha1/Apple
2644
- * @param {number} [page] Page index
2645
- * @param {number} [size] Size of one page
2646
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2833
+ * @param {number} [page] The page number. Zero indicates no page.
2834
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2835
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2836
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2647
2837
  * @param {*} [options] Override http request option.
2648
2838
  * @throws {RequiredError}
2649
2839
  */
2650
- listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2840
+ listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2651
2841
  /**
2652
2842
  * Update run.halo.template/v1alpha1/Apple
2653
2843
  * @param {string} name Name of apple
@@ -2685,13 +2875,14 @@ declare const RunHaloTemplateV1alpha1AppleApiFactory: (configuration?: Configura
2685
2875
  getrunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
2686
2876
  /**
2687
2877
  * List run.halo.template/v1alpha1/Apple
2688
- * @param {number} [page] Page index
2689
- * @param {number} [size] Size of one page
2690
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2878
+ * @param {number} [page] The page number. Zero indicates no page.
2879
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2880
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2881
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2691
2882
  * @param {*} [options] Override http request option.
2692
2883
  * @throws {RequiredError}
2693
2884
  */
2694
- listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
2885
+ listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
2695
2886
  /**
2696
2887
  * Update run.halo.template/v1alpha1/Apple
2697
2888
  * @param {string} name Name of apple
@@ -2734,14 +2925,15 @@ declare class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
2734
2925
  getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
2735
2926
  /**
2736
2927
  * List run.halo.template/v1alpha1/Apple
2737
- * @param {number} [page] Page index
2738
- * @param {number} [size] Size of one page
2739
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2928
+ * @param {number} [page] The page number. Zero indicates no page.
2929
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2930
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2931
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2740
2932
  * @param {*} [options] Override http request option.
2741
2933
  * @throws {RequiredError}
2742
2934
  * @memberof RunHaloTemplateV1alpha1AppleApi
2743
2935
  */
2744
- listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
2936
+ listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
2745
2937
  /**
2746
2938
  * Update run.halo.template/v1alpha1/Apple
2747
2939
  * @param {string} name Name of apple
@@ -2752,6 +2944,193 @@ declare class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
2752
2944
  */
2753
2945
  updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
2754
2946
  }
2947
+ /**
2948
+ * ThemeHaloRunV1alpha1ThemeApi - axios parameter creator
2949
+ * @export
2950
+ */
2951
+ declare const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
2952
+ /**
2953
+ * Create theme.halo.run/v1alpha1/Theme
2954
+ * @param {Theme} [theme] Fresh theme
2955
+ * @param {*} [options] Override http request option.
2956
+ * @throws {RequiredError}
2957
+ */
2958
+ createthemeHaloRunV1alpha1Theme: (theme?: Theme, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2959
+ /**
2960
+ * Delete theme.halo.run/v1alpha1/Theme
2961
+ * @param {string} name Name of theme
2962
+ * @param {*} [options] Override http request option.
2963
+ * @throws {RequiredError}
2964
+ */
2965
+ deletethemeHaloRunV1alpha1Theme: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2966
+ /**
2967
+ * Get theme.halo.run/v1alpha1/Theme
2968
+ * @param {string} name Name of theme
2969
+ * @param {*} [options] Override http request option.
2970
+ * @throws {RequiredError}
2971
+ */
2972
+ getthemeHaloRunV1alpha1Theme: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2973
+ /**
2974
+ * List theme.halo.run/v1alpha1/Theme
2975
+ * @param {number} [page] The page number. Zero indicates no page.
2976
+ * @param {number} [size] Size of one page. Zero indicates no limit.
2977
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
2978
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2979
+ * @param {*} [options] Override http request option.
2980
+ * @throws {RequiredError}
2981
+ */
2982
+ listthemeHaloRunV1alpha1Theme: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2983
+ /**
2984
+ * Update theme.halo.run/v1alpha1/Theme
2985
+ * @param {string} name Name of theme
2986
+ * @param {Theme} [theme] Updated theme
2987
+ * @param {*} [options] Override http request option.
2988
+ * @throws {RequiredError}
2989
+ */
2990
+ updatethemeHaloRunV1alpha1Theme: (name: string, theme?: Theme, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2991
+ };
2992
+ /**
2993
+ * ThemeHaloRunV1alpha1ThemeApi - functional programming interface
2994
+ * @export
2995
+ */
2996
+ declare const ThemeHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
2997
+ /**
2998
+ * Create theme.halo.run/v1alpha1/Theme
2999
+ * @param {Theme} [theme] Fresh theme
3000
+ * @param {*} [options] Override http request option.
3001
+ * @throws {RequiredError}
3002
+ */
3003
+ createthemeHaloRunV1alpha1Theme(theme?: Theme, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
3004
+ /**
3005
+ * Delete theme.halo.run/v1alpha1/Theme
3006
+ * @param {string} name Name of theme
3007
+ * @param {*} [options] Override http request option.
3008
+ * @throws {RequiredError}
3009
+ */
3010
+ deletethemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3011
+ /**
3012
+ * Get theme.halo.run/v1alpha1/Theme
3013
+ * @param {string} name Name of theme
3014
+ * @param {*} [options] Override http request option.
3015
+ * @throws {RequiredError}
3016
+ */
3017
+ getthemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
3018
+ /**
3019
+ * List theme.halo.run/v1alpha1/Theme
3020
+ * @param {number} [page] The page number. Zero indicates no page.
3021
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3022
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3023
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3024
+ * @param {*} [options] Override http request option.
3025
+ * @throws {RequiredError}
3026
+ */
3027
+ listthemeHaloRunV1alpha1Theme(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
3028
+ /**
3029
+ * Update theme.halo.run/v1alpha1/Theme
3030
+ * @param {string} name Name of theme
3031
+ * @param {Theme} [theme] Updated theme
3032
+ * @param {*} [options] Override http request option.
3033
+ * @throws {RequiredError}
3034
+ */
3035
+ updatethemeHaloRunV1alpha1Theme(name: string, theme?: Theme, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
3036
+ };
3037
+ /**
3038
+ * ThemeHaloRunV1alpha1ThemeApi - factory interface
3039
+ * @export
3040
+ */
3041
+ declare const ThemeHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3042
+ /**
3043
+ * Create theme.halo.run/v1alpha1/Theme
3044
+ * @param {Theme} [theme] Fresh theme
3045
+ * @param {*} [options] Override http request option.
3046
+ * @throws {RequiredError}
3047
+ */
3048
+ createthemeHaloRunV1alpha1Theme(theme?: Theme, options?: any): AxiosPromise<Theme>;
3049
+ /**
3050
+ * Delete theme.halo.run/v1alpha1/Theme
3051
+ * @param {string} name Name of theme
3052
+ * @param {*} [options] Override http request option.
3053
+ * @throws {RequiredError}
3054
+ */
3055
+ deletethemeHaloRunV1alpha1Theme(name: string, options?: any): AxiosPromise<void>;
3056
+ /**
3057
+ * Get theme.halo.run/v1alpha1/Theme
3058
+ * @param {string} name Name of theme
3059
+ * @param {*} [options] Override http request option.
3060
+ * @throws {RequiredError}
3061
+ */
3062
+ getthemeHaloRunV1alpha1Theme(name: string, options?: any): AxiosPromise<Theme>;
3063
+ /**
3064
+ * List theme.halo.run/v1alpha1/Theme
3065
+ * @param {number} [page] The page number. Zero indicates no page.
3066
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3067
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3068
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3069
+ * @param {*} [options] Override http request option.
3070
+ * @throws {RequiredError}
3071
+ */
3072
+ listthemeHaloRunV1alpha1Theme(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
3073
+ /**
3074
+ * Update theme.halo.run/v1alpha1/Theme
3075
+ * @param {string} name Name of theme
3076
+ * @param {Theme} [theme] Updated theme
3077
+ * @param {*} [options] Override http request option.
3078
+ * @throws {RequiredError}
3079
+ */
3080
+ updatethemeHaloRunV1alpha1Theme(name: string, theme?: Theme, options?: any): AxiosPromise<Theme>;
3081
+ };
3082
+ /**
3083
+ * ThemeHaloRunV1alpha1ThemeApi - object-oriented interface
3084
+ * @export
3085
+ * @class ThemeHaloRunV1alpha1ThemeApi
3086
+ * @extends {BaseAPI}
3087
+ */
3088
+ declare class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
3089
+ /**
3090
+ * Create theme.halo.run/v1alpha1/Theme
3091
+ * @param {Theme} [theme] Fresh theme
3092
+ * @param {*} [options] Override http request option.
3093
+ * @throws {RequiredError}
3094
+ * @memberof ThemeHaloRunV1alpha1ThemeApi
3095
+ */
3096
+ createthemeHaloRunV1alpha1Theme(theme?: Theme, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
3097
+ /**
3098
+ * Delete theme.halo.run/v1alpha1/Theme
3099
+ * @param {string} name Name of theme
3100
+ * @param {*} [options] Override http request option.
3101
+ * @throws {RequiredError}
3102
+ * @memberof ThemeHaloRunV1alpha1ThemeApi
3103
+ */
3104
+ deletethemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
3105
+ /**
3106
+ * Get theme.halo.run/v1alpha1/Theme
3107
+ * @param {string} name Name of theme
3108
+ * @param {*} [options] Override http request option.
3109
+ * @throws {RequiredError}
3110
+ * @memberof ThemeHaloRunV1alpha1ThemeApi
3111
+ */
3112
+ getthemeHaloRunV1alpha1Theme(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
3113
+ /**
3114
+ * List theme.halo.run/v1alpha1/Theme
3115
+ * @param {number} [page] The page number. Zero indicates no page.
3116
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3117
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3118
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3119
+ * @param {*} [options] Override http request option.
3120
+ * @throws {RequiredError}
3121
+ * @memberof ThemeHaloRunV1alpha1ThemeApi
3122
+ */
3123
+ listthemeHaloRunV1alpha1Theme(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ThemeList, any>>;
3124
+ /**
3125
+ * Update theme.halo.run/v1alpha1/Theme
3126
+ * @param {string} name Name of theme
3127
+ * @param {Theme} [theme] Updated theme
3128
+ * @param {*} [options] Override http request option.
3129
+ * @throws {RequiredError}
3130
+ * @memberof ThemeHaloRunV1alpha1ThemeApi
3131
+ */
3132
+ updatethemeHaloRunV1alpha1Theme(name: string, theme?: Theme, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
3133
+ }
2755
3134
  /**
2756
3135
  * V1alpha1ConfigMapApi - axios parameter creator
2757
3136
  * @export
@@ -2780,13 +3159,14 @@ declare const V1alpha1ConfigMapApiAxiosParamCreator: (configuration?: Configurat
2780
3159
  getv1alpha1ConfigMap: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2781
3160
  /**
2782
3161
  * List v1alpha1/ConfigMap
2783
- * @param {number} [page] Page index
2784
- * @param {number} [size] Size of one page
2785
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3162
+ * @param {number} [page] The page number. Zero indicates no page.
3163
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3164
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3165
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2786
3166
  * @param {*} [options] Override http request option.
2787
3167
  * @throws {RequiredError}
2788
3168
  */
2789
- listv1alpha1ConfigMap: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3169
+ listv1alpha1ConfigMap: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2790
3170
  /**
2791
3171
  * Update v1alpha1/ConfigMap
2792
3172
  * @param {string} name Name of configmap
@@ -2824,13 +3204,14 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
2824
3204
  getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
2825
3205
  /**
2826
3206
  * List v1alpha1/ConfigMap
2827
- * @param {number} [page] Page index
2828
- * @param {number} [size] Size of one page
2829
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3207
+ * @param {number} [page] The page number. Zero indicates no page.
3208
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3209
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3210
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2830
3211
  * @param {*} [options] Override http request option.
2831
3212
  * @throws {RequiredError}
2832
3213
  */
2833
- listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
3214
+ listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
2834
3215
  /**
2835
3216
  * Update v1alpha1/ConfigMap
2836
3217
  * @param {string} name Name of configmap
@@ -2868,13 +3249,14 @@ declare const V1alpha1ConfigMapApiFactory: (configuration?: Configuration, baseP
2868
3249
  getv1alpha1ConfigMap(name: string, options?: any): AxiosPromise<ConfigMap>;
2869
3250
  /**
2870
3251
  * List v1alpha1/ConfigMap
2871
- * @param {number} [page] Page index
2872
- * @param {number} [size] Size of one page
2873
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3252
+ * @param {number} [page] The page number. Zero indicates no page.
3253
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3254
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3255
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2874
3256
  * @param {*} [options] Override http request option.
2875
3257
  * @throws {RequiredError}
2876
3258
  */
2877
- listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<ConfigMapList>;
3259
+ listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ConfigMapList>;
2878
3260
  /**
2879
3261
  * Update v1alpha1/ConfigMap
2880
3262
  * @param {string} name Name of configmap
@@ -2917,14 +3299,15 @@ declare class V1alpha1ConfigMapApi extends BaseAPI {
2917
3299
  getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
2918
3300
  /**
2919
3301
  * List v1alpha1/ConfigMap
2920
- * @param {number} [page] Page index
2921
- * @param {number} [size] Size of one page
2922
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3302
+ * @param {number} [page] The page number. Zero indicates no page.
3303
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3304
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3305
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2923
3306
  * @param {*} [options] Override http request option.
2924
3307
  * @throws {RequiredError}
2925
3308
  * @memberof V1alpha1ConfigMapApi
2926
3309
  */
2927
- listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMapList, any>>;
3310
+ listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMapList, any>>;
2928
3311
  /**
2929
3312
  * Update v1alpha1/ConfigMap
2930
3313
  * @param {string} name Name of configmap
@@ -2963,13 +3346,14 @@ declare const V1alpha1PersonalAccessTokenApiAxiosParamCreator: (configuration?:
2963
3346
  getv1alpha1PersonalAccessToken: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2964
3347
  /**
2965
3348
  * List v1alpha1/PersonalAccessToken
2966
- * @param {number} [page] Page index
2967
- * @param {number} [size] Size of one page
2968
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3349
+ * @param {number} [page] The page number. Zero indicates no page.
3350
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3351
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3352
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
2969
3353
  * @param {*} [options] Override http request option.
2970
3354
  * @throws {RequiredError}
2971
3355
  */
2972
- listv1alpha1PersonalAccessToken: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3356
+ listv1alpha1PersonalAccessToken: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2973
3357
  /**
2974
3358
  * Update v1alpha1/PersonalAccessToken
2975
3359
  * @param {string} name Name of personalaccesstoken
@@ -3007,13 +3391,14 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
3007
3391
  getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessToken>>;
3008
3392
  /**
3009
3393
  * List v1alpha1/PersonalAccessToken
3010
- * @param {number} [page] Page index
3011
- * @param {number} [size] Size of one page
3012
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3394
+ * @param {number} [page] The page number. Zero indicates no page.
3395
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3396
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3397
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3013
3398
  * @param {*} [options] Override http request option.
3014
3399
  * @throws {RequiredError}
3015
3400
  */
3016
- listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
3401
+ listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
3017
3402
  /**
3018
3403
  * Update v1alpha1/PersonalAccessToken
3019
3404
  * @param {string} name Name of personalaccesstoken
@@ -3051,13 +3436,14 @@ declare const V1alpha1PersonalAccessTokenApiFactory: (configuration?: Configurat
3051
3436
  getv1alpha1PersonalAccessToken(name: string, options?: any): AxiosPromise<PersonalAccessToken>;
3052
3437
  /**
3053
3438
  * List v1alpha1/PersonalAccessToken
3054
- * @param {number} [page] Page index
3055
- * @param {number} [size] Size of one page
3056
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3439
+ * @param {number} [page] The page number. Zero indicates no page.
3440
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3441
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3442
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3057
3443
  * @param {*} [options] Override http request option.
3058
3444
  * @throws {RequiredError}
3059
3445
  */
3060
- listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<PersonalAccessTokenList>;
3446
+ listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PersonalAccessTokenList>;
3061
3447
  /**
3062
3448
  * Update v1alpha1/PersonalAccessToken
3063
3449
  * @param {string} name Name of personalaccesstoken
@@ -3100,14 +3486,15 @@ declare class V1alpha1PersonalAccessTokenApi extends BaseAPI {
3100
3486
  getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken, any>>;
3101
3487
  /**
3102
3488
  * List v1alpha1/PersonalAccessToken
3103
- * @param {number} [page] Page index
3104
- * @param {number} [size] Size of one page
3105
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3489
+ * @param {number} [page] The page number. Zero indicates no page.
3490
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3491
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3492
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3106
3493
  * @param {*} [options] Override http request option.
3107
3494
  * @throws {RequiredError}
3108
3495
  * @memberof V1alpha1PersonalAccessTokenApi
3109
3496
  */
3110
- listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessTokenList, any>>;
3497
+ listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessTokenList, any>>;
3111
3498
  /**
3112
3499
  * Update v1alpha1/PersonalAccessToken
3113
3500
  * @param {string} name Name of personalaccesstoken
@@ -3146,13 +3533,14 @@ declare const V1alpha1RoleApiAxiosParamCreator: (configuration?: Configuration)
3146
3533
  getv1alpha1Role: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3147
3534
  /**
3148
3535
  * List v1alpha1/Role
3149
- * @param {number} [page] Page index
3150
- * @param {number} [size] Size of one page
3151
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3536
+ * @param {number} [page] The page number. Zero indicates no page.
3537
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3538
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3539
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3152
3540
  * @param {*} [options] Override http request option.
3153
3541
  * @throws {RequiredError}
3154
3542
  */
3155
- listv1alpha1Role: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3543
+ listv1alpha1Role: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3156
3544
  /**
3157
3545
  * Update v1alpha1/Role
3158
3546
  * @param {string} name Name of role
@@ -3190,13 +3578,14 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
3190
3578
  getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
3191
3579
  /**
3192
3580
  * List v1alpha1/Role
3193
- * @param {number} [page] Page index
3194
- * @param {number} [size] Size of one page
3195
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3581
+ * @param {number} [page] The page number. Zero indicates no page.
3582
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3583
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3584
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3196
3585
  * @param {*} [options] Override http request option.
3197
3586
  * @throws {RequiredError}
3198
3587
  */
3199
- listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
3588
+ listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
3200
3589
  /**
3201
3590
  * Update v1alpha1/Role
3202
3591
  * @param {string} name Name of role
@@ -3234,13 +3623,14 @@ declare const V1alpha1RoleApiFactory: (configuration?: Configuration, basePath?:
3234
3623
  getv1alpha1Role(name: string, options?: any): AxiosPromise<Role>;
3235
3624
  /**
3236
3625
  * List v1alpha1/Role
3237
- * @param {number} [page] Page index
3238
- * @param {number} [size] Size of one page
3239
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3626
+ * @param {number} [page] The page number. Zero indicates no page.
3627
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3628
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3629
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3240
3630
  * @param {*} [options] Override http request option.
3241
3631
  * @throws {RequiredError}
3242
3632
  */
3243
- listv1alpha1Role(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<RoleList>;
3633
+ listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<RoleList>;
3244
3634
  /**
3245
3635
  * Update v1alpha1/Role
3246
3636
  * @param {string} name Name of role
@@ -3283,14 +3673,15 @@ declare class V1alpha1RoleApi extends BaseAPI {
3283
3673
  getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
3284
3674
  /**
3285
3675
  * List v1alpha1/Role
3286
- * @param {number} [page] Page index
3287
- * @param {number} [size] Size of one page
3288
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3676
+ * @param {number} [page] The page number. Zero indicates no page.
3677
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3678
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3679
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3289
3680
  * @param {*} [options] Override http request option.
3290
3681
  * @throws {RequiredError}
3291
3682
  * @memberof V1alpha1RoleApi
3292
3683
  */
3293
- listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleList, any>>;
3684
+ listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleList, any>>;
3294
3685
  /**
3295
3686
  * Update v1alpha1/Role
3296
3687
  * @param {string} name Name of role
@@ -3329,13 +3720,14 @@ declare const V1alpha1RoleBindingApiAxiosParamCreator: (configuration?: Configur
3329
3720
  getv1alpha1RoleBinding: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3330
3721
  /**
3331
3722
  * List v1alpha1/RoleBinding
3332
- * @param {number} [page] Page index
3333
- * @param {number} [size] Size of one page
3334
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3723
+ * @param {number} [page] The page number. Zero indicates no page.
3724
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3725
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3726
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3335
3727
  * @param {*} [options] Override http request option.
3336
3728
  * @throws {RequiredError}
3337
3729
  */
3338
- listv1alpha1RoleBinding: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3730
+ listv1alpha1RoleBinding: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3339
3731
  /**
3340
3732
  * Update v1alpha1/RoleBinding
3341
3733
  * @param {string} name Name of rolebinding
@@ -3373,13 +3765,14 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
3373
3765
  getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBinding>>;
3374
3766
  /**
3375
3767
  * List v1alpha1/RoleBinding
3376
- * @param {number} [page] Page index
3377
- * @param {number} [size] Size of one page
3378
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3768
+ * @param {number} [page] The page number. Zero indicates no page.
3769
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3770
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3771
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3379
3772
  * @param {*} [options] Override http request option.
3380
3773
  * @throws {RequiredError}
3381
3774
  */
3382
- listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
3775
+ listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
3383
3776
  /**
3384
3777
  * Update v1alpha1/RoleBinding
3385
3778
  * @param {string} name Name of rolebinding
@@ -3417,13 +3810,14 @@ declare const V1alpha1RoleBindingApiFactory: (configuration?: Configuration, bas
3417
3810
  getv1alpha1RoleBinding(name: string, options?: any): AxiosPromise<RoleBinding>;
3418
3811
  /**
3419
3812
  * List v1alpha1/RoleBinding
3420
- * @param {number} [page] Page index
3421
- * @param {number} [size] Size of one page
3422
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3813
+ * @param {number} [page] The page number. Zero indicates no page.
3814
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3815
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3816
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3423
3817
  * @param {*} [options] Override http request option.
3424
3818
  * @throws {RequiredError}
3425
3819
  */
3426
- listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<RoleBindingList>;
3820
+ listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<RoleBindingList>;
3427
3821
  /**
3428
3822
  * Update v1alpha1/RoleBinding
3429
3823
  * @param {string} name Name of rolebinding
@@ -3466,14 +3860,15 @@ declare class V1alpha1RoleBindingApi extends BaseAPI {
3466
3860
  getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
3467
3861
  /**
3468
3862
  * List v1alpha1/RoleBinding
3469
- * @param {number} [page] Page index
3470
- * @param {number} [size] Size of one page
3471
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3863
+ * @param {number} [page] The page number. Zero indicates no page.
3864
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3865
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3866
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3472
3867
  * @param {*} [options] Override http request option.
3473
3868
  * @throws {RequiredError}
3474
3869
  * @memberof V1alpha1RoleBindingApi
3475
3870
  */
3476
- listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBindingList, any>>;
3871
+ listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBindingList, any>>;
3477
3872
  /**
3478
3873
  * Update v1alpha1/RoleBinding
3479
3874
  * @param {string} name Name of rolebinding
@@ -3512,13 +3907,14 @@ declare const V1alpha1SettingApiAxiosParamCreator: (configuration?: Configuratio
3512
3907
  getv1alpha1Setting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3513
3908
  /**
3514
3909
  * List v1alpha1/Setting
3515
- * @param {number} [page] Page index
3516
- * @param {number} [size] Size of one page
3517
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3910
+ * @param {number} [page] The page number. Zero indicates no page.
3911
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3912
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3913
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3518
3914
  * @param {*} [options] Override http request option.
3519
3915
  * @throws {RequiredError}
3520
3916
  */
3521
- listv1alpha1Setting: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3917
+ listv1alpha1Setting: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3522
3918
  /**
3523
3919
  * Update v1alpha1/Setting
3524
3920
  * @param {string} name Name of setting
@@ -3556,13 +3952,14 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
3556
3952
  getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
3557
3953
  /**
3558
3954
  * List v1alpha1/Setting
3559
- * @param {number} [page] Page index
3560
- * @param {number} [size] Size of one page
3561
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3955
+ * @param {number} [page] The page number. Zero indicates no page.
3956
+ * @param {number} [size] Size of one page. Zero indicates no limit.
3957
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
3958
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3562
3959
  * @param {*} [options] Override http request option.
3563
3960
  * @throws {RequiredError}
3564
3961
  */
3565
- listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
3962
+ listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
3566
3963
  /**
3567
3964
  * Update v1alpha1/Setting
3568
3965
  * @param {string} name Name of setting
@@ -3600,13 +3997,14 @@ declare const V1alpha1SettingApiFactory: (configuration?: Configuration, basePat
3600
3997
  getv1alpha1Setting(name: string, options?: any): AxiosPromise<Setting>;
3601
3998
  /**
3602
3999
  * List v1alpha1/Setting
3603
- * @param {number} [page] Page index
3604
- * @param {number} [size] Size of one page
3605
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
4000
+ * @param {number} [page] The page number. Zero indicates no page.
4001
+ * @param {number} [size] Size of one page. Zero indicates no limit.
4002
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
4003
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3606
4004
  * @param {*} [options] Override http request option.
3607
4005
  * @throws {RequiredError}
3608
4006
  */
3609
- listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<SettingList>;
4007
+ listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SettingList>;
3610
4008
  /**
3611
4009
  * Update v1alpha1/Setting
3612
4010
  * @param {string} name Name of setting
@@ -3649,14 +4047,15 @@ declare class V1alpha1SettingApi extends BaseAPI {
3649
4047
  getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
3650
4048
  /**
3651
4049
  * List v1alpha1/Setting
3652
- * @param {number} [page] Page index
3653
- * @param {number} [size] Size of one page
3654
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
4050
+ * @param {number} [page] The page number. Zero indicates no page.
4051
+ * @param {number} [size] Size of one page. Zero indicates no limit.
4052
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
4053
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3655
4054
  * @param {*} [options] Override http request option.
3656
4055
  * @throws {RequiredError}
3657
4056
  * @memberof V1alpha1SettingApi
3658
4057
  */
3659
- listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SettingList, any>>;
4058
+ listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SettingList, any>>;
3660
4059
  /**
3661
4060
  * Update v1alpha1/Setting
3662
4061
  * @param {string} name Name of setting
@@ -3695,13 +4094,14 @@ declare const V1alpha1UserApiAxiosParamCreator: (configuration?: Configuration)
3695
4094
  getv1alpha1User: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3696
4095
  /**
3697
4096
  * List v1alpha1/User
3698
- * @param {number} [page] Page index
3699
- * @param {number} [size] Size of one page
3700
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
4097
+ * @param {number} [page] The page number. Zero indicates no page.
4098
+ * @param {number} [size] Size of one page. Zero indicates no limit.
4099
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
4100
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3701
4101
  * @param {*} [options] Override http request option.
3702
4102
  * @throws {RequiredError}
3703
4103
  */
3704
- listv1alpha1User: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4104
+ listv1alpha1User: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3705
4105
  /**
3706
4106
  * Update v1alpha1/User
3707
4107
  * @param {string} name Name of user
@@ -3739,13 +4139,14 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
3739
4139
  getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
3740
4140
  /**
3741
4141
  * List v1alpha1/User
3742
- * @param {number} [page] Page index
3743
- * @param {number} [size] Size of one page
3744
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
4142
+ * @param {number} [page] The page number. Zero indicates no page.
4143
+ * @param {number} [size] Size of one page. Zero indicates no limit.
4144
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
4145
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3745
4146
  * @param {*} [options] Override http request option.
3746
4147
  * @throws {RequiredError}
3747
4148
  */
3748
- listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
4149
+ listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
3749
4150
  /**
3750
4151
  * Update v1alpha1/User
3751
4152
  * @param {string} name Name of user
@@ -3783,13 +4184,14 @@ declare const V1alpha1UserApiFactory: (configuration?: Configuration, basePath?:
3783
4184
  getv1alpha1User(name: string, options?: any): AxiosPromise<User>;
3784
4185
  /**
3785
4186
  * List v1alpha1/User
3786
- * @param {number} [page] Page index
3787
- * @param {number} [size] Size of one page
3788
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
4187
+ * @param {number} [page] The page number. Zero indicates no page.
4188
+ * @param {number} [size] Size of one page. Zero indicates no limit.
4189
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
4190
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3789
4191
  * @param {*} [options] Override http request option.
3790
4192
  * @throws {RequiredError}
3791
4193
  */
3792
- listv1alpha1User(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<UserList>;
4194
+ listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<UserList>;
3793
4195
  /**
3794
4196
  * Update v1alpha1/User
3795
4197
  * @param {string} name Name of user
@@ -3832,14 +4234,15 @@ declare class V1alpha1UserApi extends BaseAPI {
3832
4234
  getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
3833
4235
  /**
3834
4236
  * List v1alpha1/User
3835
- * @param {number} [page] Page index
3836
- * @param {number} [size] Size of one page
3837
- * @param {string} [sort] Sort by some fields. Like metadata.name,desc
4237
+ * @param {number} [page] The page number. Zero indicates no page.
4238
+ * @param {number} [size] Size of one page. Zero indicates no limit.
4239
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
4240
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
3838
4241
  * @param {*} [options] Override http request option.
3839
4242
  * @throws {RequiredError}
3840
4243
  * @memberof V1alpha1UserApi
3841
4244
  */
3842
- listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserList, any>>;
4245
+ listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserList, any>>;
3843
4246
  /**
3844
4247
  * Update v1alpha1/User
3845
4248
  * @param {string} name Name of user
@@ -3851,4 +4254,4 @@ declare class V1alpha1UserApi extends BaseAPI {
3851
4254
  updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
3852
4255
  }
3853
4256
 
3854
- export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
4257
+ 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 };