@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.cjs
CHANGED
|
@@ -74,6 +74,28 @@ const PluginStatusPhaseEnum = {
|
|
|
74
74
|
};
|
|
75
75
|
const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
76
76
|
return {
|
|
77
|
+
changePassword: async (name, changePasswordRequest, options = {}) => {
|
|
78
|
+
assertParamExists("changePassword", "name", name);
|
|
79
|
+
assertParamExists("changePassword", "changePasswordRequest", changePasswordRequest);
|
|
80
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/password`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
81
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
82
|
+
let baseOptions;
|
|
83
|
+
if (configuration) {
|
|
84
|
+
baseOptions = configuration.baseOptions;
|
|
85
|
+
}
|
|
86
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
87
|
+
const localVarHeaderParameter = {};
|
|
88
|
+
const localVarQueryParameter = {};
|
|
89
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
90
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
91
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
92
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
93
|
+
localVarRequestOptions.data = serializeDataIfNeeded(changePasswordRequest, localVarRequestOptions, configuration);
|
|
94
|
+
return {
|
|
95
|
+
url: toPathString(localVarUrlObj),
|
|
96
|
+
options: localVarRequestOptions
|
|
97
|
+
};
|
|
98
|
+
},
|
|
77
99
|
getCurrentUserDetail: async (options = {}) => {
|
|
78
100
|
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-`;
|
|
79
101
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -91,35 +113,106 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
91
113
|
url: toPathString(localVarUrlObj),
|
|
92
114
|
options: localVarRequestOptions
|
|
93
115
|
};
|
|
116
|
+
},
|
|
117
|
+
getPermissions: async (name, options = {}) => {
|
|
118
|
+
assertParamExists("getPermissions", "name", name);
|
|
119
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/permissions`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
120
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
121
|
+
let baseOptions;
|
|
122
|
+
if (configuration) {
|
|
123
|
+
baseOptions = configuration.baseOptions;
|
|
124
|
+
}
|
|
125
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
126
|
+
const localVarHeaderParameter = {};
|
|
127
|
+
const localVarQueryParameter = {};
|
|
128
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
129
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
130
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
131
|
+
return {
|
|
132
|
+
url: toPathString(localVarUrlObj),
|
|
133
|
+
options: localVarRequestOptions
|
|
134
|
+
};
|
|
135
|
+
},
|
|
136
|
+
grantPermission: async (name, grantRequest, options = {}) => {
|
|
137
|
+
assertParamExists("grantPermission", "name", name);
|
|
138
|
+
assertParamExists("grantPermission", "grantRequest", grantRequest);
|
|
139
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/permissions`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
140
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
141
|
+
let baseOptions;
|
|
142
|
+
if (configuration) {
|
|
143
|
+
baseOptions = configuration.baseOptions;
|
|
144
|
+
}
|
|
145
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
146
|
+
const localVarHeaderParameter = {};
|
|
147
|
+
const localVarQueryParameter = {};
|
|
148
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
149
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
150
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
151
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
152
|
+
localVarRequestOptions.data = serializeDataIfNeeded(grantRequest, localVarRequestOptions, configuration);
|
|
153
|
+
return {
|
|
154
|
+
url: toPathString(localVarUrlObj),
|
|
155
|
+
options: localVarRequestOptions
|
|
156
|
+
};
|
|
94
157
|
}
|
|
95
158
|
};
|
|
96
159
|
};
|
|
97
160
|
const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
98
161
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
|
|
99
162
|
return {
|
|
163
|
+
async changePassword(name, changePasswordRequest, options) {
|
|
164
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(name, changePasswordRequest, options);
|
|
165
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
166
|
+
},
|
|
100
167
|
async getCurrentUserDetail(options) {
|
|
101
168
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
|
|
102
169
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
170
|
+
},
|
|
171
|
+
async getPermissions(name, options) {
|
|
172
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPermissions(name, options);
|
|
173
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
174
|
+
},
|
|
175
|
+
async grantPermission(name, grantRequest, options) {
|
|
176
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.grantPermission(name, grantRequest, options);
|
|
177
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
103
178
|
}
|
|
104
179
|
};
|
|
105
180
|
};
|
|
106
181
|
const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
107
182
|
const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
|
|
108
183
|
return {
|
|
184
|
+
changePassword(name, changePasswordRequest, options) {
|
|
185
|
+
return localVarFp.changePassword(name, changePasswordRequest, options).then((request) => request(axios, basePath));
|
|
186
|
+
},
|
|
109
187
|
getCurrentUserDetail(options) {
|
|
110
188
|
return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
|
|
189
|
+
},
|
|
190
|
+
getPermissions(name, options) {
|
|
191
|
+
return localVarFp.getPermissions(name, options).then((request) => request(axios, basePath));
|
|
192
|
+
},
|
|
193
|
+
grantPermission(name, grantRequest, options) {
|
|
194
|
+
return localVarFp.grantPermission(name, grantRequest, options).then((request) => request(axios, basePath));
|
|
111
195
|
}
|
|
112
196
|
};
|
|
113
197
|
};
|
|
114
198
|
class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
199
|
+
changePassword(name, changePasswordRequest, options) {
|
|
200
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
201
|
+
}
|
|
115
202
|
getCurrentUserDetail(options) {
|
|
116
203
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
|
|
117
204
|
}
|
|
205
|
+
getPermissions(name, options) {
|
|
206
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).getPermissions(name, options).then((request) => request(this.axios, this.basePath));
|
|
207
|
+
}
|
|
208
|
+
grantPermission(name, grantRequest, options) {
|
|
209
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
|
|
210
|
+
}
|
|
118
211
|
}
|
|
119
|
-
const
|
|
212
|
+
const AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator = function(configuration) {
|
|
120
213
|
return {
|
|
121
|
-
|
|
122
|
-
const localVarPath = `/apis/
|
|
214
|
+
createappleGuqingXyzV1alpha1Apple: async (apple, options = {}) => {
|
|
215
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples`;
|
|
123
216
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
124
217
|
let baseOptions;
|
|
125
218
|
if (configuration) {
|
|
@@ -132,15 +225,15 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
132
225
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
133
226
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
134
227
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
135
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
228
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
136
229
|
return {
|
|
137
230
|
url: toPathString(localVarUrlObj),
|
|
138
231
|
options: localVarRequestOptions
|
|
139
232
|
};
|
|
140
233
|
},
|
|
141
|
-
|
|
142
|
-
assertParamExists("
|
|
143
|
-
const localVarPath = `/apis/
|
|
234
|
+
deleteappleGuqingXyzV1alpha1Apple: async (name, options = {}) => {
|
|
235
|
+
assertParamExists("deleteappleGuqingXyzV1alpha1Apple", "name", name);
|
|
236
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
144
237
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
145
238
|
let baseOptions;
|
|
146
239
|
if (configuration) {
|
|
@@ -157,9 +250,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
157
250
|
options: localVarRequestOptions
|
|
158
251
|
};
|
|
159
252
|
},
|
|
160
|
-
|
|
161
|
-
assertParamExists("
|
|
162
|
-
const localVarPath = `/apis/
|
|
253
|
+
getappleGuqingXyzV1alpha1Apple: async (name, options = {}) => {
|
|
254
|
+
assertParamExists("getappleGuqingXyzV1alpha1Apple", "name", name);
|
|
255
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
163
256
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
164
257
|
let baseOptions;
|
|
165
258
|
if (configuration) {
|
|
@@ -176,8 +269,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
176
269
|
options: localVarRequestOptions
|
|
177
270
|
};
|
|
178
271
|
},
|
|
179
|
-
|
|
180
|
-
const localVarPath = `/apis/
|
|
272
|
+
listappleGuqingXyzV1alpha1Apple: async (page, size, sort, options = {}) => {
|
|
273
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples`;
|
|
181
274
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
182
275
|
let baseOptions;
|
|
183
276
|
if (configuration) {
|
|
@@ -203,9 +296,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
203
296
|
options: localVarRequestOptions
|
|
204
297
|
};
|
|
205
298
|
},
|
|
206
|
-
|
|
207
|
-
assertParamExists("
|
|
208
|
-
const localVarPath = `/apis/
|
|
299
|
+
updateappleGuqingXyzV1alpha1Apple: async (name, apple, options = {}) => {
|
|
300
|
+
assertParamExists("updateappleGuqingXyzV1alpha1Apple", "name", name);
|
|
301
|
+
const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
209
302
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
210
303
|
let baseOptions;
|
|
211
304
|
if (configuration) {
|
|
@@ -218,7 +311,7 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
218
311
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
219
312
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
220
313
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
221
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
314
|
+
localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
|
|
222
315
|
return {
|
|
223
316
|
url: toPathString(localVarUrlObj),
|
|
224
317
|
options: localVarRequestOptions
|
|
@@ -226,72 +319,116 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
226
319
|
}
|
|
227
320
|
};
|
|
228
321
|
};
|
|
229
|
-
const
|
|
230
|
-
const localVarAxiosParamCreator =
|
|
322
|
+
const AppleGuqingXyzV1alpha1AppleApiFp = function(configuration) {
|
|
323
|
+
const localVarAxiosParamCreator = AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator(configuration);
|
|
231
324
|
return {
|
|
232
|
-
async
|
|
233
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
325
|
+
async createappleGuqingXyzV1alpha1Apple(apple, options) {
|
|
326
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createappleGuqingXyzV1alpha1Apple(apple, options);
|
|
234
327
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
235
328
|
},
|
|
236
|
-
async
|
|
237
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
329
|
+
async deleteappleGuqingXyzV1alpha1Apple(name, options) {
|
|
330
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteappleGuqingXyzV1alpha1Apple(name, options);
|
|
238
331
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
239
332
|
},
|
|
240
|
-
async
|
|
241
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
333
|
+
async getappleGuqingXyzV1alpha1Apple(name, options) {
|
|
334
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getappleGuqingXyzV1alpha1Apple(name, options);
|
|
242
335
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
243
336
|
},
|
|
244
|
-
async
|
|
245
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
337
|
+
async listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
|
|
338
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listappleGuqingXyzV1alpha1Apple(page, size, sort, options);
|
|
246
339
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
247
340
|
},
|
|
248
|
-
async
|
|
249
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
341
|
+
async updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
|
|
342
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateappleGuqingXyzV1alpha1Apple(name, apple, options);
|
|
250
343
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
251
344
|
}
|
|
252
345
|
};
|
|
253
346
|
};
|
|
254
|
-
const
|
|
255
|
-
const localVarFp =
|
|
347
|
+
const AppleGuqingXyzV1alpha1AppleApiFactory = function(configuration, basePath, axios) {
|
|
348
|
+
const localVarFp = AppleGuqingXyzV1alpha1AppleApiFp(configuration);
|
|
256
349
|
return {
|
|
257
|
-
|
|
258
|
-
return localVarFp.
|
|
350
|
+
createappleGuqingXyzV1alpha1Apple(apple, options) {
|
|
351
|
+
return localVarFp.createappleGuqingXyzV1alpha1Apple(apple, options).then((request) => request(axios, basePath));
|
|
259
352
|
},
|
|
260
|
-
|
|
261
|
-
return localVarFp.
|
|
353
|
+
deleteappleGuqingXyzV1alpha1Apple(name, options) {
|
|
354
|
+
return localVarFp.deleteappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
262
355
|
},
|
|
263
|
-
|
|
264
|
-
return localVarFp.
|
|
356
|
+
getappleGuqingXyzV1alpha1Apple(name, options) {
|
|
357
|
+
return localVarFp.getappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
265
358
|
},
|
|
266
|
-
|
|
267
|
-
return localVarFp.
|
|
359
|
+
listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
|
|
360
|
+
return localVarFp.listappleGuqingXyzV1alpha1Apple(page, size, sort, options).then((request) => request(axios, basePath));
|
|
268
361
|
},
|
|
269
|
-
|
|
270
|
-
return localVarFp.
|
|
362
|
+
updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
|
|
363
|
+
return localVarFp.updateappleGuqingXyzV1alpha1Apple(name, apple, options).then((request) => request(axios, basePath));
|
|
271
364
|
}
|
|
272
365
|
};
|
|
273
366
|
};
|
|
274
|
-
class
|
|
275
|
-
|
|
276
|
-
return
|
|
367
|
+
class AppleGuqingXyzV1alpha1AppleApi extends BaseAPI {
|
|
368
|
+
createappleGuqingXyzV1alpha1Apple(apple, options) {
|
|
369
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).createappleGuqingXyzV1alpha1Apple(apple, options).then((request) => request(this.axios, this.basePath));
|
|
277
370
|
}
|
|
278
|
-
|
|
279
|
-
return
|
|
371
|
+
deleteappleGuqingXyzV1alpha1Apple(name, options) {
|
|
372
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).deleteappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
280
373
|
}
|
|
281
|
-
|
|
282
|
-
return
|
|
374
|
+
getappleGuqingXyzV1alpha1Apple(name, options) {
|
|
375
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).getappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
283
376
|
}
|
|
284
|
-
|
|
285
|
-
return
|
|
377
|
+
listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
|
|
378
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).listappleGuqingXyzV1alpha1Apple(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
286
379
|
}
|
|
287
|
-
|
|
288
|
-
return
|
|
380
|
+
updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
|
|
381
|
+
return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).updateappleGuqingXyzV1alpha1Apple(name, apple, options).then((request) => request(this.axios, this.basePath));
|
|
289
382
|
}
|
|
290
383
|
}
|
|
291
|
-
const
|
|
384
|
+
const ApplesControllerApiAxiosParamCreator = function(configuration) {
|
|
292
385
|
return {
|
|
293
|
-
|
|
294
|
-
const localVarPath = `/apis/
|
|
386
|
+
hello: async (options = {}) => {
|
|
387
|
+
const localVarPath = `/apis/plugin.api.halo.run/v1alpha1/plugins/PluginTemplate/apples`;
|
|
388
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
389
|
+
let baseOptions;
|
|
390
|
+
if (configuration) {
|
|
391
|
+
baseOptions = configuration.baseOptions;
|
|
392
|
+
}
|
|
393
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
394
|
+
const localVarHeaderParameter = {};
|
|
395
|
+
const localVarQueryParameter = {};
|
|
396
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
397
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
398
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
399
|
+
return {
|
|
400
|
+
url: toPathString(localVarUrlObj),
|
|
401
|
+
options: localVarRequestOptions
|
|
402
|
+
};
|
|
403
|
+
}
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
const ApplesControllerApiFp = function(configuration) {
|
|
407
|
+
const localVarAxiosParamCreator = ApplesControllerApiAxiosParamCreator(configuration);
|
|
408
|
+
return {
|
|
409
|
+
async hello(options) {
|
|
410
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.hello(options);
|
|
411
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
412
|
+
}
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
const ApplesControllerApiFactory = function(configuration, basePath, axios) {
|
|
416
|
+
const localVarFp = ApplesControllerApiFp(configuration);
|
|
417
|
+
return {
|
|
418
|
+
hello(options) {
|
|
419
|
+
return localVarFp.hello(options).then((request) => request(axios, basePath));
|
|
420
|
+
}
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
class ApplesControllerApi extends BaseAPI {
|
|
424
|
+
hello(options) {
|
|
425
|
+
return ApplesControllerApiFp(this.configuration).hello(options).then((request) => request(this.axios, this.basePath));
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
429
|
+
return {
|
|
430
|
+
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
431
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
295
432
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
296
433
|
let baseOptions;
|
|
297
434
|
if (configuration) {
|
|
@@ -304,15 +441,15 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
304
441
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
305
442
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
306
443
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
307
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
444
|
+
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
308
445
|
return {
|
|
309
446
|
url: toPathString(localVarUrlObj),
|
|
310
447
|
options: localVarRequestOptions
|
|
311
448
|
};
|
|
312
449
|
},
|
|
313
|
-
|
|
314
|
-
assertParamExists("
|
|
315
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
450
|
+
deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
451
|
+
assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
|
|
452
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
316
453
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
317
454
|
let baseOptions;
|
|
318
455
|
if (configuration) {
|
|
@@ -329,9 +466,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
329
466
|
options: localVarRequestOptions
|
|
330
467
|
};
|
|
331
468
|
},
|
|
332
|
-
|
|
333
|
-
assertParamExists("
|
|
334
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
469
|
+
getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
470
|
+
assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
|
|
471
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
335
472
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
336
473
|
let baseOptions;
|
|
337
474
|
if (configuration) {
|
|
@@ -348,8 +485,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
348
485
|
options: localVarRequestOptions
|
|
349
486
|
};
|
|
350
487
|
},
|
|
351
|
-
|
|
352
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
488
|
+
listcoreHaloRunV1alpha1Link: async (page, size, sort, options = {}) => {
|
|
489
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
353
490
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
354
491
|
let baseOptions;
|
|
355
492
|
if (configuration) {
|
|
@@ -375,9 +512,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
375
512
|
options: localVarRequestOptions
|
|
376
513
|
};
|
|
377
514
|
},
|
|
378
|
-
|
|
379
|
-
assertParamExists("
|
|
380
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
515
|
+
updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
|
|
516
|
+
assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
|
|
517
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
381
518
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
382
519
|
let baseOptions;
|
|
383
520
|
if (configuration) {
|
|
@@ -390,7 +527,7 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
390
527
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
391
528
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
392
529
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
393
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
530
|
+
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
394
531
|
return {
|
|
395
532
|
url: toPathString(localVarUrlObj),
|
|
396
533
|
options: localVarRequestOptions
|
|
@@ -398,72 +535,72 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
398
535
|
}
|
|
399
536
|
};
|
|
400
537
|
};
|
|
401
|
-
const
|
|
402
|
-
const localVarAxiosParamCreator =
|
|
538
|
+
const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
|
|
539
|
+
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
|
|
403
540
|
return {
|
|
404
|
-
async
|
|
405
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
541
|
+
async createcoreHaloRunV1alpha1Link(link, options) {
|
|
542
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
|
|
406
543
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
407
544
|
},
|
|
408
|
-
async
|
|
409
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
545
|
+
async deletecoreHaloRunV1alpha1Link(name, options) {
|
|
546
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
|
|
410
547
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
411
548
|
},
|
|
412
|
-
async
|
|
413
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
549
|
+
async getcoreHaloRunV1alpha1Link(name, options) {
|
|
550
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
|
|
414
551
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
415
552
|
},
|
|
416
|
-
async
|
|
417
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
553
|
+
async listcoreHaloRunV1alpha1Link(page, size, sort, options) {
|
|
554
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, sort, options);
|
|
418
555
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
419
556
|
},
|
|
420
|
-
async
|
|
421
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
557
|
+
async updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
558
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
|
|
422
559
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
423
560
|
}
|
|
424
561
|
};
|
|
425
562
|
};
|
|
426
|
-
const
|
|
427
|
-
const localVarFp =
|
|
563
|
+
const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
|
|
564
|
+
const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
|
|
428
565
|
return {
|
|
429
|
-
|
|
430
|
-
return localVarFp.
|
|
566
|
+
createcoreHaloRunV1alpha1Link(link, options) {
|
|
567
|
+
return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
|
|
431
568
|
},
|
|
432
|
-
|
|
433
|
-
return localVarFp.
|
|
569
|
+
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
570
|
+
return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
434
571
|
},
|
|
435
|
-
|
|
436
|
-
return localVarFp.
|
|
572
|
+
getcoreHaloRunV1alpha1Link(name, options) {
|
|
573
|
+
return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
437
574
|
},
|
|
438
|
-
|
|
439
|
-
return localVarFp.
|
|
575
|
+
listcoreHaloRunV1alpha1Link(page, size, sort, options) {
|
|
576
|
+
return localVarFp.listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(axios, basePath));
|
|
440
577
|
},
|
|
441
|
-
|
|
442
|
-
return localVarFp.
|
|
578
|
+
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
579
|
+
return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
|
|
443
580
|
}
|
|
444
581
|
};
|
|
445
582
|
};
|
|
446
|
-
class
|
|
447
|
-
|
|
448
|
-
return
|
|
583
|
+
class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
584
|
+
createcoreHaloRunV1alpha1Link(link, options) {
|
|
585
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(link, options).then((request) => request(this.axios, this.basePath));
|
|
449
586
|
}
|
|
450
|
-
|
|
451
|
-
return
|
|
587
|
+
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
588
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
|
|
452
589
|
}
|
|
453
|
-
|
|
454
|
-
return
|
|
590
|
+
getcoreHaloRunV1alpha1Link(name, options) {
|
|
591
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
|
|
455
592
|
}
|
|
456
|
-
|
|
457
|
-
return
|
|
593
|
+
listcoreHaloRunV1alpha1Link(page, size, sort, options) {
|
|
594
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
458
595
|
}
|
|
459
|
-
|
|
460
|
-
return
|
|
596
|
+
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
597
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
|
|
461
598
|
}
|
|
462
599
|
}
|
|
463
|
-
const
|
|
600
|
+
const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
|
|
464
601
|
return {
|
|
465
|
-
|
|
466
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
602
|
+
createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
|
|
603
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
467
604
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
468
605
|
let baseOptions;
|
|
469
606
|
if (configuration) {
|
|
@@ -476,15 +613,15 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
476
613
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
477
614
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
478
615
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
479
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
616
|
+
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
480
617
|
return {
|
|
481
618
|
url: toPathString(localVarUrlObj),
|
|
482
619
|
options: localVarRequestOptions
|
|
483
620
|
};
|
|
484
621
|
},
|
|
485
|
-
|
|
486
|
-
assertParamExists("
|
|
487
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
622
|
+
deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
623
|
+
assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
624
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
488
625
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
489
626
|
let baseOptions;
|
|
490
627
|
if (configuration) {
|
|
@@ -501,9 +638,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
501
638
|
options: localVarRequestOptions
|
|
502
639
|
};
|
|
503
640
|
},
|
|
504
|
-
|
|
505
|
-
assertParamExists("
|
|
506
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
641
|
+
getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
642
|
+
assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
643
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
507
644
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
508
645
|
let baseOptions;
|
|
509
646
|
if (configuration) {
|
|
@@ -520,8 +657,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
520
657
|
options: localVarRequestOptions
|
|
521
658
|
};
|
|
522
659
|
},
|
|
523
|
-
|
|
524
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
660
|
+
listcoreHaloRunV1alpha1LinkGroup: async (page, size, sort, options = {}) => {
|
|
661
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
525
662
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
526
663
|
let baseOptions;
|
|
527
664
|
if (configuration) {
|
|
@@ -547,9 +684,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
547
684
|
options: localVarRequestOptions
|
|
548
685
|
};
|
|
549
686
|
},
|
|
550
|
-
|
|
551
|
-
assertParamExists("
|
|
552
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/
|
|
687
|
+
updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
|
|
688
|
+
assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
689
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
553
690
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
554
691
|
let baseOptions;
|
|
555
692
|
if (configuration) {
|
|
@@ -562,7 +699,7 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
562
699
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
563
700
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
564
701
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
565
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
702
|
+
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
566
703
|
return {
|
|
567
704
|
url: toPathString(localVarUrlObj),
|
|
568
705
|
options: localVarRequestOptions
|
|
@@ -570,66 +707,66 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
570
707
|
}
|
|
571
708
|
};
|
|
572
709
|
};
|
|
573
|
-
const
|
|
574
|
-
const localVarAxiosParamCreator =
|
|
710
|
+
const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
|
|
711
|
+
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
|
|
575
712
|
return {
|
|
576
|
-
async
|
|
577
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
713
|
+
async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
714
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
|
|
578
715
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
579
716
|
},
|
|
580
|
-
async
|
|
581
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
717
|
+
async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
718
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
|
|
582
719
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
583
720
|
},
|
|
584
|
-
async
|
|
585
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
721
|
+
async getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
722
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
|
|
586
723
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
587
724
|
},
|
|
588
|
-
async
|
|
589
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
725
|
+
async listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
|
|
726
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options);
|
|
590
727
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
591
728
|
},
|
|
592
|
-
async
|
|
593
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
729
|
+
async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
730
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
|
|
594
731
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
595
732
|
}
|
|
596
733
|
};
|
|
597
734
|
};
|
|
598
|
-
const
|
|
599
|
-
const localVarFp =
|
|
735
|
+
const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
|
|
736
|
+
const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
|
|
600
737
|
return {
|
|
601
|
-
|
|
602
|
-
return localVarFp.
|
|
738
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
739
|
+
return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
|
|
603
740
|
},
|
|
604
|
-
|
|
605
|
-
return localVarFp.
|
|
741
|
+
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
742
|
+
return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
606
743
|
},
|
|
607
|
-
|
|
608
|
-
return localVarFp.
|
|
744
|
+
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
745
|
+
return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
609
746
|
},
|
|
610
|
-
|
|
611
|
-
return localVarFp.
|
|
747
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
|
|
748
|
+
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(axios, basePath));
|
|
612
749
|
},
|
|
613
|
-
|
|
614
|
-
return localVarFp.
|
|
750
|
+
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
751
|
+
return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
|
|
615
752
|
}
|
|
616
753
|
};
|
|
617
754
|
};
|
|
618
|
-
class
|
|
619
|
-
|
|
620
|
-
return
|
|
755
|
+
class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
756
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
757
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
621
758
|
}
|
|
622
|
-
|
|
623
|
-
return
|
|
759
|
+
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
760
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
|
|
624
761
|
}
|
|
625
|
-
|
|
626
|
-
return
|
|
762
|
+
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
763
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
|
|
627
764
|
}
|
|
628
|
-
|
|
629
|
-
return
|
|
765
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
|
|
766
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(this.axios, this.basePath));
|
|
630
767
|
}
|
|
631
|
-
|
|
632
|
-
return
|
|
768
|
+
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
769
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
633
770
|
}
|
|
634
771
|
}
|
|
635
772
|
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
@@ -2029,6 +2166,14 @@ exports.ApiHaloRunV1alpha1UserApi = ApiHaloRunV1alpha1UserApi;
|
|
|
2029
2166
|
exports.ApiHaloRunV1alpha1UserApiAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator;
|
|
2030
2167
|
exports.ApiHaloRunV1alpha1UserApiFactory = ApiHaloRunV1alpha1UserApiFactory;
|
|
2031
2168
|
exports.ApiHaloRunV1alpha1UserApiFp = ApiHaloRunV1alpha1UserApiFp;
|
|
2169
|
+
exports.AppleGuqingXyzV1alpha1AppleApi = AppleGuqingXyzV1alpha1AppleApi;
|
|
2170
|
+
exports.AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator = AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator;
|
|
2171
|
+
exports.AppleGuqingXyzV1alpha1AppleApiFactory = AppleGuqingXyzV1alpha1AppleApiFactory;
|
|
2172
|
+
exports.AppleGuqingXyzV1alpha1AppleApiFp = AppleGuqingXyzV1alpha1AppleApiFp;
|
|
2173
|
+
exports.ApplesControllerApi = ApplesControllerApi;
|
|
2174
|
+
exports.ApplesControllerApiAxiosParamCreator = ApplesControllerApiAxiosParamCreator;
|
|
2175
|
+
exports.ApplesControllerApiFactory = ApplesControllerApiFactory;
|
|
2176
|
+
exports.ApplesControllerApiFp = ApplesControllerApiFp;
|
|
2032
2177
|
exports.Configuration = Configuration;
|
|
2033
2178
|
exports.CoreHaloRunV1alpha1LinkApi = CoreHaloRunV1alpha1LinkApi;
|
|
2034
2179
|
exports.CoreHaloRunV1alpha1LinkApiAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator;
|
|
@@ -2038,10 +2183,6 @@ exports.CoreHaloRunV1alpha1LinkGroupApi = CoreHaloRunV1alpha1LinkGroupApi;
|
|
|
2038
2183
|
exports.CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator;
|
|
2039
2184
|
exports.CoreHaloRunV1alpha1LinkGroupApiFactory = CoreHaloRunV1alpha1LinkGroupApiFactory;
|
|
2040
2185
|
exports.CoreHaloRunV1alpha1LinkGroupApiFp = CoreHaloRunV1alpha1LinkGroupApiFp;
|
|
2041
|
-
exports.CoreHaloRunV1alpha1PostApi = CoreHaloRunV1alpha1PostApi;
|
|
2042
|
-
exports.CoreHaloRunV1alpha1PostApiAxiosParamCreator = CoreHaloRunV1alpha1PostApiAxiosParamCreator;
|
|
2043
|
-
exports.CoreHaloRunV1alpha1PostApiFactory = CoreHaloRunV1alpha1PostApiFactory;
|
|
2044
|
-
exports.CoreHaloRunV1alpha1PostApiFp = CoreHaloRunV1alpha1PostApiFp;
|
|
2045
2186
|
exports.PluginHaloRunV1alpha1PluginApi = PluginHaloRunV1alpha1PluginApi;
|
|
2046
2187
|
exports.PluginHaloRunV1alpha1PluginApiAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator;
|
|
2047
2188
|
exports.PluginHaloRunV1alpha1PluginApiFactory = PluginHaloRunV1alpha1PluginApiFactory;
|