@halo-dev/api-client 0.0.2 → 0.0.3
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 +237 -157
- package/dist/index.d.ts +343 -240
- package/dist/index.mjs +230 -154
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -66,6 +66,28 @@ const PluginStatusPhaseEnum = {
|
|
|
66
66
|
};
|
|
67
67
|
const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
68
68
|
return {
|
|
69
|
+
changePassword: async (name, changePasswordRequest, options = {}) => {
|
|
70
|
+
assertParamExists("changePassword", "name", name);
|
|
71
|
+
assertParamExists("changePassword", "changePasswordRequest", changePasswordRequest);
|
|
72
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/password`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
73
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
74
|
+
let baseOptions;
|
|
75
|
+
if (configuration) {
|
|
76
|
+
baseOptions = configuration.baseOptions;
|
|
77
|
+
}
|
|
78
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
79
|
+
const localVarHeaderParameter = {};
|
|
80
|
+
const localVarQueryParameter = {};
|
|
81
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
82
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
83
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
84
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
85
|
+
localVarRequestOptions.data = serializeDataIfNeeded(changePasswordRequest, localVarRequestOptions, configuration);
|
|
86
|
+
return {
|
|
87
|
+
url: toPathString(localVarUrlObj),
|
|
88
|
+
options: localVarRequestOptions
|
|
89
|
+
};
|
|
90
|
+
},
|
|
69
91
|
getCurrentUserDetail: async (options = {}) => {
|
|
70
92
|
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-`;
|
|
71
93
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -130,6 +152,10 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
130
152
|
const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
131
153
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
|
|
132
154
|
return {
|
|
155
|
+
async changePassword(name, changePasswordRequest, options) {
|
|
156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(name, changePasswordRequest, options);
|
|
157
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
158
|
+
},
|
|
133
159
|
async getCurrentUserDetail(options) {
|
|
134
160
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
|
|
135
161
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
@@ -147,6 +173,9 @@ const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
147
173
|
const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
148
174
|
const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
|
|
149
175
|
return {
|
|
176
|
+
changePassword(name, changePasswordRequest, options) {
|
|
177
|
+
return localVarFp.changePassword(name, changePasswordRequest, options).then((request) => request(axios, basePath));
|
|
178
|
+
},
|
|
150
179
|
getCurrentUserDetail(options) {
|
|
151
180
|
return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
|
|
152
181
|
},
|
|
@@ -159,6 +188,9 @@ const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios
|
|
|
159
188
|
};
|
|
160
189
|
};
|
|
161
190
|
class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
191
|
+
changePassword(name, changePasswordRequest, options) {
|
|
192
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
193
|
+
}
|
|
162
194
|
getCurrentUserDetail(options) {
|
|
163
195
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
|
|
164
196
|
}
|
|
@@ -169,10 +201,10 @@ class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
169
201
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
|
|
170
202
|
}
|
|
171
203
|
}
|
|
172
|
-
const
|
|
204
|
+
const AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator = function(configuration) {
|
|
173
205
|
return {
|
|
174
|
-
|
|
175
|
-
const localVarPath = `/apis/
|
|
206
|
+
createappleGuqingXyzV1alpha1Apple: async (apple, options = {}) => {
|
|
207
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples`;
|
|
176
208
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
177
209
|
let baseOptions;
|
|
178
210
|
if (configuration) {
|
|
@@ -185,15 +217,15 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
185
217
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
186
218
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
187
219
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
188
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
220
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
189
221
|
return {
|
|
190
222
|
url: toPathString(localVarUrlObj),
|
|
191
223
|
options: localVarRequestOptions
|
|
192
224
|
};
|
|
193
225
|
},
|
|
194
|
-
|
|
195
|
-
assertParamExists("
|
|
196
|
-
const localVarPath = `/apis/
|
|
226
|
+
deleteappleGuqingXyzV1alpha1Apple: async (name, options = {}) => {
|
|
227
|
+
assertParamExists("deleteappleGuqingXyzV1alpha1Apple", "name", name);
|
|
228
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
197
229
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
198
230
|
let baseOptions;
|
|
199
231
|
if (configuration) {
|
|
@@ -210,9 +242,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
210
242
|
options: localVarRequestOptions
|
|
211
243
|
};
|
|
212
244
|
},
|
|
213
|
-
|
|
214
|
-
assertParamExists("
|
|
215
|
-
const localVarPath = `/apis/
|
|
245
|
+
getappleGuqingXyzV1alpha1Apple: async (name, options = {}) => {
|
|
246
|
+
assertParamExists("getappleGuqingXyzV1alpha1Apple", "name", name);
|
|
247
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
216
248
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
217
249
|
let baseOptions;
|
|
218
250
|
if (configuration) {
|
|
@@ -229,8 +261,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
229
261
|
options: localVarRequestOptions
|
|
230
262
|
};
|
|
231
263
|
},
|
|
232
|
-
|
|
233
|
-
const localVarPath = `/apis/
|
|
264
|
+
listappleGuqingXyzV1alpha1Apple: async (page, size, sort, options = {}) => {
|
|
265
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples`;
|
|
234
266
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
235
267
|
let baseOptions;
|
|
236
268
|
if (configuration) {
|
|
@@ -256,9 +288,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
256
288
|
options: localVarRequestOptions
|
|
257
289
|
};
|
|
258
290
|
},
|
|
259
|
-
|
|
260
|
-
assertParamExists("
|
|
261
|
-
const localVarPath = `/apis/
|
|
291
|
+
updateappleGuqingXyzV1alpha1Apple: async (name, apple, options = {}) => {
|
|
292
|
+
assertParamExists("updateappleGuqingXyzV1alpha1Apple", "name", name);
|
|
293
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
262
294
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
263
295
|
let baseOptions;
|
|
264
296
|
if (configuration) {
|
|
@@ -271,7 +303,7 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
271
303
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
272
304
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
273
305
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
274
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
306
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
275
307
|
return {
|
|
276
308
|
url: toPathString(localVarUrlObj),
|
|
277
309
|
options: localVarRequestOptions
|
|
@@ -279,72 +311,116 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
279
311
|
}
|
|
280
312
|
};
|
|
281
313
|
};
|
|
282
|
-
const
|
|
283
|
-
const localVarAxiosParamCreator =
|
|
314
|
+
const AppleGuqingXyzV1alpha1AppleApiFp = function(configuration) {
|
|
315
|
+
const localVarAxiosParamCreator = AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator(configuration);
|
|
284
316
|
return {
|
|
285
|
-
async
|
|
286
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
317
|
+
async createappleGuqingXyzV1alpha1Apple(apple, options) {
|
|
318
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createappleGuqingXyzV1alpha1Apple(apple, options);
|
|
287
319
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
288
320
|
},
|
|
289
|
-
async
|
|
290
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
321
|
+
async deleteappleGuqingXyzV1alpha1Apple(name, options) {
|
|
322
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteappleGuqingXyzV1alpha1Apple(name, options);
|
|
291
323
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
292
324
|
},
|
|
293
|
-
async
|
|
294
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
325
|
+
async getappleGuqingXyzV1alpha1Apple(name, options) {
|
|
326
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getappleGuqingXyzV1alpha1Apple(name, options);
|
|
295
327
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
296
328
|
},
|
|
297
|
-
async
|
|
298
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
329
|
+
async listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
|
|
330
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listappleGuqingXyzV1alpha1Apple(page, size, sort, options);
|
|
299
331
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
300
332
|
},
|
|
301
|
-
async
|
|
302
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
333
|
+
async updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
|
|
334
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateappleGuqingXyzV1alpha1Apple(name, apple, options);
|
|
303
335
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
304
336
|
}
|
|
305
337
|
};
|
|
306
338
|
};
|
|
307
|
-
const
|
|
308
|
-
const localVarFp =
|
|
339
|
+
const AppleGuqingXyzV1alpha1AppleApiFactory = function(configuration, basePath, axios) {
|
|
340
|
+
const localVarFp = AppleGuqingXyzV1alpha1AppleApiFp(configuration);
|
|
309
341
|
return {
|
|
310
|
-
|
|
311
|
-
return localVarFp.
|
|
342
|
+
createappleGuqingXyzV1alpha1Apple(apple, options) {
|
|
343
|
+
return localVarFp.createappleGuqingXyzV1alpha1Apple(apple, options).then((request) => request(axios, basePath));
|
|
312
344
|
},
|
|
313
|
-
|
|
314
|
-
return localVarFp.
|
|
345
|
+
deleteappleGuqingXyzV1alpha1Apple(name, options) {
|
|
346
|
+
return localVarFp.deleteappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
315
347
|
},
|
|
316
|
-
|
|
317
|
-
return localVarFp.
|
|
348
|
+
getappleGuqingXyzV1alpha1Apple(name, options) {
|
|
349
|
+
return localVarFp.getappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
318
350
|
},
|
|
319
|
-
|
|
320
|
-
return localVarFp.
|
|
351
|
+
listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
|
|
352
|
+
return localVarFp.listappleGuqingXyzV1alpha1Apple(page, size, sort, options).then((request) => request(axios, basePath));
|
|
321
353
|
},
|
|
322
|
-
|
|
323
|
-
return localVarFp.
|
|
354
|
+
updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
|
|
355
|
+
return localVarFp.updateappleGuqingXyzV1alpha1Apple(name, apple, options).then((request) => request(axios, basePath));
|
|
324
356
|
}
|
|
325
357
|
};
|
|
326
358
|
};
|
|
327
|
-
class
|
|
328
|
-
|
|
329
|
-
return
|
|
359
|
+
class AppleGuqingXyzV1alpha1AppleApi extends BaseAPI {
|
|
360
|
+
createappleGuqingXyzV1alpha1Apple(apple, options) {
|
|
361
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).createappleGuqingXyzV1alpha1Apple(apple, options).then((request) => request(this.axios, this.basePath));
|
|
330
362
|
}
|
|
331
|
-
|
|
332
|
-
return
|
|
363
|
+
deleteappleGuqingXyzV1alpha1Apple(name, options) {
|
|
364
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).deleteappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
333
365
|
}
|
|
334
|
-
|
|
335
|
-
return
|
|
366
|
+
getappleGuqingXyzV1alpha1Apple(name, options) {
|
|
367
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).getappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
336
368
|
}
|
|
337
|
-
|
|
338
|
-
return
|
|
369
|
+
listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
|
|
370
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).listappleGuqingXyzV1alpha1Apple(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
339
371
|
}
|
|
340
|
-
|
|
341
|
-
return
|
|
372
|
+
updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
|
|
373
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).updateappleGuqingXyzV1alpha1Apple(name, apple, options).then((request) => request(this.axios, this.basePath));
|
|
342
374
|
}
|
|
343
375
|
}
|
|
344
|
-
const
|
|
376
|
+
const ApplesControllerApiAxiosParamCreator = function(configuration) {
|
|
345
377
|
return {
|
|
346
|
-
|
|
347
|
-
const localVarPath = `/apis/
|
|
378
|
+
hello: async (options = {}) => {
|
|
379
|
+
const localVarPath = `/apis/plugin.api.halo.run/v1alpha1/plugins/PluginTemplate/apples`;
|
|
380
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
381
|
+
let baseOptions;
|
|
382
|
+
if (configuration) {
|
|
383
|
+
baseOptions = configuration.baseOptions;
|
|
384
|
+
}
|
|
385
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
386
|
+
const localVarHeaderParameter = {};
|
|
387
|
+
const localVarQueryParameter = {};
|
|
388
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
389
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
390
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
391
|
+
return {
|
|
392
|
+
url: toPathString(localVarUrlObj),
|
|
393
|
+
options: localVarRequestOptions
|
|
394
|
+
};
|
|
395
|
+
}
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
const ApplesControllerApiFp = function(configuration) {
|
|
399
|
+
const localVarAxiosParamCreator = ApplesControllerApiAxiosParamCreator(configuration);
|
|
400
|
+
return {
|
|
401
|
+
async hello(options) {
|
|
402
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.hello(options);
|
|
403
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
404
|
+
}
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
const ApplesControllerApiFactory = function(configuration, basePath, axios) {
|
|
408
|
+
const localVarFp = ApplesControllerApiFp(configuration);
|
|
409
|
+
return {
|
|
410
|
+
hello(options) {
|
|
411
|
+
return localVarFp.hello(options).then((request) => request(axios, basePath));
|
|
412
|
+
}
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
class ApplesControllerApi extends BaseAPI {
|
|
416
|
+
hello(options) {
|
|
417
|
+
return ApplesControllerApiFp(this.configuration).hello(options).then((request) => request(this.axios, this.basePath));
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
421
|
+
return {
|
|
422
|
+
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
423
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
348
424
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
349
425
|
let baseOptions;
|
|
350
426
|
if (configuration) {
|
|
@@ -357,15 +433,15 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
357
433
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
358
434
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
359
435
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
360
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
436
|
+
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
361
437
|
return {
|
|
362
438
|
url: toPathString(localVarUrlObj),
|
|
363
439
|
options: localVarRequestOptions
|
|
364
440
|
};
|
|
365
441
|
},
|
|
366
|
-
|
|
367
|
-
assertParamExists("
|
|
368
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
442
|
+
deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
443
|
+
assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
|
|
444
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
369
445
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
370
446
|
let baseOptions;
|
|
371
447
|
if (configuration) {
|
|
@@ -382,9 +458,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
382
458
|
options: localVarRequestOptions
|
|
383
459
|
};
|
|
384
460
|
},
|
|
385
|
-
|
|
386
|
-
assertParamExists("
|
|
387
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
461
|
+
getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
462
|
+
assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
|
|
463
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
388
464
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
389
465
|
let baseOptions;
|
|
390
466
|
if (configuration) {
|
|
@@ -401,8 +477,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
401
477
|
options: localVarRequestOptions
|
|
402
478
|
};
|
|
403
479
|
},
|
|
404
|
-
|
|
405
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
480
|
+
listcoreHaloRunV1alpha1Link: async (page, size, sort, options = {}) => {
|
|
481
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
406
482
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
407
483
|
let baseOptions;
|
|
408
484
|
if (configuration) {
|
|
@@ -428,9 +504,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
428
504
|
options: localVarRequestOptions
|
|
429
505
|
};
|
|
430
506
|
},
|
|
431
|
-
|
|
432
|
-
assertParamExists("
|
|
433
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
507
|
+
updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
|
|
508
|
+
assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
|
|
509
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
434
510
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
435
511
|
let baseOptions;
|
|
436
512
|
if (configuration) {
|
|
@@ -443,7 +519,7 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
443
519
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
444
520
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
445
521
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
446
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
522
|
+
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
447
523
|
return {
|
|
448
524
|
url: toPathString(localVarUrlObj),
|
|
449
525
|
options: localVarRequestOptions
|
|
@@ -451,72 +527,72 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
451
527
|
}
|
|
452
528
|
};
|
|
453
529
|
};
|
|
454
|
-
const
|
|
455
|
-
const localVarAxiosParamCreator =
|
|
530
|
+
const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
|
|
531
|
+
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
|
|
456
532
|
return {
|
|
457
|
-
async
|
|
458
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
533
|
+
async createcoreHaloRunV1alpha1Link(link, options) {
|
|
534
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
|
|
459
535
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
460
536
|
},
|
|
461
|
-
async
|
|
462
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
537
|
+
async deletecoreHaloRunV1alpha1Link(name, options) {
|
|
538
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
|
|
463
539
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
464
540
|
},
|
|
465
|
-
async
|
|
466
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
541
|
+
async getcoreHaloRunV1alpha1Link(name, options) {
|
|
542
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
|
|
467
543
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
468
544
|
},
|
|
469
|
-
async
|
|
470
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
545
|
+
async listcoreHaloRunV1alpha1Link(page, size, sort, options) {
|
|
546
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, sort, options);
|
|
471
547
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
472
548
|
},
|
|
473
|
-
async
|
|
474
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
549
|
+
async updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
550
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
|
|
475
551
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
476
552
|
}
|
|
477
553
|
};
|
|
478
554
|
};
|
|
479
|
-
const
|
|
480
|
-
const localVarFp =
|
|
555
|
+
const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
|
|
556
|
+
const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
|
|
481
557
|
return {
|
|
482
|
-
|
|
483
|
-
return localVarFp.
|
|
558
|
+
createcoreHaloRunV1alpha1Link(link, options) {
|
|
559
|
+
return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
|
|
484
560
|
},
|
|
485
|
-
|
|
486
|
-
return localVarFp.
|
|
561
|
+
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
562
|
+
return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
487
563
|
},
|
|
488
|
-
|
|
489
|
-
return localVarFp.
|
|
564
|
+
getcoreHaloRunV1alpha1Link(name, options) {
|
|
565
|
+
return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
490
566
|
},
|
|
491
|
-
|
|
492
|
-
return localVarFp.
|
|
567
|
+
listcoreHaloRunV1alpha1Link(page, size, sort, options) {
|
|
568
|
+
return localVarFp.listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(axios, basePath));
|
|
493
569
|
},
|
|
494
|
-
|
|
495
|
-
return localVarFp.
|
|
570
|
+
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
571
|
+
return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
|
|
496
572
|
}
|
|
497
573
|
};
|
|
498
574
|
};
|
|
499
|
-
class
|
|
500
|
-
|
|
501
|
-
return
|
|
575
|
+
class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
576
|
+
createcoreHaloRunV1alpha1Link(link, options) {
|
|
577
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(link, options).then((request) => request(this.axios, this.basePath));
|
|
502
578
|
}
|
|
503
|
-
|
|
504
|
-
return
|
|
579
|
+
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
580
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
|
|
505
581
|
}
|
|
506
|
-
|
|
507
|
-
return
|
|
582
|
+
getcoreHaloRunV1alpha1Link(name, options) {
|
|
583
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
|
|
508
584
|
}
|
|
509
|
-
|
|
510
|
-
return
|
|
585
|
+
listcoreHaloRunV1alpha1Link(page, size, sort, options) {
|
|
586
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
511
587
|
}
|
|
512
|
-
|
|
513
|
-
return
|
|
588
|
+
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
589
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
|
|
514
590
|
}
|
|
515
591
|
}
|
|
516
|
-
const
|
|
592
|
+
const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
|
|
517
593
|
return {
|
|
518
|
-
|
|
519
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
594
|
+
createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
|
|
595
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
520
596
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
521
597
|
let baseOptions;
|
|
522
598
|
if (configuration) {
|
|
@@ -529,15 +605,15 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
529
605
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
530
606
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
531
607
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
532
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
608
|
+
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
533
609
|
return {
|
|
534
610
|
url: toPathString(localVarUrlObj),
|
|
535
611
|
options: localVarRequestOptions
|
|
536
612
|
};
|
|
537
613
|
},
|
|
538
|
-
|
|
539
|
-
assertParamExists("
|
|
540
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
614
|
+
deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
615
|
+
assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
616
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
541
617
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
542
618
|
let baseOptions;
|
|
543
619
|
if (configuration) {
|
|
@@ -554,9 +630,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
554
630
|
options: localVarRequestOptions
|
|
555
631
|
};
|
|
556
632
|
},
|
|
557
|
-
|
|
558
|
-
assertParamExists("
|
|
559
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
633
|
+
getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
634
|
+
assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
635
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
560
636
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
561
637
|
let baseOptions;
|
|
562
638
|
if (configuration) {
|
|
@@ -573,8 +649,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
573
649
|
options: localVarRequestOptions
|
|
574
650
|
};
|
|
575
651
|
},
|
|
576
|
-
|
|
577
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
652
|
+
listcoreHaloRunV1alpha1LinkGroup: async (page, size, sort, options = {}) => {
|
|
653
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
578
654
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
579
655
|
let baseOptions;
|
|
580
656
|
if (configuration) {
|
|
@@ -600,9 +676,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
600
676
|
options: localVarRequestOptions
|
|
601
677
|
};
|
|
602
678
|
},
|
|
603
|
-
|
|
604
|
-
assertParamExists("
|
|
605
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
679
|
+
updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
|
|
680
|
+
assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
681
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
606
682
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
607
683
|
let baseOptions;
|
|
608
684
|
if (configuration) {
|
|
@@ -615,7 +691,7 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
615
691
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
616
692
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
617
693
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
618
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
694
|
+
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
619
695
|
return {
|
|
620
696
|
url: toPathString(localVarUrlObj),
|
|
621
697
|
options: localVarRequestOptions
|
|
@@ -623,66 +699,66 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
623
699
|
}
|
|
624
700
|
};
|
|
625
701
|
};
|
|
626
|
-
const
|
|
627
|
-
const localVarAxiosParamCreator =
|
|
702
|
+
const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
|
|
703
|
+
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
|
|
628
704
|
return {
|
|
629
|
-
async
|
|
630
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
705
|
+
async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
706
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
|
|
631
707
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
632
708
|
},
|
|
633
|
-
async
|
|
634
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
709
|
+
async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
710
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
|
|
635
711
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
636
712
|
},
|
|
637
|
-
async
|
|
638
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
713
|
+
async getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
714
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
|
|
639
715
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
640
716
|
},
|
|
641
|
-
async
|
|
642
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
717
|
+
async listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
|
|
718
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options);
|
|
643
719
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
644
720
|
},
|
|
645
|
-
async
|
|
646
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
721
|
+
async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
722
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
|
|
647
723
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
648
724
|
}
|
|
649
725
|
};
|
|
650
726
|
};
|
|
651
|
-
const
|
|
652
|
-
const localVarFp =
|
|
727
|
+
const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
|
|
728
|
+
const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
|
|
653
729
|
return {
|
|
654
|
-
|
|
655
|
-
return localVarFp.
|
|
730
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
731
|
+
return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
|
|
656
732
|
},
|
|
657
|
-
|
|
658
|
-
return localVarFp.
|
|
733
|
+
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
734
|
+
return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
659
735
|
},
|
|
660
|
-
|
|
661
|
-
return localVarFp.
|
|
736
|
+
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
737
|
+
return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
662
738
|
},
|
|
663
|
-
|
|
664
|
-
return localVarFp.
|
|
739
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
|
|
740
|
+
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(axios, basePath));
|
|
665
741
|
},
|
|
666
|
-
|
|
667
|
-
return localVarFp.
|
|
742
|
+
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
743
|
+
return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
|
|
668
744
|
}
|
|
669
745
|
};
|
|
670
746
|
};
|
|
671
|
-
class
|
|
672
|
-
|
|
673
|
-
return
|
|
747
|
+
class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
748
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
749
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
674
750
|
}
|
|
675
|
-
|
|
676
|
-
return
|
|
751
|
+
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
752
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
|
|
677
753
|
}
|
|
678
|
-
|
|
679
|
-
return
|
|
754
|
+
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
755
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
|
|
680
756
|
}
|
|
681
|
-
|
|
682
|
-
return
|
|
757
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
|
|
758
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
683
759
|
}
|
|
684
|
-
|
|
685
|
-
return
|
|
760
|
+
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
761
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
686
762
|
}
|
|
687
763
|
}
|
|
688
764
|
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
@@ -2078,4 +2154,4 @@ class Configuration {
|
|
|
2078
2154
|
}
|
|
2079
2155
|
}
|
|
2080
2156
|
|
|
2081
|
-
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Configuration, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp,
|
|
2157
|
+
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, AppleGuqingXyzV1alpha1AppleApi, AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator, AppleGuqingXyzV1alpha1AppleApiFactory, AppleGuqingXyzV1alpha1AppleApiFp, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Configuration, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|