@halo-dev/api-client 0.0.38 → 0.0.40
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 +38 -380
- package/dist/index.d.ts +148 -730
- package/dist/index.mjs +39 -373
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1825,6 +1825,87 @@ interface CounterRequest {
|
|
|
1825
1825
|
referrer?: string;
|
|
1826
1826
|
}
|
|
1827
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 TemplateDescriptor
|
|
1843
|
+
*/
|
|
1844
|
+
interface TemplateDescriptor {
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @type {string}
|
|
1848
|
+
* @memberof TemplateDescriptor
|
|
1849
|
+
*/
|
|
1850
|
+
name: string;
|
|
1851
|
+
/**
|
|
1852
|
+
*
|
|
1853
|
+
* @type {string}
|
|
1854
|
+
* @memberof TemplateDescriptor
|
|
1855
|
+
*/
|
|
1856
|
+
description?: string;
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @type {string}
|
|
1860
|
+
* @memberof TemplateDescriptor
|
|
1861
|
+
*/
|
|
1862
|
+
screenshot?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
*
|
|
1865
|
+
* @type {string}
|
|
1866
|
+
* @memberof TemplateDescriptor
|
|
1867
|
+
*/
|
|
1868
|
+
file: string;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
/**
|
|
1872
|
+
* Halo Next API
|
|
1873
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1874
|
+
*
|
|
1875
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1876
|
+
*
|
|
1877
|
+
*
|
|
1878
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1879
|
+
* https://openapi-generator.tech
|
|
1880
|
+
* Do not edit the class manually.
|
|
1881
|
+
*/
|
|
1882
|
+
|
|
1883
|
+
/**
|
|
1884
|
+
*
|
|
1885
|
+
* @export
|
|
1886
|
+
* @interface CustomTemplates
|
|
1887
|
+
*/
|
|
1888
|
+
interface CustomTemplates {
|
|
1889
|
+
/**
|
|
1890
|
+
*
|
|
1891
|
+
* @type {Array<TemplateDescriptor>}
|
|
1892
|
+
* @memberof CustomTemplates
|
|
1893
|
+
*/
|
|
1894
|
+
post?: Array<TemplateDescriptor>;
|
|
1895
|
+
/**
|
|
1896
|
+
*
|
|
1897
|
+
* @type {Array<TemplateDescriptor>}
|
|
1898
|
+
* @memberof CustomTemplates
|
|
1899
|
+
*/
|
|
1900
|
+
category?: Array<TemplateDescriptor>;
|
|
1901
|
+
/**
|
|
1902
|
+
*
|
|
1903
|
+
* @type {Array<TemplateDescriptor>}
|
|
1904
|
+
* @memberof CustomTemplates
|
|
1905
|
+
*/
|
|
1906
|
+
page?: Array<TemplateDescriptor>;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1828
1909
|
/**
|
|
1829
1910
|
* Halo Next API
|
|
1830
1911
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -1937,16 +2018,16 @@ interface Extension {
|
|
|
1937
2018
|
kind: string;
|
|
1938
2019
|
/**
|
|
1939
2020
|
*
|
|
1940
|
-
* @type {
|
|
2021
|
+
* @type {Metadata}
|
|
1941
2022
|
* @memberof Extension
|
|
1942
2023
|
*/
|
|
1943
|
-
|
|
2024
|
+
metadata: Metadata;
|
|
1944
2025
|
/**
|
|
1945
2026
|
*
|
|
1946
|
-
* @type {
|
|
2027
|
+
* @type {string}
|
|
1947
2028
|
* @memberof Extension
|
|
1948
2029
|
*/
|
|
1949
|
-
|
|
2030
|
+
apiVersion: string;
|
|
1950
2031
|
}
|
|
1951
2032
|
|
|
1952
2033
|
/**
|
|
@@ -2210,180 +2291,6 @@ interface License {
|
|
|
2210
2291
|
url?: string;
|
|
2211
2292
|
}
|
|
2212
2293
|
|
|
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
|
-
|
|
2387
2294
|
/**
|
|
2388
2295
|
* Halo Next API
|
|
2389
2296
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4236,7 +4143,7 @@ interface PluginSpec {
|
|
|
4236
4143
|
* @type {string}
|
|
4237
4144
|
* @memberof PluginSpec
|
|
4238
4145
|
*/
|
|
4239
|
-
version
|
|
4146
|
+
version: string;
|
|
4240
4147
|
/**
|
|
4241
4148
|
*
|
|
4242
4149
|
* @type {string}
|
|
@@ -6218,6 +6125,12 @@ interface ThemeSpec {
|
|
|
6218
6125
|
* @memberof ThemeSpec
|
|
6219
6126
|
*/
|
|
6220
6127
|
configMapName?: string;
|
|
6128
|
+
/**
|
|
6129
|
+
*
|
|
6130
|
+
* @type {CustomTemplates}
|
|
6131
|
+
* @memberof ThemeSpec
|
|
6132
|
+
*/
|
|
6133
|
+
customTemplates?: CustomTemplates;
|
|
6221
6134
|
}
|
|
6222
6135
|
|
|
6223
6136
|
/**
|
|
@@ -7379,6 +7292,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7379
7292
|
* @throws {RequiredError}
|
|
7380
7293
|
*/
|
|
7381
7294
|
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7295
|
+
/**
|
|
7296
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7297
|
+
* @param {string} name
|
|
7298
|
+
* @param {any} file
|
|
7299
|
+
* @param {*} [options] Override http request option.
|
|
7300
|
+
* @throws {RequiredError}
|
|
7301
|
+
*/
|
|
7302
|
+
upgradePlugin: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7382
7303
|
};
|
|
7383
7304
|
/**
|
|
7384
7305
|
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
@@ -7405,6 +7326,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7405
7326
|
* @throws {RequiredError}
|
|
7406
7327
|
*/
|
|
7407
7328
|
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7329
|
+
/**
|
|
7330
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7331
|
+
* @param {string} name
|
|
7332
|
+
* @param {any} file
|
|
7333
|
+
* @param {*} [options] Override http request option.
|
|
7334
|
+
* @throws {RequiredError}
|
|
7335
|
+
*/
|
|
7336
|
+
upgradePlugin(name: string, file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7408
7337
|
};
|
|
7409
7338
|
/**
|
|
7410
7339
|
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -7431,6 +7360,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7431
7360
|
* @throws {RequiredError}
|
|
7432
7361
|
*/
|
|
7433
7362
|
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7363
|
+
/**
|
|
7364
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7365
|
+
* @param {string} name
|
|
7366
|
+
* @param {any} file
|
|
7367
|
+
* @param {*} [options] Override http request option.
|
|
7368
|
+
* @throws {RequiredError}
|
|
7369
|
+
*/
|
|
7370
|
+
upgradePlugin(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
7434
7371
|
};
|
|
7435
7372
|
/**
|
|
7436
7373
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7494,6 +7431,25 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7494
7431
|
*/
|
|
7495
7432
|
readonly fieldSelector?: Array<string>;
|
|
7496
7433
|
}
|
|
7434
|
+
/**
|
|
7435
|
+
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
7436
|
+
* @export
|
|
7437
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest
|
|
7438
|
+
*/
|
|
7439
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest {
|
|
7440
|
+
/**
|
|
7441
|
+
*
|
|
7442
|
+
* @type {string}
|
|
7443
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
7444
|
+
*/
|
|
7445
|
+
readonly name: string;
|
|
7446
|
+
/**
|
|
7447
|
+
*
|
|
7448
|
+
* @type {any}
|
|
7449
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
7450
|
+
*/
|
|
7451
|
+
readonly file: any;
|
|
7452
|
+
}
|
|
7497
7453
|
/**
|
|
7498
7454
|
* ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
|
|
7499
7455
|
* @export
|
|
@@ -7517,10 +7473,18 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
7517
7473
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7518
7474
|
*/
|
|
7519
7475
|
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
*
|
|
7476
|
+
/**
|
|
7477
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7478
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
7479
|
+
* @param {*} [options] Override http request option.
|
|
7480
|
+
* @throws {RequiredError}
|
|
7481
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7482
|
+
*/
|
|
7483
|
+
upgradePlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7484
|
+
}
|
|
7485
|
+
|
|
7486
|
+
/**
|
|
7487
|
+
* ApiConsoleHaloRunV1alpha1PostApi - axios parameter creator
|
|
7524
7488
|
* @export
|
|
7525
7489
|
*/
|
|
7526
7490
|
declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
@@ -11073,552 +11037,6 @@ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
11073
11037
|
updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
11074
11038
|
}
|
|
11075
11039
|
|
|
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
|
-
|
|
11622
11040
|
/**
|
|
11623
11041
|
* MetricsHaloRunV1alpha1CounterApi - axios parameter creator
|
|
11624
11042
|
* @export
|
|
@@ -15987,4 +15405,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15987
15405
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15988
15406
|
}
|
|
15989
15407
|
|
|
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 };
|
|
15408
|
+
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, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, 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, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, 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, TemplateDescriptor, 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 };
|