@halo-dev/api-client 0.0.5 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +321 -99
- package/dist/index.d.ts +580 -177
- package/dist/index.mjs +318 -100
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -393,7 +393,7 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
393
393
|
options: localVarRequestOptions
|
|
394
394
|
};
|
|
395
395
|
},
|
|
396
|
-
listcoreHaloRunV1alpha1Link: async (page, size,
|
|
396
|
+
listcoreHaloRunV1alpha1Link: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
397
397
|
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
398
398
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
399
399
|
let baseOptions;
|
|
@@ -411,8 +411,11 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
|
411
411
|
if (size !== void 0) {
|
|
412
412
|
localVarQueryParameter["size"] = size;
|
|
413
413
|
}
|
|
414
|
-
if (
|
|
415
|
-
localVarQueryParameter["
|
|
414
|
+
if (labelSelector) {
|
|
415
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
416
|
+
}
|
|
417
|
+
if (fieldSelector) {
|
|
418
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
416
419
|
}
|
|
417
420
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
418
421
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -462,8 +465,8 @@ const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
|
|
|
462
465
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
|
|
463
466
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
464
467
|
},
|
|
465
|
-
async listcoreHaloRunV1alpha1Link(page, size,
|
|
466
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size,
|
|
468
|
+
async listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
469
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options);
|
|
467
470
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
468
471
|
},
|
|
469
472
|
async updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
@@ -484,8 +487,8 @@ const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axio
|
|
|
484
487
|
getcoreHaloRunV1alpha1Link(name, options) {
|
|
485
488
|
return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
486
489
|
},
|
|
487
|
-
listcoreHaloRunV1alpha1Link(page, size,
|
|
488
|
-
return localVarFp.listcoreHaloRunV1alpha1Link(page, size,
|
|
490
|
+
listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
491
|
+
return localVarFp.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
489
492
|
},
|
|
490
493
|
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
491
494
|
return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
|
|
@@ -502,8 +505,8 @@ class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
|
502
505
|
getcoreHaloRunV1alpha1Link(name, options) {
|
|
503
506
|
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
|
|
504
507
|
}
|
|
505
|
-
listcoreHaloRunV1alpha1Link(page, size,
|
|
506
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size,
|
|
508
|
+
listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
509
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
507
510
|
}
|
|
508
511
|
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
509
512
|
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -575,7 +578,7 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
575
578
|
options: localVarRequestOptions
|
|
576
579
|
};
|
|
577
580
|
},
|
|
578
|
-
listcoreHaloRunV1alpha1LinkGroup: async (page, size,
|
|
581
|
+
listcoreHaloRunV1alpha1LinkGroup: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
579
582
|
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
580
583
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
581
584
|
let baseOptions;
|
|
@@ -593,8 +596,11 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
|
|
|
593
596
|
if (size !== void 0) {
|
|
594
597
|
localVarQueryParameter["size"] = size;
|
|
595
598
|
}
|
|
596
|
-
if (
|
|
597
|
-
localVarQueryParameter["
|
|
599
|
+
if (labelSelector) {
|
|
600
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
601
|
+
}
|
|
602
|
+
if (fieldSelector) {
|
|
603
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
598
604
|
}
|
|
599
605
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
600
606
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -644,8 +650,8 @@ const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
|
|
|
644
650
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
|
|
645
651
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
646
652
|
},
|
|
647
|
-
async listcoreHaloRunV1alpha1LinkGroup(page, size,
|
|
648
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size,
|
|
653
|
+
async listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
654
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options);
|
|
649
655
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
650
656
|
},
|
|
651
657
|
async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
@@ -666,8 +672,8 @@ const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath,
|
|
|
666
672
|
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
667
673
|
return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
668
674
|
},
|
|
669
|
-
listcoreHaloRunV1alpha1LinkGroup(page, size,
|
|
670
|
-
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size,
|
|
675
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
676
|
+
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
671
677
|
},
|
|
672
678
|
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
673
679
|
return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
|
|
@@ -684,8 +690,8 @@ class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
684
690
|
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
685
691
|
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
|
|
686
692
|
}
|
|
687
|
-
listcoreHaloRunV1alpha1LinkGroup(page, size,
|
|
688
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size,
|
|
693
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
694
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
689
695
|
}
|
|
690
696
|
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
691
697
|
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -757,7 +763,7 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
757
763
|
options: localVarRequestOptions
|
|
758
764
|
};
|
|
759
765
|
},
|
|
760
|
-
listpluginHaloRunV1alpha1Plugin: async (page, size,
|
|
766
|
+
listpluginHaloRunV1alpha1Plugin: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
761
767
|
const localVarPath = `/apis/plugin.halo.run/v1alpha1/plugins`;
|
|
762
768
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
763
769
|
let baseOptions;
|
|
@@ -775,8 +781,11 @@ const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration)
|
|
|
775
781
|
if (size !== void 0) {
|
|
776
782
|
localVarQueryParameter["size"] = size;
|
|
777
783
|
}
|
|
778
|
-
if (
|
|
779
|
-
localVarQueryParameter["
|
|
784
|
+
if (labelSelector) {
|
|
785
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
786
|
+
}
|
|
787
|
+
if (fieldSelector) {
|
|
788
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
780
789
|
}
|
|
781
790
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
782
791
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -826,8 +835,8 @@ const PluginHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
826
835
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1Plugin(name, options);
|
|
827
836
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
828
837
|
},
|
|
829
|
-
async listpluginHaloRunV1alpha1Plugin(page, size,
|
|
830
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1Plugin(page, size,
|
|
838
|
+
async listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
|
|
839
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options);
|
|
831
840
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
832
841
|
},
|
|
833
842
|
async updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
@@ -848,8 +857,8 @@ const PluginHaloRunV1alpha1PluginApiFactory = function(configuration, basePath,
|
|
|
848
857
|
getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
849
858
|
return localVarFp.getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(axios, basePath));
|
|
850
859
|
},
|
|
851
|
-
listpluginHaloRunV1alpha1Plugin(page, size,
|
|
852
|
-
return localVarFp.listpluginHaloRunV1alpha1Plugin(page, size,
|
|
860
|
+
listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
|
|
861
|
+
return localVarFp.listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
853
862
|
},
|
|
854
863
|
updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
855
864
|
return localVarFp.updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(axios, basePath));
|
|
@@ -866,8 +875,8 @@ class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
866
875
|
getpluginHaloRunV1alpha1Plugin(name, options) {
|
|
867
876
|
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
|
|
868
877
|
}
|
|
869
|
-
listpluginHaloRunV1alpha1Plugin(page, size,
|
|
870
|
-
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(page, size,
|
|
878
|
+
listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
|
|
879
|
+
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
871
880
|
}
|
|
872
881
|
updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
|
|
873
882
|
return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -939,7 +948,7 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
939
948
|
options: localVarRequestOptions
|
|
940
949
|
};
|
|
941
950
|
},
|
|
942
|
-
listpluginHaloRunV1alpha1ReverseProxy: async (page, size,
|
|
951
|
+
listpluginHaloRunV1alpha1ReverseProxy: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
943
952
|
const localVarPath = `/apis/plugin.halo.run/v1alpha1/reverseproxies`;
|
|
944
953
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
945
954
|
let baseOptions;
|
|
@@ -957,8 +966,11 @@ const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configura
|
|
|
957
966
|
if (size !== void 0) {
|
|
958
967
|
localVarQueryParameter["size"] = size;
|
|
959
968
|
}
|
|
960
|
-
if (
|
|
961
|
-
localVarQueryParameter["
|
|
969
|
+
if (labelSelector) {
|
|
970
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
971
|
+
}
|
|
972
|
+
if (fieldSelector) {
|
|
973
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
962
974
|
}
|
|
963
975
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
964
976
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1008,8 +1020,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiFp = function(configuration) {
|
|
|
1008
1020
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getpluginHaloRunV1alpha1ReverseProxy(name, options);
|
|
1009
1021
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1010
1022
|
},
|
|
1011
|
-
async listpluginHaloRunV1alpha1ReverseProxy(page, size,
|
|
1012
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1ReverseProxy(page, size,
|
|
1023
|
+
async listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
|
|
1024
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options);
|
|
1013
1025
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1014
1026
|
},
|
|
1015
1027
|
async updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
@@ -1030,8 +1042,8 @@ const PluginHaloRunV1alpha1ReverseProxyApiFactory = function(configuration, base
|
|
|
1030
1042
|
getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1031
1043
|
return localVarFp.getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(axios, basePath));
|
|
1032
1044
|
},
|
|
1033
|
-
listpluginHaloRunV1alpha1ReverseProxy(page, size,
|
|
1034
|
-
return localVarFp.listpluginHaloRunV1alpha1ReverseProxy(page, size,
|
|
1045
|
+
listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
|
|
1046
|
+
return localVarFp.listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1035
1047
|
},
|
|
1036
1048
|
updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1037
1049
|
return localVarFp.updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(axios, basePath));
|
|
@@ -1048,8 +1060,8 @@ class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
1048
1060
|
getpluginHaloRunV1alpha1ReverseProxy(name, options) {
|
|
1049
1061
|
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
|
|
1050
1062
|
}
|
|
1051
|
-
listpluginHaloRunV1alpha1ReverseProxy(page, size,
|
|
1052
|
-
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(page, size,
|
|
1063
|
+
listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
|
|
1064
|
+
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1053
1065
|
}
|
|
1054
1066
|
updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
|
|
1055
1067
|
return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1121,7 +1133,7 @@ const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator = function(configuration)
|
|
|
1121
1133
|
options: localVarRequestOptions
|
|
1122
1134
|
};
|
|
1123
1135
|
},
|
|
1124
|
-
listrunHaloTemplateV1alpha1Apple: async (page, size,
|
|
1136
|
+
listrunHaloTemplateV1alpha1Apple: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1125
1137
|
const localVarPath = `/apis/run.halo.template/v1alpha1/apples`;
|
|
1126
1138
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1127
1139
|
let baseOptions;
|
|
@@ -1139,8 +1151,11 @@ const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator = function(configuration)
|
|
|
1139
1151
|
if (size !== void 0) {
|
|
1140
1152
|
localVarQueryParameter["size"] = size;
|
|
1141
1153
|
}
|
|
1142
|
-
if (
|
|
1143
|
-
localVarQueryParameter["
|
|
1154
|
+
if (labelSelector) {
|
|
1155
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1156
|
+
}
|
|
1157
|
+
if (fieldSelector) {
|
|
1158
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1144
1159
|
}
|
|
1145
1160
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1146
1161
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1190,8 +1205,8 @@ const RunHaloTemplateV1alpha1AppleApiFp = function(configuration) {
|
|
|
1190
1205
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getrunHaloTemplateV1alpha1Apple(name, options);
|
|
1191
1206
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1192
1207
|
},
|
|
1193
|
-
async listrunHaloTemplateV1alpha1Apple(page, size,
|
|
1194
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listrunHaloTemplateV1alpha1Apple(page, size,
|
|
1208
|
+
async listrunHaloTemplateV1alpha1Apple(page, size, labelSelector, fieldSelector, options) {
|
|
1209
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listrunHaloTemplateV1alpha1Apple(page, size, labelSelector, fieldSelector, options);
|
|
1195
1210
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1196
1211
|
},
|
|
1197
1212
|
async updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
@@ -1212,8 +1227,8 @@ const RunHaloTemplateV1alpha1AppleApiFactory = function(configuration, basePath,
|
|
|
1212
1227
|
getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1213
1228
|
return localVarFp.getrunHaloTemplateV1alpha1Apple(name, options).then((request) => request(axios, basePath));
|
|
1214
1229
|
},
|
|
1215
|
-
listrunHaloTemplateV1alpha1Apple(page, size,
|
|
1216
|
-
return localVarFp.listrunHaloTemplateV1alpha1Apple(page, size,
|
|
1230
|
+
listrunHaloTemplateV1alpha1Apple(page, size, labelSelector, fieldSelector, options) {
|
|
1231
|
+
return localVarFp.listrunHaloTemplateV1alpha1Apple(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1217
1232
|
},
|
|
1218
1233
|
updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1219
1234
|
return localVarFp.updaterunHaloTemplateV1alpha1Apple(name, apple, options).then((request) => request(axios, basePath));
|
|
@@ -1230,13 +1245,198 @@ class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
|
1230
1245
|
getrunHaloTemplateV1alpha1Apple(name, options) {
|
|
1231
1246
|
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).getrunHaloTemplateV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
|
|
1232
1247
|
}
|
|
1233
|
-
listrunHaloTemplateV1alpha1Apple(page, size,
|
|
1234
|
-
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).listrunHaloTemplateV1alpha1Apple(page, size,
|
|
1248
|
+
listrunHaloTemplateV1alpha1Apple(page, size, labelSelector, fieldSelector, options) {
|
|
1249
|
+
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).listrunHaloTemplateV1alpha1Apple(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1235
1250
|
}
|
|
1236
1251
|
updaterunHaloTemplateV1alpha1Apple(name, apple, options) {
|
|
1237
1252
|
return RunHaloTemplateV1alpha1AppleApiFp(this.configuration).updaterunHaloTemplateV1alpha1Apple(name, apple, options).then((request) => request(this.axios, this.basePath));
|
|
1238
1253
|
}
|
|
1239
1254
|
}
|
|
1255
|
+
const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
|
|
1256
|
+
return {
|
|
1257
|
+
createthemeHaloRunV1alpha1Theme: async (theme, options = {}) => {
|
|
1258
|
+
const localVarPath = `/apis/theme.halo.run/v1alpha1/themes`;
|
|
1259
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1260
|
+
let baseOptions;
|
|
1261
|
+
if (configuration) {
|
|
1262
|
+
baseOptions = configuration.baseOptions;
|
|
1263
|
+
}
|
|
1264
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1265
|
+
const localVarHeaderParameter = {};
|
|
1266
|
+
const localVarQueryParameter = {};
|
|
1267
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1268
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1269
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1270
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1271
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1272
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1273
|
+
localVarRequestOptions.data = serializeDataIfNeeded(theme, localVarRequestOptions, configuration);
|
|
1274
|
+
return {
|
|
1275
|
+
url: toPathString(localVarUrlObj),
|
|
1276
|
+
options: localVarRequestOptions
|
|
1277
|
+
};
|
|
1278
|
+
},
|
|
1279
|
+
deletethemeHaloRunV1alpha1Theme: async (name, options = {}) => {
|
|
1280
|
+
assertParamExists("deletethemeHaloRunV1alpha1Theme", "name", name);
|
|
1281
|
+
const localVarPath = `/apis/theme.halo.run/v1alpha1/themes/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1282
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1283
|
+
let baseOptions;
|
|
1284
|
+
if (configuration) {
|
|
1285
|
+
baseOptions = configuration.baseOptions;
|
|
1286
|
+
}
|
|
1287
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
1288
|
+
const localVarHeaderParameter = {};
|
|
1289
|
+
const localVarQueryParameter = {};
|
|
1290
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1291
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1292
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1293
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1294
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1295
|
+
return {
|
|
1296
|
+
url: toPathString(localVarUrlObj),
|
|
1297
|
+
options: localVarRequestOptions
|
|
1298
|
+
};
|
|
1299
|
+
},
|
|
1300
|
+
getthemeHaloRunV1alpha1Theme: async (name, options = {}) => {
|
|
1301
|
+
assertParamExists("getthemeHaloRunV1alpha1Theme", "name", name);
|
|
1302
|
+
const localVarPath = `/apis/theme.halo.run/v1alpha1/themes/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1303
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1304
|
+
let baseOptions;
|
|
1305
|
+
if (configuration) {
|
|
1306
|
+
baseOptions = configuration.baseOptions;
|
|
1307
|
+
}
|
|
1308
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1309
|
+
const localVarHeaderParameter = {};
|
|
1310
|
+
const localVarQueryParameter = {};
|
|
1311
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1312
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1313
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1314
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1315
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1316
|
+
return {
|
|
1317
|
+
url: toPathString(localVarUrlObj),
|
|
1318
|
+
options: localVarRequestOptions
|
|
1319
|
+
};
|
|
1320
|
+
},
|
|
1321
|
+
listthemeHaloRunV1alpha1Theme: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1322
|
+
const localVarPath = `/apis/theme.halo.run/v1alpha1/themes`;
|
|
1323
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1324
|
+
let baseOptions;
|
|
1325
|
+
if (configuration) {
|
|
1326
|
+
baseOptions = configuration.baseOptions;
|
|
1327
|
+
}
|
|
1328
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1329
|
+
const localVarHeaderParameter = {};
|
|
1330
|
+
const localVarQueryParameter = {};
|
|
1331
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1332
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1333
|
+
if (page !== void 0) {
|
|
1334
|
+
localVarQueryParameter["page"] = page;
|
|
1335
|
+
}
|
|
1336
|
+
if (size !== void 0) {
|
|
1337
|
+
localVarQueryParameter["size"] = size;
|
|
1338
|
+
}
|
|
1339
|
+
if (labelSelector) {
|
|
1340
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1341
|
+
}
|
|
1342
|
+
if (fieldSelector) {
|
|
1343
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1344
|
+
}
|
|
1345
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1346
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1347
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1348
|
+
return {
|
|
1349
|
+
url: toPathString(localVarUrlObj),
|
|
1350
|
+
options: localVarRequestOptions
|
|
1351
|
+
};
|
|
1352
|
+
},
|
|
1353
|
+
updatethemeHaloRunV1alpha1Theme: async (name, theme, options = {}) => {
|
|
1354
|
+
assertParamExists("updatethemeHaloRunV1alpha1Theme", "name", name);
|
|
1355
|
+
const localVarPath = `/apis/theme.halo.run/v1alpha1/themes/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1356
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1357
|
+
let baseOptions;
|
|
1358
|
+
if (configuration) {
|
|
1359
|
+
baseOptions = configuration.baseOptions;
|
|
1360
|
+
}
|
|
1361
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1362
|
+
const localVarHeaderParameter = {};
|
|
1363
|
+
const localVarQueryParameter = {};
|
|
1364
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1365
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1366
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1367
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1368
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1369
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1370
|
+
localVarRequestOptions.data = serializeDataIfNeeded(theme, localVarRequestOptions, configuration);
|
|
1371
|
+
return {
|
|
1372
|
+
url: toPathString(localVarUrlObj),
|
|
1373
|
+
options: localVarRequestOptions
|
|
1374
|
+
};
|
|
1375
|
+
}
|
|
1376
|
+
};
|
|
1377
|
+
};
|
|
1378
|
+
const ThemeHaloRunV1alpha1ThemeApiFp = function(configuration) {
|
|
1379
|
+
const localVarAxiosParamCreator = ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator(configuration);
|
|
1380
|
+
return {
|
|
1381
|
+
async createthemeHaloRunV1alpha1Theme(theme, options) {
|
|
1382
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createthemeHaloRunV1alpha1Theme(theme, options);
|
|
1383
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1384
|
+
},
|
|
1385
|
+
async deletethemeHaloRunV1alpha1Theme(name, options) {
|
|
1386
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletethemeHaloRunV1alpha1Theme(name, options);
|
|
1387
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1388
|
+
},
|
|
1389
|
+
async getthemeHaloRunV1alpha1Theme(name, options) {
|
|
1390
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getthemeHaloRunV1alpha1Theme(name, options);
|
|
1391
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1392
|
+
},
|
|
1393
|
+
async listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options) {
|
|
1394
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options);
|
|
1395
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1396
|
+
},
|
|
1397
|
+
async updatethemeHaloRunV1alpha1Theme(name, theme, options) {
|
|
1398
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatethemeHaloRunV1alpha1Theme(name, theme, options);
|
|
1399
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1400
|
+
}
|
|
1401
|
+
};
|
|
1402
|
+
};
|
|
1403
|
+
const ThemeHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, axios) {
|
|
1404
|
+
const localVarFp = ThemeHaloRunV1alpha1ThemeApiFp(configuration);
|
|
1405
|
+
return {
|
|
1406
|
+
createthemeHaloRunV1alpha1Theme(theme, options) {
|
|
1407
|
+
return localVarFp.createthemeHaloRunV1alpha1Theme(theme, options).then((request) => request(axios, basePath));
|
|
1408
|
+
},
|
|
1409
|
+
deletethemeHaloRunV1alpha1Theme(name, options) {
|
|
1410
|
+
return localVarFp.deletethemeHaloRunV1alpha1Theme(name, options).then((request) => request(axios, basePath));
|
|
1411
|
+
},
|
|
1412
|
+
getthemeHaloRunV1alpha1Theme(name, options) {
|
|
1413
|
+
return localVarFp.getthemeHaloRunV1alpha1Theme(name, options).then((request) => request(axios, basePath));
|
|
1414
|
+
},
|
|
1415
|
+
listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options) {
|
|
1416
|
+
return localVarFp.listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1417
|
+
},
|
|
1418
|
+
updatethemeHaloRunV1alpha1Theme(name, theme, options) {
|
|
1419
|
+
return localVarFp.updatethemeHaloRunV1alpha1Theme(name, theme, options).then((request) => request(axios, basePath));
|
|
1420
|
+
}
|
|
1421
|
+
};
|
|
1422
|
+
};
|
|
1423
|
+
class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
1424
|
+
createthemeHaloRunV1alpha1Theme(theme, options) {
|
|
1425
|
+
return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).createthemeHaloRunV1alpha1Theme(theme, options).then((request) => request(this.axios, this.basePath));
|
|
1426
|
+
}
|
|
1427
|
+
deletethemeHaloRunV1alpha1Theme(name, options) {
|
|
1428
|
+
return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).deletethemeHaloRunV1alpha1Theme(name, options).then((request) => request(this.axios, this.basePath));
|
|
1429
|
+
}
|
|
1430
|
+
getthemeHaloRunV1alpha1Theme(name, options) {
|
|
1431
|
+
return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).getthemeHaloRunV1alpha1Theme(name, options).then((request) => request(this.axios, this.basePath));
|
|
1432
|
+
}
|
|
1433
|
+
listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options) {
|
|
1434
|
+
return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1435
|
+
}
|
|
1436
|
+
updatethemeHaloRunV1alpha1Theme(name, theme, options) {
|
|
1437
|
+
return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).updatethemeHaloRunV1alpha1Theme(name, theme, options).then((request) => request(this.axios, this.basePath));
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1240
1440
|
const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
1241
1441
|
return {
|
|
1242
1442
|
createv1alpha1ConfigMap: async (configMap, options = {}) => {
|
|
@@ -1303,7 +1503,7 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1303
1503
|
options: localVarRequestOptions
|
|
1304
1504
|
};
|
|
1305
1505
|
},
|
|
1306
|
-
listv1alpha1ConfigMap: async (page, size,
|
|
1506
|
+
listv1alpha1ConfigMap: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1307
1507
|
const localVarPath = `/api/v1alpha1/configmaps`;
|
|
1308
1508
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1309
1509
|
let baseOptions;
|
|
@@ -1321,8 +1521,11 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1321
1521
|
if (size !== void 0) {
|
|
1322
1522
|
localVarQueryParameter["size"] = size;
|
|
1323
1523
|
}
|
|
1324
|
-
if (
|
|
1325
|
-
localVarQueryParameter["
|
|
1524
|
+
if (labelSelector) {
|
|
1525
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1526
|
+
}
|
|
1527
|
+
if (fieldSelector) {
|
|
1528
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1326
1529
|
}
|
|
1327
1530
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1328
1531
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1372,8 +1575,8 @@ const V1alpha1ConfigMapApiFp = function(configuration) {
|
|
|
1372
1575
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1ConfigMap(name, options);
|
|
1373
1576
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1374
1577
|
},
|
|
1375
|
-
async listv1alpha1ConfigMap(page, size,
|
|
1376
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1ConfigMap(page, size,
|
|
1578
|
+
async listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
|
|
1579
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options);
|
|
1377
1580
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1378
1581
|
},
|
|
1379
1582
|
async updatev1alpha1ConfigMap(name, configMap, options) {
|
|
@@ -1394,8 +1597,8 @@ const V1alpha1ConfigMapApiFactory = function(configuration, basePath, axios) {
|
|
|
1394
1597
|
getv1alpha1ConfigMap(name, options) {
|
|
1395
1598
|
return localVarFp.getv1alpha1ConfigMap(name, options).then((request) => request(axios, basePath));
|
|
1396
1599
|
},
|
|
1397
|
-
listv1alpha1ConfigMap(page, size,
|
|
1398
|
-
return localVarFp.listv1alpha1ConfigMap(page, size,
|
|
1600
|
+
listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
|
|
1601
|
+
return localVarFp.listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1399
1602
|
},
|
|
1400
1603
|
updatev1alpha1ConfigMap(name, configMap, options) {
|
|
1401
1604
|
return localVarFp.updatev1alpha1ConfigMap(name, configMap, options).then((request) => request(axios, basePath));
|
|
@@ -1412,8 +1615,8 @@ class V1alpha1ConfigMapApi extends BaseAPI {
|
|
|
1412
1615
|
getv1alpha1ConfigMap(name, options) {
|
|
1413
1616
|
return V1alpha1ConfigMapApiFp(this.configuration).getv1alpha1ConfigMap(name, options).then((request) => request(this.axios, this.basePath));
|
|
1414
1617
|
}
|
|
1415
|
-
listv1alpha1ConfigMap(page, size,
|
|
1416
|
-
return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(page, size,
|
|
1618
|
+
listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
|
|
1619
|
+
return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1417
1620
|
}
|
|
1418
1621
|
updatev1alpha1ConfigMap(name, configMap, options) {
|
|
1419
1622
|
return V1alpha1ConfigMapApiFp(this.configuration).updatev1alpha1ConfigMap(name, configMap, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1485,7 +1688,7 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1485
1688
|
options: localVarRequestOptions
|
|
1486
1689
|
};
|
|
1487
1690
|
},
|
|
1488
|
-
listv1alpha1PersonalAccessToken: async (page, size,
|
|
1691
|
+
listv1alpha1PersonalAccessToken: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1489
1692
|
const localVarPath = `/api/v1alpha1/personalaccesstokens`;
|
|
1490
1693
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1491
1694
|
let baseOptions;
|
|
@@ -1503,8 +1706,11 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1503
1706
|
if (size !== void 0) {
|
|
1504
1707
|
localVarQueryParameter["size"] = size;
|
|
1505
1708
|
}
|
|
1506
|
-
if (
|
|
1507
|
-
localVarQueryParameter["
|
|
1709
|
+
if (labelSelector) {
|
|
1710
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1711
|
+
}
|
|
1712
|
+
if (fieldSelector) {
|
|
1713
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1508
1714
|
}
|
|
1509
1715
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1510
1716
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1554,8 +1760,8 @@ const V1alpha1PersonalAccessTokenApiFp = function(configuration) {
|
|
|
1554
1760
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1PersonalAccessToken(name, options);
|
|
1555
1761
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1556
1762
|
},
|
|
1557
|
-
async listv1alpha1PersonalAccessToken(page, size,
|
|
1558
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1PersonalAccessToken(page, size,
|
|
1763
|
+
async listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
|
|
1764
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options);
|
|
1559
1765
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1560
1766
|
},
|
|
1561
1767
|
async updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
|
|
@@ -1576,8 +1782,8 @@ const V1alpha1PersonalAccessTokenApiFactory = function(configuration, basePath,
|
|
|
1576
1782
|
getv1alpha1PersonalAccessToken(name, options) {
|
|
1577
1783
|
return localVarFp.getv1alpha1PersonalAccessToken(name, options).then((request) => request(axios, basePath));
|
|
1578
1784
|
},
|
|
1579
|
-
listv1alpha1PersonalAccessToken(page, size,
|
|
1580
|
-
return localVarFp.listv1alpha1PersonalAccessToken(page, size,
|
|
1785
|
+
listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
|
|
1786
|
+
return localVarFp.listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1581
1787
|
},
|
|
1582
1788
|
updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
|
|
1583
1789
|
return localVarFp.updatev1alpha1PersonalAccessToken(name, personalAccessToken, options).then((request) => request(axios, basePath));
|
|
@@ -1594,8 +1800,8 @@ class V1alpha1PersonalAccessTokenApi extends BaseAPI {
|
|
|
1594
1800
|
getv1alpha1PersonalAccessToken(name, options) {
|
|
1595
1801
|
return V1alpha1PersonalAccessTokenApiFp(this.configuration).getv1alpha1PersonalAccessToken(name, options).then((request) => request(this.axios, this.basePath));
|
|
1596
1802
|
}
|
|
1597
|
-
listv1alpha1PersonalAccessToken(page, size,
|
|
1598
|
-
return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(page, size,
|
|
1803
|
+
listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
|
|
1804
|
+
return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1599
1805
|
}
|
|
1600
1806
|
updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
|
|
1601
1807
|
return V1alpha1PersonalAccessTokenApiFp(this.configuration).updatev1alpha1PersonalAccessToken(name, personalAccessToken, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1667,7 +1873,7 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1667
1873
|
options: localVarRequestOptions
|
|
1668
1874
|
};
|
|
1669
1875
|
},
|
|
1670
|
-
listv1alpha1Role: async (page, size,
|
|
1876
|
+
listv1alpha1Role: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1671
1877
|
const localVarPath = `/api/v1alpha1/roles`;
|
|
1672
1878
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1673
1879
|
let baseOptions;
|
|
@@ -1685,8 +1891,11 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1685
1891
|
if (size !== void 0) {
|
|
1686
1892
|
localVarQueryParameter["size"] = size;
|
|
1687
1893
|
}
|
|
1688
|
-
if (
|
|
1689
|
-
localVarQueryParameter["
|
|
1894
|
+
if (labelSelector) {
|
|
1895
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1896
|
+
}
|
|
1897
|
+
if (fieldSelector) {
|
|
1898
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1690
1899
|
}
|
|
1691
1900
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1692
1901
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1736,8 +1945,8 @@ const V1alpha1RoleApiFp = function(configuration) {
|
|
|
1736
1945
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1Role(name, options);
|
|
1737
1946
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1738
1947
|
},
|
|
1739
|
-
async listv1alpha1Role(page, size,
|
|
1740
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Role(page, size,
|
|
1948
|
+
async listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
|
|
1949
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Role(page, size, labelSelector, fieldSelector, options);
|
|
1741
1950
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1742
1951
|
},
|
|
1743
1952
|
async updatev1alpha1Role(name, role, options) {
|
|
@@ -1758,8 +1967,8 @@ const V1alpha1RoleApiFactory = function(configuration, basePath, axios) {
|
|
|
1758
1967
|
getv1alpha1Role(name, options) {
|
|
1759
1968
|
return localVarFp.getv1alpha1Role(name, options).then((request) => request(axios, basePath));
|
|
1760
1969
|
},
|
|
1761
|
-
listv1alpha1Role(page, size,
|
|
1762
|
-
return localVarFp.listv1alpha1Role(page, size,
|
|
1970
|
+
listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
|
|
1971
|
+
return localVarFp.listv1alpha1Role(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1763
1972
|
},
|
|
1764
1973
|
updatev1alpha1Role(name, role, options) {
|
|
1765
1974
|
return localVarFp.updatev1alpha1Role(name, role, options).then((request) => request(axios, basePath));
|
|
@@ -1776,8 +1985,8 @@ class V1alpha1RoleApi extends BaseAPI {
|
|
|
1776
1985
|
getv1alpha1Role(name, options) {
|
|
1777
1986
|
return V1alpha1RoleApiFp(this.configuration).getv1alpha1Role(name, options).then((request) => request(this.axios, this.basePath));
|
|
1778
1987
|
}
|
|
1779
|
-
listv1alpha1Role(page, size,
|
|
1780
|
-
return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(page, size,
|
|
1988
|
+
listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
|
|
1989
|
+
return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1781
1990
|
}
|
|
1782
1991
|
updatev1alpha1Role(name, role, options) {
|
|
1783
1992
|
return V1alpha1RoleApiFp(this.configuration).updatev1alpha1Role(name, role, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1849,7 +2058,7 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1849
2058
|
options: localVarRequestOptions
|
|
1850
2059
|
};
|
|
1851
2060
|
},
|
|
1852
|
-
listv1alpha1RoleBinding: async (page, size,
|
|
2061
|
+
listv1alpha1RoleBinding: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1853
2062
|
const localVarPath = `/api/v1alpha1/rolebindings`;
|
|
1854
2063
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1855
2064
|
let baseOptions;
|
|
@@ -1867,8 +2076,11 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1867
2076
|
if (size !== void 0) {
|
|
1868
2077
|
localVarQueryParameter["size"] = size;
|
|
1869
2078
|
}
|
|
1870
|
-
if (
|
|
1871
|
-
localVarQueryParameter["
|
|
2079
|
+
if (labelSelector) {
|
|
2080
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2081
|
+
}
|
|
2082
|
+
if (fieldSelector) {
|
|
2083
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1872
2084
|
}
|
|
1873
2085
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1874
2086
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1918,8 +2130,8 @@ const V1alpha1RoleBindingApiFp = function(configuration) {
|
|
|
1918
2130
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1RoleBinding(name, options);
|
|
1919
2131
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1920
2132
|
},
|
|
1921
|
-
async listv1alpha1RoleBinding(page, size,
|
|
1922
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1RoleBinding(page, size,
|
|
2133
|
+
async listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
|
|
2134
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options);
|
|
1923
2135
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1924
2136
|
},
|
|
1925
2137
|
async updatev1alpha1RoleBinding(name, roleBinding, options) {
|
|
@@ -1940,8 +2152,8 @@ const V1alpha1RoleBindingApiFactory = function(configuration, basePath, axios) {
|
|
|
1940
2152
|
getv1alpha1RoleBinding(name, options) {
|
|
1941
2153
|
return localVarFp.getv1alpha1RoleBinding(name, options).then((request) => request(axios, basePath));
|
|
1942
2154
|
},
|
|
1943
|
-
listv1alpha1RoleBinding(page, size,
|
|
1944
|
-
return localVarFp.listv1alpha1RoleBinding(page, size,
|
|
2155
|
+
listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
|
|
2156
|
+
return localVarFp.listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1945
2157
|
},
|
|
1946
2158
|
updatev1alpha1RoleBinding(name, roleBinding, options) {
|
|
1947
2159
|
return localVarFp.updatev1alpha1RoleBinding(name, roleBinding, options).then((request) => request(axios, basePath));
|
|
@@ -1958,8 +2170,8 @@ class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
1958
2170
|
getv1alpha1RoleBinding(name, options) {
|
|
1959
2171
|
return V1alpha1RoleBindingApiFp(this.configuration).getv1alpha1RoleBinding(name, options).then((request) => request(this.axios, this.basePath));
|
|
1960
2172
|
}
|
|
1961
|
-
listv1alpha1RoleBinding(page, size,
|
|
1962
|
-
return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(page, size,
|
|
2173
|
+
listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
|
|
2174
|
+
return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1963
2175
|
}
|
|
1964
2176
|
updatev1alpha1RoleBinding(name, roleBinding, options) {
|
|
1965
2177
|
return V1alpha1RoleBindingApiFp(this.configuration).updatev1alpha1RoleBinding(name, roleBinding, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2031,7 +2243,7 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
2031
2243
|
options: localVarRequestOptions
|
|
2032
2244
|
};
|
|
2033
2245
|
},
|
|
2034
|
-
listv1alpha1Setting: async (page, size,
|
|
2246
|
+
listv1alpha1Setting: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
2035
2247
|
const localVarPath = `/api/v1alpha1/settings`;
|
|
2036
2248
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2037
2249
|
let baseOptions;
|
|
@@ -2049,8 +2261,11 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
2049
2261
|
if (size !== void 0) {
|
|
2050
2262
|
localVarQueryParameter["size"] = size;
|
|
2051
2263
|
}
|
|
2052
|
-
if (
|
|
2053
|
-
localVarQueryParameter["
|
|
2264
|
+
if (labelSelector) {
|
|
2265
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2266
|
+
}
|
|
2267
|
+
if (fieldSelector) {
|
|
2268
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2054
2269
|
}
|
|
2055
2270
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2056
2271
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2100,8 +2315,8 @@ const V1alpha1SettingApiFp = function(configuration) {
|
|
|
2100
2315
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1Setting(name, options);
|
|
2101
2316
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2102
2317
|
},
|
|
2103
|
-
async listv1alpha1Setting(page, size,
|
|
2104
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Setting(page, size,
|
|
2318
|
+
async listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
|
|
2319
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Setting(page, size, labelSelector, fieldSelector, options);
|
|
2105
2320
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2106
2321
|
},
|
|
2107
2322
|
async updatev1alpha1Setting(name, setting, options) {
|
|
@@ -2122,8 +2337,8 @@ const V1alpha1SettingApiFactory = function(configuration, basePath, axios) {
|
|
|
2122
2337
|
getv1alpha1Setting(name, options) {
|
|
2123
2338
|
return localVarFp.getv1alpha1Setting(name, options).then((request) => request(axios, basePath));
|
|
2124
2339
|
},
|
|
2125
|
-
listv1alpha1Setting(page, size,
|
|
2126
|
-
return localVarFp.listv1alpha1Setting(page, size,
|
|
2340
|
+
listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
|
|
2341
|
+
return localVarFp.listv1alpha1Setting(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2127
2342
|
},
|
|
2128
2343
|
updatev1alpha1Setting(name, setting, options) {
|
|
2129
2344
|
return localVarFp.updatev1alpha1Setting(name, setting, options).then((request) => request(axios, basePath));
|
|
@@ -2140,8 +2355,8 @@ class V1alpha1SettingApi extends BaseAPI {
|
|
|
2140
2355
|
getv1alpha1Setting(name, options) {
|
|
2141
2356
|
return V1alpha1SettingApiFp(this.configuration).getv1alpha1Setting(name, options).then((request) => request(this.axios, this.basePath));
|
|
2142
2357
|
}
|
|
2143
|
-
listv1alpha1Setting(page, size,
|
|
2144
|
-
return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(page, size,
|
|
2358
|
+
listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
|
|
2359
|
+
return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2145
2360
|
}
|
|
2146
2361
|
updatev1alpha1Setting(name, setting, options) {
|
|
2147
2362
|
return V1alpha1SettingApiFp(this.configuration).updatev1alpha1Setting(name, setting, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2213,7 +2428,7 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
2213
2428
|
options: localVarRequestOptions
|
|
2214
2429
|
};
|
|
2215
2430
|
},
|
|
2216
|
-
listv1alpha1User: async (page, size,
|
|
2431
|
+
listv1alpha1User: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
2217
2432
|
const localVarPath = `/api/v1alpha1/users`;
|
|
2218
2433
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2219
2434
|
let baseOptions;
|
|
@@ -2231,8 +2446,11 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
2231
2446
|
if (size !== void 0) {
|
|
2232
2447
|
localVarQueryParameter["size"] = size;
|
|
2233
2448
|
}
|
|
2234
|
-
if (
|
|
2235
|
-
localVarQueryParameter["
|
|
2449
|
+
if (labelSelector) {
|
|
2450
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2451
|
+
}
|
|
2452
|
+
if (fieldSelector) {
|
|
2453
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2236
2454
|
}
|
|
2237
2455
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2238
2456
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2282,8 +2500,8 @@ const V1alpha1UserApiFp = function(configuration) {
|
|
|
2282
2500
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1User(name, options);
|
|
2283
2501
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2284
2502
|
},
|
|
2285
|
-
async listv1alpha1User(page, size,
|
|
2286
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1User(page, size,
|
|
2503
|
+
async listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
|
|
2504
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1User(page, size, labelSelector, fieldSelector, options);
|
|
2287
2505
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2288
2506
|
},
|
|
2289
2507
|
async updatev1alpha1User(name, user, options) {
|
|
@@ -2304,8 +2522,8 @@ const V1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
|
2304
2522
|
getv1alpha1User(name, options) {
|
|
2305
2523
|
return localVarFp.getv1alpha1User(name, options).then((request) => request(axios, basePath));
|
|
2306
2524
|
},
|
|
2307
|
-
listv1alpha1User(page, size,
|
|
2308
|
-
return localVarFp.listv1alpha1User(page, size,
|
|
2525
|
+
listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
|
|
2526
|
+
return localVarFp.listv1alpha1User(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2309
2527
|
},
|
|
2310
2528
|
updatev1alpha1User(name, user, options) {
|
|
2311
2529
|
return localVarFp.updatev1alpha1User(name, user, options).then((request) => request(axios, basePath));
|
|
@@ -2322,8 +2540,8 @@ class V1alpha1UserApi extends BaseAPI {
|
|
|
2322
2540
|
getv1alpha1User(name, options) {
|
|
2323
2541
|
return V1alpha1UserApiFp(this.configuration).getv1alpha1User(name, options).then((request) => request(this.axios, this.basePath));
|
|
2324
2542
|
}
|
|
2325
|
-
listv1alpha1User(page, size,
|
|
2326
|
-
return V1alpha1UserApiFp(this.configuration).listv1alpha1User(page, size,
|
|
2543
|
+
listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
|
|
2544
|
+
return V1alpha1UserApiFp(this.configuration).listv1alpha1User(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2327
2545
|
}
|
|
2328
2546
|
updatev1alpha1User(name, user, options) {
|
|
2329
2547
|
return V1alpha1UserApiFp(this.configuration).updatev1alpha1User(name, user, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2380,6 +2598,10 @@ exports.RunHaloTemplateV1alpha1AppleApi = RunHaloTemplateV1alpha1AppleApi;
|
|
|
2380
2598
|
exports.RunHaloTemplateV1alpha1AppleApiAxiosParamCreator = RunHaloTemplateV1alpha1AppleApiAxiosParamCreator;
|
|
2381
2599
|
exports.RunHaloTemplateV1alpha1AppleApiFactory = RunHaloTemplateV1alpha1AppleApiFactory;
|
|
2382
2600
|
exports.RunHaloTemplateV1alpha1AppleApiFp = RunHaloTemplateV1alpha1AppleApiFp;
|
|
2601
|
+
exports.ThemeHaloRunV1alpha1ThemeApi = ThemeHaloRunV1alpha1ThemeApi;
|
|
2602
|
+
exports.ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator = ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator;
|
|
2603
|
+
exports.ThemeHaloRunV1alpha1ThemeApiFactory = ThemeHaloRunV1alpha1ThemeApiFactory;
|
|
2604
|
+
exports.ThemeHaloRunV1alpha1ThemeApiFp = ThemeHaloRunV1alpha1ThemeApiFp;
|
|
2383
2605
|
exports.V1alpha1ConfigMapApi = V1alpha1ConfigMapApi;
|
|
2384
2606
|
exports.V1alpha1ConfigMapApiAxiosParamCreator = V1alpha1ConfigMapApiAxiosParamCreator;
|
|
2385
2607
|
exports.V1alpha1ConfigMapApiFactory = V1alpha1ConfigMapApiFactory;
|