@halo-dev/api-client 0.0.12 → 0.0.13
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/README.md +37 -0
- package/dist/index.cjs +1333 -101
- package/dist/index.d.ts +2134 -263
- package/dist/index.mjs +1310 -102
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,160 @@ declare class BaseAPI {
|
|
|
118
118
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @export
|
|
124
|
+
* @interface Attachment
|
|
125
|
+
*/
|
|
126
|
+
interface Attachment {
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {AttachmentSpec}
|
|
130
|
+
* @memberof Attachment
|
|
131
|
+
*/
|
|
132
|
+
spec: AttachmentSpec;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @type {AttachmentStatus}
|
|
136
|
+
* @memberof Attachment
|
|
137
|
+
*/
|
|
138
|
+
status?: AttachmentStatus;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof Attachment
|
|
143
|
+
*/
|
|
144
|
+
apiVersion: string;
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @type {string}
|
|
148
|
+
* @memberof Attachment
|
|
149
|
+
*/
|
|
150
|
+
kind: string;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @type {Metadata}
|
|
154
|
+
* @memberof Attachment
|
|
155
|
+
*/
|
|
156
|
+
metadata: Metadata;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @export
|
|
161
|
+
* @interface AttachmentList
|
|
162
|
+
*/
|
|
163
|
+
interface AttachmentList {
|
|
164
|
+
/**
|
|
165
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
166
|
+
* @type {number}
|
|
167
|
+
* @memberof AttachmentList
|
|
168
|
+
*/
|
|
169
|
+
page: number;
|
|
170
|
+
/**
|
|
171
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
172
|
+
* @type {number}
|
|
173
|
+
* @memberof AttachmentList
|
|
174
|
+
*/
|
|
175
|
+
size: number;
|
|
176
|
+
/**
|
|
177
|
+
* Total elements.
|
|
178
|
+
* @type {number}
|
|
179
|
+
* @memberof AttachmentList
|
|
180
|
+
*/
|
|
181
|
+
total: number;
|
|
182
|
+
/**
|
|
183
|
+
* A chunk of items.
|
|
184
|
+
* @type {Array<Attachment>}
|
|
185
|
+
* @memberof AttachmentList
|
|
186
|
+
*/
|
|
187
|
+
items: Array<Attachment>;
|
|
188
|
+
/**
|
|
189
|
+
* Indicates whether current page is the first page.
|
|
190
|
+
* @type {boolean}
|
|
191
|
+
* @memberof AttachmentList
|
|
192
|
+
*/
|
|
193
|
+
first: boolean;
|
|
194
|
+
/**
|
|
195
|
+
* Indicates whether current page is the last page.
|
|
196
|
+
* @type {boolean}
|
|
197
|
+
* @memberof AttachmentList
|
|
198
|
+
*/
|
|
199
|
+
last: boolean;
|
|
200
|
+
/**
|
|
201
|
+
* Indicates whether current page has previous page.
|
|
202
|
+
* @type {boolean}
|
|
203
|
+
* @memberof AttachmentList
|
|
204
|
+
*/
|
|
205
|
+
hasNext: boolean;
|
|
206
|
+
/**
|
|
207
|
+
* Indicates whether current page has previous page.
|
|
208
|
+
* @type {boolean}
|
|
209
|
+
* @memberof AttachmentList
|
|
210
|
+
*/
|
|
211
|
+
hasPrevious: boolean;
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @export
|
|
216
|
+
* @interface AttachmentSpec
|
|
217
|
+
*/
|
|
218
|
+
interface AttachmentSpec {
|
|
219
|
+
/**
|
|
220
|
+
* Display name of attachment
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof AttachmentSpec
|
|
223
|
+
*/
|
|
224
|
+
displayName?: string;
|
|
225
|
+
/**
|
|
226
|
+
*
|
|
227
|
+
* @type {Ref}
|
|
228
|
+
* @memberof AttachmentSpec
|
|
229
|
+
*/
|
|
230
|
+
groupRef?: Ref;
|
|
231
|
+
/**
|
|
232
|
+
*
|
|
233
|
+
* @type {Ref}
|
|
234
|
+
* @memberof AttachmentSpec
|
|
235
|
+
*/
|
|
236
|
+
policyRef?: Ref;
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @type {Ref}
|
|
240
|
+
* @memberof AttachmentSpec
|
|
241
|
+
*/
|
|
242
|
+
uploadedBy?: Ref;
|
|
243
|
+
/**
|
|
244
|
+
* Media type of attachment
|
|
245
|
+
* @type {string}
|
|
246
|
+
* @memberof AttachmentSpec
|
|
247
|
+
*/
|
|
248
|
+
mediaType?: string;
|
|
249
|
+
/**
|
|
250
|
+
* Size of attachment. Unit is Byte
|
|
251
|
+
* @type {number}
|
|
252
|
+
* @memberof AttachmentSpec
|
|
253
|
+
*/
|
|
254
|
+
size?: number;
|
|
255
|
+
/**
|
|
256
|
+
* Tags of attachment
|
|
257
|
+
* @type {Set<string>}
|
|
258
|
+
* @memberof AttachmentSpec
|
|
259
|
+
*/
|
|
260
|
+
tags?: Set<string>;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
*
|
|
264
|
+
* @export
|
|
265
|
+
* @interface AttachmentStatus
|
|
266
|
+
*/
|
|
267
|
+
interface AttachmentStatus {
|
|
268
|
+
/**
|
|
269
|
+
* Permalink of attachment
|
|
270
|
+
* @type {string}
|
|
271
|
+
* @memberof AttachmentStatus
|
|
272
|
+
*/
|
|
273
|
+
permalink?: string;
|
|
274
|
+
}
|
|
121
275
|
/**
|
|
122
276
|
*
|
|
123
277
|
* @export
|
|
@@ -824,255 +978,503 @@ interface GrantRequest {
|
|
|
824
978
|
/**
|
|
825
979
|
*
|
|
826
980
|
* @export
|
|
827
|
-
* @interface
|
|
981
|
+
* @interface Group
|
|
828
982
|
*/
|
|
829
|
-
interface
|
|
830
|
-
/**
|
|
831
|
-
*
|
|
832
|
-
* @type {string}
|
|
833
|
-
* @memberof License
|
|
834
|
-
*/
|
|
835
|
-
name?: string;
|
|
983
|
+
interface Group {
|
|
836
984
|
/**
|
|
837
985
|
*
|
|
838
|
-
* @type {
|
|
839
|
-
* @memberof
|
|
986
|
+
* @type {GroupSpec}
|
|
987
|
+
* @memberof Group
|
|
840
988
|
*/
|
|
841
|
-
|
|
842
|
-
}
|
|
843
|
-
/**
|
|
844
|
-
* A chunk of items.
|
|
845
|
-
* @export
|
|
846
|
-
* @interface ListedPost
|
|
847
|
-
*/
|
|
848
|
-
interface ListedPost {
|
|
989
|
+
spec: GroupSpec;
|
|
849
990
|
/**
|
|
850
991
|
*
|
|
851
|
-
* @type {
|
|
852
|
-
* @memberof
|
|
992
|
+
* @type {GroupStatus}
|
|
993
|
+
* @memberof Group
|
|
853
994
|
*/
|
|
854
|
-
|
|
995
|
+
status?: GroupStatus;
|
|
855
996
|
/**
|
|
856
997
|
*
|
|
857
|
-
* @type {
|
|
858
|
-
* @memberof
|
|
998
|
+
* @type {string}
|
|
999
|
+
* @memberof Group
|
|
859
1000
|
*/
|
|
860
|
-
|
|
1001
|
+
apiVersion: string;
|
|
861
1002
|
/**
|
|
862
1003
|
*
|
|
863
|
-
* @type {
|
|
864
|
-
* @memberof
|
|
1004
|
+
* @type {string}
|
|
1005
|
+
* @memberof Group
|
|
865
1006
|
*/
|
|
866
|
-
|
|
1007
|
+
kind: string;
|
|
867
1008
|
/**
|
|
868
1009
|
*
|
|
869
|
-
* @type {
|
|
870
|
-
* @memberof
|
|
1010
|
+
* @type {Metadata}
|
|
1011
|
+
* @memberof Group
|
|
871
1012
|
*/
|
|
872
|
-
|
|
1013
|
+
metadata: Metadata;
|
|
873
1014
|
}
|
|
874
1015
|
/**
|
|
875
1016
|
*
|
|
876
1017
|
* @export
|
|
877
|
-
* @interface
|
|
1018
|
+
* @interface GroupList
|
|
878
1019
|
*/
|
|
879
|
-
interface
|
|
1020
|
+
interface GroupList {
|
|
880
1021
|
/**
|
|
881
1022
|
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
882
1023
|
* @type {number}
|
|
883
|
-
* @memberof
|
|
1024
|
+
* @memberof GroupList
|
|
884
1025
|
*/
|
|
885
1026
|
page: number;
|
|
886
1027
|
/**
|
|
887
1028
|
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
888
1029
|
* @type {number}
|
|
889
|
-
* @memberof
|
|
1030
|
+
* @memberof GroupList
|
|
890
1031
|
*/
|
|
891
1032
|
size: number;
|
|
892
1033
|
/**
|
|
893
1034
|
* Total elements.
|
|
894
1035
|
* @type {number}
|
|
895
|
-
* @memberof
|
|
1036
|
+
* @memberof GroupList
|
|
896
1037
|
*/
|
|
897
1038
|
total: number;
|
|
898
1039
|
/**
|
|
899
1040
|
* A chunk of items.
|
|
900
|
-
* @type {Array<
|
|
901
|
-
* @memberof
|
|
1041
|
+
* @type {Array<Group>}
|
|
1042
|
+
* @memberof GroupList
|
|
902
1043
|
*/
|
|
903
|
-
items: Array<
|
|
1044
|
+
items: Array<Group>;
|
|
904
1045
|
/**
|
|
905
1046
|
* Indicates whether current page is the first page.
|
|
906
1047
|
* @type {boolean}
|
|
907
|
-
* @memberof
|
|
1048
|
+
* @memberof GroupList
|
|
908
1049
|
*/
|
|
909
1050
|
first: boolean;
|
|
910
1051
|
/**
|
|
911
1052
|
* Indicates whether current page is the last page.
|
|
912
1053
|
* @type {boolean}
|
|
913
|
-
* @memberof
|
|
1054
|
+
* @memberof GroupList
|
|
914
1055
|
*/
|
|
915
1056
|
last: boolean;
|
|
916
1057
|
/**
|
|
917
1058
|
* Indicates whether current page has previous page.
|
|
918
1059
|
* @type {boolean}
|
|
919
|
-
* @memberof
|
|
1060
|
+
* @memberof GroupList
|
|
920
1061
|
*/
|
|
921
1062
|
hasNext: boolean;
|
|
922
1063
|
/**
|
|
923
1064
|
* Indicates whether current page has previous page.
|
|
924
1065
|
* @type {boolean}
|
|
925
|
-
* @memberof
|
|
1066
|
+
* @memberof GroupList
|
|
926
1067
|
*/
|
|
927
1068
|
hasPrevious: boolean;
|
|
928
1069
|
}
|
|
929
1070
|
/**
|
|
930
1071
|
*
|
|
931
1072
|
* @export
|
|
932
|
-
* @interface
|
|
1073
|
+
* @interface GroupSpec
|
|
933
1074
|
*/
|
|
934
|
-
interface
|
|
1075
|
+
interface GroupSpec {
|
|
935
1076
|
/**
|
|
936
|
-
*
|
|
1077
|
+
* Display name of group
|
|
937
1078
|
* @type {string}
|
|
938
|
-
* @memberof
|
|
1079
|
+
* @memberof GroupSpec
|
|
939
1080
|
*/
|
|
940
|
-
|
|
1081
|
+
displayName: string;
|
|
1082
|
+
}
|
|
1083
|
+
/**
|
|
1084
|
+
*
|
|
1085
|
+
* @export
|
|
1086
|
+
* @interface GroupStatus
|
|
1087
|
+
*/
|
|
1088
|
+
interface GroupStatus {
|
|
941
1089
|
/**
|
|
942
|
-
*
|
|
1090
|
+
* Update timestamp of the group
|
|
943
1091
|
* @type {string}
|
|
944
|
-
* @memberof
|
|
1092
|
+
* @memberof GroupStatus
|
|
945
1093
|
*/
|
|
946
|
-
|
|
1094
|
+
updateTimestamp?: string;
|
|
947
1095
|
/**
|
|
948
|
-
*
|
|
949
|
-
* @type {
|
|
950
|
-
* @memberof
|
|
1096
|
+
* Total of attachments under the current group
|
|
1097
|
+
* @type {number}
|
|
1098
|
+
* @memberof GroupStatus
|
|
951
1099
|
*/
|
|
952
|
-
|
|
1100
|
+
totalAttachments?: number;
|
|
1101
|
+
}
|
|
1102
|
+
/**
|
|
1103
|
+
*
|
|
1104
|
+
* @export
|
|
1105
|
+
* @interface License
|
|
1106
|
+
*/
|
|
1107
|
+
interface License {
|
|
953
1108
|
/**
|
|
954
1109
|
*
|
|
955
|
-
* @type {
|
|
956
|
-
* @memberof
|
|
1110
|
+
* @type {string}
|
|
1111
|
+
* @memberof License
|
|
957
1112
|
*/
|
|
958
|
-
|
|
1113
|
+
name?: string;
|
|
959
1114
|
/**
|
|
960
1115
|
*
|
|
961
1116
|
* @type {string}
|
|
962
|
-
* @memberof
|
|
1117
|
+
* @memberof License
|
|
963
1118
|
*/
|
|
964
|
-
|
|
1119
|
+
url?: string;
|
|
965
1120
|
}
|
|
966
1121
|
/**
|
|
967
1122
|
*
|
|
968
1123
|
* @export
|
|
969
|
-
* @interface
|
|
1124
|
+
* @interface Link
|
|
970
1125
|
*/
|
|
971
|
-
interface
|
|
1126
|
+
interface Link {
|
|
972
1127
|
/**
|
|
973
1128
|
*
|
|
974
|
-
* @type {
|
|
975
|
-
* @memberof
|
|
1129
|
+
* @type {LinkSpec}
|
|
1130
|
+
* @memberof Link
|
|
976
1131
|
*/
|
|
977
|
-
spec
|
|
1132
|
+
spec?: LinkSpec;
|
|
978
1133
|
/**
|
|
979
1134
|
*
|
|
980
1135
|
* @type {string}
|
|
981
|
-
* @memberof
|
|
1136
|
+
* @memberof Link
|
|
982
1137
|
*/
|
|
983
1138
|
apiVersion: string;
|
|
984
1139
|
/**
|
|
985
1140
|
*
|
|
986
1141
|
* @type {string}
|
|
987
|
-
* @memberof
|
|
1142
|
+
* @memberof Link
|
|
988
1143
|
*/
|
|
989
1144
|
kind: string;
|
|
990
1145
|
/**
|
|
991
1146
|
*
|
|
992
1147
|
* @type {Metadata}
|
|
993
|
-
* @memberof
|
|
1148
|
+
* @memberof Link
|
|
994
1149
|
*/
|
|
995
1150
|
metadata: Metadata;
|
|
996
1151
|
}
|
|
997
1152
|
/**
|
|
998
1153
|
*
|
|
999
1154
|
* @export
|
|
1000
|
-
* @interface
|
|
1155
|
+
* @interface LinkGroup
|
|
1001
1156
|
*/
|
|
1002
|
-
interface
|
|
1003
|
-
/**
|
|
1004
|
-
*
|
|
1005
|
-
* @type {MenuItemSpec}
|
|
1006
|
-
* @memberof MenuItem
|
|
1007
|
-
*/
|
|
1008
|
-
spec: MenuItemSpec;
|
|
1157
|
+
interface LinkGroup {
|
|
1009
1158
|
/**
|
|
1010
1159
|
*
|
|
1011
|
-
* @type {
|
|
1012
|
-
* @memberof
|
|
1160
|
+
* @type {LinkGroupSpec}
|
|
1161
|
+
* @memberof LinkGroup
|
|
1013
1162
|
*/
|
|
1014
|
-
|
|
1163
|
+
spec?: LinkGroupSpec;
|
|
1015
1164
|
/**
|
|
1016
1165
|
*
|
|
1017
1166
|
* @type {string}
|
|
1018
|
-
* @memberof
|
|
1167
|
+
* @memberof LinkGroup
|
|
1019
1168
|
*/
|
|
1020
1169
|
apiVersion: string;
|
|
1021
1170
|
/**
|
|
1022
1171
|
*
|
|
1023
1172
|
* @type {string}
|
|
1024
|
-
* @memberof
|
|
1173
|
+
* @memberof LinkGroup
|
|
1025
1174
|
*/
|
|
1026
1175
|
kind: string;
|
|
1027
1176
|
/**
|
|
1028
1177
|
*
|
|
1029
1178
|
* @type {Metadata}
|
|
1030
|
-
* @memberof
|
|
1179
|
+
* @memberof LinkGroup
|
|
1031
1180
|
*/
|
|
1032
1181
|
metadata: Metadata;
|
|
1033
1182
|
}
|
|
1034
1183
|
/**
|
|
1035
1184
|
*
|
|
1036
1185
|
* @export
|
|
1037
|
-
* @interface
|
|
1186
|
+
* @interface LinkGroupSpec
|
|
1038
1187
|
*/
|
|
1039
|
-
interface
|
|
1188
|
+
interface LinkGroupSpec {
|
|
1040
1189
|
/**
|
|
1041
|
-
*
|
|
1042
|
-
* @type {
|
|
1043
|
-
* @memberof
|
|
1190
|
+
*
|
|
1191
|
+
* @type {string}
|
|
1192
|
+
* @memberof LinkGroupSpec
|
|
1044
1193
|
*/
|
|
1045
|
-
|
|
1194
|
+
displayName: string;
|
|
1046
1195
|
/**
|
|
1047
|
-
*
|
|
1196
|
+
*
|
|
1048
1197
|
* @type {number}
|
|
1049
|
-
* @memberof
|
|
1198
|
+
* @memberof LinkGroupSpec
|
|
1050
1199
|
*/
|
|
1051
|
-
|
|
1200
|
+
priority?: number;
|
|
1052
1201
|
/**
|
|
1053
|
-
*
|
|
1054
|
-
* @type {
|
|
1055
|
-
* @memberof
|
|
1202
|
+
* Names of links below this group.
|
|
1203
|
+
* @type {Set<string>}
|
|
1204
|
+
* @memberof LinkGroupSpec
|
|
1056
1205
|
*/
|
|
1057
|
-
|
|
1206
|
+
links?: Set<string>;
|
|
1207
|
+
}
|
|
1208
|
+
/**
|
|
1209
|
+
*
|
|
1210
|
+
* @export
|
|
1211
|
+
* @interface LinkSpec
|
|
1212
|
+
*/
|
|
1213
|
+
interface LinkSpec {
|
|
1058
1214
|
/**
|
|
1059
|
-
*
|
|
1060
|
-
* @type {
|
|
1061
|
-
* @memberof
|
|
1215
|
+
*
|
|
1216
|
+
* @type {string}
|
|
1217
|
+
* @memberof LinkSpec
|
|
1062
1218
|
*/
|
|
1063
|
-
|
|
1219
|
+
url: string;
|
|
1064
1220
|
/**
|
|
1065
|
-
*
|
|
1066
|
-
* @type {
|
|
1067
|
-
* @memberof
|
|
1221
|
+
*
|
|
1222
|
+
* @type {string}
|
|
1223
|
+
* @memberof LinkSpec
|
|
1068
1224
|
*/
|
|
1069
|
-
|
|
1225
|
+
displayName: string;
|
|
1070
1226
|
/**
|
|
1071
|
-
*
|
|
1072
|
-
* @type {
|
|
1073
|
-
* @memberof
|
|
1227
|
+
*
|
|
1228
|
+
* @type {string}
|
|
1229
|
+
* @memberof LinkSpec
|
|
1074
1230
|
*/
|
|
1075
|
-
|
|
1231
|
+
logo?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
*
|
|
1234
|
+
* @type {string}
|
|
1235
|
+
* @memberof LinkSpec
|
|
1236
|
+
*/
|
|
1237
|
+
description?: string;
|
|
1238
|
+
/**
|
|
1239
|
+
*
|
|
1240
|
+
* @type {number}
|
|
1241
|
+
* @memberof LinkSpec
|
|
1242
|
+
*/
|
|
1243
|
+
priority?: number;
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
* A chunk of items.
|
|
1247
|
+
* @export
|
|
1248
|
+
* @interface ListedPost
|
|
1249
|
+
*/
|
|
1250
|
+
interface ListedPost {
|
|
1251
|
+
/**
|
|
1252
|
+
*
|
|
1253
|
+
* @type {Post}
|
|
1254
|
+
* @memberof ListedPost
|
|
1255
|
+
*/
|
|
1256
|
+
post: Post;
|
|
1257
|
+
/**
|
|
1258
|
+
*
|
|
1259
|
+
* @type {Array<Category>}
|
|
1260
|
+
* @memberof ListedPost
|
|
1261
|
+
*/
|
|
1262
|
+
categories: Array<Category>;
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @type {Array<Tag>}
|
|
1266
|
+
* @memberof ListedPost
|
|
1267
|
+
*/
|
|
1268
|
+
tags: Array<Tag>;
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @type {Array<Contributor>}
|
|
1272
|
+
* @memberof ListedPost
|
|
1273
|
+
*/
|
|
1274
|
+
contributors: Array<Contributor>;
|
|
1275
|
+
}
|
|
1276
|
+
/**
|
|
1277
|
+
*
|
|
1278
|
+
* @export
|
|
1279
|
+
* @interface ListedPostList
|
|
1280
|
+
*/
|
|
1281
|
+
interface ListedPostList {
|
|
1282
|
+
/**
|
|
1283
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1284
|
+
* @type {number}
|
|
1285
|
+
* @memberof ListedPostList
|
|
1286
|
+
*/
|
|
1287
|
+
page: number;
|
|
1288
|
+
/**
|
|
1289
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1290
|
+
* @type {number}
|
|
1291
|
+
* @memberof ListedPostList
|
|
1292
|
+
*/
|
|
1293
|
+
size: number;
|
|
1294
|
+
/**
|
|
1295
|
+
* Total elements.
|
|
1296
|
+
* @type {number}
|
|
1297
|
+
* @memberof ListedPostList
|
|
1298
|
+
*/
|
|
1299
|
+
total: number;
|
|
1300
|
+
/**
|
|
1301
|
+
* A chunk of items.
|
|
1302
|
+
* @type {Array<ListedPost>}
|
|
1303
|
+
* @memberof ListedPostList
|
|
1304
|
+
*/
|
|
1305
|
+
items: Array<ListedPost>;
|
|
1306
|
+
/**
|
|
1307
|
+
* Indicates whether current page is the first page.
|
|
1308
|
+
* @type {boolean}
|
|
1309
|
+
* @memberof ListedPostList
|
|
1310
|
+
*/
|
|
1311
|
+
first: boolean;
|
|
1312
|
+
/**
|
|
1313
|
+
* Indicates whether current page is the last page.
|
|
1314
|
+
* @type {boolean}
|
|
1315
|
+
* @memberof ListedPostList
|
|
1316
|
+
*/
|
|
1317
|
+
last: boolean;
|
|
1318
|
+
/**
|
|
1319
|
+
* Indicates whether current page has previous page.
|
|
1320
|
+
* @type {boolean}
|
|
1321
|
+
* @memberof ListedPostList
|
|
1322
|
+
*/
|
|
1323
|
+
hasNext: boolean;
|
|
1324
|
+
/**
|
|
1325
|
+
* Indicates whether current page has previous page.
|
|
1326
|
+
* @type {boolean}
|
|
1327
|
+
* @memberof ListedPostList
|
|
1328
|
+
*/
|
|
1329
|
+
hasPrevious: boolean;
|
|
1330
|
+
}
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @export
|
|
1334
|
+
* @interface LoginHistory
|
|
1335
|
+
*/
|
|
1336
|
+
interface LoginHistory {
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {string}
|
|
1340
|
+
* @memberof LoginHistory
|
|
1341
|
+
*/
|
|
1342
|
+
loginAt: string;
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof LoginHistory
|
|
1347
|
+
*/
|
|
1348
|
+
sourceIp: string;
|
|
1349
|
+
/**
|
|
1350
|
+
*
|
|
1351
|
+
* @type {string}
|
|
1352
|
+
* @memberof LoginHistory
|
|
1353
|
+
*/
|
|
1354
|
+
userAgent: string;
|
|
1355
|
+
/**
|
|
1356
|
+
*
|
|
1357
|
+
* @type {boolean}
|
|
1358
|
+
* @memberof LoginHistory
|
|
1359
|
+
*/
|
|
1360
|
+
successful: boolean;
|
|
1361
|
+
/**
|
|
1362
|
+
*
|
|
1363
|
+
* @type {string}
|
|
1364
|
+
* @memberof LoginHistory
|
|
1365
|
+
*/
|
|
1366
|
+
reason?: string;
|
|
1367
|
+
}
|
|
1368
|
+
/**
|
|
1369
|
+
*
|
|
1370
|
+
* @export
|
|
1371
|
+
* @interface Menu
|
|
1372
|
+
*/
|
|
1373
|
+
interface Menu {
|
|
1374
|
+
/**
|
|
1375
|
+
*
|
|
1376
|
+
* @type {MenuSpec}
|
|
1377
|
+
* @memberof Menu
|
|
1378
|
+
*/
|
|
1379
|
+
spec: MenuSpec;
|
|
1380
|
+
/**
|
|
1381
|
+
*
|
|
1382
|
+
* @type {string}
|
|
1383
|
+
* @memberof Menu
|
|
1384
|
+
*/
|
|
1385
|
+
apiVersion: string;
|
|
1386
|
+
/**
|
|
1387
|
+
*
|
|
1388
|
+
* @type {string}
|
|
1389
|
+
* @memberof Menu
|
|
1390
|
+
*/
|
|
1391
|
+
kind: string;
|
|
1392
|
+
/**
|
|
1393
|
+
*
|
|
1394
|
+
* @type {Metadata}
|
|
1395
|
+
* @memberof Menu
|
|
1396
|
+
*/
|
|
1397
|
+
metadata: Metadata;
|
|
1398
|
+
}
|
|
1399
|
+
/**
|
|
1400
|
+
*
|
|
1401
|
+
* @export
|
|
1402
|
+
* @interface MenuItem
|
|
1403
|
+
*/
|
|
1404
|
+
interface MenuItem {
|
|
1405
|
+
/**
|
|
1406
|
+
*
|
|
1407
|
+
* @type {MenuItemSpec}
|
|
1408
|
+
* @memberof MenuItem
|
|
1409
|
+
*/
|
|
1410
|
+
spec: MenuItemSpec;
|
|
1411
|
+
/**
|
|
1412
|
+
*
|
|
1413
|
+
* @type {MenuItemStatus}
|
|
1414
|
+
* @memberof MenuItem
|
|
1415
|
+
*/
|
|
1416
|
+
status?: MenuItemStatus;
|
|
1417
|
+
/**
|
|
1418
|
+
*
|
|
1419
|
+
* @type {string}
|
|
1420
|
+
* @memberof MenuItem
|
|
1421
|
+
*/
|
|
1422
|
+
apiVersion: string;
|
|
1423
|
+
/**
|
|
1424
|
+
*
|
|
1425
|
+
* @type {string}
|
|
1426
|
+
* @memberof MenuItem
|
|
1427
|
+
*/
|
|
1428
|
+
kind: string;
|
|
1429
|
+
/**
|
|
1430
|
+
*
|
|
1431
|
+
* @type {Metadata}
|
|
1432
|
+
* @memberof MenuItem
|
|
1433
|
+
*/
|
|
1434
|
+
metadata: Metadata;
|
|
1435
|
+
}
|
|
1436
|
+
/**
|
|
1437
|
+
*
|
|
1438
|
+
* @export
|
|
1439
|
+
* @interface MenuItemList
|
|
1440
|
+
*/
|
|
1441
|
+
interface MenuItemList {
|
|
1442
|
+
/**
|
|
1443
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1444
|
+
* @type {number}
|
|
1445
|
+
* @memberof MenuItemList
|
|
1446
|
+
*/
|
|
1447
|
+
page: number;
|
|
1448
|
+
/**
|
|
1449
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1450
|
+
* @type {number}
|
|
1451
|
+
* @memberof MenuItemList
|
|
1452
|
+
*/
|
|
1453
|
+
size: number;
|
|
1454
|
+
/**
|
|
1455
|
+
* Total elements.
|
|
1456
|
+
* @type {number}
|
|
1457
|
+
* @memberof MenuItemList
|
|
1458
|
+
*/
|
|
1459
|
+
total: number;
|
|
1460
|
+
/**
|
|
1461
|
+
* A chunk of items.
|
|
1462
|
+
* @type {Array<MenuItem>}
|
|
1463
|
+
* @memberof MenuItemList
|
|
1464
|
+
*/
|
|
1465
|
+
items: Array<MenuItem>;
|
|
1466
|
+
/**
|
|
1467
|
+
* Indicates whether current page is the first page.
|
|
1468
|
+
* @type {boolean}
|
|
1469
|
+
* @memberof MenuItemList
|
|
1470
|
+
*/
|
|
1471
|
+
first: boolean;
|
|
1472
|
+
/**
|
|
1473
|
+
* Indicates whether current page is the last page.
|
|
1474
|
+
* @type {boolean}
|
|
1475
|
+
* @memberof MenuItemList
|
|
1476
|
+
*/
|
|
1477
|
+
last: boolean;
|
|
1076
1478
|
/**
|
|
1077
1479
|
* Indicates whether current page has previous page.
|
|
1078
1480
|
* @type {boolean}
|
|
@@ -1253,6 +1655,12 @@ interface MenuSpec {
|
|
|
1253
1655
|
* @interface Metadata
|
|
1254
1656
|
*/
|
|
1255
1657
|
interface Metadata {
|
|
1658
|
+
/**
|
|
1659
|
+
*
|
|
1660
|
+
* @type {Set<string>}
|
|
1661
|
+
* @memberof Metadata
|
|
1662
|
+
*/
|
|
1663
|
+
finalizers?: Set<string> | null;
|
|
1256
1664
|
/**
|
|
1257
1665
|
*
|
|
1258
1666
|
* @type {string}
|
|
@@ -1664,19 +2072,105 @@ declare type PluginStatusPhaseEnum = typeof PluginStatusPhaseEnum[keyof typeof P
|
|
|
1664
2072
|
/**
|
|
1665
2073
|
*
|
|
1666
2074
|
* @export
|
|
1667
|
-
* @interface
|
|
2075
|
+
* @interface Policy
|
|
1668
2076
|
*/
|
|
1669
|
-
interface
|
|
2077
|
+
interface Policy {
|
|
1670
2078
|
/**
|
|
1671
2079
|
*
|
|
1672
|
-
* @type {
|
|
1673
|
-
* @memberof
|
|
2080
|
+
* @type {PolicySpec}
|
|
2081
|
+
* @memberof Policy
|
|
1674
2082
|
*/
|
|
1675
|
-
|
|
2083
|
+
spec: PolicySpec;
|
|
1676
2084
|
/**
|
|
1677
2085
|
*
|
|
1678
|
-
* @type {
|
|
1679
|
-
* @memberof
|
|
2086
|
+
* @type {string}
|
|
2087
|
+
* @memberof Policy
|
|
2088
|
+
*/
|
|
2089
|
+
apiVersion: string;
|
|
2090
|
+
/**
|
|
2091
|
+
*
|
|
2092
|
+
* @type {string}
|
|
2093
|
+
* @memberof Policy
|
|
2094
|
+
*/
|
|
2095
|
+
kind: string;
|
|
2096
|
+
/**
|
|
2097
|
+
*
|
|
2098
|
+
* @type {Metadata}
|
|
2099
|
+
* @memberof Policy
|
|
2100
|
+
*/
|
|
2101
|
+
metadata: Metadata;
|
|
2102
|
+
}
|
|
2103
|
+
/**
|
|
2104
|
+
*
|
|
2105
|
+
* @export
|
|
2106
|
+
* @interface PolicyList
|
|
2107
|
+
*/
|
|
2108
|
+
interface PolicyList {
|
|
2109
|
+
/**
|
|
2110
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
2111
|
+
* @type {number}
|
|
2112
|
+
* @memberof PolicyList
|
|
2113
|
+
*/
|
|
2114
|
+
page: number;
|
|
2115
|
+
/**
|
|
2116
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
2117
|
+
* @type {number}
|
|
2118
|
+
* @memberof PolicyList
|
|
2119
|
+
*/
|
|
2120
|
+
size: number;
|
|
2121
|
+
/**
|
|
2122
|
+
* Total elements.
|
|
2123
|
+
* @type {number}
|
|
2124
|
+
* @memberof PolicyList
|
|
2125
|
+
*/
|
|
2126
|
+
total: number;
|
|
2127
|
+
/**
|
|
2128
|
+
* A chunk of items.
|
|
2129
|
+
* @type {Array<Policy>}
|
|
2130
|
+
* @memberof PolicyList
|
|
2131
|
+
*/
|
|
2132
|
+
items: Array<Policy>;
|
|
2133
|
+
/**
|
|
2134
|
+
* Indicates whether current page is the first page.
|
|
2135
|
+
* @type {boolean}
|
|
2136
|
+
* @memberof PolicyList
|
|
2137
|
+
*/
|
|
2138
|
+
first: boolean;
|
|
2139
|
+
/**
|
|
2140
|
+
* Indicates whether current page is the last page.
|
|
2141
|
+
* @type {boolean}
|
|
2142
|
+
* @memberof PolicyList
|
|
2143
|
+
*/
|
|
2144
|
+
last: boolean;
|
|
2145
|
+
/**
|
|
2146
|
+
* Indicates whether current page has previous page.
|
|
2147
|
+
* @type {boolean}
|
|
2148
|
+
* @memberof PolicyList
|
|
2149
|
+
*/
|
|
2150
|
+
hasNext: boolean;
|
|
2151
|
+
/**
|
|
2152
|
+
* Indicates whether current page has previous page.
|
|
2153
|
+
* @type {boolean}
|
|
2154
|
+
* @memberof PolicyList
|
|
2155
|
+
*/
|
|
2156
|
+
hasPrevious: boolean;
|
|
2157
|
+
}
|
|
2158
|
+
/**
|
|
2159
|
+
*
|
|
2160
|
+
* @export
|
|
2161
|
+
* @interface PolicyRule
|
|
2162
|
+
*/
|
|
2163
|
+
interface PolicyRule {
|
|
2164
|
+
/**
|
|
2165
|
+
*
|
|
2166
|
+
* @type {Array<string>}
|
|
2167
|
+
* @memberof PolicyRule
|
|
2168
|
+
*/
|
|
2169
|
+
apiGroups?: Array<string>;
|
|
2170
|
+
/**
|
|
2171
|
+
*
|
|
2172
|
+
* @type {Array<string>}
|
|
2173
|
+
* @memberof PolicyRule
|
|
1680
2174
|
*/
|
|
1681
2175
|
resources?: Array<string>;
|
|
1682
2176
|
/**
|
|
@@ -1698,6 +2192,136 @@ interface PolicyRule {
|
|
|
1698
2192
|
*/
|
|
1699
2193
|
verbs?: Array<string>;
|
|
1700
2194
|
}
|
|
2195
|
+
/**
|
|
2196
|
+
*
|
|
2197
|
+
* @export
|
|
2198
|
+
* @interface PolicySpec
|
|
2199
|
+
*/
|
|
2200
|
+
interface PolicySpec {
|
|
2201
|
+
/**
|
|
2202
|
+
* Display name of policy
|
|
2203
|
+
* @type {string}
|
|
2204
|
+
* @memberof PolicySpec
|
|
2205
|
+
*/
|
|
2206
|
+
displayName: string;
|
|
2207
|
+
/**
|
|
2208
|
+
*
|
|
2209
|
+
* @type {Ref}
|
|
2210
|
+
* @memberof PolicySpec
|
|
2211
|
+
*/
|
|
2212
|
+
templateRef?: Ref;
|
|
2213
|
+
/**
|
|
2214
|
+
*
|
|
2215
|
+
* @type {Ref}
|
|
2216
|
+
* @memberof PolicySpec
|
|
2217
|
+
*/
|
|
2218
|
+
configMapRef?: Ref;
|
|
2219
|
+
}
|
|
2220
|
+
/**
|
|
2221
|
+
*
|
|
2222
|
+
* @export
|
|
2223
|
+
* @interface PolicyTemplate
|
|
2224
|
+
*/
|
|
2225
|
+
interface PolicyTemplate {
|
|
2226
|
+
/**
|
|
2227
|
+
*
|
|
2228
|
+
* @type {PolicyTemplateSpec}
|
|
2229
|
+
* @memberof PolicyTemplate
|
|
2230
|
+
*/
|
|
2231
|
+
spec?: PolicyTemplateSpec;
|
|
2232
|
+
/**
|
|
2233
|
+
*
|
|
2234
|
+
* @type {string}
|
|
2235
|
+
* @memberof PolicyTemplate
|
|
2236
|
+
*/
|
|
2237
|
+
apiVersion: string;
|
|
2238
|
+
/**
|
|
2239
|
+
*
|
|
2240
|
+
* @type {string}
|
|
2241
|
+
* @memberof PolicyTemplate
|
|
2242
|
+
*/
|
|
2243
|
+
kind: string;
|
|
2244
|
+
/**
|
|
2245
|
+
*
|
|
2246
|
+
* @type {Metadata}
|
|
2247
|
+
* @memberof PolicyTemplate
|
|
2248
|
+
*/
|
|
2249
|
+
metadata: Metadata;
|
|
2250
|
+
}
|
|
2251
|
+
/**
|
|
2252
|
+
*
|
|
2253
|
+
* @export
|
|
2254
|
+
* @interface PolicyTemplateList
|
|
2255
|
+
*/
|
|
2256
|
+
interface PolicyTemplateList {
|
|
2257
|
+
/**
|
|
2258
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
2259
|
+
* @type {number}
|
|
2260
|
+
* @memberof PolicyTemplateList
|
|
2261
|
+
*/
|
|
2262
|
+
page: number;
|
|
2263
|
+
/**
|
|
2264
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
2265
|
+
* @type {number}
|
|
2266
|
+
* @memberof PolicyTemplateList
|
|
2267
|
+
*/
|
|
2268
|
+
size: number;
|
|
2269
|
+
/**
|
|
2270
|
+
* Total elements.
|
|
2271
|
+
* @type {number}
|
|
2272
|
+
* @memberof PolicyTemplateList
|
|
2273
|
+
*/
|
|
2274
|
+
total: number;
|
|
2275
|
+
/**
|
|
2276
|
+
* A chunk of items.
|
|
2277
|
+
* @type {Array<PolicyTemplate>}
|
|
2278
|
+
* @memberof PolicyTemplateList
|
|
2279
|
+
*/
|
|
2280
|
+
items: Array<PolicyTemplate>;
|
|
2281
|
+
/**
|
|
2282
|
+
* Indicates whether current page is the first page.
|
|
2283
|
+
* @type {boolean}
|
|
2284
|
+
* @memberof PolicyTemplateList
|
|
2285
|
+
*/
|
|
2286
|
+
first: boolean;
|
|
2287
|
+
/**
|
|
2288
|
+
* Indicates whether current page is the last page.
|
|
2289
|
+
* @type {boolean}
|
|
2290
|
+
* @memberof PolicyTemplateList
|
|
2291
|
+
*/
|
|
2292
|
+
last: boolean;
|
|
2293
|
+
/**
|
|
2294
|
+
* Indicates whether current page has previous page.
|
|
2295
|
+
* @type {boolean}
|
|
2296
|
+
* @memberof PolicyTemplateList
|
|
2297
|
+
*/
|
|
2298
|
+
hasNext: boolean;
|
|
2299
|
+
/**
|
|
2300
|
+
* Indicates whether current page has previous page.
|
|
2301
|
+
* @type {boolean}
|
|
2302
|
+
* @memberof PolicyTemplateList
|
|
2303
|
+
*/
|
|
2304
|
+
hasPrevious: boolean;
|
|
2305
|
+
}
|
|
2306
|
+
/**
|
|
2307
|
+
*
|
|
2308
|
+
* @export
|
|
2309
|
+
* @interface PolicyTemplateSpec
|
|
2310
|
+
*/
|
|
2311
|
+
interface PolicyTemplateSpec {
|
|
2312
|
+
/**
|
|
2313
|
+
*
|
|
2314
|
+
* @type {string}
|
|
2315
|
+
* @memberof PolicyTemplateSpec
|
|
2316
|
+
*/
|
|
2317
|
+
displayName?: string;
|
|
2318
|
+
/**
|
|
2319
|
+
*
|
|
2320
|
+
* @type {Ref}
|
|
2321
|
+
* @memberof PolicyTemplateSpec
|
|
2322
|
+
*/
|
|
2323
|
+
settingRef?: Ref;
|
|
2324
|
+
}
|
|
1701
2325
|
/**
|
|
1702
2326
|
*
|
|
1703
2327
|
* @export
|
|
@@ -1987,6 +2611,37 @@ interface PostStatus {
|
|
|
1987
2611
|
*/
|
|
1988
2612
|
contributors?: Array<string>;
|
|
1989
2613
|
}
|
|
2614
|
+
/**
|
|
2615
|
+
* Extension reference object. The name is mandatory
|
|
2616
|
+
* @export
|
|
2617
|
+
* @interface Ref
|
|
2618
|
+
*/
|
|
2619
|
+
interface Ref {
|
|
2620
|
+
/**
|
|
2621
|
+
* Extension group
|
|
2622
|
+
* @type {string}
|
|
2623
|
+
* @memberof Ref
|
|
2624
|
+
*/
|
|
2625
|
+
group?: string;
|
|
2626
|
+
/**
|
|
2627
|
+
* Extension version
|
|
2628
|
+
* @type {string}
|
|
2629
|
+
* @memberof Ref
|
|
2630
|
+
*/
|
|
2631
|
+
version?: string;
|
|
2632
|
+
/**
|
|
2633
|
+
* Extension kind
|
|
2634
|
+
* @type {string}
|
|
2635
|
+
* @memberof Ref
|
|
2636
|
+
*/
|
|
2637
|
+
kind?: string;
|
|
2638
|
+
/**
|
|
2639
|
+
* Extension name. This field is mandatory
|
|
2640
|
+
* @type {string}
|
|
2641
|
+
* @memberof Ref
|
|
2642
|
+
*/
|
|
2643
|
+
name: string;
|
|
2644
|
+
}
|
|
1990
2645
|
/**
|
|
1991
2646
|
*
|
|
1992
2647
|
* @export
|
|
@@ -3428,7 +4083,7 @@ declare const ApiHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) =>
|
|
|
3428
4083
|
* @param {*} [options] Override http request option.
|
|
3429
4084
|
* @throws {RequiredError}
|
|
3430
4085
|
*/
|
|
3431
|
-
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4086
|
+
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
3432
4087
|
};
|
|
3433
4088
|
/**
|
|
3434
4089
|
* ApiHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -3441,7 +4096,7 @@ declare const ApiHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration
|
|
|
3441
4096
|
* @param {*} [options] Override http request option.
|
|
3442
4097
|
* @throws {RequiredError}
|
|
3443
4098
|
*/
|
|
3444
|
-
installPlugin(file: any, options?: any): AxiosPromise<
|
|
4099
|
+
installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
|
|
3445
4100
|
};
|
|
3446
4101
|
/**
|
|
3447
4102
|
* ApiHaloRunV1alpha1PluginApi - object-oriented interface
|
|
@@ -3457,7 +4112,7 @@ declare class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
3457
4112
|
* @throws {RequiredError}
|
|
3458
4113
|
* @memberof ApiHaloRunV1alpha1PluginApi
|
|
3459
4114
|
*/
|
|
3460
|
-
installPlugin(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4115
|
+
installPlugin(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
3461
4116
|
}
|
|
3462
4117
|
/**
|
|
3463
4118
|
* ApiHaloRunV1alpha1PostApi - axios parameter creator
|
|
@@ -4953,33 +5608,33 @@ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
4953
5608
|
updatecontentHaloRunV1alpha1Tag(name: string, tag?: Tag, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Tag, any>>;
|
|
4954
5609
|
}
|
|
4955
5610
|
/**
|
|
4956
|
-
*
|
|
5611
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
4957
5612
|
* @export
|
|
4958
5613
|
*/
|
|
4959
|
-
declare const
|
|
5614
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4960
5615
|
/**
|
|
4961
|
-
* Create
|
|
4962
|
-
* @param {
|
|
5616
|
+
* Create core.halo.run/v1alpha1/Link
|
|
5617
|
+
* @param {Link} [link] Fresh link
|
|
4963
5618
|
* @param {*} [options] Override http request option.
|
|
4964
5619
|
* @throws {RequiredError}
|
|
4965
5620
|
*/
|
|
4966
|
-
|
|
5621
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4967
5622
|
/**
|
|
4968
|
-
* Delete
|
|
4969
|
-
* @param {string} name Name of
|
|
5623
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
5624
|
+
* @param {string} name Name of link
|
|
4970
5625
|
* @param {*} [options] Override http request option.
|
|
4971
5626
|
* @throws {RequiredError}
|
|
4972
5627
|
*/
|
|
4973
|
-
|
|
5628
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4974
5629
|
/**
|
|
4975
|
-
* Get
|
|
4976
|
-
* @param {string} name Name of
|
|
5630
|
+
* Get core.halo.run/v1alpha1/Link
|
|
5631
|
+
* @param {string} name Name of link
|
|
4977
5632
|
* @param {*} [options] Override http request option.
|
|
4978
5633
|
* @throws {RequiredError}
|
|
4979
5634
|
*/
|
|
4980
|
-
|
|
5635
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4981
5636
|
/**
|
|
4982
|
-
* List
|
|
5637
|
+
* List core.halo.run/v1alpha1/Link
|
|
4983
5638
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
4984
5639
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4985
5640
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -4987,44 +5642,44 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
|
|
|
4987
5642
|
* @param {*} [options] Override http request option.
|
|
4988
5643
|
* @throws {RequiredError}
|
|
4989
5644
|
*/
|
|
4990
|
-
|
|
5645
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4991
5646
|
/**
|
|
4992
|
-
* Update
|
|
4993
|
-
* @param {string} name Name of
|
|
4994
|
-
* @param {
|
|
5647
|
+
* Update core.halo.run/v1alpha1/Link
|
|
5648
|
+
* @param {string} name Name of link
|
|
5649
|
+
* @param {Link} [link] Updated link
|
|
4995
5650
|
* @param {*} [options] Override http request option.
|
|
4996
5651
|
* @throws {RequiredError}
|
|
4997
5652
|
*/
|
|
4998
|
-
|
|
5653
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4999
5654
|
};
|
|
5000
5655
|
/**
|
|
5001
|
-
*
|
|
5656
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
5002
5657
|
* @export
|
|
5003
5658
|
*/
|
|
5004
|
-
declare const
|
|
5659
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
5005
5660
|
/**
|
|
5006
|
-
* Create
|
|
5007
|
-
* @param {
|
|
5661
|
+
* Create core.halo.run/v1alpha1/Link
|
|
5662
|
+
* @param {Link} [link] Fresh link
|
|
5008
5663
|
* @param {*} [options] Override http request option.
|
|
5009
5664
|
* @throws {RequiredError}
|
|
5010
5665
|
*/
|
|
5011
|
-
|
|
5666
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
5012
5667
|
/**
|
|
5013
|
-
* Delete
|
|
5014
|
-
* @param {string} name Name of
|
|
5668
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
5669
|
+
* @param {string} name Name of link
|
|
5015
5670
|
* @param {*} [options] Override http request option.
|
|
5016
5671
|
* @throws {RequiredError}
|
|
5017
5672
|
*/
|
|
5018
|
-
|
|
5673
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5019
5674
|
/**
|
|
5020
|
-
* Get
|
|
5021
|
-
* @param {string} name Name of
|
|
5675
|
+
* Get core.halo.run/v1alpha1/Link
|
|
5676
|
+
* @param {string} name Name of link
|
|
5022
5677
|
* @param {*} [options] Override http request option.
|
|
5023
5678
|
* @throws {RequiredError}
|
|
5024
5679
|
*/
|
|
5025
|
-
|
|
5680
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
5026
5681
|
/**
|
|
5027
|
-
* List
|
|
5682
|
+
* List core.halo.run/v1alpha1/Link
|
|
5028
5683
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5029
5684
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5030
5685
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5032,44 +5687,44 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
|
|
|
5032
5687
|
* @param {*} [options] Override http request option.
|
|
5033
5688
|
* @throws {RequiredError}
|
|
5034
5689
|
*/
|
|
5035
|
-
|
|
5690
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5036
5691
|
/**
|
|
5037
|
-
* Update
|
|
5038
|
-
* @param {string} name Name of
|
|
5039
|
-
* @param {
|
|
5692
|
+
* Update core.halo.run/v1alpha1/Link
|
|
5693
|
+
* @param {string} name Name of link
|
|
5694
|
+
* @param {Link} [link] Updated link
|
|
5040
5695
|
* @param {*} [options] Override http request option.
|
|
5041
5696
|
* @throws {RequiredError}
|
|
5042
5697
|
*/
|
|
5043
|
-
|
|
5698
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
5044
5699
|
};
|
|
5045
5700
|
/**
|
|
5046
|
-
*
|
|
5701
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
5047
5702
|
* @export
|
|
5048
5703
|
*/
|
|
5049
|
-
declare const
|
|
5704
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5050
5705
|
/**
|
|
5051
|
-
* Create
|
|
5052
|
-
* @param {
|
|
5706
|
+
* Create core.halo.run/v1alpha1/Link
|
|
5707
|
+
* @param {Link} [link] Fresh link
|
|
5053
5708
|
* @param {*} [options] Override http request option.
|
|
5054
5709
|
* @throws {RequiredError}
|
|
5055
5710
|
*/
|
|
5056
|
-
|
|
5711
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
5057
5712
|
/**
|
|
5058
|
-
* Delete
|
|
5059
|
-
* @param {string} name Name of
|
|
5713
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
5714
|
+
* @param {string} name Name of link
|
|
5060
5715
|
* @param {*} [options] Override http request option.
|
|
5061
5716
|
* @throws {RequiredError}
|
|
5062
5717
|
*/
|
|
5063
|
-
|
|
5718
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
5064
5719
|
/**
|
|
5065
|
-
* Get
|
|
5066
|
-
* @param {string} name Name of
|
|
5720
|
+
* Get core.halo.run/v1alpha1/Link
|
|
5721
|
+
* @param {string} name Name of link
|
|
5067
5722
|
* @param {*} [options] Override http request option.
|
|
5068
5723
|
* @throws {RequiredError}
|
|
5069
5724
|
*/
|
|
5070
|
-
|
|
5725
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
5071
5726
|
/**
|
|
5072
|
-
* List
|
|
5727
|
+
* List core.halo.run/v1alpha1/Link
|
|
5073
5728
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5074
5729
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5075
5730
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5077,96 +5732,1125 @@ declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configurat
|
|
|
5077
5732
|
* @param {*} [options] Override http request option.
|
|
5078
5733
|
* @throws {RequiredError}
|
|
5079
5734
|
*/
|
|
5080
|
-
|
|
5735
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
5081
5736
|
/**
|
|
5082
|
-
* Update
|
|
5083
|
-
* @param {string} name Name of
|
|
5084
|
-
* @param {
|
|
5737
|
+
* Update core.halo.run/v1alpha1/Link
|
|
5738
|
+
* @param {string} name Name of link
|
|
5739
|
+
* @param {Link} [link] Updated link
|
|
5085
5740
|
* @param {*} [options] Override http request option.
|
|
5086
5741
|
* @throws {RequiredError}
|
|
5087
5742
|
*/
|
|
5088
|
-
|
|
5743
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
5089
5744
|
};
|
|
5090
5745
|
/**
|
|
5091
|
-
*
|
|
5746
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
5092
5747
|
* @export
|
|
5093
|
-
* @class
|
|
5748
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
5094
5749
|
* @extends {BaseAPI}
|
|
5095
5750
|
*/
|
|
5096
|
-
declare class
|
|
5751
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
5097
5752
|
/**
|
|
5098
|
-
* Create
|
|
5099
|
-
* @param {
|
|
5753
|
+
* Create core.halo.run/v1alpha1/Link
|
|
5754
|
+
* @param {Link} [link] Fresh link
|
|
5100
5755
|
* @param {*} [options] Override http request option.
|
|
5101
5756
|
* @throws {RequiredError}
|
|
5102
|
-
* @memberof
|
|
5757
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
5103
5758
|
*/
|
|
5104
|
-
|
|
5759
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
5105
5760
|
/**
|
|
5106
|
-
* Delete
|
|
5107
|
-
* @param {string} name Name of
|
|
5761
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
5762
|
+
* @param {string} name Name of link
|
|
5108
5763
|
* @param {*} [options] Override http request option.
|
|
5109
5764
|
* @throws {RequiredError}
|
|
5110
|
-
* @memberof
|
|
5765
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
5111
5766
|
*/
|
|
5112
|
-
|
|
5767
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5113
5768
|
/**
|
|
5114
|
-
* Get
|
|
5115
|
-
* @param {string} name Name of
|
|
5769
|
+
* Get core.halo.run/v1alpha1/Link
|
|
5770
|
+
* @param {string} name Name of link
|
|
5116
5771
|
* @param {*} [options] Override http request option.
|
|
5117
5772
|
* @throws {RequiredError}
|
|
5118
|
-
* @memberof
|
|
5773
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
5119
5774
|
*/
|
|
5120
|
-
|
|
5775
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
5121
5776
|
/**
|
|
5122
|
-
* List
|
|
5777
|
+
* List core.halo.run/v1alpha1/Link
|
|
5123
5778
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5124
5779
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5125
5780
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5126
5781
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5127
5782
|
* @param {*} [options] Override http request option.
|
|
5128
5783
|
* @throws {RequiredError}
|
|
5129
|
-
* @memberof
|
|
5784
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
5130
5785
|
*/
|
|
5131
|
-
|
|
5786
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
5132
5787
|
/**
|
|
5133
|
-
* Update
|
|
5788
|
+
* Update core.halo.run/v1alpha1/Link
|
|
5789
|
+
* @param {string} name Name of link
|
|
5790
|
+
* @param {Link} [link] Updated link
|
|
5791
|
+
* @param {*} [options] Override http request option.
|
|
5792
|
+
* @throws {RequiredError}
|
|
5793
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
5794
|
+
*/
|
|
5795
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
5796
|
+
}
|
|
5797
|
+
/**
|
|
5798
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
5799
|
+
* @export
|
|
5800
|
+
*/
|
|
5801
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5802
|
+
/**
|
|
5803
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
5804
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
5805
|
+
* @param {*} [options] Override http request option.
|
|
5806
|
+
* @throws {RequiredError}
|
|
5807
|
+
*/
|
|
5808
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5809
|
+
/**
|
|
5810
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
5811
|
+
* @param {string} name Name of linkgroup
|
|
5812
|
+
* @param {*} [options] Override http request option.
|
|
5813
|
+
* @throws {RequiredError}
|
|
5814
|
+
*/
|
|
5815
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5816
|
+
/**
|
|
5817
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
5818
|
+
* @param {string} name Name of linkgroup
|
|
5819
|
+
* @param {*} [options] Override http request option.
|
|
5820
|
+
* @throws {RequiredError}
|
|
5821
|
+
*/
|
|
5822
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5823
|
+
/**
|
|
5824
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
5825
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5826
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5827
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5828
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5829
|
+
* @param {*} [options] Override http request option.
|
|
5830
|
+
* @throws {RequiredError}
|
|
5831
|
+
*/
|
|
5832
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5833
|
+
/**
|
|
5834
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
5835
|
+
* @param {string} name Name of linkgroup
|
|
5836
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
5837
|
+
* @param {*} [options] Override http request option.
|
|
5838
|
+
* @throws {RequiredError}
|
|
5839
|
+
*/
|
|
5840
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5841
|
+
};
|
|
5842
|
+
/**
|
|
5843
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
5844
|
+
* @export
|
|
5845
|
+
*/
|
|
5846
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
5847
|
+
/**
|
|
5848
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
5849
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
5850
|
+
* @param {*} [options] Override http request option.
|
|
5851
|
+
* @throws {RequiredError}
|
|
5852
|
+
*/
|
|
5853
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
5854
|
+
/**
|
|
5855
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
5856
|
+
* @param {string} name Name of linkgroup
|
|
5857
|
+
* @param {*} [options] Override http request option.
|
|
5858
|
+
* @throws {RequiredError}
|
|
5859
|
+
*/
|
|
5860
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5861
|
+
/**
|
|
5862
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
5863
|
+
* @param {string} name Name of linkgroup
|
|
5864
|
+
* @param {*} [options] Override http request option.
|
|
5865
|
+
* @throws {RequiredError}
|
|
5866
|
+
*/
|
|
5867
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
5868
|
+
/**
|
|
5869
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
5870
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5871
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5872
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5873
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5874
|
+
* @param {*} [options] Override http request option.
|
|
5875
|
+
* @throws {RequiredError}
|
|
5876
|
+
*/
|
|
5877
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5878
|
+
/**
|
|
5879
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
5880
|
+
* @param {string} name Name of linkgroup
|
|
5881
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
5882
|
+
* @param {*} [options] Override http request option.
|
|
5883
|
+
* @throws {RequiredError}
|
|
5884
|
+
*/
|
|
5885
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
5886
|
+
};
|
|
5887
|
+
/**
|
|
5888
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
5889
|
+
* @export
|
|
5890
|
+
*/
|
|
5891
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5892
|
+
/**
|
|
5893
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
5894
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
5895
|
+
* @param {*} [options] Override http request option.
|
|
5896
|
+
* @throws {RequiredError}
|
|
5897
|
+
*/
|
|
5898
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
5899
|
+
/**
|
|
5900
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
5901
|
+
* @param {string} name Name of linkgroup
|
|
5902
|
+
* @param {*} [options] Override http request option.
|
|
5903
|
+
* @throws {RequiredError}
|
|
5904
|
+
*/
|
|
5905
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
5906
|
+
/**
|
|
5907
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
5908
|
+
* @param {string} name Name of linkgroup
|
|
5909
|
+
* @param {*} [options] Override http request option.
|
|
5910
|
+
* @throws {RequiredError}
|
|
5911
|
+
*/
|
|
5912
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
5913
|
+
/**
|
|
5914
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
5915
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5916
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5917
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5918
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5919
|
+
* @param {*} [options] Override http request option.
|
|
5920
|
+
* @throws {RequiredError}
|
|
5921
|
+
*/
|
|
5922
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
5923
|
+
/**
|
|
5924
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
5925
|
+
* @param {string} name Name of linkgroup
|
|
5926
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
5927
|
+
* @param {*} [options] Override http request option.
|
|
5928
|
+
* @throws {RequiredError}
|
|
5929
|
+
*/
|
|
5930
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
5931
|
+
};
|
|
5932
|
+
/**
|
|
5933
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
5934
|
+
* @export
|
|
5935
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
5936
|
+
* @extends {BaseAPI}
|
|
5937
|
+
*/
|
|
5938
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
5939
|
+
/**
|
|
5940
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
5941
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
5942
|
+
* @param {*} [options] Override http request option.
|
|
5943
|
+
* @throws {RequiredError}
|
|
5944
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
5945
|
+
*/
|
|
5946
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
5947
|
+
/**
|
|
5948
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
5949
|
+
* @param {string} name Name of linkgroup
|
|
5950
|
+
* @param {*} [options] Override http request option.
|
|
5951
|
+
* @throws {RequiredError}
|
|
5952
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
5953
|
+
*/
|
|
5954
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5955
|
+
/**
|
|
5956
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
5957
|
+
* @param {string} name Name of linkgroup
|
|
5958
|
+
* @param {*} [options] Override http request option.
|
|
5959
|
+
* @throws {RequiredError}
|
|
5960
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
5961
|
+
*/
|
|
5962
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
5963
|
+
/**
|
|
5964
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
5965
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5966
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5967
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5968
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5969
|
+
* @param {*} [options] Override http request option.
|
|
5970
|
+
* @throws {RequiredError}
|
|
5971
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
5972
|
+
*/
|
|
5973
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
5974
|
+
/**
|
|
5975
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
5976
|
+
* @param {string} name Name of linkgroup
|
|
5977
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
5978
|
+
* @param {*} [options] Override http request option.
|
|
5979
|
+
* @throws {RequiredError}
|
|
5980
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
5981
|
+
*/
|
|
5982
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
5983
|
+
}
|
|
5984
|
+
/**
|
|
5985
|
+
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
5986
|
+
* @export
|
|
5987
|
+
*/
|
|
5988
|
+
declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5989
|
+
/**
|
|
5990
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
5991
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
5992
|
+
* @param {*} [options] Override http request option.
|
|
5993
|
+
* @throws {RequiredError}
|
|
5994
|
+
*/
|
|
5995
|
+
createpluginHaloRunV1alpha1Plugin: (plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5996
|
+
/**
|
|
5997
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
5998
|
+
* @param {string} name Name of plugin
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
deletepluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6003
|
+
/**
|
|
6004
|
+
* Get plugin.halo.run/v1alpha1/Plugin
|
|
6005
|
+
* @param {string} name Name of plugin
|
|
6006
|
+
* @param {*} [options] Override http request option.
|
|
6007
|
+
* @throws {RequiredError}
|
|
6008
|
+
*/
|
|
6009
|
+
getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6010
|
+
/**
|
|
6011
|
+
* List plugin.halo.run/v1alpha1/Plugin
|
|
6012
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6013
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6014
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6015
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6016
|
+
* @param {*} [options] Override http request option.
|
|
6017
|
+
* @throws {RequiredError}
|
|
6018
|
+
*/
|
|
6019
|
+
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6020
|
+
/**
|
|
6021
|
+
* Update plugin.halo.run/v1alpha1/Plugin
|
|
6022
|
+
* @param {string} name Name of plugin
|
|
6023
|
+
* @param {Plugin} [plugin] Updated plugin
|
|
6024
|
+
* @param {*} [options] Override http request option.
|
|
6025
|
+
* @throws {RequiredError}
|
|
6026
|
+
*/
|
|
6027
|
+
updatepluginHaloRunV1alpha1Plugin: (name: string, plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6028
|
+
};
|
|
6029
|
+
/**
|
|
6030
|
+
* PluginHaloRunV1alpha1PluginApi - functional programming interface
|
|
6031
|
+
* @export
|
|
6032
|
+
*/
|
|
6033
|
+
declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
6034
|
+
/**
|
|
6035
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
6036
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
6037
|
+
* @param {*} [options] Override http request option.
|
|
6038
|
+
* @throws {RequiredError}
|
|
6039
|
+
*/
|
|
6040
|
+
createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
6041
|
+
/**
|
|
6042
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
6043
|
+
* @param {string} name Name of plugin
|
|
6044
|
+
* @param {*} [options] Override http request option.
|
|
6045
|
+
* @throws {RequiredError}
|
|
6046
|
+
*/
|
|
6047
|
+
deletepluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6048
|
+
/**
|
|
6049
|
+
* Get plugin.halo.run/v1alpha1/Plugin
|
|
6050
|
+
* @param {string} name Name of plugin
|
|
6051
|
+
* @param {*} [options] Override http request option.
|
|
6052
|
+
* @throws {RequiredError}
|
|
6053
|
+
*/
|
|
6054
|
+
getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
6055
|
+
/**
|
|
6056
|
+
* List plugin.halo.run/v1alpha1/Plugin
|
|
6057
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6058
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6059
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6060
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6061
|
+
* @param {*} [options] Override http request option.
|
|
6062
|
+
* @throws {RequiredError}
|
|
6063
|
+
*/
|
|
6064
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
6065
|
+
/**
|
|
6066
|
+
* Update plugin.halo.run/v1alpha1/Plugin
|
|
6067
|
+
* @param {string} name Name of plugin
|
|
6068
|
+
* @param {Plugin} [plugin] Updated plugin
|
|
6069
|
+
* @param {*} [options] Override http request option.
|
|
6070
|
+
* @throws {RequiredError}
|
|
6071
|
+
*/
|
|
6072
|
+
updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
6073
|
+
};
|
|
6074
|
+
/**
|
|
6075
|
+
* PluginHaloRunV1alpha1PluginApi - factory interface
|
|
6076
|
+
* @export
|
|
6077
|
+
*/
|
|
6078
|
+
declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6079
|
+
/**
|
|
6080
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
6081
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
6082
|
+
* @param {*} [options] Override http request option.
|
|
6083
|
+
* @throws {RequiredError}
|
|
6084
|
+
*/
|
|
6085
|
+
createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: any): AxiosPromise<Plugin>;
|
|
6086
|
+
/**
|
|
6087
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
6088
|
+
* @param {string} name Name of plugin
|
|
6089
|
+
* @param {*} [options] Override http request option.
|
|
6090
|
+
* @throws {RequiredError}
|
|
6091
|
+
*/
|
|
6092
|
+
deletepluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<void>;
|
|
6093
|
+
/**
|
|
6094
|
+
* Get plugin.halo.run/v1alpha1/Plugin
|
|
6095
|
+
* @param {string} name Name of plugin
|
|
6096
|
+
* @param {*} [options] Override http request option.
|
|
6097
|
+
* @throws {RequiredError}
|
|
6098
|
+
*/
|
|
6099
|
+
getpluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<Plugin>;
|
|
6100
|
+
/**
|
|
6101
|
+
* List plugin.halo.run/v1alpha1/Plugin
|
|
6102
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6103
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6104
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6105
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6106
|
+
* @param {*} [options] Override http request option.
|
|
6107
|
+
* @throws {RequiredError}
|
|
6108
|
+
*/
|
|
6109
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
6110
|
+
/**
|
|
6111
|
+
* Update plugin.halo.run/v1alpha1/Plugin
|
|
5134
6112
|
* @param {string} name Name of plugin
|
|
5135
6113
|
* @param {Plugin} [plugin] Updated plugin
|
|
5136
6114
|
* @param {*} [options] Override http request option.
|
|
5137
6115
|
* @throws {RequiredError}
|
|
5138
|
-
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
5139
6116
|
*/
|
|
5140
|
-
updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?:
|
|
6117
|
+
updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?: any): AxiosPromise<Plugin>;
|
|
6118
|
+
};
|
|
6119
|
+
/**
|
|
6120
|
+
* PluginHaloRunV1alpha1PluginApi - object-oriented interface
|
|
6121
|
+
* @export
|
|
6122
|
+
* @class PluginHaloRunV1alpha1PluginApi
|
|
6123
|
+
* @extends {BaseAPI}
|
|
6124
|
+
*/
|
|
6125
|
+
declare class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
6126
|
+
/**
|
|
6127
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
6128
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
6129
|
+
* @param {*} [options] Override http request option.
|
|
6130
|
+
* @throws {RequiredError}
|
|
6131
|
+
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
6132
|
+
*/
|
|
6133
|
+
createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
6134
|
+
/**
|
|
6135
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
6136
|
+
* @param {string} name Name of plugin
|
|
6137
|
+
* @param {*} [options] Override http request option.
|
|
6138
|
+
* @throws {RequiredError}
|
|
6139
|
+
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
6140
|
+
*/
|
|
6141
|
+
deletepluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6142
|
+
/**
|
|
6143
|
+
* Get plugin.halo.run/v1alpha1/Plugin
|
|
6144
|
+
* @param {string} name Name of plugin
|
|
6145
|
+
* @param {*} [options] Override http request option.
|
|
6146
|
+
* @throws {RequiredError}
|
|
6147
|
+
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
6148
|
+
*/
|
|
6149
|
+
getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
6150
|
+
/**
|
|
6151
|
+
* List plugin.halo.run/v1alpha1/Plugin
|
|
6152
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6153
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6154
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6155
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6156
|
+
* @param {*} [options] Override http request option.
|
|
6157
|
+
* @throws {RequiredError}
|
|
6158
|
+
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
6159
|
+
*/
|
|
6160
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
6161
|
+
/**
|
|
6162
|
+
* Update plugin.halo.run/v1alpha1/Plugin
|
|
6163
|
+
* @param {string} name Name of plugin
|
|
6164
|
+
* @param {Plugin} [plugin] Updated plugin
|
|
6165
|
+
* @param {*} [options] Override http request option.
|
|
6166
|
+
* @throws {RequiredError}
|
|
6167
|
+
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
6168
|
+
*/
|
|
6169
|
+
updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
6170
|
+
}
|
|
6171
|
+
/**
|
|
6172
|
+
* PluginHaloRunV1alpha1ReverseProxyApi - axios parameter creator
|
|
6173
|
+
* @export
|
|
6174
|
+
*/
|
|
6175
|
+
declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6176
|
+
/**
|
|
6177
|
+
* Create plugin.halo.run/v1alpha1/ReverseProxy
|
|
6178
|
+
* @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
|
|
6179
|
+
* @param {*} [options] Override http request option.
|
|
6180
|
+
* @throws {RequiredError}
|
|
6181
|
+
*/
|
|
6182
|
+
createpluginHaloRunV1alpha1ReverseProxy: (reverseProxy?: ReverseProxy, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6183
|
+
/**
|
|
6184
|
+
* Delete plugin.halo.run/v1alpha1/ReverseProxy
|
|
6185
|
+
* @param {string} name Name of reverseproxy
|
|
6186
|
+
* @param {*} [options] Override http request option.
|
|
6187
|
+
* @throws {RequiredError}
|
|
6188
|
+
*/
|
|
6189
|
+
deletepluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6190
|
+
/**
|
|
6191
|
+
* Get plugin.halo.run/v1alpha1/ReverseProxy
|
|
6192
|
+
* @param {string} name Name of reverseproxy
|
|
6193
|
+
* @param {*} [options] Override http request option.
|
|
6194
|
+
* @throws {RequiredError}
|
|
6195
|
+
*/
|
|
6196
|
+
getpluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6197
|
+
/**
|
|
6198
|
+
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
6199
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6200
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6201
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6202
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6203
|
+
* @param {*} [options] Override http request option.
|
|
6204
|
+
* @throws {RequiredError}
|
|
6205
|
+
*/
|
|
6206
|
+
listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6207
|
+
/**
|
|
6208
|
+
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
6209
|
+
* @param {string} name Name of reverseproxy
|
|
6210
|
+
* @param {ReverseProxy} [reverseProxy] Updated reverseproxy
|
|
6211
|
+
* @param {*} [options] Override http request option.
|
|
6212
|
+
* @throws {RequiredError}
|
|
6213
|
+
*/
|
|
6214
|
+
updatepluginHaloRunV1alpha1ReverseProxy: (name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6215
|
+
};
|
|
6216
|
+
/**
|
|
6217
|
+
* PluginHaloRunV1alpha1ReverseProxyApi - functional programming interface
|
|
6218
|
+
* @export
|
|
6219
|
+
*/
|
|
6220
|
+
declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configuration) => {
|
|
6221
|
+
/**
|
|
6222
|
+
* Create plugin.halo.run/v1alpha1/ReverseProxy
|
|
6223
|
+
* @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
|
|
6224
|
+
* @param {*} [options] Override http request option.
|
|
6225
|
+
* @throws {RequiredError}
|
|
6226
|
+
*/
|
|
6227
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
|
|
6228
|
+
/**
|
|
6229
|
+
* Delete plugin.halo.run/v1alpha1/ReverseProxy
|
|
6230
|
+
* @param {string} name Name of reverseproxy
|
|
6231
|
+
* @param {*} [options] Override http request option.
|
|
6232
|
+
* @throws {RequiredError}
|
|
6233
|
+
*/
|
|
6234
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6235
|
+
/**
|
|
6236
|
+
* Get plugin.halo.run/v1alpha1/ReverseProxy
|
|
6237
|
+
* @param {string} name Name of reverseproxy
|
|
6238
|
+
* @param {*} [options] Override http request option.
|
|
6239
|
+
* @throws {RequiredError}
|
|
6240
|
+
*/
|
|
6241
|
+
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
|
|
6242
|
+
/**
|
|
6243
|
+
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
6244
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6245
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6246
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6247
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6248
|
+
* @param {*} [options] Override http request option.
|
|
6249
|
+
* @throws {RequiredError}
|
|
6250
|
+
*/
|
|
6251
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
|
|
6252
|
+
/**
|
|
6253
|
+
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
6254
|
+
* @param {string} name Name of reverseproxy
|
|
6255
|
+
* @param {ReverseProxy} [reverseProxy] Updated reverseproxy
|
|
6256
|
+
* @param {*} [options] Override http request option.
|
|
6257
|
+
* @throws {RequiredError}
|
|
6258
|
+
*/
|
|
6259
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
|
|
6260
|
+
};
|
|
6261
|
+
/**
|
|
6262
|
+
* PluginHaloRunV1alpha1ReverseProxyApi - factory interface
|
|
6263
|
+
* @export
|
|
6264
|
+
*/
|
|
6265
|
+
declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6266
|
+
/**
|
|
6267
|
+
* Create plugin.halo.run/v1alpha1/ReverseProxy
|
|
6268
|
+
* @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
|
|
6269
|
+
* @param {*} [options] Override http request option.
|
|
6270
|
+
* @throws {RequiredError}
|
|
6271
|
+
*/
|
|
6272
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy?: ReverseProxy, options?: any): AxiosPromise<ReverseProxy>;
|
|
6273
|
+
/**
|
|
6274
|
+
* Delete plugin.halo.run/v1alpha1/ReverseProxy
|
|
6275
|
+
* @param {string} name Name of reverseproxy
|
|
6276
|
+
* @param {*} [options] Override http request option.
|
|
6277
|
+
* @throws {RequiredError}
|
|
6278
|
+
*/
|
|
6279
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<void>;
|
|
6280
|
+
/**
|
|
6281
|
+
* Get plugin.halo.run/v1alpha1/ReverseProxy
|
|
6282
|
+
* @param {string} name Name of reverseproxy
|
|
6283
|
+
* @param {*} [options] Override http request option.
|
|
6284
|
+
* @throws {RequiredError}
|
|
6285
|
+
*/
|
|
6286
|
+
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<ReverseProxy>;
|
|
6287
|
+
/**
|
|
6288
|
+
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
6289
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6290
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6291
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6292
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6293
|
+
* @param {*} [options] Override http request option.
|
|
6294
|
+
* @throws {RequiredError}
|
|
6295
|
+
*/
|
|
6296
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReverseProxyList>;
|
|
6297
|
+
/**
|
|
6298
|
+
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
6299
|
+
* @param {string} name Name of reverseproxy
|
|
6300
|
+
* @param {ReverseProxy} [reverseProxy] Updated reverseproxy
|
|
6301
|
+
* @param {*} [options] Override http request option.
|
|
6302
|
+
* @throws {RequiredError}
|
|
6303
|
+
*/
|
|
6304
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: any): AxiosPromise<ReverseProxy>;
|
|
6305
|
+
};
|
|
6306
|
+
/**
|
|
6307
|
+
* PluginHaloRunV1alpha1ReverseProxyApi - object-oriented interface
|
|
6308
|
+
* @export
|
|
6309
|
+
* @class PluginHaloRunV1alpha1ReverseProxyApi
|
|
6310
|
+
* @extends {BaseAPI}
|
|
6311
|
+
*/
|
|
6312
|
+
declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
6313
|
+
/**
|
|
6314
|
+
* Create plugin.halo.run/v1alpha1/ReverseProxy
|
|
6315
|
+
* @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
|
|
6316
|
+
* @param {*} [options] Override http request option.
|
|
6317
|
+
* @throws {RequiredError}
|
|
6318
|
+
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
6319
|
+
*/
|
|
6320
|
+
createpluginHaloRunV1alpha1ReverseProxy(reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
6321
|
+
/**
|
|
6322
|
+
* Delete plugin.halo.run/v1alpha1/ReverseProxy
|
|
6323
|
+
* @param {string} name Name of reverseproxy
|
|
6324
|
+
* @param {*} [options] Override http request option.
|
|
6325
|
+
* @throws {RequiredError}
|
|
6326
|
+
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
6327
|
+
*/
|
|
6328
|
+
deletepluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6329
|
+
/**
|
|
6330
|
+
* Get plugin.halo.run/v1alpha1/ReverseProxy
|
|
6331
|
+
* @param {string} name Name of reverseproxy
|
|
6332
|
+
* @param {*} [options] Override http request option.
|
|
6333
|
+
* @throws {RequiredError}
|
|
6334
|
+
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
6335
|
+
*/
|
|
6336
|
+
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
6337
|
+
/**
|
|
6338
|
+
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
6339
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6340
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6341
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6342
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6343
|
+
* @param {*} [options] Override http request option.
|
|
6344
|
+
* @throws {RequiredError}
|
|
6345
|
+
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
6346
|
+
*/
|
|
6347
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxyList, any>>;
|
|
6348
|
+
/**
|
|
6349
|
+
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
6350
|
+
* @param {string} name Name of reverseproxy
|
|
6351
|
+
* @param {ReverseProxy} [reverseProxy] Updated reverseproxy
|
|
6352
|
+
* @param {*} [options] Override http request option.
|
|
6353
|
+
* @throws {RequiredError}
|
|
6354
|
+
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
6355
|
+
*/
|
|
6356
|
+
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
6357
|
+
}
|
|
6358
|
+
/**
|
|
6359
|
+
* StorageHaloRunV1alpha1AttachmentApi - axios parameter creator
|
|
6360
|
+
* @export
|
|
6361
|
+
*/
|
|
6362
|
+
declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6363
|
+
/**
|
|
6364
|
+
* Create storage.halo.run/v1alpha1/Attachment
|
|
6365
|
+
* @param {Attachment} [attachment] Fresh attachment
|
|
6366
|
+
* @param {*} [options] Override http request option.
|
|
6367
|
+
* @throws {RequiredError}
|
|
6368
|
+
*/
|
|
6369
|
+
createstorageHaloRunV1alpha1Attachment: (attachment?: Attachment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6370
|
+
/**
|
|
6371
|
+
* Delete storage.halo.run/v1alpha1/Attachment
|
|
6372
|
+
* @param {string} name Name of attachment
|
|
6373
|
+
* @param {*} [options] Override http request option.
|
|
6374
|
+
* @throws {RequiredError}
|
|
6375
|
+
*/
|
|
6376
|
+
deletestorageHaloRunV1alpha1Attachment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6377
|
+
/**
|
|
6378
|
+
* Get storage.halo.run/v1alpha1/Attachment
|
|
6379
|
+
* @param {string} name Name of attachment
|
|
6380
|
+
* @param {*} [options] Override http request option.
|
|
6381
|
+
* @throws {RequiredError}
|
|
6382
|
+
*/
|
|
6383
|
+
getstorageHaloRunV1alpha1Attachment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6384
|
+
/**
|
|
6385
|
+
* List storage.halo.run/v1alpha1/Attachment
|
|
6386
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6387
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6388
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6389
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6390
|
+
* @param {*} [options] Override http request option.
|
|
6391
|
+
* @throws {RequiredError}
|
|
6392
|
+
*/
|
|
6393
|
+
liststorageHaloRunV1alpha1Attachment: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6394
|
+
/**
|
|
6395
|
+
*
|
|
6396
|
+
* @param {string} [policy] Name of policy
|
|
6397
|
+
* @param {string} [displayName] Display name of attachment
|
|
6398
|
+
* @param {string} [group] Name of group
|
|
6399
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6400
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6401
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6402
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6403
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6404
|
+
* @param {*} [options] Override http request option.
|
|
6405
|
+
* @throws {RequiredError}
|
|
6406
|
+
*/
|
|
6407
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6408
|
+
/**
|
|
6409
|
+
* Update storage.halo.run/v1alpha1/Attachment
|
|
6410
|
+
* @param {string} name Name of attachment
|
|
6411
|
+
* @param {Attachment} [attachment] Updated attachment
|
|
6412
|
+
* @param {*} [options] Override http request option.
|
|
6413
|
+
* @throws {RequiredError}
|
|
6414
|
+
*/
|
|
6415
|
+
updatestorageHaloRunV1alpha1Attachment: (name: string, attachment?: Attachment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6416
|
+
/**
|
|
6417
|
+
*
|
|
6418
|
+
* @param {any} file
|
|
6419
|
+
* @param {string} policyName Storage policy name
|
|
6420
|
+
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
6421
|
+
* @param {*} [options] Override http request option.
|
|
6422
|
+
* @throws {RequiredError}
|
|
6423
|
+
*/
|
|
6424
|
+
uploadAttachment: (file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6425
|
+
};
|
|
6426
|
+
/**
|
|
6427
|
+
* StorageHaloRunV1alpha1AttachmentApi - functional programming interface
|
|
6428
|
+
* @export
|
|
6429
|
+
*/
|
|
6430
|
+
declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configuration) => {
|
|
6431
|
+
/**
|
|
6432
|
+
* Create storage.halo.run/v1alpha1/Attachment
|
|
6433
|
+
* @param {Attachment} [attachment] Fresh attachment
|
|
6434
|
+
* @param {*} [options] Override http request option.
|
|
6435
|
+
* @throws {RequiredError}
|
|
6436
|
+
*/
|
|
6437
|
+
createstorageHaloRunV1alpha1Attachment(attachment?: Attachment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
|
|
6438
|
+
/**
|
|
6439
|
+
* Delete storage.halo.run/v1alpha1/Attachment
|
|
6440
|
+
* @param {string} name Name of attachment
|
|
6441
|
+
* @param {*} [options] Override http request option.
|
|
6442
|
+
* @throws {RequiredError}
|
|
6443
|
+
*/
|
|
6444
|
+
deletestorageHaloRunV1alpha1Attachment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6445
|
+
/**
|
|
6446
|
+
* Get storage.halo.run/v1alpha1/Attachment
|
|
6447
|
+
* @param {string} name Name of attachment
|
|
6448
|
+
* @param {*} [options] Override http request option.
|
|
6449
|
+
* @throws {RequiredError}
|
|
6450
|
+
*/
|
|
6451
|
+
getstorageHaloRunV1alpha1Attachment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
|
|
6452
|
+
/**
|
|
6453
|
+
* List storage.halo.run/v1alpha1/Attachment
|
|
6454
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6455
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6456
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6457
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6458
|
+
* @param {*} [options] Override http request option.
|
|
6459
|
+
* @throws {RequiredError}
|
|
6460
|
+
*/
|
|
6461
|
+
liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
6462
|
+
/**
|
|
6463
|
+
*
|
|
6464
|
+
* @param {string} [policy] Name of policy
|
|
6465
|
+
* @param {string} [displayName] Display name of attachment
|
|
6466
|
+
* @param {string} [group] Name of group
|
|
6467
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6468
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6469
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6470
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6471
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6472
|
+
* @param {*} [options] Override http request option.
|
|
6473
|
+
* @throws {RequiredError}
|
|
6474
|
+
*/
|
|
6475
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
6476
|
+
/**
|
|
6477
|
+
* Update storage.halo.run/v1alpha1/Attachment
|
|
6478
|
+
* @param {string} name Name of attachment
|
|
6479
|
+
* @param {Attachment} [attachment] Updated attachment
|
|
6480
|
+
* @param {*} [options] Override http request option.
|
|
6481
|
+
* @throws {RequiredError}
|
|
6482
|
+
*/
|
|
6483
|
+
updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
|
|
6484
|
+
/**
|
|
6485
|
+
*
|
|
6486
|
+
* @param {any} file
|
|
6487
|
+
* @param {string} policyName Storage policy name
|
|
6488
|
+
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
6489
|
+
* @param {*} [options] Override http request option.
|
|
6490
|
+
* @throws {RequiredError}
|
|
6491
|
+
*/
|
|
6492
|
+
uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
|
|
6493
|
+
};
|
|
6494
|
+
/**
|
|
6495
|
+
* StorageHaloRunV1alpha1AttachmentApi - factory interface
|
|
6496
|
+
* @export
|
|
6497
|
+
*/
|
|
6498
|
+
declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6499
|
+
/**
|
|
6500
|
+
* Create storage.halo.run/v1alpha1/Attachment
|
|
6501
|
+
* @param {Attachment} [attachment] Fresh attachment
|
|
6502
|
+
* @param {*} [options] Override http request option.
|
|
6503
|
+
* @throws {RequiredError}
|
|
6504
|
+
*/
|
|
6505
|
+
createstorageHaloRunV1alpha1Attachment(attachment?: Attachment, options?: any): AxiosPromise<Attachment>;
|
|
6506
|
+
/**
|
|
6507
|
+
* Delete storage.halo.run/v1alpha1/Attachment
|
|
6508
|
+
* @param {string} name Name of attachment
|
|
6509
|
+
* @param {*} [options] Override http request option.
|
|
6510
|
+
* @throws {RequiredError}
|
|
6511
|
+
*/
|
|
6512
|
+
deletestorageHaloRunV1alpha1Attachment(name: string, options?: any): AxiosPromise<void>;
|
|
6513
|
+
/**
|
|
6514
|
+
* Get storage.halo.run/v1alpha1/Attachment
|
|
6515
|
+
* @param {string} name Name of attachment
|
|
6516
|
+
* @param {*} [options] Override http request option.
|
|
6517
|
+
* @throws {RequiredError}
|
|
6518
|
+
*/
|
|
6519
|
+
getstorageHaloRunV1alpha1Attachment(name: string, options?: any): AxiosPromise<Attachment>;
|
|
6520
|
+
/**
|
|
6521
|
+
* List storage.halo.run/v1alpha1/Attachment
|
|
6522
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6523
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6524
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6525
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6526
|
+
* @param {*} [options] Override http request option.
|
|
6527
|
+
* @throws {RequiredError}
|
|
6528
|
+
*/
|
|
6529
|
+
liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
6530
|
+
/**
|
|
6531
|
+
*
|
|
6532
|
+
* @param {string} [policy] Name of policy
|
|
6533
|
+
* @param {string} [displayName] Display name of attachment
|
|
6534
|
+
* @param {string} [group] Name of group
|
|
6535
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6536
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6537
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6538
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6539
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6540
|
+
* @param {*} [options] Override http request option.
|
|
6541
|
+
* @throws {RequiredError}
|
|
6542
|
+
*/
|
|
6543
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
6544
|
+
/**
|
|
6545
|
+
* Update storage.halo.run/v1alpha1/Attachment
|
|
6546
|
+
* @param {string} name Name of attachment
|
|
6547
|
+
* @param {Attachment} [attachment] Updated attachment
|
|
6548
|
+
* @param {*} [options] Override http request option.
|
|
6549
|
+
* @throws {RequiredError}
|
|
6550
|
+
*/
|
|
6551
|
+
updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: any): AxiosPromise<Attachment>;
|
|
6552
|
+
/**
|
|
6553
|
+
*
|
|
6554
|
+
* @param {any} file
|
|
6555
|
+
* @param {string} policyName Storage policy name
|
|
6556
|
+
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
6557
|
+
* @param {*} [options] Override http request option.
|
|
6558
|
+
* @throws {RequiredError}
|
|
6559
|
+
*/
|
|
6560
|
+
uploadAttachment(file: any, policyName: string, groupName?: string, options?: any): AxiosPromise<Attachment>;
|
|
6561
|
+
};
|
|
6562
|
+
/**
|
|
6563
|
+
* StorageHaloRunV1alpha1AttachmentApi - object-oriented interface
|
|
6564
|
+
* @export
|
|
6565
|
+
* @class StorageHaloRunV1alpha1AttachmentApi
|
|
6566
|
+
* @extends {BaseAPI}
|
|
6567
|
+
*/
|
|
6568
|
+
declare class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
6569
|
+
/**
|
|
6570
|
+
* Create storage.halo.run/v1alpha1/Attachment
|
|
6571
|
+
* @param {Attachment} [attachment] Fresh attachment
|
|
6572
|
+
* @param {*} [options] Override http request option.
|
|
6573
|
+
* @throws {RequiredError}
|
|
6574
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6575
|
+
*/
|
|
6576
|
+
createstorageHaloRunV1alpha1Attachment(attachment?: Attachment, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
|
|
6577
|
+
/**
|
|
6578
|
+
* Delete storage.halo.run/v1alpha1/Attachment
|
|
6579
|
+
* @param {string} name Name of attachment
|
|
6580
|
+
* @param {*} [options] Override http request option.
|
|
6581
|
+
* @throws {RequiredError}
|
|
6582
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6583
|
+
*/
|
|
6584
|
+
deletestorageHaloRunV1alpha1Attachment(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6585
|
+
/**
|
|
6586
|
+
* Get storage.halo.run/v1alpha1/Attachment
|
|
6587
|
+
* @param {string} name Name of attachment
|
|
6588
|
+
* @param {*} [options] Override http request option.
|
|
6589
|
+
* @throws {RequiredError}
|
|
6590
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6591
|
+
*/
|
|
6592
|
+
getstorageHaloRunV1alpha1Attachment(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
|
|
6593
|
+
/**
|
|
6594
|
+
* List storage.halo.run/v1alpha1/Attachment
|
|
6595
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6596
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6597
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6598
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6599
|
+
* @param {*} [options] Override http request option.
|
|
6600
|
+
* @throws {RequiredError}
|
|
6601
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6602
|
+
*/
|
|
6603
|
+
liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
|
|
6604
|
+
/**
|
|
6605
|
+
*
|
|
6606
|
+
* @param {string} [policy] Name of policy
|
|
6607
|
+
* @param {string} [displayName] Display name of attachment
|
|
6608
|
+
* @param {string} [group] Name of group
|
|
6609
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6610
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6611
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6612
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6613
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6614
|
+
* @param {*} [options] Override http request option.
|
|
6615
|
+
* @throws {RequiredError}
|
|
6616
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6617
|
+
*/
|
|
6618
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
|
|
6619
|
+
/**
|
|
6620
|
+
* Update storage.halo.run/v1alpha1/Attachment
|
|
6621
|
+
* @param {string} name Name of attachment
|
|
6622
|
+
* @param {Attachment} [attachment] Updated attachment
|
|
6623
|
+
* @param {*} [options] Override http request option.
|
|
6624
|
+
* @throws {RequiredError}
|
|
6625
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6626
|
+
*/
|
|
6627
|
+
updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
|
|
6628
|
+
/**
|
|
6629
|
+
*
|
|
6630
|
+
* @param {any} file
|
|
6631
|
+
* @param {string} policyName Storage policy name
|
|
6632
|
+
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
6633
|
+
* @param {*} [options] Override http request option.
|
|
6634
|
+
* @throws {RequiredError}
|
|
6635
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApi
|
|
6636
|
+
*/
|
|
6637
|
+
uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
|
|
6638
|
+
}
|
|
6639
|
+
/**
|
|
6640
|
+
* StorageHaloRunV1alpha1GroupApi - axios parameter creator
|
|
6641
|
+
* @export
|
|
6642
|
+
*/
|
|
6643
|
+
declare const StorageHaloRunV1alpha1GroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6644
|
+
/**
|
|
6645
|
+
* Create storage.halo.run/v1alpha1/Group
|
|
6646
|
+
* @param {Group} [group] Fresh group
|
|
6647
|
+
* @param {*} [options] Override http request option.
|
|
6648
|
+
* @throws {RequiredError}
|
|
6649
|
+
*/
|
|
6650
|
+
createstorageHaloRunV1alpha1Group: (group?: Group, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6651
|
+
/**
|
|
6652
|
+
* Delete storage.halo.run/v1alpha1/Group
|
|
6653
|
+
* @param {string} name Name of group
|
|
6654
|
+
* @param {*} [options] Override http request option.
|
|
6655
|
+
* @throws {RequiredError}
|
|
6656
|
+
*/
|
|
6657
|
+
deletestorageHaloRunV1alpha1Group: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6658
|
+
/**
|
|
6659
|
+
* Get storage.halo.run/v1alpha1/Group
|
|
6660
|
+
* @param {string} name Name of group
|
|
6661
|
+
* @param {*} [options] Override http request option.
|
|
6662
|
+
* @throws {RequiredError}
|
|
6663
|
+
*/
|
|
6664
|
+
getstorageHaloRunV1alpha1Group: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6665
|
+
/**
|
|
6666
|
+
* List storage.halo.run/v1alpha1/Group
|
|
6667
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6668
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6669
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6670
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6671
|
+
* @param {*} [options] Override http request option.
|
|
6672
|
+
* @throws {RequiredError}
|
|
6673
|
+
*/
|
|
6674
|
+
liststorageHaloRunV1alpha1Group: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6675
|
+
/**
|
|
6676
|
+
* Update storage.halo.run/v1alpha1/Group
|
|
6677
|
+
* @param {string} name Name of group
|
|
6678
|
+
* @param {Group} [group] Updated group
|
|
6679
|
+
* @param {*} [options] Override http request option.
|
|
6680
|
+
* @throws {RequiredError}
|
|
6681
|
+
*/
|
|
6682
|
+
updatestorageHaloRunV1alpha1Group: (name: string, group?: Group, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6683
|
+
};
|
|
6684
|
+
/**
|
|
6685
|
+
* StorageHaloRunV1alpha1GroupApi - functional programming interface
|
|
6686
|
+
* @export
|
|
6687
|
+
*/
|
|
6688
|
+
declare const StorageHaloRunV1alpha1GroupApiFp: (configuration?: Configuration) => {
|
|
6689
|
+
/**
|
|
6690
|
+
* Create storage.halo.run/v1alpha1/Group
|
|
6691
|
+
* @param {Group} [group] Fresh group
|
|
6692
|
+
* @param {*} [options] Override http request option.
|
|
6693
|
+
* @throws {RequiredError}
|
|
6694
|
+
*/
|
|
6695
|
+
createstorageHaloRunV1alpha1Group(group?: Group, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
|
|
6696
|
+
/**
|
|
6697
|
+
* Delete storage.halo.run/v1alpha1/Group
|
|
6698
|
+
* @param {string} name Name of group
|
|
6699
|
+
* @param {*} [options] Override http request option.
|
|
6700
|
+
* @throws {RequiredError}
|
|
6701
|
+
*/
|
|
6702
|
+
deletestorageHaloRunV1alpha1Group(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6703
|
+
/**
|
|
6704
|
+
* Get storage.halo.run/v1alpha1/Group
|
|
6705
|
+
* @param {string} name Name of group
|
|
6706
|
+
* @param {*} [options] Override http request option.
|
|
6707
|
+
* @throws {RequiredError}
|
|
6708
|
+
*/
|
|
6709
|
+
getstorageHaloRunV1alpha1Group(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
|
|
6710
|
+
/**
|
|
6711
|
+
* List storage.halo.run/v1alpha1/Group
|
|
6712
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6713
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6714
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6715
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6716
|
+
* @param {*} [options] Override http request option.
|
|
6717
|
+
* @throws {RequiredError}
|
|
6718
|
+
*/
|
|
6719
|
+
liststorageHaloRunV1alpha1Group(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupList>>;
|
|
6720
|
+
/**
|
|
6721
|
+
* Update storage.halo.run/v1alpha1/Group
|
|
6722
|
+
* @param {string} name Name of group
|
|
6723
|
+
* @param {Group} [group] Updated group
|
|
6724
|
+
* @param {*} [options] Override http request option.
|
|
6725
|
+
* @throws {RequiredError}
|
|
6726
|
+
*/
|
|
6727
|
+
updatestorageHaloRunV1alpha1Group(name: string, group?: Group, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
|
|
6728
|
+
};
|
|
6729
|
+
/**
|
|
6730
|
+
* StorageHaloRunV1alpha1GroupApi - factory interface
|
|
6731
|
+
* @export
|
|
6732
|
+
*/
|
|
6733
|
+
declare const StorageHaloRunV1alpha1GroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6734
|
+
/**
|
|
6735
|
+
* Create storage.halo.run/v1alpha1/Group
|
|
6736
|
+
* @param {Group} [group] Fresh group
|
|
6737
|
+
* @param {*} [options] Override http request option.
|
|
6738
|
+
* @throws {RequiredError}
|
|
6739
|
+
*/
|
|
6740
|
+
createstorageHaloRunV1alpha1Group(group?: Group, options?: any): AxiosPromise<Group>;
|
|
6741
|
+
/**
|
|
6742
|
+
* Delete storage.halo.run/v1alpha1/Group
|
|
6743
|
+
* @param {string} name Name of group
|
|
6744
|
+
* @param {*} [options] Override http request option.
|
|
6745
|
+
* @throws {RequiredError}
|
|
6746
|
+
*/
|
|
6747
|
+
deletestorageHaloRunV1alpha1Group(name: string, options?: any): AxiosPromise<void>;
|
|
6748
|
+
/**
|
|
6749
|
+
* Get storage.halo.run/v1alpha1/Group
|
|
6750
|
+
* @param {string} name Name of group
|
|
6751
|
+
* @param {*} [options] Override http request option.
|
|
6752
|
+
* @throws {RequiredError}
|
|
6753
|
+
*/
|
|
6754
|
+
getstorageHaloRunV1alpha1Group(name: string, options?: any): AxiosPromise<Group>;
|
|
6755
|
+
/**
|
|
6756
|
+
* List storage.halo.run/v1alpha1/Group
|
|
6757
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6758
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6759
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6760
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6761
|
+
* @param {*} [options] Override http request option.
|
|
6762
|
+
* @throws {RequiredError}
|
|
6763
|
+
*/
|
|
6764
|
+
liststorageHaloRunV1alpha1Group(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<GroupList>;
|
|
6765
|
+
/**
|
|
6766
|
+
* Update storage.halo.run/v1alpha1/Group
|
|
6767
|
+
* @param {string} name Name of group
|
|
6768
|
+
* @param {Group} [group] Updated group
|
|
6769
|
+
* @param {*} [options] Override http request option.
|
|
6770
|
+
* @throws {RequiredError}
|
|
6771
|
+
*/
|
|
6772
|
+
updatestorageHaloRunV1alpha1Group(name: string, group?: Group, options?: any): AxiosPromise<Group>;
|
|
6773
|
+
};
|
|
6774
|
+
/**
|
|
6775
|
+
* StorageHaloRunV1alpha1GroupApi - object-oriented interface
|
|
6776
|
+
* @export
|
|
6777
|
+
* @class StorageHaloRunV1alpha1GroupApi
|
|
6778
|
+
* @extends {BaseAPI}
|
|
6779
|
+
*/
|
|
6780
|
+
declare class StorageHaloRunV1alpha1GroupApi extends BaseAPI {
|
|
6781
|
+
/**
|
|
6782
|
+
* Create storage.halo.run/v1alpha1/Group
|
|
6783
|
+
* @param {Group} [group] Fresh group
|
|
6784
|
+
* @param {*} [options] Override http request option.
|
|
6785
|
+
* @throws {RequiredError}
|
|
6786
|
+
* @memberof StorageHaloRunV1alpha1GroupApi
|
|
6787
|
+
*/
|
|
6788
|
+
createstorageHaloRunV1alpha1Group(group?: Group, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Group, any>>;
|
|
6789
|
+
/**
|
|
6790
|
+
* Delete storage.halo.run/v1alpha1/Group
|
|
6791
|
+
* @param {string} name Name of group
|
|
6792
|
+
* @param {*} [options] Override http request option.
|
|
6793
|
+
* @throws {RequiredError}
|
|
6794
|
+
* @memberof StorageHaloRunV1alpha1GroupApi
|
|
6795
|
+
*/
|
|
6796
|
+
deletestorageHaloRunV1alpha1Group(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6797
|
+
/**
|
|
6798
|
+
* Get storage.halo.run/v1alpha1/Group
|
|
6799
|
+
* @param {string} name Name of group
|
|
6800
|
+
* @param {*} [options] Override http request option.
|
|
6801
|
+
* @throws {RequiredError}
|
|
6802
|
+
* @memberof StorageHaloRunV1alpha1GroupApi
|
|
6803
|
+
*/
|
|
6804
|
+
getstorageHaloRunV1alpha1Group(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Group, any>>;
|
|
6805
|
+
/**
|
|
6806
|
+
* List storage.halo.run/v1alpha1/Group
|
|
6807
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6808
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6809
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6810
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6811
|
+
* @param {*} [options] Override http request option.
|
|
6812
|
+
* @throws {RequiredError}
|
|
6813
|
+
* @memberof StorageHaloRunV1alpha1GroupApi
|
|
6814
|
+
*/
|
|
6815
|
+
liststorageHaloRunV1alpha1Group(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<GroupList, any>>;
|
|
6816
|
+
/**
|
|
6817
|
+
* Update storage.halo.run/v1alpha1/Group
|
|
6818
|
+
* @param {string} name Name of group
|
|
6819
|
+
* @param {Group} [group] Updated group
|
|
6820
|
+
* @param {*} [options] Override http request option.
|
|
6821
|
+
* @throws {RequiredError}
|
|
6822
|
+
* @memberof StorageHaloRunV1alpha1GroupApi
|
|
6823
|
+
*/
|
|
6824
|
+
updatestorageHaloRunV1alpha1Group(name: string, group?: Group, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Group, any>>;
|
|
5141
6825
|
}
|
|
5142
6826
|
/**
|
|
5143
|
-
*
|
|
6827
|
+
* StorageHaloRunV1alpha1PolicyApi - axios parameter creator
|
|
5144
6828
|
* @export
|
|
5145
6829
|
*/
|
|
5146
|
-
declare const
|
|
6830
|
+
declare const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5147
6831
|
/**
|
|
5148
|
-
* Create
|
|
5149
|
-
* @param {
|
|
6832
|
+
* Create storage.halo.run/v1alpha1/Policy
|
|
6833
|
+
* @param {Policy} [policy] Fresh policy
|
|
5150
6834
|
* @param {*} [options] Override http request option.
|
|
5151
6835
|
* @throws {RequiredError}
|
|
5152
6836
|
*/
|
|
5153
|
-
|
|
6837
|
+
createstorageHaloRunV1alpha1Policy: (policy?: Policy, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5154
6838
|
/**
|
|
5155
|
-
* Delete
|
|
5156
|
-
* @param {string} name Name of
|
|
6839
|
+
* Delete storage.halo.run/v1alpha1/Policy
|
|
6840
|
+
* @param {string} name Name of policy
|
|
5157
6841
|
* @param {*} [options] Override http request option.
|
|
5158
6842
|
* @throws {RequiredError}
|
|
5159
6843
|
*/
|
|
5160
|
-
|
|
6844
|
+
deletestorageHaloRunV1alpha1Policy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5161
6845
|
/**
|
|
5162
|
-
* Get
|
|
5163
|
-
* @param {string} name Name of
|
|
6846
|
+
* Get storage.halo.run/v1alpha1/Policy
|
|
6847
|
+
* @param {string} name Name of policy
|
|
5164
6848
|
* @param {*} [options] Override http request option.
|
|
5165
6849
|
* @throws {RequiredError}
|
|
5166
6850
|
*/
|
|
5167
|
-
|
|
6851
|
+
getstorageHaloRunV1alpha1Policy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5168
6852
|
/**
|
|
5169
|
-
* List
|
|
6853
|
+
* List storage.halo.run/v1alpha1/Policy
|
|
5170
6854
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5171
6855
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5172
6856
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5174,44 +6858,44 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configurat
|
|
|
5174
6858
|
* @param {*} [options] Override http request option.
|
|
5175
6859
|
* @throws {RequiredError}
|
|
5176
6860
|
*/
|
|
5177
|
-
|
|
6861
|
+
liststorageHaloRunV1alpha1Policy: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5178
6862
|
/**
|
|
5179
|
-
* Update
|
|
5180
|
-
* @param {string} name Name of
|
|
5181
|
-
* @param {
|
|
6863
|
+
* Update storage.halo.run/v1alpha1/Policy
|
|
6864
|
+
* @param {string} name Name of policy
|
|
6865
|
+
* @param {Policy} [policy] Updated policy
|
|
5182
6866
|
* @param {*} [options] Override http request option.
|
|
5183
6867
|
* @throws {RequiredError}
|
|
5184
6868
|
*/
|
|
5185
|
-
|
|
6869
|
+
updatestorageHaloRunV1alpha1Policy: (name: string, policy?: Policy, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5186
6870
|
};
|
|
5187
6871
|
/**
|
|
5188
|
-
*
|
|
6872
|
+
* StorageHaloRunV1alpha1PolicyApi - functional programming interface
|
|
5189
6873
|
* @export
|
|
5190
6874
|
*/
|
|
5191
|
-
declare const
|
|
6875
|
+
declare const StorageHaloRunV1alpha1PolicyApiFp: (configuration?: Configuration) => {
|
|
5192
6876
|
/**
|
|
5193
|
-
* Create
|
|
5194
|
-
* @param {
|
|
6877
|
+
* Create storage.halo.run/v1alpha1/Policy
|
|
6878
|
+
* @param {Policy} [policy] Fresh policy
|
|
5195
6879
|
* @param {*} [options] Override http request option.
|
|
5196
6880
|
* @throws {RequiredError}
|
|
5197
6881
|
*/
|
|
5198
|
-
|
|
6882
|
+
createstorageHaloRunV1alpha1Policy(policy?: Policy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policy>>;
|
|
5199
6883
|
/**
|
|
5200
|
-
* Delete
|
|
5201
|
-
* @param {string} name Name of
|
|
6884
|
+
* Delete storage.halo.run/v1alpha1/Policy
|
|
6885
|
+
* @param {string} name Name of policy
|
|
5202
6886
|
* @param {*} [options] Override http request option.
|
|
5203
6887
|
* @throws {RequiredError}
|
|
5204
6888
|
*/
|
|
5205
|
-
|
|
6889
|
+
deletestorageHaloRunV1alpha1Policy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5206
6890
|
/**
|
|
5207
|
-
* Get
|
|
5208
|
-
* @param {string} name Name of
|
|
6891
|
+
* Get storage.halo.run/v1alpha1/Policy
|
|
6892
|
+
* @param {string} name Name of policy
|
|
5209
6893
|
* @param {*} [options] Override http request option.
|
|
5210
6894
|
* @throws {RequiredError}
|
|
5211
6895
|
*/
|
|
5212
|
-
|
|
6896
|
+
getstorageHaloRunV1alpha1Policy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policy>>;
|
|
5213
6897
|
/**
|
|
5214
|
-
* List
|
|
6898
|
+
* List storage.halo.run/v1alpha1/Policy
|
|
5215
6899
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5216
6900
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5217
6901
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5219,44 +6903,44 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
|
|
|
5219
6903
|
* @param {*} [options] Override http request option.
|
|
5220
6904
|
* @throws {RequiredError}
|
|
5221
6905
|
*/
|
|
5222
|
-
|
|
6906
|
+
liststorageHaloRunV1alpha1Policy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyList>>;
|
|
5223
6907
|
/**
|
|
5224
|
-
* Update
|
|
5225
|
-
* @param {string} name Name of
|
|
5226
|
-
* @param {
|
|
6908
|
+
* Update storage.halo.run/v1alpha1/Policy
|
|
6909
|
+
* @param {string} name Name of policy
|
|
6910
|
+
* @param {Policy} [policy] Updated policy
|
|
5227
6911
|
* @param {*} [options] Override http request option.
|
|
5228
6912
|
* @throws {RequiredError}
|
|
5229
6913
|
*/
|
|
5230
|
-
|
|
6914
|
+
updatestorageHaloRunV1alpha1Policy(name: string, policy?: Policy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policy>>;
|
|
5231
6915
|
};
|
|
5232
6916
|
/**
|
|
5233
|
-
*
|
|
6917
|
+
* StorageHaloRunV1alpha1PolicyApi - factory interface
|
|
5234
6918
|
* @export
|
|
5235
6919
|
*/
|
|
5236
|
-
declare const
|
|
6920
|
+
declare const StorageHaloRunV1alpha1PolicyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5237
6921
|
/**
|
|
5238
|
-
* Create
|
|
5239
|
-
* @param {
|
|
6922
|
+
* Create storage.halo.run/v1alpha1/Policy
|
|
6923
|
+
* @param {Policy} [policy] Fresh policy
|
|
5240
6924
|
* @param {*} [options] Override http request option.
|
|
5241
6925
|
* @throws {RequiredError}
|
|
5242
6926
|
*/
|
|
5243
|
-
|
|
6927
|
+
createstorageHaloRunV1alpha1Policy(policy?: Policy, options?: any): AxiosPromise<Policy>;
|
|
5244
6928
|
/**
|
|
5245
|
-
* Delete
|
|
5246
|
-
* @param {string} name Name of
|
|
6929
|
+
* Delete storage.halo.run/v1alpha1/Policy
|
|
6930
|
+
* @param {string} name Name of policy
|
|
5247
6931
|
* @param {*} [options] Override http request option.
|
|
5248
6932
|
* @throws {RequiredError}
|
|
5249
6933
|
*/
|
|
5250
|
-
|
|
6934
|
+
deletestorageHaloRunV1alpha1Policy(name: string, options?: any): AxiosPromise<void>;
|
|
5251
6935
|
/**
|
|
5252
|
-
* Get
|
|
5253
|
-
* @param {string} name Name of
|
|
6936
|
+
* Get storage.halo.run/v1alpha1/Policy
|
|
6937
|
+
* @param {string} name Name of policy
|
|
5254
6938
|
* @param {*} [options] Override http request option.
|
|
5255
6939
|
* @throws {RequiredError}
|
|
5256
6940
|
*/
|
|
5257
|
-
|
|
6941
|
+
getstorageHaloRunV1alpha1Policy(name: string, options?: any): AxiosPromise<Policy>;
|
|
5258
6942
|
/**
|
|
5259
|
-
* List
|
|
6943
|
+
* List storage.halo.run/v1alpha1/Policy
|
|
5260
6944
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5261
6945
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5262
6946
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -5264,67 +6948,254 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Conf
|
|
|
5264
6948
|
* @param {*} [options] Override http request option.
|
|
5265
6949
|
* @throws {RequiredError}
|
|
5266
6950
|
*/
|
|
5267
|
-
|
|
6951
|
+
liststorageHaloRunV1alpha1Policy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PolicyList>;
|
|
5268
6952
|
/**
|
|
5269
|
-
* Update
|
|
5270
|
-
* @param {string} name Name of
|
|
5271
|
-
* @param {
|
|
6953
|
+
* Update storage.halo.run/v1alpha1/Policy
|
|
6954
|
+
* @param {string} name Name of policy
|
|
6955
|
+
* @param {Policy} [policy] Updated policy
|
|
5272
6956
|
* @param {*} [options] Override http request option.
|
|
5273
6957
|
* @throws {RequiredError}
|
|
5274
6958
|
*/
|
|
5275
|
-
|
|
6959
|
+
updatestorageHaloRunV1alpha1Policy(name: string, policy?: Policy, options?: any): AxiosPromise<Policy>;
|
|
5276
6960
|
};
|
|
5277
6961
|
/**
|
|
5278
|
-
*
|
|
6962
|
+
* StorageHaloRunV1alpha1PolicyApi - object-oriented interface
|
|
5279
6963
|
* @export
|
|
5280
|
-
* @class
|
|
6964
|
+
* @class StorageHaloRunV1alpha1PolicyApi
|
|
5281
6965
|
* @extends {BaseAPI}
|
|
5282
6966
|
*/
|
|
5283
|
-
declare class
|
|
6967
|
+
declare class StorageHaloRunV1alpha1PolicyApi extends BaseAPI {
|
|
5284
6968
|
/**
|
|
5285
|
-
* Create
|
|
5286
|
-
* @param {
|
|
6969
|
+
* Create storage.halo.run/v1alpha1/Policy
|
|
6970
|
+
* @param {Policy} [policy] Fresh policy
|
|
5287
6971
|
* @param {*} [options] Override http request option.
|
|
5288
6972
|
* @throws {RequiredError}
|
|
5289
|
-
* @memberof
|
|
6973
|
+
* @memberof StorageHaloRunV1alpha1PolicyApi
|
|
5290
6974
|
*/
|
|
5291
|
-
|
|
6975
|
+
createstorageHaloRunV1alpha1Policy(policy?: Policy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Policy, any>>;
|
|
5292
6976
|
/**
|
|
5293
|
-
* Delete
|
|
5294
|
-
* @param {string} name Name of
|
|
6977
|
+
* Delete storage.halo.run/v1alpha1/Policy
|
|
6978
|
+
* @param {string} name Name of policy
|
|
5295
6979
|
* @param {*} [options] Override http request option.
|
|
5296
6980
|
* @throws {RequiredError}
|
|
5297
|
-
* @memberof
|
|
6981
|
+
* @memberof StorageHaloRunV1alpha1PolicyApi
|
|
5298
6982
|
*/
|
|
5299
|
-
|
|
6983
|
+
deletestorageHaloRunV1alpha1Policy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5300
6984
|
/**
|
|
5301
|
-
* Get
|
|
5302
|
-
* @param {string} name Name of
|
|
6985
|
+
* Get storage.halo.run/v1alpha1/Policy
|
|
6986
|
+
* @param {string} name Name of policy
|
|
5303
6987
|
* @param {*} [options] Override http request option.
|
|
5304
6988
|
* @throws {RequiredError}
|
|
5305
|
-
* @memberof
|
|
6989
|
+
* @memberof StorageHaloRunV1alpha1PolicyApi
|
|
5306
6990
|
*/
|
|
5307
|
-
|
|
6991
|
+
getstorageHaloRunV1alpha1Policy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Policy, any>>;
|
|
5308
6992
|
/**
|
|
5309
|
-
* List
|
|
6993
|
+
* List storage.halo.run/v1alpha1/Policy
|
|
5310
6994
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
5311
6995
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5312
6996
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5313
6997
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5314
6998
|
* @param {*} [options] Override http request option.
|
|
5315
6999
|
* @throws {RequiredError}
|
|
5316
|
-
* @memberof
|
|
7000
|
+
* @memberof StorageHaloRunV1alpha1PolicyApi
|
|
5317
7001
|
*/
|
|
5318
|
-
|
|
7002
|
+
liststorageHaloRunV1alpha1Policy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PolicyList, any>>;
|
|
5319
7003
|
/**
|
|
5320
|
-
* Update
|
|
5321
|
-
* @param {string} name Name of
|
|
5322
|
-
* @param {
|
|
7004
|
+
* Update storage.halo.run/v1alpha1/Policy
|
|
7005
|
+
* @param {string} name Name of policy
|
|
7006
|
+
* @param {Policy} [policy] Updated policy
|
|
5323
7007
|
* @param {*} [options] Override http request option.
|
|
5324
7008
|
* @throws {RequiredError}
|
|
5325
|
-
* @memberof
|
|
7009
|
+
* @memberof StorageHaloRunV1alpha1PolicyApi
|
|
5326
7010
|
*/
|
|
5327
|
-
|
|
7011
|
+
updatestorageHaloRunV1alpha1Policy(name: string, policy?: Policy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Policy, any>>;
|
|
7012
|
+
}
|
|
7013
|
+
/**
|
|
7014
|
+
* StorageHaloRunV1alpha1PolicyTemplateApi - axios parameter creator
|
|
7015
|
+
* @export
|
|
7016
|
+
*/
|
|
7017
|
+
declare const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7018
|
+
/**
|
|
7019
|
+
* Create storage.halo.run/v1alpha1/PolicyTemplate
|
|
7020
|
+
* @param {PolicyTemplate} [policyTemplate] Fresh policytemplate
|
|
7021
|
+
* @param {*} [options] Override http request option.
|
|
7022
|
+
* @throws {RequiredError}
|
|
7023
|
+
*/
|
|
7024
|
+
createstorageHaloRunV1alpha1PolicyTemplate: (policyTemplate?: PolicyTemplate, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7025
|
+
/**
|
|
7026
|
+
* Delete storage.halo.run/v1alpha1/PolicyTemplate
|
|
7027
|
+
* @param {string} name Name of policytemplate
|
|
7028
|
+
* @param {*} [options] Override http request option.
|
|
7029
|
+
* @throws {RequiredError}
|
|
7030
|
+
*/
|
|
7031
|
+
deletestorageHaloRunV1alpha1PolicyTemplate: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7032
|
+
/**
|
|
7033
|
+
* Get storage.halo.run/v1alpha1/PolicyTemplate
|
|
7034
|
+
* @param {string} name Name of policytemplate
|
|
7035
|
+
* @param {*} [options] Override http request option.
|
|
7036
|
+
* @throws {RequiredError}
|
|
7037
|
+
*/
|
|
7038
|
+
getstorageHaloRunV1alpha1PolicyTemplate: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7039
|
+
/**
|
|
7040
|
+
* List storage.halo.run/v1alpha1/PolicyTemplate
|
|
7041
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7042
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7043
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7044
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7045
|
+
* @param {*} [options] Override http request option.
|
|
7046
|
+
* @throws {RequiredError}
|
|
7047
|
+
*/
|
|
7048
|
+
liststorageHaloRunV1alpha1PolicyTemplate: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7049
|
+
/**
|
|
7050
|
+
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
7051
|
+
* @param {string} name Name of policytemplate
|
|
7052
|
+
* @param {PolicyTemplate} [policyTemplate] Updated policytemplate
|
|
7053
|
+
* @param {*} [options] Override http request option.
|
|
7054
|
+
* @throws {RequiredError}
|
|
7055
|
+
*/
|
|
7056
|
+
updatestorageHaloRunV1alpha1PolicyTemplate: (name: string, policyTemplate?: PolicyTemplate, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7057
|
+
};
|
|
7058
|
+
/**
|
|
7059
|
+
* StorageHaloRunV1alpha1PolicyTemplateApi - functional programming interface
|
|
7060
|
+
* @export
|
|
7061
|
+
*/
|
|
7062
|
+
declare const StorageHaloRunV1alpha1PolicyTemplateApiFp: (configuration?: Configuration) => {
|
|
7063
|
+
/**
|
|
7064
|
+
* Create storage.halo.run/v1alpha1/PolicyTemplate
|
|
7065
|
+
* @param {PolicyTemplate} [policyTemplate] Fresh policytemplate
|
|
7066
|
+
* @param {*} [options] Override http request option.
|
|
7067
|
+
* @throws {RequiredError}
|
|
7068
|
+
*/
|
|
7069
|
+
createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate?: PolicyTemplate, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyTemplate>>;
|
|
7070
|
+
/**
|
|
7071
|
+
* Delete storage.halo.run/v1alpha1/PolicyTemplate
|
|
7072
|
+
* @param {string} name Name of policytemplate
|
|
7073
|
+
* @param {*} [options] Override http request option.
|
|
7074
|
+
* @throws {RequiredError}
|
|
7075
|
+
*/
|
|
7076
|
+
deletestorageHaloRunV1alpha1PolicyTemplate(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7077
|
+
/**
|
|
7078
|
+
* Get storage.halo.run/v1alpha1/PolicyTemplate
|
|
7079
|
+
* @param {string} name Name of policytemplate
|
|
7080
|
+
* @param {*} [options] Override http request option.
|
|
7081
|
+
* @throws {RequiredError}
|
|
7082
|
+
*/
|
|
7083
|
+
getstorageHaloRunV1alpha1PolicyTemplate(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyTemplate>>;
|
|
7084
|
+
/**
|
|
7085
|
+
* List storage.halo.run/v1alpha1/PolicyTemplate
|
|
7086
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7087
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7088
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7089
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7090
|
+
* @param {*} [options] Override http request option.
|
|
7091
|
+
* @throws {RequiredError}
|
|
7092
|
+
*/
|
|
7093
|
+
liststorageHaloRunV1alpha1PolicyTemplate(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyTemplateList>>;
|
|
7094
|
+
/**
|
|
7095
|
+
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
7096
|
+
* @param {string} name Name of policytemplate
|
|
7097
|
+
* @param {PolicyTemplate} [policyTemplate] Updated policytemplate
|
|
7098
|
+
* @param {*} [options] Override http request option.
|
|
7099
|
+
* @throws {RequiredError}
|
|
7100
|
+
*/
|
|
7101
|
+
updatestorageHaloRunV1alpha1PolicyTemplate(name: string, policyTemplate?: PolicyTemplate, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyTemplate>>;
|
|
7102
|
+
};
|
|
7103
|
+
/**
|
|
7104
|
+
* StorageHaloRunV1alpha1PolicyTemplateApi - factory interface
|
|
7105
|
+
* @export
|
|
7106
|
+
*/
|
|
7107
|
+
declare const StorageHaloRunV1alpha1PolicyTemplateApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7108
|
+
/**
|
|
7109
|
+
* Create storage.halo.run/v1alpha1/PolicyTemplate
|
|
7110
|
+
* @param {PolicyTemplate} [policyTemplate] Fresh policytemplate
|
|
7111
|
+
* @param {*} [options] Override http request option.
|
|
7112
|
+
* @throws {RequiredError}
|
|
7113
|
+
*/
|
|
7114
|
+
createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate?: PolicyTemplate, options?: any): AxiosPromise<PolicyTemplate>;
|
|
7115
|
+
/**
|
|
7116
|
+
* Delete storage.halo.run/v1alpha1/PolicyTemplate
|
|
7117
|
+
* @param {string} name Name of policytemplate
|
|
7118
|
+
* @param {*} [options] Override http request option.
|
|
7119
|
+
* @throws {RequiredError}
|
|
7120
|
+
*/
|
|
7121
|
+
deletestorageHaloRunV1alpha1PolicyTemplate(name: string, options?: any): AxiosPromise<void>;
|
|
7122
|
+
/**
|
|
7123
|
+
* Get storage.halo.run/v1alpha1/PolicyTemplate
|
|
7124
|
+
* @param {string} name Name of policytemplate
|
|
7125
|
+
* @param {*} [options] Override http request option.
|
|
7126
|
+
* @throws {RequiredError}
|
|
7127
|
+
*/
|
|
7128
|
+
getstorageHaloRunV1alpha1PolicyTemplate(name: string, options?: any): AxiosPromise<PolicyTemplate>;
|
|
7129
|
+
/**
|
|
7130
|
+
* List storage.halo.run/v1alpha1/PolicyTemplate
|
|
7131
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7132
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7133
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7134
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7135
|
+
* @param {*} [options] Override http request option.
|
|
7136
|
+
* @throws {RequiredError}
|
|
7137
|
+
*/
|
|
7138
|
+
liststorageHaloRunV1alpha1PolicyTemplate(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PolicyTemplateList>;
|
|
7139
|
+
/**
|
|
7140
|
+
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
7141
|
+
* @param {string} name Name of policytemplate
|
|
7142
|
+
* @param {PolicyTemplate} [policyTemplate] Updated policytemplate
|
|
7143
|
+
* @param {*} [options] Override http request option.
|
|
7144
|
+
* @throws {RequiredError}
|
|
7145
|
+
*/
|
|
7146
|
+
updatestorageHaloRunV1alpha1PolicyTemplate(name: string, policyTemplate?: PolicyTemplate, options?: any): AxiosPromise<PolicyTemplate>;
|
|
7147
|
+
};
|
|
7148
|
+
/**
|
|
7149
|
+
* StorageHaloRunV1alpha1PolicyTemplateApi - object-oriented interface
|
|
7150
|
+
* @export
|
|
7151
|
+
* @class StorageHaloRunV1alpha1PolicyTemplateApi
|
|
7152
|
+
* @extends {BaseAPI}
|
|
7153
|
+
*/
|
|
7154
|
+
declare class StorageHaloRunV1alpha1PolicyTemplateApi extends BaseAPI {
|
|
7155
|
+
/**
|
|
7156
|
+
* Create storage.halo.run/v1alpha1/PolicyTemplate
|
|
7157
|
+
* @param {PolicyTemplate} [policyTemplate] Fresh policytemplate
|
|
7158
|
+
* @param {*} [options] Override http request option.
|
|
7159
|
+
* @throws {RequiredError}
|
|
7160
|
+
* @memberof StorageHaloRunV1alpha1PolicyTemplateApi
|
|
7161
|
+
*/
|
|
7162
|
+
createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate?: PolicyTemplate, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PolicyTemplate, any>>;
|
|
7163
|
+
/**
|
|
7164
|
+
* Delete storage.halo.run/v1alpha1/PolicyTemplate
|
|
7165
|
+
* @param {string} name Name of policytemplate
|
|
7166
|
+
* @param {*} [options] Override http request option.
|
|
7167
|
+
* @throws {RequiredError}
|
|
7168
|
+
* @memberof StorageHaloRunV1alpha1PolicyTemplateApi
|
|
7169
|
+
*/
|
|
7170
|
+
deletestorageHaloRunV1alpha1PolicyTemplate(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7171
|
+
/**
|
|
7172
|
+
* Get storage.halo.run/v1alpha1/PolicyTemplate
|
|
7173
|
+
* @param {string} name Name of policytemplate
|
|
7174
|
+
* @param {*} [options] Override http request option.
|
|
7175
|
+
* @throws {RequiredError}
|
|
7176
|
+
* @memberof StorageHaloRunV1alpha1PolicyTemplateApi
|
|
7177
|
+
*/
|
|
7178
|
+
getstorageHaloRunV1alpha1PolicyTemplate(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PolicyTemplate, any>>;
|
|
7179
|
+
/**
|
|
7180
|
+
* List storage.halo.run/v1alpha1/PolicyTemplate
|
|
7181
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7182
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7183
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7184
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7185
|
+
* @param {*} [options] Override http request option.
|
|
7186
|
+
* @throws {RequiredError}
|
|
7187
|
+
* @memberof StorageHaloRunV1alpha1PolicyTemplateApi
|
|
7188
|
+
*/
|
|
7189
|
+
liststorageHaloRunV1alpha1PolicyTemplate(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PolicyTemplateList, any>>;
|
|
7190
|
+
/**
|
|
7191
|
+
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
7192
|
+
* @param {string} name Name of policytemplate
|
|
7193
|
+
* @param {PolicyTemplate} [policyTemplate] Updated policytemplate
|
|
7194
|
+
* @param {*} [options] Override http request option.
|
|
7195
|
+
* @throws {RequiredError}
|
|
7196
|
+
* @memberof StorageHaloRunV1alpha1PolicyTemplateApi
|
|
7197
|
+
*/
|
|
7198
|
+
updatestorageHaloRunV1alpha1PolicyTemplate(name: string, policyTemplate?: PolicyTemplate, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PolicyTemplate, any>>;
|
|
5328
7199
|
}
|
|
5329
7200
|
/**
|
|
5330
7201
|
* ThemeHaloRunV1alpha1ThemeApi - axios parameter creator
|
|
@@ -7010,4 +8881,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
7010
8881
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
7011
8882
|
}
|
|
7012
8883
|
|
|
7013
|
-
export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentList, CommentOwner, CommentSpec, CommentSubjectRef, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentRequest, ContentWrapper, Contributor, Excerpt, FileReverseProxyProvider, GrantRequest, License, ListedPost, ListedPostList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemRef, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Reply, ReplyList, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SnapShotSpec, Snapshot, SnapshotList, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|
|
8884
|
+
export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentList, CommentOwner, CommentSpec, CommentSubjectRef, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentRequest, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, Excerpt, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedPost, ListedPostList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemRef, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|