@halo-dev/api-client 0.0.13 → 0.0.16

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.
Files changed (4) hide show
  1. package/dist/index.cjs +407 -1615
  2. package/dist/index.d.ts +4248 -3438
  3. package/dist/index.mjs +408 -1592
  4. package/package.json +10 -11
package/dist/index.cjs CHANGED
@@ -75,24 +75,6 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
75
75
  };
76
76
  };
77
77
 
78
- const ConditionStatusEnum = {
79
- True: "TRUE",
80
- False: "FALSE",
81
- Unknown: "UNKNOWN"
82
- };
83
- const PluginStatusPhaseEnum = {
84
- Created: "CREATED",
85
- Disabled: "DISABLED",
86
- Resolved: "RESOLVED",
87
- Started: "STARTED",
88
- Stopped: "STOPPED",
89
- Failed: "FAILED"
90
- };
91
- const PostSpecVisibleEnum = {
92
- Public: "PUBLIC",
93
- Internal: "INTERNAL",
94
- Private: "PRIVATE"
95
- };
96
78
  const ApiHaloRunV1alpha1ContentApiAxiosParamCreator = function(configuration) {
97
79
  return {
98
80
  draftSnapshotContent: async (contentRequest, options = {}) => {
@@ -228,19 +210,20 @@ const ApiHaloRunV1alpha1ContentApiFactory = function(configuration, basePath, ax
228
210
  };
229
211
  };
230
212
  class ApiHaloRunV1alpha1ContentApi extends BaseAPI {
231
- draftSnapshotContent(contentRequest, options) {
232
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).draftSnapshotContent(contentRequest, options).then((request) => request(this.axios, this.basePath));
213
+ draftSnapshotContent(requestParameters, options) {
214
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).draftSnapshotContent(requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
233
215
  }
234
- obtainSnapshotContent(snapshotName, options) {
235
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(snapshotName, options).then((request) => request(this.axios, this.basePath));
216
+ obtainSnapshotContent(requestParameters, options) {
217
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(requestParameters.snapshotName, options).then((request) => request(this.axios, this.basePath));
236
218
  }
237
- publishSnapshotContent(snapshotName, subjectRef, options) {
238
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).publishSnapshotContent(snapshotName, subjectRef, options).then((request) => request(this.axios, this.basePath));
219
+ publishSnapshotContent(requestParameters, options) {
220
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).publishSnapshotContent(requestParameters.snapshotName, requestParameters.subjectRef, options).then((request) => request(this.axios, this.basePath));
239
221
  }
240
- updateSnapshotContent(snapshotName, contentRequest, options) {
241
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(snapshotName, contentRequest, options).then((request) => request(this.axios, this.basePath));
222
+ updateSnapshotContent(requestParameters, options) {
223
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(requestParameters.snapshotName, requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
242
224
  }
243
225
  }
226
+
244
227
  const ApiHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
245
228
  return {
246
229
  installPlugin: async (file, options = {}) => {
@@ -290,10 +273,11 @@ const ApiHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axi
290
273
  };
291
274
  };
292
275
  class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
293
- installPlugin(file, options) {
294
- return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(file, options).then((request) => request(this.axios, this.basePath));
276
+ installPlugin(requestParameters, options) {
277
+ return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
295
278
  }
296
279
  }
280
+
297
281
  const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
298
282
  return {
299
283
  draftPost: async (postRequest, options = {}) => {
@@ -446,19 +430,20 @@ const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios
446
430
  };
447
431
  };
448
432
  class ApiHaloRunV1alpha1PostApi extends BaseAPI {
449
- draftPost(postRequest, options) {
450
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(postRequest, options).then((request) => request(this.axios, this.basePath));
433
+ draftPost(requestParameters, options) {
434
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
451
435
  }
452
- listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options) {
453
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options).then((request) => request(this.axios, this.basePath));
436
+ listPosts(requestParameters = {}, options) {
437
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.contributors, requestParameters.categories, requestParameters.tags, options).then((request) => request(this.axios, this.basePath));
454
438
  }
455
- publishPost(name, options) {
456
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(name, options).then((request) => request(this.axios, this.basePath));
439
+ publishPost(requestParameters, options) {
440
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
457
441
  }
458
- updateDraftPost(name, postRequest, options) {
459
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftPost(name, postRequest, options).then((request) => request(this.axios, this.basePath));
442
+ updateDraftPost(requestParameters, options) {
443
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftPost(requestParameters.name, requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
460
444
  }
461
445
  }
446
+
462
447
  const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
463
448
  return {
464
449
  installTheme: async (file, options = {}) => {
@@ -508,10 +493,11 @@ const ApiHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, axio
508
493
  };
509
494
  };
510
495
  class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
511
- installTheme(file, options) {
512
- return ApiHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(file, options).then((request) => request(this.axios, this.basePath));
496
+ installTheme(requestParameters, options) {
497
+ return ApiHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
513
498
  }
514
499
  }
500
+
515
501
  const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
516
502
  return {
517
503
  changePassword: async (name, changePasswordRequest, options = {}) => {
@@ -644,19 +630,20 @@ const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios
644
630
  };
645
631
  };
646
632
  class ApiHaloRunV1alpha1UserApi extends BaseAPI {
647
- changePassword(name, changePasswordRequest, options) {
648
- return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
633
+ changePassword(requestParameters, options) {
634
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(requestParameters.name, requestParameters.changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
649
635
  }
650
636
  getCurrentUserDetail(options) {
651
637
  return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
652
638
  }
653
- getPermissions(name, options) {
654
- return ApiHaloRunV1alpha1UserApiFp(this.configuration).getPermissions(name, options).then((request) => request(this.axios, this.basePath));
639
+ getPermissions(requestParameters, options) {
640
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).getPermissions(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
655
641
  }
656
- grantPermission(name, grantRequest, options) {
657
- return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
642
+ grantPermission(requestParameters, options) {
643
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(requestParameters.name, requestParameters.grantRequest, options).then((request) => request(this.axios, this.basePath));
658
644
  }
659
645
  }
646
+
660
647
  const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator = function(configuration) {
661
648
  return {
662
649
  createcontentHaloRunV1alpha1Category: async (category, options = {}) => {
@@ -826,22 +813,23 @@ const ContentHaloRunV1alpha1CategoryApiFactory = function(configuration, basePat
826
813
  };
827
814
  };
828
815
  class ContentHaloRunV1alpha1CategoryApi extends BaseAPI {
829
- createcontentHaloRunV1alpha1Category(category, options) {
830
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).createcontentHaloRunV1alpha1Category(category, options).then((request) => request(this.axios, this.basePath));
816
+ createcontentHaloRunV1alpha1Category(requestParameters = {}, options) {
817
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).createcontentHaloRunV1alpha1Category(requestParameters.category, options).then((request) => request(this.axios, this.basePath));
831
818
  }
832
- deletecontentHaloRunV1alpha1Category(name, options) {
833
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).deletecontentHaloRunV1alpha1Category(name, options).then((request) => request(this.axios, this.basePath));
819
+ deletecontentHaloRunV1alpha1Category(requestParameters, options) {
820
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).deletecontentHaloRunV1alpha1Category(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
834
821
  }
835
- getcontentHaloRunV1alpha1Category(name, options) {
836
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).getcontentHaloRunV1alpha1Category(name, options).then((request) => request(this.axios, this.basePath));
822
+ getcontentHaloRunV1alpha1Category(requestParameters, options) {
823
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).getcontentHaloRunV1alpha1Category(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
837
824
  }
838
- listcontentHaloRunV1alpha1Category(page, size, labelSelector, fieldSelector, options) {
839
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).listcontentHaloRunV1alpha1Category(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
825
+ listcontentHaloRunV1alpha1Category(requestParameters = {}, options) {
826
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).listcontentHaloRunV1alpha1Category(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
840
827
  }
841
- updatecontentHaloRunV1alpha1Category(name, category, options) {
842
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).updatecontentHaloRunV1alpha1Category(name, category, options).then((request) => request(this.axios, this.basePath));
828
+ updatecontentHaloRunV1alpha1Category(requestParameters, options) {
829
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).updatecontentHaloRunV1alpha1Category(requestParameters.name, requestParameters.category, options).then((request) => request(this.axios, this.basePath));
843
830
  }
844
831
  }
832
+
845
833
  const ContentHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
846
834
  return {
847
835
  createcontentHaloRunV1alpha1Comment: async (comment, options = {}) => {
@@ -1011,22 +999,23 @@ const ContentHaloRunV1alpha1CommentApiFactory = function(configuration, basePath
1011
999
  };
1012
1000
  };
1013
1001
  class ContentHaloRunV1alpha1CommentApi extends BaseAPI {
1014
- createcontentHaloRunV1alpha1Comment(comment, options) {
1015
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).createcontentHaloRunV1alpha1Comment(comment, options).then((request) => request(this.axios, this.basePath));
1002
+ createcontentHaloRunV1alpha1Comment(requestParameters = {}, options) {
1003
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).createcontentHaloRunV1alpha1Comment(requestParameters.comment, options).then((request) => request(this.axios, this.basePath));
1016
1004
  }
1017
- deletecontentHaloRunV1alpha1Comment(name, options) {
1018
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).deletecontentHaloRunV1alpha1Comment(name, options).then((request) => request(this.axios, this.basePath));
1005
+ deletecontentHaloRunV1alpha1Comment(requestParameters, options) {
1006
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).deletecontentHaloRunV1alpha1Comment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1019
1007
  }
1020
- getcontentHaloRunV1alpha1Comment(name, options) {
1021
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).getcontentHaloRunV1alpha1Comment(name, options).then((request) => request(this.axios, this.basePath));
1008
+ getcontentHaloRunV1alpha1Comment(requestParameters, options) {
1009
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).getcontentHaloRunV1alpha1Comment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1022
1010
  }
1023
- listcontentHaloRunV1alpha1Comment(page, size, labelSelector, fieldSelector, options) {
1024
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).listcontentHaloRunV1alpha1Comment(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1011
+ listcontentHaloRunV1alpha1Comment(requestParameters = {}, options) {
1012
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).listcontentHaloRunV1alpha1Comment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1025
1013
  }
1026
- updatecontentHaloRunV1alpha1Comment(name, comment, options) {
1027
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).updatecontentHaloRunV1alpha1Comment(name, comment, options).then((request) => request(this.axios, this.basePath));
1014
+ updatecontentHaloRunV1alpha1Comment(requestParameters, options) {
1015
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).updatecontentHaloRunV1alpha1Comment(requestParameters.name, requestParameters.comment, options).then((request) => request(this.axios, this.basePath));
1028
1016
  }
1029
1017
  }
1018
+
1030
1019
  const ContentHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
1031
1020
  return {
1032
1021
  createcontentHaloRunV1alpha1Post: async (post, options = {}) => {
@@ -1196,22 +1185,23 @@ const ContentHaloRunV1alpha1PostApiFactory = function(configuration, basePath, a
1196
1185
  };
1197
1186
  };
1198
1187
  class ContentHaloRunV1alpha1PostApi extends BaseAPI {
1199
- createcontentHaloRunV1alpha1Post(post, options) {
1200
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).createcontentHaloRunV1alpha1Post(post, options).then((request) => request(this.axios, this.basePath));
1188
+ createcontentHaloRunV1alpha1Post(requestParameters = {}, options) {
1189
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).createcontentHaloRunV1alpha1Post(requestParameters.post, options).then((request) => request(this.axios, this.basePath));
1201
1190
  }
1202
- deletecontentHaloRunV1alpha1Post(name, options) {
1203
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).deletecontentHaloRunV1alpha1Post(name, options).then((request) => request(this.axios, this.basePath));
1191
+ deletecontentHaloRunV1alpha1Post(requestParameters, options) {
1192
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).deletecontentHaloRunV1alpha1Post(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1204
1193
  }
1205
- getcontentHaloRunV1alpha1Post(name, options) {
1206
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).getcontentHaloRunV1alpha1Post(name, options).then((request) => request(this.axios, this.basePath));
1194
+ getcontentHaloRunV1alpha1Post(requestParameters, options) {
1195
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).getcontentHaloRunV1alpha1Post(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1207
1196
  }
1208
- listcontentHaloRunV1alpha1Post(page, size, labelSelector, fieldSelector, options) {
1209
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).listcontentHaloRunV1alpha1Post(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1197
+ listcontentHaloRunV1alpha1Post(requestParameters = {}, options) {
1198
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).listcontentHaloRunV1alpha1Post(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1210
1199
  }
1211
- updatecontentHaloRunV1alpha1Post(name, post, options) {
1212
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).updatecontentHaloRunV1alpha1Post(name, post, options).then((request) => request(this.axios, this.basePath));
1200
+ updatecontentHaloRunV1alpha1Post(requestParameters, options) {
1201
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).updatecontentHaloRunV1alpha1Post(requestParameters.name, requestParameters.post, options).then((request) => request(this.axios, this.basePath));
1213
1202
  }
1214
1203
  }
1204
+
1215
1205
  const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
1216
1206
  return {
1217
1207
  createcontentHaloRunV1alpha1Reply: async (reply, options = {}) => {
@@ -1381,1186 +1371,56 @@ const ContentHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath,
1381
1371
  };
1382
1372
  };
1383
1373
  class ContentHaloRunV1alpha1ReplyApi extends BaseAPI {
1384
- createcontentHaloRunV1alpha1Reply(reply, options) {
1385
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).createcontentHaloRunV1alpha1Reply(reply, options).then((request) => request(this.axios, this.basePath));
1374
+ createcontentHaloRunV1alpha1Reply(requestParameters = {}, options) {
1375
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).createcontentHaloRunV1alpha1Reply(requestParameters.reply, options).then((request) => request(this.axios, this.basePath));
1386
1376
  }
1387
- deletecontentHaloRunV1alpha1Reply(name, options) {
1388
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).deletecontentHaloRunV1alpha1Reply(name, options).then((request) => request(this.axios, this.basePath));
1377
+ deletecontentHaloRunV1alpha1Reply(requestParameters, options) {
1378
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).deletecontentHaloRunV1alpha1Reply(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1389
1379
  }
1390
- getcontentHaloRunV1alpha1Reply(name, options) {
1391
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).getcontentHaloRunV1alpha1Reply(name, options).then((request) => request(this.axios, this.basePath));
1380
+ getcontentHaloRunV1alpha1Reply(requestParameters, options) {
1381
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).getcontentHaloRunV1alpha1Reply(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1392
1382
  }
1393
- listcontentHaloRunV1alpha1Reply(page, size, labelSelector, fieldSelector, options) {
1394
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).listcontentHaloRunV1alpha1Reply(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1383
+ listcontentHaloRunV1alpha1Reply(requestParameters = {}, options) {
1384
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).listcontentHaloRunV1alpha1Reply(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1395
1385
  }
1396
- updatecontentHaloRunV1alpha1Reply(name, reply, options) {
1397
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).updatecontentHaloRunV1alpha1Reply(name, reply, options).then((request) => request(this.axios, this.basePath));
1386
+ updatecontentHaloRunV1alpha1Reply(requestParameters, options) {
1387
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).updatecontentHaloRunV1alpha1Reply(requestParameters.name, requestParameters.reply, options).then((request) => request(this.axios, this.basePath));
1398
1388
  }
1399
1389
  }
1390
+
1400
1391
  const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator = function(configuration) {
1401
- return {
1402
- createcontentHaloRunV1alpha1Snapshot: async (snapshot, options = {}) => {
1403
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
1404
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1405
- let baseOptions;
1406
- if (configuration) {
1407
- baseOptions = configuration.baseOptions;
1408
- }
1409
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
1410
- const localVarHeaderParameter = {};
1411
- const localVarQueryParameter = {};
1412
- setBasicAuthToObject(localVarRequestOptions, configuration);
1413
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1414
- localVarHeaderParameter["Content-Type"] = "application/json";
1415
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1416
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1417
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1418
- localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
1419
- return {
1420
- url: toPathString(localVarUrlObj),
1421
- options: localVarRequestOptions
1422
- };
1423
- },
1424
- deletecontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1425
- assertParamExists("deletecontentHaloRunV1alpha1Snapshot", "name", name);
1426
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1427
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1428
- let baseOptions;
1429
- if (configuration) {
1430
- baseOptions = configuration.baseOptions;
1431
- }
1432
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
1433
- const localVarHeaderParameter = {};
1434
- const localVarQueryParameter = {};
1435
- setBasicAuthToObject(localVarRequestOptions, configuration);
1436
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1437
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1438
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1439
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1440
- return {
1441
- url: toPathString(localVarUrlObj),
1442
- options: localVarRequestOptions
1443
- };
1444
- },
1445
- getcontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1446
- assertParamExists("getcontentHaloRunV1alpha1Snapshot", "name", name);
1447
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1448
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1449
- let baseOptions;
1450
- if (configuration) {
1451
- baseOptions = configuration.baseOptions;
1452
- }
1453
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1454
- const localVarHeaderParameter = {};
1455
- const localVarQueryParameter = {};
1456
- setBasicAuthToObject(localVarRequestOptions, configuration);
1457
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1458
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1459
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1460
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1461
- return {
1462
- url: toPathString(localVarUrlObj),
1463
- options: localVarRequestOptions
1464
- };
1465
- },
1466
- listcontentHaloRunV1alpha1Snapshot: async (page, size, labelSelector, fieldSelector, options = {}) => {
1467
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
1468
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1469
- let baseOptions;
1470
- if (configuration) {
1471
- baseOptions = configuration.baseOptions;
1472
- }
1473
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1474
- const localVarHeaderParameter = {};
1475
- const localVarQueryParameter = {};
1476
- setBasicAuthToObject(localVarRequestOptions, configuration);
1477
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1478
- if (page !== void 0) {
1479
- localVarQueryParameter["page"] = page;
1480
- }
1481
- if (size !== void 0) {
1482
- localVarQueryParameter["size"] = size;
1483
- }
1484
- if (labelSelector) {
1485
- localVarQueryParameter["labelSelector"] = labelSelector;
1486
- }
1487
- if (fieldSelector) {
1488
- localVarQueryParameter["fieldSelector"] = fieldSelector;
1489
- }
1490
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1491
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1492
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1493
- return {
1494
- url: toPathString(localVarUrlObj),
1495
- options: localVarRequestOptions
1496
- };
1497
- },
1498
- updatecontentHaloRunV1alpha1Snapshot: async (name, snapshot, options = {}) => {
1499
- assertParamExists("updatecontentHaloRunV1alpha1Snapshot", "name", name);
1500
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1501
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1502
- let baseOptions;
1503
- if (configuration) {
1504
- baseOptions = configuration.baseOptions;
1505
- }
1506
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
1507
- const localVarHeaderParameter = {};
1508
- const localVarQueryParameter = {};
1509
- setBasicAuthToObject(localVarRequestOptions, configuration);
1510
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1511
- localVarHeaderParameter["Content-Type"] = "application/json";
1512
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1513
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1514
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1515
- localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
1516
- return {
1517
- url: toPathString(localVarUrlObj),
1518
- options: localVarRequestOptions
1519
- };
1520
- }
1521
- };
1522
- };
1523
- const ContentHaloRunV1alpha1SnapshotApiFp = function(configuration) {
1524
- const localVarAxiosParamCreator = ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator(configuration);
1525
- return {
1526
- async createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1527
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Snapshot(snapshot, options);
1528
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1529
- },
1530
- async deletecontentHaloRunV1alpha1Snapshot(name, options) {
1531
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Snapshot(name, options);
1532
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1533
- },
1534
- async getcontentHaloRunV1alpha1Snapshot(name, options) {
1535
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Snapshot(name, options);
1536
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1537
- },
1538
- async listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1539
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options);
1540
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1541
- },
1542
- async updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1543
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options);
1544
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1545
- }
1546
- };
1547
- };
1548
- const ContentHaloRunV1alpha1SnapshotApiFactory = function(configuration, basePath, axios) {
1549
- const localVarFp = ContentHaloRunV1alpha1SnapshotApiFp(configuration);
1550
- return {
1551
- createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1552
- return localVarFp.createcontentHaloRunV1alpha1Snapshot(snapshot, options).then((request) => request(axios, basePath));
1553
- },
1554
- deletecontentHaloRunV1alpha1Snapshot(name, options) {
1555
- return localVarFp.deletecontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
1556
- },
1557
- getcontentHaloRunV1alpha1Snapshot(name, options) {
1558
- return localVarFp.getcontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
1559
- },
1560
- listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1561
- return localVarFp.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1562
- },
1563
- updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1564
- return localVarFp.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options).then((request) => request(axios, basePath));
1565
- }
1566
- };
1567
- };
1568
- class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
1569
- createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1570
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).createcontentHaloRunV1alpha1Snapshot(snapshot, options).then((request) => request(this.axios, this.basePath));
1571
- }
1572
- deletecontentHaloRunV1alpha1Snapshot(name, options) {
1573
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).deletecontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(this.axios, this.basePath));
1574
- }
1575
- getcontentHaloRunV1alpha1Snapshot(name, options) {
1576
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).getcontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(this.axios, this.basePath));
1577
- }
1578
- listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1579
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1580
- }
1581
- updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1582
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options).then((request) => request(this.axios, this.basePath));
1583
- }
1584
- }
1585
- const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1586
- return {
1587
- createcontentHaloRunV1alpha1Tag: async (tag, options = {}) => {
1588
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
1589
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1590
- let baseOptions;
1591
- if (configuration) {
1592
- baseOptions = configuration.baseOptions;
1593
- }
1594
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
1595
- const localVarHeaderParameter = {};
1596
- const localVarQueryParameter = {};
1597
- setBasicAuthToObject(localVarRequestOptions, configuration);
1598
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1599
- localVarHeaderParameter["Content-Type"] = "application/json";
1600
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1601
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1602
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1603
- localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
1604
- return {
1605
- url: toPathString(localVarUrlObj),
1606
- options: localVarRequestOptions
1607
- };
1608
- },
1609
- deletecontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1610
- assertParamExists("deletecontentHaloRunV1alpha1Tag", "name", name);
1611
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1612
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1613
- let baseOptions;
1614
- if (configuration) {
1615
- baseOptions = configuration.baseOptions;
1616
- }
1617
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
1618
- const localVarHeaderParameter = {};
1619
- const localVarQueryParameter = {};
1620
- setBasicAuthToObject(localVarRequestOptions, configuration);
1621
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1622
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1623
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1624
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1625
- return {
1626
- url: toPathString(localVarUrlObj),
1627
- options: localVarRequestOptions
1628
- };
1629
- },
1630
- getcontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1631
- assertParamExists("getcontentHaloRunV1alpha1Tag", "name", name);
1632
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1633
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1634
- let baseOptions;
1635
- if (configuration) {
1636
- baseOptions = configuration.baseOptions;
1637
- }
1638
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1639
- const localVarHeaderParameter = {};
1640
- const localVarQueryParameter = {};
1641
- setBasicAuthToObject(localVarRequestOptions, configuration);
1642
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1643
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1644
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1645
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1646
- return {
1647
- url: toPathString(localVarUrlObj),
1648
- options: localVarRequestOptions
1649
- };
1650
- },
1651
- listcontentHaloRunV1alpha1Tag: async (page, size, labelSelector, fieldSelector, options = {}) => {
1652
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
1653
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1654
- let baseOptions;
1655
- if (configuration) {
1656
- baseOptions = configuration.baseOptions;
1657
- }
1658
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1659
- const localVarHeaderParameter = {};
1660
- const localVarQueryParameter = {};
1661
- setBasicAuthToObject(localVarRequestOptions, configuration);
1662
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1663
- if (page !== void 0) {
1664
- localVarQueryParameter["page"] = page;
1665
- }
1666
- if (size !== void 0) {
1667
- localVarQueryParameter["size"] = size;
1668
- }
1669
- if (labelSelector) {
1670
- localVarQueryParameter["labelSelector"] = labelSelector;
1671
- }
1672
- if (fieldSelector) {
1673
- localVarQueryParameter["fieldSelector"] = fieldSelector;
1674
- }
1675
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1676
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1677
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1678
- return {
1679
- url: toPathString(localVarUrlObj),
1680
- options: localVarRequestOptions
1681
- };
1682
- },
1683
- updatecontentHaloRunV1alpha1Tag: async (name, tag, options = {}) => {
1684
- assertParamExists("updatecontentHaloRunV1alpha1Tag", "name", name);
1685
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1686
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1687
- let baseOptions;
1688
- if (configuration) {
1689
- baseOptions = configuration.baseOptions;
1690
- }
1691
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
1692
- const localVarHeaderParameter = {};
1693
- const localVarQueryParameter = {};
1694
- setBasicAuthToObject(localVarRequestOptions, configuration);
1695
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1696
- localVarHeaderParameter["Content-Type"] = "application/json";
1697
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1698
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1699
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1700
- localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
1701
- return {
1702
- url: toPathString(localVarUrlObj),
1703
- options: localVarRequestOptions
1704
- };
1705
- }
1706
- };
1707
- };
1708
- const ContentHaloRunV1alpha1TagApiFp = function(configuration) {
1709
- const localVarAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator(configuration);
1710
- return {
1711
- async createcontentHaloRunV1alpha1Tag(tag, options) {
1712
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Tag(tag, options);
1713
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1714
- },
1715
- async deletecontentHaloRunV1alpha1Tag(name, options) {
1716
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Tag(name, options);
1717
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1718
- },
1719
- async getcontentHaloRunV1alpha1Tag(name, options) {
1720
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Tag(name, options);
1721
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1722
- },
1723
- async listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1724
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options);
1725
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1726
- },
1727
- async updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1728
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Tag(name, tag, options);
1729
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1730
- }
1731
- };
1732
- };
1733
- const ContentHaloRunV1alpha1TagApiFactory = function(configuration, basePath, axios) {
1734
- const localVarFp = ContentHaloRunV1alpha1TagApiFp(configuration);
1735
- return {
1736
- createcontentHaloRunV1alpha1Tag(tag, options) {
1737
- return localVarFp.createcontentHaloRunV1alpha1Tag(tag, options).then((request) => request(axios, basePath));
1738
- },
1739
- deletecontentHaloRunV1alpha1Tag(name, options) {
1740
- return localVarFp.deletecontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
1741
- },
1742
- getcontentHaloRunV1alpha1Tag(name, options) {
1743
- return localVarFp.getcontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
1744
- },
1745
- listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1746
- return localVarFp.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1747
- },
1748
- updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1749
- return localVarFp.updatecontentHaloRunV1alpha1Tag(name, tag, options).then((request) => request(axios, basePath));
1750
- }
1751
- };
1752
- };
1753
- class ContentHaloRunV1alpha1TagApi extends BaseAPI {
1754
- createcontentHaloRunV1alpha1Tag(tag, options) {
1755
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).createcontentHaloRunV1alpha1Tag(tag, options).then((request) => request(this.axios, this.basePath));
1756
- }
1757
- deletecontentHaloRunV1alpha1Tag(name, options) {
1758
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).deletecontentHaloRunV1alpha1Tag(name, options).then((request) => request(this.axios, this.basePath));
1759
- }
1760
- getcontentHaloRunV1alpha1Tag(name, options) {
1761
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).getcontentHaloRunV1alpha1Tag(name, options).then((request) => request(this.axios, this.basePath));
1762
- }
1763
- listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1764
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1765
- }
1766
- updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1767
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).updatecontentHaloRunV1alpha1Tag(name, tag, options).then((request) => request(this.axios, this.basePath));
1768
- }
1769
- }
1770
- const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1771
- return {
1772
- createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
1773
- const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
1774
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1775
- let baseOptions;
1776
- if (configuration) {
1777
- baseOptions = configuration.baseOptions;
1778
- }
1779
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
1780
- const localVarHeaderParameter = {};
1781
- const localVarQueryParameter = {};
1782
- setBasicAuthToObject(localVarRequestOptions, configuration);
1783
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1784
- localVarHeaderParameter["Content-Type"] = "application/json";
1785
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1786
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1787
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1788
- localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
1789
- return {
1790
- url: toPathString(localVarUrlObj),
1791
- options: localVarRequestOptions
1792
- };
1793
- },
1794
- deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
1795
- assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
1796
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1797
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1798
- let baseOptions;
1799
- if (configuration) {
1800
- baseOptions = configuration.baseOptions;
1801
- }
1802
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
1803
- const localVarHeaderParameter = {};
1804
- const localVarQueryParameter = {};
1805
- setBasicAuthToObject(localVarRequestOptions, configuration);
1806
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1807
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1808
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1809
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1810
- return {
1811
- url: toPathString(localVarUrlObj),
1812
- options: localVarRequestOptions
1813
- };
1814
- },
1815
- getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
1816
- assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
1817
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1818
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1819
- let baseOptions;
1820
- if (configuration) {
1821
- baseOptions = configuration.baseOptions;
1822
- }
1823
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1824
- const localVarHeaderParameter = {};
1825
- const localVarQueryParameter = {};
1826
- setBasicAuthToObject(localVarRequestOptions, configuration);
1827
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1828
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1829
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1830
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1831
- return {
1832
- url: toPathString(localVarUrlObj),
1833
- options: localVarRequestOptions
1834
- };
1835
- },
1836
- listcoreHaloRunV1alpha1Link: async (page, size, labelSelector, fieldSelector, options = {}) => {
1837
- const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
1838
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1839
- let baseOptions;
1840
- if (configuration) {
1841
- baseOptions = configuration.baseOptions;
1842
- }
1843
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1844
- const localVarHeaderParameter = {};
1845
- const localVarQueryParameter = {};
1846
- setBasicAuthToObject(localVarRequestOptions, configuration);
1847
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1848
- if (page !== void 0) {
1849
- localVarQueryParameter["page"] = page;
1850
- }
1851
- if (size !== void 0) {
1852
- localVarQueryParameter["size"] = size;
1853
- }
1854
- if (labelSelector) {
1855
- localVarQueryParameter["labelSelector"] = labelSelector;
1856
- }
1857
- if (fieldSelector) {
1858
- localVarQueryParameter["fieldSelector"] = fieldSelector;
1859
- }
1860
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1861
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1862
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1863
- return {
1864
- url: toPathString(localVarUrlObj),
1865
- options: localVarRequestOptions
1866
- };
1867
- },
1868
- updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
1869
- assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
1870
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1871
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1872
- let baseOptions;
1873
- if (configuration) {
1874
- baseOptions = configuration.baseOptions;
1875
- }
1876
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
1877
- const localVarHeaderParameter = {};
1878
- const localVarQueryParameter = {};
1879
- setBasicAuthToObject(localVarRequestOptions, configuration);
1880
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1881
- localVarHeaderParameter["Content-Type"] = "application/json";
1882
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1883
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1884
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1885
- localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
1886
- return {
1887
- url: toPathString(localVarUrlObj),
1888
- options: localVarRequestOptions
1889
- };
1890
- }
1891
- };
1892
- };
1893
- const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
1894
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
1895
- return {
1896
- async createcoreHaloRunV1alpha1Link(link, options) {
1897
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
1898
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1899
- },
1900
- async deletecoreHaloRunV1alpha1Link(name, options) {
1901
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
1902
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1903
- },
1904
- async getcoreHaloRunV1alpha1Link(name, options) {
1905
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
1906
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1907
- },
1908
- async listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
1909
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options);
1910
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1911
- },
1912
- async updatecoreHaloRunV1alpha1Link(name, link, options) {
1913
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
1914
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1915
- }
1916
- };
1917
- };
1918
- const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
1919
- const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
1920
- return {
1921
- createcoreHaloRunV1alpha1Link(link, options) {
1922
- return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
1923
- },
1924
- deletecoreHaloRunV1alpha1Link(name, options) {
1925
- return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
1926
- },
1927
- getcoreHaloRunV1alpha1Link(name, options) {
1928
- return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
1929
- },
1930
- listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
1931
- return localVarFp.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1932
- },
1933
- updatecoreHaloRunV1alpha1Link(name, link, options) {
1934
- return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
1935
- }
1936
- };
1937
- };
1938
- class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
1939
- createcoreHaloRunV1alpha1Link(link, options) {
1940
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(link, options).then((request) => request(this.axios, this.basePath));
1941
- }
1942
- deletecoreHaloRunV1alpha1Link(name, options) {
1943
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
1944
- }
1945
- getcoreHaloRunV1alpha1Link(name, options) {
1946
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
1947
- }
1948
- listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
1949
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1950
- }
1951
- updatecoreHaloRunV1alpha1Link(name, link, options) {
1952
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
1953
- }
1954
- }
1955
- const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
1956
- return {
1957
- createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
1958
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
1959
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1960
- let baseOptions;
1961
- if (configuration) {
1962
- baseOptions = configuration.baseOptions;
1963
- }
1964
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
1965
- const localVarHeaderParameter = {};
1966
- const localVarQueryParameter = {};
1967
- setBasicAuthToObject(localVarRequestOptions, configuration);
1968
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1969
- localVarHeaderParameter["Content-Type"] = "application/json";
1970
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1971
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1972
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1973
- localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
1974
- return {
1975
- url: toPathString(localVarUrlObj),
1976
- options: localVarRequestOptions
1977
- };
1978
- },
1979
- deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
1980
- assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
1981
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1982
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1983
- let baseOptions;
1984
- if (configuration) {
1985
- baseOptions = configuration.baseOptions;
1986
- }
1987
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
1988
- const localVarHeaderParameter = {};
1989
- const localVarQueryParameter = {};
1990
- setBasicAuthToObject(localVarRequestOptions, configuration);
1991
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1992
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1993
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1994
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1995
- return {
1996
- url: toPathString(localVarUrlObj),
1997
- options: localVarRequestOptions
1998
- };
1999
- },
2000
- getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
2001
- assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
2002
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2003
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2004
- let baseOptions;
2005
- if (configuration) {
2006
- baseOptions = configuration.baseOptions;
2007
- }
2008
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
2009
- const localVarHeaderParameter = {};
2010
- const localVarQueryParameter = {};
2011
- setBasicAuthToObject(localVarRequestOptions, configuration);
2012
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2013
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2014
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2015
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2016
- return {
2017
- url: toPathString(localVarUrlObj),
2018
- options: localVarRequestOptions
2019
- };
2020
- },
2021
- listcoreHaloRunV1alpha1LinkGroup: async (page, size, labelSelector, fieldSelector, options = {}) => {
2022
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
2023
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2024
- let baseOptions;
2025
- if (configuration) {
2026
- baseOptions = configuration.baseOptions;
2027
- }
2028
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
2029
- const localVarHeaderParameter = {};
2030
- const localVarQueryParameter = {};
2031
- setBasicAuthToObject(localVarRequestOptions, configuration);
2032
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2033
- if (page !== void 0) {
2034
- localVarQueryParameter["page"] = page;
2035
- }
2036
- if (size !== void 0) {
2037
- localVarQueryParameter["size"] = size;
2038
- }
2039
- if (labelSelector) {
2040
- localVarQueryParameter["labelSelector"] = labelSelector;
2041
- }
2042
- if (fieldSelector) {
2043
- localVarQueryParameter["fieldSelector"] = fieldSelector;
2044
- }
2045
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2046
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2047
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2048
- return {
2049
- url: toPathString(localVarUrlObj),
2050
- options: localVarRequestOptions
2051
- };
2052
- },
2053
- updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
2054
- assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
2055
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2056
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2057
- let baseOptions;
2058
- if (configuration) {
2059
- baseOptions = configuration.baseOptions;
2060
- }
2061
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
2062
- const localVarHeaderParameter = {};
2063
- const localVarQueryParameter = {};
2064
- setBasicAuthToObject(localVarRequestOptions, configuration);
2065
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2066
- localVarHeaderParameter["Content-Type"] = "application/json";
2067
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2068
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2069
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2070
- localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
2071
- return {
2072
- url: toPathString(localVarUrlObj),
2073
- options: localVarRequestOptions
2074
- };
2075
- }
2076
- };
2077
- };
2078
- const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
2079
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
2080
- return {
2081
- async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
2082
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
2083
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2084
- },
2085
- async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
2086
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
2087
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2088
- },
2089
- async getcoreHaloRunV1alpha1LinkGroup(name, options) {
2090
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
2091
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2092
- },
2093
- async listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
2094
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options);
2095
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2096
- },
2097
- async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
2098
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
2099
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2100
- }
2101
- };
2102
- };
2103
- const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
2104
- const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
2105
- return {
2106
- createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
2107
- return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
2108
- },
2109
- deletecoreHaloRunV1alpha1LinkGroup(name, options) {
2110
- return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
2111
- },
2112
- getcoreHaloRunV1alpha1LinkGroup(name, options) {
2113
- return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
2114
- },
2115
- listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
2116
- return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2117
- },
2118
- updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
2119
- return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
2120
- }
2121
- };
2122
- };
2123
- class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
2124
- createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
2125
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(this.axios, this.basePath));
2126
- }
2127
- deletecoreHaloRunV1alpha1LinkGroup(name, options) {
2128
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
2129
- }
2130
- getcoreHaloRunV1alpha1LinkGroup(name, options) {
2131
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
2132
- }
2133
- listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
2134
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2135
- }
2136
- updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
2137
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
2138
- }
2139
- }
2140
- const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
2141
- return {
2142
- createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
2143
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
2144
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2145
- let baseOptions;
2146
- if (configuration) {
2147
- baseOptions = configuration.baseOptions;
2148
- }
2149
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
2150
- const localVarHeaderParameter = {};
2151
- const localVarQueryParameter = {};
2152
- setBasicAuthToObject(localVarRequestOptions, configuration);
2153
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2154
- localVarHeaderParameter["Content-Type"] = "application/json";
2155
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2156
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2157
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2158
- localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
2159
- return {
2160
- url: toPathString(localVarUrlObj),
2161
- options: localVarRequestOptions
2162
- };
2163
- },
2164
- deletepluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
2165
- assertParamExists("deletepluginHaloRunV1alpha1Plugin", "name", name);
2166
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2167
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2168
- let baseOptions;
2169
- if (configuration) {
2170
- baseOptions = configuration.baseOptions;
2171
- }
2172
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
2173
- const localVarHeaderParameter = {};
2174
- const localVarQueryParameter = {};
2175
- setBasicAuthToObject(localVarRequestOptions, configuration);
2176
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2177
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2178
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2179
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2180
- return {
2181
- url: toPathString(localVarUrlObj),
2182
- options: localVarRequestOptions
2183
- };
2184
- },
2185
- getpluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
2186
- assertParamExists("getpluginHaloRunV1alpha1Plugin", "name", name);
2187
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2188
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2189
- let baseOptions;
2190
- if (configuration) {
2191
- baseOptions = configuration.baseOptions;
2192
- }
2193
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
2194
- const localVarHeaderParameter = {};
2195
- const localVarQueryParameter = {};
2196
- setBasicAuthToObject(localVarRequestOptions, configuration);
2197
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2198
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2199
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2200
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2201
- return {
2202
- url: toPathString(localVarUrlObj),
2203
- options: localVarRequestOptions
2204
- };
2205
- },
2206
- listpluginHaloRunV1alpha1Plugin: async (page, size, labelSelector, fieldSelector, options = {}) => {
2207
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
2208
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2209
- let baseOptions;
2210
- if (configuration) {
2211
- baseOptions = configuration.baseOptions;
2212
- }
2213
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
2214
- const localVarHeaderParameter = {};
2215
- const localVarQueryParameter = {};
2216
- setBasicAuthToObject(localVarRequestOptions, configuration);
2217
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2218
- if (page !== void 0) {
2219
- localVarQueryParameter["page"] = page;
2220
- }
2221
- if (size !== void 0) {
2222
- localVarQueryParameter["size"] = size;
2223
- }
2224
- if (labelSelector) {
2225
- localVarQueryParameter["labelSelector"] = labelSelector;
2226
- }
2227
- if (fieldSelector) {
2228
- localVarQueryParameter["fieldSelector"] = fieldSelector;
2229
- }
2230
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2231
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2232
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2233
- return {
2234
- url: toPathString(localVarUrlObj),
2235
- options: localVarRequestOptions
2236
- };
2237
- },
2238
- updatepluginHaloRunV1alpha1Plugin: async (name, plugin, options = {}) => {
2239
- assertParamExists("updatepluginHaloRunV1alpha1Plugin", "name", name);
2240
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2241
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2242
- let baseOptions;
2243
- if (configuration) {
2244
- baseOptions = configuration.baseOptions;
2245
- }
2246
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
2247
- const localVarHeaderParameter = {};
2248
- const localVarQueryParameter = {};
2249
- setBasicAuthToObject(localVarRequestOptions, configuration);
2250
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2251
- localVarHeaderParameter["Content-Type"] = "application/json";
2252
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2253
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2254
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2255
- localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
2256
- return {
2257
- url: toPathString(localVarUrlObj),
2258
- options: localVarRequestOptions
2259
- };
2260
- }
2261
- };
2262
- };
2263
- const PluginHaloRunV1alpha1PluginApiFp = function(configuration) {
2264
- const localVarAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
2265
- return {
2266
- async createpluginHaloRunV1alpha1Plugin(plugin, options) {
2267
- const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1Plugin(plugin, options);
2268
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2269
- },
2270
- async deletepluginHaloRunV1alpha1Plugin(name, options) {
2271
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1Plugin(name, options);
2272
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2273
- },
2274
- async getpluginHaloRunV1alpha1Plugin(name, options) {
2275
- const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1Plugin(name, options);
2276
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2277
- },
2278
- async listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
2279
- const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options);
2280
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2281
- },
2282
- async updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
2283
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1Plugin(name, plugin, options);
2284
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2285
- }
2286
- };
2287
- };
2288
- const PluginHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
2289
- const localVarFp = PluginHaloRunV1alpha1PluginApiFp(configuration);
2290
- return {
2291
- createpluginHaloRunV1alpha1Plugin(plugin, options) {
2292
- return localVarFp.createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(axios, basePath));
2293
- },
2294
- deletepluginHaloRunV1alpha1Plugin(name, options) {
2295
- return localVarFp.deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
2296
- },
2297
- getpluginHaloRunV1alpha1Plugin(name, options) {
2298
- return localVarFp.getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
2299
- },
2300
- listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
2301
- return localVarFp.listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2302
- },
2303
- updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
2304
- return localVarFp.updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(axios, basePath));
2305
- }
2306
- };
2307
- };
2308
- class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
2309
- createpluginHaloRunV1alpha1Plugin(plugin, options) {
2310
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(this.axios, this.basePath));
2311
- }
2312
- deletepluginHaloRunV1alpha1Plugin(name, options) {
2313
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
2314
- }
2315
- getpluginHaloRunV1alpha1Plugin(name, options) {
2316
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
2317
- }
2318
- listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
2319
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2320
- }
2321
- updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
2322
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(this.axios, this.basePath));
2323
- }
2324
- }
2325
- const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configuration) {
2326
- return {
2327
- createpluginHaloRunV1alpha1ReverseProxy: async (reverseProxy, options = {}) => {
2328
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
2329
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2330
- let baseOptions;
2331
- if (configuration) {
2332
- baseOptions = configuration.baseOptions;
2333
- }
2334
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
2335
- const localVarHeaderParameter = {};
2336
- const localVarQueryParameter = {};
2337
- setBasicAuthToObject(localVarRequestOptions, configuration);
2338
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2339
- localVarHeaderParameter["Content-Type"] = "application/json";
2340
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2341
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2342
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2343
- localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
2344
- return {
2345
- url: toPathString(localVarUrlObj),
2346
- options: localVarRequestOptions
2347
- };
2348
- },
2349
- deletepluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
2350
- assertParamExists("deletepluginHaloRunV1alpha1ReverseProxy", "name", name);
2351
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2352
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2353
- let baseOptions;
2354
- if (configuration) {
2355
- baseOptions = configuration.baseOptions;
2356
- }
2357
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
2358
- const localVarHeaderParameter = {};
2359
- const localVarQueryParameter = {};
2360
- setBasicAuthToObject(localVarRequestOptions, configuration);
2361
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2362
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2363
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2364
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2365
- return {
2366
- url: toPathString(localVarUrlObj),
2367
- options: localVarRequestOptions
2368
- };
2369
- },
2370
- getpluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
2371
- assertParamExists("getpluginHaloRunV1alpha1ReverseProxy", "name", name);
2372
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2373
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2374
- let baseOptions;
2375
- if (configuration) {
2376
- baseOptions = configuration.baseOptions;
2377
- }
2378
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
2379
- const localVarHeaderParameter = {};
2380
- const localVarQueryParameter = {};
2381
- setBasicAuthToObject(localVarRequestOptions, configuration);
2382
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2383
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2384
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2385
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2386
- return {
2387
- url: toPathString(localVarUrlObj),
2388
- options: localVarRequestOptions
2389
- };
2390
- },
2391
- listpluginHaloRunV1alpha1ReverseProxy: async (page, size, labelSelector, fieldSelector, options = {}) => {
2392
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
2393
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2394
- let baseOptions;
2395
- if (configuration) {
2396
- baseOptions = configuration.baseOptions;
2397
- }
2398
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
2399
- const localVarHeaderParameter = {};
2400
- const localVarQueryParameter = {};
2401
- setBasicAuthToObject(localVarRequestOptions, configuration);
2402
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2403
- if (page !== void 0) {
2404
- localVarQueryParameter["page"] = page;
2405
- }
2406
- if (size !== void 0) {
2407
- localVarQueryParameter["size"] = size;
2408
- }
2409
- if (labelSelector) {
2410
- localVarQueryParameter["labelSelector"] = labelSelector;
2411
- }
2412
- if (fieldSelector) {
2413
- localVarQueryParameter["fieldSelector"] = fieldSelector;
2414
- }
2415
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2416
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2417
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2418
- return {
2419
- url: toPathString(localVarUrlObj),
2420
- options: localVarRequestOptions
2421
- };
2422
- },
2423
- updatepluginHaloRunV1alpha1ReverseProxy: async (name, reverseProxy, options = {}) => {
2424
- assertParamExists("updatepluginHaloRunV1alpha1ReverseProxy", "name", name);
2425
- const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2426
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2427
- let baseOptions;
2428
- if (configuration) {
2429
- baseOptions = configuration.baseOptions;
2430
- }
2431
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
2432
- const localVarHeaderParameter = {};
2433
- const localVarQueryParameter = {};
2434
- setBasicAuthToObject(localVarRequestOptions, configuration);
2435
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2436
- localVarHeaderParameter["Content-Type"] = "application/json";
2437
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2438
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2439
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2440
- localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
2441
- return {
2442
- url: toPathString(localVarUrlObj),
2443
- options: localVarRequestOptions
2444
- };
2445
- }
2446
- };
2447
- };
2448
- const PluginHaloRunV1alpha1ReverseProxyApiFp = function(configuration) {
2449
- const localVarAxiosParamCreator = PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator(configuration);
2450
- return {
2451
- async createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
2452
- const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options);
2453
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2454
- },
2455
- async deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
2456
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1ReverseProxy(name, options);
2457
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2458
- },
2459
- async getpluginHaloRunV1alpha1ReverseProxy(name, options) {
2460
- const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1ReverseProxy(name, options);
2461
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2462
- },
2463
- async listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
2464
- const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options);
2465
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2466
- },
2467
- async updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
2468
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options);
2469
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2470
- }
2471
- };
2472
- };
2473
- const PluginHaloRunV1alpha1ReverseProxyApiFactory = function(configuration, basePath, axios) {
2474
- const localVarFp = PluginHaloRunV1alpha1ReverseProxyApiFp(configuration);
2475
- return {
2476
- createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
2477
- return localVarFp.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(axios, basePath));
2478
- },
2479
- deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
2480
- return localVarFp.deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
2481
- },
2482
- getpluginHaloRunV1alpha1ReverseProxy(name, options) {
2483
- return localVarFp.getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
2484
- },
2485
- listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
2486
- return localVarFp.listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2487
- },
2488
- updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
2489
- return localVarFp.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(axios, basePath));
2490
- }
2491
- };
2492
- };
2493
- class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
2494
- createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
2495
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(this.axios, this.basePath));
2496
- }
2497
- deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
2498
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
2499
- }
2500
- getpluginHaloRunV1alpha1ReverseProxy(name, options) {
2501
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
2502
- }
2503
- listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
2504
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2505
- }
2506
- updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
2507
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(this.axios, this.basePath));
2508
- }
2509
- }
2510
- const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
2511
- return {
2512
- createstorageHaloRunV1alpha1Attachment: async (attachment, options = {}) => {
2513
- const localVarPath = `/apis/storage.halo.run/v1alpha1/attachments`;
2514
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2515
- let baseOptions;
2516
- if (configuration) {
2517
- baseOptions = configuration.baseOptions;
2518
- }
2519
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
2520
- const localVarHeaderParameter = {};
2521
- const localVarQueryParameter = {};
2522
- setBasicAuthToObject(localVarRequestOptions, configuration);
2523
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2524
- localVarHeaderParameter["Content-Type"] = "application/json";
2525
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2526
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2527
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2528
- localVarRequestOptions.data = serializeDataIfNeeded(attachment, localVarRequestOptions, configuration);
2529
- return {
2530
- url: toPathString(localVarUrlObj),
2531
- options: localVarRequestOptions
2532
- };
2533
- },
2534
- deletestorageHaloRunV1alpha1Attachment: async (name, options = {}) => {
2535
- assertParamExists("deletestorageHaloRunV1alpha1Attachment", "name", name);
2536
- const localVarPath = `/apis/storage.halo.run/v1alpha1/attachments/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1392
+ return {
1393
+ createcontentHaloRunV1alpha1Snapshot: async (snapshot, options = {}) => {
1394
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
2537
1395
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2538
1396
  let baseOptions;
2539
1397
  if (configuration) {
2540
1398
  baseOptions = configuration.baseOptions;
2541
1399
  }
2542
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
1400
+ const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
2543
1401
  const localVarHeaderParameter = {};
2544
1402
  const localVarQueryParameter = {};
2545
1403
  setBasicAuthToObject(localVarRequestOptions, configuration);
2546
1404
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1405
+ localVarHeaderParameter["Content-Type"] = "application/json";
2547
1406
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2548
1407
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2549
1408
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1409
+ localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
2550
1410
  return {
2551
1411
  url: toPathString(localVarUrlObj),
2552
1412
  options: localVarRequestOptions
2553
1413
  };
2554
1414
  },
2555
- getstorageHaloRunV1alpha1Attachment: async (name, options = {}) => {
2556
- assertParamExists("getstorageHaloRunV1alpha1Attachment", "name", name);
2557
- const localVarPath = `/apis/storage.halo.run/v1alpha1/attachments/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1415
+ deletecontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1416
+ assertParamExists("deletecontentHaloRunV1alpha1Snapshot", "name", name);
1417
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2558
1418
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2559
1419
  let baseOptions;
2560
1420
  if (configuration) {
2561
1421
  baseOptions = configuration.baseOptions;
2562
1422
  }
2563
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1423
+ const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
2564
1424
  const localVarHeaderParameter = {};
2565
1425
  const localVarQueryParameter = {};
2566
1426
  setBasicAuthToObject(localVarRequestOptions, configuration);
@@ -2573,8 +1433,9 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2573
1433
  options: localVarRequestOptions
2574
1434
  };
2575
1435
  },
2576
- liststorageHaloRunV1alpha1Attachment: async (page, size, labelSelector, fieldSelector, options = {}) => {
2577
- const localVarPath = `/apis/storage.halo.run/v1alpha1/attachments`;
1436
+ getcontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1437
+ assertParamExists("getcontentHaloRunV1alpha1Snapshot", "name", name);
1438
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2578
1439
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2579
1440
  let baseOptions;
2580
1441
  if (configuration) {
@@ -2585,18 +1446,6 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2585
1446
  const localVarQueryParameter = {};
2586
1447
  setBasicAuthToObject(localVarRequestOptions, configuration);
2587
1448
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2588
- if (page !== void 0) {
2589
- localVarQueryParameter["page"] = page;
2590
- }
2591
- if (size !== void 0) {
2592
- localVarQueryParameter["size"] = size;
2593
- }
2594
- if (labelSelector) {
2595
- localVarQueryParameter["labelSelector"] = labelSelector;
2596
- }
2597
- if (fieldSelector) {
2598
- localVarQueryParameter["fieldSelector"] = fieldSelector;
2599
- }
2600
1449
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2601
1450
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2602
1451
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
@@ -2605,8 +1454,8 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2605
1454
  options: localVarRequestOptions
2606
1455
  };
2607
1456
  },
2608
- searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
2609
- const localVarPath = `/apis/api.halo.run/v1alpha1/attachments`;
1457
+ listcontentHaloRunV1alpha1Snapshot: async (page, size, labelSelector, fieldSelector, options = {}) => {
1458
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
2610
1459
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2611
1460
  let baseOptions;
2612
1461
  if (configuration) {
@@ -2617,24 +1466,12 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2617
1466
  const localVarQueryParameter = {};
2618
1467
  setBasicAuthToObject(localVarRequestOptions, configuration);
2619
1468
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2620
- if (policy !== void 0) {
2621
- localVarQueryParameter["policy"] = policy;
2622
- }
2623
- if (displayName !== void 0) {
2624
- localVarQueryParameter["displayName"] = displayName;
2625
- }
2626
- if (group !== void 0) {
2627
- localVarQueryParameter["group"] = group;
2628
- }
2629
- if (uploadedBy !== void 0) {
2630
- localVarQueryParameter["uploadedBy"] = uploadedBy;
1469
+ if (page !== void 0) {
1470
+ localVarQueryParameter["page"] = page;
2631
1471
  }
2632
1472
  if (size !== void 0) {
2633
1473
  localVarQueryParameter["size"] = size;
2634
1474
  }
2635
- if (page !== void 0) {
2636
- localVarQueryParameter["page"] = page;
2637
- }
2638
1475
  if (labelSelector) {
2639
1476
  localVarQueryParameter["labelSelector"] = labelSelector;
2640
1477
  }
@@ -2649,9 +1486,9 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2649
1486
  options: localVarRequestOptions
2650
1487
  };
2651
1488
  },
2652
- updatestorageHaloRunV1alpha1Attachment: async (name, attachment, options = {}) => {
2653
- assertParamExists("updatestorageHaloRunV1alpha1Attachment", "name", name);
2654
- const localVarPath = `/apis/storage.halo.run/v1alpha1/attachments/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1489
+ updatecontentHaloRunV1alpha1Snapshot: async (name, snapshot, options = {}) => {
1490
+ assertParamExists("updatecontentHaloRunV1alpha1Snapshot", "name", name);
1491
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2655
1492
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2656
1493
  let baseOptions;
2657
1494
  if (configuration) {
@@ -2666,41 +1503,7 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2666
1503
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2667
1504
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2668
1505
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2669
- localVarRequestOptions.data = serializeDataIfNeeded(attachment, localVarRequestOptions, configuration);
2670
- return {
2671
- url: toPathString(localVarUrlObj),
2672
- options: localVarRequestOptions
2673
- };
2674
- },
2675
- uploadAttachment: async (file, policyName, groupName, options = {}) => {
2676
- assertParamExists("uploadAttachment", "file", file);
2677
- assertParamExists("uploadAttachment", "policyName", policyName);
2678
- const localVarPath = `/apis/api.halo.run/v1alpha1/attachments/upload`;
2679
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2680
- let baseOptions;
2681
- if (configuration) {
2682
- baseOptions = configuration.baseOptions;
2683
- }
2684
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
2685
- const localVarHeaderParameter = {};
2686
- const localVarQueryParameter = {};
2687
- const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
2688
- setBasicAuthToObject(localVarRequestOptions, configuration);
2689
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
2690
- if (file !== void 0) {
2691
- localVarFormParams.append("file", file);
2692
- }
2693
- if (policyName !== void 0) {
2694
- localVarFormParams.append("policyName", policyName);
2695
- }
2696
- if (groupName !== void 0) {
2697
- localVarFormParams.append("groupName", groupName);
2698
- }
2699
- localVarHeaderParameter["Content-Type"] = "multipart/form-data";
2700
- setSearchParams(localVarUrlObj, localVarQueryParameter);
2701
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2702
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2703
- localVarRequestOptions.data = localVarFormParams;
1506
+ localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
2704
1507
  return {
2705
1508
  url: toPathString(localVarUrlObj),
2706
1509
  options: localVarRequestOptions
@@ -2708,92 +1511,73 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2708
1511
  }
2709
1512
  };
2710
1513
  };
2711
- const StorageHaloRunV1alpha1AttachmentApiFp = function(configuration) {
2712
- const localVarAxiosParamCreator = StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
1514
+ const ContentHaloRunV1alpha1SnapshotApiFp = function(configuration) {
1515
+ const localVarAxiosParamCreator = ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator(configuration);
2713
1516
  return {
2714
- async createstorageHaloRunV1alpha1Attachment(attachment, options) {
2715
- const localVarAxiosArgs = await localVarAxiosParamCreator.createstorageHaloRunV1alpha1Attachment(attachment, options);
2716
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2717
- },
2718
- async deletestorageHaloRunV1alpha1Attachment(name, options) {
2719
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletestorageHaloRunV1alpha1Attachment(name, options);
2720
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2721
- },
2722
- async getstorageHaloRunV1alpha1Attachment(name, options) {
2723
- const localVarAxiosArgs = await localVarAxiosParamCreator.getstorageHaloRunV1alpha1Attachment(name, options);
1517
+ async createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1518
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Snapshot(snapshot, options);
2724
1519
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2725
1520
  },
2726
- async liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
2727
- const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options);
1521
+ async deletecontentHaloRunV1alpha1Snapshot(name, options) {
1522
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Snapshot(name, options);
2728
1523
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2729
1524
  },
2730
- async searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
2731
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options);
1525
+ async getcontentHaloRunV1alpha1Snapshot(name, options) {
1526
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Snapshot(name, options);
2732
1527
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2733
1528
  },
2734
- async updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
2735
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatestorageHaloRunV1alpha1Attachment(name, attachment, options);
1529
+ async listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1530
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options);
2736
1531
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2737
1532
  },
2738
- async uploadAttachment(file, policyName, groupName, options) {
2739
- const localVarAxiosArgs = await localVarAxiosParamCreator.uploadAttachment(file, policyName, groupName, options);
1533
+ async updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1534
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options);
2740
1535
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2741
1536
  }
2742
1537
  };
2743
1538
  };
2744
- const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
2745
- const localVarFp = StorageHaloRunV1alpha1AttachmentApiFp(configuration);
1539
+ const ContentHaloRunV1alpha1SnapshotApiFactory = function(configuration, basePath, axios) {
1540
+ const localVarFp = ContentHaloRunV1alpha1SnapshotApiFp(configuration);
2746
1541
  return {
2747
- createstorageHaloRunV1alpha1Attachment(attachment, options) {
2748
- return localVarFp.createstorageHaloRunV1alpha1Attachment(attachment, options).then((request) => request(axios, basePath));
2749
- },
2750
- deletestorageHaloRunV1alpha1Attachment(name, options) {
2751
- return localVarFp.deletestorageHaloRunV1alpha1Attachment(name, options).then((request) => request(axios, basePath));
2752
- },
2753
- getstorageHaloRunV1alpha1Attachment(name, options) {
2754
- return localVarFp.getstorageHaloRunV1alpha1Attachment(name, options).then((request) => request(axios, basePath));
1542
+ createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1543
+ return localVarFp.createcontentHaloRunV1alpha1Snapshot(snapshot, options).then((request) => request(axios, basePath));
2755
1544
  },
2756
- liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
2757
- return localVarFp.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1545
+ deletecontentHaloRunV1alpha1Snapshot(name, options) {
1546
+ return localVarFp.deletecontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
2758
1547
  },
2759
- searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
2760
- return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1548
+ getcontentHaloRunV1alpha1Snapshot(name, options) {
1549
+ return localVarFp.getcontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
2761
1550
  },
2762
- updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
2763
- return localVarFp.updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(axios, basePath));
1551
+ listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1552
+ return localVarFp.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2764
1553
  },
2765
- uploadAttachment(file, policyName, groupName, options) {
2766
- return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
1554
+ updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1555
+ return localVarFp.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options).then((request) => request(axios, basePath));
2767
1556
  }
2768
1557
  };
2769
1558
  };
2770
- class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
2771
- createstorageHaloRunV1alpha1Attachment(attachment, options) {
2772
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).createstorageHaloRunV1alpha1Attachment(attachment, options).then((request) => request(this.axios, this.basePath));
2773
- }
2774
- deletestorageHaloRunV1alpha1Attachment(name, options) {
2775
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).deletestorageHaloRunV1alpha1Attachment(name, options).then((request) => request(this.axios, this.basePath));
2776
- }
2777
- getstorageHaloRunV1alpha1Attachment(name, options) {
2778
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).getstorageHaloRunV1alpha1Attachment(name, options).then((request) => request(this.axios, this.basePath));
1559
+ class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
1560
+ createcontentHaloRunV1alpha1Snapshot(requestParameters = {}, options) {
1561
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).createcontentHaloRunV1alpha1Snapshot(requestParameters.snapshot, options).then((request) => request(this.axios, this.basePath));
2779
1562
  }
2780
- liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
2781
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1563
+ deletecontentHaloRunV1alpha1Snapshot(requestParameters, options) {
1564
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).deletecontentHaloRunV1alpha1Snapshot(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2782
1565
  }
2783
- searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
2784
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1566
+ getcontentHaloRunV1alpha1Snapshot(requestParameters, options) {
1567
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).getcontentHaloRunV1alpha1Snapshot(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2785
1568
  }
2786
- updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
2787
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(this.axios, this.basePath));
1569
+ listcontentHaloRunV1alpha1Snapshot(requestParameters = {}, options) {
1570
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).listcontentHaloRunV1alpha1Snapshot(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2788
1571
  }
2789
- uploadAttachment(file, policyName, groupName, options) {
2790
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(file, policyName, groupName, options).then((request) => request(this.axios, this.basePath));
1572
+ updatecontentHaloRunV1alpha1Snapshot(requestParameters, options) {
1573
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).updatecontentHaloRunV1alpha1Snapshot(requestParameters.name, requestParameters.snapshot, options).then((request) => request(this.axios, this.basePath));
2791
1574
  }
2792
1575
  }
2793
- const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration) {
1576
+
1577
+ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
2794
1578
  return {
2795
- createstorageHaloRunV1alpha1Group: async (group, options = {}) => {
2796
- const localVarPath = `/apis/storage.halo.run/v1alpha1/groups`;
1579
+ createcontentHaloRunV1alpha1Tag: async (tag, options = {}) => {
1580
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
2797
1581
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2798
1582
  let baseOptions;
2799
1583
  if (configuration) {
@@ -2808,15 +1592,15 @@ const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration)
2808
1592
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2809
1593
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2810
1594
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2811
- localVarRequestOptions.data = serializeDataIfNeeded(group, localVarRequestOptions, configuration);
1595
+ localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
2812
1596
  return {
2813
1597
  url: toPathString(localVarUrlObj),
2814
1598
  options: localVarRequestOptions
2815
1599
  };
2816
1600
  },
2817
- deletestorageHaloRunV1alpha1Group: async (name, options = {}) => {
2818
- assertParamExists("deletestorageHaloRunV1alpha1Group", "name", name);
2819
- const localVarPath = `/apis/storage.halo.run/v1alpha1/groups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1601
+ deletecontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1602
+ assertParamExists("deletecontentHaloRunV1alpha1Tag", "name", name);
1603
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2820
1604
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2821
1605
  let baseOptions;
2822
1606
  if (configuration) {
@@ -2835,9 +1619,9 @@ const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration)
2835
1619
  options: localVarRequestOptions
2836
1620
  };
2837
1621
  },
2838
- getstorageHaloRunV1alpha1Group: async (name, options = {}) => {
2839
- assertParamExists("getstorageHaloRunV1alpha1Group", "name", name);
2840
- const localVarPath = `/apis/storage.halo.run/v1alpha1/groups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1622
+ getcontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1623
+ assertParamExists("getcontentHaloRunV1alpha1Tag", "name", name);
1624
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2841
1625
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2842
1626
  let baseOptions;
2843
1627
  if (configuration) {
@@ -2856,8 +1640,8 @@ const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration)
2856
1640
  options: localVarRequestOptions
2857
1641
  };
2858
1642
  },
2859
- liststorageHaloRunV1alpha1Group: async (page, size, labelSelector, fieldSelector, options = {}) => {
2860
- const localVarPath = `/apis/storage.halo.run/v1alpha1/groups`;
1643
+ listcontentHaloRunV1alpha1Tag: async (page, size, labelSelector, fieldSelector, options = {}) => {
1644
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
2861
1645
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2862
1646
  let baseOptions;
2863
1647
  if (configuration) {
@@ -2888,9 +1672,9 @@ const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration)
2888
1672
  options: localVarRequestOptions
2889
1673
  };
2890
1674
  },
2891
- updatestorageHaloRunV1alpha1Group: async (name, group, options = {}) => {
2892
- assertParamExists("updatestorageHaloRunV1alpha1Group", "name", name);
2893
- const localVarPath = `/apis/storage.halo.run/v1alpha1/groups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1675
+ updatecontentHaloRunV1alpha1Tag: async (name, tag, options = {}) => {
1676
+ assertParamExists("updatecontentHaloRunV1alpha1Tag", "name", name);
1677
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2894
1678
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2895
1679
  let baseOptions;
2896
1680
  if (configuration) {
@@ -2905,7 +1689,7 @@ const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration)
2905
1689
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2906
1690
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2907
1691
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2908
- localVarRequestOptions.data = serializeDataIfNeeded(group, localVarRequestOptions, configuration);
1692
+ localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
2909
1693
  return {
2910
1694
  url: toPathString(localVarUrlObj),
2911
1695
  options: localVarRequestOptions
@@ -2913,72 +1697,73 @@ const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration)
2913
1697
  }
2914
1698
  };
2915
1699
  };
2916
- const StorageHaloRunV1alpha1GroupApiFp = function(configuration) {
2917
- const localVarAxiosParamCreator = StorageHaloRunV1alpha1GroupApiAxiosParamCreator(configuration);
1700
+ const ContentHaloRunV1alpha1TagApiFp = function(configuration) {
1701
+ const localVarAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator(configuration);
2918
1702
  return {
2919
- async createstorageHaloRunV1alpha1Group(group, options) {
2920
- const localVarAxiosArgs = await localVarAxiosParamCreator.createstorageHaloRunV1alpha1Group(group, options);
1703
+ async createcontentHaloRunV1alpha1Tag(tag, options) {
1704
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Tag(tag, options);
2921
1705
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2922
1706
  },
2923
- async deletestorageHaloRunV1alpha1Group(name, options) {
2924
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletestorageHaloRunV1alpha1Group(name, options);
1707
+ async deletecontentHaloRunV1alpha1Tag(name, options) {
1708
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Tag(name, options);
2925
1709
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2926
1710
  },
2927
- async getstorageHaloRunV1alpha1Group(name, options) {
2928
- const localVarAxiosArgs = await localVarAxiosParamCreator.getstorageHaloRunV1alpha1Group(name, options);
1711
+ async getcontentHaloRunV1alpha1Tag(name, options) {
1712
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Tag(name, options);
2929
1713
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2930
1714
  },
2931
- async liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options) {
2932
- const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options);
1715
+ async listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1716
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options);
2933
1717
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2934
1718
  },
2935
- async updatestorageHaloRunV1alpha1Group(name, group, options) {
2936
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatestorageHaloRunV1alpha1Group(name, group, options);
1719
+ async updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1720
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Tag(name, tag, options);
2937
1721
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2938
1722
  }
2939
1723
  };
2940
1724
  };
2941
- const StorageHaloRunV1alpha1GroupApiFactory = function(configuration, basePath, axios) {
2942
- const localVarFp = StorageHaloRunV1alpha1GroupApiFp(configuration);
1725
+ const ContentHaloRunV1alpha1TagApiFactory = function(configuration, basePath, axios) {
1726
+ const localVarFp = ContentHaloRunV1alpha1TagApiFp(configuration);
2943
1727
  return {
2944
- createstorageHaloRunV1alpha1Group(group, options) {
2945
- return localVarFp.createstorageHaloRunV1alpha1Group(group, options).then((request) => request(axios, basePath));
1728
+ createcontentHaloRunV1alpha1Tag(tag, options) {
1729
+ return localVarFp.createcontentHaloRunV1alpha1Tag(tag, options).then((request) => request(axios, basePath));
2946
1730
  },
2947
- deletestorageHaloRunV1alpha1Group(name, options) {
2948
- return localVarFp.deletestorageHaloRunV1alpha1Group(name, options).then((request) => request(axios, basePath));
1731
+ deletecontentHaloRunV1alpha1Tag(name, options) {
1732
+ return localVarFp.deletecontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
2949
1733
  },
2950
- getstorageHaloRunV1alpha1Group(name, options) {
2951
- return localVarFp.getstorageHaloRunV1alpha1Group(name, options).then((request) => request(axios, basePath));
1734
+ getcontentHaloRunV1alpha1Tag(name, options) {
1735
+ return localVarFp.getcontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
2952
1736
  },
2953
- liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options) {
2954
- return localVarFp.liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1737
+ listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1738
+ return localVarFp.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2955
1739
  },
2956
- updatestorageHaloRunV1alpha1Group(name, group, options) {
2957
- return localVarFp.updatestorageHaloRunV1alpha1Group(name, group, options).then((request) => request(axios, basePath));
1740
+ updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1741
+ return localVarFp.updatecontentHaloRunV1alpha1Tag(name, tag, options).then((request) => request(axios, basePath));
2958
1742
  }
2959
1743
  };
2960
1744
  };
2961
- class StorageHaloRunV1alpha1GroupApi extends BaseAPI {
2962
- createstorageHaloRunV1alpha1Group(group, options) {
2963
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).createstorageHaloRunV1alpha1Group(group, options).then((request) => request(this.axios, this.basePath));
1745
+ class ContentHaloRunV1alpha1TagApi extends BaseAPI {
1746
+ createcontentHaloRunV1alpha1Tag(requestParameters = {}, options) {
1747
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).createcontentHaloRunV1alpha1Tag(requestParameters.tag, options).then((request) => request(this.axios, this.basePath));
2964
1748
  }
2965
- deletestorageHaloRunV1alpha1Group(name, options) {
2966
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).deletestorageHaloRunV1alpha1Group(name, options).then((request) => request(this.axios, this.basePath));
1749
+ deletecontentHaloRunV1alpha1Tag(requestParameters, options) {
1750
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).deletecontentHaloRunV1alpha1Tag(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2967
1751
  }
2968
- getstorageHaloRunV1alpha1Group(name, options) {
2969
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).getstorageHaloRunV1alpha1Group(name, options).then((request) => request(this.axios, this.basePath));
1752
+ getcontentHaloRunV1alpha1Tag(requestParameters, options) {
1753
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).getcontentHaloRunV1alpha1Tag(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2970
1754
  }
2971
- liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options) {
2972
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1755
+ listcontentHaloRunV1alpha1Tag(requestParameters = {}, options) {
1756
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).listcontentHaloRunV1alpha1Tag(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2973
1757
  }
2974
- updatestorageHaloRunV1alpha1Group(name, group, options) {
2975
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).updatestorageHaloRunV1alpha1Group(name, group, options).then((request) => request(this.axios, this.basePath));
1758
+ updatecontentHaloRunV1alpha1Tag(requestParameters, options) {
1759
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).updatecontentHaloRunV1alpha1Tag(requestParameters.name, requestParameters.tag, options).then((request) => request(this.axios, this.basePath));
2976
1760
  }
2977
1761
  }
2978
- const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration) {
1762
+
1763
+ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
2979
1764
  return {
2980
- createstorageHaloRunV1alpha1Policy: async (policy, options = {}) => {
2981
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policies`;
1765
+ createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
1766
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
2982
1767
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2983
1768
  let baseOptions;
2984
1769
  if (configuration) {
@@ -2993,15 +1778,15 @@ const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration)
2993
1778
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2994
1779
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2995
1780
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2996
- localVarRequestOptions.data = serializeDataIfNeeded(policy, localVarRequestOptions, configuration);
1781
+ localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
2997
1782
  return {
2998
1783
  url: toPathString(localVarUrlObj),
2999
1784
  options: localVarRequestOptions
3000
1785
  };
3001
1786
  },
3002
- deletestorageHaloRunV1alpha1Policy: async (name, options = {}) => {
3003
- assertParamExists("deletestorageHaloRunV1alpha1Policy", "name", name);
3004
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1787
+ deletepluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
1788
+ assertParamExists("deletepluginHaloRunV1alpha1Plugin", "name", name);
1789
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
3005
1790
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3006
1791
  let baseOptions;
3007
1792
  if (configuration) {
@@ -3020,9 +1805,9 @@ const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration)
3020
1805
  options: localVarRequestOptions
3021
1806
  };
3022
1807
  },
3023
- getstorageHaloRunV1alpha1Policy: async (name, options = {}) => {
3024
- assertParamExists("getstorageHaloRunV1alpha1Policy", "name", name);
3025
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1808
+ getpluginHaloRunV1alpha1Plugin: async (name, options = {}) => {
1809
+ assertParamExists("getpluginHaloRunV1alpha1Plugin", "name", name);
1810
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
3026
1811
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3027
1812
  let baseOptions;
3028
1813
  if (configuration) {
@@ -3041,8 +1826,8 @@ const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration)
3041
1826
  options: localVarRequestOptions
3042
1827
  };
3043
1828
  },
3044
- liststorageHaloRunV1alpha1Policy: async (page, size, labelSelector, fieldSelector, options = {}) => {
3045
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policies`;
1829
+ listpluginHaloRunV1alpha1Plugin: async (page, size, labelSelector, fieldSelector, options = {}) => {
1830
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
3046
1831
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3047
1832
  let baseOptions;
3048
1833
  if (configuration) {
@@ -3073,9 +1858,9 @@ const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration)
3073
1858
  options: localVarRequestOptions
3074
1859
  };
3075
1860
  },
3076
- updatestorageHaloRunV1alpha1Policy: async (name, policy, options = {}) => {
3077
- assertParamExists("updatestorageHaloRunV1alpha1Policy", "name", name);
3078
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1861
+ updatepluginHaloRunV1alpha1Plugin: async (name, plugin, options = {}) => {
1862
+ assertParamExists("updatepluginHaloRunV1alpha1Plugin", "name", name);
1863
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
3079
1864
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3080
1865
  let baseOptions;
3081
1866
  if (configuration) {
@@ -3090,7 +1875,7 @@ const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration)
3090
1875
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3091
1876
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3092
1877
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
3093
- localVarRequestOptions.data = serializeDataIfNeeded(policy, localVarRequestOptions, configuration);
1878
+ localVarRequestOptions.data = serializeDataIfNeeded(plugin, localVarRequestOptions, configuration);
3094
1879
  return {
3095
1880
  url: toPathString(localVarUrlObj),
3096
1881
  options: localVarRequestOptions
@@ -3098,72 +1883,73 @@ const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration)
3098
1883
  }
3099
1884
  };
3100
1885
  };
3101
- const StorageHaloRunV1alpha1PolicyApiFp = function(configuration) {
3102
- const localVarAxiosParamCreator = StorageHaloRunV1alpha1PolicyApiAxiosParamCreator(configuration);
1886
+ const PluginHaloRunV1alpha1PluginApiFp = function(configuration) {
1887
+ const localVarAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
3103
1888
  return {
3104
- async createstorageHaloRunV1alpha1Policy(policy, options) {
3105
- const localVarAxiosArgs = await localVarAxiosParamCreator.createstorageHaloRunV1alpha1Policy(policy, options);
1889
+ async createpluginHaloRunV1alpha1Plugin(plugin, options) {
1890
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1Plugin(plugin, options);
3106
1891
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3107
1892
  },
3108
- async deletestorageHaloRunV1alpha1Policy(name, options) {
3109
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletestorageHaloRunV1alpha1Policy(name, options);
1893
+ async deletepluginHaloRunV1alpha1Plugin(name, options) {
1894
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1Plugin(name, options);
3110
1895
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3111
1896
  },
3112
- async getstorageHaloRunV1alpha1Policy(name, options) {
3113
- const localVarAxiosArgs = await localVarAxiosParamCreator.getstorageHaloRunV1alpha1Policy(name, options);
1897
+ async getpluginHaloRunV1alpha1Plugin(name, options) {
1898
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1Plugin(name, options);
3114
1899
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3115
1900
  },
3116
- async liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options) {
3117
- const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options);
1901
+ async listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
1902
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options);
3118
1903
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3119
1904
  },
3120
- async updatestorageHaloRunV1alpha1Policy(name, policy, options) {
3121
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatestorageHaloRunV1alpha1Policy(name, policy, options);
1905
+ async updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
1906
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1Plugin(name, plugin, options);
3122
1907
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3123
1908
  }
3124
1909
  };
3125
1910
  };
3126
- const StorageHaloRunV1alpha1PolicyApiFactory = function(configuration, basePath, axios) {
3127
- const localVarFp = StorageHaloRunV1alpha1PolicyApiFp(configuration);
1911
+ const PluginHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
1912
+ const localVarFp = PluginHaloRunV1alpha1PluginApiFp(configuration);
3128
1913
  return {
3129
- createstorageHaloRunV1alpha1Policy(policy, options) {
3130
- return localVarFp.createstorageHaloRunV1alpha1Policy(policy, options).then((request) => request(axios, basePath));
1914
+ createpluginHaloRunV1alpha1Plugin(plugin, options) {
1915
+ return localVarFp.createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(axios, basePath));
3131
1916
  },
3132
- deletestorageHaloRunV1alpha1Policy(name, options) {
3133
- return localVarFp.deletestorageHaloRunV1alpha1Policy(name, options).then((request) => request(axios, basePath));
1917
+ deletepluginHaloRunV1alpha1Plugin(name, options) {
1918
+ return localVarFp.deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
3134
1919
  },
3135
- getstorageHaloRunV1alpha1Policy(name, options) {
3136
- return localVarFp.getstorageHaloRunV1alpha1Policy(name, options).then((request) => request(axios, basePath));
1920
+ getpluginHaloRunV1alpha1Plugin(name, options) {
1921
+ return localVarFp.getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
3137
1922
  },
3138
- liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options) {
3139
- return localVarFp.liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1923
+ listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
1924
+ return localVarFp.listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
3140
1925
  },
3141
- updatestorageHaloRunV1alpha1Policy(name, policy, options) {
3142
- return localVarFp.updatestorageHaloRunV1alpha1Policy(name, policy, options).then((request) => request(axios, basePath));
1926
+ updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
1927
+ return localVarFp.updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(axios, basePath));
3143
1928
  }
3144
1929
  };
3145
1930
  };
3146
- class StorageHaloRunV1alpha1PolicyApi extends BaseAPI {
3147
- createstorageHaloRunV1alpha1Policy(policy, options) {
3148
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).createstorageHaloRunV1alpha1Policy(policy, options).then((request) => request(this.axios, this.basePath));
1931
+ class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
1932
+ createpluginHaloRunV1alpha1Plugin(requestParameters = {}, options) {
1933
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).createpluginHaloRunV1alpha1Plugin(requestParameters.plugin, options).then((request) => request(this.axios, this.basePath));
3149
1934
  }
3150
- deletestorageHaloRunV1alpha1Policy(name, options) {
3151
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).deletestorageHaloRunV1alpha1Policy(name, options).then((request) => request(this.axios, this.basePath));
1935
+ deletepluginHaloRunV1alpha1Plugin(requestParameters, options) {
1936
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).deletepluginHaloRunV1alpha1Plugin(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3152
1937
  }
3153
- getstorageHaloRunV1alpha1Policy(name, options) {
3154
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).getstorageHaloRunV1alpha1Policy(name, options).then((request) => request(this.axios, this.basePath));
1938
+ getpluginHaloRunV1alpha1Plugin(requestParameters, options) {
1939
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3155
1940
  }
3156
- liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options) {
3157
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1941
+ listpluginHaloRunV1alpha1Plugin(requestParameters = {}, options) {
1942
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3158
1943
  }
3159
- updatestorageHaloRunV1alpha1Policy(name, policy, options) {
3160
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).updatestorageHaloRunV1alpha1Policy(name, policy, options).then((request) => request(this.axios, this.basePath));
1944
+ updatepluginHaloRunV1alpha1Plugin(requestParameters, options) {
1945
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(requestParameters.name, requestParameters.plugin, options).then((request) => request(this.axios, this.basePath));
3161
1946
  }
3162
1947
  }
3163
- const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(configuration) {
1948
+
1949
+ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configuration) {
3164
1950
  return {
3165
- createstorageHaloRunV1alpha1PolicyTemplate: async (policyTemplate, options = {}) => {
3166
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policytemplates`;
1951
+ createpluginHaloRunV1alpha1ReverseProxy: async (reverseProxy, options = {}) => {
1952
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
3167
1953
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3168
1954
  let baseOptions;
3169
1955
  if (configuration) {
@@ -3178,15 +1964,15 @@ const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(config
3178
1964
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3179
1965
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3180
1966
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
3181
- localVarRequestOptions.data = serializeDataIfNeeded(policyTemplate, localVarRequestOptions, configuration);
1967
+ localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
3182
1968
  return {
3183
1969
  url: toPathString(localVarUrlObj),
3184
1970
  options: localVarRequestOptions
3185
1971
  };
3186
1972
  },
3187
- deletestorageHaloRunV1alpha1PolicyTemplate: async (name, options = {}) => {
3188
- assertParamExists("deletestorageHaloRunV1alpha1PolicyTemplate", "name", name);
3189
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policytemplates/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1973
+ deletepluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
1974
+ assertParamExists("deletepluginHaloRunV1alpha1ReverseProxy", "name", name);
1975
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
3190
1976
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3191
1977
  let baseOptions;
3192
1978
  if (configuration) {
@@ -3205,9 +1991,9 @@ const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(config
3205
1991
  options: localVarRequestOptions
3206
1992
  };
3207
1993
  },
3208
- getstorageHaloRunV1alpha1PolicyTemplate: async (name, options = {}) => {
3209
- assertParamExists("getstorageHaloRunV1alpha1PolicyTemplate", "name", name);
3210
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policytemplates/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1994
+ getpluginHaloRunV1alpha1ReverseProxy: async (name, options = {}) => {
1995
+ assertParamExists("getpluginHaloRunV1alpha1ReverseProxy", "name", name);
1996
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
3211
1997
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3212
1998
  let baseOptions;
3213
1999
  if (configuration) {
@@ -3226,8 +2012,8 @@ const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(config
3226
2012
  options: localVarRequestOptions
3227
2013
  };
3228
2014
  },
3229
- liststorageHaloRunV1alpha1PolicyTemplate: async (page, size, labelSelector, fieldSelector, options = {}) => {
3230
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policytemplates`;
2015
+ listpluginHaloRunV1alpha1ReverseProxy: async (page, size, labelSelector, fieldSelector, options = {}) => {
2016
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
3231
2017
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3232
2018
  let baseOptions;
3233
2019
  if (configuration) {
@@ -3258,9 +2044,9 @@ const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(config
3258
2044
  options: localVarRequestOptions
3259
2045
  };
3260
2046
  },
3261
- updatestorageHaloRunV1alpha1PolicyTemplate: async (name, policyTemplate, options = {}) => {
3262
- assertParamExists("updatestorageHaloRunV1alpha1PolicyTemplate", "name", name);
3263
- const localVarPath = `/apis/storage.halo.run/v1alpha1/policytemplates/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2047
+ updatepluginHaloRunV1alpha1ReverseProxy: async (name, reverseProxy, options = {}) => {
2048
+ assertParamExists("updatepluginHaloRunV1alpha1ReverseProxy", "name", name);
2049
+ const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
3264
2050
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3265
2051
  let baseOptions;
3266
2052
  if (configuration) {
@@ -3275,7 +2061,7 @@ const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(config
3275
2061
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3276
2062
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3277
2063
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
3278
- localVarRequestOptions.data = serializeDataIfNeeded(policyTemplate, localVarRequestOptions, configuration);
2064
+ localVarRequestOptions.data = serializeDataIfNeeded(reverseProxy, localVarRequestOptions, configuration);
3279
2065
  return {
3280
2066
  url: toPathString(localVarUrlObj),
3281
2067
  options: localVarRequestOptions
@@ -3283,68 +2069,69 @@ const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(config
3283
2069
  }
3284
2070
  };
3285
2071
  };
3286
- const StorageHaloRunV1alpha1PolicyTemplateApiFp = function(configuration) {
3287
- const localVarAxiosParamCreator = StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator(configuration);
2072
+ const PluginHaloRunV1alpha1ReverseProxyApiFp = function(configuration) {
2073
+ const localVarAxiosParamCreator = PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator(configuration);
3288
2074
  return {
3289
- async createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options) {
3290
- const localVarAxiosArgs = await localVarAxiosParamCreator.createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options);
2075
+ async createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
2076
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options);
3291
2077
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3292
2078
  },
3293
- async deletestorageHaloRunV1alpha1PolicyTemplate(name, options) {
3294
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletestorageHaloRunV1alpha1PolicyTemplate(name, options);
2079
+ async deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
2080
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletepluginHaloRunV1alpha1ReverseProxy(name, options);
3295
2081
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3296
2082
  },
3297
- async getstorageHaloRunV1alpha1PolicyTemplate(name, options) {
3298
- const localVarAxiosArgs = await localVarAxiosParamCreator.getstorageHaloRunV1alpha1PolicyTemplate(name, options);
2083
+ async getpluginHaloRunV1alpha1ReverseProxy(name, options) {
2084
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1ReverseProxy(name, options);
3299
2085
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3300
2086
  },
3301
- async liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options) {
3302
- const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options);
2087
+ async listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
2088
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options);
3303
2089
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3304
2090
  },
3305
- async updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options) {
3306
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options);
2091
+ async updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
2092
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options);
3307
2093
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
3308
2094
  }
3309
2095
  };
3310
2096
  };
3311
- const StorageHaloRunV1alpha1PolicyTemplateApiFactory = function(configuration, basePath, axios) {
3312
- const localVarFp = StorageHaloRunV1alpha1PolicyTemplateApiFp(configuration);
2097
+ const PluginHaloRunV1alpha1ReverseProxyApiFactory = function(configuration, basePath, axios) {
2098
+ const localVarFp = PluginHaloRunV1alpha1ReverseProxyApiFp(configuration);
3313
2099
  return {
3314
- createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options) {
3315
- return localVarFp.createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options).then((request) => request(axios, basePath));
2100
+ createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
2101
+ return localVarFp.createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(axios, basePath));
3316
2102
  },
3317
- deletestorageHaloRunV1alpha1PolicyTemplate(name, options) {
3318
- return localVarFp.deletestorageHaloRunV1alpha1PolicyTemplate(name, options).then((request) => request(axios, basePath));
2103
+ deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
2104
+ return localVarFp.deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
3319
2105
  },
3320
- getstorageHaloRunV1alpha1PolicyTemplate(name, options) {
3321
- return localVarFp.getstorageHaloRunV1alpha1PolicyTemplate(name, options).then((request) => request(axios, basePath));
2106
+ getpluginHaloRunV1alpha1ReverseProxy(name, options) {
2107
+ return localVarFp.getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
3322
2108
  },
3323
- liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options) {
3324
- return localVarFp.liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2109
+ listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
2110
+ return localVarFp.listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
3325
2111
  },
3326
- updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options) {
3327
- return localVarFp.updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options).then((request) => request(axios, basePath));
2112
+ updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
2113
+ return localVarFp.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(axios, basePath));
3328
2114
  }
3329
2115
  };
3330
2116
  };
3331
- class StorageHaloRunV1alpha1PolicyTemplateApi extends BaseAPI {
3332
- createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options) {
3333
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options).then((request) => request(this.axios, this.basePath));
2117
+ class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
2118
+ createpluginHaloRunV1alpha1ReverseProxy(requestParameters = {}, options) {
2119
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).createpluginHaloRunV1alpha1ReverseProxy(requestParameters.reverseProxy, options).then((request) => request(this.axios, this.basePath));
3334
2120
  }
3335
- deletestorageHaloRunV1alpha1PolicyTemplate(name, options) {
3336
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).deletestorageHaloRunV1alpha1PolicyTemplate(name, options).then((request) => request(this.axios, this.basePath));
2121
+ deletepluginHaloRunV1alpha1ReverseProxy(requestParameters, options) {
2122
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).deletepluginHaloRunV1alpha1ReverseProxy(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3337
2123
  }
3338
- getstorageHaloRunV1alpha1PolicyTemplate(name, options) {
3339
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).getstorageHaloRunV1alpha1PolicyTemplate(name, options).then((request) => request(this.axios, this.basePath));
2124
+ getpluginHaloRunV1alpha1ReverseProxy(requestParameters, options) {
2125
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3340
2126
  }
3341
- liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options) {
3342
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2127
+ listpluginHaloRunV1alpha1ReverseProxy(requestParameters = {}, options) {
2128
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3343
2129
  }
3344
- updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options) {
3345
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options).then((request) => request(this.axios, this.basePath));
2130
+ updatepluginHaloRunV1alpha1ReverseProxy(requestParameters, options) {
2131
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(requestParameters.name, requestParameters.reverseProxy, options).then((request) => request(this.axios, this.basePath));
3346
2132
  }
3347
2133
  }
2134
+
3348
2135
  const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
3349
2136
  return {
3350
2137
  createthemeHaloRunV1alpha1Theme: async (theme, options = {}) => {
@@ -3514,22 +2301,23 @@ const ThemeHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, ax
3514
2301
  };
3515
2302
  };
3516
2303
  class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
3517
- createthemeHaloRunV1alpha1Theme(theme, options) {
3518
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).createthemeHaloRunV1alpha1Theme(theme, options).then((request) => request(this.axios, this.basePath));
2304
+ createthemeHaloRunV1alpha1Theme(requestParameters = {}, options) {
2305
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).createthemeHaloRunV1alpha1Theme(requestParameters.theme, options).then((request) => request(this.axios, this.basePath));
3519
2306
  }
3520
- deletethemeHaloRunV1alpha1Theme(name, options) {
3521
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).deletethemeHaloRunV1alpha1Theme(name, options).then((request) => request(this.axios, this.basePath));
2307
+ deletethemeHaloRunV1alpha1Theme(requestParameters, options) {
2308
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).deletethemeHaloRunV1alpha1Theme(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3522
2309
  }
3523
- getthemeHaloRunV1alpha1Theme(name, options) {
3524
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).getthemeHaloRunV1alpha1Theme(name, options).then((request) => request(this.axios, this.basePath));
2310
+ getthemeHaloRunV1alpha1Theme(requestParameters, options) {
2311
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).getthemeHaloRunV1alpha1Theme(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3525
2312
  }
3526
- listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options) {
3527
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2313
+ listthemeHaloRunV1alpha1Theme(requestParameters = {}, options) {
2314
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).listthemeHaloRunV1alpha1Theme(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3528
2315
  }
3529
- updatethemeHaloRunV1alpha1Theme(name, theme, options) {
3530
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).updatethemeHaloRunV1alpha1Theme(name, theme, options).then((request) => request(this.axios, this.basePath));
2316
+ updatethemeHaloRunV1alpha1Theme(requestParameters, options) {
2317
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).updatethemeHaloRunV1alpha1Theme(requestParameters.name, requestParameters.theme, options).then((request) => request(this.axios, this.basePath));
3531
2318
  }
3532
2319
  }
2320
+
3533
2321
  const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
3534
2322
  return {
3535
2323
  createv1alpha1ConfigMap: async (configMap, options = {}) => {
@@ -3699,22 +2487,23 @@ const V1alpha1ConfigMapApiFactory = function(configuration, basePath, axios) {
3699
2487
  };
3700
2488
  };
3701
2489
  class V1alpha1ConfigMapApi extends BaseAPI {
3702
- createv1alpha1ConfigMap(configMap, options) {
3703
- return V1alpha1ConfigMapApiFp(this.configuration).createv1alpha1ConfigMap(configMap, options).then((request) => request(this.axios, this.basePath));
2490
+ createv1alpha1ConfigMap(requestParameters = {}, options) {
2491
+ return V1alpha1ConfigMapApiFp(this.configuration).createv1alpha1ConfigMap(requestParameters.configMap, options).then((request) => request(this.axios, this.basePath));
3704
2492
  }
3705
- deletev1alpha1ConfigMap(name, options) {
3706
- return V1alpha1ConfigMapApiFp(this.configuration).deletev1alpha1ConfigMap(name, options).then((request) => request(this.axios, this.basePath));
2493
+ deletev1alpha1ConfigMap(requestParameters, options) {
2494
+ return V1alpha1ConfigMapApiFp(this.configuration).deletev1alpha1ConfigMap(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3707
2495
  }
3708
- getv1alpha1ConfigMap(name, options) {
3709
- return V1alpha1ConfigMapApiFp(this.configuration).getv1alpha1ConfigMap(name, options).then((request) => request(this.axios, this.basePath));
2496
+ getv1alpha1ConfigMap(requestParameters, options) {
2497
+ return V1alpha1ConfigMapApiFp(this.configuration).getv1alpha1ConfigMap(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3710
2498
  }
3711
- listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
3712
- return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2499
+ listv1alpha1ConfigMap(requestParameters = {}, options) {
2500
+ return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3713
2501
  }
3714
- updatev1alpha1ConfigMap(name, configMap, options) {
3715
- return V1alpha1ConfigMapApiFp(this.configuration).updatev1alpha1ConfigMap(name, configMap, options).then((request) => request(this.axios, this.basePath));
2502
+ updatev1alpha1ConfigMap(requestParameters, options) {
2503
+ return V1alpha1ConfigMapApiFp(this.configuration).updatev1alpha1ConfigMap(requestParameters.name, requestParameters.configMap, options).then((request) => request(this.axios, this.basePath));
3716
2504
  }
3717
2505
  }
2506
+
3718
2507
  const V1alpha1MenuApiAxiosParamCreator = function(configuration) {
3719
2508
  return {
3720
2509
  createv1alpha1Menu: async (menu, options = {}) => {
@@ -3884,22 +2673,23 @@ const V1alpha1MenuApiFactory = function(configuration, basePath, axios) {
3884
2673
  };
3885
2674
  };
3886
2675
  class V1alpha1MenuApi extends BaseAPI {
3887
- createv1alpha1Menu(menu, options) {
3888
- return V1alpha1MenuApiFp(this.configuration).createv1alpha1Menu(menu, options).then((request) => request(this.axios, this.basePath));
2676
+ createv1alpha1Menu(requestParameters = {}, options) {
2677
+ return V1alpha1MenuApiFp(this.configuration).createv1alpha1Menu(requestParameters.menu, options).then((request) => request(this.axios, this.basePath));
3889
2678
  }
3890
- deletev1alpha1Menu(name, options) {
3891
- return V1alpha1MenuApiFp(this.configuration).deletev1alpha1Menu(name, options).then((request) => request(this.axios, this.basePath));
2679
+ deletev1alpha1Menu(requestParameters, options) {
2680
+ return V1alpha1MenuApiFp(this.configuration).deletev1alpha1Menu(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3892
2681
  }
3893
- getv1alpha1Menu(name, options) {
3894
- return V1alpha1MenuApiFp(this.configuration).getv1alpha1Menu(name, options).then((request) => request(this.axios, this.basePath));
2682
+ getv1alpha1Menu(requestParameters, options) {
2683
+ return V1alpha1MenuApiFp(this.configuration).getv1alpha1Menu(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3895
2684
  }
3896
- listv1alpha1Menu(page, size, labelSelector, fieldSelector, options) {
3897
- return V1alpha1MenuApiFp(this.configuration).listv1alpha1Menu(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2685
+ listv1alpha1Menu(requestParameters = {}, options) {
2686
+ return V1alpha1MenuApiFp(this.configuration).listv1alpha1Menu(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3898
2687
  }
3899
- updatev1alpha1Menu(name, menu, options) {
3900
- return V1alpha1MenuApiFp(this.configuration).updatev1alpha1Menu(name, menu, options).then((request) => request(this.axios, this.basePath));
2688
+ updatev1alpha1Menu(requestParameters, options) {
2689
+ return V1alpha1MenuApiFp(this.configuration).updatev1alpha1Menu(requestParameters.name, requestParameters.menu, options).then((request) => request(this.axios, this.basePath));
3901
2690
  }
3902
2691
  }
2692
+
3903
2693
  const V1alpha1MenuItemApiAxiosParamCreator = function(configuration) {
3904
2694
  return {
3905
2695
  createv1alpha1MenuItem: async (menuItem, options = {}) => {
@@ -4069,22 +2859,23 @@ const V1alpha1MenuItemApiFactory = function(configuration, basePath, axios) {
4069
2859
  };
4070
2860
  };
4071
2861
  class V1alpha1MenuItemApi extends BaseAPI {
4072
- createv1alpha1MenuItem(menuItem, options) {
4073
- return V1alpha1MenuItemApiFp(this.configuration).createv1alpha1MenuItem(menuItem, options).then((request) => request(this.axios, this.basePath));
2862
+ createv1alpha1MenuItem(requestParameters = {}, options) {
2863
+ return V1alpha1MenuItemApiFp(this.configuration).createv1alpha1MenuItem(requestParameters.menuItem, options).then((request) => request(this.axios, this.basePath));
4074
2864
  }
4075
- deletev1alpha1MenuItem(name, options) {
4076
- return V1alpha1MenuItemApiFp(this.configuration).deletev1alpha1MenuItem(name, options).then((request) => request(this.axios, this.basePath));
2865
+ deletev1alpha1MenuItem(requestParameters, options) {
2866
+ return V1alpha1MenuItemApiFp(this.configuration).deletev1alpha1MenuItem(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4077
2867
  }
4078
- getv1alpha1MenuItem(name, options) {
4079
- return V1alpha1MenuItemApiFp(this.configuration).getv1alpha1MenuItem(name, options).then((request) => request(this.axios, this.basePath));
2868
+ getv1alpha1MenuItem(requestParameters, options) {
2869
+ return V1alpha1MenuItemApiFp(this.configuration).getv1alpha1MenuItem(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4080
2870
  }
4081
- listv1alpha1MenuItem(page, size, labelSelector, fieldSelector, options) {
4082
- return V1alpha1MenuItemApiFp(this.configuration).listv1alpha1MenuItem(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2871
+ listv1alpha1MenuItem(requestParameters = {}, options) {
2872
+ return V1alpha1MenuItemApiFp(this.configuration).listv1alpha1MenuItem(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4083
2873
  }
4084
- updatev1alpha1MenuItem(name, menuItem, options) {
4085
- return V1alpha1MenuItemApiFp(this.configuration).updatev1alpha1MenuItem(name, menuItem, options).then((request) => request(this.axios, this.basePath));
2874
+ updatev1alpha1MenuItem(requestParameters, options) {
2875
+ return V1alpha1MenuItemApiFp(this.configuration).updatev1alpha1MenuItem(requestParameters.name, requestParameters.menuItem, options).then((request) => request(this.axios, this.basePath));
4086
2876
  }
4087
2877
  }
2878
+
4088
2879
  const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration) {
4089
2880
  return {
4090
2881
  createv1alpha1PersonalAccessToken: async (personalAccessToken, options = {}) => {
@@ -4254,22 +3045,23 @@ const V1alpha1PersonalAccessTokenApiFactory = function(configuration, basePath,
4254
3045
  };
4255
3046
  };
4256
3047
  class V1alpha1PersonalAccessTokenApi extends BaseAPI {
4257
- createv1alpha1PersonalAccessToken(personalAccessToken, options) {
4258
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).createv1alpha1PersonalAccessToken(personalAccessToken, options).then((request) => request(this.axios, this.basePath));
3048
+ createv1alpha1PersonalAccessToken(requestParameters = {}, options) {
3049
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).createv1alpha1PersonalAccessToken(requestParameters.personalAccessToken, options).then((request) => request(this.axios, this.basePath));
4259
3050
  }
4260
- deletev1alpha1PersonalAccessToken(name, options) {
4261
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).deletev1alpha1PersonalAccessToken(name, options).then((request) => request(this.axios, this.basePath));
3051
+ deletev1alpha1PersonalAccessToken(requestParameters, options) {
3052
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).deletev1alpha1PersonalAccessToken(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4262
3053
  }
4263
- getv1alpha1PersonalAccessToken(name, options) {
4264
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).getv1alpha1PersonalAccessToken(name, options).then((request) => request(this.axios, this.basePath));
3054
+ getv1alpha1PersonalAccessToken(requestParameters, options) {
3055
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).getv1alpha1PersonalAccessToken(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4265
3056
  }
4266
- listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
4267
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3057
+ listv1alpha1PersonalAccessToken(requestParameters = {}, options) {
3058
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4268
3059
  }
4269
- updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
4270
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).updatev1alpha1PersonalAccessToken(name, personalAccessToken, options).then((request) => request(this.axios, this.basePath));
3060
+ updatev1alpha1PersonalAccessToken(requestParameters, options) {
3061
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).updatev1alpha1PersonalAccessToken(requestParameters.name, requestParameters.personalAccessToken, options).then((request) => request(this.axios, this.basePath));
4271
3062
  }
4272
3063
  }
3064
+
4273
3065
  const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
4274
3066
  return {
4275
3067
  createv1alpha1Role: async (role, options = {}) => {
@@ -4439,22 +3231,23 @@ const V1alpha1RoleApiFactory = function(configuration, basePath, axios) {
4439
3231
  };
4440
3232
  };
4441
3233
  class V1alpha1RoleApi extends BaseAPI {
4442
- createv1alpha1Role(role, options) {
4443
- return V1alpha1RoleApiFp(this.configuration).createv1alpha1Role(role, options).then((request) => request(this.axios, this.basePath));
3234
+ createv1alpha1Role(requestParameters = {}, options) {
3235
+ return V1alpha1RoleApiFp(this.configuration).createv1alpha1Role(requestParameters.role, options).then((request) => request(this.axios, this.basePath));
4444
3236
  }
4445
- deletev1alpha1Role(name, options) {
4446
- return V1alpha1RoleApiFp(this.configuration).deletev1alpha1Role(name, options).then((request) => request(this.axios, this.basePath));
3237
+ deletev1alpha1Role(requestParameters, options) {
3238
+ return V1alpha1RoleApiFp(this.configuration).deletev1alpha1Role(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4447
3239
  }
4448
- getv1alpha1Role(name, options) {
4449
- return V1alpha1RoleApiFp(this.configuration).getv1alpha1Role(name, options).then((request) => request(this.axios, this.basePath));
3240
+ getv1alpha1Role(requestParameters, options) {
3241
+ return V1alpha1RoleApiFp(this.configuration).getv1alpha1Role(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4450
3242
  }
4451
- listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
4452
- return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3243
+ listv1alpha1Role(requestParameters = {}, options) {
3244
+ return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4453
3245
  }
4454
- updatev1alpha1Role(name, role, options) {
4455
- return V1alpha1RoleApiFp(this.configuration).updatev1alpha1Role(name, role, options).then((request) => request(this.axios, this.basePath));
3246
+ updatev1alpha1Role(requestParameters, options) {
3247
+ return V1alpha1RoleApiFp(this.configuration).updatev1alpha1Role(requestParameters.name, requestParameters.role, options).then((request) => request(this.axios, this.basePath));
4456
3248
  }
4457
3249
  }
3250
+
4458
3251
  const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
4459
3252
  return {
4460
3253
  createv1alpha1RoleBinding: async (roleBinding, options = {}) => {
@@ -4624,22 +3417,23 @@ const V1alpha1RoleBindingApiFactory = function(configuration, basePath, axios) {
4624
3417
  };
4625
3418
  };
4626
3419
  class V1alpha1RoleBindingApi extends BaseAPI {
4627
- createv1alpha1RoleBinding(roleBinding, options) {
4628
- return V1alpha1RoleBindingApiFp(this.configuration).createv1alpha1RoleBinding(roleBinding, options).then((request) => request(this.axios, this.basePath));
3420
+ createv1alpha1RoleBinding(requestParameters = {}, options) {
3421
+ return V1alpha1RoleBindingApiFp(this.configuration).createv1alpha1RoleBinding(requestParameters.roleBinding, options).then((request) => request(this.axios, this.basePath));
4629
3422
  }
4630
- deletev1alpha1RoleBinding(name, options) {
4631
- return V1alpha1RoleBindingApiFp(this.configuration).deletev1alpha1RoleBinding(name, options).then((request) => request(this.axios, this.basePath));
3423
+ deletev1alpha1RoleBinding(requestParameters, options) {
3424
+ return V1alpha1RoleBindingApiFp(this.configuration).deletev1alpha1RoleBinding(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4632
3425
  }
4633
- getv1alpha1RoleBinding(name, options) {
4634
- return V1alpha1RoleBindingApiFp(this.configuration).getv1alpha1RoleBinding(name, options).then((request) => request(this.axios, this.basePath));
3426
+ getv1alpha1RoleBinding(requestParameters, options) {
3427
+ return V1alpha1RoleBindingApiFp(this.configuration).getv1alpha1RoleBinding(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4635
3428
  }
4636
- listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
4637
- return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3429
+ listv1alpha1RoleBinding(requestParameters = {}, options) {
3430
+ return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4638
3431
  }
4639
- updatev1alpha1RoleBinding(name, roleBinding, options) {
4640
- return V1alpha1RoleBindingApiFp(this.configuration).updatev1alpha1RoleBinding(name, roleBinding, options).then((request) => request(this.axios, this.basePath));
3432
+ updatev1alpha1RoleBinding(requestParameters, options) {
3433
+ return V1alpha1RoleBindingApiFp(this.configuration).updatev1alpha1RoleBinding(requestParameters.name, requestParameters.roleBinding, options).then((request) => request(this.axios, this.basePath));
4641
3434
  }
4642
3435
  }
3436
+
4643
3437
  const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
4644
3438
  return {
4645
3439
  createv1alpha1Setting: async (setting, options = {}) => {
@@ -4809,22 +3603,23 @@ const V1alpha1SettingApiFactory = function(configuration, basePath, axios) {
4809
3603
  };
4810
3604
  };
4811
3605
  class V1alpha1SettingApi extends BaseAPI {
4812
- createv1alpha1Setting(setting, options) {
4813
- return V1alpha1SettingApiFp(this.configuration).createv1alpha1Setting(setting, options).then((request) => request(this.axios, this.basePath));
3606
+ createv1alpha1Setting(requestParameters = {}, options) {
3607
+ return V1alpha1SettingApiFp(this.configuration).createv1alpha1Setting(requestParameters.setting, options).then((request) => request(this.axios, this.basePath));
4814
3608
  }
4815
- deletev1alpha1Setting(name, options) {
4816
- return V1alpha1SettingApiFp(this.configuration).deletev1alpha1Setting(name, options).then((request) => request(this.axios, this.basePath));
3609
+ deletev1alpha1Setting(requestParameters, options) {
3610
+ return V1alpha1SettingApiFp(this.configuration).deletev1alpha1Setting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4817
3611
  }
4818
- getv1alpha1Setting(name, options) {
4819
- return V1alpha1SettingApiFp(this.configuration).getv1alpha1Setting(name, options).then((request) => request(this.axios, this.basePath));
3612
+ getv1alpha1Setting(requestParameters, options) {
3613
+ return V1alpha1SettingApiFp(this.configuration).getv1alpha1Setting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4820
3614
  }
4821
- listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
4822
- return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3615
+ listv1alpha1Setting(requestParameters = {}, options) {
3616
+ return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4823
3617
  }
4824
- updatev1alpha1Setting(name, setting, options) {
4825
- return V1alpha1SettingApiFp(this.configuration).updatev1alpha1Setting(name, setting, options).then((request) => request(this.axios, this.basePath));
3618
+ updatev1alpha1Setting(requestParameters, options) {
3619
+ return V1alpha1SettingApiFp(this.configuration).updatev1alpha1Setting(requestParameters.name, requestParameters.setting, options).then((request) => request(this.axios, this.basePath));
4826
3620
  }
4827
3621
  }
3622
+
4828
3623
  const V1alpha1UserApiAxiosParamCreator = function(configuration) {
4829
3624
  return {
4830
3625
  createv1alpha1User: async (user, options = {}) => {
@@ -4994,20 +3789,20 @@ const V1alpha1UserApiFactory = function(configuration, basePath, axios) {
4994
3789
  };
4995
3790
  };
4996
3791
  class V1alpha1UserApi extends BaseAPI {
4997
- createv1alpha1User(user, options) {
4998
- return V1alpha1UserApiFp(this.configuration).createv1alpha1User(user, options).then((request) => request(this.axios, this.basePath));
3792
+ createv1alpha1User(requestParameters = {}, options) {
3793
+ return V1alpha1UserApiFp(this.configuration).createv1alpha1User(requestParameters.user, options).then((request) => request(this.axios, this.basePath));
4999
3794
  }
5000
- deletev1alpha1User(name, options) {
5001
- return V1alpha1UserApiFp(this.configuration).deletev1alpha1User(name, options).then((request) => request(this.axios, this.basePath));
3795
+ deletev1alpha1User(requestParameters, options) {
3796
+ return V1alpha1UserApiFp(this.configuration).deletev1alpha1User(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
5002
3797
  }
5003
- getv1alpha1User(name, options) {
5004
- return V1alpha1UserApiFp(this.configuration).getv1alpha1User(name, options).then((request) => request(this.axios, this.basePath));
3798
+ getv1alpha1User(requestParameters, options) {
3799
+ return V1alpha1UserApiFp(this.configuration).getv1alpha1User(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
5005
3800
  }
5006
- listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
5007
- return V1alpha1UserApiFp(this.configuration).listv1alpha1User(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3801
+ listv1alpha1User(requestParameters = {}, options) {
3802
+ return V1alpha1UserApiFp(this.configuration).listv1alpha1User(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
5008
3803
  }
5009
- updatev1alpha1User(name, user, options) {
5010
- return V1alpha1UserApiFp(this.configuration).updatev1alpha1User(name, user, options).then((request) => request(this.axios, this.basePath));
3804
+ updatev1alpha1User(requestParameters, options) {
3805
+ return V1alpha1UserApiFp(this.configuration).updatev1alpha1User(requestParameters.name, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
5011
3806
  }
5012
3807
  }
5013
3808
 
@@ -5027,6 +3822,27 @@ class Configuration {
5027
3822
  }
5028
3823
  }
5029
3824
 
3825
+ const ConditionStatusEnum = {
3826
+ True: "TRUE",
3827
+ False: "FALSE",
3828
+ Unknown: "UNKNOWN"
3829
+ };
3830
+
3831
+ const PluginStatusPhaseEnum = {
3832
+ Created: "CREATED",
3833
+ Disabled: "DISABLED",
3834
+ Resolved: "RESOLVED",
3835
+ Started: "STARTED",
3836
+ Stopped: "STOPPED",
3837
+ Failed: "FAILED"
3838
+ };
3839
+
3840
+ const PostSpecVisibleEnum = {
3841
+ Public: "PUBLIC",
3842
+ Internal: "INTERNAL",
3843
+ Private: "PRIVATE"
3844
+ };
3845
+
5030
3846
  exports.ApiHaloRunV1alpha1ContentApi = ApiHaloRunV1alpha1ContentApi;
5031
3847
  exports.ApiHaloRunV1alpha1ContentApiAxiosParamCreator = ApiHaloRunV1alpha1ContentApiAxiosParamCreator;
5032
3848
  exports.ApiHaloRunV1alpha1ContentApiFactory = ApiHaloRunV1alpha1ContentApiFactory;
@@ -5073,14 +3889,6 @@ exports.ContentHaloRunV1alpha1TagApi = ContentHaloRunV1alpha1TagApi;
5073
3889
  exports.ContentHaloRunV1alpha1TagApiAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator;
5074
3890
  exports.ContentHaloRunV1alpha1TagApiFactory = ContentHaloRunV1alpha1TagApiFactory;
5075
3891
  exports.ContentHaloRunV1alpha1TagApiFp = ContentHaloRunV1alpha1TagApiFp;
5076
- exports.CoreHaloRunV1alpha1LinkApi = CoreHaloRunV1alpha1LinkApi;
5077
- exports.CoreHaloRunV1alpha1LinkApiAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator;
5078
- exports.CoreHaloRunV1alpha1LinkApiFactory = CoreHaloRunV1alpha1LinkApiFactory;
5079
- exports.CoreHaloRunV1alpha1LinkApiFp = CoreHaloRunV1alpha1LinkApiFp;
5080
- exports.CoreHaloRunV1alpha1LinkGroupApi = CoreHaloRunV1alpha1LinkGroupApi;
5081
- exports.CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator;
5082
- exports.CoreHaloRunV1alpha1LinkGroupApiFactory = CoreHaloRunV1alpha1LinkGroupApiFactory;
5083
- exports.CoreHaloRunV1alpha1LinkGroupApiFp = CoreHaloRunV1alpha1LinkGroupApiFp;
5084
3892
  exports.PluginHaloRunV1alpha1PluginApi = PluginHaloRunV1alpha1PluginApi;
5085
3893
  exports.PluginHaloRunV1alpha1PluginApiAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator;
5086
3894
  exports.PluginHaloRunV1alpha1PluginApiFactory = PluginHaloRunV1alpha1PluginApiFactory;
@@ -5091,22 +3899,6 @@ exports.PluginHaloRunV1alpha1ReverseProxyApiFactory = PluginHaloRunV1alpha1Rever
5091
3899
  exports.PluginHaloRunV1alpha1ReverseProxyApiFp = PluginHaloRunV1alpha1ReverseProxyApiFp;
5092
3900
  exports.PluginStatusPhaseEnum = PluginStatusPhaseEnum;
5093
3901
  exports.PostSpecVisibleEnum = PostSpecVisibleEnum;
5094
- exports.StorageHaloRunV1alpha1AttachmentApi = StorageHaloRunV1alpha1AttachmentApi;
5095
- exports.StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator;
5096
- exports.StorageHaloRunV1alpha1AttachmentApiFactory = StorageHaloRunV1alpha1AttachmentApiFactory;
5097
- exports.StorageHaloRunV1alpha1AttachmentApiFp = StorageHaloRunV1alpha1AttachmentApiFp;
5098
- exports.StorageHaloRunV1alpha1GroupApi = StorageHaloRunV1alpha1GroupApi;
5099
- exports.StorageHaloRunV1alpha1GroupApiAxiosParamCreator = StorageHaloRunV1alpha1GroupApiAxiosParamCreator;
5100
- exports.StorageHaloRunV1alpha1GroupApiFactory = StorageHaloRunV1alpha1GroupApiFactory;
5101
- exports.StorageHaloRunV1alpha1GroupApiFp = StorageHaloRunV1alpha1GroupApiFp;
5102
- exports.StorageHaloRunV1alpha1PolicyApi = StorageHaloRunV1alpha1PolicyApi;
5103
- exports.StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = StorageHaloRunV1alpha1PolicyApiAxiosParamCreator;
5104
- exports.StorageHaloRunV1alpha1PolicyApiFactory = StorageHaloRunV1alpha1PolicyApiFactory;
5105
- exports.StorageHaloRunV1alpha1PolicyApiFp = StorageHaloRunV1alpha1PolicyApiFp;
5106
- exports.StorageHaloRunV1alpha1PolicyTemplateApi = StorageHaloRunV1alpha1PolicyTemplateApi;
5107
- exports.StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator;
5108
- exports.StorageHaloRunV1alpha1PolicyTemplateApiFactory = StorageHaloRunV1alpha1PolicyTemplateApiFactory;
5109
- exports.StorageHaloRunV1alpha1PolicyTemplateApiFp = StorageHaloRunV1alpha1PolicyTemplateApiFp;
5110
3902
  exports.ThemeHaloRunV1alpha1ThemeApi = ThemeHaloRunV1alpha1ThemeApi;
5111
3903
  exports.ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator = ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator;
5112
3904
  exports.ThemeHaloRunV1alpha1ThemeApiFactory = ThemeHaloRunV1alpha1ThemeApiFactory;