@halo-dev/api-client 2.6.0 → 2.8.0-rc.1

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.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)
@@ -6379,6 +6602,12 @@ interface PluginSpec {
6379
6602
  pluginDependencies?: {
6380
6603
  [key: string]: string;
6381
6604
  };
6605
+ /**
6606
+ *
6607
+ * @type {string}
6608
+ * @memberof PluginSpec
6609
+ */
6610
+ repo?: string;
6382
6611
  /**
6383
6612
  *
6384
6613
  * @type {string}
@@ -7992,11 +8221,11 @@ interface Secret {
7992
8221
  apiVersion: string;
7993
8222
  /**
7994
8223
  *
7995
- * @type {{ [key: string]: string; }}
8224
+ * @type {{ [key: string]: Array<string>; }}
7996
8225
  * @memberof Secret
7997
8226
  */
7998
8227
  data?: {
7999
- [key: string]: string;
8228
+ [key: string]: Array<string>;
8000
8229
  };
8001
8230
  /**
8002
8231
  *
@@ -8912,6 +9141,18 @@ interface ThemeSpec {
8912
9141
  * @memberof ThemeSpec
8913
9142
  */
8914
9143
  displayName: string;
9144
+ /**
9145
+ *
9146
+ * @type {string}
9147
+ * @memberof ThemeSpec
9148
+ */
9149
+ homepage?: string;
9150
+ /**
9151
+ *
9152
+ * @type {Array<License>}
9153
+ * @memberof ThemeSpec
9154
+ */
9155
+ license?: Array<License>;
8915
9156
  /**
8916
9157
  *
8917
9158
  * @type {string}
@@ -8953,6 +9194,7 @@ interface ThemeSpec {
8953
9194
  *
8954
9195
  * @type {string}
8955
9196
  * @memberof ThemeSpec
9197
+ * @deprecated
8956
9198
  */
8957
9199
  website?: string;
8958
9200
  }
@@ -12445,6 +12687,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
12445
12687
  * @throws {RequiredError}
12446
12688
  */
12447
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>;
12448
12697
  /**
12449
12698
  * Get current user detail
12450
12699
  * @param {*} [options] Override http request option.
@@ -12493,6 +12742,14 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
12493
12742
  * @throws {RequiredError}
12494
12743
  */
12495
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>;
12496
12753
  };
12497
12754
  /**
12498
12755
  * ApiConsoleHaloRunV1alpha1UserApi - functional programming interface
@@ -12514,6 +12771,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
12514
12771
  * @throws {RequiredError}
12515
12772
  */
12516
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>>;
12517
12781
  /**
12518
12782
  * Get current user detail
12519
12783
  * @param {*} [options] Override http request option.
@@ -12562,6 +12826,14 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
12562
12826
  * @throws {RequiredError}
12563
12827
  */
12564
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>>;
12565
12837
  };
12566
12838
  /**
12567
12839
  * ApiConsoleHaloRunV1alpha1UserApi - factory interface
@@ -12582,6 +12854,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
12582
12854
  * @throws {RequiredError}
12583
12855
  */
12584
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>;
12585
12864
  /**
12586
12865
  * Get current user detail
12587
12866
  * @param {*} [options] Override http request option.
@@ -12623,6 +12902,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
12623
12902
  * @throws {RequiredError}
12624
12903
  */
12625
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>;
12626
12912
  };
12627
12913
  /**
12628
12914
  * Request parameters for changePassword operation in ApiConsoleHaloRunV1alpha1UserApi.
@@ -12656,6 +12942,19 @@ interface ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest {
12656
12942
  */
12657
12943
  readonly createUserRequest: CreateUserRequest;
12658
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
+ }
12659
12958
  /**
12660
12959
  * Request parameters for getPermissions operation in ApiConsoleHaloRunV1alpha1UserApi.
12661
12960
  * @export
@@ -12763,6 +13062,25 @@ interface ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest {
12763
13062
  */
12764
13063
  readonly user: User;
12765
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
+ }
12766
13084
  /**
12767
13085
  * ApiConsoleHaloRunV1alpha1UserApi - object-oriented interface
12768
13086
  * @export
@@ -12786,6 +13104,14 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
12786
13104
  * @memberof ApiConsoleHaloRunV1alpha1UserApi
12787
13105
  */
12788
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>>;
12789
13115
  /**
12790
13116
  * Get current user detail
12791
13117
  * @param {*} [options] Override http request option.
@@ -12833,9 +13159,136 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
12833
13159
  * @memberof ApiConsoleHaloRunV1alpha1UserApi
12834
13160
  */
12835
13161
  updateCurrentUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
12836
- }
12837
-
12838
- /**
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>>;
13170
+ }
13171
+
13172
+ /**
13173
+ * ApiConsoleMigrationHaloRunV1alpha1MigrationApi - axios parameter creator
13174
+ * @export
13175
+ */
13176
+ declare const ApiConsoleMigrationHaloRunV1alpha1MigrationApiAxiosParamCreator: (configuration?: Configuration) => {
13177
+ /**
13178
+ *
13179
+ * @param {string} name Backup name.
13180
+ * @param {string} filename Backup filename.
13181
+ * @param {*} [options] Override http request option.
13182
+ * @throws {RequiredError}
13183
+ */
13184
+ downloadBackups: (name: string, filename: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13185
+ /**
13186
+ *
13187
+ * @param {File} file
13188
+ * @param {*} [options] Override http request option.
13189
+ * @throws {RequiredError}
13190
+ */
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
+ /**
12839
13292
  * ApiContentHaloRunV1alpha1CategoryApi - axios parameter creator
12840
13293
  * @export
12841
13294
  */
@@ -14484,10 +14937,11 @@ declare const AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator: (configuratio
14484
14937
  * @param {Array<string>} [labelSelector] Label selector for filtering.
14485
14938
  * @param {number} [page] The page number. Zero indicates no page.
14486
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.
14487
14941
  * @param {*} [options] Override http request option.
14488
14942
  * @throws {RequiredError}
14489
14943
  */
14490
- 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>;
14491
14945
  /**
14492
14946
  * Update auth.halo.run/v1alpha1/AuthProvider
14493
14947
  * @param {string} name Name of authprovider
@@ -14529,10 +14983,11 @@ declare const AuthHaloRunV1alpha1AuthProviderApiFp: (configuration?: Configurati
14529
14983
  * @param {Array<string>} [labelSelector] Label selector for filtering.
14530
14984
  * @param {number} [page] The page number. Zero indicates no page.
14531
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.
14532
14987
  * @param {*} [options] Override http request option.
14533
14988
  * @throws {RequiredError}
14534
14989
  */
14535
- 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>>;
14536
14991
  /**
14537
14992
  * Update auth.halo.run/v1alpha1/AuthProvider
14538
14993
  * @param {string} name Name of authprovider
@@ -14652,6 +15107,12 @@ interface AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProviderR
14652
15107
  * @memberof AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProvider
14653
15108
  */
14654
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>;
14655
15116
  }
14656
15117
  /**
14657
15118
  * Request parameters for updateauthHaloRunV1alpha1AuthProvider operation in AuthHaloRunV1alpha1AuthProviderApi.
@@ -14753,10 +15214,11 @@ declare const AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator: (configurat
14753
15214
  * @param {Array<string>} [labelSelector] Label selector for filtering.
14754
15215
  * @param {number} [page] The page number. Zero indicates no page.
14755
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.
14756
15218
  * @param {*} [options] Override http request option.
14757
15219
  * @throws {RequiredError}
14758
15220
  */
14759
- 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>;
14760
15222
  /**
14761
15223
  * Update auth.halo.run/v1alpha1/UserConnection
14762
15224
  * @param {string} name Name of userconnection
@@ -14798,10 +15260,11 @@ declare const AuthHaloRunV1alpha1UserConnectionApiFp: (configuration?: Configura
14798
15260
  * @param {Array<string>} [labelSelector] Label selector for filtering.
14799
15261
  * @param {number} [page] The page number. Zero indicates no page.
14800
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.
14801
15264
  * @param {*} [options] Override http request option.
14802
15265
  * @throws {RequiredError}
14803
15266
  */
14804
- 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>>;
14805
15268
  /**
14806
15269
  * Update auth.halo.run/v1alpha1/UserConnection
14807
15270
  * @param {string} name Name of userconnection
@@ -14921,6 +15384,12 @@ interface AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnect
14921
15384
  * @memberof AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnection
14922
15385
  */
14923
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>;
14924
15393
  }
14925
15394
  /**
14926
15395
  * Request parameters for updateauthHaloRunV1alpha1UserConnection operation in AuthHaloRunV1alpha1UserConnectionApi.
@@ -15022,10 +15491,11 @@ declare const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator: (configuration
15022
15491
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15023
15492
  * @param {number} [page] The page number. Zero indicates no page.
15024
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.
15025
15495
  * @param {*} [options] Override http request option.
15026
15496
  * @throws {RequiredError}
15027
15497
  */
15028
- 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>;
15029
15499
  /**
15030
15500
  * Update content.halo.run/v1alpha1/Category
15031
15501
  * @param {string} name Name of category
@@ -15067,10 +15537,11 @@ declare const ContentHaloRunV1alpha1CategoryApiFp: (configuration?: Configuratio
15067
15537
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15068
15538
  * @param {number} [page] The page number. Zero indicates no page.
15069
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.
15070
15541
  * @param {*} [options] Override http request option.
15071
15542
  * @throws {RequiredError}
15072
15543
  */
15073
- 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>>;
15074
15545
  /**
15075
15546
  * Update content.halo.run/v1alpha1/Category
15076
15547
  * @param {string} name Name of category
@@ -15190,6 +15661,12 @@ interface ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryReq
15190
15661
  * @memberof ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1Category
15191
15662
  */
15192
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>;
15193
15670
  }
15194
15671
  /**
15195
15672
  * Request parameters for updatecontentHaloRunV1alpha1Category operation in ContentHaloRunV1alpha1CategoryApi.
@@ -15291,10 +15768,11 @@ declare const ContentHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?
15291
15768
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15292
15769
  * @param {number} [page] The page number. Zero indicates no page.
15293
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.
15294
15772
  * @param {*} [options] Override http request option.
15295
15773
  * @throws {RequiredError}
15296
15774
  */
15297
- 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>;
15298
15776
  /**
15299
15777
  * Update content.halo.run/v1alpha1/Comment
15300
15778
  * @param {string} name Name of comment
@@ -15336,10 +15814,11 @@ declare const ContentHaloRunV1alpha1CommentApiFp: (configuration?: Configuration
15336
15814
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15337
15815
  * @param {number} [page] The page number. Zero indicates no page.
15338
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.
15339
15818
  * @param {*} [options] Override http request option.
15340
15819
  * @throws {RequiredError}
15341
15820
  */
15342
- 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>>;
15343
15822
  /**
15344
15823
  * Update content.halo.run/v1alpha1/Comment
15345
15824
  * @param {string} name Name of comment
@@ -15459,6 +15938,12 @@ interface ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentReque
15459
15938
  * @memberof ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1Comment
15460
15939
  */
15461
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>;
15462
15947
  }
15463
15948
  /**
15464
15949
  * Request parameters for updatecontentHaloRunV1alpha1Comment operation in ContentHaloRunV1alpha1CommentApi.
@@ -15560,10 +16045,11 @@ declare const ContentHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: C
15560
16045
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15561
16046
  * @param {number} [page] The page number. Zero indicates no page.
15562
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.
15563
16049
  * @param {*} [options] Override http request option.
15564
16050
  * @throws {RequiredError}
15565
16051
  */
15566
- 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>;
15567
16053
  /**
15568
16054
  * Update content.halo.run/v1alpha1/Post
15569
16055
  * @param {string} name Name of post
@@ -15605,10 +16091,11 @@ declare const ContentHaloRunV1alpha1PostApiFp: (configuration?: Configuration) =
15605
16091
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15606
16092
  * @param {number} [page] The page number. Zero indicates no page.
15607
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.
15608
16095
  * @param {*} [options] Override http request option.
15609
16096
  * @throws {RequiredError}
15610
16097
  */
15611
- 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>>;
15612
16099
  /**
15613
16100
  * Update content.halo.run/v1alpha1/Post
15614
16101
  * @param {string} name Name of post
@@ -15728,6 +16215,12 @@ interface ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest {
15728
16215
  * @memberof ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1Post
15729
16216
  */
15730
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>;
15731
16224
  }
15732
16225
  /**
15733
16226
  * Request parameters for updatecontentHaloRunV1alpha1Post operation in ContentHaloRunV1alpha1PostApi.
@@ -15829,10 +16322,11 @@ declare const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?:
15829
16322
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15830
16323
  * @param {number} [page] The page number. Zero indicates no page.
15831
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.
15832
16326
  * @param {*} [options] Override http request option.
15833
16327
  * @throws {RequiredError}
15834
16328
  */
15835
- 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>;
15836
16330
  /**
15837
16331
  * Update content.halo.run/v1alpha1/Reply
15838
16332
  * @param {string} name Name of reply
@@ -15874,10 +16368,11 @@ declare const ContentHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration)
15874
16368
  * @param {Array<string>} [labelSelector] Label selector for filtering.
15875
16369
  * @param {number} [page] The page number. Zero indicates no page.
15876
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.
15877
16372
  * @param {*} [options] Override http request option.
15878
16373
  * @throws {RequiredError}
15879
16374
  */
15880
- 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>>;
15881
16376
  /**
15882
16377
  * Update content.halo.run/v1alpha1/Reply
15883
16378
  * @param {string} name Name of reply
@@ -15997,6 +16492,12 @@ interface ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest {
15997
16492
  * @memberof ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1Reply
15998
16493
  */
15999
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>;
16000
16501
  }
16001
16502
  /**
16002
16503
  * Request parameters for updatecontentHaloRunV1alpha1Reply operation in ContentHaloRunV1alpha1ReplyApi.
@@ -16098,10 +16599,11 @@ declare const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configurati
16098
16599
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16099
16600
  * @param {number} [page] The page number. Zero indicates no page.
16100
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.
16101
16603
  * @param {*} [options] Override http request option.
16102
16604
  * @throws {RequiredError}
16103
16605
  */
16104
- 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>;
16105
16607
  /**
16106
16608
  * Update content.halo.run/v1alpha1/SinglePage
16107
16609
  * @param {string} name Name of singlepage
@@ -16143,10 +16645,11 @@ declare const ContentHaloRunV1alpha1SinglePageApiFp: (configuration?: Configurat
16143
16645
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16144
16646
  * @param {number} [page] The page number. Zero indicates no page.
16145
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.
16146
16649
  * @param {*} [options] Override http request option.
16147
16650
  * @throws {RequiredError}
16148
16651
  */
16149
- 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>>;
16150
16653
  /**
16151
16654
  * Update content.halo.run/v1alpha1/SinglePage
16152
16655
  * @param {string} name Name of singlepage
@@ -16266,6 +16769,12 @@ interface ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePag
16266
16769
  * @memberof ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePage
16267
16770
  */
16268
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>;
16269
16778
  }
16270
16779
  /**
16271
16780
  * Request parameters for updatecontentHaloRunV1alpha1SinglePage operation in ContentHaloRunV1alpha1SinglePageApi.
@@ -16367,10 +16876,11 @@ declare const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator: (configuration
16367
16876
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16368
16877
  * @param {number} [page] The page number. Zero indicates no page.
16369
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.
16370
16880
  * @param {*} [options] Override http request option.
16371
16881
  * @throws {RequiredError}
16372
16882
  */
16373
- 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>;
16374
16884
  /**
16375
16885
  * Update content.halo.run/v1alpha1/Snapshot
16376
16886
  * @param {string} name Name of snapshot
@@ -16412,10 +16922,11 @@ declare const ContentHaloRunV1alpha1SnapshotApiFp: (configuration?: Configuratio
16412
16922
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16413
16923
  * @param {number} [page] The page number. Zero indicates no page.
16414
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.
16415
16926
  * @param {*} [options] Override http request option.
16416
16927
  * @throws {RequiredError}
16417
16928
  */
16418
- 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>>;
16419
16930
  /**
16420
16931
  * Update content.halo.run/v1alpha1/Snapshot
16421
16932
  * @param {string} name Name of snapshot
@@ -16535,6 +17046,12 @@ interface ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotReq
16535
17046
  * @memberof ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1Snapshot
16536
17047
  */
16537
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>;
16538
17055
  }
16539
17056
  /**
16540
17057
  * Request parameters for updatecontentHaloRunV1alpha1Snapshot operation in ContentHaloRunV1alpha1SnapshotApi.
@@ -16636,10 +17153,11 @@ declare const ContentHaloRunV1alpha1TagApiAxiosParamCreator: (configuration?: Co
16636
17153
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16637
17154
  * @param {number} [page] The page number. Zero indicates no page.
16638
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.
16639
17157
  * @param {*} [options] Override http request option.
16640
17158
  * @throws {RequiredError}
16641
17159
  */
16642
- 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>;
16643
17161
  /**
16644
17162
  * Update content.halo.run/v1alpha1/Tag
16645
17163
  * @param {string} name Name of tag
@@ -16681,10 +17199,11 @@ declare const ContentHaloRunV1alpha1TagApiFp: (configuration?: Configuration) =>
16681
17199
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16682
17200
  * @param {number} [page] The page number. Zero indicates no page.
16683
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.
16684
17203
  * @param {*} [options] Override http request option.
16685
17204
  * @throws {RequiredError}
16686
17205
  */
16687
- 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>>;
16688
17207
  /**
16689
17208
  * Update content.halo.run/v1alpha1/Tag
16690
17209
  * @param {string} name Name of tag
@@ -16804,6 +17323,12 @@ interface ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest {
16804
17323
  * @memberof ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1Tag
16805
17324
  */
16806
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>;
16807
17332
  }
16808
17333
  /**
16809
17334
  * Request parameters for updatecontentHaloRunV1alpha1Tag operation in ContentHaloRunV1alpha1TagApi.
@@ -16957,10 +17482,11 @@ declare const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator: (configuration?
16957
17482
  * @param {Array<string>} [labelSelector] Label selector for filtering.
16958
17483
  * @param {number} [page] The page number. Zero indicates no page.
16959
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.
16960
17486
  * @param {*} [options] Override http request option.
16961
17487
  * @throws {RequiredError}
16962
17488
  */
16963
- 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>;
16964
17490
  /**
16965
17491
  * Update metrics.halo.run/v1alpha1/Counter
16966
17492
  * @param {string} name Name of counter
@@ -17002,10 +17528,11 @@ declare const MetricsHaloRunV1alpha1CounterApiFp: (configuration?: Configuration
17002
17528
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17003
17529
  * @param {number} [page] The page number. Zero indicates no page.
17004
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.
17005
17532
  * @param {*} [options] Override http request option.
17006
17533
  * @throws {RequiredError}
17007
17534
  */
17008
- 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>>;
17009
17536
  /**
17010
17537
  * Update metrics.halo.run/v1alpha1/Counter
17011
17538
  * @param {string} name Name of counter
@@ -17070,128 +17597,411 @@ interface MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterReq
17070
17597
  readonly counter?: Counter;
17071
17598
  }
17072
17599
  /**
17073
- * Request parameters for deletemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17600
+ * Request parameters for deletemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17601
+ * @export
17602
+ * @interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest
17603
+ */
17604
+ interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest {
17605
+ /**
17606
+ * Name of counter
17607
+ * @type {string}
17608
+ * @memberof MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1Counter
17609
+ */
17610
+ readonly name: string;
17611
+ }
17612
+ /**
17613
+ * Request parameters for getmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17614
+ * @export
17615
+ * @interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest
17616
+ */
17617
+ interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest {
17618
+ /**
17619
+ * Name of counter
17620
+ * @type {string}
17621
+ * @memberof MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1Counter
17622
+ */
17623
+ readonly name: string;
17624
+ }
17625
+ /**
17626
+ * Request parameters for listmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17627
+ * @export
17628
+ * @interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest
17629
+ */
17630
+ interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest {
17631
+ /**
17632
+ * Field selector for filtering.
17633
+ * @type {Array<string>}
17634
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17635
+ */
17636
+ readonly fieldSelector?: Array<string>;
17637
+ /**
17638
+ * Label selector for filtering.
17639
+ * @type {Array<string>}
17640
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17641
+ */
17642
+ readonly labelSelector?: Array<string>;
17643
+ /**
17644
+ * The page number. Zero indicates no page.
17645
+ * @type {number}
17646
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17647
+ */
17648
+ readonly page?: number;
17649
+ /**
17650
+ * Size of one page. Zero indicates no limit.
17651
+ * @type {number}
17652
+ * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17653
+ */
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>;
17661
+ }
17662
+ /**
17663
+ * Request parameters for updatemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17664
+ * @export
17665
+ * @interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest
17666
+ */
17667
+ interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest {
17668
+ /**
17669
+ * Name of counter
17670
+ * @type {string}
17671
+ * @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
17672
+ */
17673
+ readonly name: string;
17674
+ /**
17675
+ * Updated counter
17676
+ * @type {Counter}
17677
+ * @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
17678
+ */
17679
+ readonly counter?: Counter;
17680
+ }
17681
+ /**
17682
+ * MetricsHaloRunV1alpha1CounterApi - object-oriented interface
17683
+ * @export
17684
+ * @class MetricsHaloRunV1alpha1CounterApi
17685
+ * @extends {BaseAPI}
17686
+ */
17687
+ declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
17688
+ /**
17689
+ * Create metrics.halo.run/v1alpha1/Counter
17690
+ * @param {MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17691
+ * @param {*} [options] Override http request option.
17692
+ * @throws {RequiredError}
17693
+ * @memberof MetricsHaloRunV1alpha1CounterApi
17694
+ */
17695
+ createmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
17696
+ /**
17697
+ * Delete metrics.halo.run/v1alpha1/Counter
17698
+ * @param {MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17699
+ * @param {*} [options] Override http request option.
17700
+ * @throws {RequiredError}
17701
+ * @memberof MetricsHaloRunV1alpha1CounterApi
17702
+ */
17703
+ deletemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
17704
+ /**
17705
+ * Get metrics.halo.run/v1alpha1/Counter
17706
+ * @param {MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17707
+ * @param {*} [options] Override http request option.
17708
+ * @throws {RequiredError}
17709
+ * @memberof MetricsHaloRunV1alpha1CounterApi
17710
+ */
17711
+ getmetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
17712
+ /**
17713
+ * List metrics.halo.run/v1alpha1/Counter
17714
+ * @param {MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17715
+ * @param {*} [options] Override http request option.
17716
+ * @throws {RequiredError}
17717
+ * @memberof MetricsHaloRunV1alpha1CounterApi
17718
+ */
17719
+ listmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CounterList, any>>;
17720
+ /**
17721
+ * Update metrics.halo.run/v1alpha1/Counter
17722
+ * @param {MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17723
+ * @param {*} [options] Override http request option.
17724
+ * @throws {RequiredError}
17725
+ * @memberof MetricsHaloRunV1alpha1CounterApi
17726
+ */
17727
+ updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
17728
+ }
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.
17074
17878
  * @export
17075
- * @interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest
17879
+ * @interface MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest
17076
17880
  */
17077
- interface MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest {
17881
+ interface MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest {
17078
17882
  /**
17079
- * Name of counter
17883
+ * Name of backup
17080
17884
  * @type {string}
17081
- * @memberof MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1Counter
17885
+ * @memberof MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1Backup
17082
17886
  */
17083
17887
  readonly name: string;
17084
17888
  }
17085
17889
  /**
17086
- * Request parameters for getmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17890
+ * Request parameters for getmigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
17087
17891
  * @export
17088
- * @interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest
17892
+ * @interface MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest
17089
17893
  */
17090
- interface MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest {
17894
+ interface MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest {
17091
17895
  /**
17092
- * Name of counter
17896
+ * Name of backup
17093
17897
  * @type {string}
17094
- * @memberof MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1Counter
17898
+ * @memberof MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1Backup
17095
17899
  */
17096
17900
  readonly name: string;
17097
17901
  }
17098
17902
  /**
17099
- * Request parameters for listmetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17903
+ * Request parameters for listmigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
17100
17904
  * @export
17101
- * @interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest
17905
+ * @interface MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest
17102
17906
  */
17103
- interface MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest {
17907
+ interface MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest {
17104
17908
  /**
17105
17909
  * Field selector for filtering.
17106
17910
  * @type {Array<string>}
17107
- * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17911
+ * @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
17108
17912
  */
17109
17913
  readonly fieldSelector?: Array<string>;
17110
17914
  /**
17111
17915
  * Label selector for filtering.
17112
17916
  * @type {Array<string>}
17113
- * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17917
+ * @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
17114
17918
  */
17115
17919
  readonly labelSelector?: Array<string>;
17116
17920
  /**
17117
17921
  * The page number. Zero indicates no page.
17118
17922
  * @type {number}
17119
- * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17923
+ * @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
17120
17924
  */
17121
17925
  readonly page?: number;
17122
17926
  /**
17123
17927
  * Size of one page. Zero indicates no limit.
17124
17928
  * @type {number}
17125
- * @memberof MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1Counter
17929
+ * @memberof MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1Backup
17126
17930
  */
17127
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>;
17128
17938
  }
17129
17939
  /**
17130
- * Request parameters for updatemetricsHaloRunV1alpha1Counter operation in MetricsHaloRunV1alpha1CounterApi.
17940
+ * Request parameters for updatemigrationHaloRunV1alpha1Backup operation in MigrationHaloRunV1alpha1BackupApi.
17131
17941
  * @export
17132
- * @interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest
17942
+ * @interface MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest
17133
17943
  */
17134
- interface MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest {
17944
+ interface MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest {
17135
17945
  /**
17136
- * Name of counter
17946
+ * Name of backup
17137
17947
  * @type {string}
17138
- * @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
17948
+ * @memberof MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1Backup
17139
17949
  */
17140
17950
  readonly name: string;
17141
17951
  /**
17142
- * Updated counter
17143
- * @type {Counter}
17144
- * @memberof MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1Counter
17952
+ * Updated backup
17953
+ * @type {Backup}
17954
+ * @memberof MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1Backup
17145
17955
  */
17146
- readonly counter?: Counter;
17956
+ readonly backup?: Backup;
17147
17957
  }
17148
17958
  /**
17149
- * MetricsHaloRunV1alpha1CounterApi - object-oriented interface
17959
+ * MigrationHaloRunV1alpha1BackupApi - object-oriented interface
17150
17960
  * @export
17151
- * @class MetricsHaloRunV1alpha1CounterApi
17961
+ * @class MigrationHaloRunV1alpha1BackupApi
17152
17962
  * @extends {BaseAPI}
17153
17963
  */
17154
- declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
17964
+ declare class MigrationHaloRunV1alpha1BackupApi extends BaseAPI {
17155
17965
  /**
17156
- * Create metrics.halo.run/v1alpha1/Counter
17157
- * @param {MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17966
+ * Create migration.halo.run/v1alpha1/Backup
17967
+ * @param {MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
17158
17968
  * @param {*} [options] Override http request option.
17159
17969
  * @throws {RequiredError}
17160
- * @memberof MetricsHaloRunV1alpha1CounterApi
17970
+ * @memberof MigrationHaloRunV1alpha1BackupApi
17161
17971
  */
17162
- createmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
17972
+ createmigrationHaloRunV1alpha1Backup(requestParameters?: MigrationHaloRunV1alpha1BackupApiCreatemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Backup, any>>;
17163
17973
  /**
17164
- * Delete metrics.halo.run/v1alpha1/Counter
17165
- * @param {MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17974
+ * Delete migration.halo.run/v1alpha1/Backup
17975
+ * @param {MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
17166
17976
  * @param {*} [options] Override http request option.
17167
17977
  * @throws {RequiredError}
17168
- * @memberof MetricsHaloRunV1alpha1CounterApi
17978
+ * @memberof MigrationHaloRunV1alpha1BackupApi
17169
17979
  */
17170
- deletemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
17980
+ deletemigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiDeletemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
17171
17981
  /**
17172
- * Get metrics.halo.run/v1alpha1/Counter
17173
- * @param {MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17982
+ * Get migration.halo.run/v1alpha1/Backup
17983
+ * @param {MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
17174
17984
  * @param {*} [options] Override http request option.
17175
17985
  * @throws {RequiredError}
17176
- * @memberof MetricsHaloRunV1alpha1CounterApi
17986
+ * @memberof MigrationHaloRunV1alpha1BackupApi
17177
17987
  */
17178
- getmetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
17988
+ getmigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiGetmigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Backup, any>>;
17179
17989
  /**
17180
- * List metrics.halo.run/v1alpha1/Counter
17181
- * @param {MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17990
+ * List migration.halo.run/v1alpha1/Backup
17991
+ * @param {MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
17182
17992
  * @param {*} [options] Override http request option.
17183
17993
  * @throws {RequiredError}
17184
- * @memberof MetricsHaloRunV1alpha1CounterApi
17994
+ * @memberof MigrationHaloRunV1alpha1BackupApi
17185
17995
  */
17186
- listmetricsHaloRunV1alpha1Counter(requestParameters?: MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CounterList, any>>;
17996
+ listmigrationHaloRunV1alpha1Backup(requestParameters?: MigrationHaloRunV1alpha1BackupApiListmigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<BackupList, any>>;
17187
17997
  /**
17188
- * Update metrics.halo.run/v1alpha1/Counter
17189
- * @param {MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest} requestParameters Request parameters.
17998
+ * Update migration.halo.run/v1alpha1/Backup
17999
+ * @param {MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest} requestParameters Request parameters.
17190
18000
  * @param {*} [options] Override http request option.
17191
18001
  * @throws {RequiredError}
17192
- * @memberof MetricsHaloRunV1alpha1CounterApi
18002
+ * @memberof MigrationHaloRunV1alpha1BackupApi
17193
18003
  */
17194
- updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
18004
+ updatemigrationHaloRunV1alpha1Backup(requestParameters: MigrationHaloRunV1alpha1BackupApiUpdatemigrationHaloRunV1alpha1BackupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Backup, any>>;
17195
18005
  }
17196
18006
 
17197
18007
  /**
@@ -17226,10 +18036,11 @@ declare const PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator: (con
17226
18036
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17227
18037
  * @param {number} [page] The page number. Zero indicates no page.
17228
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.
17229
18040
  * @param {*} [options] Override http request option.
17230
18041
  * @throws {RequiredError}
17231
18042
  */
17232
- 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>;
17233
18044
  /**
17234
18045
  * Update plugin.halo.run/v1alpha1/ExtensionDefinition
17235
18046
  * @param {string} name Name of extensiondefinition
@@ -17271,10 +18082,11 @@ declare const PluginHaloRunV1alpha1ExtensionDefinitionApiFp: (configuration?: Co
17271
18082
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17272
18083
  * @param {number} [page] The page number. Zero indicates no page.
17273
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.
17274
18086
  * @param {*} [options] Override http request option.
17275
18087
  * @throws {RequiredError}
17276
18088
  */
17277
- 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>>;
17278
18090
  /**
17279
18091
  * Update plugin.halo.run/v1alpha1/ExtensionDefinition
17280
18092
  * @param {string} name Name of extensiondefinition
@@ -17394,6 +18206,12 @@ interface PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1Ex
17394
18206
  * @memberof PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinition
17395
18207
  */
17396
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>;
17397
18215
  }
17398
18216
  /**
17399
18217
  * Request parameters for updatepluginHaloRunV1alpha1ExtensionDefinition operation in PluginHaloRunV1alpha1ExtensionDefinitionApi.
@@ -17495,10 +18313,11 @@ declare const PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator:
17495
18313
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17496
18314
  * @param {number} [page] The page number. Zero indicates no page.
17497
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.
17498
18317
  * @param {*} [options] Override http request option.
17499
18318
  * @throws {RequiredError}
17500
18319
  */
17501
- 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>;
17502
18321
  /**
17503
18322
  * Update plugin.halo.run/v1alpha1/ExtensionPointDefinition
17504
18323
  * @param {string} name Name of extensionpointdefinition
@@ -17540,10 +18359,11 @@ declare const PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp: (configuration
17540
18359
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17541
18360
  * @param {number} [page] The page number. Zero indicates no page.
17542
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.
17543
18363
  * @param {*} [options] Override http request option.
17544
18364
  * @throws {RequiredError}
17545
18365
  */
17546
- 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>>;
17547
18367
  /**
17548
18368
  * Update plugin.halo.run/v1alpha1/ExtensionPointDefinition
17549
18369
  * @param {string} name Name of extensionpointdefinition
@@ -17663,6 +18483,12 @@ interface PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alp
17663
18483
  * @memberof PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinition
17664
18484
  */
17665
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>;
17666
18492
  }
17667
18493
  /**
17668
18494
  * Request parameters for updatepluginHaloRunV1alpha1ExtensionPointDefinition operation in PluginHaloRunV1alpha1ExtensionPointDefinitionApi.
@@ -17764,10 +18590,11 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
17764
18590
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17765
18591
  * @param {number} [page] The page number. Zero indicates no page.
17766
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.
17767
18594
  * @param {*} [options] Override http request option.
17768
18595
  * @throws {RequiredError}
17769
18596
  */
17770
- 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>;
17771
18598
  /**
17772
18599
  * Update plugin.halo.run/v1alpha1/Plugin
17773
18600
  * @param {string} name Name of plugin
@@ -17809,10 +18636,11 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
17809
18636
  * @param {Array<string>} [labelSelector] Label selector for filtering.
17810
18637
  * @param {number} [page] The page number. Zero indicates no page.
17811
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.
17812
18640
  * @param {*} [options] Override http request option.
17813
18641
  * @throws {RequiredError}
17814
18642
  */
17815
- 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>>;
17816
18644
  /**
17817
18645
  * Update plugin.halo.run/v1alpha1/Plugin
17818
18646
  * @param {string} name Name of plugin
@@ -17932,6 +18760,12 @@ interface PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest {
17932
18760
  * @memberof PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1Plugin
17933
18761
  */
17934
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>;
17935
18769
  }
17936
18770
  /**
17937
18771
  * Request parameters for updatepluginHaloRunV1alpha1Plugin operation in PluginHaloRunV1alpha1PluginApi.
@@ -18033,10 +18867,11 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configurat
18033
18867
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18034
18868
  * @param {number} [page] The page number. Zero indicates no page.
18035
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.
18036
18871
  * @param {*} [options] Override http request option.
18037
18872
  * @throws {RequiredError}
18038
18873
  */
18039
- 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>;
18040
18875
  /**
18041
18876
  * Update plugin.halo.run/v1alpha1/ReverseProxy
18042
18877
  * @param {string} name Name of reverseproxy
@@ -18078,10 +18913,11 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
18078
18913
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18079
18914
  * @param {number} [page] The page number. Zero indicates no page.
18080
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.
18081
18917
  * @param {*} [options] Override http request option.
18082
18918
  * @throws {RequiredError}
18083
18919
  */
18084
- 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>>;
18085
18921
  /**
18086
18922
  * Update plugin.halo.run/v1alpha1/ReverseProxy
18087
18923
  * @param {string} name Name of reverseproxy
@@ -18201,6 +19037,12 @@ interface PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReversePr
18201
19037
  * @memberof PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxy
18202
19038
  */
18203
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>;
18204
19046
  }
18205
19047
  /**
18206
19048
  * Request parameters for updatepluginHaloRunV1alpha1ReverseProxy operation in PluginHaloRunV1alpha1ReverseProxyApi.
@@ -18302,10 +19144,11 @@ declare const PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator: (configurat
18302
19144
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18303
19145
  * @param {number} [page] The page number. Zero indicates no page.
18304
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.
18305
19148
  * @param {*} [options] Override http request option.
18306
19149
  * @throws {RequiredError}
18307
19150
  */
18308
- 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>;
18309
19152
  /**
18310
19153
  * Update plugin.halo.run/v1alpha1/SearchEngine
18311
19154
  * @param {string} name Name of searchengine
@@ -18347,10 +19190,11 @@ declare const PluginHaloRunV1alpha1SearchEngineApiFp: (configuration?: Configura
18347
19190
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18348
19191
  * @param {number} [page] The page number. Zero indicates no page.
18349
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.
18350
19194
  * @param {*} [options] Override http request option.
18351
19195
  * @throws {RequiredError}
18352
19196
  */
18353
- 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>>;
18354
19198
  /**
18355
19199
  * Update plugin.halo.run/v1alpha1/SearchEngine
18356
19200
  * @param {string} name Name of searchengine
@@ -18470,6 +19314,12 @@ interface PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEng
18470
19314
  * @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
18471
19315
  */
18472
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>;
18473
19323
  }
18474
19324
  /**
18475
19325
  * Request parameters for updatepluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
@@ -18571,10 +19421,11 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
18571
19421
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18572
19422
  * @param {number} [page] The page number. Zero indicates no page.
18573
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.
18574
19425
  * @param {*} [options] Override http request option.
18575
19426
  * @throws {RequiredError}
18576
19427
  */
18577
- 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>;
18578
19429
  /**
18579
19430
  * Update storage.halo.run/v1alpha1/Attachment
18580
19431
  * @param {string} name Name of attachment
@@ -18616,10 +19467,11 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
18616
19467
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18617
19468
  * @param {number} [page] The page number. Zero indicates no page.
18618
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.
18619
19471
  * @param {*} [options] Override http request option.
18620
19472
  * @throws {RequiredError}
18621
19473
  */
18622
- 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>>;
18623
19475
  /**
18624
19476
  * Update storage.halo.run/v1alpha1/Attachment
18625
19477
  * @param {string} name Name of attachment
@@ -18739,6 +19591,12 @@ interface StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachmen
18739
19591
  * @memberof StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachment
18740
19592
  */
18741
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>;
18742
19600
  }
18743
19601
  /**
18744
19602
  * Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
@@ -18840,10 +19698,11 @@ declare const StorageHaloRunV1alpha1GroupApiAxiosParamCreator: (configuration?:
18840
19698
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18841
19699
  * @param {number} [page] The page number. Zero indicates no page.
18842
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.
18843
19702
  * @param {*} [options] Override http request option.
18844
19703
  * @throws {RequiredError}
18845
19704
  */
18846
- 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>;
18847
19706
  /**
18848
19707
  * Update storage.halo.run/v1alpha1/Group
18849
19708
  * @param {string} name Name of group
@@ -18885,10 +19744,11 @@ declare const StorageHaloRunV1alpha1GroupApiFp: (configuration?: Configuration)
18885
19744
  * @param {Array<string>} [labelSelector] Label selector for filtering.
18886
19745
  * @param {number} [page] The page number. Zero indicates no page.
18887
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.
18888
19748
  * @param {*} [options] Override http request option.
18889
19749
  * @throws {RequiredError}
18890
19750
  */
18891
- 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>>;
18892
19752
  /**
18893
19753
  * Update storage.halo.run/v1alpha1/Group
18894
19754
  * @param {string} name Name of group
@@ -19008,6 +19868,12 @@ interface StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest {
19008
19868
  * @memberof StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1Group
19009
19869
  */
19010
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>;
19011
19877
  }
19012
19878
  /**
19013
19879
  * Request parameters for updatestorageHaloRunV1alpha1Group operation in StorageHaloRunV1alpha1GroupApi.
@@ -19109,10 +19975,11 @@ declare const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator: (configuration?:
19109
19975
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19110
19976
  * @param {number} [page] The page number. Zero indicates no page.
19111
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.
19112
19979
  * @param {*} [options] Override http request option.
19113
19980
  * @throws {RequiredError}
19114
19981
  */
19115
- 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>;
19116
19983
  /**
19117
19984
  * Update storage.halo.run/v1alpha1/Policy
19118
19985
  * @param {string} name Name of policy
@@ -19154,10 +20021,11 @@ declare const StorageHaloRunV1alpha1PolicyApiFp: (configuration?: Configuration)
19154
20021
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19155
20022
  * @param {number} [page] The page number. Zero indicates no page.
19156
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.
19157
20025
  * @param {*} [options] Override http request option.
19158
20026
  * @throws {RequiredError}
19159
20027
  */
19160
- 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>>;
19161
20029
  /**
19162
20030
  * Update storage.halo.run/v1alpha1/Policy
19163
20031
  * @param {string} name Name of policy
@@ -19277,6 +20145,12 @@ interface StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest
19277
20145
  * @memberof StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1Policy
19278
20146
  */
19279
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>;
19280
20154
  }
19281
20155
  /**
19282
20156
  * Request parameters for updatestorageHaloRunV1alpha1Policy operation in StorageHaloRunV1alpha1PolicyApi.
@@ -19378,10 +20252,11 @@ declare const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator: (configu
19378
20252
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19379
20253
  * @param {number} [page] The page number. Zero indicates no page.
19380
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.
19381
20256
  * @param {*} [options] Override http request option.
19382
20257
  * @throws {RequiredError}
19383
20258
  */
19384
- 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>;
19385
20260
  /**
19386
20261
  * Update storage.halo.run/v1alpha1/PolicyTemplate
19387
20262
  * @param {string} name Name of policytemplate
@@ -19423,10 +20298,11 @@ declare const StorageHaloRunV1alpha1PolicyTemplateApiFp: (configuration?: Config
19423
20298
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19424
20299
  * @param {number} [page] The page number. Zero indicates no page.
19425
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.
19426
20302
  * @param {*} [options] Override http request option.
19427
20303
  * @throws {RequiredError}
19428
20304
  */
19429
- 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>>;
19430
20306
  /**
19431
20307
  * Update storage.halo.run/v1alpha1/PolicyTemplate
19432
20308
  * @param {string} name Name of policytemplate
@@ -19546,6 +20422,12 @@ interface StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1Polic
19546
20422
  * @memberof StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplate
19547
20423
  */
19548
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>;
19549
20431
  }
19550
20432
  /**
19551
20433
  * Request parameters for updatestorageHaloRunV1alpha1PolicyTemplate operation in StorageHaloRunV1alpha1PolicyTemplateApi.
@@ -19647,10 +20529,11 @@ declare const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Co
19647
20529
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19648
20530
  * @param {number} [page] The page number. Zero indicates no page.
19649
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.
19650
20533
  * @param {*} [options] Override http request option.
19651
20534
  * @throws {RequiredError}
19652
20535
  */
19653
- 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>;
19654
20537
  /**
19655
20538
  * Update theme.halo.run/v1alpha1/Theme
19656
20539
  * @param {string} name Name of theme
@@ -19692,10 +20575,11 @@ declare const ThemeHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) =>
19692
20575
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19693
20576
  * @param {number} [page] The page number. Zero indicates no page.
19694
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.
19695
20579
  * @param {*} [options] Override http request option.
19696
20580
  * @throws {RequiredError}
19697
20581
  */
19698
- 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>>;
19699
20583
  /**
19700
20584
  * Update theme.halo.run/v1alpha1/Theme
19701
20585
  * @param {string} name Name of theme
@@ -19815,6 +20699,12 @@ interface ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest {
19815
20699
  * @memberof ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1Theme
19816
20700
  */
19817
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>;
19818
20708
  }
19819
20709
  /**
19820
20710
  * Request parameters for updatethemeHaloRunV1alpha1Theme operation in ThemeHaloRunV1alpha1ThemeApi.
@@ -19916,10 +20806,11 @@ declare const V1alpha1AnnotationSettingApiAxiosParamCreator: (configuration?: Co
19916
20806
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19917
20807
  * @param {number} [page] The page number. Zero indicates no page.
19918
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.
19919
20810
  * @param {*} [options] Override http request option.
19920
20811
  * @throws {RequiredError}
19921
20812
  */
19922
- 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>;
19923
20814
  /**
19924
20815
  * Update v1alpha1/AnnotationSetting
19925
20816
  * @param {string} name Name of annotationsetting
@@ -19961,10 +20852,11 @@ declare const V1alpha1AnnotationSettingApiFp: (configuration?: Configuration) =>
19961
20852
  * @param {Array<string>} [labelSelector] Label selector for filtering.
19962
20853
  * @param {number} [page] The page number. Zero indicates no page.
19963
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.
19964
20856
  * @param {*} [options] Override http request option.
19965
20857
  * @throws {RequiredError}
19966
20858
  */
19967
- 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>>;
19968
20860
  /**
19969
20861
  * Update v1alpha1/AnnotationSetting
19970
20862
  * @param {string} name Name of annotationsetting
@@ -20084,6 +20976,12 @@ interface V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest {
20084
20976
  * @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
20085
20977
  */
20086
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>;
20087
20985
  }
20088
20986
  /**
20089
20987
  * Request parameters for updatev1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
@@ -20153,6 +21051,75 @@ declare class V1alpha1AnnotationSettingApi extends BaseAPI {
20153
21051
  updatev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
20154
21052
  }
20155
21053
 
21054
+ /**
21055
+ * V1alpha1CacheApi - axios parameter creator
21056
+ * @export
21057
+ */
21058
+ declare const V1alpha1CacheApiAxiosParamCreator: (configuration?: Configuration) => {
21059
+ /**
21060
+ * Evict a cache.
21061
+ * @param {string} name Cache name
21062
+ * @param {*} [options] Override http request option.
21063
+ * @throws {RequiredError}
21064
+ */
21065
+ evictCache: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21066
+ };
21067
+ /**
21068
+ * V1alpha1CacheApi - functional programming interface
21069
+ * @export
21070
+ */
21071
+ declare const V1alpha1CacheApiFp: (configuration?: Configuration) => {
21072
+ /**
21073
+ * Evict a cache.
21074
+ * @param {string} name Cache name
21075
+ * @param {*} [options] Override http request option.
21076
+ * @throws {RequiredError}
21077
+ */
21078
+ evictCache(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21079
+ };
21080
+ /**
21081
+ * V1alpha1CacheApi - factory interface
21082
+ * @export
21083
+ */
21084
+ declare const V1alpha1CacheApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
21085
+ /**
21086
+ * Evict a cache.
21087
+ * @param {V1alpha1CacheApiEvictCacheRequest} requestParameters Request parameters.
21088
+ * @param {*} [options] Override http request option.
21089
+ * @throws {RequiredError}
21090
+ */
21091
+ evictCache(requestParameters: V1alpha1CacheApiEvictCacheRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
21092
+ };
21093
+ /**
21094
+ * Request parameters for evictCache operation in V1alpha1CacheApi.
21095
+ * @export
21096
+ * @interface V1alpha1CacheApiEvictCacheRequest
21097
+ */
21098
+ interface V1alpha1CacheApiEvictCacheRequest {
21099
+ /**
21100
+ * Cache name
21101
+ * @type {string}
21102
+ * @memberof V1alpha1CacheApiEvictCache
21103
+ */
21104
+ readonly name: string;
21105
+ }
21106
+ /**
21107
+ * V1alpha1CacheApi - object-oriented interface
21108
+ * @export
21109
+ * @class V1alpha1CacheApi
21110
+ * @extends {BaseAPI}
21111
+ */
21112
+ declare class V1alpha1CacheApi extends BaseAPI {
21113
+ /**
21114
+ * Evict a cache.
21115
+ * @param {V1alpha1CacheApiEvictCacheRequest} requestParameters Request parameters.
21116
+ * @param {*} [options] Override http request option.
21117
+ * @throws {RequiredError}
21118
+ * @memberof V1alpha1CacheApi
21119
+ */
21120
+ evictCache(requestParameters: V1alpha1CacheApiEvictCacheRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
21121
+ }
21122
+
20156
21123
  /**
20157
21124
  * V1alpha1ConfigMapApi - axios parameter creator
20158
21125
  * @export
@@ -20185,10 +21152,11 @@ declare const V1alpha1ConfigMapApiAxiosParamCreator: (configuration?: Configurat
20185
21152
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20186
21153
  * @param {number} [page] The page number. Zero indicates no page.
20187
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.
20188
21156
  * @param {*} [options] Override http request option.
20189
21157
  * @throws {RequiredError}
20190
21158
  */
20191
- 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>;
20192
21160
  /**
20193
21161
  * Update v1alpha1/ConfigMap
20194
21162
  * @param {string} name Name of configmap
@@ -20230,10 +21198,11 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
20230
21198
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20231
21199
  * @param {number} [page] The page number. Zero indicates no page.
20232
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.
20233
21202
  * @param {*} [options] Override http request option.
20234
21203
  * @throws {RequiredError}
20235
21204
  */
20236
- 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>>;
20237
21206
  /**
20238
21207
  * Update v1alpha1/ConfigMap
20239
21208
  * @param {string} name Name of configmap
@@ -20353,6 +21322,12 @@ interface V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest {
20353
21322
  * @memberof V1alpha1ConfigMapApiListv1alpha1ConfigMap
20354
21323
  */
20355
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>;
20356
21331
  }
20357
21332
  /**
20358
21333
  * Request parameters for updatev1alpha1ConfigMap operation in V1alpha1ConfigMapApi.
@@ -20454,10 +21429,11 @@ declare const V1alpha1MenuApiAxiosParamCreator: (configuration?: Configuration)
20454
21429
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20455
21430
  * @param {number} [page] The page number. Zero indicates no page.
20456
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.
20457
21433
  * @param {*} [options] Override http request option.
20458
21434
  * @throws {RequiredError}
20459
21435
  */
20460
- 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>;
20461
21437
  /**
20462
21438
  * Update v1alpha1/Menu
20463
21439
  * @param {string} name Name of menu
@@ -20499,10 +21475,11 @@ declare const V1alpha1MenuApiFp: (configuration?: Configuration) => {
20499
21475
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20500
21476
  * @param {number} [page] The page number. Zero indicates no page.
20501
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.
20502
21479
  * @param {*} [options] Override http request option.
20503
21480
  * @throws {RequiredError}
20504
21481
  */
20505
- 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>>;
20506
21483
  /**
20507
21484
  * Update v1alpha1/Menu
20508
21485
  * @param {string} name Name of menu
@@ -20622,6 +21599,12 @@ interface V1alpha1MenuApiListv1alpha1MenuRequest {
20622
21599
  * @memberof V1alpha1MenuApiListv1alpha1Menu
20623
21600
  */
20624
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>;
20625
21608
  }
20626
21609
  /**
20627
21610
  * Request parameters for updatev1alpha1Menu operation in V1alpha1MenuApi.
@@ -20723,10 +21706,11 @@ declare const V1alpha1MenuItemApiAxiosParamCreator: (configuration?: Configurati
20723
21706
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20724
21707
  * @param {number} [page] The page number. Zero indicates no page.
20725
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.
20726
21710
  * @param {*} [options] Override http request option.
20727
21711
  * @throws {RequiredError}
20728
21712
  */
20729
- 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>;
20730
21714
  /**
20731
21715
  * Update v1alpha1/MenuItem
20732
21716
  * @param {string} name Name of menuitem
@@ -20768,10 +21752,11 @@ declare const V1alpha1MenuItemApiFp: (configuration?: Configuration) => {
20768
21752
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20769
21753
  * @param {number} [page] The page number. Zero indicates no page.
20770
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.
20771
21756
  * @param {*} [options] Override http request option.
20772
21757
  * @throws {RequiredError}
20773
21758
  */
20774
- 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>>;
20775
21760
  /**
20776
21761
  * Update v1alpha1/MenuItem
20777
21762
  * @param {string} name Name of menuitem
@@ -20891,6 +21876,12 @@ interface V1alpha1MenuItemApiListv1alpha1MenuItemRequest {
20891
21876
  * @memberof V1alpha1MenuItemApiListv1alpha1MenuItem
20892
21877
  */
20893
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>;
20894
21885
  }
20895
21886
  /**
20896
21887
  * Request parameters for updatev1alpha1MenuItem operation in V1alpha1MenuItemApi.
@@ -20992,10 +21983,11 @@ declare const V1alpha1PersonalAccessTokenApiAxiosParamCreator: (configuration?:
20992
21983
  * @param {Array<string>} [labelSelector] Label selector for filtering.
20993
21984
  * @param {number} [page] The page number. Zero indicates no page.
20994
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.
20995
21987
  * @param {*} [options] Override http request option.
20996
21988
  * @throws {RequiredError}
20997
21989
  */
20998
- 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>;
20999
21991
  /**
21000
21992
  * Update v1alpha1/PersonalAccessToken
21001
21993
  * @param {string} name Name of personalaccesstoken
@@ -21037,10 +22029,11 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
21037
22029
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21038
22030
  * @param {number} [page] The page number. Zero indicates no page.
21039
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.
21040
22033
  * @param {*} [options] Override http request option.
21041
22034
  * @throws {RequiredError}
21042
22035
  */
21043
- 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>>;
21044
22037
  /**
21045
22038
  * Update v1alpha1/PersonalAccessToken
21046
22039
  * @param {string} name Name of personalaccesstoken
@@ -21160,6 +22153,12 @@ interface V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest {
21160
22153
  * @memberof V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessToken
21161
22154
  */
21162
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>;
21163
22162
  }
21164
22163
  /**
21165
22164
  * Request parameters for updatev1alpha1PersonalAccessToken operation in V1alpha1PersonalAccessTokenApi.
@@ -21261,10 +22260,11 @@ declare const V1alpha1RoleApiAxiosParamCreator: (configuration?: Configuration)
21261
22260
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21262
22261
  * @param {number} [page] The page number. Zero indicates no page.
21263
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.
21264
22264
  * @param {*} [options] Override http request option.
21265
22265
  * @throws {RequiredError}
21266
22266
  */
21267
- 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>;
21268
22268
  /**
21269
22269
  * Update v1alpha1/Role
21270
22270
  * @param {string} name Name of role
@@ -21306,10 +22306,11 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
21306
22306
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21307
22307
  * @param {number} [page] The page number. Zero indicates no page.
21308
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.
21309
22310
  * @param {*} [options] Override http request option.
21310
22311
  * @throws {RequiredError}
21311
22312
  */
21312
- 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>>;
21313
22314
  /**
21314
22315
  * Update v1alpha1/Role
21315
22316
  * @param {string} name Name of role
@@ -21429,6 +22430,12 @@ interface V1alpha1RoleApiListv1alpha1RoleRequest {
21429
22430
  * @memberof V1alpha1RoleApiListv1alpha1Role
21430
22431
  */
21431
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>;
21432
22439
  }
21433
22440
  /**
21434
22441
  * Request parameters for updatev1alpha1Role operation in V1alpha1RoleApi.
@@ -21530,10 +22537,11 @@ declare const V1alpha1RoleBindingApiAxiosParamCreator: (configuration?: Configur
21530
22537
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21531
22538
  * @param {number} [page] The page number. Zero indicates no page.
21532
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.
21533
22541
  * @param {*} [options] Override http request option.
21534
22542
  * @throws {RequiredError}
21535
22543
  */
21536
- 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>;
21537
22545
  /**
21538
22546
  * Update v1alpha1/RoleBinding
21539
22547
  * @param {string} name Name of rolebinding
@@ -21575,10 +22583,11 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
21575
22583
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21576
22584
  * @param {number} [page] The page number. Zero indicates no page.
21577
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.
21578
22587
  * @param {*} [options] Override http request option.
21579
22588
  * @throws {RequiredError}
21580
22589
  */
21581
- 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>>;
21582
22591
  /**
21583
22592
  * Update v1alpha1/RoleBinding
21584
22593
  * @param {string} name Name of rolebinding
@@ -21698,6 +22707,12 @@ interface V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest {
21698
22707
  * @memberof V1alpha1RoleBindingApiListv1alpha1RoleBinding
21699
22708
  */
21700
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>;
21701
22716
  }
21702
22717
  /**
21703
22718
  * Request parameters for updatev1alpha1RoleBinding operation in V1alpha1RoleBindingApi.
@@ -21799,10 +22814,11 @@ declare const V1alpha1SecretApiAxiosParamCreator: (configuration?: Configuration
21799
22814
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21800
22815
  * @param {number} [page] The page number. Zero indicates no page.
21801
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.
21802
22818
  * @param {*} [options] Override http request option.
21803
22819
  * @throws {RequiredError}
21804
22820
  */
21805
- 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>;
21806
22822
  /**
21807
22823
  * Update v1alpha1/Secret
21808
22824
  * @param {string} name Name of secret
@@ -21844,10 +22860,11 @@ declare const V1alpha1SecretApiFp: (configuration?: Configuration) => {
21844
22860
  * @param {Array<string>} [labelSelector] Label selector for filtering.
21845
22861
  * @param {number} [page] The page number. Zero indicates no page.
21846
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.
21847
22864
  * @param {*} [options] Override http request option.
21848
22865
  * @throws {RequiredError}
21849
22866
  */
21850
- 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>>;
21851
22868
  /**
21852
22869
  * Update v1alpha1/Secret
21853
22870
  * @param {string} name Name of secret
@@ -21967,6 +22984,12 @@ interface V1alpha1SecretApiListv1alpha1SecretRequest {
21967
22984
  * @memberof V1alpha1SecretApiListv1alpha1Secret
21968
22985
  */
21969
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>;
21970
22993
  }
21971
22994
  /**
21972
22995
  * Request parameters for updatev1alpha1Secret operation in V1alpha1SecretApi.
@@ -22068,10 +23091,11 @@ declare const V1alpha1SettingApiAxiosParamCreator: (configuration?: Configuratio
22068
23091
  * @param {Array<string>} [labelSelector] Label selector for filtering.
22069
23092
  * @param {number} [page] The page number. Zero indicates no page.
22070
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.
22071
23095
  * @param {*} [options] Override http request option.
22072
23096
  * @throws {RequiredError}
22073
23097
  */
22074
- 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>;
22075
23099
  /**
22076
23100
  * Update v1alpha1/Setting
22077
23101
  * @param {string} name Name of setting
@@ -22113,10 +23137,11 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
22113
23137
  * @param {Array<string>} [labelSelector] Label selector for filtering.
22114
23138
  * @param {number} [page] The page number. Zero indicates no page.
22115
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.
22116
23141
  * @param {*} [options] Override http request option.
22117
23142
  * @throws {RequiredError}
22118
23143
  */
22119
- 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>>;
22120
23145
  /**
22121
23146
  * Update v1alpha1/Setting
22122
23147
  * @param {string} name Name of setting
@@ -22236,6 +23261,12 @@ interface V1alpha1SettingApiListv1alpha1SettingRequest {
22236
23261
  * @memberof V1alpha1SettingApiListv1alpha1Setting
22237
23262
  */
22238
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>;
22239
23270
  }
22240
23271
  /**
22241
23272
  * Request parameters for updatev1alpha1Setting operation in V1alpha1SettingApi.
@@ -22337,10 +23368,11 @@ declare const V1alpha1UserApiAxiosParamCreator: (configuration?: Configuration)
22337
23368
  * @param {Array<string>} [labelSelector] Label selector for filtering.
22338
23369
  * @param {number} [page] The page number. Zero indicates no page.
22339
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.
22340
23372
  * @param {*} [options] Override http request option.
22341
23373
  * @throws {RequiredError}
22342
23374
  */
22343
- 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>;
22344
23376
  /**
22345
23377
  * Update v1alpha1/User
22346
23378
  * @param {string} name Name of user
@@ -22382,10 +23414,11 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
22382
23414
  * @param {Array<string>} [labelSelector] Label selector for filtering.
22383
23415
  * @param {number} [page] The page number. Zero indicates no page.
22384
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.
22385
23418
  * @param {*} [options] Override http request option.
22386
23419
  * @throws {RequiredError}
22387
23420
  */
22388
- 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>>;
22389
23422
  /**
22390
23423
  * Update v1alpha1/User
22391
23424
  * @param {string} name Name of user
@@ -22505,6 +23538,12 @@ interface V1alpha1UserApiListv1alpha1UserRequest {
22505
23538
  * @memberof V1alpha1UserApiListv1alpha1User
22506
23539
  */
22507
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>;
22508
23547
  }
22509
23548
  /**
22510
23549
  * Request parameters for updatev1alpha1User operation in V1alpha1UserApi.
@@ -22574,4 +23613,4 @@ declare class V1alpha1UserApi extends BaseAPI {
22574
23613
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
22575
23614
  }
22576
23615
 
22577
- 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, 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 };