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