@halo-dev/api-client 0.0.0 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +298 -157
- package/dist/index.d.ts +905 -268
- package/dist/index.mjs +291 -154
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,81 @@ declare class BaseAPI {
|
|
|
118
118
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @export
|
|
124
|
+
* @interface Apple
|
|
125
|
+
*/
|
|
126
|
+
interface Apple {
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {AppleSpec}
|
|
130
|
+
* @memberof Apple
|
|
131
|
+
*/
|
|
132
|
+
spec?: AppleSpec;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @memberof Apple
|
|
137
|
+
*/
|
|
138
|
+
apiVersion: string;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof Apple
|
|
143
|
+
*/
|
|
144
|
+
kind: string;
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @type {Metadata}
|
|
148
|
+
* @memberof Apple
|
|
149
|
+
*/
|
|
150
|
+
metadata: Metadata;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @export
|
|
155
|
+
* @interface AppleSpec
|
|
156
|
+
*/
|
|
157
|
+
interface AppleSpec {
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof AppleSpec
|
|
162
|
+
*/
|
|
163
|
+
varieties: string;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {string}
|
|
167
|
+
* @memberof AppleSpec
|
|
168
|
+
*/
|
|
169
|
+
color?: string;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof AppleSpec
|
|
174
|
+
*/
|
|
175
|
+
size?: string;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {string}
|
|
179
|
+
* @memberof AppleSpec
|
|
180
|
+
*/
|
|
181
|
+
producingArea?: string;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @export
|
|
186
|
+
* @interface ChangePasswordRequest
|
|
187
|
+
*/
|
|
188
|
+
interface ChangePasswordRequest {
|
|
189
|
+
/**
|
|
190
|
+
* New password.
|
|
191
|
+
* @type {string}
|
|
192
|
+
* @memberof ChangePasswordRequest
|
|
193
|
+
*/
|
|
194
|
+
password: string;
|
|
195
|
+
}
|
|
121
196
|
/**
|
|
122
197
|
*
|
|
123
198
|
* @export
|
|
@@ -151,6 +226,61 @@ interface ConfigMap {
|
|
|
151
226
|
*/
|
|
152
227
|
metadata: Metadata;
|
|
153
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @export
|
|
232
|
+
* @interface ConfigMapList
|
|
233
|
+
*/
|
|
234
|
+
interface ConfigMapList {
|
|
235
|
+
/**
|
|
236
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
237
|
+
* @type {number}
|
|
238
|
+
* @memberof ConfigMapList
|
|
239
|
+
*/
|
|
240
|
+
page: number;
|
|
241
|
+
/**
|
|
242
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
243
|
+
* @type {number}
|
|
244
|
+
* @memberof ConfigMapList
|
|
245
|
+
*/
|
|
246
|
+
size: number;
|
|
247
|
+
/**
|
|
248
|
+
* Total elements.
|
|
249
|
+
* @type {number}
|
|
250
|
+
* @memberof ConfigMapList
|
|
251
|
+
*/
|
|
252
|
+
total: number;
|
|
253
|
+
/**
|
|
254
|
+
* A chunk of items.
|
|
255
|
+
* @type {Array<ConfigMap>}
|
|
256
|
+
* @memberof ConfigMapList
|
|
257
|
+
*/
|
|
258
|
+
items: Array<ConfigMap>;
|
|
259
|
+
/**
|
|
260
|
+
* Indicates whether current page is the first page.
|
|
261
|
+
* @type {boolean}
|
|
262
|
+
* @memberof ConfigMapList
|
|
263
|
+
*/
|
|
264
|
+
first: boolean;
|
|
265
|
+
/**
|
|
266
|
+
* Indicates whether current page is the last page.
|
|
267
|
+
* @type {boolean}
|
|
268
|
+
* @memberof ConfigMapList
|
|
269
|
+
*/
|
|
270
|
+
last: boolean;
|
|
271
|
+
/**
|
|
272
|
+
* Indicates whether current page has previous page.
|
|
273
|
+
* @type {boolean}
|
|
274
|
+
* @memberof ConfigMapList
|
|
275
|
+
*/
|
|
276
|
+
hasNext: boolean;
|
|
277
|
+
/**
|
|
278
|
+
* Indicates whether current page has previous page.
|
|
279
|
+
* @type {boolean}
|
|
280
|
+
* @memberof ConfigMapList
|
|
281
|
+
*/
|
|
282
|
+
hasPrevious: boolean;
|
|
283
|
+
}
|
|
154
284
|
/**
|
|
155
285
|
*
|
|
156
286
|
* @export
|
|
@@ -170,6 +300,19 @@ interface FileReverseProxyProvider {
|
|
|
170
300
|
*/
|
|
171
301
|
filename?: string;
|
|
172
302
|
}
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* @export
|
|
306
|
+
* @interface GrantRequest
|
|
307
|
+
*/
|
|
308
|
+
interface GrantRequest {
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
311
|
+
* @type {Set<string>}
|
|
312
|
+
* @memberof GrantRequest
|
|
313
|
+
*/
|
|
314
|
+
roles?: Set<string>;
|
|
315
|
+
}
|
|
173
316
|
/**
|
|
174
317
|
*
|
|
175
318
|
* @export
|
|
@@ -428,6 +571,61 @@ interface PersonalAccessToken {
|
|
|
428
571
|
*/
|
|
429
572
|
metadata: Metadata;
|
|
430
573
|
}
|
|
574
|
+
/**
|
|
575
|
+
*
|
|
576
|
+
* @export
|
|
577
|
+
* @interface PersonalAccessTokenList
|
|
578
|
+
*/
|
|
579
|
+
interface PersonalAccessTokenList {
|
|
580
|
+
/**
|
|
581
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
582
|
+
* @type {number}
|
|
583
|
+
* @memberof PersonalAccessTokenList
|
|
584
|
+
*/
|
|
585
|
+
page: number;
|
|
586
|
+
/**
|
|
587
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
588
|
+
* @type {number}
|
|
589
|
+
* @memberof PersonalAccessTokenList
|
|
590
|
+
*/
|
|
591
|
+
size: number;
|
|
592
|
+
/**
|
|
593
|
+
* Total elements.
|
|
594
|
+
* @type {number}
|
|
595
|
+
* @memberof PersonalAccessTokenList
|
|
596
|
+
*/
|
|
597
|
+
total: number;
|
|
598
|
+
/**
|
|
599
|
+
* A chunk of items.
|
|
600
|
+
* @type {Array<PersonalAccessToken>}
|
|
601
|
+
* @memberof PersonalAccessTokenList
|
|
602
|
+
*/
|
|
603
|
+
items: Array<PersonalAccessToken>;
|
|
604
|
+
/**
|
|
605
|
+
* Indicates whether current page is the first page.
|
|
606
|
+
* @type {boolean}
|
|
607
|
+
* @memberof PersonalAccessTokenList
|
|
608
|
+
*/
|
|
609
|
+
first: boolean;
|
|
610
|
+
/**
|
|
611
|
+
* Indicates whether current page is the last page.
|
|
612
|
+
* @type {boolean}
|
|
613
|
+
* @memberof PersonalAccessTokenList
|
|
614
|
+
*/
|
|
615
|
+
last: boolean;
|
|
616
|
+
/**
|
|
617
|
+
* Indicates whether current page has previous page.
|
|
618
|
+
* @type {boolean}
|
|
619
|
+
* @memberof PersonalAccessTokenList
|
|
620
|
+
*/
|
|
621
|
+
hasNext: boolean;
|
|
622
|
+
/**
|
|
623
|
+
* Indicates whether current page has previous page.
|
|
624
|
+
* @type {boolean}
|
|
625
|
+
* @memberof PersonalAccessTokenList
|
|
626
|
+
*/
|
|
627
|
+
hasPrevious: boolean;
|
|
628
|
+
}
|
|
431
629
|
/**
|
|
432
630
|
*
|
|
433
631
|
* @export
|
|
@@ -508,6 +706,61 @@ interface Plugin {
|
|
|
508
706
|
*/
|
|
509
707
|
metadata: Metadata;
|
|
510
708
|
}
|
|
709
|
+
/**
|
|
710
|
+
*
|
|
711
|
+
* @export
|
|
712
|
+
* @interface PluginList
|
|
713
|
+
*/
|
|
714
|
+
interface PluginList {
|
|
715
|
+
/**
|
|
716
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
717
|
+
* @type {number}
|
|
718
|
+
* @memberof PluginList
|
|
719
|
+
*/
|
|
720
|
+
page: number;
|
|
721
|
+
/**
|
|
722
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
723
|
+
* @type {number}
|
|
724
|
+
* @memberof PluginList
|
|
725
|
+
*/
|
|
726
|
+
size: number;
|
|
727
|
+
/**
|
|
728
|
+
* Total elements.
|
|
729
|
+
* @type {number}
|
|
730
|
+
* @memberof PluginList
|
|
731
|
+
*/
|
|
732
|
+
total: number;
|
|
733
|
+
/**
|
|
734
|
+
* A chunk of items.
|
|
735
|
+
* @type {Array<Plugin>}
|
|
736
|
+
* @memberof PluginList
|
|
737
|
+
*/
|
|
738
|
+
items: Array<Plugin>;
|
|
739
|
+
/**
|
|
740
|
+
* Indicates whether current page is the first page.
|
|
741
|
+
* @type {boolean}
|
|
742
|
+
* @memberof PluginList
|
|
743
|
+
*/
|
|
744
|
+
first: boolean;
|
|
745
|
+
/**
|
|
746
|
+
* Indicates whether current page is the last page.
|
|
747
|
+
* @type {boolean}
|
|
748
|
+
* @memberof PluginList
|
|
749
|
+
*/
|
|
750
|
+
last: boolean;
|
|
751
|
+
/**
|
|
752
|
+
* Indicates whether current page has previous page.
|
|
753
|
+
* @type {boolean}
|
|
754
|
+
* @memberof PluginList
|
|
755
|
+
*/
|
|
756
|
+
hasNext: boolean;
|
|
757
|
+
/**
|
|
758
|
+
* Indicates whether current page has previous page.
|
|
759
|
+
* @type {boolean}
|
|
760
|
+
* @memberof PluginList
|
|
761
|
+
*/
|
|
762
|
+
hasPrevious: boolean;
|
|
763
|
+
}
|
|
511
764
|
/**
|
|
512
765
|
*
|
|
513
766
|
* @export
|
|
@@ -699,89 +952,88 @@ interface PolicyRule {
|
|
|
699
952
|
/**
|
|
700
953
|
*
|
|
701
954
|
* @export
|
|
702
|
-
* @interface
|
|
955
|
+
* @interface ReverseProxy
|
|
703
956
|
*/
|
|
704
|
-
interface
|
|
957
|
+
interface ReverseProxy {
|
|
705
958
|
/**
|
|
706
959
|
*
|
|
707
|
-
* @type {
|
|
708
|
-
* @memberof
|
|
960
|
+
* @type {Array<ReverseProxyRule>}
|
|
961
|
+
* @memberof ReverseProxy
|
|
709
962
|
*/
|
|
710
|
-
|
|
963
|
+
rules?: Array<ReverseProxyRule>;
|
|
711
964
|
/**
|
|
712
965
|
*
|
|
713
966
|
* @type {string}
|
|
714
|
-
* @memberof
|
|
967
|
+
* @memberof ReverseProxy
|
|
715
968
|
*/
|
|
716
969
|
apiVersion: string;
|
|
717
970
|
/**
|
|
718
971
|
*
|
|
719
972
|
* @type {string}
|
|
720
|
-
* @memberof
|
|
973
|
+
* @memberof ReverseProxy
|
|
721
974
|
*/
|
|
722
975
|
kind: string;
|
|
723
976
|
/**
|
|
724
977
|
*
|
|
725
978
|
* @type {Metadata}
|
|
726
|
-
* @memberof
|
|
979
|
+
* @memberof ReverseProxy
|
|
727
980
|
*/
|
|
728
981
|
metadata: Metadata;
|
|
729
982
|
}
|
|
730
983
|
/**
|
|
731
984
|
*
|
|
732
985
|
* @export
|
|
733
|
-
* @interface
|
|
986
|
+
* @interface ReverseProxyList
|
|
734
987
|
*/
|
|
735
|
-
interface
|
|
988
|
+
interface ReverseProxyList {
|
|
736
989
|
/**
|
|
737
|
-
*
|
|
738
|
-
* @type {
|
|
739
|
-
* @memberof
|
|
990
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
991
|
+
* @type {number}
|
|
992
|
+
* @memberof ReverseProxyList
|
|
740
993
|
*/
|
|
741
|
-
|
|
994
|
+
page: number;
|
|
742
995
|
/**
|
|
743
|
-
*
|
|
744
|
-
* @type {
|
|
745
|
-
* @memberof
|
|
996
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
997
|
+
* @type {number}
|
|
998
|
+
* @memberof ReverseProxyList
|
|
746
999
|
*/
|
|
747
|
-
|
|
1000
|
+
size: number;
|
|
748
1001
|
/**
|
|
749
|
-
*
|
|
750
|
-
* @type {
|
|
751
|
-
* @memberof
|
|
1002
|
+
* Total elements.
|
|
1003
|
+
* @type {number}
|
|
1004
|
+
* @memberof ReverseProxyList
|
|
752
1005
|
*/
|
|
753
|
-
|
|
754
|
-
}
|
|
755
|
-
/**
|
|
756
|
-
*
|
|
757
|
-
* @export
|
|
758
|
-
* @interface ReverseProxy
|
|
759
|
-
*/
|
|
760
|
-
interface ReverseProxy {
|
|
1006
|
+
total: number;
|
|
761
1007
|
/**
|
|
762
|
-
*
|
|
763
|
-
* @type {Array<
|
|
764
|
-
* @memberof
|
|
1008
|
+
* A chunk of items.
|
|
1009
|
+
* @type {Array<ReverseProxy>}
|
|
1010
|
+
* @memberof ReverseProxyList
|
|
765
1011
|
*/
|
|
766
|
-
|
|
1012
|
+
items: Array<ReverseProxy>;
|
|
767
1013
|
/**
|
|
768
|
-
*
|
|
769
|
-
* @type {
|
|
770
|
-
* @memberof
|
|
1014
|
+
* Indicates whether current page is the first page.
|
|
1015
|
+
* @type {boolean}
|
|
1016
|
+
* @memberof ReverseProxyList
|
|
771
1017
|
*/
|
|
772
|
-
|
|
1018
|
+
first: boolean;
|
|
773
1019
|
/**
|
|
774
|
-
*
|
|
775
|
-
* @type {
|
|
776
|
-
* @memberof
|
|
1020
|
+
* Indicates whether current page is the last page.
|
|
1021
|
+
* @type {boolean}
|
|
1022
|
+
* @memberof ReverseProxyList
|
|
777
1023
|
*/
|
|
778
|
-
|
|
1024
|
+
last: boolean;
|
|
779
1025
|
/**
|
|
780
|
-
*
|
|
781
|
-
* @type {
|
|
782
|
-
* @memberof
|
|
1026
|
+
* Indicates whether current page has previous page.
|
|
1027
|
+
* @type {boolean}
|
|
1028
|
+
* @memberof ReverseProxyList
|
|
783
1029
|
*/
|
|
784
|
-
|
|
1030
|
+
hasNext: boolean;
|
|
1031
|
+
/**
|
|
1032
|
+
* Indicates whether current page has previous page.
|
|
1033
|
+
* @type {boolean}
|
|
1034
|
+
* @memberof ReverseProxyList
|
|
1035
|
+
*/
|
|
1036
|
+
hasPrevious: boolean;
|
|
785
1037
|
}
|
|
786
1038
|
/**
|
|
787
1039
|
*
|
|
@@ -870,6 +1122,116 @@ interface RoleBinding {
|
|
|
870
1122
|
*/
|
|
871
1123
|
metadata: Metadata;
|
|
872
1124
|
}
|
|
1125
|
+
/**
|
|
1126
|
+
*
|
|
1127
|
+
* @export
|
|
1128
|
+
* @interface RoleBindingList
|
|
1129
|
+
*/
|
|
1130
|
+
interface RoleBindingList {
|
|
1131
|
+
/**
|
|
1132
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1133
|
+
* @type {number}
|
|
1134
|
+
* @memberof RoleBindingList
|
|
1135
|
+
*/
|
|
1136
|
+
page: number;
|
|
1137
|
+
/**
|
|
1138
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1139
|
+
* @type {number}
|
|
1140
|
+
* @memberof RoleBindingList
|
|
1141
|
+
*/
|
|
1142
|
+
size: number;
|
|
1143
|
+
/**
|
|
1144
|
+
* Total elements.
|
|
1145
|
+
* @type {number}
|
|
1146
|
+
* @memberof RoleBindingList
|
|
1147
|
+
*/
|
|
1148
|
+
total: number;
|
|
1149
|
+
/**
|
|
1150
|
+
* A chunk of items.
|
|
1151
|
+
* @type {Array<RoleBinding>}
|
|
1152
|
+
* @memberof RoleBindingList
|
|
1153
|
+
*/
|
|
1154
|
+
items: Array<RoleBinding>;
|
|
1155
|
+
/**
|
|
1156
|
+
* Indicates whether current page is the first page.
|
|
1157
|
+
* @type {boolean}
|
|
1158
|
+
* @memberof RoleBindingList
|
|
1159
|
+
*/
|
|
1160
|
+
first: boolean;
|
|
1161
|
+
/**
|
|
1162
|
+
* Indicates whether current page is the last page.
|
|
1163
|
+
* @type {boolean}
|
|
1164
|
+
* @memberof RoleBindingList
|
|
1165
|
+
*/
|
|
1166
|
+
last: boolean;
|
|
1167
|
+
/**
|
|
1168
|
+
* Indicates whether current page has previous page.
|
|
1169
|
+
* @type {boolean}
|
|
1170
|
+
* @memberof RoleBindingList
|
|
1171
|
+
*/
|
|
1172
|
+
hasNext: boolean;
|
|
1173
|
+
/**
|
|
1174
|
+
* Indicates whether current page has previous page.
|
|
1175
|
+
* @type {boolean}
|
|
1176
|
+
* @memberof RoleBindingList
|
|
1177
|
+
*/
|
|
1178
|
+
hasPrevious: boolean;
|
|
1179
|
+
}
|
|
1180
|
+
/**
|
|
1181
|
+
*
|
|
1182
|
+
* @export
|
|
1183
|
+
* @interface RoleList
|
|
1184
|
+
*/
|
|
1185
|
+
interface RoleList {
|
|
1186
|
+
/**
|
|
1187
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1188
|
+
* @type {number}
|
|
1189
|
+
* @memberof RoleList
|
|
1190
|
+
*/
|
|
1191
|
+
page: number;
|
|
1192
|
+
/**
|
|
1193
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1194
|
+
* @type {number}
|
|
1195
|
+
* @memberof RoleList
|
|
1196
|
+
*/
|
|
1197
|
+
size: number;
|
|
1198
|
+
/**
|
|
1199
|
+
* Total elements.
|
|
1200
|
+
* @type {number}
|
|
1201
|
+
* @memberof RoleList
|
|
1202
|
+
*/
|
|
1203
|
+
total: number;
|
|
1204
|
+
/**
|
|
1205
|
+
* A chunk of items.
|
|
1206
|
+
* @type {Array<Role>}
|
|
1207
|
+
* @memberof RoleList
|
|
1208
|
+
*/
|
|
1209
|
+
items: Array<Role>;
|
|
1210
|
+
/**
|
|
1211
|
+
* Indicates whether current page is the first page.
|
|
1212
|
+
* @type {boolean}
|
|
1213
|
+
* @memberof RoleList
|
|
1214
|
+
*/
|
|
1215
|
+
first: boolean;
|
|
1216
|
+
/**
|
|
1217
|
+
* Indicates whether current page is the last page.
|
|
1218
|
+
* @type {boolean}
|
|
1219
|
+
* @memberof RoleList
|
|
1220
|
+
*/
|
|
1221
|
+
last: boolean;
|
|
1222
|
+
/**
|
|
1223
|
+
* Indicates whether current page has previous page.
|
|
1224
|
+
* @type {boolean}
|
|
1225
|
+
* @memberof RoleList
|
|
1226
|
+
*/
|
|
1227
|
+
hasNext: boolean;
|
|
1228
|
+
/**
|
|
1229
|
+
* Indicates whether current page has previous page.
|
|
1230
|
+
* @type {boolean}
|
|
1231
|
+
* @memberof RoleList
|
|
1232
|
+
*/
|
|
1233
|
+
hasPrevious: boolean;
|
|
1234
|
+
}
|
|
873
1235
|
/**
|
|
874
1236
|
*
|
|
875
1237
|
* @export
|
|
@@ -929,19 +1291,74 @@ interface Setting {
|
|
|
929
1291
|
/**
|
|
930
1292
|
*
|
|
931
1293
|
* @export
|
|
932
|
-
* @interface
|
|
1294
|
+
* @interface SettingList
|
|
933
1295
|
*/
|
|
934
|
-
interface
|
|
1296
|
+
interface SettingList {
|
|
935
1297
|
/**
|
|
936
|
-
*
|
|
937
|
-
* @type {
|
|
938
|
-
* @memberof
|
|
1298
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1299
|
+
* @type {number}
|
|
1300
|
+
* @memberof SettingList
|
|
939
1301
|
*/
|
|
940
|
-
|
|
1302
|
+
page: number;
|
|
941
1303
|
/**
|
|
942
|
-
*
|
|
943
|
-
* @type {
|
|
944
|
-
* @memberof
|
|
1304
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1305
|
+
* @type {number}
|
|
1306
|
+
* @memberof SettingList
|
|
1307
|
+
*/
|
|
1308
|
+
size: number;
|
|
1309
|
+
/**
|
|
1310
|
+
* Total elements.
|
|
1311
|
+
* @type {number}
|
|
1312
|
+
* @memberof SettingList
|
|
1313
|
+
*/
|
|
1314
|
+
total: number;
|
|
1315
|
+
/**
|
|
1316
|
+
* A chunk of items.
|
|
1317
|
+
* @type {Array<Setting>}
|
|
1318
|
+
* @memberof SettingList
|
|
1319
|
+
*/
|
|
1320
|
+
items: Array<Setting>;
|
|
1321
|
+
/**
|
|
1322
|
+
* Indicates whether current page is the first page.
|
|
1323
|
+
* @type {boolean}
|
|
1324
|
+
* @memberof SettingList
|
|
1325
|
+
*/
|
|
1326
|
+
first: boolean;
|
|
1327
|
+
/**
|
|
1328
|
+
* Indicates whether current page is the last page.
|
|
1329
|
+
* @type {boolean}
|
|
1330
|
+
* @memberof SettingList
|
|
1331
|
+
*/
|
|
1332
|
+
last: boolean;
|
|
1333
|
+
/**
|
|
1334
|
+
* Indicates whether current page has previous page.
|
|
1335
|
+
* @type {boolean}
|
|
1336
|
+
* @memberof SettingList
|
|
1337
|
+
*/
|
|
1338
|
+
hasNext: boolean;
|
|
1339
|
+
/**
|
|
1340
|
+
* Indicates whether current page has previous page.
|
|
1341
|
+
* @type {boolean}
|
|
1342
|
+
* @memberof SettingList
|
|
1343
|
+
*/
|
|
1344
|
+
hasPrevious: boolean;
|
|
1345
|
+
}
|
|
1346
|
+
/**
|
|
1347
|
+
*
|
|
1348
|
+
* @export
|
|
1349
|
+
* @interface SettingSpec
|
|
1350
|
+
*/
|
|
1351
|
+
interface SettingSpec {
|
|
1352
|
+
/**
|
|
1353
|
+
*
|
|
1354
|
+
* @type {string}
|
|
1355
|
+
* @memberof SettingSpec
|
|
1356
|
+
*/
|
|
1357
|
+
group: string;
|
|
1358
|
+
/**
|
|
1359
|
+
*
|
|
1360
|
+
* @type {string}
|
|
1361
|
+
* @memberof SettingSpec
|
|
945
1362
|
*/
|
|
946
1363
|
label?: string;
|
|
947
1364
|
/**
|
|
@@ -1013,6 +1430,80 @@ interface User {
|
|
|
1013
1430
|
*/
|
|
1014
1431
|
metadata: Metadata;
|
|
1015
1432
|
}
|
|
1433
|
+
/**
|
|
1434
|
+
*
|
|
1435
|
+
* @export
|
|
1436
|
+
* @interface UserList
|
|
1437
|
+
*/
|
|
1438
|
+
interface UserList {
|
|
1439
|
+
/**
|
|
1440
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1441
|
+
* @type {number}
|
|
1442
|
+
* @memberof UserList
|
|
1443
|
+
*/
|
|
1444
|
+
page: number;
|
|
1445
|
+
/**
|
|
1446
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1447
|
+
* @type {number}
|
|
1448
|
+
* @memberof UserList
|
|
1449
|
+
*/
|
|
1450
|
+
size: number;
|
|
1451
|
+
/**
|
|
1452
|
+
* Total elements.
|
|
1453
|
+
* @type {number}
|
|
1454
|
+
* @memberof UserList
|
|
1455
|
+
*/
|
|
1456
|
+
total: number;
|
|
1457
|
+
/**
|
|
1458
|
+
* A chunk of items.
|
|
1459
|
+
* @type {Array<User>}
|
|
1460
|
+
* @memberof UserList
|
|
1461
|
+
*/
|
|
1462
|
+
items: Array<User>;
|
|
1463
|
+
/**
|
|
1464
|
+
* Indicates whether current page is the first page.
|
|
1465
|
+
* @type {boolean}
|
|
1466
|
+
* @memberof UserList
|
|
1467
|
+
*/
|
|
1468
|
+
first: boolean;
|
|
1469
|
+
/**
|
|
1470
|
+
* Indicates whether current page is the last page.
|
|
1471
|
+
* @type {boolean}
|
|
1472
|
+
* @memberof UserList
|
|
1473
|
+
*/
|
|
1474
|
+
last: boolean;
|
|
1475
|
+
/**
|
|
1476
|
+
* Indicates whether current page has previous page.
|
|
1477
|
+
* @type {boolean}
|
|
1478
|
+
* @memberof UserList
|
|
1479
|
+
*/
|
|
1480
|
+
hasNext: boolean;
|
|
1481
|
+
/**
|
|
1482
|
+
* Indicates whether current page has previous page.
|
|
1483
|
+
* @type {boolean}
|
|
1484
|
+
* @memberof UserList
|
|
1485
|
+
*/
|
|
1486
|
+
hasPrevious: boolean;
|
|
1487
|
+
}
|
|
1488
|
+
/**
|
|
1489
|
+
*
|
|
1490
|
+
* @export
|
|
1491
|
+
* @interface UserPermission
|
|
1492
|
+
*/
|
|
1493
|
+
interface UserPermission {
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* @type {Set<Role>}
|
|
1497
|
+
* @memberof UserPermission
|
|
1498
|
+
*/
|
|
1499
|
+
roles: Set<Role>;
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @type {Set<string>}
|
|
1503
|
+
* @memberof UserPermission
|
|
1504
|
+
*/
|
|
1505
|
+
uiPermissions: Set<string>;
|
|
1506
|
+
}
|
|
1016
1507
|
/**
|
|
1017
1508
|
*
|
|
1018
1509
|
* @export
|
|
@@ -1104,36 +1595,105 @@ interface UserStatus {
|
|
|
1104
1595
|
* @export
|
|
1105
1596
|
*/
|
|
1106
1597
|
declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1598
|
+
/**
|
|
1599
|
+
* Change password of user.
|
|
1600
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1601
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1602
|
+
* @param {*} [options] Override http request option.
|
|
1603
|
+
* @throws {RequiredError}
|
|
1604
|
+
*/
|
|
1605
|
+
changePassword: (name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1107
1606
|
/**
|
|
1108
1607
|
* Get current user detail
|
|
1109
1608
|
* @param {*} [options] Override http request option.
|
|
1110
1609
|
* @throws {RequiredError}
|
|
1111
1610
|
*/
|
|
1112
1611
|
getCurrentUserDetail: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1612
|
+
/**
|
|
1613
|
+
* Get permissions of user
|
|
1614
|
+
* @param {string} name User name
|
|
1615
|
+
* @param {*} [options] Override http request option.
|
|
1616
|
+
* @throws {RequiredError}
|
|
1617
|
+
*/
|
|
1618
|
+
getPermissions: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1619
|
+
/**
|
|
1620
|
+
* Grant permissions to user
|
|
1621
|
+
* @param {string} name User name
|
|
1622
|
+
* @param {GrantRequest} grantRequest
|
|
1623
|
+
* @param {*} [options] Override http request option.
|
|
1624
|
+
* @throws {RequiredError}
|
|
1625
|
+
*/
|
|
1626
|
+
grantPermission: (name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1113
1627
|
};
|
|
1114
1628
|
/**
|
|
1115
1629
|
* ApiHaloRunV1alpha1UserApi - functional programming interface
|
|
1116
1630
|
* @export
|
|
1117
1631
|
*/
|
|
1118
1632
|
declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
1633
|
+
/**
|
|
1634
|
+
* Change password of user.
|
|
1635
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1636
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1637
|
+
* @param {*} [options] Override http request option.
|
|
1638
|
+
* @throws {RequiredError}
|
|
1639
|
+
*/
|
|
1640
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
1119
1641
|
/**
|
|
1120
1642
|
* Get current user detail
|
|
1121
1643
|
* @param {*} [options] Override http request option.
|
|
1122
1644
|
* @throws {RequiredError}
|
|
1123
1645
|
*/
|
|
1124
1646
|
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
1647
|
+
/**
|
|
1648
|
+
* Get permissions of user
|
|
1649
|
+
* @param {string} name User name
|
|
1650
|
+
* @param {*} [options] Override http request option.
|
|
1651
|
+
* @throws {RequiredError}
|
|
1652
|
+
*/
|
|
1653
|
+
getPermissions(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserPermission>>;
|
|
1654
|
+
/**
|
|
1655
|
+
* Grant permissions to user
|
|
1656
|
+
* @param {string} name User name
|
|
1657
|
+
* @param {GrantRequest} grantRequest
|
|
1658
|
+
* @param {*} [options] Override http request option.
|
|
1659
|
+
* @throws {RequiredError}
|
|
1660
|
+
*/
|
|
1661
|
+
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
1125
1662
|
};
|
|
1126
1663
|
/**
|
|
1127
1664
|
* ApiHaloRunV1alpha1UserApi - factory interface
|
|
1128
1665
|
* @export
|
|
1129
1666
|
*/
|
|
1130
1667
|
declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1668
|
+
/**
|
|
1669
|
+
* Change password of user.
|
|
1670
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1671
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1672
|
+
* @param {*} [options] Override http request option.
|
|
1673
|
+
* @throws {RequiredError}
|
|
1674
|
+
*/
|
|
1675
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: any): AxiosPromise<User>;
|
|
1131
1676
|
/**
|
|
1132
1677
|
* Get current user detail
|
|
1133
1678
|
* @param {*} [options] Override http request option.
|
|
1134
1679
|
* @throws {RequiredError}
|
|
1135
1680
|
*/
|
|
1136
1681
|
getCurrentUserDetail(options?: any): AxiosPromise<User>;
|
|
1682
|
+
/**
|
|
1683
|
+
* Get permissions of user
|
|
1684
|
+
* @param {string} name User name
|
|
1685
|
+
* @param {*} [options] Override http request option.
|
|
1686
|
+
* @throws {RequiredError}
|
|
1687
|
+
*/
|
|
1688
|
+
getPermissions(name: string, options?: any): AxiosPromise<UserPermission>;
|
|
1689
|
+
/**
|
|
1690
|
+
* Grant permissions to user
|
|
1691
|
+
* @param {string} name User name
|
|
1692
|
+
* @param {GrantRequest} grantRequest
|
|
1693
|
+
* @param {*} [options] Override http request option.
|
|
1694
|
+
* @throws {RequiredError}
|
|
1695
|
+
*/
|
|
1696
|
+
grantPermission(name: string, grantRequest: GrantRequest, options?: any): AxiosPromise<User>;
|
|
1137
1697
|
};
|
|
1138
1698
|
/**
|
|
1139
1699
|
* ApiHaloRunV1alpha1UserApi - object-oriented interface
|
|
@@ -1142,6 +1702,15 @@ declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration,
|
|
|
1142
1702
|
* @extends {BaseAPI}
|
|
1143
1703
|
*/
|
|
1144
1704
|
declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
1705
|
+
/**
|
|
1706
|
+
* Change password of user.
|
|
1707
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1708
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1709
|
+
* @param {*} [options] Override http request option.
|
|
1710
|
+
* @throws {RequiredError}
|
|
1711
|
+
* @memberof ApiHaloRunV1alpha1UserApi
|
|
1712
|
+
*/
|
|
1713
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1145
1714
|
/**
|
|
1146
1715
|
* Get current user detail
|
|
1147
1716
|
* @param {*} [options] Override http request option.
|
|
@@ -1149,6 +1718,257 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1149
1718
|
* @memberof ApiHaloRunV1alpha1UserApi
|
|
1150
1719
|
*/
|
|
1151
1720
|
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1721
|
+
/**
|
|
1722
|
+
* Get permissions of user
|
|
1723
|
+
* @param {string} name User name
|
|
1724
|
+
* @param {*} [options] Override http request option.
|
|
1725
|
+
* @throws {RequiredError}
|
|
1726
|
+
* @memberof ApiHaloRunV1alpha1UserApi
|
|
1727
|
+
*/
|
|
1728
|
+
getPermissions(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserPermission, any>>;
|
|
1729
|
+
/**
|
|
1730
|
+
* Grant permissions to user
|
|
1731
|
+
* @param {string} name User name
|
|
1732
|
+
* @param {GrantRequest} grantRequest
|
|
1733
|
+
* @param {*} [options] Override http request option.
|
|
1734
|
+
* @throws {RequiredError}
|
|
1735
|
+
* @memberof ApiHaloRunV1alpha1UserApi
|
|
1736
|
+
*/
|
|
1737
|
+
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1738
|
+
}
|
|
1739
|
+
/**
|
|
1740
|
+
* AppleGuqingXyzV1alpha1AppleApi - axios parameter creator
|
|
1741
|
+
* @export
|
|
1742
|
+
*/
|
|
1743
|
+
declare const AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1744
|
+
/**
|
|
1745
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1746
|
+
* @param {Apple} [apple] Fresh apple
|
|
1747
|
+
* @param {*} [options] Override http request option.
|
|
1748
|
+
* @throws {RequiredError}
|
|
1749
|
+
*/
|
|
1750
|
+
createappleGuqingXyzV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1751
|
+
/**
|
|
1752
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1753
|
+
* @param {string} name Name of apple
|
|
1754
|
+
* @param {*} [options] Override http request option.
|
|
1755
|
+
* @throws {RequiredError}
|
|
1756
|
+
*/
|
|
1757
|
+
deleteappleGuqingXyzV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1758
|
+
/**
|
|
1759
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1760
|
+
* @param {string} name Name of apple
|
|
1761
|
+
* @param {*} [options] Override http request option.
|
|
1762
|
+
* @throws {RequiredError}
|
|
1763
|
+
*/
|
|
1764
|
+
getappleGuqingXyzV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1765
|
+
/**
|
|
1766
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1767
|
+
* @param {number} [page] Page index
|
|
1768
|
+
* @param {number} [size] Size of one page
|
|
1769
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1770
|
+
* @param {*} [options] Override http request option.
|
|
1771
|
+
* @throws {RequiredError}
|
|
1772
|
+
*/
|
|
1773
|
+
listappleGuqingXyzV1alpha1Apple: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1774
|
+
/**
|
|
1775
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1776
|
+
* @param {string} name Name of apple
|
|
1777
|
+
* @param {Apple} [apple] Updated apple
|
|
1778
|
+
* @param {*} [options] Override http request option.
|
|
1779
|
+
* @throws {RequiredError}
|
|
1780
|
+
*/
|
|
1781
|
+
updateappleGuqingXyzV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1782
|
+
};
|
|
1783
|
+
/**
|
|
1784
|
+
* AppleGuqingXyzV1alpha1AppleApi - functional programming interface
|
|
1785
|
+
* @export
|
|
1786
|
+
*/
|
|
1787
|
+
declare const AppleGuqingXyzV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
1788
|
+
/**
|
|
1789
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1790
|
+
* @param {Apple} [apple] Fresh apple
|
|
1791
|
+
* @param {*} [options] Override http request option.
|
|
1792
|
+
* @throws {RequiredError}
|
|
1793
|
+
*/
|
|
1794
|
+
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1795
|
+
/**
|
|
1796
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1797
|
+
* @param {string} name Name of apple
|
|
1798
|
+
* @param {*} [options] Override http request option.
|
|
1799
|
+
* @throws {RequiredError}
|
|
1800
|
+
*/
|
|
1801
|
+
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1802
|
+
/**
|
|
1803
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1804
|
+
* @param {string} name Name of apple
|
|
1805
|
+
* @param {*} [options] Override http request option.
|
|
1806
|
+
* @throws {RequiredError}
|
|
1807
|
+
*/
|
|
1808
|
+
getappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1809
|
+
/**
|
|
1810
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1811
|
+
* @param {number} [page] Page index
|
|
1812
|
+
* @param {number} [size] Size of one page
|
|
1813
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1814
|
+
* @param {*} [options] Override http request option.
|
|
1815
|
+
* @throws {RequiredError}
|
|
1816
|
+
*/
|
|
1817
|
+
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1818
|
+
/**
|
|
1819
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1820
|
+
* @param {string} name Name of apple
|
|
1821
|
+
* @param {Apple} [apple] Updated apple
|
|
1822
|
+
* @param {*} [options] Override http request option.
|
|
1823
|
+
* @throws {RequiredError}
|
|
1824
|
+
*/
|
|
1825
|
+
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1826
|
+
};
|
|
1827
|
+
/**
|
|
1828
|
+
* AppleGuqingXyzV1alpha1AppleApi - factory interface
|
|
1829
|
+
* @export
|
|
1830
|
+
*/
|
|
1831
|
+
declare const AppleGuqingXyzV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1832
|
+
/**
|
|
1833
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1834
|
+
* @param {Apple} [apple] Fresh apple
|
|
1835
|
+
* @param {*} [options] Override http request option.
|
|
1836
|
+
* @throws {RequiredError}
|
|
1837
|
+
*/
|
|
1838
|
+
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
1839
|
+
/**
|
|
1840
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1841
|
+
* @param {string} name Name of apple
|
|
1842
|
+
* @param {*} [options] Override http request option.
|
|
1843
|
+
* @throws {RequiredError}
|
|
1844
|
+
*/
|
|
1845
|
+
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
1846
|
+
/**
|
|
1847
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1848
|
+
* @param {string} name Name of apple
|
|
1849
|
+
* @param {*} [options] Override http request option.
|
|
1850
|
+
* @throws {RequiredError}
|
|
1851
|
+
*/
|
|
1852
|
+
getappleGuqingXyzV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
1853
|
+
/**
|
|
1854
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1855
|
+
* @param {number} [page] Page index
|
|
1856
|
+
* @param {number} [size] Size of one page
|
|
1857
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1858
|
+
* @param {*} [options] Override http request option.
|
|
1859
|
+
* @throws {RequiredError}
|
|
1860
|
+
*/
|
|
1861
|
+
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
1862
|
+
/**
|
|
1863
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1864
|
+
* @param {string} name Name of apple
|
|
1865
|
+
* @param {Apple} [apple] Updated apple
|
|
1866
|
+
* @param {*} [options] Override http request option.
|
|
1867
|
+
* @throws {RequiredError}
|
|
1868
|
+
*/
|
|
1869
|
+
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
1870
|
+
};
|
|
1871
|
+
/**
|
|
1872
|
+
* AppleGuqingXyzV1alpha1AppleApi - object-oriented interface
|
|
1873
|
+
* @export
|
|
1874
|
+
* @class AppleGuqingXyzV1alpha1AppleApi
|
|
1875
|
+
* @extends {BaseAPI}
|
|
1876
|
+
*/
|
|
1877
|
+
declare class AppleGuqingXyzV1alpha1AppleApi extends BaseAPI {
|
|
1878
|
+
/**
|
|
1879
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1880
|
+
* @param {Apple} [apple] Fresh apple
|
|
1881
|
+
* @param {*} [options] Override http request option.
|
|
1882
|
+
* @throws {RequiredError}
|
|
1883
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1884
|
+
*/
|
|
1885
|
+
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1886
|
+
/**
|
|
1887
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1888
|
+
* @param {string} name Name of apple
|
|
1889
|
+
* @param {*} [options] Override http request option.
|
|
1890
|
+
* @throws {RequiredError}
|
|
1891
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1892
|
+
*/
|
|
1893
|
+
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1894
|
+
/**
|
|
1895
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1896
|
+
* @param {string} name Name of apple
|
|
1897
|
+
* @param {*} [options] Override http request option.
|
|
1898
|
+
* @throws {RequiredError}
|
|
1899
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1900
|
+
*/
|
|
1901
|
+
getappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1902
|
+
/**
|
|
1903
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1904
|
+
* @param {number} [page] Page index
|
|
1905
|
+
* @param {number} [size] Size of one page
|
|
1906
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1907
|
+
* @param {*} [options] Override http request option.
|
|
1908
|
+
* @throws {RequiredError}
|
|
1909
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1910
|
+
*/
|
|
1911
|
+
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1912
|
+
/**
|
|
1913
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1914
|
+
* @param {string} name Name of apple
|
|
1915
|
+
* @param {Apple} [apple] Updated apple
|
|
1916
|
+
* @param {*} [options] Override http request option.
|
|
1917
|
+
* @throws {RequiredError}
|
|
1918
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1919
|
+
*/
|
|
1920
|
+
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1921
|
+
}
|
|
1922
|
+
/**
|
|
1923
|
+
* ApplesControllerApi - axios parameter creator
|
|
1924
|
+
* @export
|
|
1925
|
+
*/
|
|
1926
|
+
declare const ApplesControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1927
|
+
/**
|
|
1928
|
+
*
|
|
1929
|
+
* @param {*} [options] Override http request option.
|
|
1930
|
+
* @throws {RequiredError}
|
|
1931
|
+
*/
|
|
1932
|
+
hello: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1933
|
+
};
|
|
1934
|
+
/**
|
|
1935
|
+
* ApplesControllerApi - functional programming interface
|
|
1936
|
+
* @export
|
|
1937
|
+
*/
|
|
1938
|
+
declare const ApplesControllerApiFp: (configuration?: Configuration) => {
|
|
1939
|
+
/**
|
|
1940
|
+
*
|
|
1941
|
+
* @param {*} [options] Override http request option.
|
|
1942
|
+
* @throws {RequiredError}
|
|
1943
|
+
*/
|
|
1944
|
+
hello(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1945
|
+
};
|
|
1946
|
+
/**
|
|
1947
|
+
* ApplesControllerApi - factory interface
|
|
1948
|
+
* @export
|
|
1949
|
+
*/
|
|
1950
|
+
declare const ApplesControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1951
|
+
/**
|
|
1952
|
+
*
|
|
1953
|
+
* @param {*} [options] Override http request option.
|
|
1954
|
+
* @throws {RequiredError}
|
|
1955
|
+
*/
|
|
1956
|
+
hello(options?: any): AxiosPromise<string>;
|
|
1957
|
+
};
|
|
1958
|
+
/**
|
|
1959
|
+
* ApplesControllerApi - object-oriented interface
|
|
1960
|
+
* @export
|
|
1961
|
+
* @class ApplesControllerApi
|
|
1962
|
+
* @extends {BaseAPI}
|
|
1963
|
+
*/
|
|
1964
|
+
declare class ApplesControllerApi extends BaseAPI {
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @param {*} [options] Override http request option.
|
|
1968
|
+
* @throws {RequiredError}
|
|
1969
|
+
* @memberof ApplesControllerApi
|
|
1970
|
+
*/
|
|
1971
|
+
hello(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1152
1972
|
}
|
|
1153
1973
|
/**
|
|
1154
1974
|
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
@@ -1228,7 +2048,7 @@ declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
|
1228
2048
|
* @param {*} [options] Override http request option.
|
|
1229
2049
|
* @throws {RequiredError}
|
|
1230
2050
|
*/
|
|
1231
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2051
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1232
2052
|
/**
|
|
1233
2053
|
* Update core.halo.run/v1alpha1/Link
|
|
1234
2054
|
* @param {string} name Name of link
|
|
@@ -1272,7 +2092,7 @@ declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration,
|
|
|
1272
2092
|
* @param {*} [options] Override http request option.
|
|
1273
2093
|
* @throws {RequiredError}
|
|
1274
2094
|
*/
|
|
1275
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
2095
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
1276
2096
|
/**
|
|
1277
2097
|
* Update core.halo.run/v1alpha1/Link
|
|
1278
2098
|
* @param {string} name Name of link
|
|
@@ -1322,7 +2142,7 @@ declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
|
1322
2142
|
* @throws {RequiredError}
|
|
1323
2143
|
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
1324
2144
|
*/
|
|
1325
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2145
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1326
2146
|
/**
|
|
1327
2147
|
* Update core.halo.run/v1alpha1/Link
|
|
1328
2148
|
* @param {string} name Name of link
|
|
@@ -1411,7 +2231,7 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration)
|
|
|
1411
2231
|
* @param {*} [options] Override http request option.
|
|
1412
2232
|
* @throws {RequiredError}
|
|
1413
2233
|
*/
|
|
1414
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2234
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1415
2235
|
/**
|
|
1416
2236
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
1417
2237
|
* @param {string} name Name of linkgroup
|
|
@@ -1455,7 +2275,7 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configura
|
|
|
1455
2275
|
* @param {*} [options] Override http request option.
|
|
1456
2276
|
* @throws {RequiredError}
|
|
1457
2277
|
*/
|
|
1458
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
2278
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
1459
2279
|
/**
|
|
1460
2280
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
1461
2281
|
* @param {string} name Name of linkgroup
|
|
@@ -1505,7 +2325,7 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
1505
2325
|
* @throws {RequiredError}
|
|
1506
2326
|
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
1507
2327
|
*/
|
|
1508
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2328
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1509
2329
|
/**
|
|
1510
2330
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
1511
2331
|
* @param {string} name Name of linkgroup
|
|
@@ -1516,189 +2336,6 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
1516
2336
|
*/
|
|
1517
2337
|
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
1518
2338
|
}
|
|
1519
|
-
/**
|
|
1520
|
-
* CoreHaloRunV1alpha1PostApi - axios parameter creator
|
|
1521
|
-
* @export
|
|
1522
|
-
*/
|
|
1523
|
-
declare const CoreHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1524
|
-
/**
|
|
1525
|
-
* Create core.halo.run/v1alpha1/Post
|
|
1526
|
-
* @param {Post} [post] Fresh post
|
|
1527
|
-
* @param {*} [options] Override http request option.
|
|
1528
|
-
* @throws {RequiredError}
|
|
1529
|
-
*/
|
|
1530
|
-
createcoreHaloRunV1alpha1Post: (post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1531
|
-
/**
|
|
1532
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
1533
|
-
* @param {string} name Name of post
|
|
1534
|
-
* @param {*} [options] Override http request option.
|
|
1535
|
-
* @throws {RequiredError}
|
|
1536
|
-
*/
|
|
1537
|
-
deletecoreHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1538
|
-
/**
|
|
1539
|
-
* Get core.halo.run/v1alpha1/Post
|
|
1540
|
-
* @param {string} name Name of post
|
|
1541
|
-
* @param {*} [options] Override http request option.
|
|
1542
|
-
* @throws {RequiredError}
|
|
1543
|
-
*/
|
|
1544
|
-
getcoreHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1545
|
-
/**
|
|
1546
|
-
* List core.halo.run/v1alpha1/Post
|
|
1547
|
-
* @param {number} [page] Page index
|
|
1548
|
-
* @param {number} [size] Size of one page
|
|
1549
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1550
|
-
* @param {*} [options] Override http request option.
|
|
1551
|
-
* @throws {RequiredError}
|
|
1552
|
-
*/
|
|
1553
|
-
listcoreHaloRunV1alpha1Post: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1554
|
-
/**
|
|
1555
|
-
* Update core.halo.run/v1alpha1/Post
|
|
1556
|
-
* @param {string} name Name of post
|
|
1557
|
-
* @param {Post} [post] Updated post
|
|
1558
|
-
* @param {*} [options] Override http request option.
|
|
1559
|
-
* @throws {RequiredError}
|
|
1560
|
-
*/
|
|
1561
|
-
updatecoreHaloRunV1alpha1Post: (name: string, post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1562
|
-
};
|
|
1563
|
-
/**
|
|
1564
|
-
* CoreHaloRunV1alpha1PostApi - functional programming interface
|
|
1565
|
-
* @export
|
|
1566
|
-
*/
|
|
1567
|
-
declare const CoreHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
1568
|
-
/**
|
|
1569
|
-
* Create core.halo.run/v1alpha1/Post
|
|
1570
|
-
* @param {Post} [post] Fresh post
|
|
1571
|
-
* @param {*} [options] Override http request option.
|
|
1572
|
-
* @throws {RequiredError}
|
|
1573
|
-
*/
|
|
1574
|
-
createcoreHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
1575
|
-
/**
|
|
1576
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
1577
|
-
* @param {string} name Name of post
|
|
1578
|
-
* @param {*} [options] Override http request option.
|
|
1579
|
-
* @throws {RequiredError}
|
|
1580
|
-
*/
|
|
1581
|
-
deletecoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1582
|
-
/**
|
|
1583
|
-
* Get core.halo.run/v1alpha1/Post
|
|
1584
|
-
* @param {string} name Name of post
|
|
1585
|
-
* @param {*} [options] Override http request option.
|
|
1586
|
-
* @throws {RequiredError}
|
|
1587
|
-
*/
|
|
1588
|
-
getcoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
1589
|
-
/**
|
|
1590
|
-
* List core.halo.run/v1alpha1/Post
|
|
1591
|
-
* @param {number} [page] Page index
|
|
1592
|
-
* @param {number} [size] Size of one page
|
|
1593
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1594
|
-
* @param {*} [options] Override http request option.
|
|
1595
|
-
* @throws {RequiredError}
|
|
1596
|
-
*/
|
|
1597
|
-
listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Post>>>;
|
|
1598
|
-
/**
|
|
1599
|
-
* Update core.halo.run/v1alpha1/Post
|
|
1600
|
-
* @param {string} name Name of post
|
|
1601
|
-
* @param {Post} [post] Updated post
|
|
1602
|
-
* @param {*} [options] Override http request option.
|
|
1603
|
-
* @throws {RequiredError}
|
|
1604
|
-
*/
|
|
1605
|
-
updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
1606
|
-
};
|
|
1607
|
-
/**
|
|
1608
|
-
* CoreHaloRunV1alpha1PostApi - factory interface
|
|
1609
|
-
* @export
|
|
1610
|
-
*/
|
|
1611
|
-
declare const CoreHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1612
|
-
/**
|
|
1613
|
-
* Create core.halo.run/v1alpha1/Post
|
|
1614
|
-
* @param {Post} [post] Fresh post
|
|
1615
|
-
* @param {*} [options] Override http request option.
|
|
1616
|
-
* @throws {RequiredError}
|
|
1617
|
-
*/
|
|
1618
|
-
createcoreHaloRunV1alpha1Post(post?: Post, options?: any): AxiosPromise<Post>;
|
|
1619
|
-
/**
|
|
1620
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
1621
|
-
* @param {string} name Name of post
|
|
1622
|
-
* @param {*} [options] Override http request option.
|
|
1623
|
-
* @throws {RequiredError}
|
|
1624
|
-
*/
|
|
1625
|
-
deletecoreHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<void>;
|
|
1626
|
-
/**
|
|
1627
|
-
* Get core.halo.run/v1alpha1/Post
|
|
1628
|
-
* @param {string} name Name of post
|
|
1629
|
-
* @param {*} [options] Override http request option.
|
|
1630
|
-
* @throws {RequiredError}
|
|
1631
|
-
*/
|
|
1632
|
-
getcoreHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<Post>;
|
|
1633
|
-
/**
|
|
1634
|
-
* List core.halo.run/v1alpha1/Post
|
|
1635
|
-
* @param {number} [page] Page index
|
|
1636
|
-
* @param {number} [size] Size of one page
|
|
1637
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1638
|
-
* @param {*} [options] Override http request option.
|
|
1639
|
-
* @throws {RequiredError}
|
|
1640
|
-
*/
|
|
1641
|
-
listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<Post>>;
|
|
1642
|
-
/**
|
|
1643
|
-
* Update core.halo.run/v1alpha1/Post
|
|
1644
|
-
* @param {string} name Name of post
|
|
1645
|
-
* @param {Post} [post] Updated post
|
|
1646
|
-
* @param {*} [options] Override http request option.
|
|
1647
|
-
* @throws {RequiredError}
|
|
1648
|
-
*/
|
|
1649
|
-
updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: any): AxiosPromise<Post>;
|
|
1650
|
-
};
|
|
1651
|
-
/**
|
|
1652
|
-
* CoreHaloRunV1alpha1PostApi - object-oriented interface
|
|
1653
|
-
* @export
|
|
1654
|
-
* @class CoreHaloRunV1alpha1PostApi
|
|
1655
|
-
* @extends {BaseAPI}
|
|
1656
|
-
*/
|
|
1657
|
-
declare class CoreHaloRunV1alpha1PostApi extends BaseAPI {
|
|
1658
|
-
/**
|
|
1659
|
-
* Create core.halo.run/v1alpha1/Post
|
|
1660
|
-
* @param {Post} [post] Fresh post
|
|
1661
|
-
* @param {*} [options] Override http request option.
|
|
1662
|
-
* @throws {RequiredError}
|
|
1663
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
1664
|
-
*/
|
|
1665
|
-
createcoreHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
1666
|
-
/**
|
|
1667
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
1668
|
-
* @param {string} name Name of post
|
|
1669
|
-
* @param {*} [options] Override http request option.
|
|
1670
|
-
* @throws {RequiredError}
|
|
1671
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
1672
|
-
*/
|
|
1673
|
-
deletecoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1674
|
-
/**
|
|
1675
|
-
* Get core.halo.run/v1alpha1/Post
|
|
1676
|
-
* @param {string} name Name of post
|
|
1677
|
-
* @param {*} [options] Override http request option.
|
|
1678
|
-
* @throws {RequiredError}
|
|
1679
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
1680
|
-
*/
|
|
1681
|
-
getcoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
1682
|
-
/**
|
|
1683
|
-
* List core.halo.run/v1alpha1/Post
|
|
1684
|
-
* @param {number} [page] Page index
|
|
1685
|
-
* @param {number} [size] Size of one page
|
|
1686
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1687
|
-
* @param {*} [options] Override http request option.
|
|
1688
|
-
* @throws {RequiredError}
|
|
1689
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
1690
|
-
*/
|
|
1691
|
-
listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post[], any>>;
|
|
1692
|
-
/**
|
|
1693
|
-
* Update core.halo.run/v1alpha1/Post
|
|
1694
|
-
* @param {string} name Name of post
|
|
1695
|
-
* @param {Post} [post] Updated post
|
|
1696
|
-
* @param {*} [options] Override http request option.
|
|
1697
|
-
* @throws {RequiredError}
|
|
1698
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
1699
|
-
*/
|
|
1700
|
-
updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
1701
|
-
}
|
|
1702
2339
|
/**
|
|
1703
2340
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
1704
2341
|
* @export
|
|
@@ -1777,7 +2414,7 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
|
|
|
1777
2414
|
* @param {*} [options] Override http request option.
|
|
1778
2415
|
* @throws {RequiredError}
|
|
1779
2416
|
*/
|
|
1780
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2417
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
1781
2418
|
/**
|
|
1782
2419
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1783
2420
|
* @param {string} name Name of plugin
|
|
@@ -1821,7 +2458,7 @@ declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configurat
|
|
|
1821
2458
|
* @param {*} [options] Override http request option.
|
|
1822
2459
|
* @throws {RequiredError}
|
|
1823
2460
|
*/
|
|
1824
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
2461
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<PluginList>;
|
|
1825
2462
|
/**
|
|
1826
2463
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1827
2464
|
* @param {string} name Name of plugin
|
|
@@ -1871,7 +2508,7 @@ declare class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
1871
2508
|
* @throws {RequiredError}
|
|
1872
2509
|
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
1873
2510
|
*/
|
|
1874
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2511
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
1875
2512
|
/**
|
|
1876
2513
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
1877
2514
|
* @param {string} name Name of plugin
|
|
@@ -1960,7 +2597,7 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
|
|
|
1960
2597
|
* @param {*} [options] Override http request option.
|
|
1961
2598
|
* @throws {RequiredError}
|
|
1962
2599
|
*/
|
|
1963
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2600
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
|
|
1964
2601
|
/**
|
|
1965
2602
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
1966
2603
|
* @param {string} name Name of reverseproxy
|
|
@@ -2004,7 +2641,7 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Conf
|
|
|
2004
2641
|
* @param {*} [options] Override http request option.
|
|
2005
2642
|
* @throws {RequiredError}
|
|
2006
2643
|
*/
|
|
2007
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
2644
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<ReverseProxyList>;
|
|
2008
2645
|
/**
|
|
2009
2646
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2010
2647
|
* @param {string} name Name of reverseproxy
|
|
@@ -2054,7 +2691,7 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2054
2691
|
* @throws {RequiredError}
|
|
2055
2692
|
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
2056
2693
|
*/
|
|
2057
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2694
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxyList, any>>;
|
|
2058
2695
|
/**
|
|
2059
2696
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2060
2697
|
* @param {string} name Name of reverseproxy
|
|
@@ -2143,7 +2780,7 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
|
|
|
2143
2780
|
* @param {*} [options] Override http request option.
|
|
2144
2781
|
* @throws {RequiredError}
|
|
2145
2782
|
*/
|
|
2146
|
-
listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2783
|
+
listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
|
|
2147
2784
|
/**
|
|
2148
2785
|
* Update v1alpha1/ConfigMap
|
|
2149
2786
|
* @param {string} name Name of configmap
|
|
@@ -2187,7 +2824,7 @@ declare const V1alpha1ConfigMapApiFactory: (configuration?: Configuration, baseP
|
|
|
2187
2824
|
* @param {*} [options] Override http request option.
|
|
2188
2825
|
* @throws {RequiredError}
|
|
2189
2826
|
*/
|
|
2190
|
-
listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
2827
|
+
listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<ConfigMapList>;
|
|
2191
2828
|
/**
|
|
2192
2829
|
* Update v1alpha1/ConfigMap
|
|
2193
2830
|
* @param {string} name Name of configmap
|
|
@@ -2237,7 +2874,7 @@ declare class V1alpha1ConfigMapApi extends BaseAPI {
|
|
|
2237
2874
|
* @throws {RequiredError}
|
|
2238
2875
|
* @memberof V1alpha1ConfigMapApi
|
|
2239
2876
|
*/
|
|
2240
|
-
listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2877
|
+
listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMapList, any>>;
|
|
2241
2878
|
/**
|
|
2242
2879
|
* Update v1alpha1/ConfigMap
|
|
2243
2880
|
* @param {string} name Name of configmap
|
|
@@ -2326,7 +2963,7 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
|
|
|
2326
2963
|
* @param {*} [options] Override http request option.
|
|
2327
2964
|
* @throws {RequiredError}
|
|
2328
2965
|
*/
|
|
2329
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2966
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
|
|
2330
2967
|
/**
|
|
2331
2968
|
* Update v1alpha1/PersonalAccessToken
|
|
2332
2969
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2370,7 +3007,7 @@ declare const V1alpha1PersonalAccessTokenApiFactory: (configuration?: Configurat
|
|
|
2370
3007
|
* @param {*} [options] Override http request option.
|
|
2371
3008
|
* @throws {RequiredError}
|
|
2372
3009
|
*/
|
|
2373
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
3010
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<PersonalAccessTokenList>;
|
|
2374
3011
|
/**
|
|
2375
3012
|
* Update v1alpha1/PersonalAccessToken
|
|
2376
3013
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2420,7 +3057,7 @@ declare class V1alpha1PersonalAccessTokenApi extends BaseAPI {
|
|
|
2420
3057
|
* @throws {RequiredError}
|
|
2421
3058
|
* @memberof V1alpha1PersonalAccessTokenApi
|
|
2422
3059
|
*/
|
|
2423
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3060
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessTokenList, any>>;
|
|
2424
3061
|
/**
|
|
2425
3062
|
* Update v1alpha1/PersonalAccessToken
|
|
2426
3063
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2509,7 +3146,7 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
|
|
|
2509
3146
|
* @param {*} [options] Override http request option.
|
|
2510
3147
|
* @throws {RequiredError}
|
|
2511
3148
|
*/
|
|
2512
|
-
listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3149
|
+
listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
|
|
2513
3150
|
/**
|
|
2514
3151
|
* Update v1alpha1/Role
|
|
2515
3152
|
* @param {string} name Name of role
|
|
@@ -2553,7 +3190,7 @@ declare const V1alpha1RoleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2553
3190
|
* @param {*} [options] Override http request option.
|
|
2554
3191
|
* @throws {RequiredError}
|
|
2555
3192
|
*/
|
|
2556
|
-
listv1alpha1Role(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
3193
|
+
listv1alpha1Role(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<RoleList>;
|
|
2557
3194
|
/**
|
|
2558
3195
|
* Update v1alpha1/Role
|
|
2559
3196
|
* @param {string} name Name of role
|
|
@@ -2603,7 +3240,7 @@ declare class V1alpha1RoleApi extends BaseAPI {
|
|
|
2603
3240
|
* @throws {RequiredError}
|
|
2604
3241
|
* @memberof V1alpha1RoleApi
|
|
2605
3242
|
*/
|
|
2606
|
-
listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3243
|
+
listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleList, any>>;
|
|
2607
3244
|
/**
|
|
2608
3245
|
* Update v1alpha1/Role
|
|
2609
3246
|
* @param {string} name Name of role
|
|
@@ -2692,7 +3329,7 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
|
|
|
2692
3329
|
* @param {*} [options] Override http request option.
|
|
2693
3330
|
* @throws {RequiredError}
|
|
2694
3331
|
*/
|
|
2695
|
-
listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3332
|
+
listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
|
|
2696
3333
|
/**
|
|
2697
3334
|
* Update v1alpha1/RoleBinding
|
|
2698
3335
|
* @param {string} name Name of rolebinding
|
|
@@ -2736,7 +3373,7 @@ declare const V1alpha1RoleBindingApiFactory: (configuration?: Configuration, bas
|
|
|
2736
3373
|
* @param {*} [options] Override http request option.
|
|
2737
3374
|
* @throws {RequiredError}
|
|
2738
3375
|
*/
|
|
2739
|
-
listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
3376
|
+
listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<RoleBindingList>;
|
|
2740
3377
|
/**
|
|
2741
3378
|
* Update v1alpha1/RoleBinding
|
|
2742
3379
|
* @param {string} name Name of rolebinding
|
|
@@ -2786,7 +3423,7 @@ declare class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
2786
3423
|
* @throws {RequiredError}
|
|
2787
3424
|
* @memberof V1alpha1RoleBindingApi
|
|
2788
3425
|
*/
|
|
2789
|
-
listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3426
|
+
listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBindingList, any>>;
|
|
2790
3427
|
/**
|
|
2791
3428
|
* Update v1alpha1/RoleBinding
|
|
2792
3429
|
* @param {string} name Name of rolebinding
|
|
@@ -2875,7 +3512,7 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
|
|
|
2875
3512
|
* @param {*} [options] Override http request option.
|
|
2876
3513
|
* @throws {RequiredError}
|
|
2877
3514
|
*/
|
|
2878
|
-
listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3515
|
+
listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
|
|
2879
3516
|
/**
|
|
2880
3517
|
* Update v1alpha1/Setting
|
|
2881
3518
|
* @param {string} name Name of setting
|
|
@@ -2919,7 +3556,7 @@ declare const V1alpha1SettingApiFactory: (configuration?: Configuration, basePat
|
|
|
2919
3556
|
* @param {*} [options] Override http request option.
|
|
2920
3557
|
* @throws {RequiredError}
|
|
2921
3558
|
*/
|
|
2922
|
-
listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
3559
|
+
listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<SettingList>;
|
|
2923
3560
|
/**
|
|
2924
3561
|
* Update v1alpha1/Setting
|
|
2925
3562
|
* @param {string} name Name of setting
|
|
@@ -2969,7 +3606,7 @@ declare class V1alpha1SettingApi extends BaseAPI {
|
|
|
2969
3606
|
* @throws {RequiredError}
|
|
2970
3607
|
* @memberof V1alpha1SettingApi
|
|
2971
3608
|
*/
|
|
2972
|
-
listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3609
|
+
listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SettingList, any>>;
|
|
2973
3610
|
/**
|
|
2974
3611
|
* Update v1alpha1/Setting
|
|
2975
3612
|
* @param {string} name Name of setting
|
|
@@ -3058,7 +3695,7 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
3058
3695
|
* @param {*} [options] Override http request option.
|
|
3059
3696
|
* @throws {RequiredError}
|
|
3060
3697
|
*/
|
|
3061
|
-
listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3698
|
+
listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
|
|
3062
3699
|
/**
|
|
3063
3700
|
* Update v1alpha1/User
|
|
3064
3701
|
* @param {string} name Name of user
|
|
@@ -3102,7 +3739,7 @@ declare const V1alpha1UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3102
3739
|
* @param {*} [options] Override http request option.
|
|
3103
3740
|
* @throws {RequiredError}
|
|
3104
3741
|
*/
|
|
3105
|
-
listv1alpha1User(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<
|
|
3742
|
+
listv1alpha1User(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<UserList>;
|
|
3106
3743
|
/**
|
|
3107
3744
|
* Update v1alpha1/User
|
|
3108
3745
|
* @param {string} name Name of user
|
|
@@ -3152,7 +3789,7 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3152
3789
|
* @throws {RequiredError}
|
|
3153
3790
|
* @memberof V1alpha1UserApi
|
|
3154
3791
|
*/
|
|
3155
|
-
listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3792
|
+
listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserList, any>>;
|
|
3156
3793
|
/**
|
|
3157
3794
|
* Update v1alpha1/User
|
|
3158
3795
|
* @param {string} name Name of user
|
|
@@ -3164,4 +3801,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3164
3801
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3165
3802
|
}
|
|
3166
3803
|
|
|
3167
|
-
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ConfigMap, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp,
|
|
3804
|
+
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleGuqingXyzV1alpha1AppleApi, AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator, AppleGuqingXyzV1alpha1AppleApiFactory, AppleGuqingXyzV1alpha1AppleApiFp, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, Subject, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|