@halo-dev/api-client 0.0.0

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.
@@ -0,0 +1,3167 @@
1
+ import * as axios from 'axios';
2
+ import { AxiosRequestConfig, AxiosInstance, AxiosPromise } from 'axios';
3
+
4
+ /**
5
+ * Halo Next API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 2.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ interface ConfigurationParameters {
16
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
17
+ username?: string;
18
+ password?: string;
19
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
20
+ basePath?: string;
21
+ baseOptions?: any;
22
+ formDataCtor?: new () => any;
23
+ }
24
+ declare class Configuration {
25
+ /**
26
+ * parameter for apiKey security
27
+ * @param name security name
28
+ * @memberof Configuration
29
+ */
30
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
31
+ /**
32
+ * parameter for basic security
33
+ *
34
+ * @type {string}
35
+ * @memberof Configuration
36
+ */
37
+ username?: string;
38
+ /**
39
+ * parameter for basic security
40
+ *
41
+ * @type {string}
42
+ * @memberof Configuration
43
+ */
44
+ password?: string;
45
+ /**
46
+ * parameter for oauth2 security
47
+ * @param name security name
48
+ * @param scopes oauth2 scope
49
+ * @memberof Configuration
50
+ */
51
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
52
+ /**
53
+ * override base path
54
+ *
55
+ * @type {string}
56
+ * @memberof Configuration
57
+ */
58
+ basePath?: string;
59
+ /**
60
+ * base options for axios calls
61
+ *
62
+ * @type {any}
63
+ * @memberof Configuration
64
+ */
65
+ baseOptions?: any;
66
+ /**
67
+ * The FormData constructor that will be used to create multipart form data
68
+ * requests. You can inject this here so that execution environments that
69
+ * do not support the FormData class can still run the generated client.
70
+ *
71
+ * @type {new () => FormData}
72
+ */
73
+ formDataCtor?: new () => any;
74
+ constructor(param?: ConfigurationParameters);
75
+ /**
76
+ * Check if the given MIME is a JSON MIME.
77
+ * JSON MIME examples:
78
+ * application/json
79
+ * application/json; charset=UTF8
80
+ * APPLICATION/JSON
81
+ * application/vnd.company+json
82
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
83
+ * @return True if the given MIME is JSON, false otherwise.
84
+ */
85
+ isJsonMime(mime: string): boolean;
86
+ }
87
+
88
+ /**
89
+ * Halo Next API
90
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
91
+ *
92
+ * The version of the OpenAPI document: 2.0.0
93
+ *
94
+ *
95
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
96
+ * https://openapi-generator.tech
97
+ * Do not edit the class manually.
98
+ */
99
+
100
+ /**
101
+ *
102
+ * @export
103
+ * @interface RequestArgs
104
+ */
105
+ interface RequestArgs {
106
+ url: string;
107
+ options: AxiosRequestConfig;
108
+ }
109
+ /**
110
+ *
111
+ * @export
112
+ * @class BaseAPI
113
+ */
114
+ declare class BaseAPI {
115
+ protected basePath: string;
116
+ protected axios: AxiosInstance;
117
+ protected configuration: Configuration | undefined;
118
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
119
+ }
120
+
121
+ /**
122
+ *
123
+ * @export
124
+ * @interface ConfigMap
125
+ */
126
+ interface ConfigMap {
127
+ /**
128
+ *
129
+ * @type {{ [key: string]: string; }}
130
+ * @memberof ConfigMap
131
+ */
132
+ data?: {
133
+ [key: string]: string;
134
+ };
135
+ /**
136
+ *
137
+ * @type {string}
138
+ * @memberof ConfigMap
139
+ */
140
+ apiVersion: string;
141
+ /**
142
+ *
143
+ * @type {string}
144
+ * @memberof ConfigMap
145
+ */
146
+ kind: string;
147
+ /**
148
+ *
149
+ * @type {Metadata}
150
+ * @memberof ConfigMap
151
+ */
152
+ metadata: Metadata;
153
+ }
154
+ /**
155
+ *
156
+ * @export
157
+ * @interface FileReverseProxyProvider
158
+ */
159
+ interface FileReverseProxyProvider {
160
+ /**
161
+ *
162
+ * @type {string}
163
+ * @memberof FileReverseProxyProvider
164
+ */
165
+ directory?: string;
166
+ /**
167
+ *
168
+ * @type {string}
169
+ * @memberof FileReverseProxyProvider
170
+ */
171
+ filename?: string;
172
+ }
173
+ /**
174
+ *
175
+ * @export
176
+ * @interface License
177
+ */
178
+ interface License {
179
+ /**
180
+ *
181
+ * @type {string}
182
+ * @memberof License
183
+ */
184
+ name?: string;
185
+ /**
186
+ *
187
+ * @type {string}
188
+ * @memberof License
189
+ */
190
+ url?: string;
191
+ }
192
+ /**
193
+ *
194
+ * @export
195
+ * @interface Link
196
+ */
197
+ interface Link {
198
+ /**
199
+ *
200
+ * @type {LinkSpec}
201
+ * @memberof Link
202
+ */
203
+ spec?: LinkSpec;
204
+ /**
205
+ *
206
+ * @type {string}
207
+ * @memberof Link
208
+ */
209
+ apiVersion: string;
210
+ /**
211
+ *
212
+ * @type {string}
213
+ * @memberof Link
214
+ */
215
+ kind: string;
216
+ /**
217
+ *
218
+ * @type {Metadata}
219
+ * @memberof Link
220
+ */
221
+ metadata: Metadata;
222
+ }
223
+ /**
224
+ *
225
+ * @export
226
+ * @interface LinkGroup
227
+ */
228
+ interface LinkGroup {
229
+ /**
230
+ *
231
+ * @type {LinkGroupSpec}
232
+ * @memberof LinkGroup
233
+ */
234
+ spec?: LinkGroupSpec;
235
+ /**
236
+ *
237
+ * @type {string}
238
+ * @memberof LinkGroup
239
+ */
240
+ apiVersion: string;
241
+ /**
242
+ *
243
+ * @type {string}
244
+ * @memberof LinkGroup
245
+ */
246
+ kind: string;
247
+ /**
248
+ *
249
+ * @type {Metadata}
250
+ * @memberof LinkGroup
251
+ */
252
+ metadata: Metadata;
253
+ }
254
+ /**
255
+ *
256
+ * @export
257
+ * @interface LinkGroupSpec
258
+ */
259
+ interface LinkGroupSpec {
260
+ /**
261
+ *
262
+ * @type {string}
263
+ * @memberof LinkGroupSpec
264
+ */
265
+ displayName: string;
266
+ /**
267
+ *
268
+ * @type {number}
269
+ * @memberof LinkGroupSpec
270
+ */
271
+ priority?: number;
272
+ }
273
+ /**
274
+ *
275
+ * @export
276
+ * @interface LinkSpec
277
+ */
278
+ interface LinkSpec {
279
+ /**
280
+ *
281
+ * @type {string}
282
+ * @memberof LinkSpec
283
+ */
284
+ url: string;
285
+ /**
286
+ *
287
+ * @type {string}
288
+ * @memberof LinkSpec
289
+ */
290
+ displayName: string;
291
+ /**
292
+ *
293
+ * @type {string}
294
+ * @memberof LinkSpec
295
+ */
296
+ logo?: string;
297
+ /**
298
+ *
299
+ * @type {string}
300
+ * @memberof LinkSpec
301
+ */
302
+ description?: string;
303
+ /**
304
+ *
305
+ * @type {string}
306
+ * @memberof LinkSpec
307
+ */
308
+ groupName?: string;
309
+ /**
310
+ *
311
+ * @type {number}
312
+ * @memberof LinkSpec
313
+ */
314
+ priority?: number;
315
+ }
316
+ /**
317
+ *
318
+ * @export
319
+ * @interface LoginHistory
320
+ */
321
+ interface LoginHistory {
322
+ /**
323
+ *
324
+ * @type {string}
325
+ * @memberof LoginHistory
326
+ */
327
+ loginAt: string;
328
+ /**
329
+ *
330
+ * @type {string}
331
+ * @memberof LoginHistory
332
+ */
333
+ sourceIp: string;
334
+ /**
335
+ *
336
+ * @type {string}
337
+ * @memberof LoginHistory
338
+ */
339
+ userAgent: string;
340
+ /**
341
+ *
342
+ * @type {boolean}
343
+ * @memberof LoginHistory
344
+ */
345
+ successful: boolean;
346
+ /**
347
+ *
348
+ * @type {string}
349
+ * @memberof LoginHistory
350
+ */
351
+ reason?: string;
352
+ }
353
+ /**
354
+ *
355
+ * @export
356
+ * @interface Metadata
357
+ */
358
+ interface Metadata {
359
+ /**
360
+ *
361
+ * @type {string}
362
+ * @memberof Metadata
363
+ */
364
+ name: string;
365
+ /**
366
+ *
367
+ * @type {{ [key: string]: string; }}
368
+ * @memberof Metadata
369
+ */
370
+ labels?: {
371
+ [key: string]: string;
372
+ } | null;
373
+ /**
374
+ *
375
+ * @type {{ [key: string]: string; }}
376
+ * @memberof Metadata
377
+ */
378
+ annotations?: {
379
+ [key: string]: string;
380
+ } | null;
381
+ /**
382
+ *
383
+ * @type {number}
384
+ * @memberof Metadata
385
+ */
386
+ version?: number | null;
387
+ /**
388
+ *
389
+ * @type {string}
390
+ * @memberof Metadata
391
+ */
392
+ creationTimestamp?: string | null;
393
+ /**
394
+ *
395
+ * @type {string}
396
+ * @memberof Metadata
397
+ */
398
+ deletionTimestamp?: string | null;
399
+ }
400
+ /**
401
+ *
402
+ * @export
403
+ * @interface PersonalAccessToken
404
+ */
405
+ interface PersonalAccessToken {
406
+ /**
407
+ *
408
+ * @type {PersonalAccessTokenSpec}
409
+ * @memberof PersonalAccessToken
410
+ */
411
+ spec?: PersonalAccessTokenSpec;
412
+ /**
413
+ *
414
+ * @type {string}
415
+ * @memberof PersonalAccessToken
416
+ */
417
+ apiVersion: string;
418
+ /**
419
+ *
420
+ * @type {string}
421
+ * @memberof PersonalAccessToken
422
+ */
423
+ kind: string;
424
+ /**
425
+ *
426
+ * @type {Metadata}
427
+ * @memberof PersonalAccessToken
428
+ */
429
+ metadata: Metadata;
430
+ }
431
+ /**
432
+ *
433
+ * @export
434
+ * @interface PersonalAccessTokenSpec
435
+ */
436
+ interface PersonalAccessTokenSpec {
437
+ /**
438
+ *
439
+ * @type {string}
440
+ * @memberof PersonalAccessTokenSpec
441
+ */
442
+ userName?: string;
443
+ /**
444
+ *
445
+ * @type {string}
446
+ * @memberof PersonalAccessTokenSpec
447
+ */
448
+ displayName?: string;
449
+ /**
450
+ *
451
+ * @type {boolean}
452
+ * @memberof PersonalAccessTokenSpec
453
+ */
454
+ revoked?: boolean;
455
+ /**
456
+ *
457
+ * @type {string}
458
+ * @memberof PersonalAccessTokenSpec
459
+ */
460
+ expiresAt?: string;
461
+ /**
462
+ *
463
+ * @type {string}
464
+ * @memberof PersonalAccessTokenSpec
465
+ */
466
+ scopes?: string;
467
+ /**
468
+ *
469
+ * @type {string}
470
+ * @memberof PersonalAccessTokenSpec
471
+ */
472
+ tokenDigest?: string;
473
+ }
474
+ /**
475
+ *
476
+ * @export
477
+ * @interface Plugin
478
+ */
479
+ interface Plugin {
480
+ /**
481
+ *
482
+ * @type {PluginSpec}
483
+ * @memberof Plugin
484
+ */
485
+ spec: PluginSpec;
486
+ /**
487
+ *
488
+ * @type {PluginStatus}
489
+ * @memberof Plugin
490
+ */
491
+ status?: PluginStatus;
492
+ /**
493
+ *
494
+ * @type {string}
495
+ * @memberof Plugin
496
+ */
497
+ apiVersion: string;
498
+ /**
499
+ *
500
+ * @type {string}
501
+ * @memberof Plugin
502
+ */
503
+ kind: string;
504
+ /**
505
+ *
506
+ * @type {Metadata}
507
+ * @memberof Plugin
508
+ */
509
+ metadata: Metadata;
510
+ }
511
+ /**
512
+ *
513
+ * @export
514
+ * @interface PluginSpec
515
+ */
516
+ interface PluginSpec {
517
+ /**
518
+ *
519
+ * @type {string}
520
+ * @memberof PluginSpec
521
+ */
522
+ displayName?: string;
523
+ /**
524
+ *
525
+ * @type {string}
526
+ * @memberof PluginSpec
527
+ */
528
+ version?: string;
529
+ /**
530
+ *
531
+ * @type {string}
532
+ * @memberof PluginSpec
533
+ */
534
+ author?: string;
535
+ /**
536
+ *
537
+ * @type {string}
538
+ * @memberof PluginSpec
539
+ */
540
+ logo?: string;
541
+ /**
542
+ *
543
+ * @type {{ [key: string]: string; }}
544
+ * @memberof PluginSpec
545
+ */
546
+ pluginDependencies?: {
547
+ [key: string]: string;
548
+ };
549
+ /**
550
+ *
551
+ * @type {string}
552
+ * @memberof PluginSpec
553
+ */
554
+ homepage?: string;
555
+ /**
556
+ *
557
+ * @type {string}
558
+ * @memberof PluginSpec
559
+ */
560
+ description?: string;
561
+ /**
562
+ *
563
+ * @type {Array<License>}
564
+ * @memberof PluginSpec
565
+ */
566
+ license?: Array<License>;
567
+ /**
568
+ *
569
+ * @type {string}
570
+ * @memberof PluginSpec
571
+ */
572
+ requires?: string;
573
+ /**
574
+ *
575
+ * @type {string}
576
+ * @memberof PluginSpec
577
+ */
578
+ pluginClass?: string;
579
+ /**
580
+ *
581
+ * @type {boolean}
582
+ * @memberof PluginSpec
583
+ */
584
+ enabled?: boolean;
585
+ /**
586
+ *
587
+ * @type {Array<string>}
588
+ * @memberof PluginSpec
589
+ */
590
+ extensionLocations?: Array<string>;
591
+ /**
592
+ *
593
+ * @type {string}
594
+ * @memberof PluginSpec
595
+ */
596
+ settingName?: string;
597
+ /**
598
+ *
599
+ * @type {string}
600
+ * @memberof PluginSpec
601
+ */
602
+ configMapName?: string;
603
+ }
604
+ /**
605
+ *
606
+ * @export
607
+ * @interface PluginStatus
608
+ */
609
+ interface PluginStatus {
610
+ /**
611
+ *
612
+ * @type {string}
613
+ * @memberof PluginStatus
614
+ */
615
+ phase?: PluginStatusPhaseEnum;
616
+ /**
617
+ *
618
+ * @type {string}
619
+ * @memberof PluginStatus
620
+ */
621
+ reason?: string;
622
+ /**
623
+ *
624
+ * @type {string}
625
+ * @memberof PluginStatus
626
+ */
627
+ message?: string;
628
+ /**
629
+ *
630
+ * @type {string}
631
+ * @memberof PluginStatus
632
+ */
633
+ lastStartTime?: string;
634
+ /**
635
+ *
636
+ * @type {string}
637
+ * @memberof PluginStatus
638
+ */
639
+ lastTransitionTime?: string;
640
+ /**
641
+ *
642
+ * @type {string}
643
+ * @memberof PluginStatus
644
+ */
645
+ entry?: string;
646
+ /**
647
+ *
648
+ * @type {string}
649
+ * @memberof PluginStatus
650
+ */
651
+ stylesheet?: string;
652
+ }
653
+ declare const PluginStatusPhaseEnum: {
654
+ readonly Created: "CREATED";
655
+ readonly Disabled: "DISABLED";
656
+ readonly Resolved: "RESOLVED";
657
+ readonly Started: "STARTED";
658
+ readonly Stopped: "STOPPED";
659
+ readonly Failed: "FAILED";
660
+ };
661
+ declare type PluginStatusPhaseEnum = typeof PluginStatusPhaseEnum[keyof typeof PluginStatusPhaseEnum];
662
+ /**
663
+ *
664
+ * @export
665
+ * @interface PolicyRule
666
+ */
667
+ interface PolicyRule {
668
+ /**
669
+ *
670
+ * @type {Array<string>}
671
+ * @memberof PolicyRule
672
+ */
673
+ apiGroups?: Array<string>;
674
+ /**
675
+ *
676
+ * @type {Array<string>}
677
+ * @memberof PolicyRule
678
+ */
679
+ resources?: Array<string>;
680
+ /**
681
+ *
682
+ * @type {Array<string>}
683
+ * @memberof PolicyRule
684
+ */
685
+ resourceNames?: Array<string>;
686
+ /**
687
+ *
688
+ * @type {Array<string>}
689
+ * @memberof PolicyRule
690
+ */
691
+ nonResourceURLs?: Array<string>;
692
+ /**
693
+ *
694
+ * @type {Array<string>}
695
+ * @memberof PolicyRule
696
+ */
697
+ verbs?: Array<string>;
698
+ }
699
+ /**
700
+ *
701
+ * @export
702
+ * @interface Post
703
+ */
704
+ interface Post {
705
+ /**
706
+ *
707
+ * @type {PostSpec}
708
+ * @memberof Post
709
+ */
710
+ spec?: PostSpec;
711
+ /**
712
+ *
713
+ * @type {string}
714
+ * @memberof Post
715
+ */
716
+ apiVersion: string;
717
+ /**
718
+ *
719
+ * @type {string}
720
+ * @memberof Post
721
+ */
722
+ kind: string;
723
+ /**
724
+ *
725
+ * @type {Metadata}
726
+ * @memberof Post
727
+ */
728
+ metadata: Metadata;
729
+ }
730
+ /**
731
+ *
732
+ * @export
733
+ * @interface PostSpec
734
+ */
735
+ interface PostSpec {
736
+ /**
737
+ *
738
+ * @type {string}
739
+ * @memberof PostSpec
740
+ */
741
+ title?: string;
742
+ /**
743
+ *
744
+ * @type {string}
745
+ * @memberof PostSpec
746
+ */
747
+ content?: string;
748
+ /**
749
+ *
750
+ * @type {string}
751
+ * @memberof PostSpec
752
+ */
753
+ keyword?: string;
754
+ }
755
+ /**
756
+ *
757
+ * @export
758
+ * @interface ReverseProxy
759
+ */
760
+ interface ReverseProxy {
761
+ /**
762
+ *
763
+ * @type {Array<ReverseProxyRule>}
764
+ * @memberof ReverseProxy
765
+ */
766
+ rules?: Array<ReverseProxyRule>;
767
+ /**
768
+ *
769
+ * @type {string}
770
+ * @memberof ReverseProxy
771
+ */
772
+ apiVersion: string;
773
+ /**
774
+ *
775
+ * @type {string}
776
+ * @memberof ReverseProxy
777
+ */
778
+ kind: string;
779
+ /**
780
+ *
781
+ * @type {Metadata}
782
+ * @memberof ReverseProxy
783
+ */
784
+ metadata: Metadata;
785
+ }
786
+ /**
787
+ *
788
+ * @export
789
+ * @interface ReverseProxyRule
790
+ */
791
+ interface ReverseProxyRule {
792
+ /**
793
+ *
794
+ * @type {string}
795
+ * @memberof ReverseProxyRule
796
+ */
797
+ path?: string;
798
+ /**
799
+ *
800
+ * @type {FileReverseProxyProvider}
801
+ * @memberof ReverseProxyRule
802
+ */
803
+ file?: FileReverseProxyProvider;
804
+ }
805
+ /**
806
+ *
807
+ * @export
808
+ * @interface Role
809
+ */
810
+ interface Role {
811
+ /**
812
+ *
813
+ * @type {Array<PolicyRule>}
814
+ * @memberof Role
815
+ */
816
+ rules: Array<PolicyRule>;
817
+ /**
818
+ *
819
+ * @type {string}
820
+ * @memberof Role
821
+ */
822
+ apiVersion: string;
823
+ /**
824
+ *
825
+ * @type {string}
826
+ * @memberof Role
827
+ */
828
+ kind: string;
829
+ /**
830
+ *
831
+ * @type {Metadata}
832
+ * @memberof Role
833
+ */
834
+ metadata: Metadata;
835
+ }
836
+ /**
837
+ *
838
+ * @export
839
+ * @interface RoleBinding
840
+ */
841
+ interface RoleBinding {
842
+ /**
843
+ *
844
+ * @type {Array<Subject>}
845
+ * @memberof RoleBinding
846
+ */
847
+ subjects?: Array<Subject>;
848
+ /**
849
+ *
850
+ * @type {RoleRef}
851
+ * @memberof RoleBinding
852
+ */
853
+ roleRef?: RoleRef;
854
+ /**
855
+ *
856
+ * @type {string}
857
+ * @memberof RoleBinding
858
+ */
859
+ apiVersion: string;
860
+ /**
861
+ *
862
+ * @type {string}
863
+ * @memberof RoleBinding
864
+ */
865
+ kind: string;
866
+ /**
867
+ *
868
+ * @type {Metadata}
869
+ * @memberof RoleBinding
870
+ */
871
+ metadata: Metadata;
872
+ }
873
+ /**
874
+ *
875
+ * @export
876
+ * @interface RoleRef
877
+ */
878
+ interface RoleRef {
879
+ /**
880
+ *
881
+ * @type {string}
882
+ * @memberof RoleRef
883
+ */
884
+ kind?: string;
885
+ /**
886
+ *
887
+ * @type {string}
888
+ * @memberof RoleRef
889
+ */
890
+ name?: string;
891
+ /**
892
+ *
893
+ * @type {string}
894
+ * @memberof RoleRef
895
+ */
896
+ apiGroup?: string;
897
+ }
898
+ /**
899
+ *
900
+ * @export
901
+ * @interface Setting
902
+ */
903
+ interface Setting {
904
+ /**
905
+ *
906
+ * @type {Array<SettingSpec>}
907
+ * @memberof Setting
908
+ */
909
+ spec: Array<SettingSpec>;
910
+ /**
911
+ *
912
+ * @type {string}
913
+ * @memberof Setting
914
+ */
915
+ apiVersion: string;
916
+ /**
917
+ *
918
+ * @type {string}
919
+ * @memberof Setting
920
+ */
921
+ kind: string;
922
+ /**
923
+ *
924
+ * @type {Metadata}
925
+ * @memberof Setting
926
+ */
927
+ metadata: Metadata;
928
+ }
929
+ /**
930
+ *
931
+ * @export
932
+ * @interface SettingSpec
933
+ */
934
+ interface SettingSpec {
935
+ /**
936
+ *
937
+ * @type {string}
938
+ * @memberof SettingSpec
939
+ */
940
+ group: string;
941
+ /**
942
+ *
943
+ * @type {string}
944
+ * @memberof SettingSpec
945
+ */
946
+ label?: string;
947
+ /**
948
+ *
949
+ * @type {Array<object>}
950
+ * @memberof SettingSpec
951
+ */
952
+ formSchema?: Array<object>;
953
+ }
954
+ /**
955
+ *
956
+ * @export
957
+ * @interface Subject
958
+ */
959
+ interface Subject {
960
+ /**
961
+ *
962
+ * @type {string}
963
+ * @memberof Subject
964
+ */
965
+ kind?: string;
966
+ /**
967
+ *
968
+ * @type {string}
969
+ * @memberof Subject
970
+ */
971
+ name?: string;
972
+ /**
973
+ *
974
+ * @type {string}
975
+ * @memberof Subject
976
+ */
977
+ apiGroup?: string;
978
+ }
979
+ /**
980
+ *
981
+ * @export
982
+ * @interface User
983
+ */
984
+ interface User {
985
+ /**
986
+ *
987
+ * @type {UserSpec}
988
+ * @memberof User
989
+ */
990
+ spec: UserSpec;
991
+ /**
992
+ *
993
+ * @type {UserStatus}
994
+ * @memberof User
995
+ */
996
+ status?: UserStatus;
997
+ /**
998
+ *
999
+ * @type {string}
1000
+ * @memberof User
1001
+ */
1002
+ apiVersion: string;
1003
+ /**
1004
+ *
1005
+ * @type {string}
1006
+ * @memberof User
1007
+ */
1008
+ kind: string;
1009
+ /**
1010
+ *
1011
+ * @type {Metadata}
1012
+ * @memberof User
1013
+ */
1014
+ metadata: Metadata;
1015
+ }
1016
+ /**
1017
+ *
1018
+ * @export
1019
+ * @interface UserSpec
1020
+ */
1021
+ interface UserSpec {
1022
+ /**
1023
+ *
1024
+ * @type {string}
1025
+ * @memberof UserSpec
1026
+ */
1027
+ displayName: string;
1028
+ /**
1029
+ *
1030
+ * @type {string}
1031
+ * @memberof UserSpec
1032
+ */
1033
+ avatar?: string;
1034
+ /**
1035
+ *
1036
+ * @type {string}
1037
+ * @memberof UserSpec
1038
+ */
1039
+ email: string;
1040
+ /**
1041
+ *
1042
+ * @type {string}
1043
+ * @memberof UserSpec
1044
+ */
1045
+ phone?: string;
1046
+ /**
1047
+ *
1048
+ * @type {string}
1049
+ * @memberof UserSpec
1050
+ */
1051
+ password?: string;
1052
+ /**
1053
+ *
1054
+ * @type {string}
1055
+ * @memberof UserSpec
1056
+ */
1057
+ bio?: string;
1058
+ /**
1059
+ *
1060
+ * @type {string}
1061
+ * @memberof UserSpec
1062
+ */
1063
+ registeredAt?: string;
1064
+ /**
1065
+ *
1066
+ * @type {boolean}
1067
+ * @memberof UserSpec
1068
+ */
1069
+ twoFactorAuthEnabled?: boolean;
1070
+ /**
1071
+ *
1072
+ * @type {boolean}
1073
+ * @memberof UserSpec
1074
+ */
1075
+ disabled?: boolean;
1076
+ /**
1077
+ *
1078
+ * @type {number}
1079
+ * @memberof UserSpec
1080
+ */
1081
+ loginHistoryLimit?: number;
1082
+ }
1083
+ /**
1084
+ *
1085
+ * @export
1086
+ * @interface UserStatus
1087
+ */
1088
+ interface UserStatus {
1089
+ /**
1090
+ *
1091
+ * @type {string}
1092
+ * @memberof UserStatus
1093
+ */
1094
+ lastLoginAt?: string;
1095
+ /**
1096
+ *
1097
+ * @type {Array<LoginHistory>}
1098
+ * @memberof UserStatus
1099
+ */
1100
+ loginHistories?: Array<LoginHistory>;
1101
+ }
1102
+ /**
1103
+ * ApiHaloRunV1alpha1UserApi - axios parameter creator
1104
+ * @export
1105
+ */
1106
+ declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
1107
+ /**
1108
+ * Get current user detail
1109
+ * @param {*} [options] Override http request option.
1110
+ * @throws {RequiredError}
1111
+ */
1112
+ getCurrentUserDetail: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1113
+ };
1114
+ /**
1115
+ * ApiHaloRunV1alpha1UserApi - functional programming interface
1116
+ * @export
1117
+ */
1118
+ declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
1119
+ /**
1120
+ * Get current user detail
1121
+ * @param {*} [options] Override http request option.
1122
+ * @throws {RequiredError}
1123
+ */
1124
+ getCurrentUserDetail(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
1125
+ };
1126
+ /**
1127
+ * ApiHaloRunV1alpha1UserApi - factory interface
1128
+ * @export
1129
+ */
1130
+ declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1131
+ /**
1132
+ * Get current user detail
1133
+ * @param {*} [options] Override http request option.
1134
+ * @throws {RequiredError}
1135
+ */
1136
+ getCurrentUserDetail(options?: any): AxiosPromise<User>;
1137
+ };
1138
+ /**
1139
+ * ApiHaloRunV1alpha1UserApi - object-oriented interface
1140
+ * @export
1141
+ * @class ApiHaloRunV1alpha1UserApi
1142
+ * @extends {BaseAPI}
1143
+ */
1144
+ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
1145
+ /**
1146
+ * Get current user detail
1147
+ * @param {*} [options] Override http request option.
1148
+ * @throws {RequiredError}
1149
+ * @memberof ApiHaloRunV1alpha1UserApi
1150
+ */
1151
+ getCurrentUserDetail(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
1152
+ }
1153
+ /**
1154
+ * CoreHaloRunV1alpha1LinkApi - axios parameter creator
1155
+ * @export
1156
+ */
1157
+ declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
1158
+ /**
1159
+ * Create core.halo.run/v1alpha1/Link
1160
+ * @param {Link} [link] Fresh link
1161
+ * @param {*} [options] Override http request option.
1162
+ * @throws {RequiredError}
1163
+ */
1164
+ createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1165
+ /**
1166
+ * Delete core.halo.run/v1alpha1/Link
1167
+ * @param {string} name Name of link
1168
+ * @param {*} [options] Override http request option.
1169
+ * @throws {RequiredError}
1170
+ */
1171
+ deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1172
+ /**
1173
+ * Get core.halo.run/v1alpha1/Link
1174
+ * @param {string} name Name of link
1175
+ * @param {*} [options] Override http request option.
1176
+ * @throws {RequiredError}
1177
+ */
1178
+ getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1179
+ /**
1180
+ * List core.halo.run/v1alpha1/Link
1181
+ * @param {number} [page] Page index
1182
+ * @param {number} [size] Size of one page
1183
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1184
+ * @param {*} [options] Override http request option.
1185
+ * @throws {RequiredError}
1186
+ */
1187
+ listcoreHaloRunV1alpha1Link: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1188
+ /**
1189
+ * Update core.halo.run/v1alpha1/Link
1190
+ * @param {string} name Name of link
1191
+ * @param {Link} [link] Updated link
1192
+ * @param {*} [options] Override http request option.
1193
+ * @throws {RequiredError}
1194
+ */
1195
+ updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1196
+ };
1197
+ /**
1198
+ * CoreHaloRunV1alpha1LinkApi - functional programming interface
1199
+ * @export
1200
+ */
1201
+ declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
1202
+ /**
1203
+ * Create core.halo.run/v1alpha1/Link
1204
+ * @param {Link} [link] Fresh link
1205
+ * @param {*} [options] Override http request option.
1206
+ * @throws {RequiredError}
1207
+ */
1208
+ createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
1209
+ /**
1210
+ * Delete core.halo.run/v1alpha1/Link
1211
+ * @param {string} name Name of link
1212
+ * @param {*} [options] Override http request option.
1213
+ * @throws {RequiredError}
1214
+ */
1215
+ deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1216
+ /**
1217
+ * Get core.halo.run/v1alpha1/Link
1218
+ * @param {string} name Name of link
1219
+ * @param {*} [options] Override http request option.
1220
+ * @throws {RequiredError}
1221
+ */
1222
+ getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
1223
+ /**
1224
+ * List core.halo.run/v1alpha1/Link
1225
+ * @param {number} [page] Page index
1226
+ * @param {number} [size] Size of one page
1227
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1228
+ * @param {*} [options] Override http request option.
1229
+ * @throws {RequiredError}
1230
+ */
1231
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Link>>>;
1232
+ /**
1233
+ * Update core.halo.run/v1alpha1/Link
1234
+ * @param {string} name Name of link
1235
+ * @param {Link} [link] Updated link
1236
+ * @param {*} [options] Override http request option.
1237
+ * @throws {RequiredError}
1238
+ */
1239
+ updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
1240
+ };
1241
+ /**
1242
+ * CoreHaloRunV1alpha1LinkApi - factory interface
1243
+ * @export
1244
+ */
1245
+ declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1246
+ /**
1247
+ * Create core.halo.run/v1alpha1/Link
1248
+ * @param {Link} [link] Fresh link
1249
+ * @param {*} [options] Override http request option.
1250
+ * @throws {RequiredError}
1251
+ */
1252
+ createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
1253
+ /**
1254
+ * Delete core.halo.run/v1alpha1/Link
1255
+ * @param {string} name Name of link
1256
+ * @param {*} [options] Override http request option.
1257
+ * @throws {RequiredError}
1258
+ */
1259
+ deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
1260
+ /**
1261
+ * Get core.halo.run/v1alpha1/Link
1262
+ * @param {string} name Name of link
1263
+ * @param {*} [options] Override http request option.
1264
+ * @throws {RequiredError}
1265
+ */
1266
+ getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
1267
+ /**
1268
+ * List core.halo.run/v1alpha1/Link
1269
+ * @param {number} [page] Page index
1270
+ * @param {number} [size] Size of one page
1271
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1272
+ * @param {*} [options] Override http request option.
1273
+ * @throws {RequiredError}
1274
+ */
1275
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<Link>>;
1276
+ /**
1277
+ * Update core.halo.run/v1alpha1/Link
1278
+ * @param {string} name Name of link
1279
+ * @param {Link} [link] Updated link
1280
+ * @param {*} [options] Override http request option.
1281
+ * @throws {RequiredError}
1282
+ */
1283
+ updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
1284
+ };
1285
+ /**
1286
+ * CoreHaloRunV1alpha1LinkApi - object-oriented interface
1287
+ * @export
1288
+ * @class CoreHaloRunV1alpha1LinkApi
1289
+ * @extends {BaseAPI}
1290
+ */
1291
+ declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
1292
+ /**
1293
+ * Create core.halo.run/v1alpha1/Link
1294
+ * @param {Link} [link] Fresh link
1295
+ * @param {*} [options] Override http request option.
1296
+ * @throws {RequiredError}
1297
+ * @memberof CoreHaloRunV1alpha1LinkApi
1298
+ */
1299
+ createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
1300
+ /**
1301
+ * Delete core.halo.run/v1alpha1/Link
1302
+ * @param {string} name Name of link
1303
+ * @param {*} [options] Override http request option.
1304
+ * @throws {RequiredError}
1305
+ * @memberof CoreHaloRunV1alpha1LinkApi
1306
+ */
1307
+ deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
1308
+ /**
1309
+ * Get core.halo.run/v1alpha1/Link
1310
+ * @param {string} name Name of link
1311
+ * @param {*} [options] Override http request option.
1312
+ * @throws {RequiredError}
1313
+ * @memberof CoreHaloRunV1alpha1LinkApi
1314
+ */
1315
+ getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
1316
+ /**
1317
+ * List core.halo.run/v1alpha1/Link
1318
+ * @param {number} [page] Page index
1319
+ * @param {number} [size] Size of one page
1320
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1321
+ * @param {*} [options] Override http request option.
1322
+ * @throws {RequiredError}
1323
+ * @memberof CoreHaloRunV1alpha1LinkApi
1324
+ */
1325
+ listcoreHaloRunV1alpha1Link(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link[], any>>;
1326
+ /**
1327
+ * Update core.halo.run/v1alpha1/Link
1328
+ * @param {string} name Name of link
1329
+ * @param {Link} [link] Updated link
1330
+ * @param {*} [options] Override http request option.
1331
+ * @throws {RequiredError}
1332
+ * @memberof CoreHaloRunV1alpha1LinkApi
1333
+ */
1334
+ updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
1335
+ }
1336
+ /**
1337
+ * CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
1338
+ * @export
1339
+ */
1340
+ declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
1341
+ /**
1342
+ * Create core.halo.run/v1alpha1/LinkGroup
1343
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
1344
+ * @param {*} [options] Override http request option.
1345
+ * @throws {RequiredError}
1346
+ */
1347
+ createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1348
+ /**
1349
+ * Delete core.halo.run/v1alpha1/LinkGroup
1350
+ * @param {string} name Name of linkgroup
1351
+ * @param {*} [options] Override http request option.
1352
+ * @throws {RequiredError}
1353
+ */
1354
+ deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1355
+ /**
1356
+ * Get core.halo.run/v1alpha1/LinkGroup
1357
+ * @param {string} name Name of linkgroup
1358
+ * @param {*} [options] Override http request option.
1359
+ * @throws {RequiredError}
1360
+ */
1361
+ getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1362
+ /**
1363
+ * List core.halo.run/v1alpha1/LinkGroup
1364
+ * @param {number} [page] Page index
1365
+ * @param {number} [size] Size of one page
1366
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1367
+ * @param {*} [options] Override http request option.
1368
+ * @throws {RequiredError}
1369
+ */
1370
+ listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1371
+ /**
1372
+ * Update core.halo.run/v1alpha1/LinkGroup
1373
+ * @param {string} name Name of linkgroup
1374
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
1375
+ * @param {*} [options] Override http request option.
1376
+ * @throws {RequiredError}
1377
+ */
1378
+ updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1379
+ };
1380
+ /**
1381
+ * CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
1382
+ * @export
1383
+ */
1384
+ declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
1385
+ /**
1386
+ * Create core.halo.run/v1alpha1/LinkGroup
1387
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
1388
+ * @param {*} [options] Override http request option.
1389
+ * @throws {RequiredError}
1390
+ */
1391
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
1392
+ /**
1393
+ * Delete core.halo.run/v1alpha1/LinkGroup
1394
+ * @param {string} name Name of linkgroup
1395
+ * @param {*} [options] Override http request option.
1396
+ * @throws {RequiredError}
1397
+ */
1398
+ deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1399
+ /**
1400
+ * Get core.halo.run/v1alpha1/LinkGroup
1401
+ * @param {string} name Name of linkgroup
1402
+ * @param {*} [options] Override http request option.
1403
+ * @throws {RequiredError}
1404
+ */
1405
+ getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
1406
+ /**
1407
+ * List core.halo.run/v1alpha1/LinkGroup
1408
+ * @param {number} [page] Page index
1409
+ * @param {number} [size] Size of one page
1410
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1411
+ * @param {*} [options] Override http request option.
1412
+ * @throws {RequiredError}
1413
+ */
1414
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LinkGroup>>>;
1415
+ /**
1416
+ * Update core.halo.run/v1alpha1/LinkGroup
1417
+ * @param {string} name Name of linkgroup
1418
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
1419
+ * @param {*} [options] Override http request option.
1420
+ * @throws {RequiredError}
1421
+ */
1422
+ updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
1423
+ };
1424
+ /**
1425
+ * CoreHaloRunV1alpha1LinkGroupApi - factory interface
1426
+ * @export
1427
+ */
1428
+ declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1429
+ /**
1430
+ * Create core.halo.run/v1alpha1/LinkGroup
1431
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
1432
+ * @param {*} [options] Override http request option.
1433
+ * @throws {RequiredError}
1434
+ */
1435
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
1436
+ /**
1437
+ * Delete core.halo.run/v1alpha1/LinkGroup
1438
+ * @param {string} name Name of linkgroup
1439
+ * @param {*} [options] Override http request option.
1440
+ * @throws {RequiredError}
1441
+ */
1442
+ deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
1443
+ /**
1444
+ * Get core.halo.run/v1alpha1/LinkGroup
1445
+ * @param {string} name Name of linkgroup
1446
+ * @param {*} [options] Override http request option.
1447
+ * @throws {RequiredError}
1448
+ */
1449
+ getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
1450
+ /**
1451
+ * List core.halo.run/v1alpha1/LinkGroup
1452
+ * @param {number} [page] Page index
1453
+ * @param {number} [size] Size of one page
1454
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1455
+ * @param {*} [options] Override http request option.
1456
+ * @throws {RequiredError}
1457
+ */
1458
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<LinkGroup>>;
1459
+ /**
1460
+ * Update core.halo.run/v1alpha1/LinkGroup
1461
+ * @param {string} name Name of linkgroup
1462
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
1463
+ * @param {*} [options] Override http request option.
1464
+ * @throws {RequiredError}
1465
+ */
1466
+ updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
1467
+ };
1468
+ /**
1469
+ * CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
1470
+ * @export
1471
+ * @class CoreHaloRunV1alpha1LinkGroupApi
1472
+ * @extends {BaseAPI}
1473
+ */
1474
+ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
1475
+ /**
1476
+ * Create core.halo.run/v1alpha1/LinkGroup
1477
+ * @param {LinkGroup} [linkGroup] Fresh linkgroup
1478
+ * @param {*} [options] Override http request option.
1479
+ * @throws {RequiredError}
1480
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
1481
+ */
1482
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
1483
+ /**
1484
+ * Delete core.halo.run/v1alpha1/LinkGroup
1485
+ * @param {string} name Name of linkgroup
1486
+ * @param {*} [options] Override http request option.
1487
+ * @throws {RequiredError}
1488
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
1489
+ */
1490
+ deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
1491
+ /**
1492
+ * Get core.halo.run/v1alpha1/LinkGroup
1493
+ * @param {string} name Name of linkgroup
1494
+ * @param {*} [options] Override http request option.
1495
+ * @throws {RequiredError}
1496
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
1497
+ */
1498
+ getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
1499
+ /**
1500
+ * List core.halo.run/v1alpha1/LinkGroup
1501
+ * @param {number} [page] Page index
1502
+ * @param {number} [size] Size of one page
1503
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1504
+ * @param {*} [options] Override http request option.
1505
+ * @throws {RequiredError}
1506
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
1507
+ */
1508
+ listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup[], any>>;
1509
+ /**
1510
+ * Update core.halo.run/v1alpha1/LinkGroup
1511
+ * @param {string} name Name of linkgroup
1512
+ * @param {LinkGroup} [linkGroup] Updated linkgroup
1513
+ * @param {*} [options] Override http request option.
1514
+ * @throws {RequiredError}
1515
+ * @memberof CoreHaloRunV1alpha1LinkGroupApi
1516
+ */
1517
+ updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
1518
+ }
1519
+ /**
1520
+ * CoreHaloRunV1alpha1PostApi - axios parameter creator
1521
+ * @export
1522
+ */
1523
+ declare const CoreHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
1524
+ /**
1525
+ * Create core.halo.run/v1alpha1/Post
1526
+ * @param {Post} [post] Fresh post
1527
+ * @param {*} [options] Override http request option.
1528
+ * @throws {RequiredError}
1529
+ */
1530
+ createcoreHaloRunV1alpha1Post: (post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1531
+ /**
1532
+ * Delete core.halo.run/v1alpha1/Post
1533
+ * @param {string} name Name of post
1534
+ * @param {*} [options] Override http request option.
1535
+ * @throws {RequiredError}
1536
+ */
1537
+ deletecoreHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1538
+ /**
1539
+ * Get core.halo.run/v1alpha1/Post
1540
+ * @param {string} name Name of post
1541
+ * @param {*} [options] Override http request option.
1542
+ * @throws {RequiredError}
1543
+ */
1544
+ getcoreHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1545
+ /**
1546
+ * List core.halo.run/v1alpha1/Post
1547
+ * @param {number} [page] Page index
1548
+ * @param {number} [size] Size of one page
1549
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1550
+ * @param {*} [options] Override http request option.
1551
+ * @throws {RequiredError}
1552
+ */
1553
+ listcoreHaloRunV1alpha1Post: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1554
+ /**
1555
+ * Update core.halo.run/v1alpha1/Post
1556
+ * @param {string} name Name of post
1557
+ * @param {Post} [post] Updated post
1558
+ * @param {*} [options] Override http request option.
1559
+ * @throws {RequiredError}
1560
+ */
1561
+ updatecoreHaloRunV1alpha1Post: (name: string, post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1562
+ };
1563
+ /**
1564
+ * CoreHaloRunV1alpha1PostApi - functional programming interface
1565
+ * @export
1566
+ */
1567
+ declare const CoreHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
1568
+ /**
1569
+ * Create core.halo.run/v1alpha1/Post
1570
+ * @param {Post} [post] Fresh post
1571
+ * @param {*} [options] Override http request option.
1572
+ * @throws {RequiredError}
1573
+ */
1574
+ createcoreHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
1575
+ /**
1576
+ * Delete core.halo.run/v1alpha1/Post
1577
+ * @param {string} name Name of post
1578
+ * @param {*} [options] Override http request option.
1579
+ * @throws {RequiredError}
1580
+ */
1581
+ deletecoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1582
+ /**
1583
+ * Get core.halo.run/v1alpha1/Post
1584
+ * @param {string} name Name of post
1585
+ * @param {*} [options] Override http request option.
1586
+ * @throws {RequiredError}
1587
+ */
1588
+ getcoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
1589
+ /**
1590
+ * List core.halo.run/v1alpha1/Post
1591
+ * @param {number} [page] Page index
1592
+ * @param {number} [size] Size of one page
1593
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1594
+ * @param {*} [options] Override http request option.
1595
+ * @throws {RequiredError}
1596
+ */
1597
+ listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Post>>>;
1598
+ /**
1599
+ * Update core.halo.run/v1alpha1/Post
1600
+ * @param {string} name Name of post
1601
+ * @param {Post} [post] Updated post
1602
+ * @param {*} [options] Override http request option.
1603
+ * @throws {RequiredError}
1604
+ */
1605
+ updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
1606
+ };
1607
+ /**
1608
+ * CoreHaloRunV1alpha1PostApi - factory interface
1609
+ * @export
1610
+ */
1611
+ declare const CoreHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1612
+ /**
1613
+ * Create core.halo.run/v1alpha1/Post
1614
+ * @param {Post} [post] Fresh post
1615
+ * @param {*} [options] Override http request option.
1616
+ * @throws {RequiredError}
1617
+ */
1618
+ createcoreHaloRunV1alpha1Post(post?: Post, options?: any): AxiosPromise<Post>;
1619
+ /**
1620
+ * Delete core.halo.run/v1alpha1/Post
1621
+ * @param {string} name Name of post
1622
+ * @param {*} [options] Override http request option.
1623
+ * @throws {RequiredError}
1624
+ */
1625
+ deletecoreHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<void>;
1626
+ /**
1627
+ * Get core.halo.run/v1alpha1/Post
1628
+ * @param {string} name Name of post
1629
+ * @param {*} [options] Override http request option.
1630
+ * @throws {RequiredError}
1631
+ */
1632
+ getcoreHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<Post>;
1633
+ /**
1634
+ * List core.halo.run/v1alpha1/Post
1635
+ * @param {number} [page] Page index
1636
+ * @param {number} [size] Size of one page
1637
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1638
+ * @param {*} [options] Override http request option.
1639
+ * @throws {RequiredError}
1640
+ */
1641
+ listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<Post>>;
1642
+ /**
1643
+ * Update core.halo.run/v1alpha1/Post
1644
+ * @param {string} name Name of post
1645
+ * @param {Post} [post] Updated post
1646
+ * @param {*} [options] Override http request option.
1647
+ * @throws {RequiredError}
1648
+ */
1649
+ updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: any): AxiosPromise<Post>;
1650
+ };
1651
+ /**
1652
+ * CoreHaloRunV1alpha1PostApi - object-oriented interface
1653
+ * @export
1654
+ * @class CoreHaloRunV1alpha1PostApi
1655
+ * @extends {BaseAPI}
1656
+ */
1657
+ declare class CoreHaloRunV1alpha1PostApi extends BaseAPI {
1658
+ /**
1659
+ * Create core.halo.run/v1alpha1/Post
1660
+ * @param {Post} [post] Fresh post
1661
+ * @param {*} [options] Override http request option.
1662
+ * @throws {RequiredError}
1663
+ * @memberof CoreHaloRunV1alpha1PostApi
1664
+ */
1665
+ createcoreHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
1666
+ /**
1667
+ * Delete core.halo.run/v1alpha1/Post
1668
+ * @param {string} name Name of post
1669
+ * @param {*} [options] Override http request option.
1670
+ * @throws {RequiredError}
1671
+ * @memberof CoreHaloRunV1alpha1PostApi
1672
+ */
1673
+ deletecoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
1674
+ /**
1675
+ * Get core.halo.run/v1alpha1/Post
1676
+ * @param {string} name Name of post
1677
+ * @param {*} [options] Override http request option.
1678
+ * @throws {RequiredError}
1679
+ * @memberof CoreHaloRunV1alpha1PostApi
1680
+ */
1681
+ getcoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
1682
+ /**
1683
+ * List core.halo.run/v1alpha1/Post
1684
+ * @param {number} [page] Page index
1685
+ * @param {number} [size] Size of one page
1686
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1687
+ * @param {*} [options] Override http request option.
1688
+ * @throws {RequiredError}
1689
+ * @memberof CoreHaloRunV1alpha1PostApi
1690
+ */
1691
+ listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post[], any>>;
1692
+ /**
1693
+ * Update core.halo.run/v1alpha1/Post
1694
+ * @param {string} name Name of post
1695
+ * @param {Post} [post] Updated post
1696
+ * @param {*} [options] Override http request option.
1697
+ * @throws {RequiredError}
1698
+ * @memberof CoreHaloRunV1alpha1PostApi
1699
+ */
1700
+ updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
1701
+ }
1702
+ /**
1703
+ * PluginHaloRunV1alpha1PluginApi - axios parameter creator
1704
+ * @export
1705
+ */
1706
+ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
1707
+ /**
1708
+ * Create plugin.halo.run/v1alpha1/Plugin
1709
+ * @param {Plugin} [plugin] Fresh plugin
1710
+ * @param {*} [options] Override http request option.
1711
+ * @throws {RequiredError}
1712
+ */
1713
+ createpluginHaloRunV1alpha1Plugin: (plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1714
+ /**
1715
+ * Delete plugin.halo.run/v1alpha1/Plugin
1716
+ * @param {string} name Name of plugin
1717
+ * @param {*} [options] Override http request option.
1718
+ * @throws {RequiredError}
1719
+ */
1720
+ deletepluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1721
+ /**
1722
+ * Get plugin.halo.run/v1alpha1/Plugin
1723
+ * @param {string} name Name of plugin
1724
+ * @param {*} [options] Override http request option.
1725
+ * @throws {RequiredError}
1726
+ */
1727
+ getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1728
+ /**
1729
+ * List plugin.halo.run/v1alpha1/Plugin
1730
+ * @param {number} [page] Page index
1731
+ * @param {number} [size] Size of one page
1732
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1733
+ * @param {*} [options] Override http request option.
1734
+ * @throws {RequiredError}
1735
+ */
1736
+ listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1737
+ /**
1738
+ * Update plugin.halo.run/v1alpha1/Plugin
1739
+ * @param {string} name Name of plugin
1740
+ * @param {Plugin} [plugin] Updated plugin
1741
+ * @param {*} [options] Override http request option.
1742
+ * @throws {RequiredError}
1743
+ */
1744
+ updatepluginHaloRunV1alpha1Plugin: (name: string, plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1745
+ };
1746
+ /**
1747
+ * PluginHaloRunV1alpha1PluginApi - functional programming interface
1748
+ * @export
1749
+ */
1750
+ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
1751
+ /**
1752
+ * Create plugin.halo.run/v1alpha1/Plugin
1753
+ * @param {Plugin} [plugin] Fresh plugin
1754
+ * @param {*} [options] Override http request option.
1755
+ * @throws {RequiredError}
1756
+ */
1757
+ createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
1758
+ /**
1759
+ * Delete plugin.halo.run/v1alpha1/Plugin
1760
+ * @param {string} name Name of plugin
1761
+ * @param {*} [options] Override http request option.
1762
+ * @throws {RequiredError}
1763
+ */
1764
+ deletepluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1765
+ /**
1766
+ * Get plugin.halo.run/v1alpha1/Plugin
1767
+ * @param {string} name Name of plugin
1768
+ * @param {*} [options] Override http request option.
1769
+ * @throws {RequiredError}
1770
+ */
1771
+ getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
1772
+ /**
1773
+ * List plugin.halo.run/v1alpha1/Plugin
1774
+ * @param {number} [page] Page index
1775
+ * @param {number} [size] Size of one page
1776
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1777
+ * @param {*} [options] Override http request option.
1778
+ * @throws {RequiredError}
1779
+ */
1780
+ listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Plugin>>>;
1781
+ /**
1782
+ * Update plugin.halo.run/v1alpha1/Plugin
1783
+ * @param {string} name Name of plugin
1784
+ * @param {Plugin} [plugin] Updated plugin
1785
+ * @param {*} [options] Override http request option.
1786
+ * @throws {RequiredError}
1787
+ */
1788
+ updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
1789
+ };
1790
+ /**
1791
+ * PluginHaloRunV1alpha1PluginApi - factory interface
1792
+ * @export
1793
+ */
1794
+ declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1795
+ /**
1796
+ * Create plugin.halo.run/v1alpha1/Plugin
1797
+ * @param {Plugin} [plugin] Fresh plugin
1798
+ * @param {*} [options] Override http request option.
1799
+ * @throws {RequiredError}
1800
+ */
1801
+ createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: any): AxiosPromise<Plugin>;
1802
+ /**
1803
+ * Delete plugin.halo.run/v1alpha1/Plugin
1804
+ * @param {string} name Name of plugin
1805
+ * @param {*} [options] Override http request option.
1806
+ * @throws {RequiredError}
1807
+ */
1808
+ deletepluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<void>;
1809
+ /**
1810
+ * Get plugin.halo.run/v1alpha1/Plugin
1811
+ * @param {string} name Name of plugin
1812
+ * @param {*} [options] Override http request option.
1813
+ * @throws {RequiredError}
1814
+ */
1815
+ getpluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<Plugin>;
1816
+ /**
1817
+ * List plugin.halo.run/v1alpha1/Plugin
1818
+ * @param {number} [page] Page index
1819
+ * @param {number} [size] Size of one page
1820
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1821
+ * @param {*} [options] Override http request option.
1822
+ * @throws {RequiredError}
1823
+ */
1824
+ listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<Plugin>>;
1825
+ /**
1826
+ * Update plugin.halo.run/v1alpha1/Plugin
1827
+ * @param {string} name Name of plugin
1828
+ * @param {Plugin} [plugin] Updated plugin
1829
+ * @param {*} [options] Override http request option.
1830
+ * @throws {RequiredError}
1831
+ */
1832
+ updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?: any): AxiosPromise<Plugin>;
1833
+ };
1834
+ /**
1835
+ * PluginHaloRunV1alpha1PluginApi - object-oriented interface
1836
+ * @export
1837
+ * @class PluginHaloRunV1alpha1PluginApi
1838
+ * @extends {BaseAPI}
1839
+ */
1840
+ declare class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
1841
+ /**
1842
+ * Create plugin.halo.run/v1alpha1/Plugin
1843
+ * @param {Plugin} [plugin] Fresh plugin
1844
+ * @param {*} [options] Override http request option.
1845
+ * @throws {RequiredError}
1846
+ * @memberof PluginHaloRunV1alpha1PluginApi
1847
+ */
1848
+ createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
1849
+ /**
1850
+ * Delete plugin.halo.run/v1alpha1/Plugin
1851
+ * @param {string} name Name of plugin
1852
+ * @param {*} [options] Override http request option.
1853
+ * @throws {RequiredError}
1854
+ * @memberof PluginHaloRunV1alpha1PluginApi
1855
+ */
1856
+ deletepluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
1857
+ /**
1858
+ * Get plugin.halo.run/v1alpha1/Plugin
1859
+ * @param {string} name Name of plugin
1860
+ * @param {*} [options] Override http request option.
1861
+ * @throws {RequiredError}
1862
+ * @memberof PluginHaloRunV1alpha1PluginApi
1863
+ */
1864
+ getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
1865
+ /**
1866
+ * List plugin.halo.run/v1alpha1/Plugin
1867
+ * @param {number} [page] Page index
1868
+ * @param {number} [size] Size of one page
1869
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1870
+ * @param {*} [options] Override http request option.
1871
+ * @throws {RequiredError}
1872
+ * @memberof PluginHaloRunV1alpha1PluginApi
1873
+ */
1874
+ listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin[], any>>;
1875
+ /**
1876
+ * Update plugin.halo.run/v1alpha1/Plugin
1877
+ * @param {string} name Name of plugin
1878
+ * @param {Plugin} [plugin] Updated plugin
1879
+ * @param {*} [options] Override http request option.
1880
+ * @throws {RequiredError}
1881
+ * @memberof PluginHaloRunV1alpha1PluginApi
1882
+ */
1883
+ updatepluginHaloRunV1alpha1Plugin(name: string, plugin?: Plugin, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
1884
+ }
1885
+ /**
1886
+ * PluginHaloRunV1alpha1ReverseProxyApi - axios parameter creator
1887
+ * @export
1888
+ */
1889
+ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configuration?: Configuration) => {
1890
+ /**
1891
+ * Create plugin.halo.run/v1alpha1/ReverseProxy
1892
+ * @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
1893
+ * @param {*} [options] Override http request option.
1894
+ * @throws {RequiredError}
1895
+ */
1896
+ createpluginHaloRunV1alpha1ReverseProxy: (reverseProxy?: ReverseProxy, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1897
+ /**
1898
+ * Delete plugin.halo.run/v1alpha1/ReverseProxy
1899
+ * @param {string} name Name of reverseproxy
1900
+ * @param {*} [options] Override http request option.
1901
+ * @throws {RequiredError}
1902
+ */
1903
+ deletepluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1904
+ /**
1905
+ * Get plugin.halo.run/v1alpha1/ReverseProxy
1906
+ * @param {string} name Name of reverseproxy
1907
+ * @param {*} [options] Override http request option.
1908
+ * @throws {RequiredError}
1909
+ */
1910
+ getpluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1911
+ /**
1912
+ * List plugin.halo.run/v1alpha1/ReverseProxy
1913
+ * @param {number} [page] Page index
1914
+ * @param {number} [size] Size of one page
1915
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1916
+ * @param {*} [options] Override http request option.
1917
+ * @throws {RequiredError}
1918
+ */
1919
+ listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1920
+ /**
1921
+ * Update plugin.halo.run/v1alpha1/ReverseProxy
1922
+ * @param {string} name Name of reverseproxy
1923
+ * @param {ReverseProxy} [reverseProxy] Updated reverseproxy
1924
+ * @param {*} [options] Override http request option.
1925
+ * @throws {RequiredError}
1926
+ */
1927
+ updatepluginHaloRunV1alpha1ReverseProxy: (name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1928
+ };
1929
+ /**
1930
+ * PluginHaloRunV1alpha1ReverseProxyApi - functional programming interface
1931
+ * @export
1932
+ */
1933
+ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configuration) => {
1934
+ /**
1935
+ * Create plugin.halo.run/v1alpha1/ReverseProxy
1936
+ * @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
1937
+ * @param {*} [options] Override http request option.
1938
+ * @throws {RequiredError}
1939
+ */
1940
+ createpluginHaloRunV1alpha1ReverseProxy(reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
1941
+ /**
1942
+ * Delete plugin.halo.run/v1alpha1/ReverseProxy
1943
+ * @param {string} name Name of reverseproxy
1944
+ * @param {*} [options] Override http request option.
1945
+ * @throws {RequiredError}
1946
+ */
1947
+ deletepluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1948
+ /**
1949
+ * Get plugin.halo.run/v1alpha1/ReverseProxy
1950
+ * @param {string} name Name of reverseproxy
1951
+ * @param {*} [options] Override http request option.
1952
+ * @throws {RequiredError}
1953
+ */
1954
+ getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
1955
+ /**
1956
+ * List plugin.halo.run/v1alpha1/ReverseProxy
1957
+ * @param {number} [page] Page index
1958
+ * @param {number} [size] Size of one page
1959
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
1960
+ * @param {*} [options] Override http request option.
1961
+ * @throws {RequiredError}
1962
+ */
1963
+ listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ReverseProxy>>>;
1964
+ /**
1965
+ * Update plugin.halo.run/v1alpha1/ReverseProxy
1966
+ * @param {string} name Name of reverseproxy
1967
+ * @param {ReverseProxy} [reverseProxy] Updated reverseproxy
1968
+ * @param {*} [options] Override http request option.
1969
+ * @throws {RequiredError}
1970
+ */
1971
+ updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
1972
+ };
1973
+ /**
1974
+ * PluginHaloRunV1alpha1ReverseProxyApi - factory interface
1975
+ * @export
1976
+ */
1977
+ declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1978
+ /**
1979
+ * Create plugin.halo.run/v1alpha1/ReverseProxy
1980
+ * @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
1981
+ * @param {*} [options] Override http request option.
1982
+ * @throws {RequiredError}
1983
+ */
1984
+ createpluginHaloRunV1alpha1ReverseProxy(reverseProxy?: ReverseProxy, options?: any): AxiosPromise<ReverseProxy>;
1985
+ /**
1986
+ * Delete plugin.halo.run/v1alpha1/ReverseProxy
1987
+ * @param {string} name Name of reverseproxy
1988
+ * @param {*} [options] Override http request option.
1989
+ * @throws {RequiredError}
1990
+ */
1991
+ deletepluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<void>;
1992
+ /**
1993
+ * Get plugin.halo.run/v1alpha1/ReverseProxy
1994
+ * @param {string} name Name of reverseproxy
1995
+ * @param {*} [options] Override http request option.
1996
+ * @throws {RequiredError}
1997
+ */
1998
+ getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<ReverseProxy>;
1999
+ /**
2000
+ * List plugin.halo.run/v1alpha1/ReverseProxy
2001
+ * @param {number} [page] Page index
2002
+ * @param {number} [size] Size of one page
2003
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2004
+ * @param {*} [options] Override http request option.
2005
+ * @throws {RequiredError}
2006
+ */
2007
+ listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<ReverseProxy>>;
2008
+ /**
2009
+ * Update plugin.halo.run/v1alpha1/ReverseProxy
2010
+ * @param {string} name Name of reverseproxy
2011
+ * @param {ReverseProxy} [reverseProxy] Updated reverseproxy
2012
+ * @param {*} [options] Override http request option.
2013
+ * @throws {RequiredError}
2014
+ */
2015
+ updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: any): AxiosPromise<ReverseProxy>;
2016
+ };
2017
+ /**
2018
+ * PluginHaloRunV1alpha1ReverseProxyApi - object-oriented interface
2019
+ * @export
2020
+ * @class PluginHaloRunV1alpha1ReverseProxyApi
2021
+ * @extends {BaseAPI}
2022
+ */
2023
+ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
2024
+ /**
2025
+ * Create plugin.halo.run/v1alpha1/ReverseProxy
2026
+ * @param {ReverseProxy} [reverseProxy] Fresh reverseproxy
2027
+ * @param {*} [options] Override http request option.
2028
+ * @throws {RequiredError}
2029
+ * @memberof PluginHaloRunV1alpha1ReverseProxyApi
2030
+ */
2031
+ createpluginHaloRunV1alpha1ReverseProxy(reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
2032
+ /**
2033
+ * Delete plugin.halo.run/v1alpha1/ReverseProxy
2034
+ * @param {string} name Name of reverseproxy
2035
+ * @param {*} [options] Override http request option.
2036
+ * @throws {RequiredError}
2037
+ * @memberof PluginHaloRunV1alpha1ReverseProxyApi
2038
+ */
2039
+ deletepluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
2040
+ /**
2041
+ * Get plugin.halo.run/v1alpha1/ReverseProxy
2042
+ * @param {string} name Name of reverseproxy
2043
+ * @param {*} [options] Override http request option.
2044
+ * @throws {RequiredError}
2045
+ * @memberof PluginHaloRunV1alpha1ReverseProxyApi
2046
+ */
2047
+ getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
2048
+ /**
2049
+ * List plugin.halo.run/v1alpha1/ReverseProxy
2050
+ * @param {number} [page] Page index
2051
+ * @param {number} [size] Size of one page
2052
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2053
+ * @param {*} [options] Override http request option.
2054
+ * @throws {RequiredError}
2055
+ * @memberof PluginHaloRunV1alpha1ReverseProxyApi
2056
+ */
2057
+ listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy[], any>>;
2058
+ /**
2059
+ * Update plugin.halo.run/v1alpha1/ReverseProxy
2060
+ * @param {string} name Name of reverseproxy
2061
+ * @param {ReverseProxy} [reverseProxy] Updated reverseproxy
2062
+ * @param {*} [options] Override http request option.
2063
+ * @throws {RequiredError}
2064
+ * @memberof PluginHaloRunV1alpha1ReverseProxyApi
2065
+ */
2066
+ updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
2067
+ }
2068
+ /**
2069
+ * V1alpha1ConfigMapApi - axios parameter creator
2070
+ * @export
2071
+ */
2072
+ declare const V1alpha1ConfigMapApiAxiosParamCreator: (configuration?: Configuration) => {
2073
+ /**
2074
+ * Create v1alpha1/ConfigMap
2075
+ * @param {ConfigMap} [configMap] Fresh configmap
2076
+ * @param {*} [options] Override http request option.
2077
+ * @throws {RequiredError}
2078
+ */
2079
+ createv1alpha1ConfigMap: (configMap?: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2080
+ /**
2081
+ * Delete v1alpha1/ConfigMap
2082
+ * @param {string} name Name of configmap
2083
+ * @param {*} [options] Override http request option.
2084
+ * @throws {RequiredError}
2085
+ */
2086
+ deletev1alpha1ConfigMap: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2087
+ /**
2088
+ * Get v1alpha1/ConfigMap
2089
+ * @param {string} name Name of configmap
2090
+ * @param {*} [options] Override http request option.
2091
+ * @throws {RequiredError}
2092
+ */
2093
+ getv1alpha1ConfigMap: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2094
+ /**
2095
+ * List v1alpha1/ConfigMap
2096
+ * @param {number} [page] Page index
2097
+ * @param {number} [size] Size of one page
2098
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2099
+ * @param {*} [options] Override http request option.
2100
+ * @throws {RequiredError}
2101
+ */
2102
+ listv1alpha1ConfigMap: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2103
+ /**
2104
+ * Update v1alpha1/ConfigMap
2105
+ * @param {string} name Name of configmap
2106
+ * @param {ConfigMap} [configMap] Updated configmap
2107
+ * @param {*} [options] Override http request option.
2108
+ * @throws {RequiredError}
2109
+ */
2110
+ updatev1alpha1ConfigMap: (name: string, configMap?: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2111
+ };
2112
+ /**
2113
+ * V1alpha1ConfigMapApi - functional programming interface
2114
+ * @export
2115
+ */
2116
+ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
2117
+ /**
2118
+ * Create v1alpha1/ConfigMap
2119
+ * @param {ConfigMap} [configMap] Fresh configmap
2120
+ * @param {*} [options] Override http request option.
2121
+ * @throws {RequiredError}
2122
+ */
2123
+ createv1alpha1ConfigMap(configMap?: ConfigMap, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
2124
+ /**
2125
+ * Delete v1alpha1/ConfigMap
2126
+ * @param {string} name Name of configmap
2127
+ * @param {*} [options] Override http request option.
2128
+ * @throws {RequiredError}
2129
+ */
2130
+ deletev1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2131
+ /**
2132
+ * Get v1alpha1/ConfigMap
2133
+ * @param {string} name Name of configmap
2134
+ * @param {*} [options] Override http request option.
2135
+ * @throws {RequiredError}
2136
+ */
2137
+ getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
2138
+ /**
2139
+ * List v1alpha1/ConfigMap
2140
+ * @param {number} [page] Page index
2141
+ * @param {number} [size] Size of one page
2142
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2143
+ * @param {*} [options] Override http request option.
2144
+ * @throws {RequiredError}
2145
+ */
2146
+ listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigMap>>>;
2147
+ /**
2148
+ * Update v1alpha1/ConfigMap
2149
+ * @param {string} name Name of configmap
2150
+ * @param {ConfigMap} [configMap] Updated configmap
2151
+ * @param {*} [options] Override http request option.
2152
+ * @throws {RequiredError}
2153
+ */
2154
+ updatev1alpha1ConfigMap(name: string, configMap?: ConfigMap, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
2155
+ };
2156
+ /**
2157
+ * V1alpha1ConfigMapApi - factory interface
2158
+ * @export
2159
+ */
2160
+ declare const V1alpha1ConfigMapApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2161
+ /**
2162
+ * Create v1alpha1/ConfigMap
2163
+ * @param {ConfigMap} [configMap] Fresh configmap
2164
+ * @param {*} [options] Override http request option.
2165
+ * @throws {RequiredError}
2166
+ */
2167
+ createv1alpha1ConfigMap(configMap?: ConfigMap, options?: any): AxiosPromise<ConfigMap>;
2168
+ /**
2169
+ * Delete v1alpha1/ConfigMap
2170
+ * @param {string} name Name of configmap
2171
+ * @param {*} [options] Override http request option.
2172
+ * @throws {RequiredError}
2173
+ */
2174
+ deletev1alpha1ConfigMap(name: string, options?: any): AxiosPromise<void>;
2175
+ /**
2176
+ * Get v1alpha1/ConfigMap
2177
+ * @param {string} name Name of configmap
2178
+ * @param {*} [options] Override http request option.
2179
+ * @throws {RequiredError}
2180
+ */
2181
+ getv1alpha1ConfigMap(name: string, options?: any): AxiosPromise<ConfigMap>;
2182
+ /**
2183
+ * List v1alpha1/ConfigMap
2184
+ * @param {number} [page] Page index
2185
+ * @param {number} [size] Size of one page
2186
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2187
+ * @param {*} [options] Override http request option.
2188
+ * @throws {RequiredError}
2189
+ */
2190
+ listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<ConfigMap>>;
2191
+ /**
2192
+ * Update v1alpha1/ConfigMap
2193
+ * @param {string} name Name of configmap
2194
+ * @param {ConfigMap} [configMap] Updated configmap
2195
+ * @param {*} [options] Override http request option.
2196
+ * @throws {RequiredError}
2197
+ */
2198
+ updatev1alpha1ConfigMap(name: string, configMap?: ConfigMap, options?: any): AxiosPromise<ConfigMap>;
2199
+ };
2200
+ /**
2201
+ * V1alpha1ConfigMapApi - object-oriented interface
2202
+ * @export
2203
+ * @class V1alpha1ConfigMapApi
2204
+ * @extends {BaseAPI}
2205
+ */
2206
+ declare class V1alpha1ConfigMapApi extends BaseAPI {
2207
+ /**
2208
+ * Create v1alpha1/ConfigMap
2209
+ * @param {ConfigMap} [configMap] Fresh configmap
2210
+ * @param {*} [options] Override http request option.
2211
+ * @throws {RequiredError}
2212
+ * @memberof V1alpha1ConfigMapApi
2213
+ */
2214
+ createv1alpha1ConfigMap(configMap?: ConfigMap, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
2215
+ /**
2216
+ * Delete v1alpha1/ConfigMap
2217
+ * @param {string} name Name of configmap
2218
+ * @param {*} [options] Override http request option.
2219
+ * @throws {RequiredError}
2220
+ * @memberof V1alpha1ConfigMapApi
2221
+ */
2222
+ deletev1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
2223
+ /**
2224
+ * Get v1alpha1/ConfigMap
2225
+ * @param {string} name Name of configmap
2226
+ * @param {*} [options] Override http request option.
2227
+ * @throws {RequiredError}
2228
+ * @memberof V1alpha1ConfigMapApi
2229
+ */
2230
+ getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
2231
+ /**
2232
+ * List v1alpha1/ConfigMap
2233
+ * @param {number} [page] Page index
2234
+ * @param {number} [size] Size of one page
2235
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2236
+ * @param {*} [options] Override http request option.
2237
+ * @throws {RequiredError}
2238
+ * @memberof V1alpha1ConfigMapApi
2239
+ */
2240
+ listv1alpha1ConfigMap(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap[], any>>;
2241
+ /**
2242
+ * Update v1alpha1/ConfigMap
2243
+ * @param {string} name Name of configmap
2244
+ * @param {ConfigMap} [configMap] Updated configmap
2245
+ * @param {*} [options] Override http request option.
2246
+ * @throws {RequiredError}
2247
+ * @memberof V1alpha1ConfigMapApi
2248
+ */
2249
+ updatev1alpha1ConfigMap(name: string, configMap?: ConfigMap, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
2250
+ }
2251
+ /**
2252
+ * V1alpha1PersonalAccessTokenApi - axios parameter creator
2253
+ * @export
2254
+ */
2255
+ declare const V1alpha1PersonalAccessTokenApiAxiosParamCreator: (configuration?: Configuration) => {
2256
+ /**
2257
+ * Create v1alpha1/PersonalAccessToken
2258
+ * @param {PersonalAccessToken} [personalAccessToken] Fresh personalaccesstoken
2259
+ * @param {*} [options] Override http request option.
2260
+ * @throws {RequiredError}
2261
+ */
2262
+ createv1alpha1PersonalAccessToken: (personalAccessToken?: PersonalAccessToken, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2263
+ /**
2264
+ * Delete v1alpha1/PersonalAccessToken
2265
+ * @param {string} name Name of personalaccesstoken
2266
+ * @param {*} [options] Override http request option.
2267
+ * @throws {RequiredError}
2268
+ */
2269
+ deletev1alpha1PersonalAccessToken: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2270
+ /**
2271
+ * Get v1alpha1/PersonalAccessToken
2272
+ * @param {string} name Name of personalaccesstoken
2273
+ * @param {*} [options] Override http request option.
2274
+ * @throws {RequiredError}
2275
+ */
2276
+ getv1alpha1PersonalAccessToken: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2277
+ /**
2278
+ * List v1alpha1/PersonalAccessToken
2279
+ * @param {number} [page] Page index
2280
+ * @param {number} [size] Size of one page
2281
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2282
+ * @param {*} [options] Override http request option.
2283
+ * @throws {RequiredError}
2284
+ */
2285
+ listv1alpha1PersonalAccessToken: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2286
+ /**
2287
+ * Update v1alpha1/PersonalAccessToken
2288
+ * @param {string} name Name of personalaccesstoken
2289
+ * @param {PersonalAccessToken} [personalAccessToken] Updated personalaccesstoken
2290
+ * @param {*} [options] Override http request option.
2291
+ * @throws {RequiredError}
2292
+ */
2293
+ updatev1alpha1PersonalAccessToken: (name: string, personalAccessToken?: PersonalAccessToken, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2294
+ };
2295
+ /**
2296
+ * V1alpha1PersonalAccessTokenApi - functional programming interface
2297
+ * @export
2298
+ */
2299
+ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration) => {
2300
+ /**
2301
+ * Create v1alpha1/PersonalAccessToken
2302
+ * @param {PersonalAccessToken} [personalAccessToken] Fresh personalaccesstoken
2303
+ * @param {*} [options] Override http request option.
2304
+ * @throws {RequiredError}
2305
+ */
2306
+ createv1alpha1PersonalAccessToken(personalAccessToken?: PersonalAccessToken, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessToken>>;
2307
+ /**
2308
+ * Delete v1alpha1/PersonalAccessToken
2309
+ * @param {string} name Name of personalaccesstoken
2310
+ * @param {*} [options] Override http request option.
2311
+ * @throws {RequiredError}
2312
+ */
2313
+ deletev1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2314
+ /**
2315
+ * Get v1alpha1/PersonalAccessToken
2316
+ * @param {string} name Name of personalaccesstoken
2317
+ * @param {*} [options] Override http request option.
2318
+ * @throws {RequiredError}
2319
+ */
2320
+ getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessToken>>;
2321
+ /**
2322
+ * List v1alpha1/PersonalAccessToken
2323
+ * @param {number} [page] Page index
2324
+ * @param {number} [size] Size of one page
2325
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2326
+ * @param {*} [options] Override http request option.
2327
+ * @throws {RequiredError}
2328
+ */
2329
+ listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PersonalAccessToken>>>;
2330
+ /**
2331
+ * Update v1alpha1/PersonalAccessToken
2332
+ * @param {string} name Name of personalaccesstoken
2333
+ * @param {PersonalAccessToken} [personalAccessToken] Updated personalaccesstoken
2334
+ * @param {*} [options] Override http request option.
2335
+ * @throws {RequiredError}
2336
+ */
2337
+ updatev1alpha1PersonalAccessToken(name: string, personalAccessToken?: PersonalAccessToken, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessToken>>;
2338
+ };
2339
+ /**
2340
+ * V1alpha1PersonalAccessTokenApi - factory interface
2341
+ * @export
2342
+ */
2343
+ declare const V1alpha1PersonalAccessTokenApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2344
+ /**
2345
+ * Create v1alpha1/PersonalAccessToken
2346
+ * @param {PersonalAccessToken} [personalAccessToken] Fresh personalaccesstoken
2347
+ * @param {*} [options] Override http request option.
2348
+ * @throws {RequiredError}
2349
+ */
2350
+ createv1alpha1PersonalAccessToken(personalAccessToken?: PersonalAccessToken, options?: any): AxiosPromise<PersonalAccessToken>;
2351
+ /**
2352
+ * Delete v1alpha1/PersonalAccessToken
2353
+ * @param {string} name Name of personalaccesstoken
2354
+ * @param {*} [options] Override http request option.
2355
+ * @throws {RequiredError}
2356
+ */
2357
+ deletev1alpha1PersonalAccessToken(name: string, options?: any): AxiosPromise<void>;
2358
+ /**
2359
+ * Get v1alpha1/PersonalAccessToken
2360
+ * @param {string} name Name of personalaccesstoken
2361
+ * @param {*} [options] Override http request option.
2362
+ * @throws {RequiredError}
2363
+ */
2364
+ getv1alpha1PersonalAccessToken(name: string, options?: any): AxiosPromise<PersonalAccessToken>;
2365
+ /**
2366
+ * List v1alpha1/PersonalAccessToken
2367
+ * @param {number} [page] Page index
2368
+ * @param {number} [size] Size of one page
2369
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2370
+ * @param {*} [options] Override http request option.
2371
+ * @throws {RequiredError}
2372
+ */
2373
+ listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<PersonalAccessToken>>;
2374
+ /**
2375
+ * Update v1alpha1/PersonalAccessToken
2376
+ * @param {string} name Name of personalaccesstoken
2377
+ * @param {PersonalAccessToken} [personalAccessToken] Updated personalaccesstoken
2378
+ * @param {*} [options] Override http request option.
2379
+ * @throws {RequiredError}
2380
+ */
2381
+ updatev1alpha1PersonalAccessToken(name: string, personalAccessToken?: PersonalAccessToken, options?: any): AxiosPromise<PersonalAccessToken>;
2382
+ };
2383
+ /**
2384
+ * V1alpha1PersonalAccessTokenApi - object-oriented interface
2385
+ * @export
2386
+ * @class V1alpha1PersonalAccessTokenApi
2387
+ * @extends {BaseAPI}
2388
+ */
2389
+ declare class V1alpha1PersonalAccessTokenApi extends BaseAPI {
2390
+ /**
2391
+ * Create v1alpha1/PersonalAccessToken
2392
+ * @param {PersonalAccessToken} [personalAccessToken] Fresh personalaccesstoken
2393
+ * @param {*} [options] Override http request option.
2394
+ * @throws {RequiredError}
2395
+ * @memberof V1alpha1PersonalAccessTokenApi
2396
+ */
2397
+ createv1alpha1PersonalAccessToken(personalAccessToken?: PersonalAccessToken, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken, any>>;
2398
+ /**
2399
+ * Delete v1alpha1/PersonalAccessToken
2400
+ * @param {string} name Name of personalaccesstoken
2401
+ * @param {*} [options] Override http request option.
2402
+ * @throws {RequiredError}
2403
+ * @memberof V1alpha1PersonalAccessTokenApi
2404
+ */
2405
+ deletev1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
2406
+ /**
2407
+ * Get v1alpha1/PersonalAccessToken
2408
+ * @param {string} name Name of personalaccesstoken
2409
+ * @param {*} [options] Override http request option.
2410
+ * @throws {RequiredError}
2411
+ * @memberof V1alpha1PersonalAccessTokenApi
2412
+ */
2413
+ getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken, any>>;
2414
+ /**
2415
+ * List v1alpha1/PersonalAccessToken
2416
+ * @param {number} [page] Page index
2417
+ * @param {number} [size] Size of one page
2418
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2419
+ * @param {*} [options] Override http request option.
2420
+ * @throws {RequiredError}
2421
+ * @memberof V1alpha1PersonalAccessTokenApi
2422
+ */
2423
+ listv1alpha1PersonalAccessToken(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken[], any>>;
2424
+ /**
2425
+ * Update v1alpha1/PersonalAccessToken
2426
+ * @param {string} name Name of personalaccesstoken
2427
+ * @param {PersonalAccessToken} [personalAccessToken] Updated personalaccesstoken
2428
+ * @param {*} [options] Override http request option.
2429
+ * @throws {RequiredError}
2430
+ * @memberof V1alpha1PersonalAccessTokenApi
2431
+ */
2432
+ updatev1alpha1PersonalAccessToken(name: string, personalAccessToken?: PersonalAccessToken, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken, any>>;
2433
+ }
2434
+ /**
2435
+ * V1alpha1RoleApi - axios parameter creator
2436
+ * @export
2437
+ */
2438
+ declare const V1alpha1RoleApiAxiosParamCreator: (configuration?: Configuration) => {
2439
+ /**
2440
+ * Create v1alpha1/Role
2441
+ * @param {Role} [role] Fresh role
2442
+ * @param {*} [options] Override http request option.
2443
+ * @throws {RequiredError}
2444
+ */
2445
+ createv1alpha1Role: (role?: Role, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2446
+ /**
2447
+ * Delete v1alpha1/Role
2448
+ * @param {string} name Name of role
2449
+ * @param {*} [options] Override http request option.
2450
+ * @throws {RequiredError}
2451
+ */
2452
+ deletev1alpha1Role: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2453
+ /**
2454
+ * Get v1alpha1/Role
2455
+ * @param {string} name Name of role
2456
+ * @param {*} [options] Override http request option.
2457
+ * @throws {RequiredError}
2458
+ */
2459
+ getv1alpha1Role: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2460
+ /**
2461
+ * List v1alpha1/Role
2462
+ * @param {number} [page] Page index
2463
+ * @param {number} [size] Size of one page
2464
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2465
+ * @param {*} [options] Override http request option.
2466
+ * @throws {RequiredError}
2467
+ */
2468
+ listv1alpha1Role: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2469
+ /**
2470
+ * Update v1alpha1/Role
2471
+ * @param {string} name Name of role
2472
+ * @param {Role} [role] Updated role
2473
+ * @param {*} [options] Override http request option.
2474
+ * @throws {RequiredError}
2475
+ */
2476
+ updatev1alpha1Role: (name: string, role?: Role, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2477
+ };
2478
+ /**
2479
+ * V1alpha1RoleApi - functional programming interface
2480
+ * @export
2481
+ */
2482
+ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
2483
+ /**
2484
+ * Create v1alpha1/Role
2485
+ * @param {Role} [role] Fresh role
2486
+ * @param {*} [options] Override http request option.
2487
+ * @throws {RequiredError}
2488
+ */
2489
+ createv1alpha1Role(role?: Role, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
2490
+ /**
2491
+ * Delete v1alpha1/Role
2492
+ * @param {string} name Name of role
2493
+ * @param {*} [options] Override http request option.
2494
+ * @throws {RequiredError}
2495
+ */
2496
+ deletev1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2497
+ /**
2498
+ * Get v1alpha1/Role
2499
+ * @param {string} name Name of role
2500
+ * @param {*} [options] Override http request option.
2501
+ * @throws {RequiredError}
2502
+ */
2503
+ getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
2504
+ /**
2505
+ * List v1alpha1/Role
2506
+ * @param {number} [page] Page index
2507
+ * @param {number} [size] Size of one page
2508
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2509
+ * @param {*} [options] Override http request option.
2510
+ * @throws {RequiredError}
2511
+ */
2512
+ listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Role>>>;
2513
+ /**
2514
+ * Update v1alpha1/Role
2515
+ * @param {string} name Name of role
2516
+ * @param {Role} [role] Updated role
2517
+ * @param {*} [options] Override http request option.
2518
+ * @throws {RequiredError}
2519
+ */
2520
+ updatev1alpha1Role(name: string, role?: Role, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
2521
+ };
2522
+ /**
2523
+ * V1alpha1RoleApi - factory interface
2524
+ * @export
2525
+ */
2526
+ declare const V1alpha1RoleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2527
+ /**
2528
+ * Create v1alpha1/Role
2529
+ * @param {Role} [role] Fresh role
2530
+ * @param {*} [options] Override http request option.
2531
+ * @throws {RequiredError}
2532
+ */
2533
+ createv1alpha1Role(role?: Role, options?: any): AxiosPromise<Role>;
2534
+ /**
2535
+ * Delete v1alpha1/Role
2536
+ * @param {string} name Name of role
2537
+ * @param {*} [options] Override http request option.
2538
+ * @throws {RequiredError}
2539
+ */
2540
+ deletev1alpha1Role(name: string, options?: any): AxiosPromise<void>;
2541
+ /**
2542
+ * Get v1alpha1/Role
2543
+ * @param {string} name Name of role
2544
+ * @param {*} [options] Override http request option.
2545
+ * @throws {RequiredError}
2546
+ */
2547
+ getv1alpha1Role(name: string, options?: any): AxiosPromise<Role>;
2548
+ /**
2549
+ * List v1alpha1/Role
2550
+ * @param {number} [page] Page index
2551
+ * @param {number} [size] Size of one page
2552
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2553
+ * @param {*} [options] Override http request option.
2554
+ * @throws {RequiredError}
2555
+ */
2556
+ listv1alpha1Role(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<Role>>;
2557
+ /**
2558
+ * Update v1alpha1/Role
2559
+ * @param {string} name Name of role
2560
+ * @param {Role} [role] Updated role
2561
+ * @param {*} [options] Override http request option.
2562
+ * @throws {RequiredError}
2563
+ */
2564
+ updatev1alpha1Role(name: string, role?: Role, options?: any): AxiosPromise<Role>;
2565
+ };
2566
+ /**
2567
+ * V1alpha1RoleApi - object-oriented interface
2568
+ * @export
2569
+ * @class V1alpha1RoleApi
2570
+ * @extends {BaseAPI}
2571
+ */
2572
+ declare class V1alpha1RoleApi extends BaseAPI {
2573
+ /**
2574
+ * Create v1alpha1/Role
2575
+ * @param {Role} [role] Fresh role
2576
+ * @param {*} [options] Override http request option.
2577
+ * @throws {RequiredError}
2578
+ * @memberof V1alpha1RoleApi
2579
+ */
2580
+ createv1alpha1Role(role?: Role, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
2581
+ /**
2582
+ * Delete v1alpha1/Role
2583
+ * @param {string} name Name of role
2584
+ * @param {*} [options] Override http request option.
2585
+ * @throws {RequiredError}
2586
+ * @memberof V1alpha1RoleApi
2587
+ */
2588
+ deletev1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
2589
+ /**
2590
+ * Get v1alpha1/Role
2591
+ * @param {string} name Name of role
2592
+ * @param {*} [options] Override http request option.
2593
+ * @throws {RequiredError}
2594
+ * @memberof V1alpha1RoleApi
2595
+ */
2596
+ getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
2597
+ /**
2598
+ * List v1alpha1/Role
2599
+ * @param {number} [page] Page index
2600
+ * @param {number} [size] Size of one page
2601
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2602
+ * @param {*} [options] Override http request option.
2603
+ * @throws {RequiredError}
2604
+ * @memberof V1alpha1RoleApi
2605
+ */
2606
+ listv1alpha1Role(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role[], any>>;
2607
+ /**
2608
+ * Update v1alpha1/Role
2609
+ * @param {string} name Name of role
2610
+ * @param {Role} [role] Updated role
2611
+ * @param {*} [options] Override http request option.
2612
+ * @throws {RequiredError}
2613
+ * @memberof V1alpha1RoleApi
2614
+ */
2615
+ updatev1alpha1Role(name: string, role?: Role, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
2616
+ }
2617
+ /**
2618
+ * V1alpha1RoleBindingApi - axios parameter creator
2619
+ * @export
2620
+ */
2621
+ declare const V1alpha1RoleBindingApiAxiosParamCreator: (configuration?: Configuration) => {
2622
+ /**
2623
+ * Create v1alpha1/RoleBinding
2624
+ * @param {RoleBinding} [roleBinding] Fresh rolebinding
2625
+ * @param {*} [options] Override http request option.
2626
+ * @throws {RequiredError}
2627
+ */
2628
+ createv1alpha1RoleBinding: (roleBinding?: RoleBinding, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2629
+ /**
2630
+ * Delete v1alpha1/RoleBinding
2631
+ * @param {string} name Name of rolebinding
2632
+ * @param {*} [options] Override http request option.
2633
+ * @throws {RequiredError}
2634
+ */
2635
+ deletev1alpha1RoleBinding: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2636
+ /**
2637
+ * Get v1alpha1/RoleBinding
2638
+ * @param {string} name Name of rolebinding
2639
+ * @param {*} [options] Override http request option.
2640
+ * @throws {RequiredError}
2641
+ */
2642
+ getv1alpha1RoleBinding: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2643
+ /**
2644
+ * List v1alpha1/RoleBinding
2645
+ * @param {number} [page] Page index
2646
+ * @param {number} [size] Size of one page
2647
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2648
+ * @param {*} [options] Override http request option.
2649
+ * @throws {RequiredError}
2650
+ */
2651
+ listv1alpha1RoleBinding: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2652
+ /**
2653
+ * Update v1alpha1/RoleBinding
2654
+ * @param {string} name Name of rolebinding
2655
+ * @param {RoleBinding} [roleBinding] Updated rolebinding
2656
+ * @param {*} [options] Override http request option.
2657
+ * @throws {RequiredError}
2658
+ */
2659
+ updatev1alpha1RoleBinding: (name: string, roleBinding?: RoleBinding, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2660
+ };
2661
+ /**
2662
+ * V1alpha1RoleBindingApi - functional programming interface
2663
+ * @export
2664
+ */
2665
+ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
2666
+ /**
2667
+ * Create v1alpha1/RoleBinding
2668
+ * @param {RoleBinding} [roleBinding] Fresh rolebinding
2669
+ * @param {*} [options] Override http request option.
2670
+ * @throws {RequiredError}
2671
+ */
2672
+ createv1alpha1RoleBinding(roleBinding?: RoleBinding, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBinding>>;
2673
+ /**
2674
+ * Delete v1alpha1/RoleBinding
2675
+ * @param {string} name Name of rolebinding
2676
+ * @param {*} [options] Override http request option.
2677
+ * @throws {RequiredError}
2678
+ */
2679
+ deletev1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2680
+ /**
2681
+ * Get v1alpha1/RoleBinding
2682
+ * @param {string} name Name of rolebinding
2683
+ * @param {*} [options] Override http request option.
2684
+ * @throws {RequiredError}
2685
+ */
2686
+ getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBinding>>;
2687
+ /**
2688
+ * List v1alpha1/RoleBinding
2689
+ * @param {number} [page] Page index
2690
+ * @param {number} [size] Size of one page
2691
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2692
+ * @param {*} [options] Override http request option.
2693
+ * @throws {RequiredError}
2694
+ */
2695
+ listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleBinding>>>;
2696
+ /**
2697
+ * Update v1alpha1/RoleBinding
2698
+ * @param {string} name Name of rolebinding
2699
+ * @param {RoleBinding} [roleBinding] Updated rolebinding
2700
+ * @param {*} [options] Override http request option.
2701
+ * @throws {RequiredError}
2702
+ */
2703
+ updatev1alpha1RoleBinding(name: string, roleBinding?: RoleBinding, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBinding>>;
2704
+ };
2705
+ /**
2706
+ * V1alpha1RoleBindingApi - factory interface
2707
+ * @export
2708
+ */
2709
+ declare const V1alpha1RoleBindingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2710
+ /**
2711
+ * Create v1alpha1/RoleBinding
2712
+ * @param {RoleBinding} [roleBinding] Fresh rolebinding
2713
+ * @param {*} [options] Override http request option.
2714
+ * @throws {RequiredError}
2715
+ */
2716
+ createv1alpha1RoleBinding(roleBinding?: RoleBinding, options?: any): AxiosPromise<RoleBinding>;
2717
+ /**
2718
+ * Delete v1alpha1/RoleBinding
2719
+ * @param {string} name Name of rolebinding
2720
+ * @param {*} [options] Override http request option.
2721
+ * @throws {RequiredError}
2722
+ */
2723
+ deletev1alpha1RoleBinding(name: string, options?: any): AxiosPromise<void>;
2724
+ /**
2725
+ * Get v1alpha1/RoleBinding
2726
+ * @param {string} name Name of rolebinding
2727
+ * @param {*} [options] Override http request option.
2728
+ * @throws {RequiredError}
2729
+ */
2730
+ getv1alpha1RoleBinding(name: string, options?: any): AxiosPromise<RoleBinding>;
2731
+ /**
2732
+ * List v1alpha1/RoleBinding
2733
+ * @param {number} [page] Page index
2734
+ * @param {number} [size] Size of one page
2735
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2736
+ * @param {*} [options] Override http request option.
2737
+ * @throws {RequiredError}
2738
+ */
2739
+ listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<RoleBinding>>;
2740
+ /**
2741
+ * Update v1alpha1/RoleBinding
2742
+ * @param {string} name Name of rolebinding
2743
+ * @param {RoleBinding} [roleBinding] Updated rolebinding
2744
+ * @param {*} [options] Override http request option.
2745
+ * @throws {RequiredError}
2746
+ */
2747
+ updatev1alpha1RoleBinding(name: string, roleBinding?: RoleBinding, options?: any): AxiosPromise<RoleBinding>;
2748
+ };
2749
+ /**
2750
+ * V1alpha1RoleBindingApi - object-oriented interface
2751
+ * @export
2752
+ * @class V1alpha1RoleBindingApi
2753
+ * @extends {BaseAPI}
2754
+ */
2755
+ declare class V1alpha1RoleBindingApi extends BaseAPI {
2756
+ /**
2757
+ * Create v1alpha1/RoleBinding
2758
+ * @param {RoleBinding} [roleBinding] Fresh rolebinding
2759
+ * @param {*} [options] Override http request option.
2760
+ * @throws {RequiredError}
2761
+ * @memberof V1alpha1RoleBindingApi
2762
+ */
2763
+ createv1alpha1RoleBinding(roleBinding?: RoleBinding, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
2764
+ /**
2765
+ * Delete v1alpha1/RoleBinding
2766
+ * @param {string} name Name of rolebinding
2767
+ * @param {*} [options] Override http request option.
2768
+ * @throws {RequiredError}
2769
+ * @memberof V1alpha1RoleBindingApi
2770
+ */
2771
+ deletev1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
2772
+ /**
2773
+ * Get v1alpha1/RoleBinding
2774
+ * @param {string} name Name of rolebinding
2775
+ * @param {*} [options] Override http request option.
2776
+ * @throws {RequiredError}
2777
+ * @memberof V1alpha1RoleBindingApi
2778
+ */
2779
+ getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
2780
+ /**
2781
+ * List v1alpha1/RoleBinding
2782
+ * @param {number} [page] Page index
2783
+ * @param {number} [size] Size of one page
2784
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2785
+ * @param {*} [options] Override http request option.
2786
+ * @throws {RequiredError}
2787
+ * @memberof V1alpha1RoleBindingApi
2788
+ */
2789
+ listv1alpha1RoleBinding(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding[], any>>;
2790
+ /**
2791
+ * Update v1alpha1/RoleBinding
2792
+ * @param {string} name Name of rolebinding
2793
+ * @param {RoleBinding} [roleBinding] Updated rolebinding
2794
+ * @param {*} [options] Override http request option.
2795
+ * @throws {RequiredError}
2796
+ * @memberof V1alpha1RoleBindingApi
2797
+ */
2798
+ updatev1alpha1RoleBinding(name: string, roleBinding?: RoleBinding, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
2799
+ }
2800
+ /**
2801
+ * V1alpha1SettingApi - axios parameter creator
2802
+ * @export
2803
+ */
2804
+ declare const V1alpha1SettingApiAxiosParamCreator: (configuration?: Configuration) => {
2805
+ /**
2806
+ * Create v1alpha1/Setting
2807
+ * @param {Setting} [setting] Fresh setting
2808
+ * @param {*} [options] Override http request option.
2809
+ * @throws {RequiredError}
2810
+ */
2811
+ createv1alpha1Setting: (setting?: Setting, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2812
+ /**
2813
+ * Delete v1alpha1/Setting
2814
+ * @param {string} name Name of setting
2815
+ * @param {*} [options] Override http request option.
2816
+ * @throws {RequiredError}
2817
+ */
2818
+ deletev1alpha1Setting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2819
+ /**
2820
+ * Get v1alpha1/Setting
2821
+ * @param {string} name Name of setting
2822
+ * @param {*} [options] Override http request option.
2823
+ * @throws {RequiredError}
2824
+ */
2825
+ getv1alpha1Setting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2826
+ /**
2827
+ * List v1alpha1/Setting
2828
+ * @param {number} [page] Page index
2829
+ * @param {number} [size] Size of one page
2830
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2831
+ * @param {*} [options] Override http request option.
2832
+ * @throws {RequiredError}
2833
+ */
2834
+ listv1alpha1Setting: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2835
+ /**
2836
+ * Update v1alpha1/Setting
2837
+ * @param {string} name Name of setting
2838
+ * @param {Setting} [setting] Updated setting
2839
+ * @param {*} [options] Override http request option.
2840
+ * @throws {RequiredError}
2841
+ */
2842
+ updatev1alpha1Setting: (name: string, setting?: Setting, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2843
+ };
2844
+ /**
2845
+ * V1alpha1SettingApi - functional programming interface
2846
+ * @export
2847
+ */
2848
+ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
2849
+ /**
2850
+ * Create v1alpha1/Setting
2851
+ * @param {Setting} [setting] Fresh setting
2852
+ * @param {*} [options] Override http request option.
2853
+ * @throws {RequiredError}
2854
+ */
2855
+ createv1alpha1Setting(setting?: Setting, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
2856
+ /**
2857
+ * Delete v1alpha1/Setting
2858
+ * @param {string} name Name of setting
2859
+ * @param {*} [options] Override http request option.
2860
+ * @throws {RequiredError}
2861
+ */
2862
+ deletev1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2863
+ /**
2864
+ * Get v1alpha1/Setting
2865
+ * @param {string} name Name of setting
2866
+ * @param {*} [options] Override http request option.
2867
+ * @throws {RequiredError}
2868
+ */
2869
+ getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
2870
+ /**
2871
+ * List v1alpha1/Setting
2872
+ * @param {number} [page] Page index
2873
+ * @param {number} [size] Size of one page
2874
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2875
+ * @param {*} [options] Override http request option.
2876
+ * @throws {RequiredError}
2877
+ */
2878
+ listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Setting>>>;
2879
+ /**
2880
+ * Update v1alpha1/Setting
2881
+ * @param {string} name Name of setting
2882
+ * @param {Setting} [setting] Updated setting
2883
+ * @param {*} [options] Override http request option.
2884
+ * @throws {RequiredError}
2885
+ */
2886
+ updatev1alpha1Setting(name: string, setting?: Setting, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
2887
+ };
2888
+ /**
2889
+ * V1alpha1SettingApi - factory interface
2890
+ * @export
2891
+ */
2892
+ declare const V1alpha1SettingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2893
+ /**
2894
+ * Create v1alpha1/Setting
2895
+ * @param {Setting} [setting] Fresh setting
2896
+ * @param {*} [options] Override http request option.
2897
+ * @throws {RequiredError}
2898
+ */
2899
+ createv1alpha1Setting(setting?: Setting, options?: any): AxiosPromise<Setting>;
2900
+ /**
2901
+ * Delete v1alpha1/Setting
2902
+ * @param {string} name Name of setting
2903
+ * @param {*} [options] Override http request option.
2904
+ * @throws {RequiredError}
2905
+ */
2906
+ deletev1alpha1Setting(name: string, options?: any): AxiosPromise<void>;
2907
+ /**
2908
+ * Get v1alpha1/Setting
2909
+ * @param {string} name Name of setting
2910
+ * @param {*} [options] Override http request option.
2911
+ * @throws {RequiredError}
2912
+ */
2913
+ getv1alpha1Setting(name: string, options?: any): AxiosPromise<Setting>;
2914
+ /**
2915
+ * List v1alpha1/Setting
2916
+ * @param {number} [page] Page index
2917
+ * @param {number} [size] Size of one page
2918
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2919
+ * @param {*} [options] Override http request option.
2920
+ * @throws {RequiredError}
2921
+ */
2922
+ listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<Setting>>;
2923
+ /**
2924
+ * Update v1alpha1/Setting
2925
+ * @param {string} name Name of setting
2926
+ * @param {Setting} [setting] Updated setting
2927
+ * @param {*} [options] Override http request option.
2928
+ * @throws {RequiredError}
2929
+ */
2930
+ updatev1alpha1Setting(name: string, setting?: Setting, options?: any): AxiosPromise<Setting>;
2931
+ };
2932
+ /**
2933
+ * V1alpha1SettingApi - object-oriented interface
2934
+ * @export
2935
+ * @class V1alpha1SettingApi
2936
+ * @extends {BaseAPI}
2937
+ */
2938
+ declare class V1alpha1SettingApi extends BaseAPI {
2939
+ /**
2940
+ * Create v1alpha1/Setting
2941
+ * @param {Setting} [setting] Fresh setting
2942
+ * @param {*} [options] Override http request option.
2943
+ * @throws {RequiredError}
2944
+ * @memberof V1alpha1SettingApi
2945
+ */
2946
+ createv1alpha1Setting(setting?: Setting, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
2947
+ /**
2948
+ * Delete v1alpha1/Setting
2949
+ * @param {string} name Name of setting
2950
+ * @param {*} [options] Override http request option.
2951
+ * @throws {RequiredError}
2952
+ * @memberof V1alpha1SettingApi
2953
+ */
2954
+ deletev1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
2955
+ /**
2956
+ * Get v1alpha1/Setting
2957
+ * @param {string} name Name of setting
2958
+ * @param {*} [options] Override http request option.
2959
+ * @throws {RequiredError}
2960
+ * @memberof V1alpha1SettingApi
2961
+ */
2962
+ getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
2963
+ /**
2964
+ * List v1alpha1/Setting
2965
+ * @param {number} [page] Page index
2966
+ * @param {number} [size] Size of one page
2967
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
2968
+ * @param {*} [options] Override http request option.
2969
+ * @throws {RequiredError}
2970
+ * @memberof V1alpha1SettingApi
2971
+ */
2972
+ listv1alpha1Setting(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting[], any>>;
2973
+ /**
2974
+ * Update v1alpha1/Setting
2975
+ * @param {string} name Name of setting
2976
+ * @param {Setting} [setting] Updated setting
2977
+ * @param {*} [options] Override http request option.
2978
+ * @throws {RequiredError}
2979
+ * @memberof V1alpha1SettingApi
2980
+ */
2981
+ updatev1alpha1Setting(name: string, setting?: Setting, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
2982
+ }
2983
+ /**
2984
+ * V1alpha1UserApi - axios parameter creator
2985
+ * @export
2986
+ */
2987
+ declare const V1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
2988
+ /**
2989
+ * Create v1alpha1/User
2990
+ * @param {User} [user] Fresh user
2991
+ * @param {*} [options] Override http request option.
2992
+ * @throws {RequiredError}
2993
+ */
2994
+ createv1alpha1User: (user?: User, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2995
+ /**
2996
+ * Delete v1alpha1/User
2997
+ * @param {string} name Name of user
2998
+ * @param {*} [options] Override http request option.
2999
+ * @throws {RequiredError}
3000
+ */
3001
+ deletev1alpha1User: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3002
+ /**
3003
+ * Get v1alpha1/User
3004
+ * @param {string} name Name of user
3005
+ * @param {*} [options] Override http request option.
3006
+ * @throws {RequiredError}
3007
+ */
3008
+ getv1alpha1User: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3009
+ /**
3010
+ * List v1alpha1/User
3011
+ * @param {number} [page] Page index
3012
+ * @param {number} [size] Size of one page
3013
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3014
+ * @param {*} [options] Override http request option.
3015
+ * @throws {RequiredError}
3016
+ */
3017
+ listv1alpha1User: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3018
+ /**
3019
+ * Update v1alpha1/User
3020
+ * @param {string} name Name of user
3021
+ * @param {User} [user] Updated user
3022
+ * @param {*} [options] Override http request option.
3023
+ * @throws {RequiredError}
3024
+ */
3025
+ updatev1alpha1User: (name: string, user?: User, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3026
+ };
3027
+ /**
3028
+ * V1alpha1UserApi - functional programming interface
3029
+ * @export
3030
+ */
3031
+ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
3032
+ /**
3033
+ * Create v1alpha1/User
3034
+ * @param {User} [user] Fresh user
3035
+ * @param {*} [options] Override http request option.
3036
+ * @throws {RequiredError}
3037
+ */
3038
+ createv1alpha1User(user?: User, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
3039
+ /**
3040
+ * Delete v1alpha1/User
3041
+ * @param {string} name Name of user
3042
+ * @param {*} [options] Override http request option.
3043
+ * @throws {RequiredError}
3044
+ */
3045
+ deletev1alpha1User(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3046
+ /**
3047
+ * Get v1alpha1/User
3048
+ * @param {string} name Name of user
3049
+ * @param {*} [options] Override http request option.
3050
+ * @throws {RequiredError}
3051
+ */
3052
+ getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
3053
+ /**
3054
+ * List v1alpha1/User
3055
+ * @param {number} [page] Page index
3056
+ * @param {number} [size] Size of one page
3057
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3058
+ * @param {*} [options] Override http request option.
3059
+ * @throws {RequiredError}
3060
+ */
3061
+ listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<User>>>;
3062
+ /**
3063
+ * Update v1alpha1/User
3064
+ * @param {string} name Name of user
3065
+ * @param {User} [user] Updated user
3066
+ * @param {*} [options] Override http request option.
3067
+ * @throws {RequiredError}
3068
+ */
3069
+ updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
3070
+ };
3071
+ /**
3072
+ * V1alpha1UserApi - factory interface
3073
+ * @export
3074
+ */
3075
+ declare const V1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3076
+ /**
3077
+ * Create v1alpha1/User
3078
+ * @param {User} [user] Fresh user
3079
+ * @param {*} [options] Override http request option.
3080
+ * @throws {RequiredError}
3081
+ */
3082
+ createv1alpha1User(user?: User, options?: any): AxiosPromise<User>;
3083
+ /**
3084
+ * Delete v1alpha1/User
3085
+ * @param {string} name Name of user
3086
+ * @param {*} [options] Override http request option.
3087
+ * @throws {RequiredError}
3088
+ */
3089
+ deletev1alpha1User(name: string, options?: any): AxiosPromise<void>;
3090
+ /**
3091
+ * Get v1alpha1/User
3092
+ * @param {string} name Name of user
3093
+ * @param {*} [options] Override http request option.
3094
+ * @throws {RequiredError}
3095
+ */
3096
+ getv1alpha1User(name: string, options?: any): AxiosPromise<User>;
3097
+ /**
3098
+ * List v1alpha1/User
3099
+ * @param {number} [page] Page index
3100
+ * @param {number} [size] Size of one page
3101
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3102
+ * @param {*} [options] Override http request option.
3103
+ * @throws {RequiredError}
3104
+ */
3105
+ listv1alpha1User(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<Array<User>>;
3106
+ /**
3107
+ * Update v1alpha1/User
3108
+ * @param {string} name Name of user
3109
+ * @param {User} [user] Updated user
3110
+ * @param {*} [options] Override http request option.
3111
+ * @throws {RequiredError}
3112
+ */
3113
+ updatev1alpha1User(name: string, user?: User, options?: any): AxiosPromise<User>;
3114
+ };
3115
+ /**
3116
+ * V1alpha1UserApi - object-oriented interface
3117
+ * @export
3118
+ * @class V1alpha1UserApi
3119
+ * @extends {BaseAPI}
3120
+ */
3121
+ declare class V1alpha1UserApi extends BaseAPI {
3122
+ /**
3123
+ * Create v1alpha1/User
3124
+ * @param {User} [user] Fresh user
3125
+ * @param {*} [options] Override http request option.
3126
+ * @throws {RequiredError}
3127
+ * @memberof V1alpha1UserApi
3128
+ */
3129
+ createv1alpha1User(user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
3130
+ /**
3131
+ * Delete v1alpha1/User
3132
+ * @param {string} name Name of user
3133
+ * @param {*} [options] Override http request option.
3134
+ * @throws {RequiredError}
3135
+ * @memberof V1alpha1UserApi
3136
+ */
3137
+ deletev1alpha1User(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
3138
+ /**
3139
+ * Get v1alpha1/User
3140
+ * @param {string} name Name of user
3141
+ * @param {*} [options] Override http request option.
3142
+ * @throws {RequiredError}
3143
+ * @memberof V1alpha1UserApi
3144
+ */
3145
+ getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
3146
+ /**
3147
+ * List v1alpha1/User
3148
+ * @param {number} [page] Page index
3149
+ * @param {number} [size] Size of one page
3150
+ * @param {string} [sort] Sort by some fields. Like metadata.name,desc
3151
+ * @param {*} [options] Override http request option.
3152
+ * @throws {RequiredError}
3153
+ * @memberof V1alpha1UserApi
3154
+ */
3155
+ listv1alpha1User(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User[], any>>;
3156
+ /**
3157
+ * Update v1alpha1/User
3158
+ * @param {string} name Name of user
3159
+ * @param {User} [user] Updated user
3160
+ * @param {*} [options] Override http request option.
3161
+ * @throws {RequiredError}
3162
+ * @memberof V1alpha1UserApi
3163
+ */
3164
+ updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
3165
+ }
3166
+
3167
+ export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ConfigMap, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1PostApi, CoreHaloRunV1alpha1PostApiAxiosParamCreator, CoreHaloRunV1alpha1PostApiFactory, CoreHaloRunV1alpha1PostApiFp, FileReverseProxyProvider, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, Post, PostSpec, ReverseProxy, ReverseProxyRule, Role, RoleBinding, RoleRef, Setting, SettingSpec, Subject, User, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };