@halo-dev/api-client 0.0.36 → 0.0.38
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 +418 -0
- package/dist/index.d.ts +845 -25
- package/dist/index.mjs +411 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -265,6 +265,12 @@ interface AttachmentStatus {
|
|
|
265
265
|
* @interface Metadata
|
|
266
266
|
*/
|
|
267
267
|
interface Metadata {
|
|
268
|
+
/**
|
|
269
|
+
* The name field will be generated automatically according to the given generateName field
|
|
270
|
+
* @type {string}
|
|
271
|
+
* @memberof Metadata
|
|
272
|
+
*/
|
|
273
|
+
generateName?: string;
|
|
268
274
|
/**
|
|
269
275
|
*
|
|
270
276
|
* @type {Array<string>}
|
|
@@ -272,7 +278,7 @@ interface Metadata {
|
|
|
272
278
|
*/
|
|
273
279
|
finalizers?: Array<string> | null;
|
|
274
280
|
/**
|
|
275
|
-
*
|
|
281
|
+
* Metadata name
|
|
276
282
|
* @type {string}
|
|
277
283
|
* @memberof Metadata
|
|
278
284
|
*/
|
|
@@ -1819,6 +1825,61 @@ interface CounterRequest {
|
|
|
1819
1825
|
referrer?: string;
|
|
1820
1826
|
}
|
|
1821
1827
|
|
|
1828
|
+
/**
|
|
1829
|
+
* Halo Next API
|
|
1830
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1831
|
+
*
|
|
1832
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1833
|
+
*
|
|
1834
|
+
*
|
|
1835
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1836
|
+
* https://openapi-generator.tech
|
|
1837
|
+
* Do not edit the class manually.
|
|
1838
|
+
*/
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @export
|
|
1842
|
+
* @interface DashboardStats
|
|
1843
|
+
*/
|
|
1844
|
+
interface DashboardStats {
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @type {number}
|
|
1848
|
+
* @memberof DashboardStats
|
|
1849
|
+
*/
|
|
1850
|
+
visits?: number;
|
|
1851
|
+
/**
|
|
1852
|
+
*
|
|
1853
|
+
* @type {number}
|
|
1854
|
+
* @memberof DashboardStats
|
|
1855
|
+
*/
|
|
1856
|
+
comments?: number;
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @type {number}
|
|
1860
|
+
* @memberof DashboardStats
|
|
1861
|
+
*/
|
|
1862
|
+
approvedComments?: number;
|
|
1863
|
+
/**
|
|
1864
|
+
*
|
|
1865
|
+
* @type {number}
|
|
1866
|
+
* @memberof DashboardStats
|
|
1867
|
+
*/
|
|
1868
|
+
upvotes?: number;
|
|
1869
|
+
/**
|
|
1870
|
+
*
|
|
1871
|
+
* @type {number}
|
|
1872
|
+
* @memberof DashboardStats
|
|
1873
|
+
*/
|
|
1874
|
+
users?: number;
|
|
1875
|
+
/**
|
|
1876
|
+
*
|
|
1877
|
+
* @type {number}
|
|
1878
|
+
* @memberof DashboardStats
|
|
1879
|
+
*/
|
|
1880
|
+
posts?: number;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1822
1883
|
/**
|
|
1823
1884
|
* Halo Next API
|
|
1824
1885
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -1876,16 +1937,16 @@ interface Extension {
|
|
|
1876
1937
|
kind: string;
|
|
1877
1938
|
/**
|
|
1878
1939
|
*
|
|
1879
|
-
* @type {
|
|
1940
|
+
* @type {string}
|
|
1880
1941
|
* @memberof Extension
|
|
1881
1942
|
*/
|
|
1882
|
-
|
|
1943
|
+
apiVersion: string;
|
|
1883
1944
|
/**
|
|
1884
1945
|
*
|
|
1885
|
-
* @type {
|
|
1946
|
+
* @type {Metadata}
|
|
1886
1947
|
* @memberof Extension
|
|
1887
1948
|
*/
|
|
1888
|
-
|
|
1949
|
+
metadata: Metadata;
|
|
1889
1950
|
}
|
|
1890
1951
|
|
|
1891
1952
|
/**
|
|
@@ -2149,6 +2210,180 @@ interface License {
|
|
|
2149
2210
|
url?: string;
|
|
2150
2211
|
}
|
|
2151
2212
|
|
|
2213
|
+
/**
|
|
2214
|
+
* Halo Next API
|
|
2215
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2216
|
+
*
|
|
2217
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2218
|
+
*
|
|
2219
|
+
*
|
|
2220
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2221
|
+
* https://openapi-generator.tech
|
|
2222
|
+
* Do not edit the class manually.
|
|
2223
|
+
*/
|
|
2224
|
+
/**
|
|
2225
|
+
*
|
|
2226
|
+
* @export
|
|
2227
|
+
* @interface LinkSpec
|
|
2228
|
+
*/
|
|
2229
|
+
interface LinkSpec {
|
|
2230
|
+
/**
|
|
2231
|
+
*
|
|
2232
|
+
* @type {string}
|
|
2233
|
+
* @memberof LinkSpec
|
|
2234
|
+
*/
|
|
2235
|
+
url: string;
|
|
2236
|
+
/**
|
|
2237
|
+
*
|
|
2238
|
+
* @type {string}
|
|
2239
|
+
* @memberof LinkSpec
|
|
2240
|
+
*/
|
|
2241
|
+
displayName: string;
|
|
2242
|
+
/**
|
|
2243
|
+
*
|
|
2244
|
+
* @type {string}
|
|
2245
|
+
* @memberof LinkSpec
|
|
2246
|
+
*/
|
|
2247
|
+
logo?: string;
|
|
2248
|
+
/**
|
|
2249
|
+
*
|
|
2250
|
+
* @type {string}
|
|
2251
|
+
* @memberof LinkSpec
|
|
2252
|
+
*/
|
|
2253
|
+
description?: string;
|
|
2254
|
+
/**
|
|
2255
|
+
*
|
|
2256
|
+
* @type {number}
|
|
2257
|
+
* @memberof LinkSpec
|
|
2258
|
+
*/
|
|
2259
|
+
priority?: number;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
/**
|
|
2263
|
+
* Halo Next API
|
|
2264
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2265
|
+
*
|
|
2266
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2267
|
+
*
|
|
2268
|
+
*
|
|
2269
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2270
|
+
* https://openapi-generator.tech
|
|
2271
|
+
* Do not edit the class manually.
|
|
2272
|
+
*/
|
|
2273
|
+
|
|
2274
|
+
/**
|
|
2275
|
+
*
|
|
2276
|
+
* @export
|
|
2277
|
+
* @interface Link
|
|
2278
|
+
*/
|
|
2279
|
+
interface Link {
|
|
2280
|
+
/**
|
|
2281
|
+
*
|
|
2282
|
+
* @type {LinkSpec}
|
|
2283
|
+
* @memberof Link
|
|
2284
|
+
*/
|
|
2285
|
+
spec?: LinkSpec;
|
|
2286
|
+
/**
|
|
2287
|
+
*
|
|
2288
|
+
* @type {string}
|
|
2289
|
+
* @memberof Link
|
|
2290
|
+
*/
|
|
2291
|
+
apiVersion: string;
|
|
2292
|
+
/**
|
|
2293
|
+
*
|
|
2294
|
+
* @type {string}
|
|
2295
|
+
* @memberof Link
|
|
2296
|
+
*/
|
|
2297
|
+
kind: string;
|
|
2298
|
+
/**
|
|
2299
|
+
*
|
|
2300
|
+
* @type {Metadata}
|
|
2301
|
+
* @memberof Link
|
|
2302
|
+
*/
|
|
2303
|
+
metadata: Metadata;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
/**
|
|
2307
|
+
* Halo Next API
|
|
2308
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2309
|
+
*
|
|
2310
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2311
|
+
*
|
|
2312
|
+
*
|
|
2313
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2314
|
+
* https://openapi-generator.tech
|
|
2315
|
+
* Do not edit the class manually.
|
|
2316
|
+
*/
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
* @export
|
|
2320
|
+
* @interface LinkGroupSpec
|
|
2321
|
+
*/
|
|
2322
|
+
interface LinkGroupSpec {
|
|
2323
|
+
/**
|
|
2324
|
+
*
|
|
2325
|
+
* @type {string}
|
|
2326
|
+
* @memberof LinkGroupSpec
|
|
2327
|
+
*/
|
|
2328
|
+
displayName: string;
|
|
2329
|
+
/**
|
|
2330
|
+
*
|
|
2331
|
+
* @type {number}
|
|
2332
|
+
* @memberof LinkGroupSpec
|
|
2333
|
+
*/
|
|
2334
|
+
priority?: number;
|
|
2335
|
+
/**
|
|
2336
|
+
* Names of links below this group.
|
|
2337
|
+
* @type {Array<string>}
|
|
2338
|
+
* @memberof LinkGroupSpec
|
|
2339
|
+
*/
|
|
2340
|
+
links?: Array<string>;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
/**
|
|
2344
|
+
* Halo Next API
|
|
2345
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2346
|
+
*
|
|
2347
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2348
|
+
*
|
|
2349
|
+
*
|
|
2350
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2351
|
+
* https://openapi-generator.tech
|
|
2352
|
+
* Do not edit the class manually.
|
|
2353
|
+
*/
|
|
2354
|
+
|
|
2355
|
+
/**
|
|
2356
|
+
*
|
|
2357
|
+
* @export
|
|
2358
|
+
* @interface LinkGroup
|
|
2359
|
+
*/
|
|
2360
|
+
interface LinkGroup {
|
|
2361
|
+
/**
|
|
2362
|
+
*
|
|
2363
|
+
* @type {LinkGroupSpec}
|
|
2364
|
+
* @memberof LinkGroup
|
|
2365
|
+
*/
|
|
2366
|
+
spec?: LinkGroupSpec;
|
|
2367
|
+
/**
|
|
2368
|
+
*
|
|
2369
|
+
* @type {string}
|
|
2370
|
+
* @memberof LinkGroup
|
|
2371
|
+
*/
|
|
2372
|
+
apiVersion: string;
|
|
2373
|
+
/**
|
|
2374
|
+
*
|
|
2375
|
+
* @type {string}
|
|
2376
|
+
* @memberof LinkGroup
|
|
2377
|
+
*/
|
|
2378
|
+
kind: string;
|
|
2379
|
+
/**
|
|
2380
|
+
*
|
|
2381
|
+
* @type {Metadata}
|
|
2382
|
+
* @memberof LinkGroup
|
|
2383
|
+
*/
|
|
2384
|
+
metadata: Metadata;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2152
2387
|
/**
|
|
2153
2388
|
* Halo Next API
|
|
2154
2389
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -2537,37 +2772,25 @@ interface Stats {
|
|
|
2537
2772
|
* @type {number}
|
|
2538
2773
|
* @memberof Stats
|
|
2539
2774
|
*/
|
|
2540
|
-
|
|
2541
|
-
/**
|
|
2542
|
-
*
|
|
2543
|
-
* @type {number}
|
|
2544
|
-
* @memberof Stats
|
|
2545
|
-
*/
|
|
2546
|
-
comments?: number;
|
|
2547
|
-
/**
|
|
2548
|
-
*
|
|
2549
|
-
* @type {number}
|
|
2550
|
-
* @memberof Stats
|
|
2551
|
-
*/
|
|
2552
|
-
approvedComments?: number;
|
|
2775
|
+
visit?: number;
|
|
2553
2776
|
/**
|
|
2554
2777
|
*
|
|
2555
2778
|
* @type {number}
|
|
2556
2779
|
* @memberof Stats
|
|
2557
2780
|
*/
|
|
2558
|
-
|
|
2781
|
+
upvote?: number;
|
|
2559
2782
|
/**
|
|
2560
2783
|
*
|
|
2561
2784
|
* @type {number}
|
|
2562
2785
|
* @memberof Stats
|
|
2563
2786
|
*/
|
|
2564
|
-
|
|
2787
|
+
totalComment?: number;
|
|
2565
2788
|
/**
|
|
2566
2789
|
*
|
|
2567
2790
|
* @type {number}
|
|
2568
2791
|
* @memberof Stats
|
|
2569
2792
|
*/
|
|
2570
|
-
|
|
2793
|
+
approvedComment?: number;
|
|
2571
2794
|
}
|
|
2572
2795
|
|
|
2573
2796
|
/**
|
|
@@ -8011,7 +8234,7 @@ declare const ApiConsoleHaloRunV1alpha1StatsApiFp: (configuration?: Configuratio
|
|
|
8011
8234
|
* @param {*} [options] Override http request option.
|
|
8012
8235
|
* @throws {RequiredError}
|
|
8013
8236
|
*/
|
|
8014
|
-
getStats(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8237
|
+
getStats(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardStats>>;
|
|
8015
8238
|
};
|
|
8016
8239
|
/**
|
|
8017
8240
|
* ApiConsoleHaloRunV1alpha1StatsApi - factory interface
|
|
@@ -8023,7 +8246,7 @@ declare const ApiConsoleHaloRunV1alpha1StatsApiFactory: (configuration?: Configu
|
|
|
8023
8246
|
* @param {*} [options] Override http request option.
|
|
8024
8247
|
* @throws {RequiredError}
|
|
8025
8248
|
*/
|
|
8026
|
-
getStats(options?: any): AxiosPromise<
|
|
8249
|
+
getStats(options?: any): AxiosPromise<DashboardStats>;
|
|
8027
8250
|
};
|
|
8028
8251
|
/**
|
|
8029
8252
|
* ApiConsoleHaloRunV1alpha1StatsApi - object-oriented interface
|
|
@@ -8038,7 +8261,7 @@ declare class ApiConsoleHaloRunV1alpha1StatsApi extends BaseAPI {
|
|
|
8038
8261
|
* @throws {RequiredError}
|
|
8039
8262
|
* @memberof ApiConsoleHaloRunV1alpha1StatsApi
|
|
8040
8263
|
*/
|
|
8041
|
-
getStats(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
8264
|
+
getStats(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<DashboardStats, any>>;
|
|
8042
8265
|
}
|
|
8043
8266
|
|
|
8044
8267
|
/**
|
|
@@ -8071,6 +8294,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8071
8294
|
* @throws {RequiredError}
|
|
8072
8295
|
*/
|
|
8073
8296
|
reloadThemeSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8297
|
+
/**
|
|
8298
|
+
* Upgrade theme
|
|
8299
|
+
* @param {string} name
|
|
8300
|
+
* @param {any} file
|
|
8301
|
+
* @param {*} [options] Override http request option.
|
|
8302
|
+
* @throws {RequiredError}
|
|
8303
|
+
*/
|
|
8304
|
+
upgradeTheme: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8074
8305
|
};
|
|
8075
8306
|
/**
|
|
8076
8307
|
* ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
|
|
@@ -8102,6 +8333,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8102
8333
|
* @throws {RequiredError}
|
|
8103
8334
|
*/
|
|
8104
8335
|
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
8336
|
+
/**
|
|
8337
|
+
* Upgrade theme
|
|
8338
|
+
* @param {string} name
|
|
8339
|
+
* @param {any} file
|
|
8340
|
+
* @param {*} [options] Override http request option.
|
|
8341
|
+
* @throws {RequiredError}
|
|
8342
|
+
*/
|
|
8343
|
+
upgradeTheme(name: string, file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8105
8344
|
};
|
|
8106
8345
|
/**
|
|
8107
8346
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -8133,6 +8372,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8133
8372
|
* @throws {RequiredError}
|
|
8134
8373
|
*/
|
|
8135
8374
|
reloadThemeSetting(name: string, options?: any): AxiosPromise<Theme>;
|
|
8375
|
+
/**
|
|
8376
|
+
* Upgrade theme
|
|
8377
|
+
* @param {string} name
|
|
8378
|
+
* @param {any} file
|
|
8379
|
+
* @param {*} [options] Override http request option.
|
|
8380
|
+
* @throws {RequiredError}
|
|
8381
|
+
*/
|
|
8382
|
+
upgradeTheme(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
8136
8383
|
};
|
|
8137
8384
|
/**
|
|
8138
8385
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -8197,6 +8444,25 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest {
|
|
|
8197
8444
|
*/
|
|
8198
8445
|
readonly name: string;
|
|
8199
8446
|
}
|
|
8447
|
+
/**
|
|
8448
|
+
* Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
8449
|
+
* @export
|
|
8450
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest
|
|
8451
|
+
*/
|
|
8452
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest {
|
|
8453
|
+
/**
|
|
8454
|
+
*
|
|
8455
|
+
* @type {string}
|
|
8456
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
|
|
8457
|
+
*/
|
|
8458
|
+
readonly name: string;
|
|
8459
|
+
/**
|
|
8460
|
+
*
|
|
8461
|
+
* @type {any}
|
|
8462
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
|
|
8463
|
+
*/
|
|
8464
|
+
readonly file: any;
|
|
8465
|
+
}
|
|
8200
8466
|
/**
|
|
8201
8467
|
* ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
8202
8468
|
* @export
|
|
@@ -8228,6 +8494,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
8228
8494
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
8229
8495
|
*/
|
|
8230
8496
|
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
8497
|
+
/**
|
|
8498
|
+
* Upgrade theme
|
|
8499
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
|
|
8500
|
+
* @param {*} [options] Override http request option.
|
|
8501
|
+
* @throws {RequiredError}
|
|
8502
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
8503
|
+
*/
|
|
8504
|
+
upgradeTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8231
8505
|
}
|
|
8232
8506
|
|
|
8233
8507
|
/**
|
|
@@ -10799,6 +11073,552 @@ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
10799
11073
|
updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
10800
11074
|
}
|
|
10801
11075
|
|
|
11076
|
+
/**
|
|
11077
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
11078
|
+
* @export
|
|
11079
|
+
*/
|
|
11080
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11081
|
+
/**
|
|
11082
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11083
|
+
* @param {Link} [link] Fresh link
|
|
11084
|
+
* @param {*} [options] Override http request option.
|
|
11085
|
+
* @throws {RequiredError}
|
|
11086
|
+
*/
|
|
11087
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11088
|
+
/**
|
|
11089
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11090
|
+
* @param {string} name Name of link
|
|
11091
|
+
* @param {*} [options] Override http request option.
|
|
11092
|
+
* @throws {RequiredError}
|
|
11093
|
+
*/
|
|
11094
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11095
|
+
/**
|
|
11096
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11097
|
+
* @param {string} name Name of link
|
|
11098
|
+
* @param {*} [options] Override http request option.
|
|
11099
|
+
* @throws {RequiredError}
|
|
11100
|
+
*/
|
|
11101
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11102
|
+
/**
|
|
11103
|
+
* List core.halo.run/v1alpha1/Link
|
|
11104
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11105
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11106
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11107
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11108
|
+
* @param {*} [options] Override http request option.
|
|
11109
|
+
* @throws {RequiredError}
|
|
11110
|
+
*/
|
|
11111
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11112
|
+
/**
|
|
11113
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11114
|
+
* @param {string} name Name of link
|
|
11115
|
+
* @param {Link} [link] Updated link
|
|
11116
|
+
* @param {*} [options] Override http request option.
|
|
11117
|
+
* @throws {RequiredError}
|
|
11118
|
+
*/
|
|
11119
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11120
|
+
};
|
|
11121
|
+
/**
|
|
11122
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
11123
|
+
* @export
|
|
11124
|
+
*/
|
|
11125
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
11126
|
+
/**
|
|
11127
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11128
|
+
* @param {Link} [link] Fresh link
|
|
11129
|
+
* @param {*} [options] Override http request option.
|
|
11130
|
+
* @throws {RequiredError}
|
|
11131
|
+
*/
|
|
11132
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
11133
|
+
/**
|
|
11134
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11135
|
+
* @param {string} name Name of link
|
|
11136
|
+
* @param {*} [options] Override http request option.
|
|
11137
|
+
* @throws {RequiredError}
|
|
11138
|
+
*/
|
|
11139
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11140
|
+
/**
|
|
11141
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11142
|
+
* @param {string} name Name of link
|
|
11143
|
+
* @param {*} [options] Override http request option.
|
|
11144
|
+
* @throws {RequiredError}
|
|
11145
|
+
*/
|
|
11146
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
11147
|
+
/**
|
|
11148
|
+
* List core.halo.run/v1alpha1/Link
|
|
11149
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11150
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11151
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11152
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11153
|
+
* @param {*} [options] Override http request option.
|
|
11154
|
+
* @throws {RequiredError}
|
|
11155
|
+
*/
|
|
11156
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
11157
|
+
/**
|
|
11158
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11159
|
+
* @param {string} name Name of link
|
|
11160
|
+
* @param {Link} [link] Updated link
|
|
11161
|
+
* @param {*} [options] Override http request option.
|
|
11162
|
+
* @throws {RequiredError}
|
|
11163
|
+
*/
|
|
11164
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
11165
|
+
};
|
|
11166
|
+
/**
|
|
11167
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
11168
|
+
* @export
|
|
11169
|
+
*/
|
|
11170
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11171
|
+
/**
|
|
11172
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11173
|
+
* @param {Link} [link] Fresh link
|
|
11174
|
+
* @param {*} [options] Override http request option.
|
|
11175
|
+
* @throws {RequiredError}
|
|
11176
|
+
*/
|
|
11177
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
11178
|
+
/**
|
|
11179
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11180
|
+
* @param {string} name Name of link
|
|
11181
|
+
* @param {*} [options] Override http request option.
|
|
11182
|
+
* @throws {RequiredError}
|
|
11183
|
+
*/
|
|
11184
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
11185
|
+
/**
|
|
11186
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11187
|
+
* @param {string} name Name of link
|
|
11188
|
+
* @param {*} [options] Override http request option.
|
|
11189
|
+
* @throws {RequiredError}
|
|
11190
|
+
*/
|
|
11191
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
11192
|
+
/**
|
|
11193
|
+
* List core.halo.run/v1alpha1/Link
|
|
11194
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11195
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11196
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11197
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11198
|
+
* @param {*} [options] Override http request option.
|
|
11199
|
+
* @throws {RequiredError}
|
|
11200
|
+
*/
|
|
11201
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
11202
|
+
/**
|
|
11203
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11204
|
+
* @param {string} name Name of link
|
|
11205
|
+
* @param {Link} [link] Updated link
|
|
11206
|
+
* @param {*} [options] Override http request option.
|
|
11207
|
+
* @throws {RequiredError}
|
|
11208
|
+
*/
|
|
11209
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
11210
|
+
};
|
|
11211
|
+
/**
|
|
11212
|
+
* Request parameters for createcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11213
|
+
* @export
|
|
11214
|
+
* @interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest
|
|
11215
|
+
*/
|
|
11216
|
+
interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest {
|
|
11217
|
+
/**
|
|
11218
|
+
* Fresh link
|
|
11219
|
+
* @type {Link}
|
|
11220
|
+
* @memberof CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1Link
|
|
11221
|
+
*/
|
|
11222
|
+
readonly link?: Link;
|
|
11223
|
+
}
|
|
11224
|
+
/**
|
|
11225
|
+
* Request parameters for deletecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11226
|
+
* @export
|
|
11227
|
+
* @interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest
|
|
11228
|
+
*/
|
|
11229
|
+
interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest {
|
|
11230
|
+
/**
|
|
11231
|
+
* Name of link
|
|
11232
|
+
* @type {string}
|
|
11233
|
+
* @memberof CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1Link
|
|
11234
|
+
*/
|
|
11235
|
+
readonly name: string;
|
|
11236
|
+
}
|
|
11237
|
+
/**
|
|
11238
|
+
* Request parameters for getcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11239
|
+
* @export
|
|
11240
|
+
* @interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest
|
|
11241
|
+
*/
|
|
11242
|
+
interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest {
|
|
11243
|
+
/**
|
|
11244
|
+
* Name of link
|
|
11245
|
+
* @type {string}
|
|
11246
|
+
* @memberof CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1Link
|
|
11247
|
+
*/
|
|
11248
|
+
readonly name: string;
|
|
11249
|
+
}
|
|
11250
|
+
/**
|
|
11251
|
+
* Request parameters for listcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11252
|
+
* @export
|
|
11253
|
+
* @interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest
|
|
11254
|
+
*/
|
|
11255
|
+
interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest {
|
|
11256
|
+
/**
|
|
11257
|
+
* The page number. Zero indicates no page.
|
|
11258
|
+
* @type {number}
|
|
11259
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11260
|
+
*/
|
|
11261
|
+
readonly page?: number;
|
|
11262
|
+
/**
|
|
11263
|
+
* Size of one page. Zero indicates no limit.
|
|
11264
|
+
* @type {number}
|
|
11265
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11266
|
+
*/
|
|
11267
|
+
readonly size?: number;
|
|
11268
|
+
/**
|
|
11269
|
+
* Label selector for filtering.
|
|
11270
|
+
* @type {Array<string>}
|
|
11271
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11272
|
+
*/
|
|
11273
|
+
readonly labelSelector?: Array<string>;
|
|
11274
|
+
/**
|
|
11275
|
+
* Field selector for filtering.
|
|
11276
|
+
* @type {Array<string>}
|
|
11277
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11278
|
+
*/
|
|
11279
|
+
readonly fieldSelector?: Array<string>;
|
|
11280
|
+
}
|
|
11281
|
+
/**
|
|
11282
|
+
* Request parameters for updatecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11283
|
+
* @export
|
|
11284
|
+
* @interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest
|
|
11285
|
+
*/
|
|
11286
|
+
interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest {
|
|
11287
|
+
/**
|
|
11288
|
+
* Name of link
|
|
11289
|
+
* @type {string}
|
|
11290
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
11291
|
+
*/
|
|
11292
|
+
readonly name: string;
|
|
11293
|
+
/**
|
|
11294
|
+
* Updated link
|
|
11295
|
+
* @type {Link}
|
|
11296
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
11297
|
+
*/
|
|
11298
|
+
readonly link?: Link;
|
|
11299
|
+
}
|
|
11300
|
+
/**
|
|
11301
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
11302
|
+
* @export
|
|
11303
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
11304
|
+
* @extends {BaseAPI}
|
|
11305
|
+
*/
|
|
11306
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
11307
|
+
/**
|
|
11308
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11309
|
+
* @param {CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11310
|
+
* @param {*} [options] Override http request option.
|
|
11311
|
+
* @throws {RequiredError}
|
|
11312
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11313
|
+
*/
|
|
11314
|
+
createcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
11315
|
+
/**
|
|
11316
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11317
|
+
* @param {CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11318
|
+
* @param {*} [options] Override http request option.
|
|
11319
|
+
* @throws {RequiredError}
|
|
11320
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11321
|
+
*/
|
|
11322
|
+
deletecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11323
|
+
/**
|
|
11324
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11325
|
+
* @param {CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11326
|
+
* @param {*} [options] Override http request option.
|
|
11327
|
+
* @throws {RequiredError}
|
|
11328
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11329
|
+
*/
|
|
11330
|
+
getcoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
11331
|
+
/**
|
|
11332
|
+
* List core.halo.run/v1alpha1/Link
|
|
11333
|
+
* @param {CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11334
|
+
* @param {*} [options] Override http request option.
|
|
11335
|
+
* @throws {RequiredError}
|
|
11336
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11337
|
+
*/
|
|
11338
|
+
listcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
11339
|
+
/**
|
|
11340
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11341
|
+
* @param {CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11342
|
+
* @param {*} [options] Override http request option.
|
|
11343
|
+
* @throws {RequiredError}
|
|
11344
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11345
|
+
*/
|
|
11346
|
+
updatecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
11347
|
+
}
|
|
11348
|
+
|
|
11349
|
+
/**
|
|
11350
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
11351
|
+
* @export
|
|
11352
|
+
*/
|
|
11353
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11354
|
+
/**
|
|
11355
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11356
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
11357
|
+
* @param {*} [options] Override http request option.
|
|
11358
|
+
* @throws {RequiredError}
|
|
11359
|
+
*/
|
|
11360
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11361
|
+
/**
|
|
11362
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11363
|
+
* @param {string} name Name of linkgroup
|
|
11364
|
+
* @param {*} [options] Override http request option.
|
|
11365
|
+
* @throws {RequiredError}
|
|
11366
|
+
*/
|
|
11367
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11368
|
+
/**
|
|
11369
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11370
|
+
* @param {string} name Name of linkgroup
|
|
11371
|
+
* @param {*} [options] Override http request option.
|
|
11372
|
+
* @throws {RequiredError}
|
|
11373
|
+
*/
|
|
11374
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11375
|
+
/**
|
|
11376
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11377
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11378
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11379
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11380
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11381
|
+
* @param {*} [options] Override http request option.
|
|
11382
|
+
* @throws {RequiredError}
|
|
11383
|
+
*/
|
|
11384
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11385
|
+
/**
|
|
11386
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11387
|
+
* @param {string} name Name of linkgroup
|
|
11388
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
11389
|
+
* @param {*} [options] Override http request option.
|
|
11390
|
+
* @throws {RequiredError}
|
|
11391
|
+
*/
|
|
11392
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11393
|
+
};
|
|
11394
|
+
/**
|
|
11395
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
11396
|
+
* @export
|
|
11397
|
+
*/
|
|
11398
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
11399
|
+
/**
|
|
11400
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11401
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
11402
|
+
* @param {*} [options] Override http request option.
|
|
11403
|
+
* @throws {RequiredError}
|
|
11404
|
+
*/
|
|
11405
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
11406
|
+
/**
|
|
11407
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11408
|
+
* @param {string} name Name of linkgroup
|
|
11409
|
+
* @param {*} [options] Override http request option.
|
|
11410
|
+
* @throws {RequiredError}
|
|
11411
|
+
*/
|
|
11412
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11413
|
+
/**
|
|
11414
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11415
|
+
* @param {string} name Name of linkgroup
|
|
11416
|
+
* @param {*} [options] Override http request option.
|
|
11417
|
+
* @throws {RequiredError}
|
|
11418
|
+
*/
|
|
11419
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
11420
|
+
/**
|
|
11421
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11422
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11423
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11424
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11425
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11426
|
+
* @param {*} [options] Override http request option.
|
|
11427
|
+
* @throws {RequiredError}
|
|
11428
|
+
*/
|
|
11429
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
11430
|
+
/**
|
|
11431
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11432
|
+
* @param {string} name Name of linkgroup
|
|
11433
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
11434
|
+
* @param {*} [options] Override http request option.
|
|
11435
|
+
* @throws {RequiredError}
|
|
11436
|
+
*/
|
|
11437
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
11438
|
+
};
|
|
11439
|
+
/**
|
|
11440
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
11441
|
+
* @export
|
|
11442
|
+
*/
|
|
11443
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11444
|
+
/**
|
|
11445
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11446
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
11447
|
+
* @param {*} [options] Override http request option.
|
|
11448
|
+
* @throws {RequiredError}
|
|
11449
|
+
*/
|
|
11450
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
11451
|
+
/**
|
|
11452
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11453
|
+
* @param {string} name Name of linkgroup
|
|
11454
|
+
* @param {*} [options] Override http request option.
|
|
11455
|
+
* @throws {RequiredError}
|
|
11456
|
+
*/
|
|
11457
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
11458
|
+
/**
|
|
11459
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11460
|
+
* @param {string} name Name of linkgroup
|
|
11461
|
+
* @param {*} [options] Override http request option.
|
|
11462
|
+
* @throws {RequiredError}
|
|
11463
|
+
*/
|
|
11464
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
11465
|
+
/**
|
|
11466
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11467
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11468
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11469
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11470
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11471
|
+
* @param {*} [options] Override http request option.
|
|
11472
|
+
* @throws {RequiredError}
|
|
11473
|
+
*/
|
|
11474
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
11475
|
+
/**
|
|
11476
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11477
|
+
* @param {string} name Name of linkgroup
|
|
11478
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
11479
|
+
* @param {*} [options] Override http request option.
|
|
11480
|
+
* @throws {RequiredError}
|
|
11481
|
+
*/
|
|
11482
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
11483
|
+
};
|
|
11484
|
+
/**
|
|
11485
|
+
* Request parameters for createcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11486
|
+
* @export
|
|
11487
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest
|
|
11488
|
+
*/
|
|
11489
|
+
interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
11490
|
+
/**
|
|
11491
|
+
* Fresh linkgroup
|
|
11492
|
+
* @type {LinkGroup}
|
|
11493
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroup
|
|
11494
|
+
*/
|
|
11495
|
+
readonly linkGroup?: LinkGroup;
|
|
11496
|
+
}
|
|
11497
|
+
/**
|
|
11498
|
+
* Request parameters for deletecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11499
|
+
* @export
|
|
11500
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest
|
|
11501
|
+
*/
|
|
11502
|
+
interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest {
|
|
11503
|
+
/**
|
|
11504
|
+
* Name of linkgroup
|
|
11505
|
+
* @type {string}
|
|
11506
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroup
|
|
11507
|
+
*/
|
|
11508
|
+
readonly name: string;
|
|
11509
|
+
}
|
|
11510
|
+
/**
|
|
11511
|
+
* Request parameters for getcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11512
|
+
* @export
|
|
11513
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest
|
|
11514
|
+
*/
|
|
11515
|
+
interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest {
|
|
11516
|
+
/**
|
|
11517
|
+
* Name of linkgroup
|
|
11518
|
+
* @type {string}
|
|
11519
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroup
|
|
11520
|
+
*/
|
|
11521
|
+
readonly name: string;
|
|
11522
|
+
}
|
|
11523
|
+
/**
|
|
11524
|
+
* Request parameters for listcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11525
|
+
* @export
|
|
11526
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest
|
|
11527
|
+
*/
|
|
11528
|
+
interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest {
|
|
11529
|
+
/**
|
|
11530
|
+
* The page number. Zero indicates no page.
|
|
11531
|
+
* @type {number}
|
|
11532
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11533
|
+
*/
|
|
11534
|
+
readonly page?: number;
|
|
11535
|
+
/**
|
|
11536
|
+
* Size of one page. Zero indicates no limit.
|
|
11537
|
+
* @type {number}
|
|
11538
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11539
|
+
*/
|
|
11540
|
+
readonly size?: number;
|
|
11541
|
+
/**
|
|
11542
|
+
* Label selector for filtering.
|
|
11543
|
+
* @type {Array<string>}
|
|
11544
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11545
|
+
*/
|
|
11546
|
+
readonly labelSelector?: Array<string>;
|
|
11547
|
+
/**
|
|
11548
|
+
* Field selector for filtering.
|
|
11549
|
+
* @type {Array<string>}
|
|
11550
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11551
|
+
*/
|
|
11552
|
+
readonly fieldSelector?: Array<string>;
|
|
11553
|
+
}
|
|
11554
|
+
/**
|
|
11555
|
+
* Request parameters for updatecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11556
|
+
* @export
|
|
11557
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest
|
|
11558
|
+
*/
|
|
11559
|
+
interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
11560
|
+
/**
|
|
11561
|
+
* Name of linkgroup
|
|
11562
|
+
* @type {string}
|
|
11563
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
11564
|
+
*/
|
|
11565
|
+
readonly name: string;
|
|
11566
|
+
/**
|
|
11567
|
+
* Updated linkgroup
|
|
11568
|
+
* @type {LinkGroup}
|
|
11569
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
11570
|
+
*/
|
|
11571
|
+
readonly linkGroup?: LinkGroup;
|
|
11572
|
+
}
|
|
11573
|
+
/**
|
|
11574
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
11575
|
+
* @export
|
|
11576
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
11577
|
+
* @extends {BaseAPI}
|
|
11578
|
+
*/
|
|
11579
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
11580
|
+
/**
|
|
11581
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11582
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11583
|
+
* @param {*} [options] Override http request option.
|
|
11584
|
+
* @throws {RequiredError}
|
|
11585
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11586
|
+
*/
|
|
11587
|
+
createcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
11588
|
+
/**
|
|
11589
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11590
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11591
|
+
* @param {*} [options] Override http request option.
|
|
11592
|
+
* @throws {RequiredError}
|
|
11593
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11594
|
+
*/
|
|
11595
|
+
deletecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11596
|
+
/**
|
|
11597
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11598
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11599
|
+
* @param {*} [options] Override http request option.
|
|
11600
|
+
* @throws {RequiredError}
|
|
11601
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11602
|
+
*/
|
|
11603
|
+
getcoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
11604
|
+
/**
|
|
11605
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11606
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11607
|
+
* @param {*} [options] Override http request option.
|
|
11608
|
+
* @throws {RequiredError}
|
|
11609
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11610
|
+
*/
|
|
11611
|
+
listcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
11612
|
+
/**
|
|
11613
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11614
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11615
|
+
* @param {*} [options] Override http request option.
|
|
11616
|
+
* @throws {RequiredError}
|
|
11617
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11618
|
+
*/
|
|
11619
|
+
updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
11620
|
+
}
|
|
11621
|
+
|
|
10802
11622
|
/**
|
|
10803
11623
|
* MetricsHaloRunV1alpha1CounterApi - axios parameter creator
|
|
10804
11624
|
* @export
|
|
@@ -15167,4 +15987,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15167
15987
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15168
15988
|
}
|
|
15169
15989
|
|
|
15170
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
15990
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Counter, CounterList, CounterRequest, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|