@halo-dev/api-client 0.0.71 → 2.3.0
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/LICENSE +674 -21
- package/README.md +1 -14
- package/dist/index.cjs +1986 -758
- package/dist/index.d.ts +1292 -1140
- package/dist/index.mjs +1986 -758
- package/package.json +15 -9
package/dist/index.d.ts
CHANGED
|
@@ -1000,6 +1000,12 @@ interface CommentSpec {
|
|
|
1000
1000
|
* @memberof CommentSpec
|
|
1001
1001
|
*/
|
|
1002
1002
|
approvedTime?: string;
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @type {string}
|
|
1006
|
+
* @memberof CommentSpec
|
|
1007
|
+
*/
|
|
1008
|
+
creationTime?: string;
|
|
1003
1009
|
/**
|
|
1004
1010
|
*
|
|
1005
1011
|
* @type {number}
|
|
@@ -1524,7 +1530,7 @@ declare const ConditionStatusEnum: {
|
|
|
1524
1530
|
readonly False: "FALSE";
|
|
1525
1531
|
readonly Unknown: "UNKNOWN";
|
|
1526
1532
|
};
|
|
1527
|
-
|
|
1533
|
+
type ConditionStatusEnum = typeof ConditionStatusEnum[keyof typeof ConditionStatusEnum];
|
|
1528
1534
|
|
|
1529
1535
|
/**
|
|
1530
1536
|
* Halo Next API
|
|
@@ -2116,21 +2122,39 @@ interface DashboardStats {
|
|
|
2116
2122
|
/**
|
|
2117
2123
|
*
|
|
2118
2124
|
* @export
|
|
2119
|
-
* @interface
|
|
2125
|
+
* @interface PolicyRule
|
|
2120
2126
|
*/
|
|
2121
|
-
interface
|
|
2127
|
+
interface PolicyRule {
|
|
2122
2128
|
/**
|
|
2123
2129
|
*
|
|
2124
|
-
* @type {
|
|
2125
|
-
* @memberof
|
|
2130
|
+
* @type {Array<string>}
|
|
2131
|
+
* @memberof PolicyRule
|
|
2126
2132
|
*/
|
|
2127
|
-
|
|
2133
|
+
apiGroups?: Array<string>;
|
|
2128
2134
|
/**
|
|
2129
2135
|
*
|
|
2130
|
-
* @type {string}
|
|
2131
|
-
* @memberof
|
|
2136
|
+
* @type {Array<string>}
|
|
2137
|
+
* @memberof PolicyRule
|
|
2132
2138
|
*/
|
|
2133
|
-
|
|
2139
|
+
resources?: Array<string>;
|
|
2140
|
+
/**
|
|
2141
|
+
*
|
|
2142
|
+
* @type {Array<string>}
|
|
2143
|
+
* @memberof PolicyRule
|
|
2144
|
+
*/
|
|
2145
|
+
resourceNames?: Array<string>;
|
|
2146
|
+
/**
|
|
2147
|
+
*
|
|
2148
|
+
* @type {Array<string>}
|
|
2149
|
+
* @memberof PolicyRule
|
|
2150
|
+
*/
|
|
2151
|
+
nonResourceURLs?: Array<string>;
|
|
2152
|
+
/**
|
|
2153
|
+
*
|
|
2154
|
+
* @type {Array<string>}
|
|
2155
|
+
* @memberof PolicyRule
|
|
2156
|
+
*/
|
|
2157
|
+
verbs?: Array<string>;
|
|
2134
2158
|
}
|
|
2135
2159
|
|
|
2136
2160
|
/**
|
|
@@ -2148,27 +2172,33 @@ interface Excerpt {
|
|
|
2148
2172
|
/**
|
|
2149
2173
|
*
|
|
2150
2174
|
* @export
|
|
2151
|
-
* @interface
|
|
2175
|
+
* @interface Role
|
|
2152
2176
|
*/
|
|
2153
|
-
interface
|
|
2177
|
+
interface Role {
|
|
2154
2178
|
/**
|
|
2155
2179
|
*
|
|
2156
|
-
* @type {
|
|
2157
|
-
* @memberof
|
|
2180
|
+
* @type {Array<PolicyRule>}
|
|
2181
|
+
* @memberof Role
|
|
2158
2182
|
*/
|
|
2159
|
-
|
|
2183
|
+
rules: Array<PolicyRule>;
|
|
2160
2184
|
/**
|
|
2161
2185
|
*
|
|
2162
2186
|
* @type {string}
|
|
2163
|
-
* @memberof
|
|
2187
|
+
* @memberof Role
|
|
2164
2188
|
*/
|
|
2165
2189
|
apiVersion: string;
|
|
2166
2190
|
/**
|
|
2167
2191
|
*
|
|
2168
2192
|
* @type {string}
|
|
2169
|
-
* @memberof
|
|
2193
|
+
* @memberof Role
|
|
2170
2194
|
*/
|
|
2171
2195
|
kind: string;
|
|
2196
|
+
/**
|
|
2197
|
+
*
|
|
2198
|
+
* @type {Metadata}
|
|
2199
|
+
* @memberof Role
|
|
2200
|
+
*/
|
|
2201
|
+
metadata: Metadata;
|
|
2172
2202
|
}
|
|
2173
2203
|
|
|
2174
2204
|
/**
|
|
@@ -2185,46 +2215,69 @@ interface Extension {
|
|
|
2185
2215
|
/**
|
|
2186
2216
|
*
|
|
2187
2217
|
* @export
|
|
2188
|
-
* @interface
|
|
2218
|
+
* @interface UserSpec
|
|
2189
2219
|
*/
|
|
2190
|
-
interface
|
|
2220
|
+
interface UserSpec {
|
|
2191
2221
|
/**
|
|
2192
2222
|
*
|
|
2193
2223
|
* @type {string}
|
|
2194
|
-
* @memberof
|
|
2224
|
+
* @memberof UserSpec
|
|
2195
2225
|
*/
|
|
2196
|
-
|
|
2226
|
+
displayName: string;
|
|
2197
2227
|
/**
|
|
2198
2228
|
*
|
|
2199
2229
|
* @type {string}
|
|
2200
|
-
* @memberof
|
|
2230
|
+
* @memberof UserSpec
|
|
2201
2231
|
*/
|
|
2202
|
-
|
|
2203
|
-
}
|
|
2204
|
-
|
|
2205
|
-
/**
|
|
2206
|
-
* Halo Next API
|
|
2207
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2208
|
-
*
|
|
2209
|
-
* The version of the OpenAPI document: 2.0.0
|
|
2210
|
-
*
|
|
2211
|
-
*
|
|
2212
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2213
|
-
* https://openapi-generator.tech
|
|
2214
|
-
* Do not edit the class manually.
|
|
2215
|
-
*/
|
|
2216
|
-
/**
|
|
2217
|
-
*
|
|
2218
|
-
* @export
|
|
2219
|
-
* @interface GrantRequest
|
|
2220
|
-
*/
|
|
2221
|
-
interface GrantRequest {
|
|
2232
|
+
avatar?: string;
|
|
2222
2233
|
/**
|
|
2223
2234
|
*
|
|
2224
|
-
* @type {
|
|
2225
|
-
* @memberof
|
|
2235
|
+
* @type {string}
|
|
2236
|
+
* @memberof UserSpec
|
|
2226
2237
|
*/
|
|
2227
|
-
|
|
2238
|
+
email: string;
|
|
2239
|
+
/**
|
|
2240
|
+
*
|
|
2241
|
+
* @type {string}
|
|
2242
|
+
* @memberof UserSpec
|
|
2243
|
+
*/
|
|
2244
|
+
phone?: string;
|
|
2245
|
+
/**
|
|
2246
|
+
*
|
|
2247
|
+
* @type {string}
|
|
2248
|
+
* @memberof UserSpec
|
|
2249
|
+
*/
|
|
2250
|
+
password?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
*
|
|
2253
|
+
* @type {string}
|
|
2254
|
+
* @memberof UserSpec
|
|
2255
|
+
*/
|
|
2256
|
+
bio?: string;
|
|
2257
|
+
/**
|
|
2258
|
+
*
|
|
2259
|
+
* @type {string}
|
|
2260
|
+
* @memberof UserSpec
|
|
2261
|
+
*/
|
|
2262
|
+
registeredAt?: string;
|
|
2263
|
+
/**
|
|
2264
|
+
*
|
|
2265
|
+
* @type {boolean}
|
|
2266
|
+
* @memberof UserSpec
|
|
2267
|
+
*/
|
|
2268
|
+
twoFactorAuthEnabled?: boolean;
|
|
2269
|
+
/**
|
|
2270
|
+
*
|
|
2271
|
+
* @type {boolean}
|
|
2272
|
+
* @memberof UserSpec
|
|
2273
|
+
*/
|
|
2274
|
+
disabled?: boolean;
|
|
2275
|
+
/**
|
|
2276
|
+
*
|
|
2277
|
+
* @type {number}
|
|
2278
|
+
* @memberof UserSpec
|
|
2279
|
+
*/
|
|
2280
|
+
loginHistoryLimit?: number;
|
|
2228
2281
|
}
|
|
2229
2282
|
|
|
2230
2283
|
/**
|
|
@@ -2241,15 +2294,39 @@ interface GrantRequest {
|
|
|
2241
2294
|
/**
|
|
2242
2295
|
*
|
|
2243
2296
|
* @export
|
|
2244
|
-
* @interface
|
|
2297
|
+
* @interface LoginHistory
|
|
2245
2298
|
*/
|
|
2246
|
-
interface
|
|
2299
|
+
interface LoginHistory {
|
|
2247
2300
|
/**
|
|
2248
|
-
*
|
|
2301
|
+
*
|
|
2249
2302
|
* @type {string}
|
|
2250
|
-
* @memberof
|
|
2303
|
+
* @memberof LoginHistory
|
|
2251
2304
|
*/
|
|
2252
|
-
|
|
2305
|
+
loginAt: string;
|
|
2306
|
+
/**
|
|
2307
|
+
*
|
|
2308
|
+
* @type {string}
|
|
2309
|
+
* @memberof LoginHistory
|
|
2310
|
+
*/
|
|
2311
|
+
sourceIp: string;
|
|
2312
|
+
/**
|
|
2313
|
+
*
|
|
2314
|
+
* @type {string}
|
|
2315
|
+
* @memberof LoginHistory
|
|
2316
|
+
*/
|
|
2317
|
+
userAgent: string;
|
|
2318
|
+
/**
|
|
2319
|
+
*
|
|
2320
|
+
* @type {boolean}
|
|
2321
|
+
* @memberof LoginHistory
|
|
2322
|
+
*/
|
|
2323
|
+
successful: boolean;
|
|
2324
|
+
/**
|
|
2325
|
+
*
|
|
2326
|
+
* @type {string}
|
|
2327
|
+
* @memberof LoginHistory
|
|
2328
|
+
*/
|
|
2329
|
+
reason?: string;
|
|
2253
2330
|
}
|
|
2254
2331
|
|
|
2255
2332
|
/**
|
|
@@ -2263,24 +2340,31 @@ interface GroupSpec {
|
|
|
2263
2340
|
* https://openapi-generator.tech
|
|
2264
2341
|
* Do not edit the class manually.
|
|
2265
2342
|
*/
|
|
2343
|
+
|
|
2266
2344
|
/**
|
|
2267
2345
|
*
|
|
2268
2346
|
* @export
|
|
2269
|
-
* @interface
|
|
2347
|
+
* @interface UserStatus
|
|
2270
2348
|
*/
|
|
2271
|
-
interface
|
|
2349
|
+
interface UserStatus {
|
|
2272
2350
|
/**
|
|
2273
|
-
*
|
|
2351
|
+
*
|
|
2274
2352
|
* @type {string}
|
|
2275
|
-
* @memberof
|
|
2353
|
+
* @memberof UserStatus
|
|
2276
2354
|
*/
|
|
2277
|
-
|
|
2355
|
+
lastLoginAt?: string;
|
|
2278
2356
|
/**
|
|
2279
|
-
*
|
|
2280
|
-
* @type {
|
|
2281
|
-
* @memberof
|
|
2357
|
+
*
|
|
2358
|
+
* @type {string}
|
|
2359
|
+
* @memberof UserStatus
|
|
2282
2360
|
*/
|
|
2283
|
-
|
|
2361
|
+
permalink?: string;
|
|
2362
|
+
/**
|
|
2363
|
+
*
|
|
2364
|
+
* @type {Array<LoginHistory>}
|
|
2365
|
+
* @memberof UserStatus
|
|
2366
|
+
*/
|
|
2367
|
+
loginHistories?: Array<LoginHistory>;
|
|
2284
2368
|
}
|
|
2285
2369
|
|
|
2286
2370
|
/**
|
|
@@ -2298,37 +2382,37 @@ interface GroupStatus {
|
|
|
2298
2382
|
/**
|
|
2299
2383
|
*
|
|
2300
2384
|
* @export
|
|
2301
|
-
* @interface
|
|
2385
|
+
* @interface User
|
|
2302
2386
|
*/
|
|
2303
|
-
interface
|
|
2387
|
+
interface User {
|
|
2304
2388
|
/**
|
|
2305
2389
|
*
|
|
2306
|
-
* @type {
|
|
2307
|
-
* @memberof
|
|
2390
|
+
* @type {UserSpec}
|
|
2391
|
+
* @memberof User
|
|
2308
2392
|
*/
|
|
2309
|
-
spec:
|
|
2393
|
+
spec: UserSpec;
|
|
2310
2394
|
/**
|
|
2311
2395
|
*
|
|
2312
|
-
* @type {
|
|
2313
|
-
* @memberof
|
|
2396
|
+
* @type {UserStatus}
|
|
2397
|
+
* @memberof User
|
|
2314
2398
|
*/
|
|
2315
|
-
status?:
|
|
2399
|
+
status?: UserStatus;
|
|
2316
2400
|
/**
|
|
2317
2401
|
*
|
|
2318
2402
|
* @type {string}
|
|
2319
|
-
* @memberof
|
|
2403
|
+
* @memberof User
|
|
2320
2404
|
*/
|
|
2321
2405
|
apiVersion: string;
|
|
2322
2406
|
/**
|
|
2323
2407
|
*
|
|
2324
2408
|
* @type {string}
|
|
2325
|
-
* @memberof
|
|
2409
|
+
* @memberof User
|
|
2326
2410
|
*/
|
|
2327
2411
|
kind: string;
|
|
2328
2412
|
/**
|
|
2329
2413
|
*
|
|
2330
2414
|
* @type {Metadata}
|
|
2331
|
-
* @memberof
|
|
2415
|
+
* @memberof User
|
|
2332
2416
|
*/
|
|
2333
2417
|
metadata: Metadata;
|
|
2334
2418
|
}
|
|
@@ -2348,25 +2432,288 @@ interface Group {
|
|
|
2348
2432
|
/**
|
|
2349
2433
|
*
|
|
2350
2434
|
* @export
|
|
2351
|
-
* @interface
|
|
2435
|
+
* @interface DetailedUser
|
|
2352
2436
|
*/
|
|
2353
|
-
interface
|
|
2437
|
+
interface DetailedUser {
|
|
2354
2438
|
/**
|
|
2355
|
-
*
|
|
2356
|
-
* @type {
|
|
2357
|
-
* @memberof
|
|
2439
|
+
*
|
|
2440
|
+
* @type {User}
|
|
2441
|
+
* @memberof DetailedUser
|
|
2358
2442
|
*/
|
|
2359
|
-
|
|
2443
|
+
user: User;
|
|
2360
2444
|
/**
|
|
2361
|
-
*
|
|
2362
|
-
* @type {
|
|
2363
|
-
* @memberof
|
|
2445
|
+
*
|
|
2446
|
+
* @type {Array<Role>}
|
|
2447
|
+
* @memberof DetailedUser
|
|
2364
2448
|
*/
|
|
2365
|
-
|
|
2449
|
+
roles: Array<Role>;
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
/**
|
|
2453
|
+
* Halo Next API
|
|
2454
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2455
|
+
*
|
|
2456
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2457
|
+
*
|
|
2458
|
+
*
|
|
2459
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2460
|
+
* https://openapi-generator.tech
|
|
2461
|
+
* Do not edit the class manually.
|
|
2462
|
+
*/
|
|
2463
|
+
/**
|
|
2464
|
+
*
|
|
2465
|
+
* @export
|
|
2466
|
+
* @interface Excerpt
|
|
2467
|
+
*/
|
|
2468
|
+
interface Excerpt {
|
|
2366
2469
|
/**
|
|
2367
|
-
*
|
|
2368
|
-
* @type {
|
|
2369
|
-
* @memberof
|
|
2470
|
+
*
|
|
2471
|
+
* @type {boolean}
|
|
2472
|
+
* @memberof Excerpt
|
|
2473
|
+
*/
|
|
2474
|
+
autoGenerate: boolean;
|
|
2475
|
+
/**
|
|
2476
|
+
*
|
|
2477
|
+
* @type {string}
|
|
2478
|
+
* @memberof Excerpt
|
|
2479
|
+
*/
|
|
2480
|
+
raw?: string;
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* Halo Next API
|
|
2485
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2486
|
+
*
|
|
2487
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2488
|
+
*
|
|
2489
|
+
*
|
|
2490
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2491
|
+
* https://openapi-generator.tech
|
|
2492
|
+
* Do not edit the class manually.
|
|
2493
|
+
*/
|
|
2494
|
+
|
|
2495
|
+
/**
|
|
2496
|
+
*
|
|
2497
|
+
* @export
|
|
2498
|
+
* @interface Extension
|
|
2499
|
+
*/
|
|
2500
|
+
interface Extension {
|
|
2501
|
+
/**
|
|
2502
|
+
*
|
|
2503
|
+
* @type {string}
|
|
2504
|
+
* @memberof Extension
|
|
2505
|
+
*/
|
|
2506
|
+
kind: string;
|
|
2507
|
+
/**
|
|
2508
|
+
*
|
|
2509
|
+
* @type {string}
|
|
2510
|
+
* @memberof Extension
|
|
2511
|
+
*/
|
|
2512
|
+
apiVersion: string;
|
|
2513
|
+
/**
|
|
2514
|
+
*
|
|
2515
|
+
* @type {Metadata}
|
|
2516
|
+
* @memberof Extension
|
|
2517
|
+
*/
|
|
2518
|
+
metadata: Metadata;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
/**
|
|
2522
|
+
* Halo Next API
|
|
2523
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2524
|
+
*
|
|
2525
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2526
|
+
*
|
|
2527
|
+
*
|
|
2528
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2529
|
+
* https://openapi-generator.tech
|
|
2530
|
+
* Do not edit the class manually.
|
|
2531
|
+
*/
|
|
2532
|
+
/**
|
|
2533
|
+
*
|
|
2534
|
+
* @export
|
|
2535
|
+
* @interface FileReverseProxyProvider
|
|
2536
|
+
*/
|
|
2537
|
+
interface FileReverseProxyProvider {
|
|
2538
|
+
/**
|
|
2539
|
+
*
|
|
2540
|
+
* @type {string}
|
|
2541
|
+
* @memberof FileReverseProxyProvider
|
|
2542
|
+
*/
|
|
2543
|
+
directory?: string;
|
|
2544
|
+
/**
|
|
2545
|
+
*
|
|
2546
|
+
* @type {string}
|
|
2547
|
+
* @memberof FileReverseProxyProvider
|
|
2548
|
+
*/
|
|
2549
|
+
filename?: string;
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
/**
|
|
2553
|
+
* Halo Next API
|
|
2554
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2555
|
+
*
|
|
2556
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2557
|
+
*
|
|
2558
|
+
*
|
|
2559
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2560
|
+
* https://openapi-generator.tech
|
|
2561
|
+
* Do not edit the class manually.
|
|
2562
|
+
*/
|
|
2563
|
+
/**
|
|
2564
|
+
*
|
|
2565
|
+
* @export
|
|
2566
|
+
* @interface GrantRequest
|
|
2567
|
+
*/
|
|
2568
|
+
interface GrantRequest {
|
|
2569
|
+
/**
|
|
2570
|
+
*
|
|
2571
|
+
* @type {Array<string>}
|
|
2572
|
+
* @memberof GrantRequest
|
|
2573
|
+
*/
|
|
2574
|
+
roles?: Array<string>;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
/**
|
|
2578
|
+
* Halo Next API
|
|
2579
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2580
|
+
*
|
|
2581
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2582
|
+
*
|
|
2583
|
+
*
|
|
2584
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2585
|
+
* https://openapi-generator.tech
|
|
2586
|
+
* Do not edit the class manually.
|
|
2587
|
+
*/
|
|
2588
|
+
/**
|
|
2589
|
+
*
|
|
2590
|
+
* @export
|
|
2591
|
+
* @interface GroupSpec
|
|
2592
|
+
*/
|
|
2593
|
+
interface GroupSpec {
|
|
2594
|
+
/**
|
|
2595
|
+
* Display name of group
|
|
2596
|
+
* @type {string}
|
|
2597
|
+
* @memberof GroupSpec
|
|
2598
|
+
*/
|
|
2599
|
+
displayName: string;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
/**
|
|
2603
|
+
* Halo Next API
|
|
2604
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2605
|
+
*
|
|
2606
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2607
|
+
*
|
|
2608
|
+
*
|
|
2609
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2610
|
+
* https://openapi-generator.tech
|
|
2611
|
+
* Do not edit the class manually.
|
|
2612
|
+
*/
|
|
2613
|
+
/**
|
|
2614
|
+
*
|
|
2615
|
+
* @export
|
|
2616
|
+
* @interface GroupStatus
|
|
2617
|
+
*/
|
|
2618
|
+
interface GroupStatus {
|
|
2619
|
+
/**
|
|
2620
|
+
* Update timestamp of the group
|
|
2621
|
+
* @type {string}
|
|
2622
|
+
* @memberof GroupStatus
|
|
2623
|
+
*/
|
|
2624
|
+
updateTimestamp?: string;
|
|
2625
|
+
/**
|
|
2626
|
+
* Total of attachments under the current group
|
|
2627
|
+
* @type {number}
|
|
2628
|
+
* @memberof GroupStatus
|
|
2629
|
+
*/
|
|
2630
|
+
totalAttachments?: number;
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
/**
|
|
2634
|
+
* Halo Next API
|
|
2635
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2636
|
+
*
|
|
2637
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2638
|
+
*
|
|
2639
|
+
*
|
|
2640
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2641
|
+
* https://openapi-generator.tech
|
|
2642
|
+
* Do not edit the class manually.
|
|
2643
|
+
*/
|
|
2644
|
+
|
|
2645
|
+
/**
|
|
2646
|
+
*
|
|
2647
|
+
* @export
|
|
2648
|
+
* @interface Group
|
|
2649
|
+
*/
|
|
2650
|
+
interface Group {
|
|
2651
|
+
/**
|
|
2652
|
+
*
|
|
2653
|
+
* @type {GroupSpec}
|
|
2654
|
+
* @memberof Group
|
|
2655
|
+
*/
|
|
2656
|
+
spec: GroupSpec;
|
|
2657
|
+
/**
|
|
2658
|
+
*
|
|
2659
|
+
* @type {GroupStatus}
|
|
2660
|
+
* @memberof Group
|
|
2661
|
+
*/
|
|
2662
|
+
status?: GroupStatus;
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
* @type {string}
|
|
2666
|
+
* @memberof Group
|
|
2667
|
+
*/
|
|
2668
|
+
apiVersion: string;
|
|
2669
|
+
/**
|
|
2670
|
+
*
|
|
2671
|
+
* @type {string}
|
|
2672
|
+
* @memberof Group
|
|
2673
|
+
*/
|
|
2674
|
+
kind: string;
|
|
2675
|
+
/**
|
|
2676
|
+
*
|
|
2677
|
+
* @type {Metadata}
|
|
2678
|
+
* @memberof Group
|
|
2679
|
+
*/
|
|
2680
|
+
metadata: Metadata;
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
/**
|
|
2684
|
+
* Halo Next API
|
|
2685
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2686
|
+
*
|
|
2687
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2688
|
+
*
|
|
2689
|
+
*
|
|
2690
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2691
|
+
* https://openapi-generator.tech
|
|
2692
|
+
* Do not edit the class manually.
|
|
2693
|
+
*/
|
|
2694
|
+
|
|
2695
|
+
/**
|
|
2696
|
+
*
|
|
2697
|
+
* @export
|
|
2698
|
+
* @interface GroupList
|
|
2699
|
+
*/
|
|
2700
|
+
interface GroupList {
|
|
2701
|
+
/**
|
|
2702
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
2703
|
+
* @type {number}
|
|
2704
|
+
* @memberof GroupList
|
|
2705
|
+
*/
|
|
2706
|
+
page: number;
|
|
2707
|
+
/**
|
|
2708
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
2709
|
+
* @type {number}
|
|
2710
|
+
* @memberof GroupList
|
|
2711
|
+
*/
|
|
2712
|
+
size: number;
|
|
2713
|
+
/**
|
|
2714
|
+
* Total elements.
|
|
2715
|
+
* @type {number}
|
|
2716
|
+
* @memberof GroupList
|
|
2370
2717
|
*/
|
|
2371
2718
|
total: number;
|
|
2372
2719
|
/**
|
|
@@ -2690,7 +3037,7 @@ declare const PostSpecVisibleEnum: {
|
|
|
2690
3037
|
readonly Internal: "INTERNAL";
|
|
2691
3038
|
readonly Private: "PRIVATE";
|
|
2692
3039
|
};
|
|
2693
|
-
|
|
3040
|
+
type PostSpecVisibleEnum = typeof PostSpecVisibleEnum[keyof typeof PostSpecVisibleEnum];
|
|
2694
3041
|
|
|
2695
3042
|
/**
|
|
2696
3043
|
* Halo Next API
|
|
@@ -3167,6 +3514,12 @@ interface ReplySpec {
|
|
|
3167
3514
|
* @memberof ReplySpec
|
|
3168
3515
|
*/
|
|
3169
3516
|
approvedTime?: string;
|
|
3517
|
+
/**
|
|
3518
|
+
*
|
|
3519
|
+
* @type {string}
|
|
3520
|
+
* @memberof ReplySpec
|
|
3521
|
+
*/
|
|
3522
|
+
creationTime?: string;
|
|
3170
3523
|
/**
|
|
3171
3524
|
*
|
|
3172
3525
|
* @type {number}
|
|
@@ -3489,7 +3842,7 @@ declare const SinglePageSpecVisibleEnum: {
|
|
|
3489
3842
|
readonly Internal: "INTERNAL";
|
|
3490
3843
|
readonly Private: "PRIVATE";
|
|
3491
3844
|
};
|
|
3492
|
-
|
|
3845
|
+
type SinglePageSpecVisibleEnum = typeof SinglePageSpecVisibleEnum[keyof typeof SinglePageSpecVisibleEnum];
|
|
3493
3846
|
|
|
3494
3847
|
/**
|
|
3495
3848
|
* Halo Next API
|
|
@@ -3738,42 +4091,99 @@ interface ListedSinglePageList {
|
|
|
3738
4091
|
* https://openapi-generator.tech
|
|
3739
4092
|
* Do not edit the class manually.
|
|
3740
4093
|
*/
|
|
4094
|
+
|
|
3741
4095
|
/**
|
|
3742
|
-
*
|
|
4096
|
+
* A chunk of items.
|
|
3743
4097
|
* @export
|
|
3744
|
-
* @interface
|
|
4098
|
+
* @interface ListedUser
|
|
3745
4099
|
*/
|
|
3746
|
-
interface
|
|
4100
|
+
interface ListedUser {
|
|
3747
4101
|
/**
|
|
3748
4102
|
*
|
|
3749
|
-
* @type {
|
|
3750
|
-
* @memberof
|
|
4103
|
+
* @type {User}
|
|
4104
|
+
* @memberof ListedUser
|
|
3751
4105
|
*/
|
|
3752
|
-
|
|
4106
|
+
user: User;
|
|
3753
4107
|
/**
|
|
3754
4108
|
*
|
|
3755
|
-
* @type {
|
|
3756
|
-
* @memberof
|
|
4109
|
+
* @type {Array<Role>}
|
|
4110
|
+
* @memberof ListedUser
|
|
3757
4111
|
*/
|
|
3758
|
-
|
|
4112
|
+
roles: Array<Role>;
|
|
4113
|
+
}
|
|
4114
|
+
|
|
4115
|
+
/**
|
|
4116
|
+
* Halo Next API
|
|
4117
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4118
|
+
*
|
|
4119
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4120
|
+
*
|
|
4121
|
+
*
|
|
4122
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4123
|
+
* https://openapi-generator.tech
|
|
4124
|
+
* Do not edit the class manually.
|
|
4125
|
+
*/
|
|
4126
|
+
|
|
4127
|
+
/**
|
|
4128
|
+
*
|
|
4129
|
+
* @export
|
|
4130
|
+
* @interface ListedUserList
|
|
4131
|
+
*/
|
|
4132
|
+
interface ListedUserList {
|
|
3759
4133
|
/**
|
|
3760
|
-
*
|
|
3761
|
-
* @type {
|
|
3762
|
-
* @memberof
|
|
4134
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
4135
|
+
* @type {number}
|
|
4136
|
+
* @memberof ListedUserList
|
|
3763
4137
|
*/
|
|
3764
|
-
|
|
4138
|
+
page: number;
|
|
3765
4139
|
/**
|
|
3766
|
-
*
|
|
4140
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
4141
|
+
* @type {number}
|
|
4142
|
+
* @memberof ListedUserList
|
|
4143
|
+
*/
|
|
4144
|
+
size: number;
|
|
4145
|
+
/**
|
|
4146
|
+
* Total elements.
|
|
4147
|
+
* @type {number}
|
|
4148
|
+
* @memberof ListedUserList
|
|
4149
|
+
*/
|
|
4150
|
+
total: number;
|
|
4151
|
+
/**
|
|
4152
|
+
* A chunk of items.
|
|
4153
|
+
* @type {Array<ListedUser>}
|
|
4154
|
+
* @memberof ListedUserList
|
|
4155
|
+
*/
|
|
4156
|
+
items: Array<ListedUser>;
|
|
4157
|
+
/**
|
|
4158
|
+
* Indicates whether current page is the first page.
|
|
3767
4159
|
* @type {boolean}
|
|
3768
|
-
* @memberof
|
|
4160
|
+
* @memberof ListedUserList
|
|
3769
4161
|
*/
|
|
3770
|
-
|
|
4162
|
+
first: boolean;
|
|
3771
4163
|
/**
|
|
3772
|
-
*
|
|
3773
|
-
* @type {
|
|
3774
|
-
* @memberof
|
|
4164
|
+
* Indicates whether current page is the last page.
|
|
4165
|
+
* @type {boolean}
|
|
4166
|
+
* @memberof ListedUserList
|
|
3775
4167
|
*/
|
|
3776
|
-
|
|
4168
|
+
last: boolean;
|
|
4169
|
+
/**
|
|
4170
|
+
* Indicates whether current page has previous page.
|
|
4171
|
+
* @type {boolean}
|
|
4172
|
+
* @memberof ListedUserList
|
|
4173
|
+
*/
|
|
4174
|
+
hasNext: boolean;
|
|
4175
|
+
/**
|
|
4176
|
+
* Indicates whether current page has previous page.
|
|
4177
|
+
* @type {boolean}
|
|
4178
|
+
* @memberof ListedUserList
|
|
4179
|
+
*/
|
|
4180
|
+
hasPrevious: boolean;
|
|
4181
|
+
/**
|
|
4182
|
+
* Indicates total pages.
|
|
4183
|
+
* @type {number}
|
|
4184
|
+
* @memberof ListedUserList
|
|
4185
|
+
*/
|
|
4186
|
+
totalPages: number;
|
|
3777
4187
|
}
|
|
3778
4188
|
|
|
3779
4189
|
/**
|
|
@@ -3912,7 +4322,7 @@ declare const MenuItemSpecTargetEnum: {
|
|
|
3912
4322
|
readonly Parent: "_parent";
|
|
3913
4323
|
readonly Top: "_top";
|
|
3914
4324
|
};
|
|
3915
|
-
|
|
4325
|
+
type MenuItemSpecTargetEnum = typeof MenuItemSpecTargetEnum[keyof typeof MenuItemSpecTargetEnum];
|
|
3916
4326
|
|
|
3917
4327
|
/**
|
|
3918
4328
|
* Halo Next API
|
|
@@ -4459,6 +4869,7 @@ interface PluginSpec {
|
|
|
4459
4869
|
* https://openapi-generator.tech
|
|
4460
4870
|
* Do not edit the class manually.
|
|
4461
4871
|
*/
|
|
4872
|
+
|
|
4462
4873
|
/**
|
|
4463
4874
|
*
|
|
4464
4875
|
* @export
|
|
@@ -4473,16 +4884,10 @@ interface PluginStatus {
|
|
|
4473
4884
|
phase?: PluginStatusPhaseEnum;
|
|
4474
4885
|
/**
|
|
4475
4886
|
*
|
|
4476
|
-
* @type {
|
|
4477
|
-
* @memberof PluginStatus
|
|
4478
|
-
*/
|
|
4479
|
-
reason?: string;
|
|
4480
|
-
/**
|
|
4481
|
-
*
|
|
4482
|
-
* @type {string}
|
|
4887
|
+
* @type {Array<Condition>}
|
|
4483
4888
|
* @memberof PluginStatus
|
|
4484
4889
|
*/
|
|
4485
|
-
|
|
4890
|
+
conditions?: Array<Condition>;
|
|
4486
4891
|
/**
|
|
4487
4892
|
*
|
|
4488
4893
|
* @type {string}
|
|
@@ -4494,25 +4899,25 @@ interface PluginStatus {
|
|
|
4494
4899
|
* @type {string}
|
|
4495
4900
|
* @memberof PluginStatus
|
|
4496
4901
|
*/
|
|
4497
|
-
|
|
4902
|
+
entry?: string;
|
|
4498
4903
|
/**
|
|
4499
4904
|
*
|
|
4500
4905
|
* @type {string}
|
|
4501
4906
|
* @memberof PluginStatus
|
|
4502
4907
|
*/
|
|
4503
|
-
|
|
4908
|
+
stylesheet?: string;
|
|
4504
4909
|
/**
|
|
4505
4910
|
*
|
|
4506
4911
|
* @type {string}
|
|
4507
4912
|
* @memberof PluginStatus
|
|
4508
4913
|
*/
|
|
4509
|
-
|
|
4914
|
+
logo?: string;
|
|
4510
4915
|
/**
|
|
4511
|
-
*
|
|
4916
|
+
* Load location of the plugin, often a path.
|
|
4512
4917
|
* @type {string}
|
|
4513
4918
|
* @memberof PluginStatus
|
|
4514
4919
|
*/
|
|
4515
|
-
|
|
4920
|
+
loadLocation?: string;
|
|
4516
4921
|
}
|
|
4517
4922
|
declare const PluginStatusPhaseEnum: {
|
|
4518
4923
|
readonly Created: "CREATED";
|
|
@@ -4522,7 +4927,7 @@ declare const PluginStatusPhaseEnum: {
|
|
|
4522
4927
|
readonly Stopped: "STOPPED";
|
|
4523
4928
|
readonly Failed: "FAILED";
|
|
4524
4929
|
};
|
|
4525
|
-
|
|
4930
|
+
type PluginStatusPhaseEnum = typeof PluginStatusPhaseEnum[keyof typeof PluginStatusPhaseEnum];
|
|
4526
4931
|
|
|
4527
4932
|
/**
|
|
4528
4933
|
* Halo Next API
|
|
@@ -4803,55 +5208,6 @@ interface PolicyList {
|
|
|
4803
5208
|
totalPages: number;
|
|
4804
5209
|
}
|
|
4805
5210
|
|
|
4806
|
-
/**
|
|
4807
|
-
* Halo Next API
|
|
4808
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4809
|
-
*
|
|
4810
|
-
* The version of the OpenAPI document: 2.0.0
|
|
4811
|
-
*
|
|
4812
|
-
*
|
|
4813
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4814
|
-
* https://openapi-generator.tech
|
|
4815
|
-
* Do not edit the class manually.
|
|
4816
|
-
*/
|
|
4817
|
-
/**
|
|
4818
|
-
*
|
|
4819
|
-
* @export
|
|
4820
|
-
* @interface PolicyRule
|
|
4821
|
-
*/
|
|
4822
|
-
interface PolicyRule {
|
|
4823
|
-
/**
|
|
4824
|
-
*
|
|
4825
|
-
* @type {Array<string>}
|
|
4826
|
-
* @memberof PolicyRule
|
|
4827
|
-
*/
|
|
4828
|
-
apiGroups?: Array<string>;
|
|
4829
|
-
/**
|
|
4830
|
-
*
|
|
4831
|
-
* @type {Array<string>}
|
|
4832
|
-
* @memberof PolicyRule
|
|
4833
|
-
*/
|
|
4834
|
-
resources?: Array<string>;
|
|
4835
|
-
/**
|
|
4836
|
-
*
|
|
4837
|
-
* @type {Array<string>}
|
|
4838
|
-
* @memberof PolicyRule
|
|
4839
|
-
*/
|
|
4840
|
-
resourceNames?: Array<string>;
|
|
4841
|
-
/**
|
|
4842
|
-
*
|
|
4843
|
-
* @type {Array<string>}
|
|
4844
|
-
* @memberof PolicyRule
|
|
4845
|
-
*/
|
|
4846
|
-
nonResourceURLs?: Array<string>;
|
|
4847
|
-
/**
|
|
4848
|
-
*
|
|
4849
|
-
* @type {Array<string>}
|
|
4850
|
-
* @memberof PolicyRule
|
|
4851
|
-
*/
|
|
4852
|
-
verbs?: Array<string>;
|
|
4853
|
-
}
|
|
4854
|
-
|
|
4855
5211
|
/**
|
|
4856
5212
|
* Halo Next API
|
|
4857
5213
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -5592,50 +5948,6 @@ interface ReverseProxyList {
|
|
|
5592
5948
|
totalPages: number;
|
|
5593
5949
|
}
|
|
5594
5950
|
|
|
5595
|
-
/**
|
|
5596
|
-
* Halo Next API
|
|
5597
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5598
|
-
*
|
|
5599
|
-
* The version of the OpenAPI document: 2.0.0
|
|
5600
|
-
*
|
|
5601
|
-
*
|
|
5602
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5603
|
-
* https://openapi-generator.tech
|
|
5604
|
-
* Do not edit the class manually.
|
|
5605
|
-
*/
|
|
5606
|
-
|
|
5607
|
-
/**
|
|
5608
|
-
*
|
|
5609
|
-
* @export
|
|
5610
|
-
* @interface Role
|
|
5611
|
-
*/
|
|
5612
|
-
interface Role {
|
|
5613
|
-
/**
|
|
5614
|
-
*
|
|
5615
|
-
* @type {Array<PolicyRule>}
|
|
5616
|
-
* @memberof Role
|
|
5617
|
-
*/
|
|
5618
|
-
rules: Array<PolicyRule>;
|
|
5619
|
-
/**
|
|
5620
|
-
*
|
|
5621
|
-
* @type {string}
|
|
5622
|
-
* @memberof Role
|
|
5623
|
-
*/
|
|
5624
|
-
apiVersion: string;
|
|
5625
|
-
/**
|
|
5626
|
-
*
|
|
5627
|
-
* @type {string}
|
|
5628
|
-
* @memberof Role
|
|
5629
|
-
*/
|
|
5630
|
-
kind: string;
|
|
5631
|
-
/**
|
|
5632
|
-
*
|
|
5633
|
-
* @type {Metadata}
|
|
5634
|
-
* @memberof Role
|
|
5635
|
-
*/
|
|
5636
|
-
metadata: Metadata;
|
|
5637
|
-
}
|
|
5638
|
-
|
|
5639
5951
|
/**
|
|
5640
5952
|
* Halo Next API
|
|
5641
5953
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -6701,7 +7013,7 @@ interface ThemeSpec {
|
|
|
6701
7013
|
* @type {string}
|
|
6702
7014
|
* @memberof ThemeSpec
|
|
6703
7015
|
*/
|
|
6704
|
-
requires
|
|
7016
|
+
requires?: string;
|
|
6705
7017
|
/**
|
|
6706
7018
|
*
|
|
6707
7019
|
* @type {string}
|
|
@@ -6764,7 +7076,7 @@ declare const ThemeStatusPhaseEnum: {
|
|
|
6764
7076
|
readonly Failed: "FAILED";
|
|
6765
7077
|
readonly Unknown: "UNKNOWN";
|
|
6766
7078
|
};
|
|
6767
|
-
|
|
7079
|
+
type ThemeStatusPhaseEnum = typeof ThemeStatusPhaseEnum[keyof typeof ThemeStatusPhaseEnum];
|
|
6768
7080
|
|
|
6769
7081
|
/**
|
|
6770
7082
|
* Halo Next API
|
|
@@ -6901,226 +7213,59 @@ interface ThemeList {
|
|
|
6901
7213
|
* https://openapi-generator.tech
|
|
6902
7214
|
* Do not edit the class manually.
|
|
6903
7215
|
*/
|
|
7216
|
+
|
|
6904
7217
|
/**
|
|
6905
7218
|
*
|
|
6906
7219
|
* @export
|
|
6907
|
-
* @interface
|
|
7220
|
+
* @interface UserList
|
|
6908
7221
|
*/
|
|
6909
|
-
interface
|
|
6910
|
-
/**
|
|
6911
|
-
*
|
|
6912
|
-
* @type {string}
|
|
6913
|
-
* @memberof UserSpec
|
|
6914
|
-
*/
|
|
6915
|
-
displayName: string;
|
|
7222
|
+
interface UserList {
|
|
6916
7223
|
/**
|
|
6917
|
-
*
|
|
6918
|
-
* @type {
|
|
6919
|
-
* @memberof
|
|
7224
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
7225
|
+
* @type {number}
|
|
7226
|
+
* @memberof UserList
|
|
6920
7227
|
*/
|
|
6921
|
-
|
|
7228
|
+
page: number;
|
|
6922
7229
|
/**
|
|
6923
|
-
*
|
|
6924
|
-
* @type {
|
|
6925
|
-
* @memberof
|
|
7230
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
7231
|
+
* @type {number}
|
|
7232
|
+
* @memberof UserList
|
|
6926
7233
|
*/
|
|
6927
|
-
|
|
7234
|
+
size: number;
|
|
6928
7235
|
/**
|
|
6929
|
-
*
|
|
6930
|
-
* @type {
|
|
6931
|
-
* @memberof
|
|
7236
|
+
* Total elements.
|
|
7237
|
+
* @type {number}
|
|
7238
|
+
* @memberof UserList
|
|
6932
7239
|
*/
|
|
6933
|
-
|
|
7240
|
+
total: number;
|
|
6934
7241
|
/**
|
|
6935
|
-
*
|
|
6936
|
-
* @type {
|
|
6937
|
-
* @memberof
|
|
7242
|
+
* A chunk of items.
|
|
7243
|
+
* @type {Array<User>}
|
|
7244
|
+
* @memberof UserList
|
|
6938
7245
|
*/
|
|
6939
|
-
|
|
7246
|
+
items: Array<User>;
|
|
6940
7247
|
/**
|
|
6941
|
-
*
|
|
6942
|
-
* @type {
|
|
6943
|
-
* @memberof
|
|
7248
|
+
* Indicates whether current page is the first page.
|
|
7249
|
+
* @type {boolean}
|
|
7250
|
+
* @memberof UserList
|
|
6944
7251
|
*/
|
|
6945
|
-
|
|
7252
|
+
first: boolean;
|
|
6946
7253
|
/**
|
|
6947
|
-
*
|
|
6948
|
-
* @type {
|
|
6949
|
-
* @memberof
|
|
7254
|
+
* Indicates whether current page is the last page.
|
|
7255
|
+
* @type {boolean}
|
|
7256
|
+
* @memberof UserList
|
|
6950
7257
|
*/
|
|
6951
|
-
|
|
7258
|
+
last: boolean;
|
|
6952
7259
|
/**
|
|
6953
|
-
*
|
|
7260
|
+
* Indicates whether current page has previous page.
|
|
6954
7261
|
* @type {boolean}
|
|
6955
|
-
* @memberof
|
|
7262
|
+
* @memberof UserList
|
|
6956
7263
|
*/
|
|
6957
|
-
|
|
7264
|
+
hasNext: boolean;
|
|
6958
7265
|
/**
|
|
6959
|
-
*
|
|
7266
|
+
* Indicates whether current page has previous page.
|
|
6960
7267
|
* @type {boolean}
|
|
6961
|
-
* @memberof
|
|
6962
|
-
*/
|
|
6963
|
-
disabled?: boolean;
|
|
6964
|
-
/**
|
|
6965
|
-
*
|
|
6966
|
-
* @type {number}
|
|
6967
|
-
* @memberof UserSpec
|
|
6968
|
-
*/
|
|
6969
|
-
loginHistoryLimit?: number;
|
|
6970
|
-
}
|
|
6971
|
-
|
|
6972
|
-
/**
|
|
6973
|
-
* Halo Next API
|
|
6974
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6975
|
-
*
|
|
6976
|
-
* The version of the OpenAPI document: 2.0.0
|
|
6977
|
-
*
|
|
6978
|
-
*
|
|
6979
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6980
|
-
* https://openapi-generator.tech
|
|
6981
|
-
* Do not edit the class manually.
|
|
6982
|
-
*/
|
|
6983
|
-
|
|
6984
|
-
/**
|
|
6985
|
-
*
|
|
6986
|
-
* @export
|
|
6987
|
-
* @interface UserStatus
|
|
6988
|
-
*/
|
|
6989
|
-
interface UserStatus {
|
|
6990
|
-
/**
|
|
6991
|
-
*
|
|
6992
|
-
* @type {string}
|
|
6993
|
-
* @memberof UserStatus
|
|
6994
|
-
*/
|
|
6995
|
-
lastLoginAt?: string;
|
|
6996
|
-
/**
|
|
6997
|
-
*
|
|
6998
|
-
* @type {string}
|
|
6999
|
-
* @memberof UserStatus
|
|
7000
|
-
*/
|
|
7001
|
-
permalink?: string;
|
|
7002
|
-
/**
|
|
7003
|
-
*
|
|
7004
|
-
* @type {Array<LoginHistory>}
|
|
7005
|
-
* @memberof UserStatus
|
|
7006
|
-
*/
|
|
7007
|
-
loginHistories?: Array<LoginHistory>;
|
|
7008
|
-
}
|
|
7009
|
-
|
|
7010
|
-
/**
|
|
7011
|
-
* Halo Next API
|
|
7012
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7013
|
-
*
|
|
7014
|
-
* The version of the OpenAPI document: 2.0.0
|
|
7015
|
-
*
|
|
7016
|
-
*
|
|
7017
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7018
|
-
* https://openapi-generator.tech
|
|
7019
|
-
* Do not edit the class manually.
|
|
7020
|
-
*/
|
|
7021
|
-
|
|
7022
|
-
/**
|
|
7023
|
-
*
|
|
7024
|
-
* @export
|
|
7025
|
-
* @interface User
|
|
7026
|
-
*/
|
|
7027
|
-
interface User {
|
|
7028
|
-
/**
|
|
7029
|
-
*
|
|
7030
|
-
* @type {UserSpec}
|
|
7031
|
-
* @memberof User
|
|
7032
|
-
*/
|
|
7033
|
-
spec: UserSpec;
|
|
7034
|
-
/**
|
|
7035
|
-
*
|
|
7036
|
-
* @type {UserStatus}
|
|
7037
|
-
* @memberof User
|
|
7038
|
-
*/
|
|
7039
|
-
status?: UserStatus;
|
|
7040
|
-
/**
|
|
7041
|
-
*
|
|
7042
|
-
* @type {string}
|
|
7043
|
-
* @memberof User
|
|
7044
|
-
*/
|
|
7045
|
-
apiVersion: string;
|
|
7046
|
-
/**
|
|
7047
|
-
*
|
|
7048
|
-
* @type {string}
|
|
7049
|
-
* @memberof User
|
|
7050
|
-
*/
|
|
7051
|
-
kind: string;
|
|
7052
|
-
/**
|
|
7053
|
-
*
|
|
7054
|
-
* @type {Metadata}
|
|
7055
|
-
* @memberof User
|
|
7056
|
-
*/
|
|
7057
|
-
metadata: Metadata;
|
|
7058
|
-
}
|
|
7059
|
-
|
|
7060
|
-
/**
|
|
7061
|
-
* Halo Next API
|
|
7062
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7063
|
-
*
|
|
7064
|
-
* The version of the OpenAPI document: 2.0.0
|
|
7065
|
-
*
|
|
7066
|
-
*
|
|
7067
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7068
|
-
* https://openapi-generator.tech
|
|
7069
|
-
* Do not edit the class manually.
|
|
7070
|
-
*/
|
|
7071
|
-
|
|
7072
|
-
/**
|
|
7073
|
-
*
|
|
7074
|
-
* @export
|
|
7075
|
-
* @interface UserList
|
|
7076
|
-
*/
|
|
7077
|
-
interface UserList {
|
|
7078
|
-
/**
|
|
7079
|
-
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
7080
|
-
* @type {number}
|
|
7081
|
-
* @memberof UserList
|
|
7082
|
-
*/
|
|
7083
|
-
page: number;
|
|
7084
|
-
/**
|
|
7085
|
-
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
7086
|
-
* @type {number}
|
|
7087
|
-
* @memberof UserList
|
|
7088
|
-
*/
|
|
7089
|
-
size: number;
|
|
7090
|
-
/**
|
|
7091
|
-
* Total elements.
|
|
7092
|
-
* @type {number}
|
|
7093
|
-
* @memberof UserList
|
|
7094
|
-
*/
|
|
7095
|
-
total: number;
|
|
7096
|
-
/**
|
|
7097
|
-
* A chunk of items.
|
|
7098
|
-
* @type {Array<User>}
|
|
7099
|
-
* @memberof UserList
|
|
7100
|
-
*/
|
|
7101
|
-
items: Array<User>;
|
|
7102
|
-
/**
|
|
7103
|
-
* Indicates whether current page is the first page.
|
|
7104
|
-
* @type {boolean}
|
|
7105
|
-
* @memberof UserList
|
|
7106
|
-
*/
|
|
7107
|
-
first: boolean;
|
|
7108
|
-
/**
|
|
7109
|
-
* Indicates whether current page is the last page.
|
|
7110
|
-
* @type {boolean}
|
|
7111
|
-
* @memberof UserList
|
|
7112
|
-
*/
|
|
7113
|
-
last: boolean;
|
|
7114
|
-
/**
|
|
7115
|
-
* Indicates whether current page has previous page.
|
|
7116
|
-
* @type {boolean}
|
|
7117
|
-
* @memberof UserList
|
|
7118
|
-
*/
|
|
7119
|
-
hasNext: boolean;
|
|
7120
|
-
/**
|
|
7121
|
-
* Indicates whether current page has previous page.
|
|
7122
|
-
* @type {boolean}
|
|
7123
|
-
* @memberof UserList
|
|
7268
|
+
* @memberof UserList
|
|
7124
7269
|
*/
|
|
7125
7270
|
hasPrevious: boolean;
|
|
7126
7271
|
/**
|
|
@@ -7210,26 +7355,26 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7210
7355
|
* @param {string} [policy] Name of policy
|
|
7211
7356
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7212
7357
|
* @param {string} [displayName] Display name of attachment
|
|
7358
|
+
* @param {string} [group] Name of group
|
|
7213
7359
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7214
7360
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7215
|
-
* @param {string} [group] Name of group
|
|
7216
7361
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7362
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7217
7363
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7218
7364
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7219
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7220
7365
|
* @param {*} [options] Override http request option.
|
|
7221
7366
|
* @throws {RequiredError}
|
|
7222
7367
|
*/
|
|
7223
|
-
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7368
|
+
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7224
7369
|
/**
|
|
7225
7370
|
*
|
|
7226
|
-
* @param {
|
|
7371
|
+
* @param {File} file
|
|
7227
7372
|
* @param {string} policyName Storage policy name
|
|
7228
7373
|
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
7229
7374
|
* @param {*} [options] Override http request option.
|
|
7230
7375
|
* @throws {RequiredError}
|
|
7231
7376
|
*/
|
|
7232
|
-
uploadAttachment: (file:
|
|
7377
|
+
uploadAttachment: (file: File, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7233
7378
|
};
|
|
7234
7379
|
/**
|
|
7235
7380
|
* ApiConsoleHaloRunV1alpha1AttachmentApi - functional programming interface
|
|
@@ -7241,26 +7386,26 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7241
7386
|
* @param {string} [policy] Name of policy
|
|
7242
7387
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7243
7388
|
* @param {string} [displayName] Display name of attachment
|
|
7389
|
+
* @param {string} [group] Name of group
|
|
7244
7390
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7245
7391
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7246
|
-
* @param {string} [group] Name of group
|
|
7247
7392
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7393
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7248
7394
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7249
7395
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7250
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7251
7396
|
* @param {*} [options] Override http request option.
|
|
7252
7397
|
* @throws {RequiredError}
|
|
7253
7398
|
*/
|
|
7254
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7399
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7255
7400
|
/**
|
|
7256
7401
|
*
|
|
7257
|
-
* @param {
|
|
7402
|
+
* @param {File} file
|
|
7258
7403
|
* @param {string} policyName Storage policy name
|
|
7259
7404
|
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
7260
7405
|
* @param {*} [options] Override http request option.
|
|
7261
7406
|
* @throws {RequiredError}
|
|
7262
7407
|
*/
|
|
7263
|
-
uploadAttachment(file:
|
|
7408
|
+
uploadAttachment(file: File, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
|
|
7264
7409
|
};
|
|
7265
7410
|
/**
|
|
7266
7411
|
* ApiConsoleHaloRunV1alpha1AttachmentApi - factory interface
|
|
@@ -7269,29 +7414,18 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7269
7414
|
declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7270
7415
|
/**
|
|
7271
7416
|
*
|
|
7272
|
-
* @param {
|
|
7273
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7274
|
-
* @param {string} [displayName] Display name of attachment
|
|
7275
|
-
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7276
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7277
|
-
* @param {string} [group] Name of group
|
|
7278
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7279
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7280
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7281
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7417
|
+
* @param {ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest} requestParameters Request parameters.
|
|
7282
7418
|
* @param {*} [options] Override http request option.
|
|
7283
7419
|
* @throws {RequiredError}
|
|
7284
7420
|
*/
|
|
7285
|
-
searchAttachments(
|
|
7421
|
+
searchAttachments(requestParameters?: ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, options?: AxiosRequestConfig): AxiosPromise<AttachmentList>;
|
|
7286
7422
|
/**
|
|
7287
7423
|
*
|
|
7288
|
-
* @param {
|
|
7289
|
-
* @param {string} policyName Storage policy name
|
|
7290
|
-
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
7424
|
+
* @param {ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest} requestParameters Request parameters.
|
|
7291
7425
|
* @param {*} [options] Override http request option.
|
|
7292
7426
|
* @throws {RequiredError}
|
|
7293
7427
|
*/
|
|
7294
|
-
uploadAttachment(
|
|
7428
|
+
uploadAttachment(requestParameters: ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, options?: AxiosRequestConfig): AxiosPromise<Attachment>;
|
|
7295
7429
|
};
|
|
7296
7430
|
/**
|
|
7297
7431
|
* Request parameters for searchAttachments operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7317,6 +7451,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7317
7451
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7318
7452
|
*/
|
|
7319
7453
|
readonly displayName?: string;
|
|
7454
|
+
/**
|
|
7455
|
+
* Name of group
|
|
7456
|
+
* @type {string}
|
|
7457
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7458
|
+
*/
|
|
7459
|
+
readonly group?: string;
|
|
7320
7460
|
/**
|
|
7321
7461
|
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7322
7462
|
* @type {boolean}
|
|
@@ -7330,17 +7470,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7330
7470
|
*/
|
|
7331
7471
|
readonly uploadedBy?: string;
|
|
7332
7472
|
/**
|
|
7333
|
-
*
|
|
7334
|
-
* @type {
|
|
7473
|
+
* Size of one page. Zero indicates no limit.
|
|
7474
|
+
* @type {number}
|
|
7335
7475
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7336
7476
|
*/
|
|
7337
|
-
readonly
|
|
7477
|
+
readonly size?: number;
|
|
7338
7478
|
/**
|
|
7339
|
-
*
|
|
7479
|
+
* The page number. Zero indicates no page.
|
|
7340
7480
|
* @type {number}
|
|
7341
7481
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7342
7482
|
*/
|
|
7343
|
-
readonly
|
|
7483
|
+
readonly page?: number;
|
|
7344
7484
|
/**
|
|
7345
7485
|
* Label selector for filtering.
|
|
7346
7486
|
* @type {Array<string>}
|
|
@@ -7353,12 +7493,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7353
7493
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7354
7494
|
*/
|
|
7355
7495
|
readonly fieldSelector?: Array<string>;
|
|
7356
|
-
/**
|
|
7357
|
-
* The page number. Zero indicates no page.
|
|
7358
|
-
* @type {number}
|
|
7359
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7360
|
-
*/
|
|
7361
|
-
readonly page?: number;
|
|
7362
7496
|
}
|
|
7363
7497
|
/**
|
|
7364
7498
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7368,10 +7502,10 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7368
7502
|
interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
|
|
7369
7503
|
/**
|
|
7370
7504
|
*
|
|
7371
|
-
* @type {
|
|
7505
|
+
* @type {File}
|
|
7372
7506
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
|
|
7373
7507
|
*/
|
|
7374
|
-
readonly file:
|
|
7508
|
+
readonly file: File;
|
|
7375
7509
|
/**
|
|
7376
7510
|
* Storage policy name
|
|
7377
7511
|
* @type {string}
|
|
@@ -7433,24 +7567,24 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7433
7567
|
/**
|
|
7434
7568
|
* List comments.
|
|
7435
7569
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7436
|
-
* @param {
|
|
7570
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7571
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7572
|
+
* @param {boolean} [top] Comment top display.
|
|
7437
7573
|
* @param {boolean} [approved] Comments approved.
|
|
7574
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7438
7575
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
7439
7576
|
* @param {string} [ownerKind] Commenter kind.
|
|
7440
7577
|
* @param {string} [ownerName] Commenter name.
|
|
7441
7578
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7442
7579
|
* @param {string} [subjectName] Comment subject name.
|
|
7443
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7444
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7445
|
-
* @param {boolean} [top] Comment top display.
|
|
7446
7580
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7581
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7447
7582
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7448
7583
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7449
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7450
7584
|
* @param {*} [options] Override http request option.
|
|
7451
7585
|
* @throws {RequiredError}
|
|
7452
7586
|
*/
|
|
7453
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7587
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, sortOrder?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7454
7588
|
};
|
|
7455
7589
|
/**
|
|
7456
7590
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7475,24 +7609,24 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7475
7609
|
/**
|
|
7476
7610
|
* List comments.
|
|
7477
7611
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7478
|
-
* @param {
|
|
7612
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7613
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7614
|
+
* @param {boolean} [top] Comment top display.
|
|
7479
7615
|
* @param {boolean} [approved] Comments approved.
|
|
7616
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7480
7617
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
7481
7618
|
* @param {string} [ownerKind] Commenter kind.
|
|
7482
7619
|
* @param {string} [ownerName] Commenter name.
|
|
7483
7620
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7484
7621
|
* @param {string} [subjectName] Comment subject name.
|
|
7485
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7486
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7487
|
-
* @param {boolean} [top] Comment top display.
|
|
7488
7622
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7623
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7489
7624
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7490
7625
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7491
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7492
7626
|
* @param {*} [options] Override http request option.
|
|
7493
7627
|
* @throws {RequiredError}
|
|
7494
7628
|
*/
|
|
7495
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7629
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, approved?: boolean, sortOrder?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
7496
7630
|
};
|
|
7497
7631
|
/**
|
|
7498
7632
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7501,40 +7635,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7501
7635
|
declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7502
7636
|
/**
|
|
7503
7637
|
* Create a comment.
|
|
7504
|
-
* @param {
|
|
7638
|
+
* @param {ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest} requestParameters Request parameters.
|
|
7505
7639
|
* @param {*} [options] Override http request option.
|
|
7506
7640
|
* @throws {RequiredError}
|
|
7507
7641
|
*/
|
|
7508
|
-
createComment(
|
|
7642
|
+
createComment(requestParameters: ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, options?: AxiosRequestConfig): AxiosPromise<Comment>;
|
|
7509
7643
|
/**
|
|
7510
7644
|
* Create a reply.
|
|
7511
|
-
* @param {
|
|
7512
|
-
* @param {ReplyRequest} replyRequest
|
|
7645
|
+
* @param {ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest} requestParameters Request parameters.
|
|
7513
7646
|
* @param {*} [options] Override http request option.
|
|
7514
7647
|
* @throws {RequiredError}
|
|
7515
7648
|
*/
|
|
7516
|
-
createReply(
|
|
7649
|
+
createReply(requestParameters: ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, options?: AxiosRequestConfig): AxiosPromise<Reply>;
|
|
7517
7650
|
/**
|
|
7518
7651
|
* List comments.
|
|
7519
|
-
* @param {
|
|
7520
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7521
|
-
* @param {boolean} [approved] Comments approved.
|
|
7522
|
-
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
7523
|
-
* @param {string} [ownerKind] Commenter kind.
|
|
7524
|
-
* @param {string} [ownerName] Commenter name.
|
|
7525
|
-
* @param {string} [subjectKind] Comment subject kind.
|
|
7526
|
-
* @param {string} [subjectName] Comment subject name.
|
|
7527
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7528
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7529
|
-
* @param {boolean} [top] Comment top display.
|
|
7530
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7531
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7532
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7533
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7652
|
+
* @param {ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
|
|
7534
7653
|
* @param {*} [options] Override http request option.
|
|
7535
7654
|
* @throws {RequiredError}
|
|
7536
7655
|
*/
|
|
7537
|
-
listComments(
|
|
7656
|
+
listComments(requestParameters?: ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListedCommentList>;
|
|
7538
7657
|
};
|
|
7539
7658
|
/**
|
|
7540
7659
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7581,17 +7700,35 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7581
7700
|
*/
|
|
7582
7701
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7583
7702
|
/**
|
|
7584
|
-
*
|
|
7703
|
+
* Comments filtered by keyword.
|
|
7704
|
+
* @type {string}
|
|
7705
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7706
|
+
*/
|
|
7707
|
+
readonly keyword?: string;
|
|
7708
|
+
/**
|
|
7709
|
+
* The comment is hidden from the theme side.
|
|
7585
7710
|
* @type {boolean}
|
|
7586
7711
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7587
7712
|
*/
|
|
7588
|
-
readonly
|
|
7713
|
+
readonly hidden?: boolean;
|
|
7714
|
+
/**
|
|
7715
|
+
* Comment top display.
|
|
7716
|
+
* @type {boolean}
|
|
7717
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7718
|
+
*/
|
|
7719
|
+
readonly top?: boolean;
|
|
7589
7720
|
/**
|
|
7590
7721
|
* Comments approved.
|
|
7591
7722
|
* @type {boolean}
|
|
7592
7723
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7593
7724
|
*/
|
|
7594
7725
|
readonly approved?: boolean;
|
|
7726
|
+
/**
|
|
7727
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7728
|
+
* @type {boolean}
|
|
7729
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7730
|
+
*/
|
|
7731
|
+
readonly sortOrder?: boolean;
|
|
7595
7732
|
/**
|
|
7596
7733
|
* Send notifications when there are new replies.
|
|
7597
7734
|
* @type {boolean}
|
|
@@ -7623,29 +7760,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7623
7760
|
*/
|
|
7624
7761
|
readonly subjectName?: string;
|
|
7625
7762
|
/**
|
|
7626
|
-
*
|
|
7627
|
-
* @type {
|
|
7628
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7629
|
-
*/
|
|
7630
|
-
readonly keyword?: string;
|
|
7631
|
-
/**
|
|
7632
|
-
* The comment is hidden from the theme side.
|
|
7633
|
-
* @type {boolean}
|
|
7634
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7635
|
-
*/
|
|
7636
|
-
readonly hidden?: boolean;
|
|
7637
|
-
/**
|
|
7638
|
-
* Comment top display.
|
|
7639
|
-
* @type {boolean}
|
|
7763
|
+
* Size of one page. Zero indicates no limit.
|
|
7764
|
+
* @type {number}
|
|
7640
7765
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7641
7766
|
*/
|
|
7642
|
-
readonly
|
|
7767
|
+
readonly size?: number;
|
|
7643
7768
|
/**
|
|
7644
|
-
*
|
|
7769
|
+
* The page number. Zero indicates no page.
|
|
7645
7770
|
* @type {number}
|
|
7646
7771
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7647
7772
|
*/
|
|
7648
|
-
readonly
|
|
7773
|
+
readonly page?: number;
|
|
7649
7774
|
/**
|
|
7650
7775
|
* Label selector for filtering.
|
|
7651
7776
|
* @type {Array<string>}
|
|
@@ -7658,12 +7783,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7658
7783
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7659
7784
|
*/
|
|
7660
7785
|
readonly fieldSelector?: Array<string>;
|
|
7661
|
-
/**
|
|
7662
|
-
* The page number. Zero indicates no page.
|
|
7663
|
-
* @type {number}
|
|
7664
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7665
|
-
*/
|
|
7666
|
-
readonly page?: number;
|
|
7667
7786
|
}
|
|
7668
7787
|
/**
|
|
7669
7788
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7732,7 +7851,7 @@ declare const ApiConsoleHaloRunV1alpha1IndicesApiFactory: (configuration?: Confi
|
|
|
7732
7851
|
* @param {*} [options] Override http request option.
|
|
7733
7852
|
* @throws {RequiredError}
|
|
7734
7853
|
*/
|
|
7735
|
-
buildPostIndices(options?:
|
|
7854
|
+
buildPostIndices(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
7736
7855
|
};
|
|
7737
7856
|
/**
|
|
7738
7857
|
* ApiConsoleHaloRunV1alpha1IndicesApi - object-oriented interface
|
|
@@ -7771,16 +7890,24 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7771
7890
|
fetchPluginSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7772
7891
|
/**
|
|
7773
7892
|
* Install a plugin by uploading a Jar file.
|
|
7774
|
-
* @param {
|
|
7893
|
+
* @param {File} [file]
|
|
7894
|
+
* @param {string} [source] Install source. Default is file.
|
|
7895
|
+
* @param {string} [presetName] Plugin preset name. We will find the plugin from plugin presets
|
|
7896
|
+
* @param {*} [options] Override http request option.
|
|
7897
|
+
* @throws {RequiredError}
|
|
7898
|
+
*/
|
|
7899
|
+
installPlugin: (file?: File, source?: string, presetName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7900
|
+
/**
|
|
7901
|
+
* List all plugin presets in the system.
|
|
7775
7902
|
* @param {*} [options] Override http request option.
|
|
7776
7903
|
* @throws {RequiredError}
|
|
7777
7904
|
*/
|
|
7778
|
-
|
|
7905
|
+
listPluginPresets: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7779
7906
|
/**
|
|
7780
7907
|
* List plugins using query criteria and sort params
|
|
7781
7908
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7782
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7783
7909
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7910
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7784
7911
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7785
7912
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7786
7913
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -7788,7 +7915,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7788
7915
|
* @param {*} [options] Override http request option.
|
|
7789
7916
|
* @throws {RequiredError}
|
|
7790
7917
|
*/
|
|
7791
|
-
listPlugins: (sort?: Array<string>,
|
|
7918
|
+
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7792
7919
|
/**
|
|
7793
7920
|
* Reset the configMap of plugin setting.
|
|
7794
7921
|
* @param {string} name
|
|
@@ -7807,11 +7934,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7807
7934
|
/**
|
|
7808
7935
|
* Upgrade a plugin by uploading a Jar file
|
|
7809
7936
|
* @param {string} name
|
|
7810
|
-
* @param {
|
|
7937
|
+
* @param {File} [file]
|
|
7938
|
+
* @param {string} [source] Install source. Default is file.
|
|
7939
|
+
* @param {string} [presetName] Plugin preset name. We will find the plugin from plugin presets
|
|
7811
7940
|
* @param {*} [options] Override http request option.
|
|
7812
7941
|
* @throws {RequiredError}
|
|
7813
7942
|
*/
|
|
7814
|
-
upgradePlugin: (name: string, file
|
|
7943
|
+
upgradePlugin: (name: string, file?: File, source?: string, presetName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7815
7944
|
};
|
|
7816
7945
|
/**
|
|
7817
7946
|
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
@@ -7834,16 +7963,24 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7834
7963
|
fetchPluginSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
7835
7964
|
/**
|
|
7836
7965
|
* Install a plugin by uploading a Jar file.
|
|
7837
|
-
* @param {
|
|
7966
|
+
* @param {File} [file]
|
|
7967
|
+
* @param {string} [source] Install source. Default is file.
|
|
7968
|
+
* @param {string} [presetName] Plugin preset name. We will find the plugin from plugin presets
|
|
7969
|
+
* @param {*} [options] Override http request option.
|
|
7970
|
+
* @throws {RequiredError}
|
|
7971
|
+
*/
|
|
7972
|
+
installPlugin(file?: File, source?: string, presetName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
7973
|
+
/**
|
|
7974
|
+
* List all plugin presets in the system.
|
|
7838
7975
|
* @param {*} [options] Override http request option.
|
|
7839
7976
|
* @throws {RequiredError}
|
|
7840
7977
|
*/
|
|
7841
|
-
|
|
7978
|
+
listPluginPresets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Plugin>>>;
|
|
7842
7979
|
/**
|
|
7843
7980
|
* List plugins using query criteria and sort params
|
|
7844
7981
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7845
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7846
7982
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7983
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7847
7984
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7848
7985
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7849
7986
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -7851,7 +7988,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7851
7988
|
* @param {*} [options] Override http request option.
|
|
7852
7989
|
* @throws {RequiredError}
|
|
7853
7990
|
*/
|
|
7854
|
-
listPlugins(sort?: Array<string>,
|
|
7991
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7855
7992
|
/**
|
|
7856
7993
|
* Reset the configMap of plugin setting.
|
|
7857
7994
|
* @param {string} name
|
|
@@ -7870,11 +8007,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7870
8007
|
/**
|
|
7871
8008
|
* Upgrade a plugin by uploading a Jar file
|
|
7872
8009
|
* @param {string} name
|
|
7873
|
-
* @param {
|
|
8010
|
+
* @param {File} [file]
|
|
8011
|
+
* @param {string} [source] Install source. Default is file.
|
|
8012
|
+
* @param {string} [presetName] Plugin preset name. We will find the plugin from plugin presets
|
|
7874
8013
|
* @param {*} [options] Override http request option.
|
|
7875
8014
|
* @throws {RequiredError}
|
|
7876
8015
|
*/
|
|
7877
|
-
upgradePlugin(name: string, file
|
|
8016
|
+
upgradePlugin(name: string, file?: File, source?: string, presetName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7878
8017
|
};
|
|
7879
8018
|
/**
|
|
7880
8019
|
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -7883,61 +8022,59 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7883
8022
|
declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7884
8023
|
/**
|
|
7885
8024
|
* Fetch configMap of plugin by configured configMapName.
|
|
7886
|
-
* @param {
|
|
8025
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest} requestParameters Request parameters.
|
|
7887
8026
|
* @param {*} [options] Override http request option.
|
|
7888
8027
|
* @throws {RequiredError}
|
|
7889
8028
|
*/
|
|
7890
|
-
fetchPluginConfig(
|
|
8029
|
+
fetchPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
7891
8030
|
/**
|
|
7892
8031
|
* Fetch setting of plugin.
|
|
7893
|
-
* @param {
|
|
8032
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest} requestParameters Request parameters.
|
|
7894
8033
|
* @param {*} [options] Override http request option.
|
|
7895
8034
|
* @throws {RequiredError}
|
|
7896
8035
|
*/
|
|
7897
|
-
fetchPluginSetting(
|
|
8036
|
+
fetchPluginSetting(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, options?: AxiosRequestConfig): AxiosPromise<Setting>;
|
|
7898
8037
|
/**
|
|
7899
8038
|
* Install a plugin by uploading a Jar file.
|
|
7900
|
-
* @param {
|
|
8039
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
|
|
8040
|
+
* @param {*} [options] Override http request option.
|
|
8041
|
+
* @throws {RequiredError}
|
|
8042
|
+
*/
|
|
8043
|
+
installPlugin(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): AxiosPromise<Plugin>;
|
|
8044
|
+
/**
|
|
8045
|
+
* List all plugin presets in the system.
|
|
7901
8046
|
* @param {*} [options] Override http request option.
|
|
7902
8047
|
* @throws {RequiredError}
|
|
7903
8048
|
*/
|
|
7904
|
-
|
|
8049
|
+
listPluginPresets(options?: AxiosRequestConfig): AxiosPromise<Array<Plugin>>;
|
|
7905
8050
|
/**
|
|
7906
8051
|
* List plugins using query criteria and sort params
|
|
7907
|
-
* @param {
|
|
7908
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7909
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7910
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7911
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7912
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7913
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8052
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest} requestParameters Request parameters.
|
|
7914
8053
|
* @param {*} [options] Override http request option.
|
|
7915
8054
|
* @throws {RequiredError}
|
|
7916
8055
|
*/
|
|
7917
|
-
listPlugins(
|
|
8056
|
+
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): AxiosPromise<PluginList>;
|
|
7918
8057
|
/**
|
|
7919
8058
|
* Reset the configMap of plugin setting.
|
|
7920
|
-
* @param {
|
|
8059
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest} requestParameters Request parameters.
|
|
7921
8060
|
* @param {*} [options] Override http request option.
|
|
7922
8061
|
* @throws {RequiredError}
|
|
7923
8062
|
*/
|
|
7924
|
-
resetPluginConfig(
|
|
8063
|
+
resetPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
7925
8064
|
/**
|
|
7926
8065
|
* Update the configMap of plugin setting.
|
|
7927
|
-
* @param {
|
|
7928
|
-
* @param {ConfigMap} configMap
|
|
8066
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest} requestParameters Request parameters.
|
|
7929
8067
|
* @param {*} [options] Override http request option.
|
|
7930
8068
|
* @throws {RequiredError}
|
|
7931
8069
|
*/
|
|
7932
|
-
updatePluginConfig(
|
|
8070
|
+
updatePluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
7933
8071
|
/**
|
|
7934
8072
|
* Upgrade a plugin by uploading a Jar file
|
|
7935
|
-
* @param {
|
|
7936
|
-
* @param {any} file
|
|
8073
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
7937
8074
|
* @param {*} [options] Override http request option.
|
|
7938
8075
|
* @throws {RequiredError}
|
|
7939
8076
|
*/
|
|
7940
|
-
upgradePlugin(
|
|
8077
|
+
upgradePlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
7941
8078
|
};
|
|
7942
8079
|
/**
|
|
7943
8080
|
* Request parameters for fetchPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7973,10 +8110,22 @@ interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest {
|
|
|
7973
8110
|
interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
|
|
7974
8111
|
/**
|
|
7975
8112
|
*
|
|
7976
|
-
* @type {
|
|
8113
|
+
* @type {File}
|
|
8114
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiInstallPlugin
|
|
8115
|
+
*/
|
|
8116
|
+
readonly file?: File;
|
|
8117
|
+
/**
|
|
8118
|
+
* Install source. Default is file.
|
|
8119
|
+
* @type {string}
|
|
8120
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiInstallPlugin
|
|
8121
|
+
*/
|
|
8122
|
+
readonly source?: string;
|
|
8123
|
+
/**
|
|
8124
|
+
* Plugin preset name. We will find the plugin from plugin presets
|
|
8125
|
+
* @type {string}
|
|
7977
8126
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiInstallPlugin
|
|
7978
8127
|
*/
|
|
7979
|
-
readonly
|
|
8128
|
+
readonly presetName?: string;
|
|
7980
8129
|
}
|
|
7981
8130
|
/**
|
|
7982
8131
|
* Request parameters for listPlugins operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7990,18 +8139,18 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7990
8139
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7991
8140
|
*/
|
|
7992
8141
|
readonly sort?: Array<string>;
|
|
7993
|
-
/**
|
|
7994
|
-
* Whether the plugin is enabled
|
|
7995
|
-
* @type {boolean}
|
|
7996
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7997
|
-
*/
|
|
7998
|
-
readonly enabled?: boolean;
|
|
7999
8142
|
/**
|
|
8000
8143
|
* Keyword of plugin name or description
|
|
8001
8144
|
* @type {string}
|
|
8002
8145
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8003
8146
|
*/
|
|
8004
8147
|
readonly keyword?: string;
|
|
8148
|
+
/**
|
|
8149
|
+
* Whether the plugin is enabled
|
|
8150
|
+
* @type {boolean}
|
|
8151
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8152
|
+
*/
|
|
8153
|
+
readonly enabled?: boolean;
|
|
8005
8154
|
/**
|
|
8006
8155
|
* Size of one page. Zero indicates no limit.
|
|
8007
8156
|
* @type {number}
|
|
@@ -8073,10 +8222,22 @@ interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest {
|
|
|
8073
8222
|
readonly name: string;
|
|
8074
8223
|
/**
|
|
8075
8224
|
*
|
|
8076
|
-
* @type {
|
|
8225
|
+
* @type {File}
|
|
8226
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
8227
|
+
*/
|
|
8228
|
+
readonly file?: File;
|
|
8229
|
+
/**
|
|
8230
|
+
* Install source. Default is file.
|
|
8231
|
+
* @type {string}
|
|
8232
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
8233
|
+
*/
|
|
8234
|
+
readonly source?: string;
|
|
8235
|
+
/**
|
|
8236
|
+
* Plugin preset name. We will find the plugin from plugin presets
|
|
8237
|
+
* @type {string}
|
|
8077
8238
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
8078
8239
|
*/
|
|
8079
|
-
readonly
|
|
8240
|
+
readonly presetName?: string;
|
|
8080
8241
|
}
|
|
8081
8242
|
/**
|
|
8082
8243
|
* ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
|
|
@@ -8108,7 +8269,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
8108
8269
|
* @throws {RequiredError}
|
|
8109
8270
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8110
8271
|
*/
|
|
8111
|
-
installPlugin(requestParameters
|
|
8272
|
+
installPlugin(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
8273
|
+
/**
|
|
8274
|
+
* List all plugin presets in the system.
|
|
8275
|
+
* @param {*} [options] Override http request option.
|
|
8276
|
+
* @throws {RequiredError}
|
|
8277
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8278
|
+
*/
|
|
8279
|
+
listPluginPresets(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin[], any>>;
|
|
8112
8280
|
/**
|
|
8113
8281
|
* List plugins using query criteria and sort params
|
|
8114
8282
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest} requestParameters Request parameters.
|
|
@@ -8172,21 +8340,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8172
8340
|
/**
|
|
8173
8341
|
* List posts.
|
|
8174
8342
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8175
|
-
* @param {Array<string>} [contributor]
|
|
8176
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8177
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8178
|
-
* @param {Array<string>} [category]
|
|
8179
|
-
* @param {Array<string>} [tag]
|
|
8180
8343
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8181
8344
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8345
|
+
* @param {Array<string>} [tag]
|
|
8346
|
+
* @param {Array<string>} [category]
|
|
8347
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8348
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8349
|
+
* @param {Array<string>} [contributor]
|
|
8182
8350
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8351
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8183
8352
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8184
8353
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8185
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8186
8354
|
* @param {*} [options] Override http request option.
|
|
8187
8355
|
* @throws {RequiredError}
|
|
8188
8356
|
*/
|
|
8189
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8357
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, category?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8190
8358
|
/**
|
|
8191
8359
|
* Publish a post.
|
|
8192
8360
|
* @param {string} name
|
|
@@ -8255,21 +8423,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8255
8423
|
/**
|
|
8256
8424
|
* List posts.
|
|
8257
8425
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8258
|
-
* @param {Array<string>} [contributor]
|
|
8259
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8260
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8261
|
-
* @param {Array<string>} [category]
|
|
8262
|
-
* @param {Array<string>} [tag]
|
|
8263
8426
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8264
8427
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8428
|
+
* @param {Array<string>} [tag]
|
|
8429
|
+
* @param {Array<string>} [category]
|
|
8430
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8431
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8432
|
+
* @param {Array<string>} [contributor]
|
|
8265
8433
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8434
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8266
8435
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8267
8436
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8268
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8269
8437
|
* @param {*} [options] Override http request option.
|
|
8270
8438
|
* @throws {RequiredError}
|
|
8271
8439
|
*/
|
|
8272
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8440
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, category?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8273
8441
|
/**
|
|
8274
8442
|
* Publish a post.
|
|
8275
8443
|
* @param {string} name
|
|
@@ -8316,81 +8484,67 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8316
8484
|
declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8317
8485
|
/**
|
|
8318
8486
|
* Draft a post.
|
|
8319
|
-
* @param {
|
|
8487
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest} requestParameters Request parameters.
|
|
8320
8488
|
* @param {*} [options] Override http request option.
|
|
8321
8489
|
* @throws {RequiredError}
|
|
8322
8490
|
*/
|
|
8323
|
-
draftPost(
|
|
8491
|
+
draftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
8324
8492
|
/**
|
|
8325
8493
|
* Fetch head content of post.
|
|
8326
|
-
* @param {
|
|
8494
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest} requestParameters Request parameters.
|
|
8327
8495
|
* @param {*} [options] Override http request option.
|
|
8328
8496
|
* @throws {RequiredError}
|
|
8329
8497
|
*/
|
|
8330
|
-
fetchPostHeadContent(
|
|
8498
|
+
fetchPostHeadContent(requestParameters: ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, options?: AxiosRequestConfig): AxiosPromise<ContentWrapper>;
|
|
8331
8499
|
/**
|
|
8332
8500
|
* Fetch release content of post.
|
|
8333
|
-
* @param {
|
|
8501
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest} requestParameters Request parameters.
|
|
8334
8502
|
* @param {*} [options] Override http request option.
|
|
8335
8503
|
* @throws {RequiredError}
|
|
8336
8504
|
*/
|
|
8337
|
-
fetchPostReleaseContent(
|
|
8505
|
+
fetchPostReleaseContent(requestParameters: ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, options?: AxiosRequestConfig): AxiosPromise<ContentWrapper>;
|
|
8338
8506
|
/**
|
|
8339
8507
|
* List posts.
|
|
8340
|
-
* @param {
|
|
8341
|
-
* @param {Array<string>} [contributor]
|
|
8342
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8343
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8344
|
-
* @param {Array<string>} [category]
|
|
8345
|
-
* @param {Array<string>} [tag]
|
|
8346
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8347
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8348
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8349
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8350
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8351
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8508
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
|
|
8352
8509
|
* @param {*} [options] Override http request option.
|
|
8353
8510
|
* @throws {RequiredError}
|
|
8354
8511
|
*/
|
|
8355
|
-
listPosts(
|
|
8512
|
+
listPosts(requestParameters?: ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, options?: AxiosRequestConfig): AxiosPromise<ListedPostList>;
|
|
8356
8513
|
/**
|
|
8357
8514
|
* Publish a post.
|
|
8358
|
-
* @param {
|
|
8359
|
-
* @param {string} [headSnapshot] Head snapshot name of content.
|
|
8515
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest} requestParameters Request parameters.
|
|
8360
8516
|
* @param {*} [options] Override http request option.
|
|
8361
8517
|
* @throws {RequiredError}
|
|
8362
8518
|
*/
|
|
8363
|
-
publishPost(
|
|
8519
|
+
publishPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
8364
8520
|
/**
|
|
8365
8521
|
* Recycle a post.
|
|
8366
|
-
* @param {
|
|
8522
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest} requestParameters Request parameters.
|
|
8367
8523
|
* @param {*} [options] Override http request option.
|
|
8368
8524
|
* @throws {RequiredError}
|
|
8369
8525
|
*/
|
|
8370
|
-
recyclePost(
|
|
8526
|
+
recyclePost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
8371
8527
|
/**
|
|
8372
8528
|
* Publish a post.
|
|
8373
|
-
* @param {
|
|
8529
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest} requestParameters Request parameters.
|
|
8374
8530
|
* @param {*} [options] Override http request option.
|
|
8375
8531
|
* @throws {RequiredError}
|
|
8376
8532
|
*/
|
|
8377
|
-
unpublishPost(
|
|
8533
|
+
unpublishPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
8378
8534
|
/**
|
|
8379
8535
|
* Update a post.
|
|
8380
|
-
* @param {
|
|
8381
|
-
* @param {PostRequest} postRequest
|
|
8536
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
|
|
8382
8537
|
* @param {*} [options] Override http request option.
|
|
8383
8538
|
* @throws {RequiredError}
|
|
8384
8539
|
*/
|
|
8385
|
-
updateDraftPost(
|
|
8540
|
+
updateDraftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
8386
8541
|
/**
|
|
8387
8542
|
* Update a post\'s content.
|
|
8388
|
-
* @param {
|
|
8389
|
-
* @param {Content} content
|
|
8543
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest} requestParameters Request parameters.
|
|
8390
8544
|
* @param {*} [options] Override http request option.
|
|
8391
8545
|
* @throws {RequiredError}
|
|
8392
8546
|
*/
|
|
8393
|
-
updatePostContent(
|
|
8547
|
+
updatePostContent(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
8394
8548
|
};
|
|
8395
8549
|
/**
|
|
8396
8550
|
* Request parameters for draftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8444,23 +8598,23 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8444
8598
|
*/
|
|
8445
8599
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8446
8600
|
/**
|
|
8447
|
-
*
|
|
8448
|
-
* @type {
|
|
8601
|
+
* Posts filtered by keyword.
|
|
8602
|
+
* @type {string}
|
|
8449
8603
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8450
8604
|
*/
|
|
8451
|
-
readonly
|
|
8605
|
+
readonly keyword?: string;
|
|
8452
8606
|
/**
|
|
8453
|
-
*
|
|
8454
|
-
* @type {
|
|
8607
|
+
*
|
|
8608
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8455
8609
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8456
8610
|
*/
|
|
8457
|
-
readonly
|
|
8611
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8458
8612
|
/**
|
|
8459
8613
|
*
|
|
8460
|
-
* @type {
|
|
8614
|
+
* @type {Array<string>}
|
|
8461
8615
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8462
8616
|
*/
|
|
8463
|
-
readonly
|
|
8617
|
+
readonly tag?: Array<string>;
|
|
8464
8618
|
/**
|
|
8465
8619
|
*
|
|
8466
8620
|
* @type {Array<string>}
|
|
@@ -8468,29 +8622,35 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8468
8622
|
*/
|
|
8469
8623
|
readonly category?: Array<string>;
|
|
8470
8624
|
/**
|
|
8471
|
-
*
|
|
8472
|
-
* @type {
|
|
8625
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8626
|
+
* @type {boolean}
|
|
8473
8627
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8474
8628
|
*/
|
|
8475
|
-
readonly
|
|
8629
|
+
readonly sortOrder?: boolean;
|
|
8476
8630
|
/**
|
|
8477
|
-
*
|
|
8478
|
-
* @type {
|
|
8631
|
+
*
|
|
8632
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8479
8633
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8480
8634
|
*/
|
|
8481
|
-
readonly
|
|
8635
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8482
8636
|
/**
|
|
8483
8637
|
*
|
|
8484
|
-
* @type {
|
|
8638
|
+
* @type {Array<string>}
|
|
8485
8639
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8486
8640
|
*/
|
|
8487
|
-
readonly
|
|
8641
|
+
readonly contributor?: Array<string>;
|
|
8488
8642
|
/**
|
|
8489
8643
|
* Size of one page. Zero indicates no limit.
|
|
8490
8644
|
* @type {number}
|
|
8491
8645
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8492
8646
|
*/
|
|
8493
8647
|
readonly size?: number;
|
|
8648
|
+
/**
|
|
8649
|
+
* The page number. Zero indicates no page.
|
|
8650
|
+
* @type {number}
|
|
8651
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8652
|
+
*/
|
|
8653
|
+
readonly page?: number;
|
|
8494
8654
|
/**
|
|
8495
8655
|
* Label selector for filtering.
|
|
8496
8656
|
* @type {Array<string>}
|
|
@@ -8503,12 +8663,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8503
8663
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8504
8664
|
*/
|
|
8505
8665
|
readonly fieldSelector?: Array<string>;
|
|
8506
|
-
/**
|
|
8507
|
-
* The page number. Zero indicates no page.
|
|
8508
|
-
* @type {number}
|
|
8509
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8510
|
-
*/
|
|
8511
|
-
readonly page?: number;
|
|
8512
8666
|
}
|
|
8513
8667
|
/**
|
|
8514
8668
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8683,13 +8837,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8683
8837
|
* List replies.
|
|
8684
8838
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8685
8839
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8840
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8686
8841
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8687
8842
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8688
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8689
8843
|
* @param {*} [options] Override http request option.
|
|
8690
8844
|
* @throws {RequiredError}
|
|
8691
8845
|
*/
|
|
8692
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8846
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8693
8847
|
};
|
|
8694
8848
|
/**
|
|
8695
8849
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8700,13 +8854,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8700
8854
|
* List replies.
|
|
8701
8855
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8702
8856
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8857
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8703
8858
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8704
8859
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8705
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8706
8860
|
* @param {*} [options] Override http request option.
|
|
8707
8861
|
* @throws {RequiredError}
|
|
8708
8862
|
*/
|
|
8709
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8863
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8710
8864
|
};
|
|
8711
8865
|
/**
|
|
8712
8866
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8715,15 +8869,11 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8715
8869
|
declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8716
8870
|
/**
|
|
8717
8871
|
* List replies.
|
|
8718
|
-
* @param {
|
|
8719
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8720
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8721
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8722
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8872
|
+
* @param {ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest} requestParameters Request parameters.
|
|
8723
8873
|
* @param {*} [options] Override http request option.
|
|
8724
8874
|
* @throws {RequiredError}
|
|
8725
8875
|
*/
|
|
8726
|
-
listReplies(
|
|
8876
|
+
listReplies(requestParameters?: ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, options?: AxiosRequestConfig): AxiosPromise<ListedReplyList>;
|
|
8727
8877
|
};
|
|
8728
8878
|
/**
|
|
8729
8879
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8743,6 +8893,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8743
8893
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8744
8894
|
*/
|
|
8745
8895
|
readonly size?: number;
|
|
8896
|
+
/**
|
|
8897
|
+
* The page number. Zero indicates no page.
|
|
8898
|
+
* @type {number}
|
|
8899
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8900
|
+
*/
|
|
8901
|
+
readonly page?: number;
|
|
8746
8902
|
/**
|
|
8747
8903
|
* Label selector for filtering.
|
|
8748
8904
|
* @type {Array<string>}
|
|
@@ -8755,12 +8911,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8755
8911
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8756
8912
|
*/
|
|
8757
8913
|
readonly fieldSelector?: Array<string>;
|
|
8758
|
-
/**
|
|
8759
|
-
* The page number. Zero indicates no page.
|
|
8760
|
-
* @type {number}
|
|
8761
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8762
|
-
*/
|
|
8763
|
-
readonly page?: number;
|
|
8764
8914
|
}
|
|
8765
8915
|
/**
|
|
8766
8916
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8808,19 +8958,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8808
8958
|
/**
|
|
8809
8959
|
* List single pages.
|
|
8810
8960
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8811
|
-
* @param {Array<string>} [contributor]
|
|
8812
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8813
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8814
8961
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8815
8962
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8963
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8964
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8965
|
+
* @param {Array<string>} [contributor]
|
|
8816
8966
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8967
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8817
8968
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8818
8969
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8819
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8820
8970
|
* @param {*} [options] Override http request option.
|
|
8821
8971
|
* @throws {RequiredError}
|
|
8822
8972
|
*/
|
|
8823
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8973
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8824
8974
|
/**
|
|
8825
8975
|
* Publish a single page.
|
|
8826
8976
|
* @param {string} name
|
|
@@ -8874,19 +9024,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8874
9024
|
/**
|
|
8875
9025
|
* List single pages.
|
|
8876
9026
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8877
|
-
* @param {Array<string>} [contributor]
|
|
8878
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8879
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8880
9027
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8881
9028
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
9029
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
9030
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
9031
|
+
* @param {Array<string>} [contributor]
|
|
8882
9032
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9033
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8883
9034
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8884
9035
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8885
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8886
9036
|
* @param {*} [options] Override http request option.
|
|
8887
9037
|
* @throws {RequiredError}
|
|
8888
9038
|
*/
|
|
8889
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
9039
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8890
9040
|
/**
|
|
8891
9041
|
* Publish a single page.
|
|
8892
9042
|
* @param {string} name
|
|
@@ -8918,64 +9068,53 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8918
9068
|
declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8919
9069
|
/**
|
|
8920
9070
|
* Draft a single page.
|
|
8921
|
-
* @param {
|
|
9071
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest} requestParameters Request parameters.
|
|
8922
9072
|
* @param {*} [options] Override http request option.
|
|
8923
9073
|
* @throws {RequiredError}
|
|
8924
9074
|
*/
|
|
8925
|
-
draftSinglePage(
|
|
9075
|
+
draftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePage>;
|
|
8926
9076
|
/**
|
|
8927
9077
|
* Fetch head content of single page.
|
|
8928
|
-
* @param {
|
|
9078
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest} requestParameters Request parameters.
|
|
8929
9079
|
* @param {*} [options] Override http request option.
|
|
8930
9080
|
* @throws {RequiredError}
|
|
8931
9081
|
*/
|
|
8932
|
-
fetchSinglePageHeadContent(
|
|
9082
|
+
fetchSinglePageHeadContent(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, options?: AxiosRequestConfig): AxiosPromise<ContentWrapper>;
|
|
8933
9083
|
/**
|
|
8934
9084
|
* Fetch release content of single page.
|
|
8935
|
-
* @param {
|
|
9085
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest} requestParameters Request parameters.
|
|
8936
9086
|
* @param {*} [options] Override http request option.
|
|
8937
9087
|
* @throws {RequiredError}
|
|
8938
9088
|
*/
|
|
8939
|
-
fetchSinglePageReleaseContent(
|
|
9089
|
+
fetchSinglePageReleaseContent(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, options?: AxiosRequestConfig): AxiosPromise<ContentWrapper>;
|
|
8940
9090
|
/**
|
|
8941
9091
|
* List single pages.
|
|
8942
|
-
* @param {
|
|
8943
|
-
* @param {Array<string>} [contributor]
|
|
8944
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8945
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8946
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8947
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8948
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8949
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8950
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8951
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9092
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
|
|
8952
9093
|
* @param {*} [options] Override http request option.
|
|
8953
9094
|
* @throws {RequiredError}
|
|
8954
9095
|
*/
|
|
8955
|
-
listSinglePages(
|
|
9096
|
+
listSinglePages(requestParameters?: ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, options?: AxiosRequestConfig): AxiosPromise<ListedSinglePageList>;
|
|
8956
9097
|
/**
|
|
8957
9098
|
* Publish a single page.
|
|
8958
|
-
* @param {
|
|
9099
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest} requestParameters Request parameters.
|
|
8959
9100
|
* @param {*} [options] Override http request option.
|
|
8960
9101
|
* @throws {RequiredError}
|
|
8961
9102
|
*/
|
|
8962
|
-
publishSinglePage(
|
|
9103
|
+
publishSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePage>;
|
|
8963
9104
|
/**
|
|
8964
9105
|
* Update a single page.
|
|
8965
|
-
* @param {
|
|
8966
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
9106
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest} requestParameters Request parameters.
|
|
8967
9107
|
* @param {*} [options] Override http request option.
|
|
8968
9108
|
* @throws {RequiredError}
|
|
8969
9109
|
*/
|
|
8970
|
-
updateDraftSinglePage(
|
|
9110
|
+
updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePage>;
|
|
8971
9111
|
/**
|
|
8972
9112
|
* Update a single page\'s content.
|
|
8973
|
-
* @param {
|
|
8974
|
-
* @param {Content} content
|
|
9113
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest} requestParameters Request parameters.
|
|
8975
9114
|
* @param {*} [options] Override http request option.
|
|
8976
9115
|
* @throws {RequiredError}
|
|
8977
9116
|
*/
|
|
8978
|
-
updateSinglePageContent(
|
|
9117
|
+
updateSinglePageContent(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
8979
9118
|
};
|
|
8980
9119
|
/**
|
|
8981
9120
|
* Request parameters for draftSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9028,12 +9167,18 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
9028
9167
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9029
9168
|
*/
|
|
9030
9169
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
9170
|
+
/**
|
|
9171
|
+
* SinglePages filtered by keyword.
|
|
9172
|
+
* @type {string}
|
|
9173
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9174
|
+
*/
|
|
9175
|
+
readonly keyword?: string;
|
|
9031
9176
|
/**
|
|
9032
9177
|
*
|
|
9033
|
-
* @type {
|
|
9178
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
9034
9179
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9035
9180
|
*/
|
|
9036
|
-
readonly
|
|
9181
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
9037
9182
|
/**
|
|
9038
9183
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
9039
9184
|
* @type {boolean}
|
|
@@ -9046,24 +9191,24 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
9046
9191
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9047
9192
|
*/
|
|
9048
9193
|
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
9049
|
-
/**
|
|
9050
|
-
* SinglePages filtered by keyword.
|
|
9051
|
-
* @type {string}
|
|
9052
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9053
|
-
*/
|
|
9054
|
-
readonly keyword?: string;
|
|
9055
9194
|
/**
|
|
9056
9195
|
*
|
|
9057
|
-
* @type {
|
|
9196
|
+
* @type {Array<string>}
|
|
9058
9197
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9059
9198
|
*/
|
|
9060
|
-
readonly
|
|
9199
|
+
readonly contributor?: Array<string>;
|
|
9061
9200
|
/**
|
|
9062
9201
|
* Size of one page. Zero indicates no limit.
|
|
9063
9202
|
* @type {number}
|
|
9064
9203
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9065
9204
|
*/
|
|
9066
9205
|
readonly size?: number;
|
|
9206
|
+
/**
|
|
9207
|
+
* The page number. Zero indicates no page.
|
|
9208
|
+
* @type {number}
|
|
9209
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9210
|
+
*/
|
|
9211
|
+
readonly page?: number;
|
|
9067
9212
|
/**
|
|
9068
9213
|
* Label selector for filtering.
|
|
9069
9214
|
* @type {Array<string>}
|
|
@@ -9076,12 +9221,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
9076
9221
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9077
9222
|
*/
|
|
9078
9223
|
readonly fieldSelector?: Array<string>;
|
|
9079
|
-
/**
|
|
9080
|
-
* The page number. Zero indicates no page.
|
|
9081
|
-
* @type {number}
|
|
9082
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9083
|
-
*/
|
|
9084
|
-
readonly page?: number;
|
|
9085
9224
|
}
|
|
9086
9225
|
/**
|
|
9087
9226
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9233,7 +9372,7 @@ declare const ApiConsoleHaloRunV1alpha1StatsApiFactory: (configuration?: Configu
|
|
|
9233
9372
|
* @param {*} [options] Override http request option.
|
|
9234
9373
|
* @throws {RequiredError}
|
|
9235
9374
|
*/
|
|
9236
|
-
getStats(options?:
|
|
9375
|
+
getStats(options?: AxiosRequestConfig): AxiosPromise<DashboardStats>;
|
|
9237
9376
|
};
|
|
9238
9377
|
/**
|
|
9239
9378
|
* ApiConsoleHaloRunV1alpha1StatsApi - object-oriented interface
|
|
@@ -9285,22 +9424,22 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9285
9424
|
fetchThemeSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9286
9425
|
/**
|
|
9287
9426
|
* Install a theme by uploading a zip file.
|
|
9288
|
-
* @param {
|
|
9427
|
+
* @param {File} file
|
|
9289
9428
|
* @param {*} [options] Override http request option.
|
|
9290
9429
|
* @throws {RequiredError}
|
|
9291
9430
|
*/
|
|
9292
|
-
installTheme: (file:
|
|
9431
|
+
installTheme: (file: File, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9293
9432
|
/**
|
|
9294
9433
|
* List themes.
|
|
9295
9434
|
* @param {boolean} uninstalled
|
|
9296
9435
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9436
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9297
9437
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9298
9438
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9299
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9300
9439
|
* @param {*} [options] Override http request option.
|
|
9301
9440
|
* @throws {RequiredError}
|
|
9302
9441
|
*/
|
|
9303
|
-
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9442
|
+
listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9304
9443
|
/**
|
|
9305
9444
|
* Reload theme setting.
|
|
9306
9445
|
* @param {string} name
|
|
@@ -9326,11 +9465,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9326
9465
|
/**
|
|
9327
9466
|
* Upgrade theme
|
|
9328
9467
|
* @param {string} name
|
|
9329
|
-
* @param {
|
|
9468
|
+
* @param {File} file
|
|
9330
9469
|
* @param {*} [options] Override http request option.
|
|
9331
9470
|
* @throws {RequiredError}
|
|
9332
9471
|
*/
|
|
9333
|
-
upgradeTheme: (name: string, file:
|
|
9472
|
+
upgradeTheme: (name: string, file: File, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9334
9473
|
};
|
|
9335
9474
|
/**
|
|
9336
9475
|
* ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
|
|
@@ -9366,22 +9505,22 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9366
9505
|
fetchThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
9367
9506
|
/**
|
|
9368
9507
|
* Install a theme by uploading a zip file.
|
|
9369
|
-
* @param {
|
|
9508
|
+
* @param {File} file
|
|
9370
9509
|
* @param {*} [options] Override http request option.
|
|
9371
9510
|
* @throws {RequiredError}
|
|
9372
9511
|
*/
|
|
9373
|
-
installTheme(file:
|
|
9512
|
+
installTheme(file: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
9374
9513
|
/**
|
|
9375
9514
|
* List themes.
|
|
9376
9515
|
* @param {boolean} uninstalled
|
|
9377
9516
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9517
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9378
9518
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9379
9519
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9380
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9381
9520
|
* @param {*} [options] Override http request option.
|
|
9382
9521
|
* @throws {RequiredError}
|
|
9383
9522
|
*/
|
|
9384
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9523
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
9385
9524
|
/**
|
|
9386
9525
|
* Reload theme setting.
|
|
9387
9526
|
* @param {string} name
|
|
@@ -9407,11 +9546,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9407
9546
|
/**
|
|
9408
9547
|
* Upgrade theme
|
|
9409
9548
|
* @param {string} name
|
|
9410
|
-
* @param {
|
|
9549
|
+
* @param {File} file
|
|
9411
9550
|
* @param {*} [options] Override http request option.
|
|
9412
9551
|
* @throws {RequiredError}
|
|
9413
9552
|
*/
|
|
9414
|
-
upgradeTheme(name: string, file:
|
|
9553
|
+
upgradeTheme(name: string, file: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9415
9554
|
};
|
|
9416
9555
|
/**
|
|
9417
9556
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -9420,79 +9559,73 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9420
9559
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9421
9560
|
/**
|
|
9422
9561
|
* Activate a theme by name.
|
|
9423
|
-
* @param {
|
|
9562
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest} requestParameters Request parameters.
|
|
9424
9563
|
* @param {*} [options] Override http request option.
|
|
9425
9564
|
* @throws {RequiredError}
|
|
9426
9565
|
*/
|
|
9427
|
-
activateTheme(
|
|
9566
|
+
activateTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
9428
9567
|
/**
|
|
9429
9568
|
* Fetch the activated theme.
|
|
9430
9569
|
* @param {*} [options] Override http request option.
|
|
9431
9570
|
* @throws {RequiredError}
|
|
9432
9571
|
*/
|
|
9433
|
-
fetchActivatedTheme(options?:
|
|
9572
|
+
fetchActivatedTheme(options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
9434
9573
|
/**
|
|
9435
9574
|
* Fetch configMap of theme by configured configMapName.
|
|
9436
|
-
* @param {
|
|
9575
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest} requestParameters Request parameters.
|
|
9437
9576
|
* @param {*} [options] Override http request option.
|
|
9438
9577
|
* @throws {RequiredError}
|
|
9439
9578
|
*/
|
|
9440
|
-
fetchThemeConfig(
|
|
9579
|
+
fetchThemeConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
9441
9580
|
/**
|
|
9442
9581
|
* Fetch setting of theme.
|
|
9443
|
-
* @param {
|
|
9582
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest} requestParameters Request parameters.
|
|
9444
9583
|
* @param {*} [options] Override http request option.
|
|
9445
9584
|
* @throws {RequiredError}
|
|
9446
9585
|
*/
|
|
9447
|
-
fetchThemeSetting(
|
|
9586
|
+
fetchThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, options?: AxiosRequestConfig): AxiosPromise<Setting>;
|
|
9448
9587
|
/**
|
|
9449
9588
|
* Install a theme by uploading a zip file.
|
|
9450
|
-
* @param {
|
|
9589
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest} requestParameters Request parameters.
|
|
9451
9590
|
* @param {*} [options] Override http request option.
|
|
9452
9591
|
* @throws {RequiredError}
|
|
9453
9592
|
*/
|
|
9454
|
-
installTheme(
|
|
9593
|
+
installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
9455
9594
|
/**
|
|
9456
9595
|
* List themes.
|
|
9457
|
-
* @param {
|
|
9458
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9459
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9460
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9461
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9596
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest} requestParameters Request parameters.
|
|
9462
9597
|
* @param {*} [options] Override http request option.
|
|
9463
9598
|
* @throws {RequiredError}
|
|
9464
9599
|
*/
|
|
9465
|
-
listThemes(
|
|
9600
|
+
listThemes(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, options?: AxiosRequestConfig): AxiosPromise<ThemeList>;
|
|
9466
9601
|
/**
|
|
9467
9602
|
* Reload theme setting.
|
|
9468
|
-
* @param {
|
|
9603
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest} requestParameters Request parameters.
|
|
9469
9604
|
* @param {*} [options] Override http request option.
|
|
9470
9605
|
* @throws {RequiredError}
|
|
9471
9606
|
*/
|
|
9472
|
-
reload(
|
|
9607
|
+
reload(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
9473
9608
|
/**
|
|
9474
9609
|
* Reset the configMap of theme setting.
|
|
9475
|
-
* @param {
|
|
9610
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest} requestParameters Request parameters.
|
|
9476
9611
|
* @param {*} [options] Override http request option.
|
|
9477
9612
|
* @throws {RequiredError}
|
|
9478
9613
|
*/
|
|
9479
|
-
resetThemeConfig(
|
|
9614
|
+
resetThemeConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
9480
9615
|
/**
|
|
9481
9616
|
* Update the configMap of theme setting.
|
|
9482
|
-
* @param {
|
|
9483
|
-
* @param {ConfigMap} configMap
|
|
9617
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest} requestParameters Request parameters.
|
|
9484
9618
|
* @param {*} [options] Override http request option.
|
|
9485
9619
|
* @throws {RequiredError}
|
|
9486
9620
|
*/
|
|
9487
|
-
updateThemeConfig(
|
|
9621
|
+
updateThemeConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
9488
9622
|
/**
|
|
9489
9623
|
* Upgrade theme
|
|
9490
|
-
* @param {
|
|
9491
|
-
* @param {any} file
|
|
9624
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
|
|
9492
9625
|
* @param {*} [options] Override http request option.
|
|
9493
9626
|
* @throws {RequiredError}
|
|
9494
9627
|
*/
|
|
9495
|
-
upgradeTheme(
|
|
9628
|
+
upgradeTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
9496
9629
|
};
|
|
9497
9630
|
/**
|
|
9498
9631
|
* Request parameters for activateTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9541,10 +9674,10 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest {
|
|
|
9541
9674
|
interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
|
|
9542
9675
|
/**
|
|
9543
9676
|
*
|
|
9544
|
-
* @type {
|
|
9677
|
+
* @type {File}
|
|
9545
9678
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiInstallTheme
|
|
9546
9679
|
*/
|
|
9547
|
-
readonly file:
|
|
9680
|
+
readonly file: File;
|
|
9548
9681
|
}
|
|
9549
9682
|
/**
|
|
9550
9683
|
* Request parameters for listThemes operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9564,6 +9697,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9564
9697
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9565
9698
|
*/
|
|
9566
9699
|
readonly size?: number;
|
|
9700
|
+
/**
|
|
9701
|
+
* The page number. Zero indicates no page.
|
|
9702
|
+
* @type {number}
|
|
9703
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9704
|
+
*/
|
|
9705
|
+
readonly page?: number;
|
|
9567
9706
|
/**
|
|
9568
9707
|
* Label selector for filtering.
|
|
9569
9708
|
* @type {Array<string>}
|
|
@@ -9576,12 +9715,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9576
9715
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9577
9716
|
*/
|
|
9578
9717
|
readonly fieldSelector?: Array<string>;
|
|
9579
|
-
/**
|
|
9580
|
-
* The page number. Zero indicates no page.
|
|
9581
|
-
* @type {number}
|
|
9582
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9583
|
-
*/
|
|
9584
|
-
readonly page?: number;
|
|
9585
9718
|
}
|
|
9586
9719
|
/**
|
|
9587
9720
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9642,10 +9775,10 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest {
|
|
|
9642
9775
|
readonly name: string;
|
|
9643
9776
|
/**
|
|
9644
9777
|
*
|
|
9645
|
-
* @type {
|
|
9778
|
+
* @type {File}
|
|
9646
9779
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
|
|
9647
9780
|
*/
|
|
9648
|
-
readonly file:
|
|
9781
|
+
readonly file: File;
|
|
9649
9782
|
}
|
|
9650
9783
|
/**
|
|
9651
9784
|
* ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
@@ -9761,6 +9894,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
9761
9894
|
* @throws {RequiredError}
|
|
9762
9895
|
*/
|
|
9763
9896
|
getPermissions: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9897
|
+
/**
|
|
9898
|
+
* Get user detail by name
|
|
9899
|
+
* @param {string} name User name
|
|
9900
|
+
* @param {*} [options] Override http request option.
|
|
9901
|
+
* @throws {RequiredError}
|
|
9902
|
+
*/
|
|
9903
|
+
getUserDetail: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9764
9904
|
/**
|
|
9765
9905
|
* Grant permissions to user
|
|
9766
9906
|
* @param {string} name User name
|
|
@@ -9769,6 +9909,19 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
9769
9909
|
* @throws {RequiredError}
|
|
9770
9910
|
*/
|
|
9771
9911
|
grantPermission: (name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9912
|
+
/**
|
|
9913
|
+
* List users
|
|
9914
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
9915
|
+
* @param {string} [keyword]
|
|
9916
|
+
* @param {string} [role]
|
|
9917
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9918
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9919
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9920
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9921
|
+
* @param {*} [options] Override http request option.
|
|
9922
|
+
* @throws {RequiredError}
|
|
9923
|
+
*/
|
|
9924
|
+
listUsers: (sort?: Array<string>, keyword?: string, role?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9772
9925
|
/**
|
|
9773
9926
|
* Update current user profile, but password.
|
|
9774
9927
|
* @param {User} user
|
|
@@ -9795,7 +9948,7 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
9795
9948
|
* @param {*} [options] Override http request option.
|
|
9796
9949
|
* @throws {RequiredError}
|
|
9797
9950
|
*/
|
|
9798
|
-
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9951
|
+
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedUser>>;
|
|
9799
9952
|
/**
|
|
9800
9953
|
* Get permissions of user
|
|
9801
9954
|
* @param {string} name User name
|
|
@@ -9803,6 +9956,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
9803
9956
|
* @throws {RequiredError}
|
|
9804
9957
|
*/
|
|
9805
9958
|
getPermissions(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserPermission>>;
|
|
9959
|
+
/**
|
|
9960
|
+
* Get user detail by name
|
|
9961
|
+
* @param {string} name User name
|
|
9962
|
+
* @param {*} [options] Override http request option.
|
|
9963
|
+
* @throws {RequiredError}
|
|
9964
|
+
*/
|
|
9965
|
+
getUserDetail(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedUser>>;
|
|
9806
9966
|
/**
|
|
9807
9967
|
* Grant permissions to user
|
|
9808
9968
|
* @param {string} name User name
|
|
@@ -9811,6 +9971,19 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
9811
9971
|
* @throws {RequiredError}
|
|
9812
9972
|
*/
|
|
9813
9973
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
9974
|
+
/**
|
|
9975
|
+
* List users
|
|
9976
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
9977
|
+
* @param {string} [keyword]
|
|
9978
|
+
* @param {string} [role]
|
|
9979
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9980
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9981
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9982
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9983
|
+
* @param {*} [options] Override http request option.
|
|
9984
|
+
* @throws {RequiredError}
|
|
9985
|
+
*/
|
|
9986
|
+
listUsers(sort?: Array<string>, keyword?: string, role?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedUserList>>;
|
|
9814
9987
|
/**
|
|
9815
9988
|
* Update current user profile, but password.
|
|
9816
9989
|
* @param {User} user
|
|
@@ -9826,40 +9999,52 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
9826
9999
|
declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9827
10000
|
/**
|
|
9828
10001
|
* Change password of user.
|
|
9829
|
-
* @param {
|
|
9830
|
-
* @param {ChangePasswordRequest} changePasswordRequest
|
|
10002
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest} requestParameters Request parameters.
|
|
9831
10003
|
* @param {*} [options] Override http request option.
|
|
9832
10004
|
* @throws {RequiredError}
|
|
9833
10005
|
*/
|
|
9834
|
-
changePassword(
|
|
10006
|
+
changePassword(requestParameters: ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
9835
10007
|
/**
|
|
9836
10008
|
* Get current user detail
|
|
9837
10009
|
* @param {*} [options] Override http request option.
|
|
9838
10010
|
* @throws {RequiredError}
|
|
9839
10011
|
*/
|
|
9840
|
-
getCurrentUserDetail(options?:
|
|
10012
|
+
getCurrentUserDetail(options?: AxiosRequestConfig): AxiosPromise<DetailedUser>;
|
|
9841
10013
|
/**
|
|
9842
10014
|
* Get permissions of user
|
|
9843
|
-
* @param {
|
|
10015
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest} requestParameters Request parameters.
|
|
10016
|
+
* @param {*} [options] Override http request option.
|
|
10017
|
+
* @throws {RequiredError}
|
|
10018
|
+
*/
|
|
10019
|
+
getPermissions(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<UserPermission>;
|
|
10020
|
+
/**
|
|
10021
|
+
* Get user detail by name
|
|
10022
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest} requestParameters Request parameters.
|
|
9844
10023
|
* @param {*} [options] Override http request option.
|
|
9845
10024
|
* @throws {RequiredError}
|
|
9846
10025
|
*/
|
|
9847
|
-
|
|
10026
|
+
getUserDetail(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, options?: AxiosRequestConfig): AxiosPromise<DetailedUser>;
|
|
9848
10027
|
/**
|
|
9849
10028
|
* Grant permissions to user
|
|
9850
|
-
* @param {
|
|
9851
|
-
* @param {GrantRequest} grantRequest
|
|
10029
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest} requestParameters Request parameters.
|
|
9852
10030
|
* @param {*} [options] Override http request option.
|
|
9853
10031
|
* @throws {RequiredError}
|
|
9854
10032
|
*/
|
|
9855
|
-
grantPermission(
|
|
10033
|
+
grantPermission(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
10034
|
+
/**
|
|
10035
|
+
* List users
|
|
10036
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiListUsersRequest} requestParameters Request parameters.
|
|
10037
|
+
* @param {*} [options] Override http request option.
|
|
10038
|
+
* @throws {RequiredError}
|
|
10039
|
+
*/
|
|
10040
|
+
listUsers(requestParameters?: ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, options?: AxiosRequestConfig): AxiosPromise<ListedUserList>;
|
|
9856
10041
|
/**
|
|
9857
10042
|
* Update current user profile, but password.
|
|
9858
|
-
* @param {
|
|
10043
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest} requestParameters Request parameters.
|
|
9859
10044
|
* @param {*} [options] Override http request option.
|
|
9860
10045
|
* @throws {RequiredError}
|
|
9861
10046
|
*/
|
|
9862
|
-
updateCurrentUser(
|
|
10047
|
+
updateCurrentUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
9863
10048
|
};
|
|
9864
10049
|
/**
|
|
9865
10050
|
* Request parameters for changePassword operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
@@ -9893,6 +10078,19 @@ interface ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest {
|
|
|
9893
10078
|
*/
|
|
9894
10079
|
readonly name: string;
|
|
9895
10080
|
}
|
|
10081
|
+
/**
|
|
10082
|
+
* Request parameters for getUserDetail operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
10083
|
+
* @export
|
|
10084
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest
|
|
10085
|
+
*/
|
|
10086
|
+
interface ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest {
|
|
10087
|
+
/**
|
|
10088
|
+
* User name
|
|
10089
|
+
* @type {string}
|
|
10090
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiGetUserDetail
|
|
10091
|
+
*/
|
|
10092
|
+
readonly name: string;
|
|
10093
|
+
}
|
|
9896
10094
|
/**
|
|
9897
10095
|
* Request parameters for grantPermission operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
9898
10096
|
* @export
|
|
@@ -9912,6 +10110,55 @@ interface ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest {
|
|
|
9912
10110
|
*/
|
|
9913
10111
|
readonly grantRequest: GrantRequest;
|
|
9914
10112
|
}
|
|
10113
|
+
/**
|
|
10114
|
+
* Request parameters for listUsers operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
10115
|
+
* @export
|
|
10116
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiListUsersRequest
|
|
10117
|
+
*/
|
|
10118
|
+
interface ApiConsoleHaloRunV1alpha1UserApiListUsersRequest {
|
|
10119
|
+
/**
|
|
10120
|
+
* Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
10121
|
+
* @type {Array<string>}
|
|
10122
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10123
|
+
*/
|
|
10124
|
+
readonly sort?: Array<string>;
|
|
10125
|
+
/**
|
|
10126
|
+
*
|
|
10127
|
+
* @type {string}
|
|
10128
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10129
|
+
*/
|
|
10130
|
+
readonly keyword?: string;
|
|
10131
|
+
/**
|
|
10132
|
+
*
|
|
10133
|
+
* @type {string}
|
|
10134
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10135
|
+
*/
|
|
10136
|
+
readonly role?: string;
|
|
10137
|
+
/**
|
|
10138
|
+
* Size of one page. Zero indicates no limit.
|
|
10139
|
+
* @type {number}
|
|
10140
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10141
|
+
*/
|
|
10142
|
+
readonly size?: number;
|
|
10143
|
+
/**
|
|
10144
|
+
* Label selector for filtering.
|
|
10145
|
+
* @type {Array<string>}
|
|
10146
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10147
|
+
*/
|
|
10148
|
+
readonly labelSelector?: Array<string>;
|
|
10149
|
+
/**
|
|
10150
|
+
* Field selector for filtering.
|
|
10151
|
+
* @type {Array<string>}
|
|
10152
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10153
|
+
*/
|
|
10154
|
+
readonly fieldSelector?: Array<string>;
|
|
10155
|
+
/**
|
|
10156
|
+
* The page number. Zero indicates no page.
|
|
10157
|
+
* @type {number}
|
|
10158
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
10159
|
+
*/
|
|
10160
|
+
readonly page?: number;
|
|
10161
|
+
}
|
|
9915
10162
|
/**
|
|
9916
10163
|
* Request parameters for updateCurrentUser operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
9917
10164
|
* @export
|
|
@@ -9946,7 +10193,7 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
9946
10193
|
* @throws {RequiredError}
|
|
9947
10194
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
9948
10195
|
*/
|
|
9949
|
-
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
10196
|
+
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<DetailedUser, any>>;
|
|
9950
10197
|
/**
|
|
9951
10198
|
* Get permissions of user
|
|
9952
10199
|
* @param {ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest} requestParameters Request parameters.
|
|
@@ -9955,6 +10202,14 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
9955
10202
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
9956
10203
|
*/
|
|
9957
10204
|
getPermissions(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserPermission, any>>;
|
|
10205
|
+
/**
|
|
10206
|
+
* Get user detail by name
|
|
10207
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest} requestParameters Request parameters.
|
|
10208
|
+
* @param {*} [options] Override http request option.
|
|
10209
|
+
* @throws {RequiredError}
|
|
10210
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
10211
|
+
*/
|
|
10212
|
+
getUserDetail(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<DetailedUser, any>>;
|
|
9958
10213
|
/**
|
|
9959
10214
|
* Grant permissions to user
|
|
9960
10215
|
* @param {ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest} requestParameters Request parameters.
|
|
@@ -9963,6 +10218,14 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
9963
10218
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
9964
10219
|
*/
|
|
9965
10220
|
grantPermission(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
10221
|
+
/**
|
|
10222
|
+
* List users
|
|
10223
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiListUsersRequest} requestParameters Request parameters.
|
|
10224
|
+
* @param {*} [options] Override http request option.
|
|
10225
|
+
* @throws {RequiredError}
|
|
10226
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
10227
|
+
*/
|
|
10228
|
+
listUsers(requestParameters?: ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedUserList, any>>;
|
|
9966
10229
|
/**
|
|
9967
10230
|
* Update current user profile, but password.
|
|
9968
10231
|
* @param {ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest} requestParameters Request parameters.
|
|
@@ -10078,47 +10341,39 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
|
|
|
10078
10341
|
declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10079
10342
|
/**
|
|
10080
10343
|
* Create a comment.
|
|
10081
|
-
* @param {
|
|
10344
|
+
* @param {ApiHaloRunV1alpha1CommentApiCreateComment1Request} requestParameters Request parameters.
|
|
10082
10345
|
* @param {*} [options] Override http request option.
|
|
10083
10346
|
* @throws {RequiredError}
|
|
10084
10347
|
*/
|
|
10085
|
-
createComment1(
|
|
10348
|
+
createComment1(requestParameters: ApiHaloRunV1alpha1CommentApiCreateComment1Request, options?: AxiosRequestConfig): AxiosPromise<Comment>;
|
|
10086
10349
|
/**
|
|
10087
10350
|
* Create a reply.
|
|
10088
|
-
* @param {
|
|
10089
|
-
* @param {ReplyRequest} replyRequest
|
|
10351
|
+
* @param {ApiHaloRunV1alpha1CommentApiCreateReply1Request} requestParameters Request parameters.
|
|
10090
10352
|
* @param {*} [options] Override http request option.
|
|
10091
10353
|
* @throws {RequiredError}
|
|
10092
10354
|
*/
|
|
10093
|
-
createReply1(
|
|
10355
|
+
createReply1(requestParameters: ApiHaloRunV1alpha1CommentApiCreateReply1Request, options?: AxiosRequestConfig): AxiosPromise<Reply>;
|
|
10094
10356
|
/**
|
|
10095
10357
|
* Get a comment.
|
|
10096
|
-
* @param {
|
|
10358
|
+
* @param {ApiHaloRunV1alpha1CommentApiGetCommentRequest} requestParameters Request parameters.
|
|
10097
10359
|
* @param {*} [options] Override http request option.
|
|
10098
10360
|
* @throws {RequiredError}
|
|
10099
10361
|
*/
|
|
10100
|
-
getComment(
|
|
10362
|
+
getComment(requestParameters: ApiHaloRunV1alpha1CommentApiGetCommentRequest, options?: AxiosRequestConfig): AxiosPromise<CommentVoList>;
|
|
10101
10363
|
/**
|
|
10102
10364
|
* List comment replies.
|
|
10103
|
-
* @param {
|
|
10104
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10105
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
10365
|
+
* @param {ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest} requestParameters Request parameters.
|
|
10106
10366
|
* @param {*} [options] Override http request option.
|
|
10107
10367
|
* @throws {RequiredError}
|
|
10108
10368
|
*/
|
|
10109
|
-
listCommentReplies(
|
|
10369
|
+
listCommentReplies(requestParameters: ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, options?: AxiosRequestConfig): AxiosPromise<ReplyVoList>;
|
|
10110
10370
|
/**
|
|
10111
10371
|
* List comments.
|
|
10112
|
-
* @param {
|
|
10113
|
-
* @param {string} version The comment subject version.
|
|
10114
|
-
* @param {string} kind The comment subject kind.
|
|
10115
|
-
* @param {string} [group] The comment subject group.
|
|
10116
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10117
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
10372
|
+
* @param {ApiHaloRunV1alpha1CommentApiListComments1Request} requestParameters Request parameters.
|
|
10118
10373
|
* @param {*} [options] Override http request option.
|
|
10119
10374
|
* @throws {RequiredError}
|
|
10120
10375
|
*/
|
|
10121
|
-
listComments1(
|
|
10376
|
+
listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): AxiosPromise<CommentVoList>;
|
|
10122
10377
|
};
|
|
10123
10378
|
/**
|
|
10124
10379
|
* Request parameters for createComment1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
@@ -10290,13 +10545,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
10290
10545
|
/**
|
|
10291
10546
|
* Search posts with fuzzy query
|
|
10292
10547
|
* @param {string} keyword
|
|
10548
|
+
* @param {number} [limit]
|
|
10293
10549
|
* @param {string} [highlightPreTag]
|
|
10294
10550
|
* @param {string} [highlightPostTag]
|
|
10295
|
-
* @param {number} [limit]
|
|
10296
10551
|
* @param {*} [options] Override http request option.
|
|
10297
10552
|
* @throws {RequiredError}
|
|
10298
10553
|
*/
|
|
10299
|
-
searchPost: (keyword: string,
|
|
10554
|
+
searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10300
10555
|
};
|
|
10301
10556
|
/**
|
|
10302
10557
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -10306,13 +10561,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
10306
10561
|
/**
|
|
10307
10562
|
* Search posts with fuzzy query
|
|
10308
10563
|
* @param {string} keyword
|
|
10564
|
+
* @param {number} [limit]
|
|
10309
10565
|
* @param {string} [highlightPreTag]
|
|
10310
10566
|
* @param {string} [highlightPostTag]
|
|
10311
|
-
* @param {number} [limit]
|
|
10312
10567
|
* @param {*} [options] Override http request option.
|
|
10313
10568
|
* @throws {RequiredError}
|
|
10314
10569
|
*/
|
|
10315
|
-
searchPost(keyword: string,
|
|
10570
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
10316
10571
|
};
|
|
10317
10572
|
/**
|
|
10318
10573
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -10321,14 +10576,11 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
10321
10576
|
declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10322
10577
|
/**
|
|
10323
10578
|
* Search posts with fuzzy query
|
|
10324
|
-
* @param {
|
|
10325
|
-
* @param {string} [highlightPreTag]
|
|
10326
|
-
* @param {string} [highlightPostTag]
|
|
10327
|
-
* @param {number} [limit]
|
|
10579
|
+
* @param {ApiHaloRunV1alpha1PostApiSearchPostRequest} requestParameters Request parameters.
|
|
10328
10580
|
* @param {*} [options] Override http request option.
|
|
10329
10581
|
* @throws {RequiredError}
|
|
10330
10582
|
*/
|
|
10331
|
-
searchPost(
|
|
10583
|
+
searchPost(requestParameters: ApiHaloRunV1alpha1PostApiSearchPostRequest, options?: AxiosRequestConfig): AxiosPromise<PostHits>;
|
|
10332
10584
|
};
|
|
10333
10585
|
/**
|
|
10334
10586
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -10344,22 +10596,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
10344
10596
|
readonly keyword: string;
|
|
10345
10597
|
/**
|
|
10346
10598
|
*
|
|
10347
|
-
* @type {
|
|
10599
|
+
* @type {number}
|
|
10348
10600
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10349
10601
|
*/
|
|
10350
|
-
readonly
|
|
10602
|
+
readonly limit?: number;
|
|
10351
10603
|
/**
|
|
10352
10604
|
*
|
|
10353
10605
|
* @type {string}
|
|
10354
10606
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10355
10607
|
*/
|
|
10356
|
-
readonly
|
|
10608
|
+
readonly highlightPreTag?: string;
|
|
10357
10609
|
/**
|
|
10358
10610
|
*
|
|
10359
|
-
* @type {
|
|
10611
|
+
* @type {string}
|
|
10360
10612
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10361
10613
|
*/
|
|
10362
|
-
readonly
|
|
10614
|
+
readonly highlightPostTag?: string;
|
|
10363
10615
|
}
|
|
10364
10616
|
/**
|
|
10365
10617
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -10439,25 +10691,25 @@ declare const ApiHaloRunV1alpha1TrackerApiFp: (configuration?: Configuration) =>
|
|
|
10439
10691
|
declare const ApiHaloRunV1alpha1TrackerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10440
10692
|
/**
|
|
10441
10693
|
* Count an extension resource visits.
|
|
10442
|
-
* @param {
|
|
10694
|
+
* @param {ApiHaloRunV1alpha1TrackerApiCountRequest} requestParameters Request parameters.
|
|
10443
10695
|
* @param {*} [options] Override http request option.
|
|
10444
10696
|
* @throws {RequiredError}
|
|
10445
10697
|
*/
|
|
10446
|
-
count(
|
|
10698
|
+
count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10447
10699
|
/**
|
|
10448
10700
|
* Downvote an extension resource.
|
|
10449
|
-
* @param {
|
|
10701
|
+
* @param {ApiHaloRunV1alpha1TrackerApiDownvoteRequest} requestParameters Request parameters.
|
|
10450
10702
|
* @param {*} [options] Override http request option.
|
|
10451
10703
|
* @throws {RequiredError}
|
|
10452
10704
|
*/
|
|
10453
|
-
downvote(
|
|
10705
|
+
downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10454
10706
|
/**
|
|
10455
10707
|
* Upvote an extension resource.
|
|
10456
|
-
* @param {
|
|
10708
|
+
* @param {ApiHaloRunV1alpha1TrackerApiUpvoteRequest} requestParameters Request parameters.
|
|
10457
10709
|
* @param {*} [options] Override http request option.
|
|
10458
10710
|
* @throws {RequiredError}
|
|
10459
10711
|
*/
|
|
10460
|
-
upvote(
|
|
10712
|
+
upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10461
10713
|
};
|
|
10462
10714
|
/**
|
|
10463
10715
|
* Request parameters for count operation in ApiHaloRunV1alpha1TrackerApi.
|
|
@@ -10628,43 +10880,39 @@ declare const ContentHaloRunV1alpha1CategoryApiFp: (configuration?: Configuratio
|
|
|
10628
10880
|
declare const ContentHaloRunV1alpha1CategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10629
10881
|
/**
|
|
10630
10882
|
* Create content.halo.run/v1alpha1/Category
|
|
10631
|
-
* @param {
|
|
10883
|
+
* @param {ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
|
|
10632
10884
|
* @param {*} [options] Override http request option.
|
|
10633
10885
|
* @throws {RequiredError}
|
|
10634
10886
|
*/
|
|
10635
|
-
createcontentHaloRunV1alpha1Category(
|
|
10887
|
+
createcontentHaloRunV1alpha1Category(requestParameters?: ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): AxiosPromise<Category>;
|
|
10636
10888
|
/**
|
|
10637
10889
|
* Delete content.halo.run/v1alpha1/Category
|
|
10638
|
-
* @param {
|
|
10890
|
+
* @param {ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
|
|
10639
10891
|
* @param {*} [options] Override http request option.
|
|
10640
10892
|
* @throws {RequiredError}
|
|
10641
10893
|
*/
|
|
10642
|
-
deletecontentHaloRunV1alpha1Category(
|
|
10894
|
+
deletecontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10643
10895
|
/**
|
|
10644
10896
|
* Get content.halo.run/v1alpha1/Category
|
|
10645
|
-
* @param {
|
|
10897
|
+
* @param {ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
|
|
10646
10898
|
* @param {*} [options] Override http request option.
|
|
10647
10899
|
* @throws {RequiredError}
|
|
10648
10900
|
*/
|
|
10649
|
-
getcontentHaloRunV1alpha1Category(
|
|
10901
|
+
getcontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): AxiosPromise<Category>;
|
|
10650
10902
|
/**
|
|
10651
10903
|
* List content.halo.run/v1alpha1/Category
|
|
10652
|
-
* @param {
|
|
10653
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10654
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10655
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10904
|
+
* @param {ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
|
|
10656
10905
|
* @param {*} [options] Override http request option.
|
|
10657
10906
|
* @throws {RequiredError}
|
|
10658
10907
|
*/
|
|
10659
|
-
listcontentHaloRunV1alpha1Category(
|
|
10908
|
+
listcontentHaloRunV1alpha1Category(requestParameters?: ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): AxiosPromise<CategoryList>;
|
|
10660
10909
|
/**
|
|
10661
10910
|
* Update content.halo.run/v1alpha1/Category
|
|
10662
|
-
* @param {
|
|
10663
|
-
* @param {Category} [category] Updated category
|
|
10911
|
+
* @param {ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest} requestParameters Request parameters.
|
|
10664
10912
|
* @param {*} [options] Override http request option.
|
|
10665
10913
|
* @throws {RequiredError}
|
|
10666
10914
|
*/
|
|
10667
|
-
updatecontentHaloRunV1alpha1Category(
|
|
10915
|
+
updatecontentHaloRunV1alpha1Category(requestParameters: ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, options?: AxiosRequestConfig): AxiosPromise<Category>;
|
|
10668
10916
|
};
|
|
10669
10917
|
/**
|
|
10670
10918
|
* Request parameters for createcontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
|
|
@@ -10901,43 +11149,39 @@ declare const ContentHaloRunV1alpha1CommentApiFp: (configuration?: Configuration
|
|
|
10901
11149
|
declare const ContentHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10902
11150
|
/**
|
|
10903
11151
|
* Create content.halo.run/v1alpha1/Comment
|
|
10904
|
-
* @param {
|
|
11152
|
+
* @param {ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
|
|
10905
11153
|
* @param {*} [options] Override http request option.
|
|
10906
11154
|
* @throws {RequiredError}
|
|
10907
11155
|
*/
|
|
10908
|
-
createcontentHaloRunV1alpha1Comment(
|
|
11156
|
+
createcontentHaloRunV1alpha1Comment(requestParameters?: ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): AxiosPromise<Comment>;
|
|
10909
11157
|
/**
|
|
10910
11158
|
* Delete content.halo.run/v1alpha1/Comment
|
|
10911
|
-
* @param {
|
|
11159
|
+
* @param {ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
|
|
10912
11160
|
* @param {*} [options] Override http request option.
|
|
10913
11161
|
* @throws {RequiredError}
|
|
10914
11162
|
*/
|
|
10915
|
-
deletecontentHaloRunV1alpha1Comment(
|
|
11163
|
+
deletecontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10916
11164
|
/**
|
|
10917
11165
|
* Get content.halo.run/v1alpha1/Comment
|
|
10918
|
-
* @param {
|
|
11166
|
+
* @param {ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
|
|
10919
11167
|
* @param {*} [options] Override http request option.
|
|
10920
11168
|
* @throws {RequiredError}
|
|
10921
11169
|
*/
|
|
10922
|
-
getcontentHaloRunV1alpha1Comment(
|
|
11170
|
+
getcontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): AxiosPromise<Comment>;
|
|
10923
11171
|
/**
|
|
10924
11172
|
* List content.halo.run/v1alpha1/Comment
|
|
10925
|
-
* @param {
|
|
10926
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10927
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10928
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11173
|
+
* @param {ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
|
|
10929
11174
|
* @param {*} [options] Override http request option.
|
|
10930
11175
|
* @throws {RequiredError}
|
|
10931
11176
|
*/
|
|
10932
|
-
listcontentHaloRunV1alpha1Comment(
|
|
11177
|
+
listcontentHaloRunV1alpha1Comment(requestParameters?: ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): AxiosPromise<CommentList>;
|
|
10933
11178
|
/**
|
|
10934
11179
|
* Update content.halo.run/v1alpha1/Comment
|
|
10935
|
-
* @param {
|
|
10936
|
-
* @param {Comment} [comment] Updated comment
|
|
11180
|
+
* @param {ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest} requestParameters Request parameters.
|
|
10937
11181
|
* @param {*} [options] Override http request option.
|
|
10938
11182
|
* @throws {RequiredError}
|
|
10939
11183
|
*/
|
|
10940
|
-
updatecontentHaloRunV1alpha1Comment(
|
|
11184
|
+
updatecontentHaloRunV1alpha1Comment(requestParameters: ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, options?: AxiosRequestConfig): AxiosPromise<Comment>;
|
|
10941
11185
|
};
|
|
10942
11186
|
/**
|
|
10943
11187
|
* Request parameters for createcontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
|
|
@@ -11174,43 +11418,39 @@ declare const ContentHaloRunV1alpha1PostApiFp: (configuration?: Configuration) =
|
|
|
11174
11418
|
declare const ContentHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11175
11419
|
/**
|
|
11176
11420
|
* Create content.halo.run/v1alpha1/Post
|
|
11177
|
-
* @param {
|
|
11421
|
+
* @param {ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
|
|
11178
11422
|
* @param {*} [options] Override http request option.
|
|
11179
11423
|
* @throws {RequiredError}
|
|
11180
11424
|
*/
|
|
11181
|
-
createcontentHaloRunV1alpha1Post(
|
|
11425
|
+
createcontentHaloRunV1alpha1Post(requestParameters?: ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
11182
11426
|
/**
|
|
11183
11427
|
* Delete content.halo.run/v1alpha1/Post
|
|
11184
|
-
* @param {
|
|
11428
|
+
* @param {ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
|
|
11185
11429
|
* @param {*} [options] Override http request option.
|
|
11186
11430
|
* @throws {RequiredError}
|
|
11187
11431
|
*/
|
|
11188
|
-
deletecontentHaloRunV1alpha1Post(
|
|
11432
|
+
deletecontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11189
11433
|
/**
|
|
11190
11434
|
* Get content.halo.run/v1alpha1/Post
|
|
11191
|
-
* @param {
|
|
11435
|
+
* @param {ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
|
|
11192
11436
|
* @param {*} [options] Override http request option.
|
|
11193
11437
|
* @throws {RequiredError}
|
|
11194
11438
|
*/
|
|
11195
|
-
getcontentHaloRunV1alpha1Post(
|
|
11439
|
+
getcontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
11196
11440
|
/**
|
|
11197
11441
|
* List content.halo.run/v1alpha1/Post
|
|
11198
|
-
* @param {
|
|
11199
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11200
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11201
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11442
|
+
* @param {ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
|
|
11202
11443
|
* @param {*} [options] Override http request option.
|
|
11203
11444
|
* @throws {RequiredError}
|
|
11204
11445
|
*/
|
|
11205
|
-
listcontentHaloRunV1alpha1Post(
|
|
11446
|
+
listcontentHaloRunV1alpha1Post(requestParameters?: ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): AxiosPromise<PostList>;
|
|
11206
11447
|
/**
|
|
11207
11448
|
* Update content.halo.run/v1alpha1/Post
|
|
11208
|
-
* @param {
|
|
11209
|
-
* @param {Post} [post] Updated post
|
|
11449
|
+
* @param {ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest} requestParameters Request parameters.
|
|
11210
11450
|
* @param {*} [options] Override http request option.
|
|
11211
11451
|
* @throws {RequiredError}
|
|
11212
11452
|
*/
|
|
11213
|
-
updatecontentHaloRunV1alpha1Post(
|
|
11453
|
+
updatecontentHaloRunV1alpha1Post(requestParameters: ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, options?: AxiosRequestConfig): AxiosPromise<Post>;
|
|
11214
11454
|
};
|
|
11215
11455
|
/**
|
|
11216
11456
|
* Request parameters for createcontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
|
|
@@ -11447,43 +11687,39 @@ declare const ContentHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration)
|
|
|
11447
11687
|
declare const ContentHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11448
11688
|
/**
|
|
11449
11689
|
* Create content.halo.run/v1alpha1/Reply
|
|
11450
|
-
* @param {
|
|
11690
|
+
* @param {ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
|
|
11451
11691
|
* @param {*} [options] Override http request option.
|
|
11452
11692
|
* @throws {RequiredError}
|
|
11453
11693
|
*/
|
|
11454
|
-
createcontentHaloRunV1alpha1Reply(
|
|
11694
|
+
createcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): AxiosPromise<Reply>;
|
|
11455
11695
|
/**
|
|
11456
11696
|
* Delete content.halo.run/v1alpha1/Reply
|
|
11457
|
-
* @param {
|
|
11697
|
+
* @param {ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
|
|
11458
11698
|
* @param {*} [options] Override http request option.
|
|
11459
11699
|
* @throws {RequiredError}
|
|
11460
11700
|
*/
|
|
11461
|
-
deletecontentHaloRunV1alpha1Reply(
|
|
11701
|
+
deletecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11462
11702
|
/**
|
|
11463
11703
|
* Get content.halo.run/v1alpha1/Reply
|
|
11464
|
-
* @param {
|
|
11704
|
+
* @param {ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
|
|
11465
11705
|
* @param {*} [options] Override http request option.
|
|
11466
11706
|
* @throws {RequiredError}
|
|
11467
11707
|
*/
|
|
11468
|
-
getcontentHaloRunV1alpha1Reply(
|
|
11708
|
+
getcontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): AxiosPromise<Reply>;
|
|
11469
11709
|
/**
|
|
11470
11710
|
* List content.halo.run/v1alpha1/Reply
|
|
11471
|
-
* @param {
|
|
11472
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11473
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11474
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11711
|
+
* @param {ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
|
|
11475
11712
|
* @param {*} [options] Override http request option.
|
|
11476
11713
|
* @throws {RequiredError}
|
|
11477
11714
|
*/
|
|
11478
|
-
listcontentHaloRunV1alpha1Reply(
|
|
11715
|
+
listcontentHaloRunV1alpha1Reply(requestParameters?: ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): AxiosPromise<ReplyList>;
|
|
11479
11716
|
/**
|
|
11480
11717
|
* Update content.halo.run/v1alpha1/Reply
|
|
11481
|
-
* @param {
|
|
11482
|
-
* @param {Reply} [reply] Updated reply
|
|
11718
|
+
* @param {ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest} requestParameters Request parameters.
|
|
11483
11719
|
* @param {*} [options] Override http request option.
|
|
11484
11720
|
* @throws {RequiredError}
|
|
11485
11721
|
*/
|
|
11486
|
-
updatecontentHaloRunV1alpha1Reply(
|
|
11722
|
+
updatecontentHaloRunV1alpha1Reply(requestParameters: ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, options?: AxiosRequestConfig): AxiosPromise<Reply>;
|
|
11487
11723
|
};
|
|
11488
11724
|
/**
|
|
11489
11725
|
* Request parameters for createcontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
@@ -11720,43 +11956,39 @@ declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configurat
|
|
|
11720
11956
|
declare const ContentHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11721
11957
|
/**
|
|
11722
11958
|
* Create content.halo.run/v1alpha1/SinglePage
|
|
11723
|
-
* @param {
|
|
11959
|
+
* @param {ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
|
|
11724
11960
|
* @param {*} [options] Override http request option.
|
|
11725
11961
|
* @throws {RequiredError}
|
|
11726
11962
|
*/
|
|
11727
|
-
createcontentHaloRunV1alpha1SinglePage(
|
|
11963
|
+
createcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePage>;
|
|
11728
11964
|
/**
|
|
11729
11965
|
* Delete content.halo.run/v1alpha1/SinglePage
|
|
11730
|
-
* @param {
|
|
11966
|
+
* @param {ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
|
|
11731
11967
|
* @param {*} [options] Override http request option.
|
|
11732
11968
|
* @throws {RequiredError}
|
|
11733
11969
|
*/
|
|
11734
|
-
deletecontentHaloRunV1alpha1SinglePage(
|
|
11970
|
+
deletecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11735
11971
|
/**
|
|
11736
11972
|
* Get content.halo.run/v1alpha1/SinglePage
|
|
11737
|
-
* @param {
|
|
11973
|
+
* @param {ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
|
|
11738
11974
|
* @param {*} [options] Override http request option.
|
|
11739
11975
|
* @throws {RequiredError}
|
|
11740
11976
|
*/
|
|
11741
|
-
getcontentHaloRunV1alpha1SinglePage(
|
|
11977
|
+
getcontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePage>;
|
|
11742
11978
|
/**
|
|
11743
11979
|
* List content.halo.run/v1alpha1/SinglePage
|
|
11744
|
-
* @param {
|
|
11745
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11746
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11747
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11980
|
+
* @param {ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
|
|
11748
11981
|
* @param {*} [options] Override http request option.
|
|
11749
11982
|
* @throws {RequiredError}
|
|
11750
11983
|
*/
|
|
11751
|
-
listcontentHaloRunV1alpha1SinglePage(
|
|
11984
|
+
listcontentHaloRunV1alpha1SinglePage(requestParameters?: ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePageList>;
|
|
11752
11985
|
/**
|
|
11753
11986
|
* Update content.halo.run/v1alpha1/SinglePage
|
|
11754
|
-
* @param {
|
|
11755
|
-
* @param {SinglePage} [singlePage] Updated singlepage
|
|
11987
|
+
* @param {ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest} requestParameters Request parameters.
|
|
11756
11988
|
* @param {*} [options] Override http request option.
|
|
11757
11989
|
* @throws {RequiredError}
|
|
11758
11990
|
*/
|
|
11759
|
-
updatecontentHaloRunV1alpha1SinglePage(
|
|
11991
|
+
updatecontentHaloRunV1alpha1SinglePage(requestParameters: ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, options?: AxiosRequestConfig): AxiosPromise<SinglePage>;
|
|
11760
11992
|
};
|
|
11761
11993
|
/**
|
|
11762
11994
|
* Request parameters for createcontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
@@ -11993,43 +12225,39 @@ declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuratio
|
|
|
11993
12225
|
declare const ContentHaloRunV1alpha1SnapshotApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11994
12226
|
/**
|
|
11995
12227
|
* Create content.halo.run/v1alpha1/Snapshot
|
|
11996
|
-
* @param {
|
|
12228
|
+
* @param {ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
|
|
11997
12229
|
* @param {*} [options] Override http request option.
|
|
11998
12230
|
* @throws {RequiredError}
|
|
11999
12231
|
*/
|
|
12000
|
-
createcontentHaloRunV1alpha1Snapshot(
|
|
12232
|
+
createcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): AxiosPromise<Snapshot>;
|
|
12001
12233
|
/**
|
|
12002
12234
|
* Delete content.halo.run/v1alpha1/Snapshot
|
|
12003
|
-
* @param {
|
|
12235
|
+
* @param {ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
|
|
12004
12236
|
* @param {*} [options] Override http request option.
|
|
12005
12237
|
* @throws {RequiredError}
|
|
12006
12238
|
*/
|
|
12007
|
-
deletecontentHaloRunV1alpha1Snapshot(
|
|
12239
|
+
deletecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12008
12240
|
/**
|
|
12009
12241
|
* Get content.halo.run/v1alpha1/Snapshot
|
|
12010
|
-
* @param {
|
|
12242
|
+
* @param {ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
|
|
12011
12243
|
* @param {*} [options] Override http request option.
|
|
12012
12244
|
* @throws {RequiredError}
|
|
12013
12245
|
*/
|
|
12014
|
-
getcontentHaloRunV1alpha1Snapshot(
|
|
12246
|
+
getcontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): AxiosPromise<Snapshot>;
|
|
12015
12247
|
/**
|
|
12016
12248
|
* List content.halo.run/v1alpha1/Snapshot
|
|
12017
|
-
* @param {
|
|
12018
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12019
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12020
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
12249
|
+
* @param {ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
|
|
12021
12250
|
* @param {*} [options] Override http request option.
|
|
12022
12251
|
* @throws {RequiredError}
|
|
12023
12252
|
*/
|
|
12024
|
-
listcontentHaloRunV1alpha1Snapshot(
|
|
12253
|
+
listcontentHaloRunV1alpha1Snapshot(requestParameters?: ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): AxiosPromise<SnapshotList>;
|
|
12025
12254
|
/**
|
|
12026
12255
|
* Update content.halo.run/v1alpha1/Snapshot
|
|
12027
|
-
* @param {
|
|
12028
|
-
* @param {Snapshot} [snapshot] Updated snapshot
|
|
12256
|
+
* @param {ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest} requestParameters Request parameters.
|
|
12029
12257
|
* @param {*} [options] Override http request option.
|
|
12030
12258
|
* @throws {RequiredError}
|
|
12031
12259
|
*/
|
|
12032
|
-
updatecontentHaloRunV1alpha1Snapshot(
|
|
12260
|
+
updatecontentHaloRunV1alpha1Snapshot(requestParameters: ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, options?: AxiosRequestConfig): AxiosPromise<Snapshot>;
|
|
12033
12261
|
};
|
|
12034
12262
|
/**
|
|
12035
12263
|
* Request parameters for createcontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
@@ -12266,43 +12494,39 @@ declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) =>
|
|
|
12266
12494
|
declare const ContentHaloRunV1alpha1TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12267
12495
|
/**
|
|
12268
12496
|
* Create content.halo.run/v1alpha1/Tag
|
|
12269
|
-
* @param {
|
|
12497
|
+
* @param {ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
|
|
12270
12498
|
* @param {*} [options] Override http request option.
|
|
12271
12499
|
* @throws {RequiredError}
|
|
12272
12500
|
*/
|
|
12273
|
-
createcontentHaloRunV1alpha1Tag(
|
|
12501
|
+
createcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): AxiosPromise<Tag>;
|
|
12274
12502
|
/**
|
|
12275
12503
|
* Delete content.halo.run/v1alpha1/Tag
|
|
12276
|
-
* @param {
|
|
12504
|
+
* @param {ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
|
|
12277
12505
|
* @param {*} [options] Override http request option.
|
|
12278
12506
|
* @throws {RequiredError}
|
|
12279
12507
|
*/
|
|
12280
|
-
deletecontentHaloRunV1alpha1Tag(
|
|
12508
|
+
deletecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12281
12509
|
/**
|
|
12282
12510
|
* Get content.halo.run/v1alpha1/Tag
|
|
12283
|
-
* @param {
|
|
12511
|
+
* @param {ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
|
|
12284
12512
|
* @param {*} [options] Override http request option.
|
|
12285
12513
|
* @throws {RequiredError}
|
|
12286
12514
|
*/
|
|
12287
|
-
getcontentHaloRunV1alpha1Tag(
|
|
12515
|
+
getcontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): AxiosPromise<Tag>;
|
|
12288
12516
|
/**
|
|
12289
12517
|
* List content.halo.run/v1alpha1/Tag
|
|
12290
|
-
* @param {
|
|
12291
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12292
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12293
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
12518
|
+
* @param {ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
|
|
12294
12519
|
* @param {*} [options] Override http request option.
|
|
12295
12520
|
* @throws {RequiredError}
|
|
12296
12521
|
*/
|
|
12297
|
-
listcontentHaloRunV1alpha1Tag(
|
|
12522
|
+
listcontentHaloRunV1alpha1Tag(requestParameters?: ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): AxiosPromise<TagList>;
|
|
12298
12523
|
/**
|
|
12299
12524
|
* Update content.halo.run/v1alpha1/Tag
|
|
12300
|
-
* @param {
|
|
12301
|
-
* @param {Tag} [tag] Updated tag
|
|
12525
|
+
* @param {ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest} requestParameters Request parameters.
|
|
12302
12526
|
* @param {*} [options] Override http request option.
|
|
12303
12527
|
* @throws {RequiredError}
|
|
12304
12528
|
*/
|
|
12305
|
-
updatecontentHaloRunV1alpha1Tag(
|
|
12529
|
+
updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): AxiosPromise<Tag>;
|
|
12306
12530
|
};
|
|
12307
12531
|
/**
|
|
12308
12532
|
* Request parameters for createcontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
@@ -12539,43 +12763,39 @@ declare const MetricsHaloRunV1alpha1CounterApiFp: (configuration?: Configuration
|
|
|
12539
12763
|
declare const MetricsHaloRunV1alpha1CounterApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12540
12764
|
/**
|
|
12541
12765
|
* Create metrics.halo.run/v1alpha1/Counter
|
|
12542
|
-
* @param {
|
|
12766
|
+
* @param {MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
12543
12767
|
* @param {*} [options] Override http request option.
|
|
12544
12768
|
* @throws {RequiredError}
|
|
12545
12769
|
*/
|
|
12546
|
-
createmetricsHaloRunV1alpha1Counter(
|
|
12770
|
+
createmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): AxiosPromise<Counter>;
|
|
12547
12771
|
/**
|
|
12548
12772
|
* Delete metrics.halo.run/v1alpha1/Counter
|
|
12549
|
-
* @param {
|
|
12773
|
+
* @param {MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
12550
12774
|
* @param {*} [options] Override http request option.
|
|
12551
12775
|
* @throws {RequiredError}
|
|
12552
12776
|
*/
|
|
12553
|
-
deletemetricsHaloRunV1alpha1Counter(
|
|
12777
|
+
deletemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12554
12778
|
/**
|
|
12555
12779
|
* Get metrics.halo.run/v1alpha1/Counter
|
|
12556
|
-
* @param {
|
|
12780
|
+
* @param {MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
12557
12781
|
* @param {*} [options] Override http request option.
|
|
12558
12782
|
* @throws {RequiredError}
|
|
12559
12783
|
*/
|
|
12560
|
-
getmetricsHaloRunV1alpha1Counter(
|
|
12784
|
+
getmetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): AxiosPromise<Counter>;
|
|
12561
12785
|
/**
|
|
12562
12786
|
* List metrics.halo.run/v1alpha1/Counter
|
|
12563
|
-
* @param {
|
|
12564
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12565
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12566
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
12787
|
+
* @param {MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
12567
12788
|
* @param {*} [options] Override http request option.
|
|
12568
12789
|
* @throws {RequiredError}
|
|
12569
12790
|
*/
|
|
12570
|
-
listmetricsHaloRunV1alpha1Counter(
|
|
12791
|
+
listmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): AxiosPromise<CounterList>;
|
|
12571
12792
|
/**
|
|
12572
12793
|
* Update metrics.halo.run/v1alpha1/Counter
|
|
12573
|
-
* @param {
|
|
12574
|
-
* @param {Counter} [counter] Updated counter
|
|
12794
|
+
* @param {MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
|
|
12575
12795
|
* @param {*} [options] Override http request option.
|
|
12576
12796
|
* @throws {RequiredError}
|
|
12577
12797
|
*/
|
|
12578
|
-
updatemetricsHaloRunV1alpha1Counter(
|
|
12798
|
+
updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): AxiosPromise<Counter>;
|
|
12579
12799
|
};
|
|
12580
12800
|
/**
|
|
12581
12801
|
* Request parameters for createmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
@@ -12812,43 +13032,39 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
|
|
|
12812
13032
|
declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12813
13033
|
/**
|
|
12814
13034
|
* Create plugin.halo.run/v1alpha1/Plugin
|
|
12815
|
-
* @param {
|
|
13035
|
+
* @param {PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest} requestParameters Request parameters.
|
|
12816
13036
|
* @param {*} [options] Override http request option.
|
|
12817
13037
|
* @throws {RequiredError}
|
|
12818
13038
|
*/
|
|
12819
|
-
createpluginHaloRunV1alpha1Plugin(
|
|
13039
|
+
createpluginHaloRunV1alpha1Plugin(requestParameters?: PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, options?: AxiosRequestConfig): AxiosPromise<Plugin>;
|
|
12820
13040
|
/**
|
|
12821
13041
|
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
12822
|
-
* @param {
|
|
13042
|
+
* @param {PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest} requestParameters Request parameters.
|
|
12823
13043
|
* @param {*} [options] Override http request option.
|
|
12824
13044
|
* @throws {RequiredError}
|
|
12825
13045
|
*/
|
|
12826
|
-
deletepluginHaloRunV1alpha1Plugin(
|
|
13046
|
+
deletepluginHaloRunV1alpha1Plugin(requestParameters: PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12827
13047
|
/**
|
|
12828
13048
|
* Get plugin.halo.run/v1alpha1/Plugin
|
|
12829
|
-
* @param {
|
|
13049
|
+
* @param {PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest} requestParameters Request parameters.
|
|
12830
13050
|
* @param {*} [options] Override http request option.
|
|
12831
13051
|
* @throws {RequiredError}
|
|
12832
13052
|
*/
|
|
12833
|
-
getpluginHaloRunV1alpha1Plugin(
|
|
13053
|
+
getpluginHaloRunV1alpha1Plugin(requestParameters: PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, options?: AxiosRequestConfig): AxiosPromise<Plugin>;
|
|
12834
13054
|
/**
|
|
12835
13055
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
12836
|
-
* @param {
|
|
12837
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12838
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12839
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
13056
|
+
* @param {PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest} requestParameters Request parameters.
|
|
12840
13057
|
* @param {*} [options] Override http request option.
|
|
12841
13058
|
* @throws {RequiredError}
|
|
12842
13059
|
*/
|
|
12843
|
-
listpluginHaloRunV1alpha1Plugin(
|
|
13060
|
+
listpluginHaloRunV1alpha1Plugin(requestParameters?: PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, options?: AxiosRequestConfig): AxiosPromise<PluginList>;
|
|
12844
13061
|
/**
|
|
12845
13062
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
12846
|
-
* @param {
|
|
12847
|
-
* @param {Plugin} [plugin] Updated plugin
|
|
13063
|
+
* @param {PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest} requestParameters Request parameters.
|
|
12848
13064
|
* @param {*} [options] Override http request option.
|
|
12849
13065
|
* @throws {RequiredError}
|
|
12850
13066
|
*/
|
|
12851
|
-
updatepluginHaloRunV1alpha1Plugin(
|
|
13067
|
+
updatepluginHaloRunV1alpha1Plugin(requestParameters: PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, options?: AxiosRequestConfig): AxiosPromise<Plugin>;
|
|
12852
13068
|
};
|
|
12853
13069
|
/**
|
|
12854
13070
|
* Request parameters for createpluginHaloRunV1alpha1Plugin operation in PluginHaloRunV1alpha1PluginApi.
|
|
@@ -13085,43 +13301,39 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
|
|
|
13085
13301
|
declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13086
13302
|
/**
|
|
13087
13303
|
* Create plugin.halo.run/v1alpha1/ReverseProxy
|
|
13088
|
-
* @param {
|
|
13304
|
+
* @param {PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest} requestParameters Request parameters.
|
|
13089
13305
|
* @param {*} [options] Override http request option.
|
|
13090
13306
|
* @throws {RequiredError}
|
|
13091
13307
|
*/
|
|
13092
|
-
createpluginHaloRunV1alpha1ReverseProxy(
|
|
13308
|
+
createpluginHaloRunV1alpha1ReverseProxy(requestParameters?: PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): AxiosPromise<ReverseProxy>;
|
|
13093
13309
|
/**
|
|
13094
13310
|
* Delete plugin.halo.run/v1alpha1/ReverseProxy
|
|
13095
|
-
* @param {
|
|
13311
|
+
* @param {PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest} requestParameters Request parameters.
|
|
13096
13312
|
* @param {*} [options] Override http request option.
|
|
13097
13313
|
* @throws {RequiredError}
|
|
13098
13314
|
*/
|
|
13099
|
-
deletepluginHaloRunV1alpha1ReverseProxy(
|
|
13315
|
+
deletepluginHaloRunV1alpha1ReverseProxy(requestParameters: PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13100
13316
|
/**
|
|
13101
13317
|
* Get plugin.halo.run/v1alpha1/ReverseProxy
|
|
13102
|
-
* @param {
|
|
13318
|
+
* @param {PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest} requestParameters Request parameters.
|
|
13103
13319
|
* @param {*} [options] Override http request option.
|
|
13104
13320
|
* @throws {RequiredError}
|
|
13105
13321
|
*/
|
|
13106
|
-
getpluginHaloRunV1alpha1ReverseProxy(
|
|
13322
|
+
getpluginHaloRunV1alpha1ReverseProxy(requestParameters: PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): AxiosPromise<ReverseProxy>;
|
|
13107
13323
|
/**
|
|
13108
13324
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
13109
|
-
* @param {
|
|
13110
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
13111
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
13112
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
13325
|
+
* @param {PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest} requestParameters Request parameters.
|
|
13113
13326
|
* @param {*} [options] Override http request option.
|
|
13114
13327
|
* @throws {RequiredError}
|
|
13115
13328
|
*/
|
|
13116
|
-
listpluginHaloRunV1alpha1ReverseProxy(
|
|
13329
|
+
listpluginHaloRunV1alpha1ReverseProxy(requestParameters?: PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): AxiosPromise<ReverseProxyList>;
|
|
13117
13330
|
/**
|
|
13118
13331
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
13119
|
-
* @param {
|
|
13120
|
-
* @param {ReverseProxy} [reverseProxy] Updated reverseproxy
|
|
13332
|
+
* @param {PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest} requestParameters Request parameters.
|
|
13121
13333
|
* @param {*} [options] Override http request option.
|
|
13122
13334
|
* @throws {RequiredError}
|
|
13123
13335
|
*/
|
|
13124
|
-
updatepluginHaloRunV1alpha1ReverseProxy(
|
|
13336
|
+
updatepluginHaloRunV1alpha1ReverseProxy(requestParameters: PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): AxiosPromise<ReverseProxy>;
|
|
13125
13337
|
};
|
|
13126
13338
|
/**
|
|
13127
13339
|
* Request parameters for createpluginHaloRunV1alpha1ReverseProxy operation in PluginHaloRunV1alpha1ReverseProxyApi.
|
|
@@ -13358,43 +13570,39 @@ declare const PluginHaloRunV1alpha1SearchEngineApiFp: (configuration?: Configura
|
|
|
13358
13570
|
declare const PluginHaloRunV1alpha1SearchEngineApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13359
13571
|
/**
|
|
13360
13572
|
* Create plugin.halo.run/v1alpha1/SearchEngine
|
|
13361
|
-
* @param {
|
|
13573
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
13362
13574
|
* @param {*} [options] Override http request option.
|
|
13363
13575
|
* @throws {RequiredError}
|
|
13364
13576
|
*/
|
|
13365
|
-
createpluginHaloRunV1alpha1SearchEngine(
|
|
13577
|
+
createpluginHaloRunV1alpha1SearchEngine(requestParameters?: PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): AxiosPromise<SearchEngine>;
|
|
13366
13578
|
/**
|
|
13367
13579
|
* Delete plugin.halo.run/v1alpha1/SearchEngine
|
|
13368
|
-
* @param {
|
|
13580
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
13369
13581
|
* @param {*} [options] Override http request option.
|
|
13370
13582
|
* @throws {RequiredError}
|
|
13371
13583
|
*/
|
|
13372
|
-
deletepluginHaloRunV1alpha1SearchEngine(
|
|
13584
|
+
deletepluginHaloRunV1alpha1SearchEngine(requestParameters: PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13373
13585
|
/**
|
|
13374
13586
|
* Get plugin.halo.run/v1alpha1/SearchEngine
|
|
13375
|
-
* @param {
|
|
13587
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
13376
13588
|
* @param {*} [options] Override http request option.
|
|
13377
13589
|
* @throws {RequiredError}
|
|
13378
13590
|
*/
|
|
13379
|
-
getpluginHaloRunV1alpha1SearchEngine(
|
|
13591
|
+
getpluginHaloRunV1alpha1SearchEngine(requestParameters: PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): AxiosPromise<SearchEngine>;
|
|
13380
13592
|
/**
|
|
13381
13593
|
* List plugin.halo.run/v1alpha1/SearchEngine
|
|
13382
|
-
* @param {
|
|
13383
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
13384
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
13385
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
13594
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
13386
13595
|
* @param {*} [options] Override http request option.
|
|
13387
13596
|
* @throws {RequiredError}
|
|
13388
13597
|
*/
|
|
13389
|
-
listpluginHaloRunV1alpha1SearchEngine(
|
|
13598
|
+
listpluginHaloRunV1alpha1SearchEngine(requestParameters?: PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): AxiosPromise<SearchEngineList>;
|
|
13390
13599
|
/**
|
|
13391
13600
|
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
13392
|
-
* @param {
|
|
13393
|
-
* @param {SearchEngine} [searchEngine] Updated searchengine
|
|
13601
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
13394
13602
|
* @param {*} [options] Override http request option.
|
|
13395
13603
|
* @throws {RequiredError}
|
|
13396
13604
|
*/
|
|
13397
|
-
updatepluginHaloRunV1alpha1SearchEngine(
|
|
13605
|
+
updatepluginHaloRunV1alpha1SearchEngine(requestParameters: PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): AxiosPromise<SearchEngine>;
|
|
13398
13606
|
};
|
|
13399
13607
|
/**
|
|
13400
13608
|
* Request parameters for createpluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
@@ -13631,43 +13839,39 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
13631
13839
|
declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13632
13840
|
/**
|
|
13633
13841
|
* Create storage.halo.run/v1alpha1/Attachment
|
|
13634
|
-
* @param {
|
|
13842
|
+
* @param {StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
|
|
13635
13843
|
* @param {*} [options] Override http request option.
|
|
13636
13844
|
* @throws {RequiredError}
|
|
13637
13845
|
*/
|
|
13638
|
-
createstorageHaloRunV1alpha1Attachment(
|
|
13846
|
+
createstorageHaloRunV1alpha1Attachment(requestParameters?: StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): AxiosPromise<Attachment>;
|
|
13639
13847
|
/**
|
|
13640
13848
|
* Delete storage.halo.run/v1alpha1/Attachment
|
|
13641
|
-
* @param {
|
|
13849
|
+
* @param {StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
|
|
13642
13850
|
* @param {*} [options] Override http request option.
|
|
13643
13851
|
* @throws {RequiredError}
|
|
13644
13852
|
*/
|
|
13645
|
-
deletestorageHaloRunV1alpha1Attachment(
|
|
13853
|
+
deletestorageHaloRunV1alpha1Attachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13646
13854
|
/**
|
|
13647
13855
|
* Get storage.halo.run/v1alpha1/Attachment
|
|
13648
|
-
* @param {
|
|
13856
|
+
* @param {StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
|
|
13649
13857
|
* @param {*} [options] Override http request option.
|
|
13650
13858
|
* @throws {RequiredError}
|
|
13651
13859
|
*/
|
|
13652
|
-
getstorageHaloRunV1alpha1Attachment(
|
|
13860
|
+
getstorageHaloRunV1alpha1Attachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): AxiosPromise<Attachment>;
|
|
13653
13861
|
/**
|
|
13654
13862
|
* List storage.halo.run/v1alpha1/Attachment
|
|
13655
|
-
* @param {
|
|
13656
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
13657
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
13658
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
13863
|
+
* @param {StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
|
|
13659
13864
|
* @param {*} [options] Override http request option.
|
|
13660
13865
|
* @throws {RequiredError}
|
|
13661
13866
|
*/
|
|
13662
|
-
liststorageHaloRunV1alpha1Attachment(
|
|
13867
|
+
liststorageHaloRunV1alpha1Attachment(requestParameters?: StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): AxiosPromise<AttachmentList>;
|
|
13663
13868
|
/**
|
|
13664
13869
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
13665
|
-
* @param {
|
|
13666
|
-
* @param {Attachment} [attachment] Updated attachment
|
|
13870
|
+
* @param {StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
|
|
13667
13871
|
* @param {*} [options] Override http request option.
|
|
13668
13872
|
* @throws {RequiredError}
|
|
13669
13873
|
*/
|
|
13670
|
-
updatestorageHaloRunV1alpha1Attachment(
|
|
13874
|
+
updatestorageHaloRunV1alpha1Attachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): AxiosPromise<Attachment>;
|
|
13671
13875
|
};
|
|
13672
13876
|
/**
|
|
13673
13877
|
* Request parameters for createstorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -13904,43 +14108,39 @@ declare const StorageHaloRunV1alpha1GroupApiFp: (configuration?: Configuration)
|
|
|
13904
14108
|
declare const StorageHaloRunV1alpha1GroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13905
14109
|
/**
|
|
13906
14110
|
* Create storage.halo.run/v1alpha1/Group
|
|
13907
|
-
* @param {
|
|
14111
|
+
* @param {StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest} requestParameters Request parameters.
|
|
13908
14112
|
* @param {*} [options] Override http request option.
|
|
13909
14113
|
* @throws {RequiredError}
|
|
13910
14114
|
*/
|
|
13911
|
-
createstorageHaloRunV1alpha1Group(
|
|
14115
|
+
createstorageHaloRunV1alpha1Group(requestParameters?: StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, options?: AxiosRequestConfig): AxiosPromise<Group>;
|
|
13912
14116
|
/**
|
|
13913
14117
|
* Delete storage.halo.run/v1alpha1/Group
|
|
13914
|
-
* @param {
|
|
14118
|
+
* @param {StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest} requestParameters Request parameters.
|
|
13915
14119
|
* @param {*} [options] Override http request option.
|
|
13916
14120
|
* @throws {RequiredError}
|
|
13917
14121
|
*/
|
|
13918
|
-
deletestorageHaloRunV1alpha1Group(
|
|
14122
|
+
deletestorageHaloRunV1alpha1Group(requestParameters: StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13919
14123
|
/**
|
|
13920
14124
|
* Get storage.halo.run/v1alpha1/Group
|
|
13921
|
-
* @param {
|
|
14125
|
+
* @param {StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest} requestParameters Request parameters.
|
|
13922
14126
|
* @param {*} [options] Override http request option.
|
|
13923
14127
|
* @throws {RequiredError}
|
|
13924
14128
|
*/
|
|
13925
|
-
getstorageHaloRunV1alpha1Group(
|
|
14129
|
+
getstorageHaloRunV1alpha1Group(requestParameters: StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, options?: AxiosRequestConfig): AxiosPromise<Group>;
|
|
13926
14130
|
/**
|
|
13927
14131
|
* List storage.halo.run/v1alpha1/Group
|
|
13928
|
-
* @param {
|
|
13929
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
13930
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
13931
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14132
|
+
* @param {StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest} requestParameters Request parameters.
|
|
13932
14133
|
* @param {*} [options] Override http request option.
|
|
13933
14134
|
* @throws {RequiredError}
|
|
13934
14135
|
*/
|
|
13935
|
-
liststorageHaloRunV1alpha1Group(
|
|
14136
|
+
liststorageHaloRunV1alpha1Group(requestParameters?: StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, options?: AxiosRequestConfig): AxiosPromise<GroupList>;
|
|
13936
14137
|
/**
|
|
13937
14138
|
* Update storage.halo.run/v1alpha1/Group
|
|
13938
|
-
* @param {
|
|
13939
|
-
* @param {Group} [group] Updated group
|
|
14139
|
+
* @param {StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest} requestParameters Request parameters.
|
|
13940
14140
|
* @param {*} [options] Override http request option.
|
|
13941
14141
|
* @throws {RequiredError}
|
|
13942
14142
|
*/
|
|
13943
|
-
updatestorageHaloRunV1alpha1Group(
|
|
14143
|
+
updatestorageHaloRunV1alpha1Group(requestParameters: StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, options?: AxiosRequestConfig): AxiosPromise<Group>;
|
|
13944
14144
|
};
|
|
13945
14145
|
/**
|
|
13946
14146
|
* Request parameters for createstorageHaloRunV1alpha1Group operation in StorageHaloRunV1alpha1GroupApi.
|
|
@@ -14177,43 +14377,39 @@ declare const StorageHaloRunV1alpha1PolicyApiFp: (configuration?: Configuration)
|
|
|
14177
14377
|
declare const StorageHaloRunV1alpha1PolicyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14178
14378
|
/**
|
|
14179
14379
|
* Create storage.halo.run/v1alpha1/Policy
|
|
14180
|
-
* @param {
|
|
14380
|
+
* @param {StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest} requestParameters Request parameters.
|
|
14181
14381
|
* @param {*} [options] Override http request option.
|
|
14182
14382
|
* @throws {RequiredError}
|
|
14183
14383
|
*/
|
|
14184
|
-
createstorageHaloRunV1alpha1Policy(
|
|
14384
|
+
createstorageHaloRunV1alpha1Policy(requestParameters?: StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, options?: AxiosRequestConfig): AxiosPromise<Policy>;
|
|
14185
14385
|
/**
|
|
14186
14386
|
* Delete storage.halo.run/v1alpha1/Policy
|
|
14187
|
-
* @param {
|
|
14387
|
+
* @param {StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest} requestParameters Request parameters.
|
|
14188
14388
|
* @param {*} [options] Override http request option.
|
|
14189
14389
|
* @throws {RequiredError}
|
|
14190
14390
|
*/
|
|
14191
|
-
deletestorageHaloRunV1alpha1Policy(
|
|
14391
|
+
deletestorageHaloRunV1alpha1Policy(requestParameters: StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14192
14392
|
/**
|
|
14193
14393
|
* Get storage.halo.run/v1alpha1/Policy
|
|
14194
|
-
* @param {
|
|
14394
|
+
* @param {StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest} requestParameters Request parameters.
|
|
14195
14395
|
* @param {*} [options] Override http request option.
|
|
14196
14396
|
* @throws {RequiredError}
|
|
14197
14397
|
*/
|
|
14198
|
-
getstorageHaloRunV1alpha1Policy(
|
|
14398
|
+
getstorageHaloRunV1alpha1Policy(requestParameters: StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, options?: AxiosRequestConfig): AxiosPromise<Policy>;
|
|
14199
14399
|
/**
|
|
14200
14400
|
* List storage.halo.run/v1alpha1/Policy
|
|
14201
|
-
* @param {
|
|
14202
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14203
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14204
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14401
|
+
* @param {StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest} requestParameters Request parameters.
|
|
14205
14402
|
* @param {*} [options] Override http request option.
|
|
14206
14403
|
* @throws {RequiredError}
|
|
14207
14404
|
*/
|
|
14208
|
-
liststorageHaloRunV1alpha1Policy(
|
|
14405
|
+
liststorageHaloRunV1alpha1Policy(requestParameters?: StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, options?: AxiosRequestConfig): AxiosPromise<PolicyList>;
|
|
14209
14406
|
/**
|
|
14210
14407
|
* Update storage.halo.run/v1alpha1/Policy
|
|
14211
|
-
* @param {
|
|
14212
|
-
* @param {Policy} [policy] Updated policy
|
|
14408
|
+
* @param {StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest} requestParameters Request parameters.
|
|
14213
14409
|
* @param {*} [options] Override http request option.
|
|
14214
14410
|
* @throws {RequiredError}
|
|
14215
14411
|
*/
|
|
14216
|
-
updatestorageHaloRunV1alpha1Policy(
|
|
14412
|
+
updatestorageHaloRunV1alpha1Policy(requestParameters: StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, options?: AxiosRequestConfig): AxiosPromise<Policy>;
|
|
14217
14413
|
};
|
|
14218
14414
|
/**
|
|
14219
14415
|
* Request parameters for createstorageHaloRunV1alpha1Policy operation in StorageHaloRunV1alpha1PolicyApi.
|
|
@@ -14450,43 +14646,39 @@ declare const StorageHaloRunV1alpha1PolicyTemplateApiFp: (configuration?: Config
|
|
|
14450
14646
|
declare const StorageHaloRunV1alpha1PolicyTemplateApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14451
14647
|
/**
|
|
14452
14648
|
* Create storage.halo.run/v1alpha1/PolicyTemplate
|
|
14453
|
-
* @param {
|
|
14649
|
+
* @param {StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest} requestParameters Request parameters.
|
|
14454
14650
|
* @param {*} [options] Override http request option.
|
|
14455
14651
|
* @throws {RequiredError}
|
|
14456
14652
|
*/
|
|
14457
|
-
createstorageHaloRunV1alpha1PolicyTemplate(
|
|
14653
|
+
createstorageHaloRunV1alpha1PolicyTemplate(requestParameters?: StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, options?: AxiosRequestConfig): AxiosPromise<PolicyTemplate>;
|
|
14458
14654
|
/**
|
|
14459
14655
|
* Delete storage.halo.run/v1alpha1/PolicyTemplate
|
|
14460
|
-
* @param {
|
|
14656
|
+
* @param {StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest} requestParameters Request parameters.
|
|
14461
14657
|
* @param {*} [options] Override http request option.
|
|
14462
14658
|
* @throws {RequiredError}
|
|
14463
14659
|
*/
|
|
14464
|
-
deletestorageHaloRunV1alpha1PolicyTemplate(
|
|
14660
|
+
deletestorageHaloRunV1alpha1PolicyTemplate(requestParameters: StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14465
14661
|
/**
|
|
14466
14662
|
* Get storage.halo.run/v1alpha1/PolicyTemplate
|
|
14467
|
-
* @param {
|
|
14663
|
+
* @param {StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest} requestParameters Request parameters.
|
|
14468
14664
|
* @param {*} [options] Override http request option.
|
|
14469
14665
|
* @throws {RequiredError}
|
|
14470
14666
|
*/
|
|
14471
|
-
getstorageHaloRunV1alpha1PolicyTemplate(
|
|
14667
|
+
getstorageHaloRunV1alpha1PolicyTemplate(requestParameters: StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, options?: AxiosRequestConfig): AxiosPromise<PolicyTemplate>;
|
|
14472
14668
|
/**
|
|
14473
14669
|
* List storage.halo.run/v1alpha1/PolicyTemplate
|
|
14474
|
-
* @param {
|
|
14475
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14476
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14477
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14670
|
+
* @param {StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest} requestParameters Request parameters.
|
|
14478
14671
|
* @param {*} [options] Override http request option.
|
|
14479
14672
|
* @throws {RequiredError}
|
|
14480
14673
|
*/
|
|
14481
|
-
liststorageHaloRunV1alpha1PolicyTemplate(
|
|
14674
|
+
liststorageHaloRunV1alpha1PolicyTemplate(requestParameters?: StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, options?: AxiosRequestConfig): AxiosPromise<PolicyTemplateList>;
|
|
14482
14675
|
/**
|
|
14483
14676
|
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
14484
|
-
* @param {
|
|
14485
|
-
* @param {PolicyTemplate} [policyTemplate] Updated policytemplate
|
|
14677
|
+
* @param {StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest} requestParameters Request parameters.
|
|
14486
14678
|
* @param {*} [options] Override http request option.
|
|
14487
14679
|
* @throws {RequiredError}
|
|
14488
14680
|
*/
|
|
14489
|
-
updatestorageHaloRunV1alpha1PolicyTemplate(
|
|
14681
|
+
updatestorageHaloRunV1alpha1PolicyTemplate(requestParameters: StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, options?: AxiosRequestConfig): AxiosPromise<PolicyTemplate>;
|
|
14490
14682
|
};
|
|
14491
14683
|
/**
|
|
14492
14684
|
* Request parameters for createstorageHaloRunV1alpha1PolicyTemplate operation in StorageHaloRunV1alpha1PolicyTemplateApi.
|
|
@@ -14723,43 +14915,39 @@ declare const ThemeHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) =>
|
|
|
14723
14915
|
declare const ThemeHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14724
14916
|
/**
|
|
14725
14917
|
* Create theme.halo.run/v1alpha1/Theme
|
|
14726
|
-
* @param {
|
|
14918
|
+
* @param {ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest} requestParameters Request parameters.
|
|
14727
14919
|
* @param {*} [options] Override http request option.
|
|
14728
14920
|
* @throws {RequiredError}
|
|
14729
14921
|
*/
|
|
14730
|
-
createthemeHaloRunV1alpha1Theme(
|
|
14922
|
+
createthemeHaloRunV1alpha1Theme(requestParameters?: ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
14731
14923
|
/**
|
|
14732
14924
|
* Delete theme.halo.run/v1alpha1/Theme
|
|
14733
|
-
* @param {
|
|
14925
|
+
* @param {ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest} requestParameters Request parameters.
|
|
14734
14926
|
* @param {*} [options] Override http request option.
|
|
14735
14927
|
* @throws {RequiredError}
|
|
14736
14928
|
*/
|
|
14737
|
-
deletethemeHaloRunV1alpha1Theme(
|
|
14929
|
+
deletethemeHaloRunV1alpha1Theme(requestParameters: ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14738
14930
|
/**
|
|
14739
14931
|
* Get theme.halo.run/v1alpha1/Theme
|
|
14740
|
-
* @param {
|
|
14932
|
+
* @param {ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest} requestParameters Request parameters.
|
|
14741
14933
|
* @param {*} [options] Override http request option.
|
|
14742
14934
|
* @throws {RequiredError}
|
|
14743
14935
|
*/
|
|
14744
|
-
getthemeHaloRunV1alpha1Theme(
|
|
14936
|
+
getthemeHaloRunV1alpha1Theme(requestParameters: ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
14745
14937
|
/**
|
|
14746
14938
|
* List theme.halo.run/v1alpha1/Theme
|
|
14747
|
-
* @param {
|
|
14748
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14749
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14750
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14939
|
+
* @param {ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest} requestParameters Request parameters.
|
|
14751
14940
|
* @param {*} [options] Override http request option.
|
|
14752
14941
|
* @throws {RequiredError}
|
|
14753
14942
|
*/
|
|
14754
|
-
listthemeHaloRunV1alpha1Theme(
|
|
14943
|
+
listthemeHaloRunV1alpha1Theme(requestParameters?: ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): AxiosPromise<ThemeList>;
|
|
14755
14944
|
/**
|
|
14756
14945
|
* Update theme.halo.run/v1alpha1/Theme
|
|
14757
|
-
* @param {
|
|
14758
|
-
* @param {Theme} [theme] Updated theme
|
|
14946
|
+
* @param {ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest} requestParameters Request parameters.
|
|
14759
14947
|
* @param {*} [options] Override http request option.
|
|
14760
14948
|
* @throws {RequiredError}
|
|
14761
14949
|
*/
|
|
14762
|
-
updatethemeHaloRunV1alpha1Theme(
|
|
14950
|
+
updatethemeHaloRunV1alpha1Theme(requestParameters: ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): AxiosPromise<Theme>;
|
|
14763
14951
|
};
|
|
14764
14952
|
/**
|
|
14765
14953
|
* Request parameters for createthemeHaloRunV1alpha1Theme operation in ThemeHaloRunV1alpha1ThemeApi.
|
|
@@ -14996,43 +15184,39 @@ declare const V1alpha1AnnotationSettingApiFp: (configuration?: Configuration) =>
|
|
|
14996
15184
|
declare const V1alpha1AnnotationSettingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14997
15185
|
/**
|
|
14998
15186
|
* Create v1alpha1/AnnotationSetting
|
|
14999
|
-
* @param {
|
|
15187
|
+
* @param {V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
15000
15188
|
* @param {*} [options] Override http request option.
|
|
15001
15189
|
* @throws {RequiredError}
|
|
15002
15190
|
*/
|
|
15003
|
-
createv1alpha1AnnotationSetting(
|
|
15191
|
+
createv1alpha1AnnotationSetting(requestParameters?: V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): AxiosPromise<AnnotationSetting>;
|
|
15004
15192
|
/**
|
|
15005
15193
|
* Delete v1alpha1/AnnotationSetting
|
|
15006
|
-
* @param {
|
|
15194
|
+
* @param {V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
15007
15195
|
* @param {*} [options] Override http request option.
|
|
15008
15196
|
* @throws {RequiredError}
|
|
15009
15197
|
*/
|
|
15010
|
-
deletev1alpha1AnnotationSetting(
|
|
15198
|
+
deletev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15011
15199
|
/**
|
|
15012
15200
|
* Get v1alpha1/AnnotationSetting
|
|
15013
|
-
* @param {
|
|
15201
|
+
* @param {V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
15014
15202
|
* @param {*} [options] Override http request option.
|
|
15015
15203
|
* @throws {RequiredError}
|
|
15016
15204
|
*/
|
|
15017
|
-
getv1alpha1AnnotationSetting(
|
|
15205
|
+
getv1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): AxiosPromise<AnnotationSetting>;
|
|
15018
15206
|
/**
|
|
15019
15207
|
* List v1alpha1/AnnotationSetting
|
|
15020
|
-
* @param {
|
|
15021
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15022
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15023
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
15208
|
+
* @param {V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
15024
15209
|
* @param {*} [options] Override http request option.
|
|
15025
15210
|
* @throws {RequiredError}
|
|
15026
15211
|
*/
|
|
15027
|
-
listv1alpha1AnnotationSetting(
|
|
15212
|
+
listv1alpha1AnnotationSetting(requestParameters?: V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): AxiosPromise<AnnotationSettingList>;
|
|
15028
15213
|
/**
|
|
15029
15214
|
* Update v1alpha1/AnnotationSetting
|
|
15030
|
-
* @param {
|
|
15031
|
-
* @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
|
|
15215
|
+
* @param {V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
15032
15216
|
* @param {*} [options] Override http request option.
|
|
15033
15217
|
* @throws {RequiredError}
|
|
15034
15218
|
*/
|
|
15035
|
-
updatev1alpha1AnnotationSetting(
|
|
15219
|
+
updatev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): AxiosPromise<AnnotationSetting>;
|
|
15036
15220
|
};
|
|
15037
15221
|
/**
|
|
15038
15222
|
* Request parameters for createv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
@@ -15269,43 +15453,39 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
|
|
|
15269
15453
|
declare const V1alpha1ConfigMapApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
15270
15454
|
/**
|
|
15271
15455
|
* Create v1alpha1/ConfigMap
|
|
15272
|
-
* @param {
|
|
15456
|
+
* @param {V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest} requestParameters Request parameters.
|
|
15273
15457
|
* @param {*} [options] Override http request option.
|
|
15274
15458
|
* @throws {RequiredError}
|
|
15275
15459
|
*/
|
|
15276
|
-
createv1alpha1ConfigMap(
|
|
15460
|
+
createv1alpha1ConfigMap(requestParameters?: V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
15277
15461
|
/**
|
|
15278
15462
|
* Delete v1alpha1/ConfigMap
|
|
15279
|
-
* @param {
|
|
15463
|
+
* @param {V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest} requestParameters Request parameters.
|
|
15280
15464
|
* @param {*} [options] Override http request option.
|
|
15281
15465
|
* @throws {RequiredError}
|
|
15282
15466
|
*/
|
|
15283
|
-
deletev1alpha1ConfigMap(
|
|
15467
|
+
deletev1alpha1ConfigMap(requestParameters: V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15284
15468
|
/**
|
|
15285
15469
|
* Get v1alpha1/ConfigMap
|
|
15286
|
-
* @param {
|
|
15470
|
+
* @param {V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest} requestParameters Request parameters.
|
|
15287
15471
|
* @param {*} [options] Override http request option.
|
|
15288
15472
|
* @throws {RequiredError}
|
|
15289
15473
|
*/
|
|
15290
|
-
getv1alpha1ConfigMap(
|
|
15474
|
+
getv1alpha1ConfigMap(requestParameters: V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
15291
15475
|
/**
|
|
15292
15476
|
* List v1alpha1/ConfigMap
|
|
15293
|
-
* @param {
|
|
15294
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15295
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15296
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
15477
|
+
* @param {V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest} requestParameters Request parameters.
|
|
15297
15478
|
* @param {*} [options] Override http request option.
|
|
15298
15479
|
* @throws {RequiredError}
|
|
15299
15480
|
*/
|
|
15300
|
-
listv1alpha1ConfigMap(
|
|
15481
|
+
listv1alpha1ConfigMap(requestParameters?: V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMapList>;
|
|
15301
15482
|
/**
|
|
15302
15483
|
* Update v1alpha1/ConfigMap
|
|
15303
|
-
* @param {
|
|
15304
|
-
* @param {ConfigMap} [configMap] Updated configmap
|
|
15484
|
+
* @param {V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest} requestParameters Request parameters.
|
|
15305
15485
|
* @param {*} [options] Override http request option.
|
|
15306
15486
|
* @throws {RequiredError}
|
|
15307
15487
|
*/
|
|
15308
|
-
updatev1alpha1ConfigMap(
|
|
15488
|
+
updatev1alpha1ConfigMap(requestParameters: V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, options?: AxiosRequestConfig): AxiosPromise<ConfigMap>;
|
|
15309
15489
|
};
|
|
15310
15490
|
/**
|
|
15311
15491
|
* Request parameters for createv1alpha1ConfigMap operation in V1alpha1ConfigMapApi.
|
|
@@ -15542,43 +15722,39 @@ declare const V1alpha1MenuApiFp: (configuration?: Configuration) => {
|
|
|
15542
15722
|
declare const V1alpha1MenuApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
15543
15723
|
/**
|
|
15544
15724
|
* Create v1alpha1/Menu
|
|
15545
|
-
* @param {
|
|
15725
|
+
* @param {V1alpha1MenuApiCreatev1alpha1MenuRequest} requestParameters Request parameters.
|
|
15546
15726
|
* @param {*} [options] Override http request option.
|
|
15547
15727
|
* @throws {RequiredError}
|
|
15548
15728
|
*/
|
|
15549
|
-
createv1alpha1Menu(
|
|
15729
|
+
createv1alpha1Menu(requestParameters?: V1alpha1MenuApiCreatev1alpha1MenuRequest, options?: AxiosRequestConfig): AxiosPromise<Menu>;
|
|
15550
15730
|
/**
|
|
15551
15731
|
* Delete v1alpha1/Menu
|
|
15552
|
-
* @param {
|
|
15732
|
+
* @param {V1alpha1MenuApiDeletev1alpha1MenuRequest} requestParameters Request parameters.
|
|
15553
15733
|
* @param {*} [options] Override http request option.
|
|
15554
15734
|
* @throws {RequiredError}
|
|
15555
15735
|
*/
|
|
15556
|
-
deletev1alpha1Menu(
|
|
15736
|
+
deletev1alpha1Menu(requestParameters: V1alpha1MenuApiDeletev1alpha1MenuRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15557
15737
|
/**
|
|
15558
15738
|
* Get v1alpha1/Menu
|
|
15559
|
-
* @param {
|
|
15739
|
+
* @param {V1alpha1MenuApiGetv1alpha1MenuRequest} requestParameters Request parameters.
|
|
15560
15740
|
* @param {*} [options] Override http request option.
|
|
15561
15741
|
* @throws {RequiredError}
|
|
15562
15742
|
*/
|
|
15563
|
-
getv1alpha1Menu(
|
|
15743
|
+
getv1alpha1Menu(requestParameters: V1alpha1MenuApiGetv1alpha1MenuRequest, options?: AxiosRequestConfig): AxiosPromise<Menu>;
|
|
15564
15744
|
/**
|
|
15565
15745
|
* List v1alpha1/Menu
|
|
15566
|
-
* @param {
|
|
15567
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15568
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15569
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
15746
|
+
* @param {V1alpha1MenuApiListv1alpha1MenuRequest} requestParameters Request parameters.
|
|
15570
15747
|
* @param {*} [options] Override http request option.
|
|
15571
15748
|
* @throws {RequiredError}
|
|
15572
15749
|
*/
|
|
15573
|
-
listv1alpha1Menu(
|
|
15750
|
+
listv1alpha1Menu(requestParameters?: V1alpha1MenuApiListv1alpha1MenuRequest, options?: AxiosRequestConfig): AxiosPromise<MenuList>;
|
|
15574
15751
|
/**
|
|
15575
15752
|
* Update v1alpha1/Menu
|
|
15576
|
-
* @param {
|
|
15577
|
-
* @param {Menu} [menu] Updated menu
|
|
15753
|
+
* @param {V1alpha1MenuApiUpdatev1alpha1MenuRequest} requestParameters Request parameters.
|
|
15578
15754
|
* @param {*} [options] Override http request option.
|
|
15579
15755
|
* @throws {RequiredError}
|
|
15580
15756
|
*/
|
|
15581
|
-
updatev1alpha1Menu(
|
|
15757
|
+
updatev1alpha1Menu(requestParameters: V1alpha1MenuApiUpdatev1alpha1MenuRequest, options?: AxiosRequestConfig): AxiosPromise<Menu>;
|
|
15582
15758
|
};
|
|
15583
15759
|
/**
|
|
15584
15760
|
* Request parameters for createv1alpha1Menu operation in V1alpha1MenuApi.
|
|
@@ -15815,43 +15991,39 @@ declare const V1alpha1MenuItemApiFp: (configuration?: Configuration) => {
|
|
|
15815
15991
|
declare const V1alpha1MenuItemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
15816
15992
|
/**
|
|
15817
15993
|
* Create v1alpha1/MenuItem
|
|
15818
|
-
* @param {
|
|
15994
|
+
* @param {V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest} requestParameters Request parameters.
|
|
15819
15995
|
* @param {*} [options] Override http request option.
|
|
15820
15996
|
* @throws {RequiredError}
|
|
15821
15997
|
*/
|
|
15822
|
-
createv1alpha1MenuItem(
|
|
15998
|
+
createv1alpha1MenuItem(requestParameters?: V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, options?: AxiosRequestConfig): AxiosPromise<MenuItem>;
|
|
15823
15999
|
/**
|
|
15824
16000
|
* Delete v1alpha1/MenuItem
|
|
15825
|
-
* @param {
|
|
16001
|
+
* @param {V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest} requestParameters Request parameters.
|
|
15826
16002
|
* @param {*} [options] Override http request option.
|
|
15827
16003
|
* @throws {RequiredError}
|
|
15828
16004
|
*/
|
|
15829
|
-
deletev1alpha1MenuItem(
|
|
16005
|
+
deletev1alpha1MenuItem(requestParameters: V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15830
16006
|
/**
|
|
15831
16007
|
* Get v1alpha1/MenuItem
|
|
15832
|
-
* @param {
|
|
16008
|
+
* @param {V1alpha1MenuItemApiGetv1alpha1MenuItemRequest} requestParameters Request parameters.
|
|
15833
16009
|
* @param {*} [options] Override http request option.
|
|
15834
16010
|
* @throws {RequiredError}
|
|
15835
16011
|
*/
|
|
15836
|
-
getv1alpha1MenuItem(
|
|
16012
|
+
getv1alpha1MenuItem(requestParameters: V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, options?: AxiosRequestConfig): AxiosPromise<MenuItem>;
|
|
15837
16013
|
/**
|
|
15838
16014
|
* List v1alpha1/MenuItem
|
|
15839
|
-
* @param {
|
|
15840
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15841
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15842
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
16015
|
+
* @param {V1alpha1MenuItemApiListv1alpha1MenuItemRequest} requestParameters Request parameters.
|
|
15843
16016
|
* @param {*} [options] Override http request option.
|
|
15844
16017
|
* @throws {RequiredError}
|
|
15845
16018
|
*/
|
|
15846
|
-
listv1alpha1MenuItem(
|
|
16019
|
+
listv1alpha1MenuItem(requestParameters?: V1alpha1MenuItemApiListv1alpha1MenuItemRequest, options?: AxiosRequestConfig): AxiosPromise<MenuItemList>;
|
|
15847
16020
|
/**
|
|
15848
16021
|
* Update v1alpha1/MenuItem
|
|
15849
|
-
* @param {
|
|
15850
|
-
* @param {MenuItem} [menuItem] Updated menuitem
|
|
16022
|
+
* @param {V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest} requestParameters Request parameters.
|
|
15851
16023
|
* @param {*} [options] Override http request option.
|
|
15852
16024
|
* @throws {RequiredError}
|
|
15853
16025
|
*/
|
|
15854
|
-
updatev1alpha1MenuItem(
|
|
16026
|
+
updatev1alpha1MenuItem(requestParameters: V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, options?: AxiosRequestConfig): AxiosPromise<MenuItem>;
|
|
15855
16027
|
};
|
|
15856
16028
|
/**
|
|
15857
16029
|
* Request parameters for createv1alpha1MenuItem operation in V1alpha1MenuItemApi.
|
|
@@ -16088,43 +16260,39 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
|
|
|
16088
16260
|
declare const V1alpha1PersonalAccessTokenApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16089
16261
|
/**
|
|
16090
16262
|
* Create v1alpha1/PersonalAccessToken
|
|
16091
|
-
* @param {
|
|
16263
|
+
* @param {V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest} requestParameters Request parameters.
|
|
16092
16264
|
* @param {*} [options] Override http request option.
|
|
16093
16265
|
* @throws {RequiredError}
|
|
16094
16266
|
*/
|
|
16095
|
-
createv1alpha1PersonalAccessToken(
|
|
16267
|
+
createv1alpha1PersonalAccessToken(requestParameters?: V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, options?: AxiosRequestConfig): AxiosPromise<PersonalAccessToken>;
|
|
16096
16268
|
/**
|
|
16097
16269
|
* Delete v1alpha1/PersonalAccessToken
|
|
16098
|
-
* @param {
|
|
16270
|
+
* @param {V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest} requestParameters Request parameters.
|
|
16099
16271
|
* @param {*} [options] Override http request option.
|
|
16100
16272
|
* @throws {RequiredError}
|
|
16101
16273
|
*/
|
|
16102
|
-
deletev1alpha1PersonalAccessToken(
|
|
16274
|
+
deletev1alpha1PersonalAccessToken(requestParameters: V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16103
16275
|
/**
|
|
16104
16276
|
* Get v1alpha1/PersonalAccessToken
|
|
16105
|
-
* @param {
|
|
16277
|
+
* @param {V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest} requestParameters Request parameters.
|
|
16106
16278
|
* @param {*} [options] Override http request option.
|
|
16107
16279
|
* @throws {RequiredError}
|
|
16108
16280
|
*/
|
|
16109
|
-
getv1alpha1PersonalAccessToken(
|
|
16281
|
+
getv1alpha1PersonalAccessToken(requestParameters: V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, options?: AxiosRequestConfig): AxiosPromise<PersonalAccessToken>;
|
|
16110
16282
|
/**
|
|
16111
16283
|
* List v1alpha1/PersonalAccessToken
|
|
16112
|
-
* @param {
|
|
16113
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16114
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16115
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
16284
|
+
* @param {V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest} requestParameters Request parameters.
|
|
16116
16285
|
* @param {*} [options] Override http request option.
|
|
16117
16286
|
* @throws {RequiredError}
|
|
16118
16287
|
*/
|
|
16119
|
-
listv1alpha1PersonalAccessToken(
|
|
16288
|
+
listv1alpha1PersonalAccessToken(requestParameters?: V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, options?: AxiosRequestConfig): AxiosPromise<PersonalAccessTokenList>;
|
|
16120
16289
|
/**
|
|
16121
16290
|
* Update v1alpha1/PersonalAccessToken
|
|
16122
|
-
* @param {
|
|
16123
|
-
* @param {PersonalAccessToken} [personalAccessToken] Updated personalaccesstoken
|
|
16291
|
+
* @param {V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest} requestParameters Request parameters.
|
|
16124
16292
|
* @param {*} [options] Override http request option.
|
|
16125
16293
|
* @throws {RequiredError}
|
|
16126
16294
|
*/
|
|
16127
|
-
updatev1alpha1PersonalAccessToken(
|
|
16295
|
+
updatev1alpha1PersonalAccessToken(requestParameters: V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, options?: AxiosRequestConfig): AxiosPromise<PersonalAccessToken>;
|
|
16128
16296
|
};
|
|
16129
16297
|
/**
|
|
16130
16298
|
* Request parameters for createv1alpha1PersonalAccessToken operation in V1alpha1PersonalAccessTokenApi.
|
|
@@ -16361,43 +16529,39 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
|
|
|
16361
16529
|
declare const V1alpha1RoleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16362
16530
|
/**
|
|
16363
16531
|
* Create v1alpha1/Role
|
|
16364
|
-
* @param {
|
|
16532
|
+
* @param {V1alpha1RoleApiCreatev1alpha1RoleRequest} requestParameters Request parameters.
|
|
16365
16533
|
* @param {*} [options] Override http request option.
|
|
16366
16534
|
* @throws {RequiredError}
|
|
16367
16535
|
*/
|
|
16368
|
-
createv1alpha1Role(
|
|
16536
|
+
createv1alpha1Role(requestParameters?: V1alpha1RoleApiCreatev1alpha1RoleRequest, options?: AxiosRequestConfig): AxiosPromise<Role>;
|
|
16369
16537
|
/**
|
|
16370
16538
|
* Delete v1alpha1/Role
|
|
16371
|
-
* @param {
|
|
16539
|
+
* @param {V1alpha1RoleApiDeletev1alpha1RoleRequest} requestParameters Request parameters.
|
|
16372
16540
|
* @param {*} [options] Override http request option.
|
|
16373
16541
|
* @throws {RequiredError}
|
|
16374
16542
|
*/
|
|
16375
|
-
deletev1alpha1Role(
|
|
16543
|
+
deletev1alpha1Role(requestParameters: V1alpha1RoleApiDeletev1alpha1RoleRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16376
16544
|
/**
|
|
16377
16545
|
* Get v1alpha1/Role
|
|
16378
|
-
* @param {
|
|
16546
|
+
* @param {V1alpha1RoleApiGetv1alpha1RoleRequest} requestParameters Request parameters.
|
|
16379
16547
|
* @param {*} [options] Override http request option.
|
|
16380
16548
|
* @throws {RequiredError}
|
|
16381
16549
|
*/
|
|
16382
|
-
getv1alpha1Role(
|
|
16550
|
+
getv1alpha1Role(requestParameters: V1alpha1RoleApiGetv1alpha1RoleRequest, options?: AxiosRequestConfig): AxiosPromise<Role>;
|
|
16383
16551
|
/**
|
|
16384
16552
|
* List v1alpha1/Role
|
|
16385
|
-
* @param {
|
|
16386
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16387
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16388
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
16553
|
+
* @param {V1alpha1RoleApiListv1alpha1RoleRequest} requestParameters Request parameters.
|
|
16389
16554
|
* @param {*} [options] Override http request option.
|
|
16390
16555
|
* @throws {RequiredError}
|
|
16391
16556
|
*/
|
|
16392
|
-
listv1alpha1Role(
|
|
16557
|
+
listv1alpha1Role(requestParameters?: V1alpha1RoleApiListv1alpha1RoleRequest, options?: AxiosRequestConfig): AxiosPromise<RoleList>;
|
|
16393
16558
|
/**
|
|
16394
16559
|
* Update v1alpha1/Role
|
|
16395
|
-
* @param {
|
|
16396
|
-
* @param {Role} [role] Updated role
|
|
16560
|
+
* @param {V1alpha1RoleApiUpdatev1alpha1RoleRequest} requestParameters Request parameters.
|
|
16397
16561
|
* @param {*} [options] Override http request option.
|
|
16398
16562
|
* @throws {RequiredError}
|
|
16399
16563
|
*/
|
|
16400
|
-
updatev1alpha1Role(
|
|
16564
|
+
updatev1alpha1Role(requestParameters: V1alpha1RoleApiUpdatev1alpha1RoleRequest, options?: AxiosRequestConfig): AxiosPromise<Role>;
|
|
16401
16565
|
};
|
|
16402
16566
|
/**
|
|
16403
16567
|
* Request parameters for createv1alpha1Role operation in V1alpha1RoleApi.
|
|
@@ -16634,43 +16798,39 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
|
|
|
16634
16798
|
declare const V1alpha1RoleBindingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16635
16799
|
/**
|
|
16636
16800
|
* Create v1alpha1/RoleBinding
|
|
16637
|
-
* @param {
|
|
16801
|
+
* @param {V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest} requestParameters Request parameters.
|
|
16638
16802
|
* @param {*} [options] Override http request option.
|
|
16639
16803
|
* @throws {RequiredError}
|
|
16640
16804
|
*/
|
|
16641
|
-
createv1alpha1RoleBinding(
|
|
16805
|
+
createv1alpha1RoleBinding(requestParameters?: V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, options?: AxiosRequestConfig): AxiosPromise<RoleBinding>;
|
|
16642
16806
|
/**
|
|
16643
16807
|
* Delete v1alpha1/RoleBinding
|
|
16644
|
-
* @param {
|
|
16808
|
+
* @param {V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest} requestParameters Request parameters.
|
|
16645
16809
|
* @param {*} [options] Override http request option.
|
|
16646
16810
|
* @throws {RequiredError}
|
|
16647
16811
|
*/
|
|
16648
|
-
deletev1alpha1RoleBinding(
|
|
16812
|
+
deletev1alpha1RoleBinding(requestParameters: V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16649
16813
|
/**
|
|
16650
16814
|
* Get v1alpha1/RoleBinding
|
|
16651
|
-
* @param {
|
|
16815
|
+
* @param {V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest} requestParameters Request parameters.
|
|
16652
16816
|
* @param {*} [options] Override http request option.
|
|
16653
16817
|
* @throws {RequiredError}
|
|
16654
16818
|
*/
|
|
16655
|
-
getv1alpha1RoleBinding(
|
|
16819
|
+
getv1alpha1RoleBinding(requestParameters: V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, options?: AxiosRequestConfig): AxiosPromise<RoleBinding>;
|
|
16656
16820
|
/**
|
|
16657
16821
|
* List v1alpha1/RoleBinding
|
|
16658
|
-
* @param {
|
|
16659
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16660
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16661
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
16822
|
+
* @param {V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest} requestParameters Request parameters.
|
|
16662
16823
|
* @param {*} [options] Override http request option.
|
|
16663
16824
|
* @throws {RequiredError}
|
|
16664
16825
|
*/
|
|
16665
|
-
listv1alpha1RoleBinding(
|
|
16826
|
+
listv1alpha1RoleBinding(requestParameters?: V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, options?: AxiosRequestConfig): AxiosPromise<RoleBindingList>;
|
|
16666
16827
|
/**
|
|
16667
16828
|
* Update v1alpha1/RoleBinding
|
|
16668
|
-
* @param {
|
|
16669
|
-
* @param {RoleBinding} [roleBinding] Updated rolebinding
|
|
16829
|
+
* @param {V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest} requestParameters Request parameters.
|
|
16670
16830
|
* @param {*} [options] Override http request option.
|
|
16671
16831
|
* @throws {RequiredError}
|
|
16672
16832
|
*/
|
|
16673
|
-
updatev1alpha1RoleBinding(
|
|
16833
|
+
updatev1alpha1RoleBinding(requestParameters: V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, options?: AxiosRequestConfig): AxiosPromise<RoleBinding>;
|
|
16674
16834
|
};
|
|
16675
16835
|
/**
|
|
16676
16836
|
* Request parameters for createv1alpha1RoleBinding operation in V1alpha1RoleBindingApi.
|
|
@@ -16907,43 +17067,39 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
|
|
|
16907
17067
|
declare const V1alpha1SettingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16908
17068
|
/**
|
|
16909
17069
|
* Create v1alpha1/Setting
|
|
16910
|
-
* @param {
|
|
17070
|
+
* @param {V1alpha1SettingApiCreatev1alpha1SettingRequest} requestParameters Request parameters.
|
|
16911
17071
|
* @param {*} [options] Override http request option.
|
|
16912
17072
|
* @throws {RequiredError}
|
|
16913
17073
|
*/
|
|
16914
|
-
createv1alpha1Setting(
|
|
17074
|
+
createv1alpha1Setting(requestParameters?: V1alpha1SettingApiCreatev1alpha1SettingRequest, options?: AxiosRequestConfig): AxiosPromise<Setting>;
|
|
16915
17075
|
/**
|
|
16916
17076
|
* Delete v1alpha1/Setting
|
|
16917
|
-
* @param {
|
|
17077
|
+
* @param {V1alpha1SettingApiDeletev1alpha1SettingRequest} requestParameters Request parameters.
|
|
16918
17078
|
* @param {*} [options] Override http request option.
|
|
16919
17079
|
* @throws {RequiredError}
|
|
16920
17080
|
*/
|
|
16921
|
-
deletev1alpha1Setting(
|
|
17081
|
+
deletev1alpha1Setting(requestParameters: V1alpha1SettingApiDeletev1alpha1SettingRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16922
17082
|
/**
|
|
16923
17083
|
* Get v1alpha1/Setting
|
|
16924
|
-
* @param {
|
|
17084
|
+
* @param {V1alpha1SettingApiGetv1alpha1SettingRequest} requestParameters Request parameters.
|
|
16925
17085
|
* @param {*} [options] Override http request option.
|
|
16926
17086
|
* @throws {RequiredError}
|
|
16927
17087
|
*/
|
|
16928
|
-
getv1alpha1Setting(
|
|
17088
|
+
getv1alpha1Setting(requestParameters: V1alpha1SettingApiGetv1alpha1SettingRequest, options?: AxiosRequestConfig): AxiosPromise<Setting>;
|
|
16929
17089
|
/**
|
|
16930
17090
|
* List v1alpha1/Setting
|
|
16931
|
-
* @param {
|
|
16932
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16933
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16934
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
17091
|
+
* @param {V1alpha1SettingApiListv1alpha1SettingRequest} requestParameters Request parameters.
|
|
16935
17092
|
* @param {*} [options] Override http request option.
|
|
16936
17093
|
* @throws {RequiredError}
|
|
16937
17094
|
*/
|
|
16938
|
-
listv1alpha1Setting(
|
|
17095
|
+
listv1alpha1Setting(requestParameters?: V1alpha1SettingApiListv1alpha1SettingRequest, options?: AxiosRequestConfig): AxiosPromise<SettingList>;
|
|
16939
17096
|
/**
|
|
16940
17097
|
* Update v1alpha1/Setting
|
|
16941
|
-
* @param {
|
|
16942
|
-
* @param {Setting} [setting] Updated setting
|
|
17098
|
+
* @param {V1alpha1SettingApiUpdatev1alpha1SettingRequest} requestParameters Request parameters.
|
|
16943
17099
|
* @param {*} [options] Override http request option.
|
|
16944
17100
|
* @throws {RequiredError}
|
|
16945
17101
|
*/
|
|
16946
|
-
updatev1alpha1Setting(
|
|
17102
|
+
updatev1alpha1Setting(requestParameters: V1alpha1SettingApiUpdatev1alpha1SettingRequest, options?: AxiosRequestConfig): AxiosPromise<Setting>;
|
|
16947
17103
|
};
|
|
16948
17104
|
/**
|
|
16949
17105
|
* Request parameters for createv1alpha1Setting operation in V1alpha1SettingApi.
|
|
@@ -17180,43 +17336,39 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
17180
17336
|
declare const V1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
17181
17337
|
/**
|
|
17182
17338
|
* Create v1alpha1/User
|
|
17183
|
-
* @param {
|
|
17339
|
+
* @param {V1alpha1UserApiCreatev1alpha1UserRequest} requestParameters Request parameters.
|
|
17184
17340
|
* @param {*} [options] Override http request option.
|
|
17185
17341
|
* @throws {RequiredError}
|
|
17186
17342
|
*/
|
|
17187
|
-
createv1alpha1User(
|
|
17343
|
+
createv1alpha1User(requestParameters?: V1alpha1UserApiCreatev1alpha1UserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
17188
17344
|
/**
|
|
17189
17345
|
* Delete v1alpha1/User
|
|
17190
|
-
* @param {
|
|
17346
|
+
* @param {V1alpha1UserApiDeletev1alpha1UserRequest} requestParameters Request parameters.
|
|
17191
17347
|
* @param {*} [options] Override http request option.
|
|
17192
17348
|
* @throws {RequiredError}
|
|
17193
17349
|
*/
|
|
17194
|
-
deletev1alpha1User(
|
|
17350
|
+
deletev1alpha1User(requestParameters: V1alpha1UserApiDeletev1alpha1UserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
17195
17351
|
/**
|
|
17196
17352
|
* Get v1alpha1/User
|
|
17197
|
-
* @param {
|
|
17353
|
+
* @param {V1alpha1UserApiGetv1alpha1UserRequest} requestParameters Request parameters.
|
|
17198
17354
|
* @param {*} [options] Override http request option.
|
|
17199
17355
|
* @throws {RequiredError}
|
|
17200
17356
|
*/
|
|
17201
|
-
getv1alpha1User(
|
|
17357
|
+
getv1alpha1User(requestParameters: V1alpha1UserApiGetv1alpha1UserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
17202
17358
|
/**
|
|
17203
17359
|
* List v1alpha1/User
|
|
17204
|
-
* @param {
|
|
17205
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17206
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17207
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
17360
|
+
* @param {V1alpha1UserApiListv1alpha1UserRequest} requestParameters Request parameters.
|
|
17208
17361
|
* @param {*} [options] Override http request option.
|
|
17209
17362
|
* @throws {RequiredError}
|
|
17210
17363
|
*/
|
|
17211
|
-
listv1alpha1User(
|
|
17364
|
+
listv1alpha1User(requestParameters?: V1alpha1UserApiListv1alpha1UserRequest, options?: AxiosRequestConfig): AxiosPromise<UserList>;
|
|
17212
17365
|
/**
|
|
17213
17366
|
* Update v1alpha1/User
|
|
17214
|
-
* @param {
|
|
17215
|
-
* @param {User} [user] Updated user
|
|
17367
|
+
* @param {V1alpha1UserApiUpdatev1alpha1UserRequest} requestParameters Request parameters.
|
|
17216
17368
|
* @param {*} [options] Override http request option.
|
|
17217
17369
|
* @throws {RequiredError}
|
|
17218
17370
|
*/
|
|
17219
|
-
updatev1alpha1User(
|
|
17371
|
+
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
17220
17372
|
};
|
|
17221
17373
|
/**
|
|
17222
17374
|
* Request parameters for createv1alpha1User operation in V1alpha1UserApi.
|
|
@@ -17356,4 +17508,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
17356
17508
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
17357
17509
|
}
|
|
17358
17510
|
|
|
17359
|
-
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, 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, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, 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, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, 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 };
|
|
17511
|
+
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, 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, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, DetailedUser, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, ListedUser, ListedUserList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, 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, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, 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 };
|