@halo-dev/api-client 0.0.36 → 0.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +454 -36
- package/dist/index.d.ts +834 -57
- package/dist/index.mjs +447 -37
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -260,11 +260,17 @@ interface AttachmentStatus {
|
|
|
260
260
|
* Do not edit the class manually.
|
|
261
261
|
*/
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* Metadata information
|
|
264
264
|
* @export
|
|
265
265
|
* @interface Metadata
|
|
266
266
|
*/
|
|
267
267
|
interface Metadata {
|
|
268
|
+
/**
|
|
269
|
+
* The name field will be generated automatically according to the given generateName field
|
|
270
|
+
* @type {string}
|
|
271
|
+
* @memberof Metadata
|
|
272
|
+
*/
|
|
273
|
+
generateName?: string;
|
|
268
274
|
/**
|
|
269
275
|
*
|
|
270
276
|
* @type {Array<string>}
|
|
@@ -272,11 +278,11 @@ interface Metadata {
|
|
|
272
278
|
*/
|
|
273
279
|
finalizers?: Array<string> | null;
|
|
274
280
|
/**
|
|
275
|
-
*
|
|
281
|
+
* Metadata name
|
|
276
282
|
* @type {string}
|
|
277
283
|
* @memberof Metadata
|
|
278
284
|
*/
|
|
279
|
-
name
|
|
285
|
+
name?: string;
|
|
280
286
|
/**
|
|
281
287
|
*
|
|
282
288
|
* @type {{ [key: string]: string; }}
|
|
@@ -2149,6 +2155,180 @@ interface License {
|
|
|
2149
2155
|
url?: string;
|
|
2150
2156
|
}
|
|
2151
2157
|
|
|
2158
|
+
/**
|
|
2159
|
+
* Halo Next API
|
|
2160
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2161
|
+
*
|
|
2162
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2163
|
+
*
|
|
2164
|
+
*
|
|
2165
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2166
|
+
* https://openapi-generator.tech
|
|
2167
|
+
* Do not edit the class manually.
|
|
2168
|
+
*/
|
|
2169
|
+
/**
|
|
2170
|
+
*
|
|
2171
|
+
* @export
|
|
2172
|
+
* @interface LinkSpec
|
|
2173
|
+
*/
|
|
2174
|
+
interface LinkSpec {
|
|
2175
|
+
/**
|
|
2176
|
+
*
|
|
2177
|
+
* @type {string}
|
|
2178
|
+
* @memberof LinkSpec
|
|
2179
|
+
*/
|
|
2180
|
+
url: string;
|
|
2181
|
+
/**
|
|
2182
|
+
*
|
|
2183
|
+
* @type {string}
|
|
2184
|
+
* @memberof LinkSpec
|
|
2185
|
+
*/
|
|
2186
|
+
displayName: string;
|
|
2187
|
+
/**
|
|
2188
|
+
*
|
|
2189
|
+
* @type {string}
|
|
2190
|
+
* @memberof LinkSpec
|
|
2191
|
+
*/
|
|
2192
|
+
logo?: string;
|
|
2193
|
+
/**
|
|
2194
|
+
*
|
|
2195
|
+
* @type {string}
|
|
2196
|
+
* @memberof LinkSpec
|
|
2197
|
+
*/
|
|
2198
|
+
description?: string;
|
|
2199
|
+
/**
|
|
2200
|
+
*
|
|
2201
|
+
* @type {number}
|
|
2202
|
+
* @memberof LinkSpec
|
|
2203
|
+
*/
|
|
2204
|
+
priority?: number;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
/**
|
|
2208
|
+
* Halo Next API
|
|
2209
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2210
|
+
*
|
|
2211
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2212
|
+
*
|
|
2213
|
+
*
|
|
2214
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2215
|
+
* https://openapi-generator.tech
|
|
2216
|
+
* Do not edit the class manually.
|
|
2217
|
+
*/
|
|
2218
|
+
|
|
2219
|
+
/**
|
|
2220
|
+
*
|
|
2221
|
+
* @export
|
|
2222
|
+
* @interface Link
|
|
2223
|
+
*/
|
|
2224
|
+
interface Link {
|
|
2225
|
+
/**
|
|
2226
|
+
*
|
|
2227
|
+
* @type {LinkSpec}
|
|
2228
|
+
* @memberof Link
|
|
2229
|
+
*/
|
|
2230
|
+
spec?: LinkSpec;
|
|
2231
|
+
/**
|
|
2232
|
+
*
|
|
2233
|
+
* @type {string}
|
|
2234
|
+
* @memberof Link
|
|
2235
|
+
*/
|
|
2236
|
+
apiVersion: string;
|
|
2237
|
+
/**
|
|
2238
|
+
*
|
|
2239
|
+
* @type {string}
|
|
2240
|
+
* @memberof Link
|
|
2241
|
+
*/
|
|
2242
|
+
kind: string;
|
|
2243
|
+
/**
|
|
2244
|
+
*
|
|
2245
|
+
* @type {Metadata}
|
|
2246
|
+
* @memberof Link
|
|
2247
|
+
*/
|
|
2248
|
+
metadata: Metadata;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
/**
|
|
2252
|
+
* Halo Next API
|
|
2253
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2254
|
+
*
|
|
2255
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2256
|
+
*
|
|
2257
|
+
*
|
|
2258
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2259
|
+
* https://openapi-generator.tech
|
|
2260
|
+
* Do not edit the class manually.
|
|
2261
|
+
*/
|
|
2262
|
+
/**
|
|
2263
|
+
*
|
|
2264
|
+
* @export
|
|
2265
|
+
* @interface LinkGroupSpec
|
|
2266
|
+
*/
|
|
2267
|
+
interface LinkGroupSpec {
|
|
2268
|
+
/**
|
|
2269
|
+
*
|
|
2270
|
+
* @type {string}
|
|
2271
|
+
* @memberof LinkGroupSpec
|
|
2272
|
+
*/
|
|
2273
|
+
displayName: string;
|
|
2274
|
+
/**
|
|
2275
|
+
*
|
|
2276
|
+
* @type {number}
|
|
2277
|
+
* @memberof LinkGroupSpec
|
|
2278
|
+
*/
|
|
2279
|
+
priority?: number;
|
|
2280
|
+
/**
|
|
2281
|
+
* Names of links below this group.
|
|
2282
|
+
* @type {Array<string>}
|
|
2283
|
+
* @memberof LinkGroupSpec
|
|
2284
|
+
*/
|
|
2285
|
+
links?: Array<string>;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
/**
|
|
2289
|
+
* Halo Next API
|
|
2290
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2291
|
+
*
|
|
2292
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2293
|
+
*
|
|
2294
|
+
*
|
|
2295
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2296
|
+
* https://openapi-generator.tech
|
|
2297
|
+
* Do not edit the class manually.
|
|
2298
|
+
*/
|
|
2299
|
+
|
|
2300
|
+
/**
|
|
2301
|
+
*
|
|
2302
|
+
* @export
|
|
2303
|
+
* @interface LinkGroup
|
|
2304
|
+
*/
|
|
2305
|
+
interface LinkGroup {
|
|
2306
|
+
/**
|
|
2307
|
+
*
|
|
2308
|
+
* @type {LinkGroupSpec}
|
|
2309
|
+
* @memberof LinkGroup
|
|
2310
|
+
*/
|
|
2311
|
+
spec?: LinkGroupSpec;
|
|
2312
|
+
/**
|
|
2313
|
+
*
|
|
2314
|
+
* @type {string}
|
|
2315
|
+
* @memberof LinkGroup
|
|
2316
|
+
*/
|
|
2317
|
+
apiVersion: string;
|
|
2318
|
+
/**
|
|
2319
|
+
*
|
|
2320
|
+
* @type {string}
|
|
2321
|
+
* @memberof LinkGroup
|
|
2322
|
+
*/
|
|
2323
|
+
kind: string;
|
|
2324
|
+
/**
|
|
2325
|
+
*
|
|
2326
|
+
* @type {Metadata}
|
|
2327
|
+
* @memberof LinkGroup
|
|
2328
|
+
*/
|
|
2329
|
+
metadata: Metadata;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2152
2332
|
/**
|
|
2153
2333
|
* Halo Next API
|
|
2154
2334
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -7146,8 +7326,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7146
7326
|
/**
|
|
7147
7327
|
* List plugins using query criteria and sort params
|
|
7148
7328
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7149
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7150
7329
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7330
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7151
7331
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7152
7332
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7153
7333
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7155,7 +7335,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7155
7335
|
* @param {*} [options] Override http request option.
|
|
7156
7336
|
* @throws {RequiredError}
|
|
7157
7337
|
*/
|
|
7158
|
-
listPlugins: (sort?: Array<string>,
|
|
7338
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7159
7339
|
};
|
|
7160
7340
|
/**
|
|
7161
7341
|
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
@@ -7172,8 +7352,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7172
7352
|
/**
|
|
7173
7353
|
* List plugins using query criteria and sort params
|
|
7174
7354
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7175
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7176
7355
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7356
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7177
7357
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7178
7358
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7179
7359
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7181,7 +7361,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7181
7361
|
* @param {*} [options] Override http request option.
|
|
7182
7362
|
* @throws {RequiredError}
|
|
7183
7363
|
*/
|
|
7184
|
-
listPlugins(sort?: Array<string>,
|
|
7364
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7185
7365
|
};
|
|
7186
7366
|
/**
|
|
7187
7367
|
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -7198,8 +7378,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7198
7378
|
/**
|
|
7199
7379
|
* List plugins using query criteria and sort params
|
|
7200
7380
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7201
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7202
7381
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7382
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7203
7383
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7204
7384
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7205
7385
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7207,7 +7387,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7207
7387
|
* @param {*} [options] Override http request option.
|
|
7208
7388
|
* @throws {RequiredError}
|
|
7209
7389
|
*/
|
|
7210
|
-
listPlugins(sort?: Array<string>,
|
|
7390
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7211
7391
|
};
|
|
7212
7392
|
/**
|
|
7213
7393
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7234,18 +7414,18 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7234
7414
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7235
7415
|
*/
|
|
7236
7416
|
readonly sort?: Array<string>;
|
|
7237
|
-
/**
|
|
7238
|
-
* Keyword of plugin name or description
|
|
7239
|
-
* @type {string}
|
|
7240
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7241
|
-
*/
|
|
7242
|
-
readonly keyword?: string;
|
|
7243
7417
|
/**
|
|
7244
7418
|
* Whether the plugin is enabled
|
|
7245
7419
|
* @type {boolean}
|
|
7246
7420
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7247
7421
|
*/
|
|
7248
7422
|
readonly enabled?: boolean;
|
|
7423
|
+
/**
|
|
7424
|
+
* Keyword of plugin name or description
|
|
7425
|
+
* @type {string}
|
|
7426
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7427
|
+
*/
|
|
7428
|
+
readonly keyword?: string;
|
|
7249
7429
|
/**
|
|
7250
7430
|
* Size of one page. Zero indicates no limit.
|
|
7251
7431
|
* @type {number}
|
|
@@ -7311,13 +7491,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7311
7491
|
/**
|
|
7312
7492
|
* List posts.
|
|
7313
7493
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7314
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7315
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7316
7494
|
* @param {Array<string>} [tag]
|
|
7495
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7496
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7497
|
+
* @param {Array<string>} [contributor]
|
|
7317
7498
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7318
7499
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7319
7500
|
* @param {Array<string>} [category]
|
|
7320
|
-
* @param {Array<string>} [contributor]
|
|
7321
7501
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7322
7502
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7323
7503
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7325,7 +7505,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7325
7505
|
* @param {*} [options] Override http request option.
|
|
7326
7506
|
* @throws {RequiredError}
|
|
7327
7507
|
*/
|
|
7328
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7508
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7329
7509
|
/**
|
|
7330
7510
|
* Publish a post.
|
|
7331
7511
|
* @param {string} name
|
|
@@ -7357,13 +7537,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7357
7537
|
/**
|
|
7358
7538
|
* List posts.
|
|
7359
7539
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7360
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7361
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7362
7540
|
* @param {Array<string>} [tag]
|
|
7541
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7542
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7543
|
+
* @param {Array<string>} [contributor]
|
|
7363
7544
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7364
7545
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7365
7546
|
* @param {Array<string>} [category]
|
|
7366
|
-
* @param {Array<string>} [contributor]
|
|
7367
7547
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7368
7548
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7369
7549
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7371,7 +7551,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7371
7551
|
* @param {*} [options] Override http request option.
|
|
7372
7552
|
* @throws {RequiredError}
|
|
7373
7553
|
*/
|
|
7374
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7554
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
7375
7555
|
/**
|
|
7376
7556
|
* Publish a post.
|
|
7377
7557
|
* @param {string} name
|
|
@@ -7403,13 +7583,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7403
7583
|
/**
|
|
7404
7584
|
* List posts.
|
|
7405
7585
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7406
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7407
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7408
7586
|
* @param {Array<string>} [tag]
|
|
7587
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7588
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7589
|
+
* @param {Array<string>} [contributor]
|
|
7409
7590
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7410
7591
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7411
7592
|
* @param {Array<string>} [category]
|
|
7412
|
-
* @param {Array<string>} [contributor]
|
|
7413
7593
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7414
7594
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7415
7595
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7417,7 +7597,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7417
7597
|
* @param {*} [options] Override http request option.
|
|
7418
7598
|
* @throws {RequiredError}
|
|
7419
7599
|
*/
|
|
7420
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7600
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
7421
7601
|
/**
|
|
7422
7602
|
* Publish a post.
|
|
7423
7603
|
* @param {string} name
|
|
@@ -7460,23 +7640,29 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7460
7640
|
*/
|
|
7461
7641
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7462
7642
|
/**
|
|
7463
|
-
*
|
|
7464
|
-
* @type {string}
|
|
7643
|
+
*
|
|
7644
|
+
* @type {Array<string>}
|
|
7465
7645
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7466
7646
|
*/
|
|
7467
|
-
readonly
|
|
7647
|
+
readonly tag?: Array<string>;
|
|
7468
7648
|
/**
|
|
7469
7649
|
*
|
|
7470
7650
|
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7471
7651
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7472
7652
|
*/
|
|
7473
7653
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7654
|
+
/**
|
|
7655
|
+
* Posts filtered by keyword.
|
|
7656
|
+
* @type {string}
|
|
7657
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7658
|
+
*/
|
|
7659
|
+
readonly keyword?: string;
|
|
7474
7660
|
/**
|
|
7475
7661
|
*
|
|
7476
7662
|
* @type {Array<string>}
|
|
7477
7663
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7478
7664
|
*/
|
|
7479
|
-
readonly
|
|
7665
|
+
readonly contributor?: Array<string>;
|
|
7480
7666
|
/**
|
|
7481
7667
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7482
7668
|
* @type {boolean}
|
|
@@ -7495,12 +7681,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7495
7681
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7496
7682
|
*/
|
|
7497
7683
|
readonly category?: Array<string>;
|
|
7498
|
-
/**
|
|
7499
|
-
*
|
|
7500
|
-
* @type {Array<string>}
|
|
7501
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7502
|
-
*/
|
|
7503
|
-
readonly contributor?: Array<string>;
|
|
7504
7684
|
/**
|
|
7505
7685
|
* Size of one page. Zero indicates no limit.
|
|
7506
7686
|
* @type {number}
|
|
@@ -7719,11 +7899,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7719
7899
|
/**
|
|
7720
7900
|
* List single pages.
|
|
7721
7901
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7722
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7723
7902
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7903
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7904
|
+
* @param {Array<string>} [contributor]
|
|
7724
7905
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7725
7906
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7726
|
-
* @param {Array<string>} [contributor]
|
|
7727
7907
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7728
7908
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7729
7909
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7731,7 +7911,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7731
7911
|
* @param {*} [options] Override http request option.
|
|
7732
7912
|
* @throws {RequiredError}
|
|
7733
7913
|
*/
|
|
7734
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7914
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7735
7915
|
/**
|
|
7736
7916
|
* Publish a single page.
|
|
7737
7917
|
* @param {string} name
|
|
@@ -7763,11 +7943,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7763
7943
|
/**
|
|
7764
7944
|
* List single pages.
|
|
7765
7945
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7766
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7767
7946
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7947
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7948
|
+
* @param {Array<string>} [contributor]
|
|
7768
7949
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7769
7950
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7770
|
-
* @param {Array<string>} [contributor]
|
|
7771
7951
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7772
7952
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7773
7953
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7775,7 +7955,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7775
7955
|
* @param {*} [options] Override http request option.
|
|
7776
7956
|
* @throws {RequiredError}
|
|
7777
7957
|
*/
|
|
7778
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7958
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7779
7959
|
/**
|
|
7780
7960
|
* Publish a single page.
|
|
7781
7961
|
* @param {string} name
|
|
@@ -7807,11 +7987,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7807
7987
|
/**
|
|
7808
7988
|
* List single pages.
|
|
7809
7989
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7810
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7811
7990
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7991
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7992
|
+
* @param {Array<string>} [contributor]
|
|
7812
7993
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7813
7994
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7814
|
-
* @param {Array<string>} [contributor]
|
|
7815
7995
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7816
7996
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7817
7997
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7819,7 +7999,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7819
7999
|
* @param {*} [options] Override http request option.
|
|
7820
8000
|
* @throws {RequiredError}
|
|
7821
8001
|
*/
|
|
7822
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8002
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7823
8003
|
/**
|
|
7824
8004
|
* Publish a single page.
|
|
7825
8005
|
* @param {string} name
|
|
@@ -7861,6 +8041,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7861
8041
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7862
8042
|
*/
|
|
7863
8043
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8044
|
+
/**
|
|
8045
|
+
*
|
|
8046
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8047
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8048
|
+
*/
|
|
8049
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7864
8050
|
/**
|
|
7865
8051
|
* SinglePages filtered by keyword.
|
|
7866
8052
|
* @type {string}
|
|
@@ -7869,10 +8055,10 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7869
8055
|
readonly keyword?: string;
|
|
7870
8056
|
/**
|
|
7871
8057
|
*
|
|
7872
|
-
* @type {
|
|
8058
|
+
* @type {Array<string>}
|
|
7873
8059
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7874
8060
|
*/
|
|
7875
|
-
readonly
|
|
8061
|
+
readonly contributor?: Array<string>;
|
|
7876
8062
|
/**
|
|
7877
8063
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7878
8064
|
* @type {boolean}
|
|
@@ -7885,12 +8071,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7885
8071
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7886
8072
|
*/
|
|
7887
8073
|
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7888
|
-
/**
|
|
7889
|
-
*
|
|
7890
|
-
* @type {Array<string>}
|
|
7891
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7892
|
-
*/
|
|
7893
|
-
readonly contributor?: Array<string>;
|
|
7894
8074
|
/**
|
|
7895
8075
|
* Size of one page. Zero indicates no limit.
|
|
7896
8076
|
* @type {number}
|
|
@@ -8071,6 +8251,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8071
8251
|
* @throws {RequiredError}
|
|
8072
8252
|
*/
|
|
8073
8253
|
reloadThemeSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8254
|
+
/**
|
|
8255
|
+
* Upgrade theme
|
|
8256
|
+
* @param {string} name
|
|
8257
|
+
* @param {any} file
|
|
8258
|
+
* @param {*} [options] Override http request option.
|
|
8259
|
+
* @throws {RequiredError}
|
|
8260
|
+
*/
|
|
8261
|
+
upgradeTheme: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8074
8262
|
};
|
|
8075
8263
|
/**
|
|
8076
8264
|
* ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
|
|
@@ -8102,6 +8290,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8102
8290
|
* @throws {RequiredError}
|
|
8103
8291
|
*/
|
|
8104
8292
|
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
8293
|
+
/**
|
|
8294
|
+
* Upgrade theme
|
|
8295
|
+
* @param {string} name
|
|
8296
|
+
* @param {any} file
|
|
8297
|
+
* @param {*} [options] Override http request option.
|
|
8298
|
+
* @throws {RequiredError}
|
|
8299
|
+
*/
|
|
8300
|
+
upgradeTheme(name: string, file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8105
8301
|
};
|
|
8106
8302
|
/**
|
|
8107
8303
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -8133,6 +8329,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8133
8329
|
* @throws {RequiredError}
|
|
8134
8330
|
*/
|
|
8135
8331
|
reloadThemeSetting(name: string, options?: any): AxiosPromise<Theme>;
|
|
8332
|
+
/**
|
|
8333
|
+
* Upgrade theme
|
|
8334
|
+
* @param {string} name
|
|
8335
|
+
* @param {any} file
|
|
8336
|
+
* @param {*} [options] Override http request option.
|
|
8337
|
+
* @throws {RequiredError}
|
|
8338
|
+
*/
|
|
8339
|
+
upgradeTheme(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
8136
8340
|
};
|
|
8137
8341
|
/**
|
|
8138
8342
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -8198,9 +8402,28 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest {
|
|
|
8198
8402
|
readonly name: string;
|
|
8199
8403
|
}
|
|
8200
8404
|
/**
|
|
8201
|
-
*
|
|
8405
|
+
* Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
8202
8406
|
* @export
|
|
8203
|
-
* @
|
|
8407
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest
|
|
8408
|
+
*/
|
|
8409
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest {
|
|
8410
|
+
/**
|
|
8411
|
+
*
|
|
8412
|
+
* @type {string}
|
|
8413
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
|
|
8414
|
+
*/
|
|
8415
|
+
readonly name: string;
|
|
8416
|
+
/**
|
|
8417
|
+
*
|
|
8418
|
+
* @type {any}
|
|
8419
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
|
|
8420
|
+
*/
|
|
8421
|
+
readonly file: any;
|
|
8422
|
+
}
|
|
8423
|
+
/**
|
|
8424
|
+
* ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
8425
|
+
* @export
|
|
8426
|
+
* @class ApiConsoleHaloRunV1alpha1ThemeApi
|
|
8204
8427
|
* @extends {BaseAPI}
|
|
8205
8428
|
*/
|
|
8206
8429
|
declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
@@ -8228,6 +8451,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
8228
8451
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
8229
8452
|
*/
|
|
8230
8453
|
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
8454
|
+
/**
|
|
8455
|
+
* Upgrade theme
|
|
8456
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
|
|
8457
|
+
* @param {*} [options] Override http request option.
|
|
8458
|
+
* @throws {RequiredError}
|
|
8459
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
8460
|
+
*/
|
|
8461
|
+
upgradeTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8231
8462
|
}
|
|
8232
8463
|
|
|
8233
8464
|
/**
|
|
@@ -10799,6 +11030,552 @@ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
10799
11030
|
updatecontentHaloRunV1alpha1Tag(requestParameters: ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
10800
11031
|
}
|
|
10801
11032
|
|
|
11033
|
+
/**
|
|
11034
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
11035
|
+
* @export
|
|
11036
|
+
*/
|
|
11037
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11038
|
+
/**
|
|
11039
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11040
|
+
* @param {Link} [link] Fresh link
|
|
11041
|
+
* @param {*} [options] Override http request option.
|
|
11042
|
+
* @throws {RequiredError}
|
|
11043
|
+
*/
|
|
11044
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11045
|
+
/**
|
|
11046
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11047
|
+
* @param {string} name Name of link
|
|
11048
|
+
* @param {*} [options] Override http request option.
|
|
11049
|
+
* @throws {RequiredError}
|
|
11050
|
+
*/
|
|
11051
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11052
|
+
/**
|
|
11053
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11054
|
+
* @param {string} name Name of link
|
|
11055
|
+
* @param {*} [options] Override http request option.
|
|
11056
|
+
* @throws {RequiredError}
|
|
11057
|
+
*/
|
|
11058
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11059
|
+
/**
|
|
11060
|
+
* List core.halo.run/v1alpha1/Link
|
|
11061
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11062
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11063
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11064
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11065
|
+
* @param {*} [options] Override http request option.
|
|
11066
|
+
* @throws {RequiredError}
|
|
11067
|
+
*/
|
|
11068
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11069
|
+
/**
|
|
11070
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11071
|
+
* @param {string} name Name of link
|
|
11072
|
+
* @param {Link} [link] Updated link
|
|
11073
|
+
* @param {*} [options] Override http request option.
|
|
11074
|
+
* @throws {RequiredError}
|
|
11075
|
+
*/
|
|
11076
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11077
|
+
};
|
|
11078
|
+
/**
|
|
11079
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
11080
|
+
* @export
|
|
11081
|
+
*/
|
|
11082
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
11083
|
+
/**
|
|
11084
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11085
|
+
* @param {Link} [link] Fresh link
|
|
11086
|
+
* @param {*} [options] Override http request option.
|
|
11087
|
+
* @throws {RequiredError}
|
|
11088
|
+
*/
|
|
11089
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
11090
|
+
/**
|
|
11091
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11092
|
+
* @param {string} name Name of link
|
|
11093
|
+
* @param {*} [options] Override http request option.
|
|
11094
|
+
* @throws {RequiredError}
|
|
11095
|
+
*/
|
|
11096
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11097
|
+
/**
|
|
11098
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11099
|
+
* @param {string} name Name of link
|
|
11100
|
+
* @param {*} [options] Override http request option.
|
|
11101
|
+
* @throws {RequiredError}
|
|
11102
|
+
*/
|
|
11103
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
11104
|
+
/**
|
|
11105
|
+
* List core.halo.run/v1alpha1/Link
|
|
11106
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11107
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11108
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11109
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11110
|
+
* @param {*} [options] Override http request option.
|
|
11111
|
+
* @throws {RequiredError}
|
|
11112
|
+
*/
|
|
11113
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
11114
|
+
/**
|
|
11115
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11116
|
+
* @param {string} name Name of link
|
|
11117
|
+
* @param {Link} [link] Updated link
|
|
11118
|
+
* @param {*} [options] Override http request option.
|
|
11119
|
+
* @throws {RequiredError}
|
|
11120
|
+
*/
|
|
11121
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
11122
|
+
};
|
|
11123
|
+
/**
|
|
11124
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
11125
|
+
* @export
|
|
11126
|
+
*/
|
|
11127
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11128
|
+
/**
|
|
11129
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11130
|
+
* @param {Link} [link] Fresh link
|
|
11131
|
+
* @param {*} [options] Override http request option.
|
|
11132
|
+
* @throws {RequiredError}
|
|
11133
|
+
*/
|
|
11134
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
11135
|
+
/**
|
|
11136
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11137
|
+
* @param {string} name Name of link
|
|
11138
|
+
* @param {*} [options] Override http request option.
|
|
11139
|
+
* @throws {RequiredError}
|
|
11140
|
+
*/
|
|
11141
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
11142
|
+
/**
|
|
11143
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11144
|
+
* @param {string} name Name of link
|
|
11145
|
+
* @param {*} [options] Override http request option.
|
|
11146
|
+
* @throws {RequiredError}
|
|
11147
|
+
*/
|
|
11148
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
11149
|
+
/**
|
|
11150
|
+
* List core.halo.run/v1alpha1/Link
|
|
11151
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11152
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11153
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11154
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11155
|
+
* @param {*} [options] Override http request option.
|
|
11156
|
+
* @throws {RequiredError}
|
|
11157
|
+
*/
|
|
11158
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
11159
|
+
/**
|
|
11160
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11161
|
+
* @param {string} name Name of link
|
|
11162
|
+
* @param {Link} [link] Updated link
|
|
11163
|
+
* @param {*} [options] Override http request option.
|
|
11164
|
+
* @throws {RequiredError}
|
|
11165
|
+
*/
|
|
11166
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
11167
|
+
};
|
|
11168
|
+
/**
|
|
11169
|
+
* Request parameters for createcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11170
|
+
* @export
|
|
11171
|
+
* @interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest
|
|
11172
|
+
*/
|
|
11173
|
+
interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest {
|
|
11174
|
+
/**
|
|
11175
|
+
* Fresh link
|
|
11176
|
+
* @type {Link}
|
|
11177
|
+
* @memberof CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1Link
|
|
11178
|
+
*/
|
|
11179
|
+
readonly link?: Link;
|
|
11180
|
+
}
|
|
11181
|
+
/**
|
|
11182
|
+
* Request parameters for deletecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11183
|
+
* @export
|
|
11184
|
+
* @interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest
|
|
11185
|
+
*/
|
|
11186
|
+
interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest {
|
|
11187
|
+
/**
|
|
11188
|
+
* Name of link
|
|
11189
|
+
* @type {string}
|
|
11190
|
+
* @memberof CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1Link
|
|
11191
|
+
*/
|
|
11192
|
+
readonly name: string;
|
|
11193
|
+
}
|
|
11194
|
+
/**
|
|
11195
|
+
* Request parameters for getcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11196
|
+
* @export
|
|
11197
|
+
* @interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest
|
|
11198
|
+
*/
|
|
11199
|
+
interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest {
|
|
11200
|
+
/**
|
|
11201
|
+
* Name of link
|
|
11202
|
+
* @type {string}
|
|
11203
|
+
* @memberof CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1Link
|
|
11204
|
+
*/
|
|
11205
|
+
readonly name: string;
|
|
11206
|
+
}
|
|
11207
|
+
/**
|
|
11208
|
+
* Request parameters for listcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11209
|
+
* @export
|
|
11210
|
+
* @interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest
|
|
11211
|
+
*/
|
|
11212
|
+
interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest {
|
|
11213
|
+
/**
|
|
11214
|
+
* The page number. Zero indicates no page.
|
|
11215
|
+
* @type {number}
|
|
11216
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11217
|
+
*/
|
|
11218
|
+
readonly page?: number;
|
|
11219
|
+
/**
|
|
11220
|
+
* Size of one page. Zero indicates no limit.
|
|
11221
|
+
* @type {number}
|
|
11222
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11223
|
+
*/
|
|
11224
|
+
readonly size?: number;
|
|
11225
|
+
/**
|
|
11226
|
+
* Label selector for filtering.
|
|
11227
|
+
* @type {Array<string>}
|
|
11228
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11229
|
+
*/
|
|
11230
|
+
readonly labelSelector?: Array<string>;
|
|
11231
|
+
/**
|
|
11232
|
+
* Field selector for filtering.
|
|
11233
|
+
* @type {Array<string>}
|
|
11234
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
11235
|
+
*/
|
|
11236
|
+
readonly fieldSelector?: Array<string>;
|
|
11237
|
+
}
|
|
11238
|
+
/**
|
|
11239
|
+
* Request parameters for updatecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
11240
|
+
* @export
|
|
11241
|
+
* @interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest
|
|
11242
|
+
*/
|
|
11243
|
+
interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest {
|
|
11244
|
+
/**
|
|
11245
|
+
* Name of link
|
|
11246
|
+
* @type {string}
|
|
11247
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
11248
|
+
*/
|
|
11249
|
+
readonly name: string;
|
|
11250
|
+
/**
|
|
11251
|
+
* Updated link
|
|
11252
|
+
* @type {Link}
|
|
11253
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
11254
|
+
*/
|
|
11255
|
+
readonly link?: Link;
|
|
11256
|
+
}
|
|
11257
|
+
/**
|
|
11258
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
11259
|
+
* @export
|
|
11260
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
11261
|
+
* @extends {BaseAPI}
|
|
11262
|
+
*/
|
|
11263
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
11264
|
+
/**
|
|
11265
|
+
* Create core.halo.run/v1alpha1/Link
|
|
11266
|
+
* @param {CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11267
|
+
* @param {*} [options] Override http request option.
|
|
11268
|
+
* @throws {RequiredError}
|
|
11269
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11270
|
+
*/
|
|
11271
|
+
createcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
11272
|
+
/**
|
|
11273
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
11274
|
+
* @param {CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11275
|
+
* @param {*} [options] Override http request option.
|
|
11276
|
+
* @throws {RequiredError}
|
|
11277
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11278
|
+
*/
|
|
11279
|
+
deletecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11280
|
+
/**
|
|
11281
|
+
* Get core.halo.run/v1alpha1/Link
|
|
11282
|
+
* @param {CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11283
|
+
* @param {*} [options] Override http request option.
|
|
11284
|
+
* @throws {RequiredError}
|
|
11285
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11286
|
+
*/
|
|
11287
|
+
getcoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
11288
|
+
/**
|
|
11289
|
+
* List core.halo.run/v1alpha1/Link
|
|
11290
|
+
* @param {CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11291
|
+
* @param {*} [options] Override http request option.
|
|
11292
|
+
* @throws {RequiredError}
|
|
11293
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11294
|
+
*/
|
|
11295
|
+
listcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
11296
|
+
/**
|
|
11297
|
+
* Update core.halo.run/v1alpha1/Link
|
|
11298
|
+
* @param {CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
11299
|
+
* @param {*} [options] Override http request option.
|
|
11300
|
+
* @throws {RequiredError}
|
|
11301
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
11302
|
+
*/
|
|
11303
|
+
updatecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
11304
|
+
}
|
|
11305
|
+
|
|
11306
|
+
/**
|
|
11307
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
11308
|
+
* @export
|
|
11309
|
+
*/
|
|
11310
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11311
|
+
/**
|
|
11312
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11313
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
11314
|
+
* @param {*} [options] Override http request option.
|
|
11315
|
+
* @throws {RequiredError}
|
|
11316
|
+
*/
|
|
11317
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11318
|
+
/**
|
|
11319
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11320
|
+
* @param {string} name Name of linkgroup
|
|
11321
|
+
* @param {*} [options] Override http request option.
|
|
11322
|
+
* @throws {RequiredError}
|
|
11323
|
+
*/
|
|
11324
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11325
|
+
/**
|
|
11326
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11327
|
+
* @param {string} name Name of linkgroup
|
|
11328
|
+
* @param {*} [options] Override http request option.
|
|
11329
|
+
* @throws {RequiredError}
|
|
11330
|
+
*/
|
|
11331
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11332
|
+
/**
|
|
11333
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11334
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11335
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11336
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11337
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11338
|
+
* @param {*} [options] Override http request option.
|
|
11339
|
+
* @throws {RequiredError}
|
|
11340
|
+
*/
|
|
11341
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11342
|
+
/**
|
|
11343
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11344
|
+
* @param {string} name Name of linkgroup
|
|
11345
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
11346
|
+
* @param {*} [options] Override http request option.
|
|
11347
|
+
* @throws {RequiredError}
|
|
11348
|
+
*/
|
|
11349
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11350
|
+
};
|
|
11351
|
+
/**
|
|
11352
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
11353
|
+
* @export
|
|
11354
|
+
*/
|
|
11355
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
11356
|
+
/**
|
|
11357
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11358
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
11359
|
+
* @param {*} [options] Override http request option.
|
|
11360
|
+
* @throws {RequiredError}
|
|
11361
|
+
*/
|
|
11362
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
11363
|
+
/**
|
|
11364
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11365
|
+
* @param {string} name Name of linkgroup
|
|
11366
|
+
* @param {*} [options] Override http request option.
|
|
11367
|
+
* @throws {RequiredError}
|
|
11368
|
+
*/
|
|
11369
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11370
|
+
/**
|
|
11371
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11372
|
+
* @param {string} name Name of linkgroup
|
|
11373
|
+
* @param {*} [options] Override http request option.
|
|
11374
|
+
* @throws {RequiredError}
|
|
11375
|
+
*/
|
|
11376
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
11377
|
+
/**
|
|
11378
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11379
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11380
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11381
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11382
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11383
|
+
* @param {*} [options] Override http request option.
|
|
11384
|
+
* @throws {RequiredError}
|
|
11385
|
+
*/
|
|
11386
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
11387
|
+
/**
|
|
11388
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11389
|
+
* @param {string} name Name of linkgroup
|
|
11390
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
11391
|
+
* @param {*} [options] Override http request option.
|
|
11392
|
+
* @throws {RequiredError}
|
|
11393
|
+
*/
|
|
11394
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
11395
|
+
};
|
|
11396
|
+
/**
|
|
11397
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
11398
|
+
* @export
|
|
11399
|
+
*/
|
|
11400
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11401
|
+
/**
|
|
11402
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11403
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
11404
|
+
* @param {*} [options] Override http request option.
|
|
11405
|
+
* @throws {RequiredError}
|
|
11406
|
+
*/
|
|
11407
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
11408
|
+
/**
|
|
11409
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11410
|
+
* @param {string} name Name of linkgroup
|
|
11411
|
+
* @param {*} [options] Override http request option.
|
|
11412
|
+
* @throws {RequiredError}
|
|
11413
|
+
*/
|
|
11414
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
11415
|
+
/**
|
|
11416
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11417
|
+
* @param {string} name Name of linkgroup
|
|
11418
|
+
* @param {*} [options] Override http request option.
|
|
11419
|
+
* @throws {RequiredError}
|
|
11420
|
+
*/
|
|
11421
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
11422
|
+
/**
|
|
11423
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11424
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11425
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11426
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11427
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11428
|
+
* @param {*} [options] Override http request option.
|
|
11429
|
+
* @throws {RequiredError}
|
|
11430
|
+
*/
|
|
11431
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
11432
|
+
/**
|
|
11433
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11434
|
+
* @param {string} name Name of linkgroup
|
|
11435
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
11436
|
+
* @param {*} [options] Override http request option.
|
|
11437
|
+
* @throws {RequiredError}
|
|
11438
|
+
*/
|
|
11439
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
11440
|
+
};
|
|
11441
|
+
/**
|
|
11442
|
+
* Request parameters for createcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11443
|
+
* @export
|
|
11444
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest
|
|
11445
|
+
*/
|
|
11446
|
+
interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
11447
|
+
/**
|
|
11448
|
+
* Fresh linkgroup
|
|
11449
|
+
* @type {LinkGroup}
|
|
11450
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroup
|
|
11451
|
+
*/
|
|
11452
|
+
readonly linkGroup?: LinkGroup;
|
|
11453
|
+
}
|
|
11454
|
+
/**
|
|
11455
|
+
* Request parameters for deletecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11456
|
+
* @export
|
|
11457
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest
|
|
11458
|
+
*/
|
|
11459
|
+
interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest {
|
|
11460
|
+
/**
|
|
11461
|
+
* Name of linkgroup
|
|
11462
|
+
* @type {string}
|
|
11463
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroup
|
|
11464
|
+
*/
|
|
11465
|
+
readonly name: string;
|
|
11466
|
+
}
|
|
11467
|
+
/**
|
|
11468
|
+
* Request parameters for getcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11469
|
+
* @export
|
|
11470
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest
|
|
11471
|
+
*/
|
|
11472
|
+
interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest {
|
|
11473
|
+
/**
|
|
11474
|
+
* Name of linkgroup
|
|
11475
|
+
* @type {string}
|
|
11476
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroup
|
|
11477
|
+
*/
|
|
11478
|
+
readonly name: string;
|
|
11479
|
+
}
|
|
11480
|
+
/**
|
|
11481
|
+
* Request parameters for listcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11482
|
+
* @export
|
|
11483
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest
|
|
11484
|
+
*/
|
|
11485
|
+
interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest {
|
|
11486
|
+
/**
|
|
11487
|
+
* The page number. Zero indicates no page.
|
|
11488
|
+
* @type {number}
|
|
11489
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11490
|
+
*/
|
|
11491
|
+
readonly page?: number;
|
|
11492
|
+
/**
|
|
11493
|
+
* Size of one page. Zero indicates no limit.
|
|
11494
|
+
* @type {number}
|
|
11495
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11496
|
+
*/
|
|
11497
|
+
readonly size?: number;
|
|
11498
|
+
/**
|
|
11499
|
+
* Label selector for filtering.
|
|
11500
|
+
* @type {Array<string>}
|
|
11501
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11502
|
+
*/
|
|
11503
|
+
readonly labelSelector?: Array<string>;
|
|
11504
|
+
/**
|
|
11505
|
+
* Field selector for filtering.
|
|
11506
|
+
* @type {Array<string>}
|
|
11507
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
11508
|
+
*/
|
|
11509
|
+
readonly fieldSelector?: Array<string>;
|
|
11510
|
+
}
|
|
11511
|
+
/**
|
|
11512
|
+
* Request parameters for updatecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
11513
|
+
* @export
|
|
11514
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest
|
|
11515
|
+
*/
|
|
11516
|
+
interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
11517
|
+
/**
|
|
11518
|
+
* Name of linkgroup
|
|
11519
|
+
* @type {string}
|
|
11520
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
11521
|
+
*/
|
|
11522
|
+
readonly name: string;
|
|
11523
|
+
/**
|
|
11524
|
+
* Updated linkgroup
|
|
11525
|
+
* @type {LinkGroup}
|
|
11526
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
11527
|
+
*/
|
|
11528
|
+
readonly linkGroup?: LinkGroup;
|
|
11529
|
+
}
|
|
11530
|
+
/**
|
|
11531
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
11532
|
+
* @export
|
|
11533
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
11534
|
+
* @extends {BaseAPI}
|
|
11535
|
+
*/
|
|
11536
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
11537
|
+
/**
|
|
11538
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
11539
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11540
|
+
* @param {*} [options] Override http request option.
|
|
11541
|
+
* @throws {RequiredError}
|
|
11542
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11543
|
+
*/
|
|
11544
|
+
createcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
11545
|
+
/**
|
|
11546
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
11547
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11548
|
+
* @param {*} [options] Override http request option.
|
|
11549
|
+
* @throws {RequiredError}
|
|
11550
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11551
|
+
*/
|
|
11552
|
+
deletecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11553
|
+
/**
|
|
11554
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
11555
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11556
|
+
* @param {*} [options] Override http request option.
|
|
11557
|
+
* @throws {RequiredError}
|
|
11558
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11559
|
+
*/
|
|
11560
|
+
getcoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
11561
|
+
/**
|
|
11562
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
11563
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11564
|
+
* @param {*} [options] Override http request option.
|
|
11565
|
+
* @throws {RequiredError}
|
|
11566
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11567
|
+
*/
|
|
11568
|
+
listcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
11569
|
+
/**
|
|
11570
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
11571
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
11572
|
+
* @param {*} [options] Override http request option.
|
|
11573
|
+
* @throws {RequiredError}
|
|
11574
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
11575
|
+
*/
|
|
11576
|
+
updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
11577
|
+
}
|
|
11578
|
+
|
|
10802
11579
|
/**
|
|
10803
11580
|
* MetricsHaloRunV1alpha1CounterApi - axios parameter creator
|
|
10804
11581
|
* @export
|
|
@@ -15167,4 +15944,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15167
15944
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15168
15945
|
}
|
|
15169
15946
|
|
|
15170
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
15947
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Counter, CounterList, CounterRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|