@halo-dev/api-client 0.0.2 → 0.0.5
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 +425 -157
- package/dist/index.d.ts +399 -246
- package/dist/index.mjs +414 -154
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -33,6 +33,17 @@ const assertParamExists = function(functionName, paramName, paramValue) {
|
|
|
33
33
|
throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
34
34
|
}
|
|
35
35
|
};
|
|
36
|
+
const setBasicAuthToObject = function(object, configuration) {
|
|
37
|
+
if (configuration && (configuration.username || configuration.password)) {
|
|
38
|
+
object["auth"] = { username: configuration.username, password: configuration.password };
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
const setBearerAuthToObject = async function(object, configuration) {
|
|
42
|
+
if (configuration && configuration.accessToken) {
|
|
43
|
+
const accessToken = typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken;
|
|
44
|
+
object["Authorization"] = "Bearer " + accessToken;
|
|
45
|
+
}
|
|
46
|
+
};
|
|
36
47
|
const setSearchParams = function(url, ...objects) {
|
|
37
48
|
const searchParams = new URLSearchParams(url.search);
|
|
38
49
|
for (const object of objects) {
|
|
@@ -72,8 +83,85 @@ const PluginStatusPhaseEnum = {
|
|
|
72
83
|
Stopped: "STOPPED",
|
|
73
84
|
Failed: "FAILED"
|
|
74
85
|
};
|
|
86
|
+
const ApiHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
87
|
+
return {
|
|
88
|
+
installPlugin: async (file, options = {}) => {
|
|
89
|
+
assertParamExists("installPlugin", "file", file);
|
|
90
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/plugins/install`;
|
|
91
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
92
|
+
let baseOptions;
|
|
93
|
+
if (configuration) {
|
|
94
|
+
baseOptions = configuration.baseOptions;
|
|
95
|
+
}
|
|
96
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
97
|
+
const localVarHeaderParameter = {};
|
|
98
|
+
const localVarQueryParameter = {};
|
|
99
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
100
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
101
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
102
|
+
if (file !== void 0) {
|
|
103
|
+
localVarFormParams.append("file", file);
|
|
104
|
+
}
|
|
105
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
106
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
107
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
108
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
109
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
110
|
+
return {
|
|
111
|
+
url: toPathString(localVarUrlObj),
|
|
112
|
+
options: localVarRequestOptions
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
const ApiHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
118
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
119
|
+
return {
|
|
120
|
+
async installPlugin(file, options) {
|
|
121
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
122
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
const ApiHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
127
|
+
const localVarFp = ApiHaloRunV1alpha1PluginApiFp(configuration);
|
|
128
|
+
return {
|
|
129
|
+
installPlugin(file, options) {
|
|
130
|
+
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
131
|
+
}
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
135
|
+
installPlugin(file, options) {
|
|
136
|
+
return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(file, options).then((request) => request(this.axios, this.basePath));
|
|
137
|
+
}
|
|
138
|
+
}
|
|
75
139
|
const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
76
140
|
return {
|
|
141
|
+
changePassword: async (name, changePasswordRequest, options = {}) => {
|
|
142
|
+
assertParamExists("changePassword", "name", name);
|
|
143
|
+
assertParamExists("changePassword", "changePasswordRequest", changePasswordRequest);
|
|
144
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/password`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
145
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
146
|
+
let baseOptions;
|
|
147
|
+
if (configuration) {
|
|
148
|
+
baseOptions = configuration.baseOptions;
|
|
149
|
+
}
|
|
150
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
151
|
+
const localVarHeaderParameter = {};
|
|
152
|
+
const localVarQueryParameter = {};
|
|
153
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
154
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
155
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
156
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
157
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
158
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
159
|
+
localVarRequestOptions.data = serializeDataIfNeeded(changePasswordRequest, localVarRequestOptions, configuration);
|
|
160
|
+
return {
|
|
161
|
+
url: toPathString(localVarUrlObj),
|
|
162
|
+
options: localVarRequestOptions
|
|
163
|
+
};
|
|
164
|
+
},
|
|
77
165
|
getCurrentUserDetail: async (options = {}) => {
|
|
78
166
|
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-`;
|
|
79
167
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -84,6 +172,8 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
84
172
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
85
173
|
const localVarHeaderParameter = {};
|
|
86
174
|
const localVarQueryParameter = {};
|
|
175
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
176
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
87
177
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
88
178
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
89
179
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -103,6 +193,8 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
103
193
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
104
194
|
const localVarHeaderParameter = {};
|
|
105
195
|
const localVarQueryParameter = {};
|
|
196
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
197
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
106
198
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
107
199
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
108
200
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -123,6 +215,8 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
123
215
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
124
216
|
const localVarHeaderParameter = {};
|
|
125
217
|
const localVarQueryParameter = {};
|
|
218
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
219
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
126
220
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
127
221
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
128
222
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -138,6 +232,10 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
138
232
|
const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
139
233
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
|
|
140
234
|
return {
|
|
235
|
+
async changePassword(name, changePasswordRequest, options) {
|
|
236
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(name, changePasswordRequest, options);
|
|
237
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
238
|
+
},
|
|
141
239
|
async getCurrentUserDetail(options) {
|
|
142
240
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
|
|
143
241
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
@@ -155,6 +253,9 @@ const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
155
253
|
const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
156
254
|
const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
|
|
157
255
|
return {
|
|
256
|
+
changePassword(name, changePasswordRequest, options) {
|
|
257
|
+
return localVarFp.changePassword(name, changePasswordRequest, options).then((request) => request(axios, basePath));
|
|
258
|
+
},
|
|
158
259
|
getCurrentUserDetail(options) {
|
|
159
260
|
return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
|
|
160
261
|
},
|
|
@@ -167,6 +268,9 @@ const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios
|
|
|
167
268
|
};
|
|
168
269
|
};
|
|
169
270
|
class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
271
|
+
changePassword(name, changePasswordRequest, options) {
|
|
272
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
273
|
+
}
|
|
170
274
|
getCurrentUserDetail(options) {
|
|
171
275
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
|
|
172
276
|
}
|
|
@@ -177,6 +281,52 @@ class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
177
281
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
|
|
178
282
|
}
|
|
179
283
|
}
|
|
284
|
+
const ApplesControllerApiAxiosParamCreator = function(configuration) {
|
|
285
|
+
return {
|
|
286
|
+
hello: async (options = {}) => {
|
|
287
|
+
const localVarPath = `/apis/plugin.api.halo.run/v1alpha1/plugins/PluginTemplate/apples`;
|
|
288
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
289
|
+
let baseOptions;
|
|
290
|
+
if (configuration) {
|
|
291
|
+
baseOptions = configuration.baseOptions;
|
|
292
|
+
}
|
|
293
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
294
|
+
const localVarHeaderParameter = {};
|
|
295
|
+
const localVarQueryParameter = {};
|
|
296
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
297
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
298
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
299
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
300
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
301
|
+
return {
|
|
302
|
+
url: toPathString(localVarUrlObj),
|
|
303
|
+
options: localVarRequestOptions
|
|
304
|
+
};
|
|
305
|
+
}
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
const ApplesControllerApiFp = function(configuration) {
|
|
309
|
+
const localVarAxiosParamCreator = ApplesControllerApiAxiosParamCreator(configuration);
|
|
310
|
+
return {
|
|
311
|
+
async hello(options) {
|
|
312
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.hello(options);
|
|
313
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
314
|
+
}
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
const ApplesControllerApiFactory = function(configuration, basePath, axios) {
|
|
318
|
+
const localVarFp = ApplesControllerApiFp(configuration);
|
|
319
|
+
return {
|
|
320
|
+
hello(options) {
|
|
321
|
+
return localVarFp.hello(options).then((request) => request(axios, basePath));
|
|
322
|
+
}
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
class ApplesControllerApi extends BaseAPI {
|
|
326
|
+
hello(options) {
|
|
327
|
+
return ApplesControllerApiFp(this.configuration).hello(options).then((request) => request(this.axios, this.basePath));
|
|
328
|
+
}
|
|
329
|
+
}
|
|
180
330
|
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
181
331
|
return {
|
|
182
332
|
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
@@ -189,6 +339,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
189
339
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
190
340
|
const localVarHeaderParameter = {};
|
|
191
341
|
const localVarQueryParameter = {};
|
|
342
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
343
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
192
344
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
193
345
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
194
346
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -210,6 +362,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
210
362
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
211
363
|
const localVarHeaderParameter = {};
|
|
212
364
|
const localVarQueryParameter = {};
|
|
365
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
366
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
213
367
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
214
368
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
215
369
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -229,6 +383,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
229
383
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
230
384
|
const localVarHeaderParameter = {};
|
|
231
385
|
const localVarQueryParameter = {};
|
|
386
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
387
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
232
388
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
233
389
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
234
390
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -247,6 +403,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
247
403
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
248
404
|
const localVarHeaderParameter = {};
|
|
249
405
|
const localVarQueryParameter = {};
|
|
406
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
407
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
250
408
|
if (page !== void 0) {
|
|
251
409
|
localVarQueryParameter["page"] = page;
|
|
252
410
|
}
|
|
@@ -275,6 +433,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
275
433
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
276
434
|
const localVarHeaderParameter = {};
|
|
277
435
|
const localVarQueryParameter = {};
|
|
436
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
437
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
278
438
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
279
439
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
280
440
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -361,6 +521,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
361
521
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
362
522
|
const localVarHeaderParameter = {};
|
|
363
523
|
const localVarQueryParameter = {};
|
|
524
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
525
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
364
526
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
365
527
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
366
528
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -382,6 +544,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
382
544
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
383
545
|
const localVarHeaderParameter = {};
|
|
384
546
|
const localVarQueryParameter = {};
|
|
547
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
548
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
385
549
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
386
550
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
387
551
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -401,6 +565,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
401
565
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
402
566
|
const localVarHeaderParameter = {};
|
|
403
567
|
const localVarQueryParameter = {};
|
|
568
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
569
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
404
570
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
405
571
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
406
572
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -419,6 +585,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
419
585
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
420
586
|
const localVarHeaderParameter = {};
|
|
421
587
|
const localVarQueryParameter = {};
|
|
588
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
589
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
422
590
|
if (page !== void 0) {
|
|
423
591
|
localVarQueryParameter["page"] = page;
|
|
424
592
|
}
|
|
@@ -447,6 +615,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
447
615
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
448
616
|
const localVarHeaderParameter = {};
|
|
449
617
|
const localVarQueryParameter = {};
|
|
618
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
619
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
450
620
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
451
621
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
452
622
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -521,10 +691,10 @@ class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
521
691
|
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
522
692
|
}
|
|
523
693
|
}
|
|
524
|
-
const
|
|
694
|
+
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
525
695
|
return {
|
|
526
|
-
|
|
527
|
-
const localVarPath = `/apis/
|
|
696
|
+
createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
|
|
697
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
|
|
528
698
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
529
699
|
let baseOptions;
|
|
530
700
|
if (configuration) {
|
|
@@ -533,19 +703,21 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
533
703
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
534
704
|
const localVarHeaderParameter = {};
|
|
535
705
|
const localVarQueryParameter = {};
|
|
706
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
707
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
536
708
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
537
709
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
538
710
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
539
711
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
540
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
712
|
+
localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
|
|
541
713
|
return {
|
|
542
714
|
url: toPathString(localVarUrlObj),
|
|
543
715
|
options: localVarRequestOptions
|
|
544
716
|
};
|
|
545
717
|
},
|
|
546
|
-
|
|
547
|
-
assertParamExists("
|
|
548
|
-
const localVarPath = `/apis/
|
|
718
|
+
deletepluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
|
|
719
|
+
assertParamExists("deletepluginHaloRunV1alpha1Plugin", "name", name);
|
|
720
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
549
721
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
550
722
|
let baseOptions;
|
|
551
723
|
if (configuration) {
|
|
@@ -554,6 +726,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
554
726
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
555
727
|
const localVarHeaderParameter = {};
|
|
556
728
|
const localVarQueryParameter = {};
|
|
729
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
730
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
557
731
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
558
732
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
559
733
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -562,9 +736,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
562
736
|
options: localVarRequestOptions
|
|
563
737
|
};
|
|
564
738
|
},
|
|
565
|
-
|
|
566
|
-
assertParamExists("
|
|
567
|
-
const localVarPath = `/apis/
|
|
739
|
+
getpluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
|
|
740
|
+
assertParamExists("getpluginHaloRunV1alpha1Plugin", "name", name);
|
|
741
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
568
742
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
569
743
|
let baseOptions;
|
|
570
744
|
if (configuration) {
|
|
@@ -573,6 +747,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
573
747
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
574
748
|
const localVarHeaderParameter = {};
|
|
575
749
|
const localVarQueryParameter = {};
|
|
750
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
751
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
576
752
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
577
753
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
578
754
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -581,8 +757,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
581
757
|
options: localVarRequestOptions
|
|
582
758
|
};
|
|
583
759
|
},
|
|
584
|
-
|
|
585
|
-
const localVarPath = `/apis/
|
|
760
|
+
listpluginHaloRunV1alpha1Plugin: async (page, size, sort, options = {}) => {
|
|
761
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
|
|
586
762
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
587
763
|
let baseOptions;
|
|
588
764
|
if (configuration) {
|
|
@@ -591,6 +767,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
591
767
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
592
768
|
const localVarHeaderParameter = {};
|
|
593
769
|
const localVarQueryParameter = {};
|
|
770
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
771
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
594
772
|
if (page !== void 0) {
|
|
595
773
|
localVarQueryParameter["page"] = page;
|
|
596
774
|
}
|
|
@@ -608,9 +786,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
608
786
|
options: localVarRequestOptions
|
|
609
787
|
};
|
|
610
788
|
},
|
|
611
|
-
|
|
612
|
-
assertParamExists("
|
|
613
|
-
const localVarPath = `/apis/
|
|
789
|
+
updatepluginHaloRunV1alpha1Plugin: async (name, plugin, options = {}) => {
|
|
790
|
+
assertParamExists("updatepluginHaloRunV1alpha1Plugin", "name", name);
|
|
791
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
614
792
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
615
793
|
let baseOptions;
|
|
616
794
|
if (configuration) {
|
|
@@ -619,11 +797,13 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
619
797
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
620
798
|
const localVarHeaderParameter = {};
|
|
621
799
|
const localVarQueryParameter = {};
|
|
800
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
801
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
622
802
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
623
803
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
624
804
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
625
805
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
626
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
806
|
+
localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
|
|
627
807
|
return {
|
|
628
808
|
url: toPathString(localVarUrlObj),
|
|
629
809
|
options: localVarRequestOptions
|
|
@@ -631,72 +811,72 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
631
811
|
}
|
|
632
812
|
};
|
|
633
813
|
};
|
|
634
|
-
const
|
|
635
|
-
const localVarAxiosParamCreator =
|
|
814
|
+
const PluginHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
815
|
+
const localVarAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
636
816
|
return {
|
|
637
|
-
async
|
|
638
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
817
|
+
async createpluginHaloRunV1alpha1Plugin(plugin, options) {
|
|
818
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1Plugin(plugin, options);
|
|
639
819
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
640
820
|
},
|
|
641
|
-
async
|
|
642
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
821
|
+
async deletepluginHaloRunV1alpha1Plugin(name, options) {
|
|
822
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1Plugin(name, options);
|
|
643
823
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
644
824
|
},
|
|
645
|
-
async
|
|
646
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
825
|
+
async getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
826
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1Plugin(name, options);
|
|
647
827
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
648
828
|
},
|
|
649
|
-
async
|
|
650
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
829
|
+
async listpluginHaloRunV1alpha1Plugin(page, size, sort, options) {
|
|
830
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1Plugin(page, size, sort, options);
|
|
651
831
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
652
832
|
},
|
|
653
|
-
async
|
|
654
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
833
|
+
async updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
834
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1Plugin(name, plugin, options);
|
|
655
835
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
656
836
|
}
|
|
657
837
|
};
|
|
658
838
|
};
|
|
659
|
-
const
|
|
660
|
-
const localVarFp =
|
|
839
|
+
const PluginHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
840
|
+
const localVarFp = PluginHaloRunV1alpha1PluginApiFp(configuration);
|
|
661
841
|
return {
|
|
662
|
-
|
|
663
|
-
return localVarFp.
|
|
842
|
+
createpluginHaloRunV1alpha1Plugin(plugin, options) {
|
|
843
|
+
return localVarFp.createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(axios, basePath));
|
|
664
844
|
},
|
|
665
|
-
|
|
666
|
-
return localVarFp.
|
|
845
|
+
deletepluginHaloRunV1alpha1Plugin(name, options) {
|
|
846
|
+
return localVarFp.deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
|
|
667
847
|
},
|
|
668
|
-
|
|
669
|
-
return localVarFp.
|
|
848
|
+
getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
849
|
+
return localVarFp.getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
|
|
670
850
|
},
|
|
671
|
-
|
|
672
|
-
return localVarFp.
|
|
851
|
+
listpluginHaloRunV1alpha1Plugin(page, size, sort, options) {
|
|
852
|
+
return localVarFp.listpluginHaloRunV1alpha1Plugin(page, size, sort, options).then((request) => request(axios, basePath));
|
|
673
853
|
},
|
|
674
|
-
|
|
675
|
-
return localVarFp.
|
|
854
|
+
updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
855
|
+
return localVarFp.updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(axios, basePath));
|
|
676
856
|
}
|
|
677
857
|
};
|
|
678
858
|
};
|
|
679
|
-
class
|
|
680
|
-
|
|
681
|
-
return
|
|
859
|
+
class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
860
|
+
createpluginHaloRunV1alpha1Plugin(plugin, options) {
|
|
861
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(this.axios, this.basePath));
|
|
682
862
|
}
|
|
683
|
-
|
|
684
|
-
return
|
|
863
|
+
deletepluginHaloRunV1alpha1Plugin(name, options) {
|
|
864
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
|
|
685
865
|
}
|
|
686
|
-
|
|
687
|
-
return
|
|
866
|
+
getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
867
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
|
|
688
868
|
}
|
|
689
|
-
|
|
690
|
-
return
|
|
869
|
+
listpluginHaloRunV1alpha1Plugin(page, size, sort, options) {
|
|
870
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
691
871
|
}
|
|
692
|
-
|
|
693
|
-
return
|
|
872
|
+
updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
873
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(this.axios, this.basePath));
|
|
694
874
|
}
|
|
695
875
|
}
|
|
696
|
-
const
|
|
876
|
+
const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configuration) {
|
|
697
877
|
return {
|
|
698
|
-
|
|
699
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
878
|
+
createpluginHaloRunV1alpha1ReverseProxy: async (reverseProxy, options = {}) => {
|
|
879
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
|
|
700
880
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
701
881
|
let baseOptions;
|
|
702
882
|
if (configuration) {
|
|
@@ -705,19 +885,21 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
705
885
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
706
886
|
const localVarHeaderParameter = {};
|
|
707
887
|
const localVarQueryParameter = {};
|
|
888
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
889
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
708
890
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
709
891
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
710
892
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
711
893
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
712
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
894
|
+
localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
|
|
713
895
|
return {
|
|
714
896
|
url: toPathString(localVarUrlObj),
|
|
715
897
|
options: localVarRequestOptions
|
|
716
898
|
};
|
|
717
899
|
},
|
|
718
|
-
|
|
719
|
-
assertParamExists("
|
|
720
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
900
|
+
deletepluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
|
|
901
|
+
assertParamExists("deletepluginHaloRunV1alpha1ReverseProxy", "name", name);
|
|
902
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
721
903
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
722
904
|
let baseOptions;
|
|
723
905
|
if (configuration) {
|
|
@@ -726,6 +908,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
726
908
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
727
909
|
const localVarHeaderParameter = {};
|
|
728
910
|
const localVarQueryParameter = {};
|
|
911
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
912
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
729
913
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
730
914
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
731
915
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -734,9 +918,9 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
734
918
|
options: localVarRequestOptions
|
|
735
919
|
};
|
|
736
920
|
},
|
|
737
|
-
|
|
738
|
-
assertParamExists("
|
|
739
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
921
|
+
getpluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
|
|
922
|
+
assertParamExists("getpluginHaloRunV1alpha1ReverseProxy", "name", name);
|
|
923
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
740
924
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
741
925
|
let baseOptions;
|
|
742
926
|
if (configuration) {
|
|
@@ -745,6 +929,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
745
929
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
746
930
|
const localVarHeaderParameter = {};
|
|
747
931
|
const localVarQueryParameter = {};
|
|
932
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
933
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
748
934
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
749
935
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
750
936
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -753,8 +939,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
753
939
|
options: localVarRequestOptions
|
|
754
940
|
};
|
|
755
941
|
},
|
|
756
|
-
|
|
757
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
942
|
+
listpluginHaloRunV1alpha1ReverseProxy: async (page, size, sort, options = {}) => {
|
|
943
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
|
|
758
944
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
759
945
|
let baseOptions;
|
|
760
946
|
if (configuration) {
|
|
@@ -763,6 +949,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
763
949
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
764
950
|
const localVarHeaderParameter = {};
|
|
765
951
|
const localVarQueryParameter = {};
|
|
952
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
953
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
766
954
|
if (page !== void 0) {
|
|
767
955
|
localVarQueryParameter["page"] = page;
|
|
768
956
|
}
|
|
@@ -780,9 +968,9 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
780
968
|
options: localVarRequestOptions
|
|
781
969
|
};
|
|
782
970
|
},
|
|
783
|
-
|
|
784
|
-
assertParamExists("
|
|
785
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
971
|
+
updatepluginHaloRunV1alpha1ReverseProxy: async (name, reverseProxy, options = {}) => {
|
|
972
|
+
assertParamExists("updatepluginHaloRunV1alpha1ReverseProxy", "name", name);
|
|
973
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
786
974
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
787
975
|
let baseOptions;
|
|
788
976
|
if (configuration) {
|
|
@@ -791,11 +979,13 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
791
979
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
792
980
|
const localVarHeaderParameter = {};
|
|
793
981
|
const localVarQueryParameter = {};
|
|
982
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
983
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
794
984
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
795
985
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
796
986
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
797
987
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
798
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
988
|
+
localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
|
|
799
989
|
return {
|
|
800
990
|
url: toPathString(localVarUrlObj),
|
|
801
991
|
options: localVarRequestOptions
|
|
@@ -803,72 +993,72 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
803
993
|
}
|
|
804
994
|
};
|
|
805
995
|
};
|
|
806
|
-
const
|
|
807
|
-
const localVarAxiosParamCreator =
|
|
996
|
+
const PluginHaloRunV1alpha1ReverseProxyApiFp = function(configuration) {
|
|
997
|
+
const localVarAxiosParamCreator = PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator(configuration);
|
|
808
998
|
return {
|
|
809
|
-
async
|
|
810
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
999
|
+
async createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
|
|
1000
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options);
|
|
811
1001
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
812
1002
|
},
|
|
813
|
-
async
|
|
814
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1003
|
+
async deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1004
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1ReverseProxy(name, options);
|
|
815
1005
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
816
1006
|
},
|
|
817
|
-
async
|
|
818
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1007
|
+
async getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1008
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1ReverseProxy(name, options);
|
|
819
1009
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
820
1010
|
},
|
|
821
|
-
async
|
|
822
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1011
|
+
async listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options) {
|
|
1012
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options);
|
|
823
1013
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
824
1014
|
},
|
|
825
|
-
async
|
|
826
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1015
|
+
async updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1016
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options);
|
|
827
1017
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
828
1018
|
}
|
|
829
1019
|
};
|
|
830
1020
|
};
|
|
831
|
-
const
|
|
832
|
-
const localVarFp =
|
|
1021
|
+
const PluginHaloRunV1alpha1ReverseProxyApiFactory = function(configuration, basePath, axios) {
|
|
1022
|
+
const localVarFp = PluginHaloRunV1alpha1ReverseProxyApiFp(configuration);
|
|
833
1023
|
return {
|
|
834
|
-
|
|
835
|
-
return localVarFp.
|
|
1024
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
|
|
1025
|
+
return localVarFp.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(axios, basePath));
|
|
836
1026
|
},
|
|
837
|
-
|
|
838
|
-
return localVarFp.
|
|
1027
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1028
|
+
return localVarFp.deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
|
|
839
1029
|
},
|
|
840
|
-
|
|
841
|
-
return localVarFp.
|
|
1030
|
+
getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1031
|
+
return localVarFp.getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
|
|
842
1032
|
},
|
|
843
|
-
|
|
844
|
-
return localVarFp.
|
|
1033
|
+
listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options) {
|
|
1034
|
+
return localVarFp.listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options).then((request) => request(axios, basePath));
|
|
845
1035
|
},
|
|
846
|
-
|
|
847
|
-
return localVarFp.
|
|
1036
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1037
|
+
return localVarFp.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(axios, basePath));
|
|
848
1038
|
}
|
|
849
1039
|
};
|
|
850
1040
|
};
|
|
851
|
-
class
|
|
852
|
-
|
|
853
|
-
return
|
|
1041
|
+
class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
1042
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
|
|
1043
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(this.axios, this.basePath));
|
|
854
1044
|
}
|
|
855
|
-
|
|
856
|
-
return
|
|
1045
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1046
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
|
|
857
1047
|
}
|
|
858
|
-
|
|
859
|
-
return
|
|
1048
|
+
getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1049
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
|
|
860
1050
|
}
|
|
861
|
-
|
|
862
|
-
return
|
|
1051
|
+
listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options) {
|
|
1052
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
863
1053
|
}
|
|
864
|
-
|
|
865
|
-
return
|
|
1054
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1055
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(this.axios, this.basePath));
|
|
866
1056
|
}
|
|
867
1057
|
}
|
|
868
|
-
const
|
|
1058
|
+
const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator = function(configuration) {
|
|
869
1059
|
return {
|
|
870
|
-
|
|
871
|
-
const localVarPath = `/apis/
|
|
1060
|
+
createrunHaloTemplateV1alpha1Apple: async (apple, options = {}) => {
|
|
1061
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples`;
|
|
872
1062
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
873
1063
|
let baseOptions;
|
|
874
1064
|
if (configuration) {
|
|
@@ -877,19 +1067,21 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
877
1067
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
878
1068
|
const localVarHeaderParameter = {};
|
|
879
1069
|
const localVarQueryParameter = {};
|
|
1070
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1071
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
880
1072
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
881
1073
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
882
1074
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
883
1075
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
884
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1076
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
885
1077
|
return {
|
|
886
1078
|
url: toPathString(localVarUrlObj),
|
|
887
1079
|
options: localVarRequestOptions
|
|
888
1080
|
};
|
|
889
1081
|
},
|
|
890
|
-
|
|
891
|
-
assertParamExists("
|
|
892
|
-
const localVarPath = `/apis/
|
|
1082
|
+
deleterunHaloTemplateV1alpha1Apple: async (name, options = {}) => {
|
|
1083
|
+
assertParamExists("deleterunHaloTemplateV1alpha1Apple", "name", name);
|
|
1084
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
893
1085
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
894
1086
|
let baseOptions;
|
|
895
1087
|
if (configuration) {
|
|
@@ -898,6 +1090,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
898
1090
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
899
1091
|
const localVarHeaderParameter = {};
|
|
900
1092
|
const localVarQueryParameter = {};
|
|
1093
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1094
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
901
1095
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
902
1096
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
903
1097
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -906,9 +1100,9 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
906
1100
|
options: localVarRequestOptions
|
|
907
1101
|
};
|
|
908
1102
|
},
|
|
909
|
-
|
|
910
|
-
assertParamExists("
|
|
911
|
-
const localVarPath = `/apis/
|
|
1103
|
+
getrunHaloTemplateV1alpha1Apple: async (name, options = {}) => {
|
|
1104
|
+
assertParamExists("getrunHaloTemplateV1alpha1Apple", "name", name);
|
|
1105
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
912
1106
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
913
1107
|
let baseOptions;
|
|
914
1108
|
if (configuration) {
|
|
@@ -917,6 +1111,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
917
1111
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
918
1112
|
const localVarHeaderParameter = {};
|
|
919
1113
|
const localVarQueryParameter = {};
|
|
1114
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1115
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
920
1116
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
921
1117
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
922
1118
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -925,8 +1121,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
925
1121
|
options: localVarRequestOptions
|
|
926
1122
|
};
|
|
927
1123
|
},
|
|
928
|
-
|
|
929
|
-
const localVarPath = `/apis/
|
|
1124
|
+
listrunHaloTemplateV1alpha1Apple: async (page, size, sort, options = {}) => {
|
|
1125
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples`;
|
|
930
1126
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
931
1127
|
let baseOptions;
|
|
932
1128
|
if (configuration) {
|
|
@@ -935,6 +1131,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
935
1131
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
936
1132
|
const localVarHeaderParameter = {};
|
|
937
1133
|
const localVarQueryParameter = {};
|
|
1134
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1135
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
938
1136
|
if (page !== void 0) {
|
|
939
1137
|
localVarQueryParameter["page"] = page;
|
|
940
1138
|
}
|
|
@@ -952,9 +1150,9 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
952
1150
|
options: localVarRequestOptions
|
|
953
1151
|
};
|
|
954
1152
|
},
|
|
955
|
-
|
|
956
|
-
assertParamExists("
|
|
957
|
-
const localVarPath = `/apis/
|
|
1153
|
+
updaterunHaloTemplateV1alpha1Apple: async (name, apple, options = {}) => {
|
|
1154
|
+
assertParamExists("updaterunHaloTemplateV1alpha1Apple", "name", name);
|
|
1155
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
958
1156
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
959
1157
|
let baseOptions;
|
|
960
1158
|
if (configuration) {
|
|
@@ -963,11 +1161,13 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
963
1161
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
964
1162
|
const localVarHeaderParameter = {};
|
|
965
1163
|
const localVarQueryParameter = {};
|
|
1164
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1165
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
966
1166
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
967
1167
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
968
1168
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
969
1169
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
970
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1170
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
971
1171
|
return {
|
|
972
1172
|
url: toPathString(localVarUrlObj),
|
|
973
1173
|
options: localVarRequestOptions
|
|
@@ -975,66 +1175,66 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
975
1175
|
}
|
|
976
1176
|
};
|
|
977
1177
|
};
|
|
978
|
-
const
|
|
979
|
-
const localVarAxiosParamCreator =
|
|
1178
|
+
const RunHaloTemplateV1alpha1AppleApiFp = function(configuration) {
|
|
1179
|
+
const localVarAxiosParamCreator = RunHaloTemplateV1alpha1AppleApiAxiosParamCreator(configuration);
|
|
980
1180
|
return {
|
|
981
|
-
async
|
|
982
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1181
|
+
async createrunHaloTemplateV1alpha1Apple(apple, options) {
|
|
1182
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createrunHaloTemplateV1alpha1Apple(apple, options);
|
|
983
1183
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
984
1184
|
},
|
|
985
|
-
async
|
|
986
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1185
|
+
async deleterunHaloTemplateV1alpha1Apple(name, options) {
|
|
1186
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleterunHaloTemplateV1alpha1Apple(name, options);
|
|
987
1187
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
988
1188
|
},
|
|
989
|
-
async
|
|
990
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1189
|
+
async getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1190
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getrunHaloTemplateV1alpha1Apple(name, options);
|
|
991
1191
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
992
1192
|
},
|
|
993
|
-
async
|
|
994
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1193
|
+
async listrunHaloTemplateV1alpha1Apple(page, size, sort, options) {
|
|
1194
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listrunHaloTemplateV1alpha1Apple(page, size, sort, options);
|
|
995
1195
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
996
1196
|
},
|
|
997
|
-
async
|
|
998
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1197
|
+
async updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1198
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updaterunHaloTemplateV1alpha1Apple(name, apple, options);
|
|
999
1199
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1000
1200
|
}
|
|
1001
1201
|
};
|
|
1002
1202
|
};
|
|
1003
|
-
const
|
|
1004
|
-
const localVarFp =
|
|
1203
|
+
const RunHaloTemplateV1alpha1AppleApiFactory = function(configuration, basePath, axios) {
|
|
1204
|
+
const localVarFp = RunHaloTemplateV1alpha1AppleApiFp(configuration);
|
|
1005
1205
|
return {
|
|
1006
|
-
|
|
1007
|
-
return localVarFp.
|
|
1206
|
+
createrunHaloTemplateV1alpha1Apple(apple, options) {
|
|
1207
|
+
return localVarFp.createrunHaloTemplateV1alpha1Apple(apple, options).then((request) => request(axios, basePath));
|
|
1008
1208
|
},
|
|
1009
|
-
|
|
1010
|
-
return localVarFp.
|
|
1209
|
+
deleterunHaloTemplateV1alpha1Apple(name, options) {
|
|
1210
|
+
return localVarFp.deleterunHaloTemplateV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
1011
1211
|
},
|
|
1012
|
-
|
|
1013
|
-
return localVarFp.
|
|
1212
|
+
getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1213
|
+
return localVarFp.getrunHaloTemplateV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
1014
1214
|
},
|
|
1015
|
-
|
|
1016
|
-
return localVarFp.
|
|
1215
|
+
listrunHaloTemplateV1alpha1Apple(page, size, sort, options) {
|
|
1216
|
+
return localVarFp.listrunHaloTemplateV1alpha1Apple(page, size, sort, options).then((request) => request(axios, basePath));
|
|
1017
1217
|
},
|
|
1018
|
-
|
|
1019
|
-
return localVarFp.
|
|
1218
|
+
updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1219
|
+
return localVarFp.updaterunHaloTemplateV1alpha1Apple(name, apple, options).then((request) => request(axios, basePath));
|
|
1020
1220
|
}
|
|
1021
1221
|
};
|
|
1022
1222
|
};
|
|
1023
|
-
class
|
|
1024
|
-
|
|
1025
|
-
return
|
|
1223
|
+
class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
1224
|
+
createrunHaloTemplateV1alpha1Apple(apple, options) {
|
|
1225
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).createrunHaloTemplateV1alpha1Apple(apple, options).then((request) => request(this.axios, this.basePath));
|
|
1026
1226
|
}
|
|
1027
|
-
|
|
1028
|
-
return
|
|
1227
|
+
deleterunHaloTemplateV1alpha1Apple(name, options) {
|
|
1228
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).deleterunHaloTemplateV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
1029
1229
|
}
|
|
1030
|
-
|
|
1031
|
-
return
|
|
1230
|
+
getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1231
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).getrunHaloTemplateV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
1032
1232
|
}
|
|
1033
|
-
|
|
1034
|
-
return
|
|
1233
|
+
listrunHaloTemplateV1alpha1Apple(page, size, sort, options) {
|
|
1234
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).listrunHaloTemplateV1alpha1Apple(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
1035
1235
|
}
|
|
1036
|
-
|
|
1037
|
-
return
|
|
1236
|
+
updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1237
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).updaterunHaloTemplateV1alpha1Apple(name, apple, options).then((request) => request(this.axios, this.basePath));
|
|
1038
1238
|
}
|
|
1039
1239
|
}
|
|
1040
1240
|
const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
@@ -1049,6 +1249,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1049
1249
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1050
1250
|
const localVarHeaderParameter = {};
|
|
1051
1251
|
const localVarQueryParameter = {};
|
|
1252
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1253
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1052
1254
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1053
1255
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1054
1256
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1070,6 +1272,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1070
1272
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1071
1273
|
const localVarHeaderParameter = {};
|
|
1072
1274
|
const localVarQueryParameter = {};
|
|
1275
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1276
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1073
1277
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1074
1278
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1075
1279
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1089,6 +1293,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1089
1293
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1090
1294
|
const localVarHeaderParameter = {};
|
|
1091
1295
|
const localVarQueryParameter = {};
|
|
1296
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1297
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1092
1298
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1093
1299
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1094
1300
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1107,6 +1313,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1107
1313
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1108
1314
|
const localVarHeaderParameter = {};
|
|
1109
1315
|
const localVarQueryParameter = {};
|
|
1316
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1317
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1110
1318
|
if (page !== void 0) {
|
|
1111
1319
|
localVarQueryParameter["page"] = page;
|
|
1112
1320
|
}
|
|
@@ -1135,6 +1343,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1135
1343
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1136
1344
|
const localVarHeaderParameter = {};
|
|
1137
1345
|
const localVarQueryParameter = {};
|
|
1346
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1347
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1138
1348
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1139
1349
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1140
1350
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1221,6 +1431,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1221
1431
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1222
1432
|
const localVarHeaderParameter = {};
|
|
1223
1433
|
const localVarQueryParameter = {};
|
|
1434
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1435
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1224
1436
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1225
1437
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1226
1438
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1242,6 +1454,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1242
1454
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1243
1455
|
const localVarHeaderParameter = {};
|
|
1244
1456
|
const localVarQueryParameter = {};
|
|
1457
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1458
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1245
1459
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1246
1460
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1247
1461
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1261,6 +1475,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1261
1475
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1262
1476
|
const localVarHeaderParameter = {};
|
|
1263
1477
|
const localVarQueryParameter = {};
|
|
1478
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1479
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1264
1480
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1265
1481
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1266
1482
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1279,6 +1495,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1279
1495
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1280
1496
|
const localVarHeaderParameter = {};
|
|
1281
1497
|
const localVarQueryParameter = {};
|
|
1498
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1499
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1282
1500
|
if (page !== void 0) {
|
|
1283
1501
|
localVarQueryParameter["page"] = page;
|
|
1284
1502
|
}
|
|
@@ -1307,6 +1525,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1307
1525
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1308
1526
|
const localVarHeaderParameter = {};
|
|
1309
1527
|
const localVarQueryParameter = {};
|
|
1528
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1529
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1310
1530
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1311
1531
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1312
1532
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1393,6 +1613,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1393
1613
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1394
1614
|
const localVarHeaderParameter = {};
|
|
1395
1615
|
const localVarQueryParameter = {};
|
|
1616
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1617
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1396
1618
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1397
1619
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1398
1620
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1414,6 +1636,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1414
1636
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1415
1637
|
const localVarHeaderParameter = {};
|
|
1416
1638
|
const localVarQueryParameter = {};
|
|
1639
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1640
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1417
1641
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1418
1642
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1419
1643
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1433,6 +1657,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1433
1657
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1434
1658
|
const localVarHeaderParameter = {};
|
|
1435
1659
|
const localVarQueryParameter = {};
|
|
1660
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1661
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1436
1662
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1437
1663
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1438
1664
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1451,6 +1677,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1451
1677
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1452
1678
|
const localVarHeaderParameter = {};
|
|
1453
1679
|
const localVarQueryParameter = {};
|
|
1680
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1681
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1454
1682
|
if (page !== void 0) {
|
|
1455
1683
|
localVarQueryParameter["page"] = page;
|
|
1456
1684
|
}
|
|
@@ -1479,6 +1707,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1479
1707
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1480
1708
|
const localVarHeaderParameter = {};
|
|
1481
1709
|
const localVarQueryParameter = {};
|
|
1710
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1711
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1482
1712
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1483
1713
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1484
1714
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1565,6 +1795,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1565
1795
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1566
1796
|
const localVarHeaderParameter = {};
|
|
1567
1797
|
const localVarQueryParameter = {};
|
|
1798
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1799
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1568
1800
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1569
1801
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1570
1802
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1586,6 +1818,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1586
1818
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1587
1819
|
const localVarHeaderParameter = {};
|
|
1588
1820
|
const localVarQueryParameter = {};
|
|
1821
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1822
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1589
1823
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1590
1824
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1591
1825
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1605,6 +1839,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1605
1839
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1606
1840
|
const localVarHeaderParameter = {};
|
|
1607
1841
|
const localVarQueryParameter = {};
|
|
1842
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1843
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1608
1844
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1609
1845
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1610
1846
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1623,6 +1859,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1623
1859
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1624
1860
|
const localVarHeaderParameter = {};
|
|
1625
1861
|
const localVarQueryParameter = {};
|
|
1862
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1863
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1626
1864
|
if (page !== void 0) {
|
|
1627
1865
|
localVarQueryParameter["page"] = page;
|
|
1628
1866
|
}
|
|
@@ -1651,6 +1889,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1651
1889
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1652
1890
|
const localVarHeaderParameter = {};
|
|
1653
1891
|
const localVarQueryParameter = {};
|
|
1892
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1893
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1654
1894
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1655
1895
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1656
1896
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1737,6 +1977,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1737
1977
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1738
1978
|
const localVarHeaderParameter = {};
|
|
1739
1979
|
const localVarQueryParameter = {};
|
|
1980
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1981
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1740
1982
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1741
1983
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1742
1984
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1758,6 +2000,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1758
2000
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1759
2001
|
const localVarHeaderParameter = {};
|
|
1760
2002
|
const localVarQueryParameter = {};
|
|
2003
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2004
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1761
2005
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1762
2006
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1763
2007
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1777,6 +2021,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1777
2021
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1778
2022
|
const localVarHeaderParameter = {};
|
|
1779
2023
|
const localVarQueryParameter = {};
|
|
2024
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2025
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1780
2026
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1781
2027
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1782
2028
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1795,6 +2041,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1795
2041
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1796
2042
|
const localVarHeaderParameter = {};
|
|
1797
2043
|
const localVarQueryParameter = {};
|
|
2044
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2045
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1798
2046
|
if (page !== void 0) {
|
|
1799
2047
|
localVarQueryParameter["page"] = page;
|
|
1800
2048
|
}
|
|
@@ -1823,6 +2071,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1823
2071
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1824
2072
|
const localVarHeaderParameter = {};
|
|
1825
2073
|
const localVarQueryParameter = {};
|
|
2074
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2075
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1826
2076
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1827
2077
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1828
2078
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1909,6 +2159,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1909
2159
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1910
2160
|
const localVarHeaderParameter = {};
|
|
1911
2161
|
const localVarQueryParameter = {};
|
|
2162
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2163
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1912
2164
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1913
2165
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1914
2166
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1930,6 +2182,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1930
2182
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1931
2183
|
const localVarHeaderParameter = {};
|
|
1932
2184
|
const localVarQueryParameter = {};
|
|
2185
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2186
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1933
2187
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1934
2188
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1935
2189
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1949,6 +2203,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1949
2203
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1950
2204
|
const localVarHeaderParameter = {};
|
|
1951
2205
|
const localVarQueryParameter = {};
|
|
2206
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2207
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1952
2208
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1953
2209
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1954
2210
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1967,6 +2223,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1967
2223
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1968
2224
|
const localVarHeaderParameter = {};
|
|
1969
2225
|
const localVarQueryParameter = {};
|
|
2226
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2227
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1970
2228
|
if (page !== void 0) {
|
|
1971
2229
|
localVarQueryParameter["page"] = page;
|
|
1972
2230
|
}
|
|
@@ -1995,6 +2253,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1995
2253
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1996
2254
|
const localVarHeaderParameter = {};
|
|
1997
2255
|
const localVarQueryParameter = {};
|
|
2256
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2257
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1998
2258
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1999
2259
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2000
2260
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2086,10 +2346,18 @@ class Configuration {
|
|
|
2086
2346
|
}
|
|
2087
2347
|
}
|
|
2088
2348
|
|
|
2349
|
+
exports.ApiHaloRunV1alpha1PluginApi = ApiHaloRunV1alpha1PluginApi;
|
|
2350
|
+
exports.ApiHaloRunV1alpha1PluginApiAxiosParamCreator = ApiHaloRunV1alpha1PluginApiAxiosParamCreator;
|
|
2351
|
+
exports.ApiHaloRunV1alpha1PluginApiFactory = ApiHaloRunV1alpha1PluginApiFactory;
|
|
2352
|
+
exports.ApiHaloRunV1alpha1PluginApiFp = ApiHaloRunV1alpha1PluginApiFp;
|
|
2089
2353
|
exports.ApiHaloRunV1alpha1UserApi = ApiHaloRunV1alpha1UserApi;
|
|
2090
2354
|
exports.ApiHaloRunV1alpha1UserApiAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator;
|
|
2091
2355
|
exports.ApiHaloRunV1alpha1UserApiFactory = ApiHaloRunV1alpha1UserApiFactory;
|
|
2092
2356
|
exports.ApiHaloRunV1alpha1UserApiFp = ApiHaloRunV1alpha1UserApiFp;
|
|
2357
|
+
exports.ApplesControllerApi = ApplesControllerApi;
|
|
2358
|
+
exports.ApplesControllerApiAxiosParamCreator = ApplesControllerApiAxiosParamCreator;
|
|
2359
|
+
exports.ApplesControllerApiFactory = ApplesControllerApiFactory;
|
|
2360
|
+
exports.ApplesControllerApiFp = ApplesControllerApiFp;
|
|
2093
2361
|
exports.Configuration = Configuration;
|
|
2094
2362
|
exports.CoreHaloRunV1alpha1LinkApi = CoreHaloRunV1alpha1LinkApi;
|
|
2095
2363
|
exports.CoreHaloRunV1alpha1LinkApiAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator;
|
|
@@ -2099,10 +2367,6 @@ exports.CoreHaloRunV1alpha1LinkGroupApi = CoreHaloRunV1alpha1LinkGroupApi;
|
|
|
2099
2367
|
exports.CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator;
|
|
2100
2368
|
exports.CoreHaloRunV1alpha1LinkGroupApiFactory = CoreHaloRunV1alpha1LinkGroupApiFactory;
|
|
2101
2369
|
exports.CoreHaloRunV1alpha1LinkGroupApiFp = CoreHaloRunV1alpha1LinkGroupApiFp;
|
|
2102
|
-
exports.CoreHaloRunV1alpha1PostApi = CoreHaloRunV1alpha1PostApi;
|
|
2103
|
-
exports.CoreHaloRunV1alpha1PostApiAxiosParamCreator = CoreHaloRunV1alpha1PostApiAxiosParamCreator;
|
|
2104
|
-
exports.CoreHaloRunV1alpha1PostApiFactory = CoreHaloRunV1alpha1PostApiFactory;
|
|
2105
|
-
exports.CoreHaloRunV1alpha1PostApiFp = CoreHaloRunV1alpha1PostApiFp;
|
|
2106
2370
|
exports.PluginHaloRunV1alpha1PluginApi = PluginHaloRunV1alpha1PluginApi;
|
|
2107
2371
|
exports.PluginHaloRunV1alpha1PluginApiAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator;
|
|
2108
2372
|
exports.PluginHaloRunV1alpha1PluginApiFactory = PluginHaloRunV1alpha1PluginApiFactory;
|
|
@@ -2112,6 +2376,10 @@ exports.PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = PluginHaloRunV1a
|
|
|
2112
2376
|
exports.PluginHaloRunV1alpha1ReverseProxyApiFactory = PluginHaloRunV1alpha1ReverseProxyApiFactory;
|
|
2113
2377
|
exports.PluginHaloRunV1alpha1ReverseProxyApiFp = PluginHaloRunV1alpha1ReverseProxyApiFp;
|
|
2114
2378
|
exports.PluginStatusPhaseEnum = PluginStatusPhaseEnum;
|
|
2379
|
+
exports.RunHaloTemplateV1alpha1AppleApi = RunHaloTemplateV1alpha1AppleApi;
|
|
2380
|
+
exports.RunHaloTemplateV1alpha1AppleApiAxiosParamCreator = RunHaloTemplateV1alpha1AppleApiAxiosParamCreator;
|
|
2381
|
+
exports.RunHaloTemplateV1alpha1AppleApiFactory = RunHaloTemplateV1alpha1AppleApiFactory;
|
|
2382
|
+
exports.RunHaloTemplateV1alpha1AppleApiFp = RunHaloTemplateV1alpha1AppleApiFp;
|
|
2115
2383
|
exports.V1alpha1ConfigMapApi = V1alpha1ConfigMapApi;
|
|
2116
2384
|
exports.V1alpha1ConfigMapApiAxiosParamCreator = V1alpha1ConfigMapApiAxiosParamCreator;
|
|
2117
2385
|
exports.V1alpha1ConfigMapApiFactory = V1alpha1ConfigMapApiFactory;
|