@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.mjs
CHANGED
|
@@ -25,6 +25,17 @@ const assertParamExists = function(functionName, paramName, paramValue) {
|
|
|
25
25
|
throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
+
const setBasicAuthToObject = function(object, configuration) {
|
|
29
|
+
if (configuration && (configuration.username || configuration.password)) {
|
|
30
|
+
object["auth"] = { username: configuration.username, password: configuration.password };
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
const setBearerAuthToObject = async function(object, configuration) {
|
|
34
|
+
if (configuration && configuration.accessToken) {
|
|
35
|
+
const accessToken = typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken;
|
|
36
|
+
object["Authorization"] = "Bearer " + accessToken;
|
|
37
|
+
}
|
|
38
|
+
};
|
|
28
39
|
const setSearchParams = function(url, ...objects) {
|
|
29
40
|
const searchParams = new URLSearchParams(url.search);
|
|
30
41
|
for (const object of objects) {
|
|
@@ -64,8 +75,85 @@ const PluginStatusPhaseEnum = {
|
|
|
64
75
|
Stopped: "STOPPED",
|
|
65
76
|
Failed: "FAILED"
|
|
66
77
|
};
|
|
78
|
+
const ApiHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
79
|
+
return {
|
|
80
|
+
installPlugin: async (file, options = {}) => {
|
|
81
|
+
assertParamExists("installPlugin", "file", file);
|
|
82
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/plugins/install`;
|
|
83
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84
|
+
let baseOptions;
|
|
85
|
+
if (configuration) {
|
|
86
|
+
baseOptions = configuration.baseOptions;
|
|
87
|
+
}
|
|
88
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
89
|
+
const localVarHeaderParameter = {};
|
|
90
|
+
const localVarQueryParameter = {};
|
|
91
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
92
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
93
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
94
|
+
if (file !== void 0) {
|
|
95
|
+
localVarFormParams.append("file", file);
|
|
96
|
+
}
|
|
97
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
98
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
99
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
100
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
101
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
102
|
+
return {
|
|
103
|
+
url: toPathString(localVarUrlObj),
|
|
104
|
+
options: localVarRequestOptions
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
const ApiHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
110
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
111
|
+
return {
|
|
112
|
+
async installPlugin(file, options) {
|
|
113
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
114
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
const ApiHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
119
|
+
const localVarFp = ApiHaloRunV1alpha1PluginApiFp(configuration);
|
|
120
|
+
return {
|
|
121
|
+
installPlugin(file, options) {
|
|
122
|
+
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
127
|
+
installPlugin(file, options) {
|
|
128
|
+
return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(file, options).then((request) => request(this.axios, this.basePath));
|
|
129
|
+
}
|
|
130
|
+
}
|
|
67
131
|
const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
68
132
|
return {
|
|
133
|
+
changePassword: async (name, changePasswordRequest, options = {}) => {
|
|
134
|
+
assertParamExists("changePassword", "name", name);
|
|
135
|
+
assertParamExists("changePassword", "changePasswordRequest", changePasswordRequest);
|
|
136
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/password`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
137
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
138
|
+
let baseOptions;
|
|
139
|
+
if (configuration) {
|
|
140
|
+
baseOptions = configuration.baseOptions;
|
|
141
|
+
}
|
|
142
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
143
|
+
const localVarHeaderParameter = {};
|
|
144
|
+
const localVarQueryParameter = {};
|
|
145
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
146
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
147
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
148
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
149
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
150
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
151
|
+
localVarRequestOptions.data = serializeDataIfNeeded(changePasswordRequest, localVarRequestOptions, configuration);
|
|
152
|
+
return {
|
|
153
|
+
url: toPathString(localVarUrlObj),
|
|
154
|
+
options: localVarRequestOptions
|
|
155
|
+
};
|
|
156
|
+
},
|
|
69
157
|
getCurrentUserDetail: async (options = {}) => {
|
|
70
158
|
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-`;
|
|
71
159
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -76,6 +164,8 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
76
164
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
77
165
|
const localVarHeaderParameter = {};
|
|
78
166
|
const localVarQueryParameter = {};
|
|
167
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
168
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
79
169
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80
170
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81
171
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -95,6 +185,8 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
95
185
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
96
186
|
const localVarHeaderParameter = {};
|
|
97
187
|
const localVarQueryParameter = {};
|
|
188
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
189
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
98
190
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
99
191
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
100
192
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -115,6 +207,8 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
115
207
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
116
208
|
const localVarHeaderParameter = {};
|
|
117
209
|
const localVarQueryParameter = {};
|
|
210
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
211
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
118
212
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
119
213
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120
214
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -130,6 +224,10 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
130
224
|
const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
131
225
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
|
|
132
226
|
return {
|
|
227
|
+
async changePassword(name, changePasswordRequest, options) {
|
|
228
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(name, changePasswordRequest, options);
|
|
229
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
230
|
+
},
|
|
133
231
|
async getCurrentUserDetail(options) {
|
|
134
232
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
|
|
135
233
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
@@ -147,6 +245,9 @@ const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
147
245
|
const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
148
246
|
const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
|
|
149
247
|
return {
|
|
248
|
+
changePassword(name, changePasswordRequest, options) {
|
|
249
|
+
return localVarFp.changePassword(name, changePasswordRequest, options).then((request) => request(axios, basePath));
|
|
250
|
+
},
|
|
150
251
|
getCurrentUserDetail(options) {
|
|
151
252
|
return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
|
|
152
253
|
},
|
|
@@ -159,6 +260,9 @@ const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios
|
|
|
159
260
|
};
|
|
160
261
|
};
|
|
161
262
|
class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
263
|
+
changePassword(name, changePasswordRequest, options) {
|
|
264
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
265
|
+
}
|
|
162
266
|
getCurrentUserDetail(options) {
|
|
163
267
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
|
|
164
268
|
}
|
|
@@ -169,6 +273,52 @@ class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
169
273
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
|
|
170
274
|
}
|
|
171
275
|
}
|
|
276
|
+
const ApplesControllerApiAxiosParamCreator = function(configuration) {
|
|
277
|
+
return {
|
|
278
|
+
hello: async (options = {}) => {
|
|
279
|
+
const localVarPath = `/apis/plugin.api.halo.run/v1alpha1/plugins/PluginTemplate/apples`;
|
|
280
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
281
|
+
let baseOptions;
|
|
282
|
+
if (configuration) {
|
|
283
|
+
baseOptions = configuration.baseOptions;
|
|
284
|
+
}
|
|
285
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
286
|
+
const localVarHeaderParameter = {};
|
|
287
|
+
const localVarQueryParameter = {};
|
|
288
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
289
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
290
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
291
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
292
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
293
|
+
return {
|
|
294
|
+
url: toPathString(localVarUrlObj),
|
|
295
|
+
options: localVarRequestOptions
|
|
296
|
+
};
|
|
297
|
+
}
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
const ApplesControllerApiFp = function(configuration) {
|
|
301
|
+
const localVarAxiosParamCreator = ApplesControllerApiAxiosParamCreator(configuration);
|
|
302
|
+
return {
|
|
303
|
+
async hello(options) {
|
|
304
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.hello(options);
|
|
305
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
const ApplesControllerApiFactory = function(configuration, basePath, axios) {
|
|
310
|
+
const localVarFp = ApplesControllerApiFp(configuration);
|
|
311
|
+
return {
|
|
312
|
+
hello(options) {
|
|
313
|
+
return localVarFp.hello(options).then((request) => request(axios, basePath));
|
|
314
|
+
}
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
class ApplesControllerApi extends BaseAPI {
|
|
318
|
+
hello(options) {
|
|
319
|
+
return ApplesControllerApiFp(this.configuration).hello(options).then((request) => request(this.axios, this.basePath));
|
|
320
|
+
}
|
|
321
|
+
}
|
|
172
322
|
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
173
323
|
return {
|
|
174
324
|
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
@@ -181,6 +331,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
181
331
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
182
332
|
const localVarHeaderParameter = {};
|
|
183
333
|
const localVarQueryParameter = {};
|
|
334
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
335
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
184
336
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
185
337
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
186
338
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -202,6 +354,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
202
354
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
203
355
|
const localVarHeaderParameter = {};
|
|
204
356
|
const localVarQueryParameter = {};
|
|
357
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
358
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
205
359
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
206
360
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
207
361
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -221,6 +375,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
221
375
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
222
376
|
const localVarHeaderParameter = {};
|
|
223
377
|
const localVarQueryParameter = {};
|
|
378
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
379
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
224
380
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
225
381
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
226
382
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -239,6 +395,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
239
395
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
240
396
|
const localVarHeaderParameter = {};
|
|
241
397
|
const localVarQueryParameter = {};
|
|
398
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
399
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
242
400
|
if (page !== void 0) {
|
|
243
401
|
localVarQueryParameter["page"] = page;
|
|
244
402
|
}
|
|
@@ -267,6 +425,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
267
425
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
268
426
|
const localVarHeaderParameter = {};
|
|
269
427
|
const localVarQueryParameter = {};
|
|
428
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
429
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
270
430
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
271
431
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
272
432
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -353,6 +513,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
353
513
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
354
514
|
const localVarHeaderParameter = {};
|
|
355
515
|
const localVarQueryParameter = {};
|
|
516
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
517
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
356
518
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
357
519
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
358
520
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -374,6 +536,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
374
536
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
375
537
|
const localVarHeaderParameter = {};
|
|
376
538
|
const localVarQueryParameter = {};
|
|
539
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
540
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
377
541
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
378
542
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
379
543
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -393,6 +557,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
393
557
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
394
558
|
const localVarHeaderParameter = {};
|
|
395
559
|
const localVarQueryParameter = {};
|
|
560
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
561
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
396
562
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
397
563
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
398
564
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -411,6 +577,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
411
577
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
412
578
|
const localVarHeaderParameter = {};
|
|
413
579
|
const localVarQueryParameter = {};
|
|
580
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
581
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
414
582
|
if (page !== void 0) {
|
|
415
583
|
localVarQueryParameter["page"] = page;
|
|
416
584
|
}
|
|
@@ -439,6 +607,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
439
607
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
440
608
|
const localVarHeaderParameter = {};
|
|
441
609
|
const localVarQueryParameter = {};
|
|
610
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
611
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
442
612
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
443
613
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
444
614
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -513,10 +683,10 @@ class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
513
683
|
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
514
684
|
}
|
|
515
685
|
}
|
|
516
|
-
const
|
|
686
|
+
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
517
687
|
return {
|
|
518
|
-
|
|
519
|
-
const localVarPath = `/apis/
|
|
688
|
+
createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
|
|
689
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
|
|
520
690
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
521
691
|
let baseOptions;
|
|
522
692
|
if (configuration) {
|
|
@@ -525,19 +695,21 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
525
695
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
526
696
|
const localVarHeaderParameter = {};
|
|
527
697
|
const localVarQueryParameter = {};
|
|
698
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
699
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
528
700
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
529
701
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
530
702
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
531
703
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
532
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
704
|
+
localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
|
|
533
705
|
return {
|
|
534
706
|
url: toPathString(localVarUrlObj),
|
|
535
707
|
options: localVarRequestOptions
|
|
536
708
|
};
|
|
537
709
|
},
|
|
538
|
-
|
|
539
|
-
assertParamExists("
|
|
540
|
-
const localVarPath = `/apis/
|
|
710
|
+
deletepluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
|
|
711
|
+
assertParamExists("deletepluginHaloRunV1alpha1Plugin", "name", name);
|
|
712
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
541
713
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
542
714
|
let baseOptions;
|
|
543
715
|
if (configuration) {
|
|
@@ -546,6 +718,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
546
718
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
547
719
|
const localVarHeaderParameter = {};
|
|
548
720
|
const localVarQueryParameter = {};
|
|
721
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
722
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
549
723
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
550
724
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
551
725
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -554,9 +728,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
554
728
|
options: localVarRequestOptions
|
|
555
729
|
};
|
|
556
730
|
},
|
|
557
|
-
|
|
558
|
-
assertParamExists("
|
|
559
|
-
const localVarPath = `/apis/
|
|
731
|
+
getpluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
|
|
732
|
+
assertParamExists("getpluginHaloRunV1alpha1Plugin", "name", name);
|
|
733
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
560
734
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
561
735
|
let baseOptions;
|
|
562
736
|
if (configuration) {
|
|
@@ -565,6 +739,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
565
739
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
566
740
|
const localVarHeaderParameter = {};
|
|
567
741
|
const localVarQueryParameter = {};
|
|
742
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
743
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
568
744
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
569
745
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
570
746
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -573,8 +749,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
573
749
|
options: localVarRequestOptions
|
|
574
750
|
};
|
|
575
751
|
},
|
|
576
|
-
|
|
577
|
-
const localVarPath = `/apis/
|
|
752
|
+
listpluginHaloRunV1alpha1Plugin: async (page, size, sort, options = {}) => {
|
|
753
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
|
|
578
754
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
579
755
|
let baseOptions;
|
|
580
756
|
if (configuration) {
|
|
@@ -583,6 +759,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
583
759
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
584
760
|
const localVarHeaderParameter = {};
|
|
585
761
|
const localVarQueryParameter = {};
|
|
762
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
763
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
586
764
|
if (page !== void 0) {
|
|
587
765
|
localVarQueryParameter["page"] = page;
|
|
588
766
|
}
|
|
@@ -600,9 +778,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
600
778
|
options: localVarRequestOptions
|
|
601
779
|
};
|
|
602
780
|
},
|
|
603
|
-
|
|
604
|
-
assertParamExists("
|
|
605
|
-
const localVarPath = `/apis/
|
|
781
|
+
updatepluginHaloRunV1alpha1Plugin: async (name, plugin, options = {}) => {
|
|
782
|
+
assertParamExists("updatepluginHaloRunV1alpha1Plugin", "name", name);
|
|
783
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
606
784
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
607
785
|
let baseOptions;
|
|
608
786
|
if (configuration) {
|
|
@@ -611,11 +789,13 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
611
789
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
612
790
|
const localVarHeaderParameter = {};
|
|
613
791
|
const localVarQueryParameter = {};
|
|
792
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
793
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
614
794
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
615
795
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
616
796
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
617
797
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
618
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
798
|
+
localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
|
|
619
799
|
return {
|
|
620
800
|
url: toPathString(localVarUrlObj),
|
|
621
801
|
options: localVarRequestOptions
|
|
@@ -623,72 +803,72 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
623
803
|
}
|
|
624
804
|
};
|
|
625
805
|
};
|
|
626
|
-
const
|
|
627
|
-
const localVarAxiosParamCreator =
|
|
806
|
+
const PluginHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
807
|
+
const localVarAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
628
808
|
return {
|
|
629
|
-
async
|
|
630
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
809
|
+
async createpluginHaloRunV1alpha1Plugin(plugin, options) {
|
|
810
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1Plugin(plugin, options);
|
|
631
811
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
632
812
|
},
|
|
633
|
-
async
|
|
634
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
813
|
+
async deletepluginHaloRunV1alpha1Plugin(name, options) {
|
|
814
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1Plugin(name, options);
|
|
635
815
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
636
816
|
},
|
|
637
|
-
async
|
|
638
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
817
|
+
async getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
818
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1Plugin(name, options);
|
|
639
819
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
640
820
|
},
|
|
641
|
-
async
|
|
642
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
821
|
+
async listpluginHaloRunV1alpha1Plugin(page, size, sort, options) {
|
|
822
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1Plugin(page, size, sort, options);
|
|
643
823
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
644
824
|
},
|
|
645
|
-
async
|
|
646
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
825
|
+
async updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
826
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1Plugin(name, plugin, options);
|
|
647
827
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
648
828
|
}
|
|
649
829
|
};
|
|
650
830
|
};
|
|
651
|
-
const
|
|
652
|
-
const localVarFp =
|
|
831
|
+
const PluginHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
832
|
+
const localVarFp = PluginHaloRunV1alpha1PluginApiFp(configuration);
|
|
653
833
|
return {
|
|
654
|
-
|
|
655
|
-
return localVarFp.
|
|
834
|
+
createpluginHaloRunV1alpha1Plugin(plugin, options) {
|
|
835
|
+
return localVarFp.createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(axios, basePath));
|
|
656
836
|
},
|
|
657
|
-
|
|
658
|
-
return localVarFp.
|
|
837
|
+
deletepluginHaloRunV1alpha1Plugin(name, options) {
|
|
838
|
+
return localVarFp.deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
|
|
659
839
|
},
|
|
660
|
-
|
|
661
|
-
return localVarFp.
|
|
840
|
+
getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
841
|
+
return localVarFp.getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
|
|
662
842
|
},
|
|
663
|
-
|
|
664
|
-
return localVarFp.
|
|
843
|
+
listpluginHaloRunV1alpha1Plugin(page, size, sort, options) {
|
|
844
|
+
return localVarFp.listpluginHaloRunV1alpha1Plugin(page, size, sort, options).then((request) => request(axios, basePath));
|
|
665
845
|
},
|
|
666
|
-
|
|
667
|
-
return localVarFp.
|
|
846
|
+
updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
847
|
+
return localVarFp.updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(axios, basePath));
|
|
668
848
|
}
|
|
669
849
|
};
|
|
670
850
|
};
|
|
671
|
-
class
|
|
672
|
-
|
|
673
|
-
return
|
|
851
|
+
class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
852
|
+
createpluginHaloRunV1alpha1Plugin(plugin, options) {
|
|
853
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(this.axios, this.basePath));
|
|
674
854
|
}
|
|
675
|
-
|
|
676
|
-
return
|
|
855
|
+
deletepluginHaloRunV1alpha1Plugin(name, options) {
|
|
856
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
|
|
677
857
|
}
|
|
678
|
-
|
|
679
|
-
return
|
|
858
|
+
getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
859
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
|
|
680
860
|
}
|
|
681
|
-
|
|
682
|
-
return
|
|
861
|
+
listpluginHaloRunV1alpha1Plugin(page, size, sort, options) {
|
|
862
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
683
863
|
}
|
|
684
|
-
|
|
685
|
-
return
|
|
864
|
+
updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
865
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(this.axios, this.basePath));
|
|
686
866
|
}
|
|
687
867
|
}
|
|
688
|
-
const
|
|
868
|
+
const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configuration) {
|
|
689
869
|
return {
|
|
690
|
-
|
|
691
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
870
|
+
createpluginHaloRunV1alpha1ReverseProxy: async (reverseProxy, options = {}) => {
|
|
871
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
|
|
692
872
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
693
873
|
let baseOptions;
|
|
694
874
|
if (configuration) {
|
|
@@ -697,19 +877,21 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
697
877
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
698
878
|
const localVarHeaderParameter = {};
|
|
699
879
|
const localVarQueryParameter = {};
|
|
880
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
881
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
700
882
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
701
883
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
702
884
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
703
885
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
704
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
886
|
+
localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
|
|
705
887
|
return {
|
|
706
888
|
url: toPathString(localVarUrlObj),
|
|
707
889
|
options: localVarRequestOptions
|
|
708
890
|
};
|
|
709
891
|
},
|
|
710
|
-
|
|
711
|
-
assertParamExists("
|
|
712
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
892
|
+
deletepluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
|
|
893
|
+
assertParamExists("deletepluginHaloRunV1alpha1ReverseProxy", "name", name);
|
|
894
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
713
895
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
714
896
|
let baseOptions;
|
|
715
897
|
if (configuration) {
|
|
@@ -718,6 +900,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
718
900
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
719
901
|
const localVarHeaderParameter = {};
|
|
720
902
|
const localVarQueryParameter = {};
|
|
903
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
904
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
721
905
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
722
906
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
723
907
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -726,9 +910,9 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
726
910
|
options: localVarRequestOptions
|
|
727
911
|
};
|
|
728
912
|
},
|
|
729
|
-
|
|
730
|
-
assertParamExists("
|
|
731
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
913
|
+
getpluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
|
|
914
|
+
assertParamExists("getpluginHaloRunV1alpha1ReverseProxy", "name", name);
|
|
915
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
732
916
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
733
917
|
let baseOptions;
|
|
734
918
|
if (configuration) {
|
|
@@ -737,6 +921,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
737
921
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
738
922
|
const localVarHeaderParameter = {};
|
|
739
923
|
const localVarQueryParameter = {};
|
|
924
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
925
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
740
926
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
741
927
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
742
928
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -745,8 +931,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
745
931
|
options: localVarRequestOptions
|
|
746
932
|
};
|
|
747
933
|
},
|
|
748
|
-
|
|
749
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
934
|
+
listpluginHaloRunV1alpha1ReverseProxy: async (page, size, sort, options = {}) => {
|
|
935
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
|
|
750
936
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
751
937
|
let baseOptions;
|
|
752
938
|
if (configuration) {
|
|
@@ -755,6 +941,8 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
755
941
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
756
942
|
const localVarHeaderParameter = {};
|
|
757
943
|
const localVarQueryParameter = {};
|
|
944
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
945
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
758
946
|
if (page !== void 0) {
|
|
759
947
|
localVarQueryParameter["page"] = page;
|
|
760
948
|
}
|
|
@@ -772,9 +960,9 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
772
960
|
options: localVarRequestOptions
|
|
773
961
|
};
|
|
774
962
|
},
|
|
775
|
-
|
|
776
|
-
assertParamExists("
|
|
777
|
-
const localVarPath = `/apis/plugin.halo.run/v1alpha1/
|
|
963
|
+
updatepluginHaloRunV1alpha1ReverseProxy: async (name, reverseProxy, options = {}) => {
|
|
964
|
+
assertParamExists("updatepluginHaloRunV1alpha1ReverseProxy", "name", name);
|
|
965
|
+
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
778
966
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
779
967
|
let baseOptions;
|
|
780
968
|
if (configuration) {
|
|
@@ -783,11 +971,13 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
783
971
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
784
972
|
const localVarHeaderParameter = {};
|
|
785
973
|
const localVarQueryParameter = {};
|
|
974
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
975
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
786
976
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
787
977
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
788
978
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
789
979
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
790
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
980
|
+
localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
|
|
791
981
|
return {
|
|
792
982
|
url: toPathString(localVarUrlObj),
|
|
793
983
|
options: localVarRequestOptions
|
|
@@ -795,72 +985,72 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
795
985
|
}
|
|
796
986
|
};
|
|
797
987
|
};
|
|
798
|
-
const
|
|
799
|
-
const localVarAxiosParamCreator =
|
|
988
|
+
const PluginHaloRunV1alpha1ReverseProxyApiFp = function(configuration) {
|
|
989
|
+
const localVarAxiosParamCreator = PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator(configuration);
|
|
800
990
|
return {
|
|
801
|
-
async
|
|
802
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
991
|
+
async createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
|
|
992
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options);
|
|
803
993
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
804
994
|
},
|
|
805
|
-
async
|
|
806
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
995
|
+
async deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
996
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1ReverseProxy(name, options);
|
|
807
997
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
808
998
|
},
|
|
809
|
-
async
|
|
810
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
999
|
+
async getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1000
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1ReverseProxy(name, options);
|
|
811
1001
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
812
1002
|
},
|
|
813
|
-
async
|
|
814
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1003
|
+
async listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options) {
|
|
1004
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options);
|
|
815
1005
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
816
1006
|
},
|
|
817
|
-
async
|
|
818
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1007
|
+
async updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1008
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options);
|
|
819
1009
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
820
1010
|
}
|
|
821
1011
|
};
|
|
822
1012
|
};
|
|
823
|
-
const
|
|
824
|
-
const localVarFp =
|
|
1013
|
+
const PluginHaloRunV1alpha1ReverseProxyApiFactory = function(configuration, basePath, axios) {
|
|
1014
|
+
const localVarFp = PluginHaloRunV1alpha1ReverseProxyApiFp(configuration);
|
|
825
1015
|
return {
|
|
826
|
-
|
|
827
|
-
return localVarFp.
|
|
1016
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
|
|
1017
|
+
return localVarFp.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(axios, basePath));
|
|
828
1018
|
},
|
|
829
|
-
|
|
830
|
-
return localVarFp.
|
|
1019
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1020
|
+
return localVarFp.deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
|
|
831
1021
|
},
|
|
832
|
-
|
|
833
|
-
return localVarFp.
|
|
1022
|
+
getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1023
|
+
return localVarFp.getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
|
|
834
1024
|
},
|
|
835
|
-
|
|
836
|
-
return localVarFp.
|
|
1025
|
+
listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options) {
|
|
1026
|
+
return localVarFp.listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options).then((request) => request(axios, basePath));
|
|
837
1027
|
},
|
|
838
|
-
|
|
839
|
-
return localVarFp.
|
|
1028
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1029
|
+
return localVarFp.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(axios, basePath));
|
|
840
1030
|
}
|
|
841
1031
|
};
|
|
842
1032
|
};
|
|
843
|
-
class
|
|
844
|
-
|
|
845
|
-
return
|
|
1033
|
+
class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
1034
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
|
|
1035
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(this.axios, this.basePath));
|
|
846
1036
|
}
|
|
847
|
-
|
|
848
|
-
return
|
|
1037
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1038
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
|
|
849
1039
|
}
|
|
850
|
-
|
|
851
|
-
return
|
|
1040
|
+
getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1041
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
|
|
852
1042
|
}
|
|
853
|
-
|
|
854
|
-
return
|
|
1043
|
+
listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options) {
|
|
1044
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
855
1045
|
}
|
|
856
|
-
|
|
857
|
-
return
|
|
1046
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1047
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(this.axios, this.basePath));
|
|
858
1048
|
}
|
|
859
1049
|
}
|
|
860
|
-
const
|
|
1050
|
+
const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator = function(configuration) {
|
|
861
1051
|
return {
|
|
862
|
-
|
|
863
|
-
const localVarPath = `/apis/
|
|
1052
|
+
createrunHaloTemplateV1alpha1Apple: async (apple, options = {}) => {
|
|
1053
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples`;
|
|
864
1054
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
865
1055
|
let baseOptions;
|
|
866
1056
|
if (configuration) {
|
|
@@ -869,19 +1059,21 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
869
1059
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
870
1060
|
const localVarHeaderParameter = {};
|
|
871
1061
|
const localVarQueryParameter = {};
|
|
1062
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1063
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
872
1064
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
873
1065
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
874
1066
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
875
1067
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
876
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1068
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
877
1069
|
return {
|
|
878
1070
|
url: toPathString(localVarUrlObj),
|
|
879
1071
|
options: localVarRequestOptions
|
|
880
1072
|
};
|
|
881
1073
|
},
|
|
882
|
-
|
|
883
|
-
assertParamExists("
|
|
884
|
-
const localVarPath = `/apis/
|
|
1074
|
+
deleterunHaloTemplateV1alpha1Apple: async (name, options = {}) => {
|
|
1075
|
+
assertParamExists("deleterunHaloTemplateV1alpha1Apple", "name", name);
|
|
1076
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
885
1077
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
886
1078
|
let baseOptions;
|
|
887
1079
|
if (configuration) {
|
|
@@ -890,6 +1082,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
890
1082
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
891
1083
|
const localVarHeaderParameter = {};
|
|
892
1084
|
const localVarQueryParameter = {};
|
|
1085
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1086
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
893
1087
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
894
1088
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
895
1089
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -898,9 +1092,9 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
898
1092
|
options: localVarRequestOptions
|
|
899
1093
|
};
|
|
900
1094
|
},
|
|
901
|
-
|
|
902
|
-
assertParamExists("
|
|
903
|
-
const localVarPath = `/apis/
|
|
1095
|
+
getrunHaloTemplateV1alpha1Apple: async (name, options = {}) => {
|
|
1096
|
+
assertParamExists("getrunHaloTemplateV1alpha1Apple", "name", name);
|
|
1097
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
904
1098
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
905
1099
|
let baseOptions;
|
|
906
1100
|
if (configuration) {
|
|
@@ -909,6 +1103,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
909
1103
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
910
1104
|
const localVarHeaderParameter = {};
|
|
911
1105
|
const localVarQueryParameter = {};
|
|
1106
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1107
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
912
1108
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
913
1109
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
914
1110
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -917,8 +1113,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
917
1113
|
options: localVarRequestOptions
|
|
918
1114
|
};
|
|
919
1115
|
},
|
|
920
|
-
|
|
921
|
-
const localVarPath = `/apis/
|
|
1116
|
+
listrunHaloTemplateV1alpha1Apple: async (page, size, sort, options = {}) => {
|
|
1117
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples`;
|
|
922
1118
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
923
1119
|
let baseOptions;
|
|
924
1120
|
if (configuration) {
|
|
@@ -927,6 +1123,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
927
1123
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
928
1124
|
const localVarHeaderParameter = {};
|
|
929
1125
|
const localVarQueryParameter = {};
|
|
1126
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1127
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
930
1128
|
if (page !== void 0) {
|
|
931
1129
|
localVarQueryParameter["page"] = page;
|
|
932
1130
|
}
|
|
@@ -944,9 +1142,9 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
944
1142
|
options: localVarRequestOptions
|
|
945
1143
|
};
|
|
946
1144
|
},
|
|
947
|
-
|
|
948
|
-
assertParamExists("
|
|
949
|
-
const localVarPath = `/apis/
|
|
1145
|
+
updaterunHaloTemplateV1alpha1Apple: async (name, apple, options = {}) => {
|
|
1146
|
+
assertParamExists("updaterunHaloTemplateV1alpha1Apple", "name", name);
|
|
1147
|
+
const localVarPath = `/apis/run.halo.template/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
950
1148
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
951
1149
|
let baseOptions;
|
|
952
1150
|
if (configuration) {
|
|
@@ -955,11 +1153,13 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
955
1153
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
956
1154
|
const localVarHeaderParameter = {};
|
|
957
1155
|
const localVarQueryParameter = {};
|
|
1156
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1157
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
958
1158
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
959
1159
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
960
1160
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
961
1161
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
962
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
1162
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
963
1163
|
return {
|
|
964
1164
|
url: toPathString(localVarUrlObj),
|
|
965
1165
|
options: localVarRequestOptions
|
|
@@ -967,66 +1167,66 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
967
1167
|
}
|
|
968
1168
|
};
|
|
969
1169
|
};
|
|
970
|
-
const
|
|
971
|
-
const localVarAxiosParamCreator =
|
|
1170
|
+
const RunHaloTemplateV1alpha1AppleApiFp = function(configuration) {
|
|
1171
|
+
const localVarAxiosParamCreator = RunHaloTemplateV1alpha1AppleApiAxiosParamCreator(configuration);
|
|
972
1172
|
return {
|
|
973
|
-
async
|
|
974
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1173
|
+
async createrunHaloTemplateV1alpha1Apple(apple, options) {
|
|
1174
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createrunHaloTemplateV1alpha1Apple(apple, options);
|
|
975
1175
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
976
1176
|
},
|
|
977
|
-
async
|
|
978
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1177
|
+
async deleterunHaloTemplateV1alpha1Apple(name, options) {
|
|
1178
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleterunHaloTemplateV1alpha1Apple(name, options);
|
|
979
1179
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
980
1180
|
},
|
|
981
|
-
async
|
|
982
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1181
|
+
async getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1182
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getrunHaloTemplateV1alpha1Apple(name, options);
|
|
983
1183
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
984
1184
|
},
|
|
985
|
-
async
|
|
986
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1185
|
+
async listrunHaloTemplateV1alpha1Apple(page, size, sort, options) {
|
|
1186
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listrunHaloTemplateV1alpha1Apple(page, size, sort, options);
|
|
987
1187
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
988
1188
|
},
|
|
989
|
-
async
|
|
990
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1189
|
+
async updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1190
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updaterunHaloTemplateV1alpha1Apple(name, apple, options);
|
|
991
1191
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
992
1192
|
}
|
|
993
1193
|
};
|
|
994
1194
|
};
|
|
995
|
-
const
|
|
996
|
-
const localVarFp =
|
|
1195
|
+
const RunHaloTemplateV1alpha1AppleApiFactory = function(configuration, basePath, axios) {
|
|
1196
|
+
const localVarFp = RunHaloTemplateV1alpha1AppleApiFp(configuration);
|
|
997
1197
|
return {
|
|
998
|
-
|
|
999
|
-
return localVarFp.
|
|
1198
|
+
createrunHaloTemplateV1alpha1Apple(apple, options) {
|
|
1199
|
+
return localVarFp.createrunHaloTemplateV1alpha1Apple(apple, options).then((request) => request(axios, basePath));
|
|
1000
1200
|
},
|
|
1001
|
-
|
|
1002
|
-
return localVarFp.
|
|
1201
|
+
deleterunHaloTemplateV1alpha1Apple(name, options) {
|
|
1202
|
+
return localVarFp.deleterunHaloTemplateV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
1003
1203
|
},
|
|
1004
|
-
|
|
1005
|
-
return localVarFp.
|
|
1204
|
+
getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1205
|
+
return localVarFp.getrunHaloTemplateV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
1006
1206
|
},
|
|
1007
|
-
|
|
1008
|
-
return localVarFp.
|
|
1207
|
+
listrunHaloTemplateV1alpha1Apple(page, size, sort, options) {
|
|
1208
|
+
return localVarFp.listrunHaloTemplateV1alpha1Apple(page, size, sort, options).then((request) => request(axios, basePath));
|
|
1009
1209
|
},
|
|
1010
|
-
|
|
1011
|
-
return localVarFp.
|
|
1210
|
+
updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1211
|
+
return localVarFp.updaterunHaloTemplateV1alpha1Apple(name, apple, options).then((request) => request(axios, basePath));
|
|
1012
1212
|
}
|
|
1013
1213
|
};
|
|
1014
1214
|
};
|
|
1015
|
-
class
|
|
1016
|
-
|
|
1017
|
-
return
|
|
1215
|
+
class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
1216
|
+
createrunHaloTemplateV1alpha1Apple(apple, options) {
|
|
1217
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).createrunHaloTemplateV1alpha1Apple(apple, options).then((request) => request(this.axios, this.basePath));
|
|
1018
1218
|
}
|
|
1019
|
-
|
|
1020
|
-
return
|
|
1219
|
+
deleterunHaloTemplateV1alpha1Apple(name, options) {
|
|
1220
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).deleterunHaloTemplateV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
1021
1221
|
}
|
|
1022
|
-
|
|
1023
|
-
return
|
|
1222
|
+
getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1223
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).getrunHaloTemplateV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
1024
1224
|
}
|
|
1025
|
-
|
|
1026
|
-
return
|
|
1225
|
+
listrunHaloTemplateV1alpha1Apple(page, size, sort, options) {
|
|
1226
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).listrunHaloTemplateV1alpha1Apple(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
1027
1227
|
}
|
|
1028
|
-
|
|
1029
|
-
return
|
|
1228
|
+
updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1229
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).updaterunHaloTemplateV1alpha1Apple(name, apple, options).then((request) => request(this.axios, this.basePath));
|
|
1030
1230
|
}
|
|
1031
1231
|
}
|
|
1032
1232
|
const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
@@ -1041,6 +1241,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1041
1241
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1042
1242
|
const localVarHeaderParameter = {};
|
|
1043
1243
|
const localVarQueryParameter = {};
|
|
1244
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1245
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1044
1246
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1045
1247
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1046
1248
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1062,6 +1264,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1062
1264
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1063
1265
|
const localVarHeaderParameter = {};
|
|
1064
1266
|
const localVarQueryParameter = {};
|
|
1267
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1268
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1065
1269
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1066
1270
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1067
1271
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1081,6 +1285,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1081
1285
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1082
1286
|
const localVarHeaderParameter = {};
|
|
1083
1287
|
const localVarQueryParameter = {};
|
|
1288
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1289
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1084
1290
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1085
1291
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1086
1292
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1099,6 +1305,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1099
1305
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1100
1306
|
const localVarHeaderParameter = {};
|
|
1101
1307
|
const localVarQueryParameter = {};
|
|
1308
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1309
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1102
1310
|
if (page !== void 0) {
|
|
1103
1311
|
localVarQueryParameter["page"] = page;
|
|
1104
1312
|
}
|
|
@@ -1127,6 +1335,8 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1127
1335
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1128
1336
|
const localVarHeaderParameter = {};
|
|
1129
1337
|
const localVarQueryParameter = {};
|
|
1338
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1339
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1130
1340
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1131
1341
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1132
1342
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1213,6 +1423,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1213
1423
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1214
1424
|
const localVarHeaderParameter = {};
|
|
1215
1425
|
const localVarQueryParameter = {};
|
|
1426
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1427
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1216
1428
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1217
1429
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1218
1430
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1234,6 +1446,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1234
1446
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1235
1447
|
const localVarHeaderParameter = {};
|
|
1236
1448
|
const localVarQueryParameter = {};
|
|
1449
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1450
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1237
1451
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1238
1452
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1239
1453
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1253,6 +1467,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1253
1467
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1254
1468
|
const localVarHeaderParameter = {};
|
|
1255
1469
|
const localVarQueryParameter = {};
|
|
1470
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1471
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1256
1472
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1257
1473
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1258
1474
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1271,6 +1487,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1271
1487
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1272
1488
|
const localVarHeaderParameter = {};
|
|
1273
1489
|
const localVarQueryParameter = {};
|
|
1490
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1491
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1274
1492
|
if (page !== void 0) {
|
|
1275
1493
|
localVarQueryParameter["page"] = page;
|
|
1276
1494
|
}
|
|
@@ -1299,6 +1517,8 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1299
1517
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1300
1518
|
const localVarHeaderParameter = {};
|
|
1301
1519
|
const localVarQueryParameter = {};
|
|
1520
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1521
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1302
1522
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1303
1523
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1304
1524
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1385,6 +1605,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1385
1605
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1386
1606
|
const localVarHeaderParameter = {};
|
|
1387
1607
|
const localVarQueryParameter = {};
|
|
1608
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1609
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1388
1610
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1389
1611
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1390
1612
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1406,6 +1628,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1406
1628
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1407
1629
|
const localVarHeaderParameter = {};
|
|
1408
1630
|
const localVarQueryParameter = {};
|
|
1631
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1632
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1409
1633
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1410
1634
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1411
1635
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1425,6 +1649,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1425
1649
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1426
1650
|
const localVarHeaderParameter = {};
|
|
1427
1651
|
const localVarQueryParameter = {};
|
|
1652
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1653
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1428
1654
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1429
1655
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1430
1656
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1443,6 +1669,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1443
1669
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1444
1670
|
const localVarHeaderParameter = {};
|
|
1445
1671
|
const localVarQueryParameter = {};
|
|
1672
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1673
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1446
1674
|
if (page !== void 0) {
|
|
1447
1675
|
localVarQueryParameter["page"] = page;
|
|
1448
1676
|
}
|
|
@@ -1471,6 +1699,8 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1471
1699
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1472
1700
|
const localVarHeaderParameter = {};
|
|
1473
1701
|
const localVarQueryParameter = {};
|
|
1702
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1703
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1474
1704
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1475
1705
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1476
1706
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1557,6 +1787,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1557
1787
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1558
1788
|
const localVarHeaderParameter = {};
|
|
1559
1789
|
const localVarQueryParameter = {};
|
|
1790
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1791
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1560
1792
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1561
1793
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1562
1794
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1578,6 +1810,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1578
1810
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1579
1811
|
const localVarHeaderParameter = {};
|
|
1580
1812
|
const localVarQueryParameter = {};
|
|
1813
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1814
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1581
1815
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1582
1816
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1583
1817
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1597,6 +1831,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1597
1831
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1598
1832
|
const localVarHeaderParameter = {};
|
|
1599
1833
|
const localVarQueryParameter = {};
|
|
1834
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1835
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1600
1836
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1601
1837
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1602
1838
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1615,6 +1851,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1615
1851
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1616
1852
|
const localVarHeaderParameter = {};
|
|
1617
1853
|
const localVarQueryParameter = {};
|
|
1854
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1855
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1618
1856
|
if (page !== void 0) {
|
|
1619
1857
|
localVarQueryParameter["page"] = page;
|
|
1620
1858
|
}
|
|
@@ -1643,6 +1881,8 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1643
1881
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1644
1882
|
const localVarHeaderParameter = {};
|
|
1645
1883
|
const localVarQueryParameter = {};
|
|
1884
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1885
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1646
1886
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1647
1887
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1648
1888
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1729,6 +1969,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1729
1969
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1730
1970
|
const localVarHeaderParameter = {};
|
|
1731
1971
|
const localVarQueryParameter = {};
|
|
1972
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1973
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1732
1974
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1733
1975
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1734
1976
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1750,6 +1992,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1750
1992
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1751
1993
|
const localVarHeaderParameter = {};
|
|
1752
1994
|
const localVarQueryParameter = {};
|
|
1995
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1996
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1753
1997
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1754
1998
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1755
1999
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1769,6 +2013,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1769
2013
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1770
2014
|
const localVarHeaderParameter = {};
|
|
1771
2015
|
const localVarQueryParameter = {};
|
|
2016
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2017
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1772
2018
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1773
2019
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1774
2020
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1787,6 +2033,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1787
2033
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1788
2034
|
const localVarHeaderParameter = {};
|
|
1789
2035
|
const localVarQueryParameter = {};
|
|
2036
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2037
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1790
2038
|
if (page !== void 0) {
|
|
1791
2039
|
localVarQueryParameter["page"] = page;
|
|
1792
2040
|
}
|
|
@@ -1815,6 +2063,8 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
1815
2063
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1816
2064
|
const localVarHeaderParameter = {};
|
|
1817
2065
|
const localVarQueryParameter = {};
|
|
2066
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2067
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1818
2068
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1819
2069
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1820
2070
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1901,6 +2151,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1901
2151
|
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1902
2152
|
const localVarHeaderParameter = {};
|
|
1903
2153
|
const localVarQueryParameter = {};
|
|
2154
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2155
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1904
2156
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1905
2157
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1906
2158
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1922,6 +2174,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1922
2174
|
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1923
2175
|
const localVarHeaderParameter = {};
|
|
1924
2176
|
const localVarQueryParameter = {};
|
|
2177
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2178
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1925
2179
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1926
2180
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1927
2181
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1941,6 +2195,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1941
2195
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1942
2196
|
const localVarHeaderParameter = {};
|
|
1943
2197
|
const localVarQueryParameter = {};
|
|
2198
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2199
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1944
2200
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1945
2201
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1946
2202
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1959,6 +2215,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1959
2215
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1960
2216
|
const localVarHeaderParameter = {};
|
|
1961
2217
|
const localVarQueryParameter = {};
|
|
2218
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2219
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1962
2220
|
if (page !== void 0) {
|
|
1963
2221
|
localVarQueryParameter["page"] = page;
|
|
1964
2222
|
}
|
|
@@ -1987,6 +2245,8 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
1987
2245
|
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1988
2246
|
const localVarHeaderParameter = {};
|
|
1989
2247
|
const localVarQueryParameter = {};
|
|
2248
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2249
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1990
2250
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1991
2251
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1992
2252
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2078,4 +2338,4 @@ class Configuration {
|
|
|
2078
2338
|
}
|
|
2079
2339
|
}
|
|
2080
2340
|
|
|
2081
|
-
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Configuration, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp,
|
|
2341
|
+
export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Configuration, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|