@halo-dev/api-client 0.0.5 → 0.0.6
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 +132 -99
- package/dist/index.d.ts +220 -176
- package/dist/index.mjs +132 -99
- 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,8 +1245,8 @@ 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));
|
|
@@ -1303,7 +1318,7 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1303
1318
|
options: localVarRequestOptions
|
|
1304
1319
|
};
|
|
1305
1320
|
},
|
|
1306
|
-
listv1alpha1ConfigMap: async (page, size,
|
|
1321
|
+
listv1alpha1ConfigMap: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1307
1322
|
const localVarPath = `/api/v1alpha1/configmaps`;
|
|
1308
1323
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1309
1324
|
let baseOptions;
|
|
@@ -1321,8 +1336,11 @@ const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
|
1321
1336
|
if (size !== void 0) {
|
|
1322
1337
|
localVarQueryParameter["size"] = size;
|
|
1323
1338
|
}
|
|
1324
|
-
if (
|
|
1325
|
-
localVarQueryParameter["
|
|
1339
|
+
if (labelSelector) {
|
|
1340
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1341
|
+
}
|
|
1342
|
+
if (fieldSelector) {
|
|
1343
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1326
1344
|
}
|
|
1327
1345
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1328
1346
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1372,8 +1390,8 @@ const V1alpha1ConfigMapApiFp = function(configuration) {
|
|
|
1372
1390
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1ConfigMap(name, options);
|
|
1373
1391
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1374
1392
|
},
|
|
1375
|
-
async listv1alpha1ConfigMap(page, size,
|
|
1376
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1ConfigMap(page, size,
|
|
1393
|
+
async listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
|
|
1394
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options);
|
|
1377
1395
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1378
1396
|
},
|
|
1379
1397
|
async updatev1alpha1ConfigMap(name, configMap, options) {
|
|
@@ -1394,8 +1412,8 @@ const V1alpha1ConfigMapApiFactory = function(configuration, basePath, axios) {
|
|
|
1394
1412
|
getv1alpha1ConfigMap(name, options) {
|
|
1395
1413
|
return localVarFp.getv1alpha1ConfigMap(name, options).then((request) => request(axios, basePath));
|
|
1396
1414
|
},
|
|
1397
|
-
listv1alpha1ConfigMap(page, size,
|
|
1398
|
-
return localVarFp.listv1alpha1ConfigMap(page, size,
|
|
1415
|
+
listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
|
|
1416
|
+
return localVarFp.listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1399
1417
|
},
|
|
1400
1418
|
updatev1alpha1ConfigMap(name, configMap, options) {
|
|
1401
1419
|
return localVarFp.updatev1alpha1ConfigMap(name, configMap, options).then((request) => request(axios, basePath));
|
|
@@ -1412,8 +1430,8 @@ class V1alpha1ConfigMapApi extends BaseAPI {
|
|
|
1412
1430
|
getv1alpha1ConfigMap(name, options) {
|
|
1413
1431
|
return V1alpha1ConfigMapApiFp(this.configuration).getv1alpha1ConfigMap(name, options).then((request) => request(this.axios, this.basePath));
|
|
1414
1432
|
}
|
|
1415
|
-
listv1alpha1ConfigMap(page, size,
|
|
1416
|
-
return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(page, size,
|
|
1433
|
+
listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
|
|
1434
|
+
return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1417
1435
|
}
|
|
1418
1436
|
updatev1alpha1ConfigMap(name, configMap, options) {
|
|
1419
1437
|
return V1alpha1ConfigMapApiFp(this.configuration).updatev1alpha1ConfigMap(name, configMap, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1485,7 +1503,7 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1485
1503
|
options: localVarRequestOptions
|
|
1486
1504
|
};
|
|
1487
1505
|
},
|
|
1488
|
-
listv1alpha1PersonalAccessToken: async (page, size,
|
|
1506
|
+
listv1alpha1PersonalAccessToken: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1489
1507
|
const localVarPath = `/api/v1alpha1/personalaccesstokens`;
|
|
1490
1508
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1491
1509
|
let baseOptions;
|
|
@@ -1503,8 +1521,11 @@ const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration)
|
|
|
1503
1521
|
if (size !== void 0) {
|
|
1504
1522
|
localVarQueryParameter["size"] = size;
|
|
1505
1523
|
}
|
|
1506
|
-
if (
|
|
1507
|
-
localVarQueryParameter["
|
|
1524
|
+
if (labelSelector) {
|
|
1525
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1526
|
+
}
|
|
1527
|
+
if (fieldSelector) {
|
|
1528
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1508
1529
|
}
|
|
1509
1530
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1510
1531
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1554,8 +1575,8 @@ const V1alpha1PersonalAccessTokenApiFp = function(configuration) {
|
|
|
1554
1575
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1PersonalAccessToken(name, options);
|
|
1555
1576
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1556
1577
|
},
|
|
1557
|
-
async listv1alpha1PersonalAccessToken(page, size,
|
|
1558
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1PersonalAccessToken(page, size,
|
|
1578
|
+
async listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
|
|
1579
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options);
|
|
1559
1580
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1560
1581
|
},
|
|
1561
1582
|
async updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
|
|
@@ -1576,8 +1597,8 @@ const V1alpha1PersonalAccessTokenApiFactory = function(configuration, basePath,
|
|
|
1576
1597
|
getv1alpha1PersonalAccessToken(name, options) {
|
|
1577
1598
|
return localVarFp.getv1alpha1PersonalAccessToken(name, options).then((request) => request(axios, basePath));
|
|
1578
1599
|
},
|
|
1579
|
-
listv1alpha1PersonalAccessToken(page, size,
|
|
1580
|
-
return localVarFp.listv1alpha1PersonalAccessToken(page, size,
|
|
1600
|
+
listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
|
|
1601
|
+
return localVarFp.listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1581
1602
|
},
|
|
1582
1603
|
updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
|
|
1583
1604
|
return localVarFp.updatev1alpha1PersonalAccessToken(name, personalAccessToken, options).then((request) => request(axios, basePath));
|
|
@@ -1594,8 +1615,8 @@ class V1alpha1PersonalAccessTokenApi extends BaseAPI {
|
|
|
1594
1615
|
getv1alpha1PersonalAccessToken(name, options) {
|
|
1595
1616
|
return V1alpha1PersonalAccessTokenApiFp(this.configuration).getv1alpha1PersonalAccessToken(name, options).then((request) => request(this.axios, this.basePath));
|
|
1596
1617
|
}
|
|
1597
|
-
listv1alpha1PersonalAccessToken(page, size,
|
|
1598
|
-
return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(page, size,
|
|
1618
|
+
listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
|
|
1619
|
+
return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1599
1620
|
}
|
|
1600
1621
|
updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
|
|
1601
1622
|
return V1alpha1PersonalAccessTokenApiFp(this.configuration).updatev1alpha1PersonalAccessToken(name, personalAccessToken, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1667,7 +1688,7 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1667
1688
|
options: localVarRequestOptions
|
|
1668
1689
|
};
|
|
1669
1690
|
},
|
|
1670
|
-
listv1alpha1Role: async (page, size,
|
|
1691
|
+
listv1alpha1Role: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1671
1692
|
const localVarPath = `/api/v1alpha1/roles`;
|
|
1672
1693
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1673
1694
|
let baseOptions;
|
|
@@ -1685,8 +1706,11 @@ const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
|
|
|
1685
1706
|
if (size !== void 0) {
|
|
1686
1707
|
localVarQueryParameter["size"] = size;
|
|
1687
1708
|
}
|
|
1688
|
-
if (
|
|
1689
|
-
localVarQueryParameter["
|
|
1709
|
+
if (labelSelector) {
|
|
1710
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1711
|
+
}
|
|
1712
|
+
if (fieldSelector) {
|
|
1713
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1690
1714
|
}
|
|
1691
1715
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1692
1716
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1736,8 +1760,8 @@ const V1alpha1RoleApiFp = function(configuration) {
|
|
|
1736
1760
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1Role(name, options);
|
|
1737
1761
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1738
1762
|
},
|
|
1739
|
-
async listv1alpha1Role(page, size,
|
|
1740
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Role(page, size,
|
|
1763
|
+
async listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
|
|
1764
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Role(page, size, labelSelector, fieldSelector, options);
|
|
1741
1765
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1742
1766
|
},
|
|
1743
1767
|
async updatev1alpha1Role(name, role, options) {
|
|
@@ -1758,8 +1782,8 @@ const V1alpha1RoleApiFactory = function(configuration, basePath, axios) {
|
|
|
1758
1782
|
getv1alpha1Role(name, options) {
|
|
1759
1783
|
return localVarFp.getv1alpha1Role(name, options).then((request) => request(axios, basePath));
|
|
1760
1784
|
},
|
|
1761
|
-
listv1alpha1Role(page, size,
|
|
1762
|
-
return localVarFp.listv1alpha1Role(page, size,
|
|
1785
|
+
listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
|
|
1786
|
+
return localVarFp.listv1alpha1Role(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1763
1787
|
},
|
|
1764
1788
|
updatev1alpha1Role(name, role, options) {
|
|
1765
1789
|
return localVarFp.updatev1alpha1Role(name, role, options).then((request) => request(axios, basePath));
|
|
@@ -1776,8 +1800,8 @@ class V1alpha1RoleApi extends BaseAPI {
|
|
|
1776
1800
|
getv1alpha1Role(name, options) {
|
|
1777
1801
|
return V1alpha1RoleApiFp(this.configuration).getv1alpha1Role(name, options).then((request) => request(this.axios, this.basePath));
|
|
1778
1802
|
}
|
|
1779
|
-
listv1alpha1Role(page, size,
|
|
1780
|
-
return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(page, size,
|
|
1803
|
+
listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
|
|
1804
|
+
return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1781
1805
|
}
|
|
1782
1806
|
updatev1alpha1Role(name, role, options) {
|
|
1783
1807
|
return V1alpha1RoleApiFp(this.configuration).updatev1alpha1Role(name, role, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1849,7 +1873,7 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1849
1873
|
options: localVarRequestOptions
|
|
1850
1874
|
};
|
|
1851
1875
|
},
|
|
1852
|
-
listv1alpha1RoleBinding: async (page, size,
|
|
1876
|
+
listv1alpha1RoleBinding: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
1853
1877
|
const localVarPath = `/api/v1alpha1/rolebindings`;
|
|
1854
1878
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1855
1879
|
let baseOptions;
|
|
@@ -1867,8 +1891,11 @@ const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
|
|
|
1867
1891
|
if (size !== void 0) {
|
|
1868
1892
|
localVarQueryParameter["size"] = size;
|
|
1869
1893
|
}
|
|
1870
|
-
if (
|
|
1871
|
-
localVarQueryParameter["
|
|
1894
|
+
if (labelSelector) {
|
|
1895
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1896
|
+
}
|
|
1897
|
+
if (fieldSelector) {
|
|
1898
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1872
1899
|
}
|
|
1873
1900
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1874
1901
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1918,8 +1945,8 @@ const V1alpha1RoleBindingApiFp = function(configuration) {
|
|
|
1918
1945
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1RoleBinding(name, options);
|
|
1919
1946
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1920
1947
|
},
|
|
1921
|
-
async listv1alpha1RoleBinding(page, size,
|
|
1922
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1RoleBinding(page, size,
|
|
1948
|
+
async listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
|
|
1949
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options);
|
|
1923
1950
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1924
1951
|
},
|
|
1925
1952
|
async updatev1alpha1RoleBinding(name, roleBinding, options) {
|
|
@@ -1940,8 +1967,8 @@ const V1alpha1RoleBindingApiFactory = function(configuration, basePath, axios) {
|
|
|
1940
1967
|
getv1alpha1RoleBinding(name, options) {
|
|
1941
1968
|
return localVarFp.getv1alpha1RoleBinding(name, options).then((request) => request(axios, basePath));
|
|
1942
1969
|
},
|
|
1943
|
-
listv1alpha1RoleBinding(page, size,
|
|
1944
|
-
return localVarFp.listv1alpha1RoleBinding(page, size,
|
|
1970
|
+
listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
|
|
1971
|
+
return localVarFp.listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1945
1972
|
},
|
|
1946
1973
|
updatev1alpha1RoleBinding(name, roleBinding, options) {
|
|
1947
1974
|
return localVarFp.updatev1alpha1RoleBinding(name, roleBinding, options).then((request) => request(axios, basePath));
|
|
@@ -1958,8 +1985,8 @@ class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
1958
1985
|
getv1alpha1RoleBinding(name, options) {
|
|
1959
1986
|
return V1alpha1RoleBindingApiFp(this.configuration).getv1alpha1RoleBinding(name, options).then((request) => request(this.axios, this.basePath));
|
|
1960
1987
|
}
|
|
1961
|
-
listv1alpha1RoleBinding(page, size,
|
|
1962
|
-
return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(page, size,
|
|
1988
|
+
listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
|
|
1989
|
+
return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1963
1990
|
}
|
|
1964
1991
|
updatev1alpha1RoleBinding(name, roleBinding, options) {
|
|
1965
1992
|
return V1alpha1RoleBindingApiFp(this.configuration).updatev1alpha1RoleBinding(name, roleBinding, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2031,7 +2058,7 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
2031
2058
|
options: localVarRequestOptions
|
|
2032
2059
|
};
|
|
2033
2060
|
},
|
|
2034
|
-
listv1alpha1Setting: async (page, size,
|
|
2061
|
+
listv1alpha1Setting: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
2035
2062
|
const localVarPath = `/api/v1alpha1/settings`;
|
|
2036
2063
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2037
2064
|
let baseOptions;
|
|
@@ -2049,8 +2076,11 @@ const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
|
2049
2076
|
if (size !== void 0) {
|
|
2050
2077
|
localVarQueryParameter["size"] = size;
|
|
2051
2078
|
}
|
|
2052
|
-
if (
|
|
2053
|
-
localVarQueryParameter["
|
|
2079
|
+
if (labelSelector) {
|
|
2080
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2081
|
+
}
|
|
2082
|
+
if (fieldSelector) {
|
|
2083
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2054
2084
|
}
|
|
2055
2085
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2056
2086
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2100,8 +2130,8 @@ const V1alpha1SettingApiFp = function(configuration) {
|
|
|
2100
2130
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1Setting(name, options);
|
|
2101
2131
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2102
2132
|
},
|
|
2103
|
-
async listv1alpha1Setting(page, size,
|
|
2104
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Setting(page, size,
|
|
2133
|
+
async listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
|
|
2134
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Setting(page, size, labelSelector, fieldSelector, options);
|
|
2105
2135
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2106
2136
|
},
|
|
2107
2137
|
async updatev1alpha1Setting(name, setting, options) {
|
|
@@ -2122,8 +2152,8 @@ const V1alpha1SettingApiFactory = function(configuration, basePath, axios) {
|
|
|
2122
2152
|
getv1alpha1Setting(name, options) {
|
|
2123
2153
|
return localVarFp.getv1alpha1Setting(name, options).then((request) => request(axios, basePath));
|
|
2124
2154
|
},
|
|
2125
|
-
listv1alpha1Setting(page, size,
|
|
2126
|
-
return localVarFp.listv1alpha1Setting(page, size,
|
|
2155
|
+
listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
|
|
2156
|
+
return localVarFp.listv1alpha1Setting(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2127
2157
|
},
|
|
2128
2158
|
updatev1alpha1Setting(name, setting, options) {
|
|
2129
2159
|
return localVarFp.updatev1alpha1Setting(name, setting, options).then((request) => request(axios, basePath));
|
|
@@ -2140,8 +2170,8 @@ class V1alpha1SettingApi extends BaseAPI {
|
|
|
2140
2170
|
getv1alpha1Setting(name, options) {
|
|
2141
2171
|
return V1alpha1SettingApiFp(this.configuration).getv1alpha1Setting(name, options).then((request) => request(this.axios, this.basePath));
|
|
2142
2172
|
}
|
|
2143
|
-
listv1alpha1Setting(page, size,
|
|
2144
|
-
return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(page, size,
|
|
2173
|
+
listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
|
|
2174
|
+
return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2145
2175
|
}
|
|
2146
2176
|
updatev1alpha1Setting(name, setting, options) {
|
|
2147
2177
|
return V1alpha1SettingApiFp(this.configuration).updatev1alpha1Setting(name, setting, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2213,7 +2243,7 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
2213
2243
|
options: localVarRequestOptions
|
|
2214
2244
|
};
|
|
2215
2245
|
},
|
|
2216
|
-
listv1alpha1User: async (page, size,
|
|
2246
|
+
listv1alpha1User: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
2217
2247
|
const localVarPath = `/api/v1alpha1/users`;
|
|
2218
2248
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2219
2249
|
let baseOptions;
|
|
@@ -2231,8 +2261,11 @@ const V1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
2231
2261
|
if (size !== void 0) {
|
|
2232
2262
|
localVarQueryParameter["size"] = size;
|
|
2233
2263
|
}
|
|
2234
|
-
if (
|
|
2235
|
-
localVarQueryParameter["
|
|
2264
|
+
if (labelSelector) {
|
|
2265
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2266
|
+
}
|
|
2267
|
+
if (fieldSelector) {
|
|
2268
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2236
2269
|
}
|
|
2237
2270
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2238
2271
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2282,8 +2315,8 @@ const V1alpha1UserApiFp = function(configuration) {
|
|
|
2282
2315
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1User(name, options);
|
|
2283
2316
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2284
2317
|
},
|
|
2285
|
-
async listv1alpha1User(page, size,
|
|
2286
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1User(page, size,
|
|
2318
|
+
async listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
|
|
2319
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1User(page, size, labelSelector, fieldSelector, options);
|
|
2287
2320
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
2288
2321
|
},
|
|
2289
2322
|
async updatev1alpha1User(name, user, options) {
|
|
@@ -2304,8 +2337,8 @@ const V1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
|
2304
2337
|
getv1alpha1User(name, options) {
|
|
2305
2338
|
return localVarFp.getv1alpha1User(name, options).then((request) => request(axios, basePath));
|
|
2306
2339
|
},
|
|
2307
|
-
listv1alpha1User(page, size,
|
|
2308
|
-
return localVarFp.listv1alpha1User(page, size,
|
|
2340
|
+
listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
|
|
2341
|
+
return localVarFp.listv1alpha1User(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2309
2342
|
},
|
|
2310
2343
|
updatev1alpha1User(name, user, options) {
|
|
2311
2344
|
return localVarFp.updatev1alpha1User(name, user, options).then((request) => request(axios, basePath));
|
|
@@ -2322,8 +2355,8 @@ class V1alpha1UserApi extends BaseAPI {
|
|
|
2322
2355
|
getv1alpha1User(name, options) {
|
|
2323
2356
|
return V1alpha1UserApiFp(this.configuration).getv1alpha1User(name, options).then((request) => request(this.axios, this.basePath));
|
|
2324
2357
|
}
|
|
2325
|
-
listv1alpha1User(page, size,
|
|
2326
|
-
return V1alpha1UserApiFp(this.configuration).listv1alpha1User(page, size,
|
|
2358
|
+
listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
|
|
2359
|
+
return V1alpha1UserApiFp(this.configuration).listv1alpha1User(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2327
2360
|
}
|
|
2328
2361
|
updatev1alpha1User(name, user, options) {
|
|
2329
2362
|
return V1alpha1UserApiFp(this.configuration).updatev1alpha1User(name, user, options).then((request) => request(this.axios, this.basePath));
|