@halo-dev/api-client 2.7.0 → 2.8.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.
- package/dist/index.cjs +863 -120
- package/dist/index.d.ts +1024 -73
- package/dist/index.mjs +855 -121
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -865,6 +865,229 @@ interface Author {
|
|
|
865
865
|
website?: string;
|
|
866
866
|
}
|
|
867
867
|
|
|
868
|
+
/**
|
|
869
|
+
* Halo Next API
|
|
870
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
871
|
+
*
|
|
872
|
+
* The version of the OpenAPI document: 2.0.0
|
|
873
|
+
*
|
|
874
|
+
*
|
|
875
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
876
|
+
* https://openapi-generator.tech
|
|
877
|
+
* Do not edit the class manually.
|
|
878
|
+
*/
|
|
879
|
+
/**
|
|
880
|
+
*
|
|
881
|
+
* @export
|
|
882
|
+
* @interface BackupSpec
|
|
883
|
+
*/
|
|
884
|
+
interface BackupSpec {
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @type {string}
|
|
888
|
+
* @memberof BackupSpec
|
|
889
|
+
*/
|
|
890
|
+
expiresAt?: string;
|
|
891
|
+
/**
|
|
892
|
+
* Backup file format. Currently, only zip format is supported.
|
|
893
|
+
* @type {string}
|
|
894
|
+
* @memberof BackupSpec
|
|
895
|
+
*/
|
|
896
|
+
format?: string;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
/**
|
|
900
|
+
* Halo Next API
|
|
901
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
902
|
+
*
|
|
903
|
+
* The version of the OpenAPI document: 2.0.0
|
|
904
|
+
*
|
|
905
|
+
*
|
|
906
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
907
|
+
* https://openapi-generator.tech
|
|
908
|
+
* Do not edit the class manually.
|
|
909
|
+
*/
|
|
910
|
+
/**
|
|
911
|
+
*
|
|
912
|
+
* @export
|
|
913
|
+
* @interface BackupStatus
|
|
914
|
+
*/
|
|
915
|
+
interface BackupStatus {
|
|
916
|
+
/**
|
|
917
|
+
*
|
|
918
|
+
* @type {string}
|
|
919
|
+
* @memberof BackupStatus
|
|
920
|
+
*/
|
|
921
|
+
completionTimestamp?: string;
|
|
922
|
+
/**
|
|
923
|
+
*
|
|
924
|
+
* @type {string}
|
|
925
|
+
* @memberof BackupStatus
|
|
926
|
+
*/
|
|
927
|
+
failureMessage?: string;
|
|
928
|
+
/**
|
|
929
|
+
*
|
|
930
|
+
* @type {string}
|
|
931
|
+
* @memberof BackupStatus
|
|
932
|
+
*/
|
|
933
|
+
failureReason?: string;
|
|
934
|
+
/**
|
|
935
|
+
*
|
|
936
|
+
* @type {string}
|
|
937
|
+
* @memberof BackupStatus
|
|
938
|
+
*/
|
|
939
|
+
filename?: string;
|
|
940
|
+
/**
|
|
941
|
+
*
|
|
942
|
+
* @type {string}
|
|
943
|
+
* @memberof BackupStatus
|
|
944
|
+
*/
|
|
945
|
+
phase?: BackupStatusPhaseEnum;
|
|
946
|
+
/**
|
|
947
|
+
*
|
|
948
|
+
* @type {number}
|
|
949
|
+
* @memberof BackupStatus
|
|
950
|
+
*/
|
|
951
|
+
size?: number;
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @type {string}
|
|
955
|
+
* @memberof BackupStatus
|
|
956
|
+
*/
|
|
957
|
+
startTimestamp?: string;
|
|
958
|
+
}
|
|
959
|
+
declare const BackupStatusPhaseEnum: {
|
|
960
|
+
readonly Pending: "PENDING";
|
|
961
|
+
readonly Running: "RUNNING";
|
|
962
|
+
readonly Succeeded: "SUCCEEDED";
|
|
963
|
+
readonly Failed: "FAILED";
|
|
964
|
+
};
|
|
965
|
+
type BackupStatusPhaseEnum = (typeof BackupStatusPhaseEnum)[keyof typeof BackupStatusPhaseEnum];
|
|
966
|
+
|
|
967
|
+
/**
|
|
968
|
+
* Halo Next API
|
|
969
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
970
|
+
*
|
|
971
|
+
* The version of the OpenAPI document: 2.0.0
|
|
972
|
+
*
|
|
973
|
+
*
|
|
974
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
975
|
+
* https://openapi-generator.tech
|
|
976
|
+
* Do not edit the class manually.
|
|
977
|
+
*/
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
*
|
|
981
|
+
* @export
|
|
982
|
+
* @interface Backup
|
|
983
|
+
*/
|
|
984
|
+
interface Backup {
|
|
985
|
+
/**
|
|
986
|
+
*
|
|
987
|
+
* @type {string}
|
|
988
|
+
* @memberof Backup
|
|
989
|
+
*/
|
|
990
|
+
apiVersion: string;
|
|
991
|
+
/**
|
|
992
|
+
*
|
|
993
|
+
* @type {string}
|
|
994
|
+
* @memberof Backup
|
|
995
|
+
*/
|
|
996
|
+
kind: string;
|
|
997
|
+
/**
|
|
998
|
+
*
|
|
999
|
+
* @type {Metadata}
|
|
1000
|
+
* @memberof Backup
|
|
1001
|
+
*/
|
|
1002
|
+
metadata: Metadata;
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @type {BackupSpec}
|
|
1006
|
+
* @memberof Backup
|
|
1007
|
+
*/
|
|
1008
|
+
spec?: BackupSpec;
|
|
1009
|
+
/**
|
|
1010
|
+
*
|
|
1011
|
+
* @type {BackupStatus}
|
|
1012
|
+
* @memberof Backup
|
|
1013
|
+
*/
|
|
1014
|
+
status?: BackupStatus;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
/**
|
|
1018
|
+
* Halo Next API
|
|
1019
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1020
|
+
*
|
|
1021
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1022
|
+
*
|
|
1023
|
+
*
|
|
1024
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1025
|
+
* https://openapi-generator.tech
|
|
1026
|
+
* Do not edit the class manually.
|
|
1027
|
+
*/
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* @export
|
|
1032
|
+
* @interface BackupList
|
|
1033
|
+
*/
|
|
1034
|
+
interface BackupList {
|
|
1035
|
+
/**
|
|
1036
|
+
* Indicates whether current page is the first page.
|
|
1037
|
+
* @type {boolean}
|
|
1038
|
+
* @memberof BackupList
|
|
1039
|
+
*/
|
|
1040
|
+
first: boolean;
|
|
1041
|
+
/**
|
|
1042
|
+
* Indicates whether current page has previous page.
|
|
1043
|
+
* @type {boolean}
|
|
1044
|
+
* @memberof BackupList
|
|
1045
|
+
*/
|
|
1046
|
+
hasNext: boolean;
|
|
1047
|
+
/**
|
|
1048
|
+
* Indicates whether current page has previous page.
|
|
1049
|
+
* @type {boolean}
|
|
1050
|
+
* @memberof BackupList
|
|
1051
|
+
*/
|
|
1052
|
+
hasPrevious: boolean;
|
|
1053
|
+
/**
|
|
1054
|
+
* A chunk of items.
|
|
1055
|
+
* @type {Array<Backup>}
|
|
1056
|
+
* @memberof BackupList
|
|
1057
|
+
*/
|
|
1058
|
+
items: Array<Backup>;
|
|
1059
|
+
/**
|
|
1060
|
+
* Indicates whether current page is the last page.
|
|
1061
|
+
* @type {boolean}
|
|
1062
|
+
* @memberof BackupList
|
|
1063
|
+
*/
|
|
1064
|
+
last: boolean;
|
|
1065
|
+
/**
|
|
1066
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1067
|
+
* @type {number}
|
|
1068
|
+
* @memberof BackupList
|
|
1069
|
+
*/
|
|
1070
|
+
page: number;
|
|
1071
|
+
/**
|
|
1072
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1073
|
+
* @type {number}
|
|
1074
|
+
* @memberof BackupList
|
|
1075
|
+
*/
|
|
1076
|
+
size: number;
|
|
1077
|
+
/**
|
|
1078
|
+
* Total elements.
|
|
1079
|
+
* @type {number}
|
|
1080
|
+
* @memberof BackupList
|
|
1081
|
+
*/
|
|
1082
|
+
total: number;
|
|
1083
|
+
/**
|
|
1084
|
+
* Indicates total pages.
|
|
1085
|
+
* @type {number}
|
|
1086
|
+
* @memberof BackupList
|
|
1087
|
+
*/
|
|
1088
|
+
totalPages: number;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
868
1091
|
/**
|
|
869
1092
|
* Halo Next API
|
|
870
1093
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -12464,6 +12687,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
12464
12687
|
* @throws {RequiredError}
|
|
12465
12688
|
*/
|
|
12466
12689
|
createUser: (createUserRequest: CreateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12690
|
+
/**
|
|
12691
|
+
* delete user avatar
|
|
12692
|
+
* @param {string} name User name
|
|
12693
|
+
* @param {*} [options] Override http request option.
|
|
12694
|
+
* @throws {RequiredError}
|
|
12695
|
+
*/
|
|
12696
|
+
deleteUserAvatar: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12467
12697
|
/**
|
|
12468
12698
|
* Get current user detail
|
|
12469
12699
|
* @param {*} [options] Override http request option.
|
|
@@ -12512,6 +12742,14 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
12512
12742
|
* @throws {RequiredError}
|
|
12513
12743
|
*/
|
|
12514
12744
|
updateCurrentUser: (user: User, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12745
|
+
/**
|
|
12746
|
+
* upload user avatar
|
|
12747
|
+
* @param {string} name User name
|
|
12748
|
+
* @param {File} file
|
|
12749
|
+
* @param {*} [options] Override http request option.
|
|
12750
|
+
* @throws {RequiredError}
|
|
12751
|
+
*/
|
|
12752
|
+
uploadUserAvatar: (name: string, file: File, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12515
12753
|
};
|
|
12516
12754
|
/**
|
|
12517
12755
|
* ApiConsoleHaloRunV1alpha1UserApi - functional programming interface
|
|
@@ -12533,6 +12771,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
12533
12771
|
* @throws {RequiredError}
|
|
12534
12772
|
*/
|
|
12535
12773
|
createUser(createUserRequest: CreateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
12774
|
+
/**
|
|
12775
|
+
* delete user avatar
|
|
12776
|
+
* @param {string} name User name
|
|
12777
|
+
* @param {*} [options] Override http request option.
|
|
12778
|
+
* @throws {RequiredError}
|
|
12779
|
+
*/
|
|
12780
|
+
deleteUserAvatar(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
12536
12781
|
/**
|
|
12537
12782
|
* Get current user detail
|
|
12538
12783
|
* @param {*} [options] Override http request option.
|
|
@@ -12581,6 +12826,14 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
12581
12826
|
* @throws {RequiredError}
|
|
12582
12827
|
*/
|
|
12583
12828
|
updateCurrentUser(user: User, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
12829
|
+
/**
|
|
12830
|
+
* upload user avatar
|
|
12831
|
+
* @param {string} name User name
|
|
12832
|
+
* @param {File} file
|
|
12833
|
+
* @param {*} [options] Override http request option.
|
|
12834
|
+
* @throws {RequiredError}
|
|
12835
|
+
*/
|
|
12836
|
+
uploadUserAvatar(name: string, file: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
12584
12837
|
};
|
|
12585
12838
|
/**
|
|
12586
12839
|
* ApiConsoleHaloRunV1alpha1UserApi - factory interface
|
|
@@ -12601,6 +12854,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
|
|
|
12601
12854
|
* @throws {RequiredError}
|
|
12602
12855
|
*/
|
|
12603
12856
|
createUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
12857
|
+
/**
|
|
12858
|
+
* delete user avatar
|
|
12859
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest} requestParameters Request parameters.
|
|
12860
|
+
* @param {*} [options] Override http request option.
|
|
12861
|
+
* @throws {RequiredError}
|
|
12862
|
+
*/
|
|
12863
|
+
deleteUserAvatar(requestParameters: ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
12604
12864
|
/**
|
|
12605
12865
|
* Get current user detail
|
|
12606
12866
|
* @param {*} [options] Override http request option.
|
|
@@ -12642,6 +12902,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
|
|
|
12642
12902
|
* @throws {RequiredError}
|
|
12643
12903
|
*/
|
|
12644
12904
|
updateCurrentUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
12905
|
+
/**
|
|
12906
|
+
* upload user avatar
|
|
12907
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest} requestParameters Request parameters.
|
|
12908
|
+
* @param {*} [options] Override http request option.
|
|
12909
|
+
* @throws {RequiredError}
|
|
12910
|
+
*/
|
|
12911
|
+
uploadUserAvatar(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
12645
12912
|
};
|
|
12646
12913
|
/**
|
|
12647
12914
|
* Request parameters for changePassword operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
@@ -12675,6 +12942,19 @@ interface ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest {
|
|
|
12675
12942
|
*/
|
|
12676
12943
|
readonly createUserRequest: CreateUserRequest;
|
|
12677
12944
|
}
|
|
12945
|
+
/**
|
|
12946
|
+
* Request parameters for deleteUserAvatar operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
12947
|
+
* @export
|
|
12948
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest
|
|
12949
|
+
*/
|
|
12950
|
+
interface ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest {
|
|
12951
|
+
/**
|
|
12952
|
+
* User name
|
|
12953
|
+
* @type {string}
|
|
12954
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatar
|
|
12955
|
+
*/
|
|
12956
|
+
readonly name: string;
|
|
12957
|
+
}
|
|
12678
12958
|
/**
|
|
12679
12959
|
* Request parameters for getPermissions operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
12680
12960
|
* @export
|
|
@@ -12782,6 +13062,25 @@ interface ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest {
|
|
|
12782
13062
|
*/
|
|
12783
13063
|
readonly user: User;
|
|
12784
13064
|
}
|
|
13065
|
+
/**
|
|
13066
|
+
* Request parameters for uploadUserAvatar operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
13067
|
+
* @export
|
|
13068
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest
|
|
13069
|
+
*/
|
|
13070
|
+
interface ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest {
|
|
13071
|
+
/**
|
|
13072
|
+
* User name
|
|
13073
|
+
* @type {string}
|
|
13074
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatar
|
|
13075
|
+
*/
|
|
13076
|
+
readonly name: string;
|
|
13077
|
+
/**
|
|
13078
|
+
*
|
|
13079
|
+
* @type {File}
|
|
13080
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatar
|
|
13081
|
+
*/
|
|
13082
|
+
readonly file: File;
|
|
13083
|
+
}
|
|
12785
13084
|
/**
|
|
12786
13085
|
* ApiConsoleHaloRunV1alpha1UserApi - object-oriented interface
|
|
12787
13086
|
* @export
|
|
@@ -12805,6 +13104,14 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
12805
13104
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
12806
13105
|
*/
|
|
12807
13106
|
createUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13107
|
+
/**
|
|
13108
|
+
* delete user avatar
|
|
13109
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest} requestParameters Request parameters.
|
|
13110
|
+
* @param {*} [options] Override http request option.
|
|
13111
|
+
* @throws {RequiredError}
|
|
13112
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
13113
|
+
*/
|
|
13114
|
+
deleteUserAvatar(requestParameters: ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
12808
13115
|
/**
|
|
12809
13116
|
* Get current user detail
|
|
12810
13117
|
* @param {*} [options] Override http request option.
|
|
@@ -12852,31 +13159,158 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
12852
13159
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
12853
13160
|
*/
|
|
12854
13161
|
updateCurrentUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13162
|
+
/**
|
|
13163
|
+
* upload user avatar
|
|
13164
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest} requestParameters Request parameters.
|
|
13165
|
+
* @param {*} [options] Override http request option.
|
|
13166
|
+
* @throws {RequiredError}
|
|
13167
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
13168
|
+
*/
|
|
13169
|
+
uploadUserAvatar(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
12855
13170
|
}
|
|
12856
13171
|
|
|
12857
13172
|
/**
|
|
12858
|
-
*
|
|
13173
|
+
* ApiConsoleMigrationHaloRunV1alpha1MigrationApi - axios parameter creator
|
|
12859
13174
|
* @export
|
|
12860
13175
|
*/
|
|
12861
|
-
declare const
|
|
13176
|
+
declare const ApiConsoleMigrationHaloRunV1alpha1MigrationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12862
13177
|
/**
|
|
12863
|
-
*
|
|
12864
|
-
* @param {
|
|
12865
|
-
* @param {
|
|
12866
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
12867
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12868
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
13178
|
+
*
|
|
13179
|
+
* @param {string} name Backup name.
|
|
13180
|
+
* @param {string} filename Backup filename.
|
|
12869
13181
|
* @param {*} [options] Override http request option.
|
|
12870
13182
|
* @throws {RequiredError}
|
|
12871
13183
|
*/
|
|
12872
|
-
|
|
13184
|
+
downloadBackups: (name: string, filename: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12873
13185
|
/**
|
|
12874
|
-
*
|
|
12875
|
-
* @param {
|
|
13186
|
+
*
|
|
13187
|
+
* @param {File} file
|
|
12876
13188
|
* @param {*} [options] Override http request option.
|
|
12877
13189
|
* @throws {RequiredError}
|
|
12878
13190
|
*/
|
|
12879
|
-
|
|
13191
|
+
restoreBackup: (file: File, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13192
|
+
};
|
|
13193
|
+
/**
|
|
13194
|
+
* ApiConsoleMigrationHaloRunV1alpha1MigrationApi - functional programming interface
|
|
13195
|
+
* @export
|
|
13196
|
+
*/
|
|
13197
|
+
declare const ApiConsoleMigrationHaloRunV1alpha1MigrationApiFp: (configuration?: Configuration) => {
|
|
13198
|
+
/**
|
|
13199
|
+
*
|
|
13200
|
+
* @param {string} name Backup name.
|
|
13201
|
+
* @param {string} filename Backup filename.
|
|
13202
|
+
* @param {*} [options] Override http request option.
|
|
13203
|
+
* @throws {RequiredError}
|
|
13204
|
+
*/
|
|
13205
|
+
downloadBackups(name: string, filename: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13206
|
+
/**
|
|
13207
|
+
*
|
|
13208
|
+
* @param {File} file
|
|
13209
|
+
* @param {*} [options] Override http request option.
|
|
13210
|
+
* @throws {RequiredError}
|
|
13211
|
+
*/
|
|
13212
|
+
restoreBackup(file: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13213
|
+
};
|
|
13214
|
+
/**
|
|
13215
|
+
* ApiConsoleMigrationHaloRunV1alpha1MigrationApi - factory interface
|
|
13216
|
+
* @export
|
|
13217
|
+
*/
|
|
13218
|
+
declare const ApiConsoleMigrationHaloRunV1alpha1MigrationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13219
|
+
/**
|
|
13220
|
+
*
|
|
13221
|
+
* @param {ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest} requestParameters Request parameters.
|
|
13222
|
+
* @param {*} [options] Override http request option.
|
|
13223
|
+
* @throws {RequiredError}
|
|
13224
|
+
*/
|
|
13225
|
+
downloadBackups(requestParameters: ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13226
|
+
/**
|
|
13227
|
+
*
|
|
13228
|
+
* @param {ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest} requestParameters Request parameters.
|
|
13229
|
+
* @param {*} [options] Override http request option.
|
|
13230
|
+
* @throws {RequiredError}
|
|
13231
|
+
*/
|
|
13232
|
+
restoreBackup(requestParameters: ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13233
|
+
};
|
|
13234
|
+
/**
|
|
13235
|
+
* Request parameters for downloadBackups operation in ApiConsoleMigrationHaloRunV1alpha1MigrationApi.
|
|
13236
|
+
* @export
|
|
13237
|
+
* @interface ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest
|
|
13238
|
+
*/
|
|
13239
|
+
interface ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest {
|
|
13240
|
+
/**
|
|
13241
|
+
* Backup name.
|
|
13242
|
+
* @type {string}
|
|
13243
|
+
* @memberof ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackups
|
|
13244
|
+
*/
|
|
13245
|
+
readonly name: string;
|
|
13246
|
+
/**
|
|
13247
|
+
* Backup filename.
|
|
13248
|
+
* @type {string}
|
|
13249
|
+
* @memberof ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackups
|
|
13250
|
+
*/
|
|
13251
|
+
readonly filename: string;
|
|
13252
|
+
}
|
|
13253
|
+
/**
|
|
13254
|
+
* Request parameters for restoreBackup operation in ApiConsoleMigrationHaloRunV1alpha1MigrationApi.
|
|
13255
|
+
* @export
|
|
13256
|
+
* @interface ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest
|
|
13257
|
+
*/
|
|
13258
|
+
interface ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest {
|
|
13259
|
+
/**
|
|
13260
|
+
*
|
|
13261
|
+
* @type {File}
|
|
13262
|
+
* @memberof ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackup
|
|
13263
|
+
*/
|
|
13264
|
+
readonly file: File;
|
|
13265
|
+
}
|
|
13266
|
+
/**
|
|
13267
|
+
* ApiConsoleMigrationHaloRunV1alpha1MigrationApi - object-oriented interface
|
|
13268
|
+
* @export
|
|
13269
|
+
* @class ApiConsoleMigrationHaloRunV1alpha1MigrationApi
|
|
13270
|
+
* @extends {BaseAPI}
|
|
13271
|
+
*/
|
|
13272
|
+
declare class ApiConsoleMigrationHaloRunV1alpha1MigrationApi extends BaseAPI {
|
|
13273
|
+
/**
|
|
13274
|
+
*
|
|
13275
|
+
* @param {ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest} requestParameters Request parameters.
|
|
13276
|
+
* @param {*} [options] Override http request option.
|
|
13277
|
+
* @throws {RequiredError}
|
|
13278
|
+
* @memberof ApiConsoleMigrationHaloRunV1alpha1MigrationApi
|
|
13279
|
+
*/
|
|
13280
|
+
downloadBackups(requestParameters: ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
13281
|
+
/**
|
|
13282
|
+
*
|
|
13283
|
+
* @param {ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest} requestParameters Request parameters.
|
|
13284
|
+
* @param {*} [options] Override http request option.
|
|
13285
|
+
* @throws {RequiredError}
|
|
13286
|
+
* @memberof ApiConsoleMigrationHaloRunV1alpha1MigrationApi
|
|
13287
|
+
*/
|
|
13288
|
+
restoreBackup(requestParameters: ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
13289
|
+
}
|
|
13290
|
+
|
|
13291
|
+
/**
|
|
13292
|
+
* ApiContentHaloRunV1alpha1CategoryApi - axios parameter creator
|
|
13293
|
+
* @export
|
|
13294
|
+
*/
|
|
13295
|
+
declare const ApiContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13296
|
+
/**
|
|
13297
|
+
* Lists categories.
|
|
13298
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
13299
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
13300
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
13301
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
13302
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
13303
|
+
* @param {*} [options] Override http request option.
|
|
13304
|
+
* @throws {RequiredError}
|
|
13305
|
+
*/
|
|
13306
|
+
queryCategories: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13307
|
+
/**
|
|
13308
|
+
* Gets category by name.
|
|
13309
|
+
* @param {string} name Category name
|
|
13310
|
+
* @param {*} [options] Override http request option.
|
|
13311
|
+
* @throws {RequiredError}
|
|
13312
|
+
*/
|
|
13313
|
+
queryCategoryByName: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12880
13314
|
/**
|
|
12881
13315
|
* Lists posts by category name.
|
|
12882
13316
|
* @param {string} name Category name
|
|
@@ -14503,10 +14937,11 @@ declare const AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator: (configuratio
|
|
|
14503
14937
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14504
14938
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
14505
14939
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14940
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
14506
14941
|
* @param {*} [options] Override http request option.
|
|
14507
14942
|
* @throws {RequiredError}
|
|
14508
14943
|
*/
|
|
14509
|
-
listauthHaloRunV1alpha1AuthProvider: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14944
|
+
listauthHaloRunV1alpha1AuthProvider: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14510
14945
|
/**
|
|
14511
14946
|
* Update auth.halo.run/v1alpha1/AuthProvider
|
|
14512
14947
|
* @param {string} name Name of authprovider
|
|
@@ -14548,10 +14983,11 @@ declare const AuthHaloRunV1alpha1AuthProviderApiFp: (configuration?: Configurati
|
|
|
14548
14983
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14549
14984
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
14550
14985
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14986
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
14551
14987
|
* @param {*} [options] Override http request option.
|
|
14552
14988
|
* @throws {RequiredError}
|
|
14553
14989
|
*/
|
|
14554
|
-
listauthHaloRunV1alpha1AuthProvider(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthProviderList>>;
|
|
14990
|
+
listauthHaloRunV1alpha1AuthProvider(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthProviderList>>;
|
|
14555
14991
|
/**
|
|
14556
14992
|
* Update auth.halo.run/v1alpha1/AuthProvider
|
|
14557
14993
|
* @param {string} name Name of authprovider
|
|
@@ -14671,6 +15107,12 @@ interface AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProviderR
|
|
|
14671
15107
|
* @memberof AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProvider
|
|
14672
15108
|
*/
|
|
14673
15109
|
readonly size?: number;
|
|
15110
|
+
/**
|
|
15111
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15112
|
+
* @type {Array<string>}
|
|
15113
|
+
* @memberof AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProvider
|
|
15114
|
+
*/
|
|
15115
|
+
readonly sort?: Array<string>;
|
|
14674
15116
|
}
|
|
14675
15117
|
/**
|
|
14676
15118
|
* Request parameters for updateauthHaloRunV1alpha1AuthProvider operation in AuthHaloRunV1alpha1AuthProviderApi.
|
|
@@ -14772,10 +15214,11 @@ declare const AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator: (configurat
|
|
|
14772
15214
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14773
15215
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
14774
15216
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15217
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
14775
15218
|
* @param {*} [options] Override http request option.
|
|
14776
15219
|
* @throws {RequiredError}
|
|
14777
15220
|
*/
|
|
14778
|
-
listauthHaloRunV1alpha1UserConnection: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15221
|
+
listauthHaloRunV1alpha1UserConnection: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14779
15222
|
/**
|
|
14780
15223
|
* Update auth.halo.run/v1alpha1/UserConnection
|
|
14781
15224
|
* @param {string} name Name of userconnection
|
|
@@ -14817,10 +15260,11 @@ declare const AuthHaloRunV1alpha1UserConnectionApiFp: (configuration?: Configura
|
|
|
14817
15260
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14818
15261
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
14819
15262
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15263
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
14820
15264
|
* @param {*} [options] Override http request option.
|
|
14821
15265
|
* @throws {RequiredError}
|
|
14822
15266
|
*/
|
|
14823
|
-
listauthHaloRunV1alpha1UserConnection(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserConnectionList>>;
|
|
15267
|
+
listauthHaloRunV1alpha1UserConnection(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserConnectionList>>;
|
|
14824
15268
|
/**
|
|
14825
15269
|
* Update auth.halo.run/v1alpha1/UserConnection
|
|
14826
15270
|
* @param {string} name Name of userconnection
|
|
@@ -14940,6 +15384,12 @@ interface AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnect
|
|
|
14940
15384
|
* @memberof AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnection
|
|
14941
15385
|
*/
|
|
14942
15386
|
readonly size?: number;
|
|
15387
|
+
/**
|
|
15388
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15389
|
+
* @type {Array<string>}
|
|
15390
|
+
* @memberof AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnection
|
|
15391
|
+
*/
|
|
15392
|
+
readonly sort?: Array<string>;
|
|
14943
15393
|
}
|
|
14944
15394
|
/**
|
|
14945
15395
|
* Request parameters for updateauthHaloRunV1alpha1UserConnection operation in AuthHaloRunV1alpha1UserConnectionApi.
|
|
@@ -15041,10 +15491,11 @@ declare const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration
|
|
|
15041
15491
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15042
15492
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15043
15493
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15494
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15044
15495
|
* @param {*} [options] Override http request option.
|
|
15045
15496
|
* @throws {RequiredError}
|
|
15046
15497
|
*/
|
|
15047
|
-
listcontentHaloRunV1alpha1Category: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15498
|
+
listcontentHaloRunV1alpha1Category: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15048
15499
|
/**
|
|
15049
15500
|
* Update content.halo.run/v1alpha1/Category
|
|
15050
15501
|
* @param {string} name Name of category
|
|
@@ -15086,10 +15537,11 @@ declare const ContentHaloRunV1alpha1CategoryApiFp: (configuration?: Configuratio
|
|
|
15086
15537
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15087
15538
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15088
15539
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15540
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15089
15541
|
* @param {*} [options] Override http request option.
|
|
15090
15542
|
* @throws {RequiredError}
|
|
15091
15543
|
*/
|
|
15092
|
-
listcontentHaloRunV1alpha1Category(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CategoryList>>;
|
|
15544
|
+
listcontentHaloRunV1alpha1Category(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CategoryList>>;
|
|
15093
15545
|
/**
|
|
15094
15546
|
* Update content.halo.run/v1alpha1/Category
|
|
15095
15547
|
* @param {string} name Name of category
|
|
@@ -15209,6 +15661,12 @@ interface ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryReq
|
|
|
15209
15661
|
* @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
|
|
15210
15662
|
*/
|
|
15211
15663
|
readonly size?: number;
|
|
15664
|
+
/**
|
|
15665
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15666
|
+
* @type {Array<string>}
|
|
15667
|
+
* @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
|
|
15668
|
+
*/
|
|
15669
|
+
readonly sort?: Array<string>;
|
|
15212
15670
|
}
|
|
15213
15671
|
/**
|
|
15214
15672
|
* Request parameters for updatecontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
|
|
@@ -15310,10 +15768,11 @@ declare const ContentHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?
|
|
|
15310
15768
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15311
15769
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15312
15770
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15771
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15313
15772
|
* @param {*} [options] Override http request option.
|
|
15314
15773
|
* @throws {RequiredError}
|
|
15315
15774
|
*/
|
|
15316
|
-
listcontentHaloRunV1alpha1Comment: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15775
|
+
listcontentHaloRunV1alpha1Comment: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15317
15776
|
/**
|
|
15318
15777
|
* Update content.halo.run/v1alpha1/Comment
|
|
15319
15778
|
* @param {string} name Name of comment
|
|
@@ -15355,10 +15814,11 @@ declare const ContentHaloRunV1alpha1CommentApiFp: (configuration?: Configuration
|
|
|
15355
15814
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15356
15815
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15357
15816
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
15817
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15358
15818
|
* @param {*} [options] Override http request option.
|
|
15359
15819
|
* @throws {RequiredError}
|
|
15360
15820
|
*/
|
|
15361
|
-
listcontentHaloRunV1alpha1Comment(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentList>>;
|
|
15821
|
+
listcontentHaloRunV1alpha1Comment(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentList>>;
|
|
15362
15822
|
/**
|
|
15363
15823
|
* Update content.halo.run/v1alpha1/Comment
|
|
15364
15824
|
* @param {string} name Name of comment
|
|
@@ -15478,6 +15938,12 @@ interface ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentReque
|
|
|
15478
15938
|
* @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
|
|
15479
15939
|
*/
|
|
15480
15940
|
readonly size?: number;
|
|
15941
|
+
/**
|
|
15942
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15943
|
+
* @type {Array<string>}
|
|
15944
|
+
* @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
|
|
15945
|
+
*/
|
|
15946
|
+
readonly sort?: Array<string>;
|
|
15481
15947
|
}
|
|
15482
15948
|
/**
|
|
15483
15949
|
* Request parameters for updatecontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
|
|
@@ -15579,10 +16045,11 @@ declare const ContentHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: C
|
|
|
15579
16045
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15580
16046
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15581
16047
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16048
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15582
16049
|
* @param {*} [options] Override http request option.
|
|
15583
16050
|
* @throws {RequiredError}
|
|
15584
16051
|
*/
|
|
15585
|
-
listcontentHaloRunV1alpha1Post: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16052
|
+
listcontentHaloRunV1alpha1Post: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15586
16053
|
/**
|
|
15587
16054
|
* Update content.halo.run/v1alpha1/Post
|
|
15588
16055
|
* @param {string} name Name of post
|
|
@@ -15624,10 +16091,11 @@ declare const ContentHaloRunV1alpha1PostApiFp: (configuration?: Configuration) =
|
|
|
15624
16091
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15625
16092
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15626
16093
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16094
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15627
16095
|
* @param {*} [options] Override http request option.
|
|
15628
16096
|
* @throws {RequiredError}
|
|
15629
16097
|
*/
|
|
15630
|
-
listcontentHaloRunV1alpha1Post(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostList>>;
|
|
16098
|
+
listcontentHaloRunV1alpha1Post(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostList>>;
|
|
15631
16099
|
/**
|
|
15632
16100
|
* Update content.halo.run/v1alpha1/Post
|
|
15633
16101
|
* @param {string} name Name of post
|
|
@@ -15747,6 +16215,12 @@ interface ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest {
|
|
|
15747
16215
|
* @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
|
|
15748
16216
|
*/
|
|
15749
16217
|
readonly size?: number;
|
|
16218
|
+
/**
|
|
16219
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16220
|
+
* @type {Array<string>}
|
|
16221
|
+
* @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
|
|
16222
|
+
*/
|
|
16223
|
+
readonly sort?: Array<string>;
|
|
15750
16224
|
}
|
|
15751
16225
|
/**
|
|
15752
16226
|
* Request parameters for updatecontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
|
|
@@ -15848,10 +16322,11 @@ declare const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?:
|
|
|
15848
16322
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15849
16323
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15850
16324
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16325
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15851
16326
|
* @param {*} [options] Override http request option.
|
|
15852
16327
|
* @throws {RequiredError}
|
|
15853
16328
|
*/
|
|
15854
|
-
listcontentHaloRunV1alpha1Reply: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16329
|
+
listcontentHaloRunV1alpha1Reply: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15855
16330
|
/**
|
|
15856
16331
|
* Update content.halo.run/v1alpha1/Reply
|
|
15857
16332
|
* @param {string} name Name of reply
|
|
@@ -15893,10 +16368,11 @@ declare const ContentHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration)
|
|
|
15893
16368
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
15894
16369
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
15895
16370
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16371
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
15896
16372
|
* @param {*} [options] Override http request option.
|
|
15897
16373
|
* @throws {RequiredError}
|
|
15898
16374
|
*/
|
|
15899
|
-
listcontentHaloRunV1alpha1Reply(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyList>>;
|
|
16375
|
+
listcontentHaloRunV1alpha1Reply(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyList>>;
|
|
15900
16376
|
/**
|
|
15901
16377
|
* Update content.halo.run/v1alpha1/Reply
|
|
15902
16378
|
* @param {string} name Name of reply
|
|
@@ -16016,6 +16492,12 @@ interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest {
|
|
|
16016
16492
|
* @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
|
|
16017
16493
|
*/
|
|
16018
16494
|
readonly size?: number;
|
|
16495
|
+
/**
|
|
16496
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16497
|
+
* @type {Array<string>}
|
|
16498
|
+
* @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
|
|
16499
|
+
*/
|
|
16500
|
+
readonly sort?: Array<string>;
|
|
16019
16501
|
}
|
|
16020
16502
|
/**
|
|
16021
16503
|
* Request parameters for updatecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
|
|
@@ -16117,10 +16599,11 @@ declare const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configurati
|
|
|
16117
16599
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16118
16600
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16119
16601
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16602
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16120
16603
|
* @param {*} [options] Override http request option.
|
|
16121
16604
|
* @throws {RequiredError}
|
|
16122
16605
|
*/
|
|
16123
|
-
listcontentHaloRunV1alpha1SinglePage: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16606
|
+
listcontentHaloRunV1alpha1SinglePage: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16124
16607
|
/**
|
|
16125
16608
|
* Update content.halo.run/v1alpha1/SinglePage
|
|
16126
16609
|
* @param {string} name Name of singlepage
|
|
@@ -16162,10 +16645,11 @@ declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configurat
|
|
|
16162
16645
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16163
16646
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16164
16647
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16648
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16165
16649
|
* @param {*} [options] Override http request option.
|
|
16166
16650
|
* @throws {RequiredError}
|
|
16167
16651
|
*/
|
|
16168
|
-
listcontentHaloRunV1alpha1SinglePage(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePageList>>;
|
|
16652
|
+
listcontentHaloRunV1alpha1SinglePage(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePageList>>;
|
|
16169
16653
|
/**
|
|
16170
16654
|
* Update content.halo.run/v1alpha1/SinglePage
|
|
16171
16655
|
* @param {string} name Name of singlepage
|
|
@@ -16285,6 +16769,12 @@ interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePag
|
|
|
16285
16769
|
* @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
|
|
16286
16770
|
*/
|
|
16287
16771
|
readonly size?: number;
|
|
16772
|
+
/**
|
|
16773
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16774
|
+
* @type {Array<string>}
|
|
16775
|
+
* @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
|
|
16776
|
+
*/
|
|
16777
|
+
readonly sort?: Array<string>;
|
|
16288
16778
|
}
|
|
16289
16779
|
/**
|
|
16290
16780
|
* Request parameters for updatecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
|
|
@@ -16386,10 +16876,11 @@ declare const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator: (configuration
|
|
|
16386
16876
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16387
16877
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16388
16878
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16879
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16389
16880
|
* @param {*} [options] Override http request option.
|
|
16390
16881
|
* @throws {RequiredError}
|
|
16391
16882
|
*/
|
|
16392
|
-
listcontentHaloRunV1alpha1Snapshot: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16883
|
+
listcontentHaloRunV1alpha1Snapshot: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16393
16884
|
/**
|
|
16394
16885
|
* Update content.halo.run/v1alpha1/Snapshot
|
|
16395
16886
|
* @param {string} name Name of snapshot
|
|
@@ -16431,10 +16922,11 @@ declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuratio
|
|
|
16431
16922
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16432
16923
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16433
16924
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
16925
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16434
16926
|
* @param {*} [options] Override http request option.
|
|
16435
16927
|
* @throws {RequiredError}
|
|
16436
16928
|
*/
|
|
16437
|
-
listcontentHaloRunV1alpha1Snapshot(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnapshotList>>;
|
|
16929
|
+
listcontentHaloRunV1alpha1Snapshot(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnapshotList>>;
|
|
16438
16930
|
/**
|
|
16439
16931
|
* Update content.halo.run/v1alpha1/Snapshot
|
|
16440
16932
|
* @param {string} name Name of snapshot
|
|
@@ -16554,6 +17046,12 @@ interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotReq
|
|
|
16554
17046
|
* @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
|
|
16555
17047
|
*/
|
|
16556
17048
|
readonly size?: number;
|
|
17049
|
+
/**
|
|
17050
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17051
|
+
* @type {Array<string>}
|
|
17052
|
+
* @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
|
|
17053
|
+
*/
|
|
17054
|
+
readonly sort?: Array<string>;
|
|
16557
17055
|
}
|
|
16558
17056
|
/**
|
|
16559
17057
|
* Request parameters for updatecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
|
|
@@ -16655,10 +17153,11 @@ declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Co
|
|
|
16655
17153
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16656
17154
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16657
17155
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17156
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16658
17157
|
* @param {*} [options] Override http request option.
|
|
16659
17158
|
* @throws {RequiredError}
|
|
16660
17159
|
*/
|
|
16661
|
-
listcontentHaloRunV1alpha1Tag: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17160
|
+
listcontentHaloRunV1alpha1Tag: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16662
17161
|
/**
|
|
16663
17162
|
* Update content.halo.run/v1alpha1/Tag
|
|
16664
17163
|
* @param {string} name Name of tag
|
|
@@ -16700,10 +17199,11 @@ declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) =>
|
|
|
16700
17199
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16701
17200
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16702
17201
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17202
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16703
17203
|
* @param {*} [options] Override http request option.
|
|
16704
17204
|
* @throws {RequiredError}
|
|
16705
17205
|
*/
|
|
16706
|
-
listcontentHaloRunV1alpha1Tag(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagList>>;
|
|
17206
|
+
listcontentHaloRunV1alpha1Tag(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagList>>;
|
|
16707
17207
|
/**
|
|
16708
17208
|
* Update content.halo.run/v1alpha1/Tag
|
|
16709
17209
|
* @param {string} name Name of tag
|
|
@@ -16823,6 +17323,12 @@ interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
|
|
|
16823
17323
|
* @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
|
|
16824
17324
|
*/
|
|
16825
17325
|
readonly size?: number;
|
|
17326
|
+
/**
|
|
17327
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17328
|
+
* @type {Array<string>}
|
|
17329
|
+
* @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
|
|
17330
|
+
*/
|
|
17331
|
+
readonly sort?: Array<string>;
|
|
16826
17332
|
}
|
|
16827
17333
|
/**
|
|
16828
17334
|
* Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
|
|
@@ -16976,10 +17482,11 @@ declare const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator: (configuration?
|
|
|
16976
17482
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
16977
17483
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
16978
17484
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17485
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
16979
17486
|
* @param {*} [options] Override http request option.
|
|
16980
17487
|
* @throws {RequiredError}
|
|
16981
17488
|
*/
|
|
16982
|
-
listmetricsHaloRunV1alpha1Counter: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17489
|
+
listmetricsHaloRunV1alpha1Counter: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16983
17490
|
/**
|
|
16984
17491
|
* Update metrics.halo.run/v1alpha1/Counter
|
|
16985
17492
|
* @param {string} name Name of counter
|
|
@@ -17021,10 +17528,11 @@ declare const MetricsHaloRunV1alpha1CounterApiFp: (configuration?: Configuration
|
|
|
17021
17528
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17022
17529
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17023
17530
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17531
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17024
17532
|
* @param {*} [options] Override http request option.
|
|
17025
17533
|
* @throws {RequiredError}
|
|
17026
17534
|
*/
|
|
17027
|
-
listmetricsHaloRunV1alpha1Counter(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CounterList>>;
|
|
17535
|
+
listmetricsHaloRunV1alpha1Counter(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CounterList>>;
|
|
17028
17536
|
/**
|
|
17029
17537
|
* Update metrics.halo.run/v1alpha1/Counter
|
|
17030
17538
|
* @param {string} name Name of counter
|
|
@@ -17144,6 +17652,12 @@ interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterReque
|
|
|
17144
17652
|
* @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
|
|
17145
17653
|
*/
|
|
17146
17654
|
readonly size?: number;
|
|
17655
|
+
/**
|
|
17656
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17657
|
+
* @type {Array<string>}
|
|
17658
|
+
* @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
|
|
17659
|
+
*/
|
|
17660
|
+
readonly sort?: Array<string>;
|
|
17147
17661
|
}
|
|
17148
17662
|
/**
|
|
17149
17663
|
* Request parameters for updatemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
|
|
@@ -17213,6 +17727,283 @@ declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
|
|
|
17213
17727
|
updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
|
|
17214
17728
|
}
|
|
17215
17729
|
|
|
17730
|
+
/**
|
|
17731
|
+
* MigrationHaloRunV1alpha1BackupApi - axios parameter creator
|
|
17732
|
+
* @export
|
|
17733
|
+
*/
|
|
17734
|
+
declare const MigrationHaloRunV1alpha1BackupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
17735
|
+
/**
|
|
17736
|
+
* Create migration.halo.run/v1alpha1/Backup
|
|
17737
|
+
* @param {Backup} [backup] Fresh backup
|
|
17738
|
+
* @param {*} [options] Override http request option.
|
|
17739
|
+
* @throws {RequiredError}
|
|
17740
|
+
*/
|
|
17741
|
+
createmigrationHaloRunV1alpha1Backup: (backup?: Backup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17742
|
+
/**
|
|
17743
|
+
* Delete migration.halo.run/v1alpha1/Backup
|
|
17744
|
+
* @param {string} name Name of backup
|
|
17745
|
+
* @param {*} [options] Override http request option.
|
|
17746
|
+
* @throws {RequiredError}
|
|
17747
|
+
*/
|
|
17748
|
+
deletemigrationHaloRunV1alpha1Backup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17749
|
+
/**
|
|
17750
|
+
* Get migration.halo.run/v1alpha1/Backup
|
|
17751
|
+
* @param {string} name Name of backup
|
|
17752
|
+
* @param {*} [options] Override http request option.
|
|
17753
|
+
* @throws {RequiredError}
|
|
17754
|
+
*/
|
|
17755
|
+
getmigrationHaloRunV1alpha1Backup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17756
|
+
/**
|
|
17757
|
+
* List migration.halo.run/v1alpha1/Backup
|
|
17758
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
17759
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17760
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
17761
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17762
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17763
|
+
* @param {*} [options] Override http request option.
|
|
17764
|
+
* @throws {RequiredError}
|
|
17765
|
+
*/
|
|
17766
|
+
listmigrationHaloRunV1alpha1Backup: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17767
|
+
/**
|
|
17768
|
+
* Update migration.halo.run/v1alpha1/Backup
|
|
17769
|
+
* @param {string} name Name of backup
|
|
17770
|
+
* @param {Backup} [backup] Updated backup
|
|
17771
|
+
* @param {*} [options] Override http request option.
|
|
17772
|
+
* @throws {RequiredError}
|
|
17773
|
+
*/
|
|
17774
|
+
updatemigrationHaloRunV1alpha1Backup: (name: string, backup?: Backup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17775
|
+
};
|
|
17776
|
+
/**
|
|
17777
|
+
* MigrationHaloRunV1alpha1BackupApi - functional programming interface
|
|
17778
|
+
* @export
|
|
17779
|
+
*/
|
|
17780
|
+
declare const MigrationHaloRunV1alpha1BackupApiFp: (configuration?: Configuration) => {
|
|
17781
|
+
/**
|
|
17782
|
+
* Create migration.halo.run/v1alpha1/Backup
|
|
17783
|
+
* @param {Backup} [backup] Fresh backup
|
|
17784
|
+
* @param {*} [options] Override http request option.
|
|
17785
|
+
* @throws {RequiredError}
|
|
17786
|
+
*/
|
|
17787
|
+
createmigrationHaloRunV1alpha1Backup(backup?: Backup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Backup>>;
|
|
17788
|
+
/**
|
|
17789
|
+
* Delete migration.halo.run/v1alpha1/Backup
|
|
17790
|
+
* @param {string} name Name of backup
|
|
17791
|
+
* @param {*} [options] Override http request option.
|
|
17792
|
+
* @throws {RequiredError}
|
|
17793
|
+
*/
|
|
17794
|
+
deletemigrationHaloRunV1alpha1Backup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
17795
|
+
/**
|
|
17796
|
+
* Get migration.halo.run/v1alpha1/Backup
|
|
17797
|
+
* @param {string} name Name of backup
|
|
17798
|
+
* @param {*} [options] Override http request option.
|
|
17799
|
+
* @throws {RequiredError}
|
|
17800
|
+
*/
|
|
17801
|
+
getmigrationHaloRunV1alpha1Backup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Backup>>;
|
|
17802
|
+
/**
|
|
17803
|
+
* List migration.halo.run/v1alpha1/Backup
|
|
17804
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
17805
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17806
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
17807
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
17808
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17809
|
+
* @param {*} [options] Override http request option.
|
|
17810
|
+
* @throws {RequiredError}
|
|
17811
|
+
*/
|
|
17812
|
+
listmigrationHaloRunV1alpha1Backup(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BackupList>>;
|
|
17813
|
+
/**
|
|
17814
|
+
* Update migration.halo.run/v1alpha1/Backup
|
|
17815
|
+
* @param {string} name Name of backup
|
|
17816
|
+
* @param {Backup} [backup] Updated backup
|
|
17817
|
+
* @param {*} [options] Override http request option.
|
|
17818
|
+
* @throws {RequiredError}
|
|
17819
|
+
*/
|
|
17820
|
+
updatemigrationHaloRunV1alpha1Backup(name: string, backup?: Backup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Backup>>;
|
|
17821
|
+
};
|
|
17822
|
+
/**
|
|
17823
|
+
* MigrationHaloRunV1alpha1BackupApi - factory interface
|
|
17824
|
+
* @export
|
|
17825
|
+
*/
|
|
17826
|
+
declare const MigrationHaloRunV1alpha1BackupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
17827
|
+
/**
|
|
17828
|
+
* Create migration.halo.run/v1alpha1/Backup
|
|
17829
|
+
* @param {MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17830
|
+
* @param {*} [options] Override http request option.
|
|
17831
|
+
* @throws {RequiredError}
|
|
17832
|
+
*/
|
|
17833
|
+
createmigrationHaloRunV1alpha1Backup(requestParameters?: MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): AxiosPromise<Backup>;
|
|
17834
|
+
/**
|
|
17835
|
+
* Delete migration.halo.run/v1alpha1/Backup
|
|
17836
|
+
* @param {MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17837
|
+
* @param {*} [options] Override http request option.
|
|
17838
|
+
* @throws {RequiredError}
|
|
17839
|
+
*/
|
|
17840
|
+
deletemigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
17841
|
+
/**
|
|
17842
|
+
* Get migration.halo.run/v1alpha1/Backup
|
|
17843
|
+
* @param {MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17844
|
+
* @param {*} [options] Override http request option.
|
|
17845
|
+
* @throws {RequiredError}
|
|
17846
|
+
*/
|
|
17847
|
+
getmigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): AxiosPromise<Backup>;
|
|
17848
|
+
/**
|
|
17849
|
+
* List migration.halo.run/v1alpha1/Backup
|
|
17850
|
+
* @param {MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17851
|
+
* @param {*} [options] Override http request option.
|
|
17852
|
+
* @throws {RequiredError}
|
|
17853
|
+
*/
|
|
17854
|
+
listmigrationHaloRunV1alpha1Backup(requestParameters?: MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): AxiosPromise<BackupList>;
|
|
17855
|
+
/**
|
|
17856
|
+
* Update migration.halo.run/v1alpha1/Backup
|
|
17857
|
+
* @param {MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17858
|
+
* @param {*} [options] Override http request option.
|
|
17859
|
+
* @throws {RequiredError}
|
|
17860
|
+
*/
|
|
17861
|
+
updatemigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): AxiosPromise<Backup>;
|
|
17862
|
+
};
|
|
17863
|
+
/**
|
|
17864
|
+
* Request parameters for createmigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
|
|
17865
|
+
* @export
|
|
17866
|
+
* @interface MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest
|
|
17867
|
+
*/
|
|
17868
|
+
interface MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest {
|
|
17869
|
+
/**
|
|
17870
|
+
* Fresh backup
|
|
17871
|
+
* @type {Backup}
|
|
17872
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1Backup
|
|
17873
|
+
*/
|
|
17874
|
+
readonly backup?: Backup;
|
|
17875
|
+
}
|
|
17876
|
+
/**
|
|
17877
|
+
* Request parameters for deletemigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
|
|
17878
|
+
* @export
|
|
17879
|
+
* @interface MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest
|
|
17880
|
+
*/
|
|
17881
|
+
interface MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest {
|
|
17882
|
+
/**
|
|
17883
|
+
* Name of backup
|
|
17884
|
+
* @type {string}
|
|
17885
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1Backup
|
|
17886
|
+
*/
|
|
17887
|
+
readonly name: string;
|
|
17888
|
+
}
|
|
17889
|
+
/**
|
|
17890
|
+
* Request parameters for getmigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
|
|
17891
|
+
* @export
|
|
17892
|
+
* @interface MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest
|
|
17893
|
+
*/
|
|
17894
|
+
interface MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest {
|
|
17895
|
+
/**
|
|
17896
|
+
* Name of backup
|
|
17897
|
+
* @type {string}
|
|
17898
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1Backup
|
|
17899
|
+
*/
|
|
17900
|
+
readonly name: string;
|
|
17901
|
+
}
|
|
17902
|
+
/**
|
|
17903
|
+
* Request parameters for listmigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
|
|
17904
|
+
* @export
|
|
17905
|
+
* @interface MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest
|
|
17906
|
+
*/
|
|
17907
|
+
interface MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest {
|
|
17908
|
+
/**
|
|
17909
|
+
* Field selector for filtering.
|
|
17910
|
+
* @type {Array<string>}
|
|
17911
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
|
|
17912
|
+
*/
|
|
17913
|
+
readonly fieldSelector?: Array<string>;
|
|
17914
|
+
/**
|
|
17915
|
+
* Label selector for filtering.
|
|
17916
|
+
* @type {Array<string>}
|
|
17917
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
|
|
17918
|
+
*/
|
|
17919
|
+
readonly labelSelector?: Array<string>;
|
|
17920
|
+
/**
|
|
17921
|
+
* The page number. Zero indicates no page.
|
|
17922
|
+
* @type {number}
|
|
17923
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
|
|
17924
|
+
*/
|
|
17925
|
+
readonly page?: number;
|
|
17926
|
+
/**
|
|
17927
|
+
* Size of one page. Zero indicates no limit.
|
|
17928
|
+
* @type {number}
|
|
17929
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
|
|
17930
|
+
*/
|
|
17931
|
+
readonly size?: number;
|
|
17932
|
+
/**
|
|
17933
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17934
|
+
* @type {Array<string>}
|
|
17935
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
|
|
17936
|
+
*/
|
|
17937
|
+
readonly sort?: Array<string>;
|
|
17938
|
+
}
|
|
17939
|
+
/**
|
|
17940
|
+
* Request parameters for updatemigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
|
|
17941
|
+
* @export
|
|
17942
|
+
* @interface MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest
|
|
17943
|
+
*/
|
|
17944
|
+
interface MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest {
|
|
17945
|
+
/**
|
|
17946
|
+
* Name of backup
|
|
17947
|
+
* @type {string}
|
|
17948
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1Backup
|
|
17949
|
+
*/
|
|
17950
|
+
readonly name: string;
|
|
17951
|
+
/**
|
|
17952
|
+
* Updated backup
|
|
17953
|
+
* @type {Backup}
|
|
17954
|
+
* @memberof MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1Backup
|
|
17955
|
+
*/
|
|
17956
|
+
readonly backup?: Backup;
|
|
17957
|
+
}
|
|
17958
|
+
/**
|
|
17959
|
+
* MigrationHaloRunV1alpha1BackupApi - object-oriented interface
|
|
17960
|
+
* @export
|
|
17961
|
+
* @class MigrationHaloRunV1alpha1BackupApi
|
|
17962
|
+
* @extends {BaseAPI}
|
|
17963
|
+
*/
|
|
17964
|
+
declare class MigrationHaloRunV1alpha1BackupApi extends BaseAPI {
|
|
17965
|
+
/**
|
|
17966
|
+
* Create migration.halo.run/v1alpha1/Backup
|
|
17967
|
+
* @param {MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17968
|
+
* @param {*} [options] Override http request option.
|
|
17969
|
+
* @throws {RequiredError}
|
|
17970
|
+
* @memberof MigrationHaloRunV1alpha1BackupApi
|
|
17971
|
+
*/
|
|
17972
|
+
createmigrationHaloRunV1alpha1Backup(requestParameters?: MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Backup, any>>;
|
|
17973
|
+
/**
|
|
17974
|
+
* Delete migration.halo.run/v1alpha1/Backup
|
|
17975
|
+
* @param {MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17976
|
+
* @param {*} [options] Override http request option.
|
|
17977
|
+
* @throws {RequiredError}
|
|
17978
|
+
* @memberof MigrationHaloRunV1alpha1BackupApi
|
|
17979
|
+
*/
|
|
17980
|
+
deletemigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
17981
|
+
/**
|
|
17982
|
+
* Get migration.halo.run/v1alpha1/Backup
|
|
17983
|
+
* @param {MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17984
|
+
* @param {*} [options] Override http request option.
|
|
17985
|
+
* @throws {RequiredError}
|
|
17986
|
+
* @memberof MigrationHaloRunV1alpha1BackupApi
|
|
17987
|
+
*/
|
|
17988
|
+
getmigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Backup, any>>;
|
|
17989
|
+
/**
|
|
17990
|
+
* List migration.halo.run/v1alpha1/Backup
|
|
17991
|
+
* @param {MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
17992
|
+
* @param {*} [options] Override http request option.
|
|
17993
|
+
* @throws {RequiredError}
|
|
17994
|
+
* @memberof MigrationHaloRunV1alpha1BackupApi
|
|
17995
|
+
*/
|
|
17996
|
+
listmigrationHaloRunV1alpha1Backup(requestParameters?: MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<BackupList, any>>;
|
|
17997
|
+
/**
|
|
17998
|
+
* Update migration.halo.run/v1alpha1/Backup
|
|
17999
|
+
* @param {MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
|
|
18000
|
+
* @param {*} [options] Override http request option.
|
|
18001
|
+
* @throws {RequiredError}
|
|
18002
|
+
* @memberof MigrationHaloRunV1alpha1BackupApi
|
|
18003
|
+
*/
|
|
18004
|
+
updatemigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Backup, any>>;
|
|
18005
|
+
}
|
|
18006
|
+
|
|
17216
18007
|
/**
|
|
17217
18008
|
* PluginHaloRunV1alpha1ExtensionDefinitionApi - axios parameter creator
|
|
17218
18009
|
* @export
|
|
@@ -17245,10 +18036,11 @@ declare const PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator: (con
|
|
|
17245
18036
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17246
18037
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17247
18038
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18039
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17248
18040
|
* @param {*} [options] Override http request option.
|
|
17249
18041
|
* @throws {RequiredError}
|
|
17250
18042
|
*/
|
|
17251
|
-
listpluginHaloRunV1alpha1ExtensionDefinition: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18043
|
+
listpluginHaloRunV1alpha1ExtensionDefinition: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17252
18044
|
/**
|
|
17253
18045
|
* Update plugin.halo.run/v1alpha1/ExtensionDefinition
|
|
17254
18046
|
* @param {string} name Name of extensiondefinition
|
|
@@ -17290,10 +18082,11 @@ declare const PluginHaloRunV1alpha1ExtensionDefinitionApiFp: (configuration?: Co
|
|
|
17290
18082
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17291
18083
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17292
18084
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18085
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17293
18086
|
* @param {*} [options] Override http request option.
|
|
17294
18087
|
* @throws {RequiredError}
|
|
17295
18088
|
*/
|
|
17296
|
-
listpluginHaloRunV1alpha1ExtensionDefinition(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExtensionDefinitionList>>;
|
|
18089
|
+
listpluginHaloRunV1alpha1ExtensionDefinition(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExtensionDefinitionList>>;
|
|
17297
18090
|
/**
|
|
17298
18091
|
* Update plugin.halo.run/v1alpha1/ExtensionDefinition
|
|
17299
18092
|
* @param {string} name Name of extensiondefinition
|
|
@@ -17413,6 +18206,12 @@ interface PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1Ex
|
|
|
17413
18206
|
* @memberof PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinition
|
|
17414
18207
|
*/
|
|
17415
18208
|
readonly size?: number;
|
|
18209
|
+
/**
|
|
18210
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18211
|
+
* @type {Array<string>}
|
|
18212
|
+
* @memberof PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinition
|
|
18213
|
+
*/
|
|
18214
|
+
readonly sort?: Array<string>;
|
|
17416
18215
|
}
|
|
17417
18216
|
/**
|
|
17418
18217
|
* Request parameters for updatepluginHaloRunV1alpha1ExtensionDefinition operation in PluginHaloRunV1alpha1ExtensionDefinitionApi.
|
|
@@ -17514,10 +18313,11 @@ declare const PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator:
|
|
|
17514
18313
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17515
18314
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17516
18315
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18316
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17517
18317
|
* @param {*} [options] Override http request option.
|
|
17518
18318
|
* @throws {RequiredError}
|
|
17519
18319
|
*/
|
|
17520
|
-
listpluginHaloRunV1alpha1ExtensionPointDefinition: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18320
|
+
listpluginHaloRunV1alpha1ExtensionPointDefinition: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17521
18321
|
/**
|
|
17522
18322
|
* Update plugin.halo.run/v1alpha1/ExtensionPointDefinition
|
|
17523
18323
|
* @param {string} name Name of extensionpointdefinition
|
|
@@ -17559,10 +18359,11 @@ declare const PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp: (configuration
|
|
|
17559
18359
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17560
18360
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17561
18361
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18362
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17562
18363
|
* @param {*} [options] Override http request option.
|
|
17563
18364
|
* @throws {RequiredError}
|
|
17564
18365
|
*/
|
|
17565
|
-
listpluginHaloRunV1alpha1ExtensionPointDefinition(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExtensionPointDefinitionList>>;
|
|
18366
|
+
listpluginHaloRunV1alpha1ExtensionPointDefinition(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExtensionPointDefinitionList>>;
|
|
17566
18367
|
/**
|
|
17567
18368
|
* Update plugin.halo.run/v1alpha1/ExtensionPointDefinition
|
|
17568
18369
|
* @param {string} name Name of extensionpointdefinition
|
|
@@ -17682,6 +18483,12 @@ interface PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alp
|
|
|
17682
18483
|
* @memberof PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinition
|
|
17683
18484
|
*/
|
|
17684
18485
|
readonly size?: number;
|
|
18486
|
+
/**
|
|
18487
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18488
|
+
* @type {Array<string>}
|
|
18489
|
+
* @memberof PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinition
|
|
18490
|
+
*/
|
|
18491
|
+
readonly sort?: Array<string>;
|
|
17685
18492
|
}
|
|
17686
18493
|
/**
|
|
17687
18494
|
* Request parameters for updatepluginHaloRunV1alpha1ExtensionPointDefinition operation in PluginHaloRunV1alpha1ExtensionPointDefinitionApi.
|
|
@@ -17783,10 +18590,11 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
|
|
|
17783
18590
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17784
18591
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17785
18592
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18593
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17786
18594
|
* @param {*} [options] Override http request option.
|
|
17787
18595
|
* @throws {RequiredError}
|
|
17788
18596
|
*/
|
|
17789
|
-
listpluginHaloRunV1alpha1Plugin: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18597
|
+
listpluginHaloRunV1alpha1Plugin: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17790
18598
|
/**
|
|
17791
18599
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
17792
18600
|
* @param {string} name Name of plugin
|
|
@@ -17828,10 +18636,11 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
|
|
|
17828
18636
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
17829
18637
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
17830
18638
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18639
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
17831
18640
|
* @param {*} [options] Override http request option.
|
|
17832
18641
|
* @throws {RequiredError}
|
|
17833
18642
|
*/
|
|
17834
|
-
listpluginHaloRunV1alpha1Plugin(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
18643
|
+
listpluginHaloRunV1alpha1Plugin(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
17835
18644
|
/**
|
|
17836
18645
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
17837
18646
|
* @param {string} name Name of plugin
|
|
@@ -17951,6 +18760,12 @@ interface PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest {
|
|
|
17951
18760
|
* @memberof PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1Plugin
|
|
17952
18761
|
*/
|
|
17953
18762
|
readonly size?: number;
|
|
18763
|
+
/**
|
|
18764
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18765
|
+
* @type {Array<string>}
|
|
18766
|
+
* @memberof PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1Plugin
|
|
18767
|
+
*/
|
|
18768
|
+
readonly sort?: Array<string>;
|
|
17954
18769
|
}
|
|
17955
18770
|
/**
|
|
17956
18771
|
* Request parameters for updatepluginHaloRunV1alpha1Plugin operation in PluginHaloRunV1alpha1PluginApi.
|
|
@@ -18052,10 +18867,11 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configurat
|
|
|
18052
18867
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18053
18868
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18054
18869
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18870
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18055
18871
|
* @param {*} [options] Override http request option.
|
|
18056
18872
|
* @throws {RequiredError}
|
|
18057
18873
|
*/
|
|
18058
|
-
listpluginHaloRunV1alpha1ReverseProxy: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18874
|
+
listpluginHaloRunV1alpha1ReverseProxy: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18059
18875
|
/**
|
|
18060
18876
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
18061
18877
|
* @param {string} name Name of reverseproxy
|
|
@@ -18097,10 +18913,11 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
|
|
|
18097
18913
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18098
18914
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18099
18915
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
18916
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18100
18917
|
* @param {*} [options] Override http request option.
|
|
18101
18918
|
* @throws {RequiredError}
|
|
18102
18919
|
*/
|
|
18103
|
-
listpluginHaloRunV1alpha1ReverseProxy(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
|
|
18920
|
+
listpluginHaloRunV1alpha1ReverseProxy(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
|
|
18104
18921
|
/**
|
|
18105
18922
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
18106
18923
|
* @param {string} name Name of reverseproxy
|
|
@@ -18220,6 +19037,12 @@ interface PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReversePr
|
|
|
18220
19037
|
* @memberof PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxy
|
|
18221
19038
|
*/
|
|
18222
19039
|
readonly size?: number;
|
|
19040
|
+
/**
|
|
19041
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19042
|
+
* @type {Array<string>}
|
|
19043
|
+
* @memberof PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxy
|
|
19044
|
+
*/
|
|
19045
|
+
readonly sort?: Array<string>;
|
|
18223
19046
|
}
|
|
18224
19047
|
/**
|
|
18225
19048
|
* Request parameters for updatepluginHaloRunV1alpha1ReverseProxy operation in PluginHaloRunV1alpha1ReverseProxyApi.
|
|
@@ -18321,10 +19144,11 @@ declare const PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator: (configurat
|
|
|
18321
19144
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18322
19145
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18323
19146
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19147
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18324
19148
|
* @param {*} [options] Override http request option.
|
|
18325
19149
|
* @throws {RequiredError}
|
|
18326
19150
|
*/
|
|
18327
|
-
listpluginHaloRunV1alpha1SearchEngine: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19151
|
+
listpluginHaloRunV1alpha1SearchEngine: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18328
19152
|
/**
|
|
18329
19153
|
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
18330
19154
|
* @param {string} name Name of searchengine
|
|
@@ -18366,10 +19190,11 @@ declare const PluginHaloRunV1alpha1SearchEngineApiFp: (configuration?: Configura
|
|
|
18366
19190
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18367
19191
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18368
19192
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19193
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18369
19194
|
* @param {*} [options] Override http request option.
|
|
18370
19195
|
* @throws {RequiredError}
|
|
18371
19196
|
*/
|
|
18372
|
-
listpluginHaloRunV1alpha1SearchEngine(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchEngineList>>;
|
|
19197
|
+
listpluginHaloRunV1alpha1SearchEngine(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchEngineList>>;
|
|
18373
19198
|
/**
|
|
18374
19199
|
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
18375
19200
|
* @param {string} name Name of searchengine
|
|
@@ -18489,6 +19314,12 @@ interface PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEng
|
|
|
18489
19314
|
* @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
|
|
18490
19315
|
*/
|
|
18491
19316
|
readonly size?: number;
|
|
19317
|
+
/**
|
|
19318
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19319
|
+
* @type {Array<string>}
|
|
19320
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
|
|
19321
|
+
*/
|
|
19322
|
+
readonly sort?: Array<string>;
|
|
18492
19323
|
}
|
|
18493
19324
|
/**
|
|
18494
19325
|
* Request parameters for updatepluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
@@ -18590,10 +19421,11 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
18590
19421
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18591
19422
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18592
19423
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19424
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18593
19425
|
* @param {*} [options] Override http request option.
|
|
18594
19426
|
* @throws {RequiredError}
|
|
18595
19427
|
*/
|
|
18596
|
-
liststorageHaloRunV1alpha1Attachment: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19428
|
+
liststorageHaloRunV1alpha1Attachment: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18597
19429
|
/**
|
|
18598
19430
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
18599
19431
|
* @param {string} name Name of attachment
|
|
@@ -18635,10 +19467,11 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
18635
19467
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18636
19468
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18637
19469
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19470
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18638
19471
|
* @param {*} [options] Override http request option.
|
|
18639
19472
|
* @throws {RequiredError}
|
|
18640
19473
|
*/
|
|
18641
|
-
liststorageHaloRunV1alpha1Attachment(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
19474
|
+
liststorageHaloRunV1alpha1Attachment(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
18642
19475
|
/**
|
|
18643
19476
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
18644
19477
|
* @param {string} name Name of attachment
|
|
@@ -18758,6 +19591,12 @@ interface StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachmen
|
|
|
18758
19591
|
* @memberof StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachment
|
|
18759
19592
|
*/
|
|
18760
19593
|
readonly size?: number;
|
|
19594
|
+
/**
|
|
19595
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19596
|
+
* @type {Array<string>}
|
|
19597
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachment
|
|
19598
|
+
*/
|
|
19599
|
+
readonly sort?: Array<string>;
|
|
18761
19600
|
}
|
|
18762
19601
|
/**
|
|
18763
19602
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -18859,10 +19698,11 @@ declare const StorageHaloRunV1alpha1GroupApiAxiosParamCreator: (configuration?:
|
|
|
18859
19698
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18860
19699
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18861
19700
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19701
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18862
19702
|
* @param {*} [options] Override http request option.
|
|
18863
19703
|
* @throws {RequiredError}
|
|
18864
19704
|
*/
|
|
18865
|
-
liststorageHaloRunV1alpha1Group: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19705
|
+
liststorageHaloRunV1alpha1Group: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18866
19706
|
/**
|
|
18867
19707
|
* Update storage.halo.run/v1alpha1/Group
|
|
18868
19708
|
* @param {string} name Name of group
|
|
@@ -18904,10 +19744,11 @@ declare const StorageHaloRunV1alpha1GroupApiFp: (configuration?: Configuration)
|
|
|
18904
19744
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
18905
19745
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
18906
19746
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19747
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
18907
19748
|
* @param {*} [options] Override http request option.
|
|
18908
19749
|
* @throws {RequiredError}
|
|
18909
19750
|
*/
|
|
18910
|
-
liststorageHaloRunV1alpha1Group(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupList>>;
|
|
19751
|
+
liststorageHaloRunV1alpha1Group(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupList>>;
|
|
18911
19752
|
/**
|
|
18912
19753
|
* Update storage.halo.run/v1alpha1/Group
|
|
18913
19754
|
* @param {string} name Name of group
|
|
@@ -19027,6 +19868,12 @@ interface StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest {
|
|
|
19027
19868
|
* @memberof StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1Group
|
|
19028
19869
|
*/
|
|
19029
19870
|
readonly size?: number;
|
|
19871
|
+
/**
|
|
19872
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19873
|
+
* @type {Array<string>}
|
|
19874
|
+
* @memberof StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1Group
|
|
19875
|
+
*/
|
|
19876
|
+
readonly sort?: Array<string>;
|
|
19030
19877
|
}
|
|
19031
19878
|
/**
|
|
19032
19879
|
* Request parameters for updatestorageHaloRunV1alpha1Group operation in StorageHaloRunV1alpha1GroupApi.
|
|
@@ -19128,10 +19975,11 @@ declare const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator: (configuration?:
|
|
|
19128
19975
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19129
19976
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19130
19977
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19978
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19131
19979
|
* @param {*} [options] Override http request option.
|
|
19132
19980
|
* @throws {RequiredError}
|
|
19133
19981
|
*/
|
|
19134
|
-
liststorageHaloRunV1alpha1Policy: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19982
|
+
liststorageHaloRunV1alpha1Policy: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19135
19983
|
/**
|
|
19136
19984
|
* Update storage.halo.run/v1alpha1/Policy
|
|
19137
19985
|
* @param {string} name Name of policy
|
|
@@ -19173,10 +20021,11 @@ declare const StorageHaloRunV1alpha1PolicyApiFp: (configuration?: Configuration)
|
|
|
19173
20021
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19174
20022
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19175
20023
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20024
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19176
20025
|
* @param {*} [options] Override http request option.
|
|
19177
20026
|
* @throws {RequiredError}
|
|
19178
20027
|
*/
|
|
19179
|
-
liststorageHaloRunV1alpha1Policy(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyList>>;
|
|
20028
|
+
liststorageHaloRunV1alpha1Policy(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyList>>;
|
|
19180
20029
|
/**
|
|
19181
20030
|
* Update storage.halo.run/v1alpha1/Policy
|
|
19182
20031
|
* @param {string} name Name of policy
|
|
@@ -19296,6 +20145,12 @@ interface StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest
|
|
|
19296
20145
|
* @memberof StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1Policy
|
|
19297
20146
|
*/
|
|
19298
20147
|
readonly size?: number;
|
|
20148
|
+
/**
|
|
20149
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20150
|
+
* @type {Array<string>}
|
|
20151
|
+
* @memberof StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1Policy
|
|
20152
|
+
*/
|
|
20153
|
+
readonly sort?: Array<string>;
|
|
19299
20154
|
}
|
|
19300
20155
|
/**
|
|
19301
20156
|
* Request parameters for updatestorageHaloRunV1alpha1Policy operation in StorageHaloRunV1alpha1PolicyApi.
|
|
@@ -19397,10 +20252,11 @@ declare const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator: (configu
|
|
|
19397
20252
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19398
20253
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19399
20254
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20255
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19400
20256
|
* @param {*} [options] Override http request option.
|
|
19401
20257
|
* @throws {RequiredError}
|
|
19402
20258
|
*/
|
|
19403
|
-
liststorageHaloRunV1alpha1PolicyTemplate: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20259
|
+
liststorageHaloRunV1alpha1PolicyTemplate: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19404
20260
|
/**
|
|
19405
20261
|
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
19406
20262
|
* @param {string} name Name of policytemplate
|
|
@@ -19442,10 +20298,11 @@ declare const StorageHaloRunV1alpha1PolicyTemplateApiFp: (configuration?: Config
|
|
|
19442
20298
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19443
20299
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19444
20300
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20301
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19445
20302
|
* @param {*} [options] Override http request option.
|
|
19446
20303
|
* @throws {RequiredError}
|
|
19447
20304
|
*/
|
|
19448
|
-
liststorageHaloRunV1alpha1PolicyTemplate(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyTemplateList>>;
|
|
20305
|
+
liststorageHaloRunV1alpha1PolicyTemplate(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyTemplateList>>;
|
|
19449
20306
|
/**
|
|
19450
20307
|
* Update storage.halo.run/v1alpha1/PolicyTemplate
|
|
19451
20308
|
* @param {string} name Name of policytemplate
|
|
@@ -19565,6 +20422,12 @@ interface StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1Polic
|
|
|
19565
20422
|
* @memberof StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplate
|
|
19566
20423
|
*/
|
|
19567
20424
|
readonly size?: number;
|
|
20425
|
+
/**
|
|
20426
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20427
|
+
* @type {Array<string>}
|
|
20428
|
+
* @memberof StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplate
|
|
20429
|
+
*/
|
|
20430
|
+
readonly sort?: Array<string>;
|
|
19568
20431
|
}
|
|
19569
20432
|
/**
|
|
19570
20433
|
* Request parameters for updatestorageHaloRunV1alpha1PolicyTemplate operation in StorageHaloRunV1alpha1PolicyTemplateApi.
|
|
@@ -19666,10 +20529,11 @@ declare const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Co
|
|
|
19666
20529
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19667
20530
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19668
20531
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20532
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19669
20533
|
* @param {*} [options] Override http request option.
|
|
19670
20534
|
* @throws {RequiredError}
|
|
19671
20535
|
*/
|
|
19672
|
-
listthemeHaloRunV1alpha1Theme: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20536
|
+
listthemeHaloRunV1alpha1Theme: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19673
20537
|
/**
|
|
19674
20538
|
* Update theme.halo.run/v1alpha1/Theme
|
|
19675
20539
|
* @param {string} name Name of theme
|
|
@@ -19711,10 +20575,11 @@ declare const ThemeHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) =>
|
|
|
19711
20575
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19712
20576
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19713
20577
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20578
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19714
20579
|
* @param {*} [options] Override http request option.
|
|
19715
20580
|
* @throws {RequiredError}
|
|
19716
20581
|
*/
|
|
19717
|
-
listthemeHaloRunV1alpha1Theme(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
20582
|
+
listthemeHaloRunV1alpha1Theme(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
19718
20583
|
/**
|
|
19719
20584
|
* Update theme.halo.run/v1alpha1/Theme
|
|
19720
20585
|
* @param {string} name Name of theme
|
|
@@ -19834,6 +20699,12 @@ interface ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest {
|
|
|
19834
20699
|
* @memberof ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1Theme
|
|
19835
20700
|
*/
|
|
19836
20701
|
readonly size?: number;
|
|
20702
|
+
/**
|
|
20703
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20704
|
+
* @type {Array<string>}
|
|
20705
|
+
* @memberof ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1Theme
|
|
20706
|
+
*/
|
|
20707
|
+
readonly sort?: Array<string>;
|
|
19837
20708
|
}
|
|
19838
20709
|
/**
|
|
19839
20710
|
* Request parameters for updatethemeHaloRunV1alpha1Theme operation in ThemeHaloRunV1alpha1ThemeApi.
|
|
@@ -19935,10 +20806,11 @@ declare const V1alpha1AnnotationSettingApiAxiosParamCreator: (configuration?: Co
|
|
|
19935
20806
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19936
20807
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19937
20808
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20809
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19938
20810
|
* @param {*} [options] Override http request option.
|
|
19939
20811
|
* @throws {RequiredError}
|
|
19940
20812
|
*/
|
|
19941
|
-
listv1alpha1AnnotationSetting: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20813
|
+
listv1alpha1AnnotationSetting: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19942
20814
|
/**
|
|
19943
20815
|
* Update v1alpha1/AnnotationSetting
|
|
19944
20816
|
* @param {string} name Name of annotationsetting
|
|
@@ -19980,10 +20852,11 @@ declare const V1alpha1AnnotationSettingApiFp: (configuration?: Configuration) =>
|
|
|
19980
20852
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19981
20853
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
19982
20854
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
20855
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
19983
20856
|
* @param {*} [options] Override http request option.
|
|
19984
20857
|
* @throws {RequiredError}
|
|
19985
20858
|
*/
|
|
19986
|
-
listv1alpha1AnnotationSetting(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSettingList>>;
|
|
20859
|
+
listv1alpha1AnnotationSetting(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSettingList>>;
|
|
19987
20860
|
/**
|
|
19988
20861
|
* Update v1alpha1/AnnotationSetting
|
|
19989
20862
|
* @param {string} name Name of annotationsetting
|
|
@@ -20103,6 +20976,12 @@ interface V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest {
|
|
|
20103
20976
|
* @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
|
|
20104
20977
|
*/
|
|
20105
20978
|
readonly size?: number;
|
|
20979
|
+
/**
|
|
20980
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20981
|
+
* @type {Array<string>}
|
|
20982
|
+
* @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
|
|
20983
|
+
*/
|
|
20984
|
+
readonly sort?: Array<string>;
|
|
20106
20985
|
}
|
|
20107
20986
|
/**
|
|
20108
20987
|
* Request parameters for updatev1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
@@ -20273,10 +21152,11 @@ declare const V1alpha1ConfigMapApiAxiosParamCreator: (configuration?: Configurat
|
|
|
20273
21152
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
20274
21153
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
20275
21154
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21155
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20276
21156
|
* @param {*} [options] Override http request option.
|
|
20277
21157
|
* @throws {RequiredError}
|
|
20278
21158
|
*/
|
|
20279
|
-
listv1alpha1ConfigMap: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21159
|
+
listv1alpha1ConfigMap: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20280
21160
|
/**
|
|
20281
21161
|
* Update v1alpha1/ConfigMap
|
|
20282
21162
|
* @param {string} name Name of configmap
|
|
@@ -20318,10 +21198,11 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
|
|
|
20318
21198
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
20319
21199
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
20320
21200
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21201
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20321
21202
|
* @param {*} [options] Override http request option.
|
|
20322
21203
|
* @throws {RequiredError}
|
|
20323
21204
|
*/
|
|
20324
|
-
listv1alpha1ConfigMap(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
|
|
21205
|
+
listv1alpha1ConfigMap(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
|
|
20325
21206
|
/**
|
|
20326
21207
|
* Update v1alpha1/ConfigMap
|
|
20327
21208
|
* @param {string} name Name of configmap
|
|
@@ -20441,6 +21322,12 @@ interface V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest {
|
|
|
20441
21322
|
* @memberof V1alpha1ConfigMapApiListv1alpha1ConfigMap
|
|
20442
21323
|
*/
|
|
20443
21324
|
readonly size?: number;
|
|
21325
|
+
/**
|
|
21326
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21327
|
+
* @type {Array<string>}
|
|
21328
|
+
* @memberof V1alpha1ConfigMapApiListv1alpha1ConfigMap
|
|
21329
|
+
*/
|
|
21330
|
+
readonly sort?: Array<string>;
|
|
20444
21331
|
}
|
|
20445
21332
|
/**
|
|
20446
21333
|
* Request parameters for updatev1alpha1ConfigMap operation in V1alpha1ConfigMapApi.
|
|
@@ -20542,10 +21429,11 @@ declare const V1alpha1MenuApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
20542
21429
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
20543
21430
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
20544
21431
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21432
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20545
21433
|
* @param {*} [options] Override http request option.
|
|
20546
21434
|
* @throws {RequiredError}
|
|
20547
21435
|
*/
|
|
20548
|
-
listv1alpha1Menu: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21436
|
+
listv1alpha1Menu: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20549
21437
|
/**
|
|
20550
21438
|
* Update v1alpha1/Menu
|
|
20551
21439
|
* @param {string} name Name of menu
|
|
@@ -20587,10 +21475,11 @@ declare const V1alpha1MenuApiFp: (configuration?: Configuration) => {
|
|
|
20587
21475
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
20588
21476
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
20589
21477
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21478
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20590
21479
|
* @param {*} [options] Override http request option.
|
|
20591
21480
|
* @throws {RequiredError}
|
|
20592
21481
|
*/
|
|
20593
|
-
listv1alpha1Menu(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuList>>;
|
|
21482
|
+
listv1alpha1Menu(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuList>>;
|
|
20594
21483
|
/**
|
|
20595
21484
|
* Update v1alpha1/Menu
|
|
20596
21485
|
* @param {string} name Name of menu
|
|
@@ -20710,6 +21599,12 @@ interface V1alpha1MenuApiListv1alpha1MenuRequest {
|
|
|
20710
21599
|
* @memberof V1alpha1MenuApiListv1alpha1Menu
|
|
20711
21600
|
*/
|
|
20712
21601
|
readonly size?: number;
|
|
21602
|
+
/**
|
|
21603
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21604
|
+
* @type {Array<string>}
|
|
21605
|
+
* @memberof V1alpha1MenuApiListv1alpha1Menu
|
|
21606
|
+
*/
|
|
21607
|
+
readonly sort?: Array<string>;
|
|
20713
21608
|
}
|
|
20714
21609
|
/**
|
|
20715
21610
|
* Request parameters for updatev1alpha1Menu operation in V1alpha1MenuApi.
|
|
@@ -20811,10 +21706,11 @@ declare const V1alpha1MenuItemApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20811
21706
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
20812
21707
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
20813
21708
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21709
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20814
21710
|
* @param {*} [options] Override http request option.
|
|
20815
21711
|
* @throws {RequiredError}
|
|
20816
21712
|
*/
|
|
20817
|
-
listv1alpha1MenuItem: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21713
|
+
listv1alpha1MenuItem: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20818
21714
|
/**
|
|
20819
21715
|
* Update v1alpha1/MenuItem
|
|
20820
21716
|
* @param {string} name Name of menuitem
|
|
@@ -20856,10 +21752,11 @@ declare const V1alpha1MenuItemApiFp: (configuration?: Configuration) => {
|
|
|
20856
21752
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
20857
21753
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
20858
21754
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21755
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
20859
21756
|
* @param {*} [options] Override http request option.
|
|
20860
21757
|
* @throws {RequiredError}
|
|
20861
21758
|
*/
|
|
20862
|
-
listv1alpha1MenuItem(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuItemList>>;
|
|
21759
|
+
listv1alpha1MenuItem(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuItemList>>;
|
|
20863
21760
|
/**
|
|
20864
21761
|
* Update v1alpha1/MenuItem
|
|
20865
21762
|
* @param {string} name Name of menuitem
|
|
@@ -20979,6 +21876,12 @@ interface V1alpha1MenuItemApiListv1alpha1MenuItemRequest {
|
|
|
20979
21876
|
* @memberof V1alpha1MenuItemApiListv1alpha1MenuItem
|
|
20980
21877
|
*/
|
|
20981
21878
|
readonly size?: number;
|
|
21879
|
+
/**
|
|
21880
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21881
|
+
* @type {Array<string>}
|
|
21882
|
+
* @memberof V1alpha1MenuItemApiListv1alpha1MenuItem
|
|
21883
|
+
*/
|
|
21884
|
+
readonly sort?: Array<string>;
|
|
20982
21885
|
}
|
|
20983
21886
|
/**
|
|
20984
21887
|
* Request parameters for updatev1alpha1MenuItem operation in V1alpha1MenuItemApi.
|
|
@@ -21080,10 +21983,11 @@ declare const V1alpha1PersonalAccessTokenApiAxiosParamCreator: (configuration?:
|
|
|
21080
21983
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21081
21984
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21082
21985
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
21986
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21083
21987
|
* @param {*} [options] Override http request option.
|
|
21084
21988
|
* @throws {RequiredError}
|
|
21085
21989
|
*/
|
|
21086
|
-
listv1alpha1PersonalAccessToken: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21990
|
+
listv1alpha1PersonalAccessToken: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21087
21991
|
/**
|
|
21088
21992
|
* Update v1alpha1/PersonalAccessToken
|
|
21089
21993
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -21125,10 +22029,11 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
|
|
|
21125
22029
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21126
22030
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21127
22031
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22032
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21128
22033
|
* @param {*} [options] Override http request option.
|
|
21129
22034
|
* @throws {RequiredError}
|
|
21130
22035
|
*/
|
|
21131
|
-
listv1alpha1PersonalAccessToken(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
|
|
22036
|
+
listv1alpha1PersonalAccessToken(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
|
|
21132
22037
|
/**
|
|
21133
22038
|
* Update v1alpha1/PersonalAccessToken
|
|
21134
22039
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -21248,6 +22153,12 @@ interface V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest {
|
|
|
21248
22153
|
* @memberof V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessToken
|
|
21249
22154
|
*/
|
|
21250
22155
|
readonly size?: number;
|
|
22156
|
+
/**
|
|
22157
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22158
|
+
* @type {Array<string>}
|
|
22159
|
+
* @memberof V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessToken
|
|
22160
|
+
*/
|
|
22161
|
+
readonly sort?: Array<string>;
|
|
21251
22162
|
}
|
|
21252
22163
|
/**
|
|
21253
22164
|
* Request parameters for updatev1alpha1PersonalAccessToken operation in V1alpha1PersonalAccessTokenApi.
|
|
@@ -21349,10 +22260,11 @@ declare const V1alpha1RoleApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
21349
22260
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21350
22261
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21351
22262
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22263
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21352
22264
|
* @param {*} [options] Override http request option.
|
|
21353
22265
|
* @throws {RequiredError}
|
|
21354
22266
|
*/
|
|
21355
|
-
listv1alpha1Role: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22267
|
+
listv1alpha1Role: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21356
22268
|
/**
|
|
21357
22269
|
* Update v1alpha1/Role
|
|
21358
22270
|
* @param {string} name Name of role
|
|
@@ -21394,10 +22306,11 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
|
|
|
21394
22306
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21395
22307
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21396
22308
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22309
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21397
22310
|
* @param {*} [options] Override http request option.
|
|
21398
22311
|
* @throws {RequiredError}
|
|
21399
22312
|
*/
|
|
21400
|
-
listv1alpha1Role(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
|
|
22313
|
+
listv1alpha1Role(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
|
|
21401
22314
|
/**
|
|
21402
22315
|
* Update v1alpha1/Role
|
|
21403
22316
|
* @param {string} name Name of role
|
|
@@ -21517,6 +22430,12 @@ interface V1alpha1RoleApiListv1alpha1RoleRequest {
|
|
|
21517
22430
|
* @memberof V1alpha1RoleApiListv1alpha1Role
|
|
21518
22431
|
*/
|
|
21519
22432
|
readonly size?: number;
|
|
22433
|
+
/**
|
|
22434
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22435
|
+
* @type {Array<string>}
|
|
22436
|
+
* @memberof V1alpha1RoleApiListv1alpha1Role
|
|
22437
|
+
*/
|
|
22438
|
+
readonly sort?: Array<string>;
|
|
21520
22439
|
}
|
|
21521
22440
|
/**
|
|
21522
22441
|
* Request parameters for updatev1alpha1Role operation in V1alpha1RoleApi.
|
|
@@ -21618,10 +22537,11 @@ declare const V1alpha1RoleBindingApiAxiosParamCreator: (configuration?: Configur
|
|
|
21618
22537
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21619
22538
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21620
22539
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22540
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21621
22541
|
* @param {*} [options] Override http request option.
|
|
21622
22542
|
* @throws {RequiredError}
|
|
21623
22543
|
*/
|
|
21624
|
-
listv1alpha1RoleBinding: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22544
|
+
listv1alpha1RoleBinding: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21625
22545
|
/**
|
|
21626
22546
|
* Update v1alpha1/RoleBinding
|
|
21627
22547
|
* @param {string} name Name of rolebinding
|
|
@@ -21663,10 +22583,11 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
|
|
|
21663
22583
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21664
22584
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21665
22585
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22586
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21666
22587
|
* @param {*} [options] Override http request option.
|
|
21667
22588
|
* @throws {RequiredError}
|
|
21668
22589
|
*/
|
|
21669
|
-
listv1alpha1RoleBinding(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
|
|
22590
|
+
listv1alpha1RoleBinding(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
|
|
21670
22591
|
/**
|
|
21671
22592
|
* Update v1alpha1/RoleBinding
|
|
21672
22593
|
* @param {string} name Name of rolebinding
|
|
@@ -21786,6 +22707,12 @@ interface V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest {
|
|
|
21786
22707
|
* @memberof V1alpha1RoleBindingApiListv1alpha1RoleBinding
|
|
21787
22708
|
*/
|
|
21788
22709
|
readonly size?: number;
|
|
22710
|
+
/**
|
|
22711
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22712
|
+
* @type {Array<string>}
|
|
22713
|
+
* @memberof V1alpha1RoleBindingApiListv1alpha1RoleBinding
|
|
22714
|
+
*/
|
|
22715
|
+
readonly sort?: Array<string>;
|
|
21789
22716
|
}
|
|
21790
22717
|
/**
|
|
21791
22718
|
* Request parameters for updatev1alpha1RoleBinding operation in V1alpha1RoleBindingApi.
|
|
@@ -21887,10 +22814,11 @@ declare const V1alpha1SecretApiAxiosParamCreator: (configuration?: Configuration
|
|
|
21887
22814
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21888
22815
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21889
22816
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22817
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21890
22818
|
* @param {*} [options] Override http request option.
|
|
21891
22819
|
* @throws {RequiredError}
|
|
21892
22820
|
*/
|
|
21893
|
-
listv1alpha1Secret: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22821
|
+
listv1alpha1Secret: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21894
22822
|
/**
|
|
21895
22823
|
* Update v1alpha1/Secret
|
|
21896
22824
|
* @param {string} name Name of secret
|
|
@@ -21932,10 +22860,11 @@ declare const V1alpha1SecretApiFp: (configuration?: Configuration) => {
|
|
|
21932
22860
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
21933
22861
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
21934
22862
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
22863
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
21935
22864
|
* @param {*} [options] Override http request option.
|
|
21936
22865
|
* @throws {RequiredError}
|
|
21937
22866
|
*/
|
|
21938
|
-
listv1alpha1Secret(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecretList>>;
|
|
22867
|
+
listv1alpha1Secret(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecretList>>;
|
|
21939
22868
|
/**
|
|
21940
22869
|
* Update v1alpha1/Secret
|
|
21941
22870
|
* @param {string} name Name of secret
|
|
@@ -22055,6 +22984,12 @@ interface V1alpha1SecretApiListv1alpha1SecretRequest {
|
|
|
22055
22984
|
* @memberof V1alpha1SecretApiListv1alpha1Secret
|
|
22056
22985
|
*/
|
|
22057
22986
|
readonly size?: number;
|
|
22987
|
+
/**
|
|
22988
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22989
|
+
* @type {Array<string>}
|
|
22990
|
+
* @memberof V1alpha1SecretApiListv1alpha1Secret
|
|
22991
|
+
*/
|
|
22992
|
+
readonly sort?: Array<string>;
|
|
22058
22993
|
}
|
|
22059
22994
|
/**
|
|
22060
22995
|
* Request parameters for updatev1alpha1Secret operation in V1alpha1SecretApi.
|
|
@@ -22156,10 +23091,11 @@ declare const V1alpha1SettingApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22156
23091
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
22157
23092
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
22158
23093
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
23094
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22159
23095
|
* @param {*} [options] Override http request option.
|
|
22160
23096
|
* @throws {RequiredError}
|
|
22161
23097
|
*/
|
|
22162
|
-
listv1alpha1Setting: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23098
|
+
listv1alpha1Setting: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22163
23099
|
/**
|
|
22164
23100
|
* Update v1alpha1/Setting
|
|
22165
23101
|
* @param {string} name Name of setting
|
|
@@ -22201,10 +23137,11 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
|
|
|
22201
23137
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
22202
23138
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
22203
23139
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
23140
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22204
23141
|
* @param {*} [options] Override http request option.
|
|
22205
23142
|
* @throws {RequiredError}
|
|
22206
23143
|
*/
|
|
22207
|
-
listv1alpha1Setting(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
|
|
23144
|
+
listv1alpha1Setting(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
|
|
22208
23145
|
/**
|
|
22209
23146
|
* Update v1alpha1/Setting
|
|
22210
23147
|
* @param {string} name Name of setting
|
|
@@ -22324,6 +23261,12 @@ interface V1alpha1SettingApiListv1alpha1SettingRequest {
|
|
|
22324
23261
|
* @memberof V1alpha1SettingApiListv1alpha1Setting
|
|
22325
23262
|
*/
|
|
22326
23263
|
readonly size?: number;
|
|
23264
|
+
/**
|
|
23265
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
23266
|
+
* @type {Array<string>}
|
|
23267
|
+
* @memberof V1alpha1SettingApiListv1alpha1Setting
|
|
23268
|
+
*/
|
|
23269
|
+
readonly sort?: Array<string>;
|
|
22327
23270
|
}
|
|
22328
23271
|
/**
|
|
22329
23272
|
* Request parameters for updatev1alpha1Setting operation in V1alpha1SettingApi.
|
|
@@ -22425,10 +23368,11 @@ declare const V1alpha1UserApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22425
23368
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
22426
23369
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
22427
23370
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
23371
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22428
23372
|
* @param {*} [options] Override http request option.
|
|
22429
23373
|
* @throws {RequiredError}
|
|
22430
23374
|
*/
|
|
22431
|
-
listv1alpha1User: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23375
|
+
listv1alpha1User: (fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22432
23376
|
/**
|
|
22433
23377
|
* Update v1alpha1/User
|
|
22434
23378
|
* @param {string} name Name of user
|
|
@@ -22470,10 +23414,11 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
22470
23414
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
22471
23415
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
22472
23416
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
23417
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
22473
23418
|
* @param {*} [options] Override http request option.
|
|
22474
23419
|
* @throws {RequiredError}
|
|
22475
23420
|
*/
|
|
22476
|
-
listv1alpha1User(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
|
|
23421
|
+
listv1alpha1User(fieldSelector?: Array<string>, labelSelector?: Array<string>, page?: number, size?: number, sort?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
|
|
22477
23422
|
/**
|
|
22478
23423
|
* Update v1alpha1/User
|
|
22479
23424
|
* @param {string} name Name of user
|
|
@@ -22593,6 +23538,12 @@ interface V1alpha1UserApiListv1alpha1UserRequest {
|
|
|
22593
23538
|
* @memberof V1alpha1UserApiListv1alpha1User
|
|
22594
23539
|
*/
|
|
22595
23540
|
readonly size?: number;
|
|
23541
|
+
/**
|
|
23542
|
+
* Sort property and direction of the list result. Support sorting based on attribute name path.
|
|
23543
|
+
* @type {Array<string>}
|
|
23544
|
+
* @memberof V1alpha1UserApiListv1alpha1User
|
|
23545
|
+
*/
|
|
23546
|
+
readonly sort?: Array<string>;
|
|
22596
23547
|
}
|
|
22597
23548
|
/**
|
|
22598
23549
|
* Request parameters for updatev1alpha1User operation in V1alpha1UserApi.
|
|
@@ -22662,4 +23613,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
22662
23613
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
22663
23614
|
}
|
|
22664
23615
|
|
|
22665
|
-
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1AuthProviderApi, ApiConsoleHaloRunV1alpha1AuthProviderApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AuthProviderApiDisableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiEnableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiFactory, ApiConsoleHaloRunV1alpha1AuthProviderApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginFromUriRequest, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiReloadPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginFromUriRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeFromUriRequest, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeFromUriRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiContentHaloRunV1alpha1CategoryApi, ApiContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ApiContentHaloRunV1alpha1CategoryApiFactory, ApiContentHaloRunV1alpha1CategoryApiFp, ApiContentHaloRunV1alpha1CategoryApiQueryCategoriesRequest, ApiContentHaloRunV1alpha1CategoryApiQueryCategoryByNameRequest, ApiContentHaloRunV1alpha1CategoryApiQueryPostsByCategoryNameRequest, ApiContentHaloRunV1alpha1PostApi, ApiContentHaloRunV1alpha1PostApiAxiosParamCreator, ApiContentHaloRunV1alpha1PostApiFactory, ApiContentHaloRunV1alpha1PostApiFp, ApiContentHaloRunV1alpha1PostApiQueryPostByNameRequest, ApiContentHaloRunV1alpha1PostApiQueryPostNavigationByNameRequest, ApiContentHaloRunV1alpha1PostApiQueryPostsRequest, ApiContentHaloRunV1alpha1SinglePageApi, ApiContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiContentHaloRunV1alpha1SinglePageApiFactory, ApiContentHaloRunV1alpha1SinglePageApiFp, ApiContentHaloRunV1alpha1SinglePageApiQuerySinglePageByNameRequest, ApiContentHaloRunV1alpha1SinglePageApiQuerySinglePagesRequest, ApiContentHaloRunV1alpha1TagApi, ApiContentHaloRunV1alpha1TagApiAxiosParamCreator, ApiContentHaloRunV1alpha1TagApiFactory, ApiContentHaloRunV1alpha1TagApiFp, ApiContentHaloRunV1alpha1TagApiQueryPostsByTagNameRequest, ApiContentHaloRunV1alpha1TagApiQueryTagByNameRequest, ApiContentHaloRunV1alpha1TagApiQueryTagsRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1MenuApi, ApiHaloRunV1alpha1MenuApiAxiosParamCreator, ApiHaloRunV1alpha1MenuApiFactory, ApiHaloRunV1alpha1MenuApiFp, ApiHaloRunV1alpha1MenuApiQueryMenuByNameRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1StatsApi, ApiHaloRunV1alpha1StatsApiAxiosParamCreator, ApiHaloRunV1alpha1StatsApiFactory, ApiHaloRunV1alpha1StatsApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiSignUpRequest, ApiPluginHaloRunV1alpha1PluginApi, ApiPluginHaloRunV1alpha1PluginApiAxiosParamCreator, ApiPluginHaloRunV1alpha1PluginApiFactory, ApiPluginHaloRunV1alpha1PluginApiFp, ApiPluginHaloRunV1alpha1PluginApiQueryPluginAvailableByNameRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, AuthHaloRunV1alpha1AuthProviderApi, AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator, AuthHaloRunV1alpha1AuthProviderApiCreateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiDeleteauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiFactory, AuthHaloRunV1alpha1AuthProviderApiFp, AuthHaloRunV1alpha1AuthProviderApiGetauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiUpdateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1UserConnectionApi, AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator, AuthHaloRunV1alpha1UserConnectionApiCreateauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiDeleteauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiFactory, AuthHaloRunV1alpha1UserConnectionApiFp, AuthHaloRunV1alpha1UserConnectionApiGetauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiUpdateauthHaloRunV1alpha1UserConnectionRequest, AuthProvider, AuthProviderList, AuthProviderSpec, Author, Category, CategoryList, CategorySpec, CategoryStatus, CategoryVo, CategoryVoList, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStats, CommentStatsVo, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, ConfigMapRef, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentVo, ContentWrapper, Contributor, ContributorVo, Counter, CounterList, CounterRequest, CreateUserRequest, CustomTemplates, DashboardStats, DetailedUser, Excerpt, Extension, ExtensionDefinition, ExtensionDefinitionList, ExtensionPointDefinition, ExtensionPointDefinitionList, ExtensionPointSpec, ExtensionPointSpecTypeEnum, ExtensionSpec, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, InstallFromUriRequest, License, ListedAuthProvider, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedPostVo, ListedPostVoList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, ListedSinglePageVo, ListedSinglePageVoList, ListedUser, LoginApi, LoginApiAxiosParamCreator, LoginApiFactory, LoginApiFp, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuItemVo, MenuList, MenuSpec, MenuVo, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, NavigationPostVo, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1ExtensionDefinitionApi, PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionDefinitionApiCreatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiDeletepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionDefinitionApiFp, PluginHaloRunV1alpha1ExtensionDefinitionApiGetpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApi, PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionPointDefinitionApiCreatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiDeletepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp, PluginHaloRunV1alpha1ExtensionPointDefinitionApiGetpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, PostVo, PublicKeyResponse, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Secret, SecretList, Setting, SettingForm, SettingList, SettingRef, SettingSpec, SignUpRequest, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SinglePageVo, SiteStatsVo, SnapShotSpec, Snapshot, SnapshotList, Stats, StatsVo, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TagVo, TagVoList, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, UpgradeFromUriRequest, User, UserConnection, UserConnectionList, UserConnectionSpec, UserEndpointListedUserList, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1CacheApi, V1alpha1CacheApiAxiosParamCreator, V1alpha1CacheApiEvictCacheRequest, V1alpha1CacheApiFactory, V1alpha1CacheApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SecretApi, V1alpha1SecretApiAxiosParamCreator, V1alpha1SecretApiCreatev1alpha1SecretRequest, V1alpha1SecretApiDeletev1alpha1SecretRequest, V1alpha1SecretApiFactory, V1alpha1SecretApiFp, V1alpha1SecretApiGetv1alpha1SecretRequest, V1alpha1SecretApiListv1alpha1SecretRequest, V1alpha1SecretApiUpdatev1alpha1SecretRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
23616
|
+
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1AuthProviderApi, ApiConsoleHaloRunV1alpha1AuthProviderApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AuthProviderApiDisableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiEnableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiFactory, ApiConsoleHaloRunV1alpha1AuthProviderApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginFromUriRequest, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiReloadPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginFromUriRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeFromUriRequest, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeFromUriRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, ApiConsoleHaloRunV1alpha1UserApiDeleteUserAvatarRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiConsoleHaloRunV1alpha1UserApiUploadUserAvatarRequest, ApiConsoleMigrationHaloRunV1alpha1MigrationApi, ApiConsoleMigrationHaloRunV1alpha1MigrationApiAxiosParamCreator, ApiConsoleMigrationHaloRunV1alpha1MigrationApiDownloadBackupsRequest, ApiConsoleMigrationHaloRunV1alpha1MigrationApiFactory, ApiConsoleMigrationHaloRunV1alpha1MigrationApiFp, ApiConsoleMigrationHaloRunV1alpha1MigrationApiRestoreBackupRequest, ApiContentHaloRunV1alpha1CategoryApi, ApiContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ApiContentHaloRunV1alpha1CategoryApiFactory, ApiContentHaloRunV1alpha1CategoryApiFp, ApiContentHaloRunV1alpha1CategoryApiQueryCategoriesRequest, ApiContentHaloRunV1alpha1CategoryApiQueryCategoryByNameRequest, ApiContentHaloRunV1alpha1CategoryApiQueryPostsByCategoryNameRequest, ApiContentHaloRunV1alpha1PostApi, ApiContentHaloRunV1alpha1PostApiAxiosParamCreator, ApiContentHaloRunV1alpha1PostApiFactory, ApiContentHaloRunV1alpha1PostApiFp, ApiContentHaloRunV1alpha1PostApiQueryPostByNameRequest, ApiContentHaloRunV1alpha1PostApiQueryPostNavigationByNameRequest, ApiContentHaloRunV1alpha1PostApiQueryPostsRequest, ApiContentHaloRunV1alpha1SinglePageApi, ApiContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiContentHaloRunV1alpha1SinglePageApiFactory, ApiContentHaloRunV1alpha1SinglePageApiFp, ApiContentHaloRunV1alpha1SinglePageApiQuerySinglePageByNameRequest, ApiContentHaloRunV1alpha1SinglePageApiQuerySinglePagesRequest, ApiContentHaloRunV1alpha1TagApi, ApiContentHaloRunV1alpha1TagApiAxiosParamCreator, ApiContentHaloRunV1alpha1TagApiFactory, ApiContentHaloRunV1alpha1TagApiFp, ApiContentHaloRunV1alpha1TagApiQueryPostsByTagNameRequest, ApiContentHaloRunV1alpha1TagApiQueryTagByNameRequest, ApiContentHaloRunV1alpha1TagApiQueryTagsRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1MenuApi, ApiHaloRunV1alpha1MenuApiAxiosParamCreator, ApiHaloRunV1alpha1MenuApiFactory, ApiHaloRunV1alpha1MenuApiFp, ApiHaloRunV1alpha1MenuApiQueryMenuByNameRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1StatsApi, ApiHaloRunV1alpha1StatsApiAxiosParamCreator, ApiHaloRunV1alpha1StatsApiFactory, ApiHaloRunV1alpha1StatsApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiSignUpRequest, ApiPluginHaloRunV1alpha1PluginApi, ApiPluginHaloRunV1alpha1PluginApiAxiosParamCreator, ApiPluginHaloRunV1alpha1PluginApiFactory, ApiPluginHaloRunV1alpha1PluginApiFp, ApiPluginHaloRunV1alpha1PluginApiQueryPluginAvailableByNameRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, AuthHaloRunV1alpha1AuthProviderApi, AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator, AuthHaloRunV1alpha1AuthProviderApiCreateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiDeleteauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiFactory, AuthHaloRunV1alpha1AuthProviderApiFp, AuthHaloRunV1alpha1AuthProviderApiGetauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiUpdateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1UserConnectionApi, AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator, AuthHaloRunV1alpha1UserConnectionApiCreateauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiDeleteauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiFactory, AuthHaloRunV1alpha1UserConnectionApiFp, AuthHaloRunV1alpha1UserConnectionApiGetauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiUpdateauthHaloRunV1alpha1UserConnectionRequest, AuthProvider, AuthProviderList, AuthProviderSpec, Author, Backup, BackupList, BackupSpec, BackupStatus, BackupStatusPhaseEnum, Category, CategoryList, CategorySpec, CategoryStatus, CategoryVo, CategoryVoList, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStats, CommentStatsVo, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, ConfigMapRef, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentVo, ContentWrapper, Contributor, ContributorVo, Counter, CounterList, CounterRequest, CreateUserRequest, CustomTemplates, DashboardStats, DetailedUser, Excerpt, Extension, ExtensionDefinition, ExtensionDefinitionList, ExtensionPointDefinition, ExtensionPointDefinitionList, ExtensionPointSpec, ExtensionPointSpecTypeEnum, ExtensionSpec, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, InstallFromUriRequest, License, ListedAuthProvider, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedPostVo, ListedPostVoList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, ListedSinglePageVo, ListedSinglePageVoList, ListedUser, LoginApi, LoginApiAxiosParamCreator, LoginApiFactory, LoginApiFp, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuItemVo, MenuList, MenuSpec, MenuVo, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, MigrationHaloRunV1alpha1BackupApi, MigrationHaloRunV1alpha1BackupApiAxiosParamCreator, MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest, MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest, MigrationHaloRunV1alpha1BackupApiFactory, MigrationHaloRunV1alpha1BackupApiFp, MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest, MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest, MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest, NavigationPostVo, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1ExtensionDefinitionApi, PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionDefinitionApiCreatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiDeletepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionDefinitionApiFp, PluginHaloRunV1alpha1ExtensionDefinitionApiGetpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApi, PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionPointDefinitionApiCreatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiDeletepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp, PluginHaloRunV1alpha1ExtensionPointDefinitionApiGetpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, PostVo, PublicKeyResponse, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Secret, SecretList, Setting, SettingForm, SettingList, SettingRef, SettingSpec, SignUpRequest, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SinglePageVo, SiteStatsVo, SnapShotSpec, Snapshot, SnapshotList, Stats, StatsVo, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TagVo, TagVoList, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, UpgradeFromUriRequest, User, UserConnection, UserConnectionList, UserConnectionSpec, UserEndpointListedUserList, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1CacheApi, V1alpha1CacheApiAxiosParamCreator, V1alpha1CacheApiEvictCacheRequest, V1alpha1CacheApiFactory, V1alpha1CacheApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SecretApi, V1alpha1SecretApiAxiosParamCreator, V1alpha1SecretApiCreatev1alpha1SecretRequest, V1alpha1SecretApiDeletev1alpha1SecretRequest, V1alpha1SecretApiFactory, V1alpha1SecretApiFp, V1alpha1SecretApiGetv1alpha1SecretRequest, V1alpha1SecretApiListv1alpha1SecretRequest, V1alpha1SecretApiUpdatev1alpha1SecretRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|