@halo-dev/api-client 0.0.28 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +428 -33
- package/dist/index.d.ts +834 -69
- package/dist/index.mjs +421 -34
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1711,16 +1711,16 @@ interface Excerpt {
|
|
|
1711
1711
|
interface Extension {
|
|
1712
1712
|
/**
|
|
1713
1713
|
*
|
|
1714
|
-
* @type {
|
|
1714
|
+
* @type {Metadata}
|
|
1715
1715
|
* @memberof Extension
|
|
1716
1716
|
*/
|
|
1717
|
-
|
|
1717
|
+
metadata: Metadata;
|
|
1718
1718
|
/**
|
|
1719
1719
|
*
|
|
1720
|
-
* @type {
|
|
1720
|
+
* @type {string}
|
|
1721
1721
|
* @memberof Extension
|
|
1722
1722
|
*/
|
|
1723
|
-
|
|
1723
|
+
apiVersion: string;
|
|
1724
1724
|
/**
|
|
1725
1725
|
*
|
|
1726
1726
|
* @type {string}
|
|
@@ -1990,6 +1990,180 @@ interface License {
|
|
|
1990
1990
|
url?: string;
|
|
1991
1991
|
}
|
|
1992
1992
|
|
|
1993
|
+
/**
|
|
1994
|
+
* Halo Next API
|
|
1995
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1996
|
+
*
|
|
1997
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1998
|
+
*
|
|
1999
|
+
*
|
|
2000
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2001
|
+
* https://openapi-generator.tech
|
|
2002
|
+
* Do not edit the class manually.
|
|
2003
|
+
*/
|
|
2004
|
+
/**
|
|
2005
|
+
*
|
|
2006
|
+
* @export
|
|
2007
|
+
* @interface LinkSpec
|
|
2008
|
+
*/
|
|
2009
|
+
interface LinkSpec {
|
|
2010
|
+
/**
|
|
2011
|
+
*
|
|
2012
|
+
* @type {string}
|
|
2013
|
+
* @memberof LinkSpec
|
|
2014
|
+
*/
|
|
2015
|
+
url: string;
|
|
2016
|
+
/**
|
|
2017
|
+
*
|
|
2018
|
+
* @type {string}
|
|
2019
|
+
* @memberof LinkSpec
|
|
2020
|
+
*/
|
|
2021
|
+
displayName: string;
|
|
2022
|
+
/**
|
|
2023
|
+
*
|
|
2024
|
+
* @type {string}
|
|
2025
|
+
* @memberof LinkSpec
|
|
2026
|
+
*/
|
|
2027
|
+
logo?: string;
|
|
2028
|
+
/**
|
|
2029
|
+
*
|
|
2030
|
+
* @type {string}
|
|
2031
|
+
* @memberof LinkSpec
|
|
2032
|
+
*/
|
|
2033
|
+
description?: string;
|
|
2034
|
+
/**
|
|
2035
|
+
*
|
|
2036
|
+
* @type {number}
|
|
2037
|
+
* @memberof LinkSpec
|
|
2038
|
+
*/
|
|
2039
|
+
priority?: number;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
/**
|
|
2043
|
+
* Halo Next API
|
|
2044
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2045
|
+
*
|
|
2046
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2047
|
+
*
|
|
2048
|
+
*
|
|
2049
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2050
|
+
* https://openapi-generator.tech
|
|
2051
|
+
* Do not edit the class manually.
|
|
2052
|
+
*/
|
|
2053
|
+
|
|
2054
|
+
/**
|
|
2055
|
+
*
|
|
2056
|
+
* @export
|
|
2057
|
+
* @interface Link
|
|
2058
|
+
*/
|
|
2059
|
+
interface Link {
|
|
2060
|
+
/**
|
|
2061
|
+
*
|
|
2062
|
+
* @type {LinkSpec}
|
|
2063
|
+
* @memberof Link
|
|
2064
|
+
*/
|
|
2065
|
+
spec?: LinkSpec;
|
|
2066
|
+
/**
|
|
2067
|
+
*
|
|
2068
|
+
* @type {string}
|
|
2069
|
+
* @memberof Link
|
|
2070
|
+
*/
|
|
2071
|
+
apiVersion: string;
|
|
2072
|
+
/**
|
|
2073
|
+
*
|
|
2074
|
+
* @type {string}
|
|
2075
|
+
* @memberof Link
|
|
2076
|
+
*/
|
|
2077
|
+
kind: string;
|
|
2078
|
+
/**
|
|
2079
|
+
*
|
|
2080
|
+
* @type {Metadata}
|
|
2081
|
+
* @memberof Link
|
|
2082
|
+
*/
|
|
2083
|
+
metadata: Metadata;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
/**
|
|
2087
|
+
* Halo Next API
|
|
2088
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2089
|
+
*
|
|
2090
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2091
|
+
*
|
|
2092
|
+
*
|
|
2093
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2094
|
+
* https://openapi-generator.tech
|
|
2095
|
+
* Do not edit the class manually.
|
|
2096
|
+
*/
|
|
2097
|
+
/**
|
|
2098
|
+
*
|
|
2099
|
+
* @export
|
|
2100
|
+
* @interface LinkGroupSpec
|
|
2101
|
+
*/
|
|
2102
|
+
interface LinkGroupSpec {
|
|
2103
|
+
/**
|
|
2104
|
+
*
|
|
2105
|
+
* @type {string}
|
|
2106
|
+
* @memberof LinkGroupSpec
|
|
2107
|
+
*/
|
|
2108
|
+
displayName: string;
|
|
2109
|
+
/**
|
|
2110
|
+
*
|
|
2111
|
+
* @type {number}
|
|
2112
|
+
* @memberof LinkGroupSpec
|
|
2113
|
+
*/
|
|
2114
|
+
priority?: number;
|
|
2115
|
+
/**
|
|
2116
|
+
* Names of links below this group.
|
|
2117
|
+
* @type {Array<string>}
|
|
2118
|
+
* @memberof LinkGroupSpec
|
|
2119
|
+
*/
|
|
2120
|
+
links?: Array<string>;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
/**
|
|
2124
|
+
* Halo Next API
|
|
2125
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2126
|
+
*
|
|
2127
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2128
|
+
*
|
|
2129
|
+
*
|
|
2130
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2131
|
+
* https://openapi-generator.tech
|
|
2132
|
+
* Do not edit the class manually.
|
|
2133
|
+
*/
|
|
2134
|
+
|
|
2135
|
+
/**
|
|
2136
|
+
*
|
|
2137
|
+
* @export
|
|
2138
|
+
* @interface LinkGroup
|
|
2139
|
+
*/
|
|
2140
|
+
interface LinkGroup {
|
|
2141
|
+
/**
|
|
2142
|
+
*
|
|
2143
|
+
* @type {LinkGroupSpec}
|
|
2144
|
+
* @memberof LinkGroup
|
|
2145
|
+
*/
|
|
2146
|
+
spec?: LinkGroupSpec;
|
|
2147
|
+
/**
|
|
2148
|
+
*
|
|
2149
|
+
* @type {string}
|
|
2150
|
+
* @memberof LinkGroup
|
|
2151
|
+
*/
|
|
2152
|
+
apiVersion: string;
|
|
2153
|
+
/**
|
|
2154
|
+
*
|
|
2155
|
+
* @type {string}
|
|
2156
|
+
* @memberof LinkGroup
|
|
2157
|
+
*/
|
|
2158
|
+
kind: string;
|
|
2159
|
+
/**
|
|
2160
|
+
*
|
|
2161
|
+
* @type {Metadata}
|
|
2162
|
+
* @memberof LinkGroup
|
|
2163
|
+
*/
|
|
2164
|
+
metadata: Metadata;
|
|
2165
|
+
}
|
|
2166
|
+
|
|
1993
2167
|
/**
|
|
1994
2168
|
* Halo Next API
|
|
1995
2169
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -6724,13 +6898,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6724
6898
|
/**
|
|
6725
6899
|
* List posts.
|
|
6726
6900
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6901
|
+
* @param {Array<string>} [contributor]
|
|
6727
6902
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6728
6903
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6729
6904
|
* @param {Array<string>} [category]
|
|
6730
|
-
* @param {Array<string>} [contributor]
|
|
6731
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6732
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6733
6905
|
* @param {Array<string>} [tag]
|
|
6906
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6907
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6734
6908
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6735
6909
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6736
6910
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6738,7 +6912,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6738
6912
|
* @param {*} [options] Override http request option.
|
|
6739
6913
|
* @throws {RequiredError}
|
|
6740
6914
|
*/
|
|
6741
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>,
|
|
6915
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6742
6916
|
/**
|
|
6743
6917
|
* Publish a post.
|
|
6744
6918
|
* @param {string} name
|
|
@@ -6770,13 +6944,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6770
6944
|
/**
|
|
6771
6945
|
* List posts.
|
|
6772
6946
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6947
|
+
* @param {Array<string>} [contributor]
|
|
6773
6948
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6774
6949
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6775
6950
|
* @param {Array<string>} [category]
|
|
6776
|
-
* @param {Array<string>} [contributor]
|
|
6777
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6778
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6779
6951
|
* @param {Array<string>} [tag]
|
|
6952
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6953
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6780
6954
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6781
6955
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6782
6956
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6784,7 +6958,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6784
6958
|
* @param {*} [options] Override http request option.
|
|
6785
6959
|
* @throws {RequiredError}
|
|
6786
6960
|
*/
|
|
6787
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>,
|
|
6961
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6788
6962
|
/**
|
|
6789
6963
|
* Publish a post.
|
|
6790
6964
|
* @param {string} name
|
|
@@ -6816,13 +6990,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6816
6990
|
/**
|
|
6817
6991
|
* List posts.
|
|
6818
6992
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6993
|
+
* @param {Array<string>} [contributor]
|
|
6819
6994
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6820
6995
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6821
6996
|
* @param {Array<string>} [category]
|
|
6822
|
-
* @param {Array<string>} [contributor]
|
|
6823
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6824
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6825
6997
|
* @param {Array<string>} [tag]
|
|
6998
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6999
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6826
7000
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6827
7001
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6828
7002
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6830,7 +7004,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6830
7004
|
* @param {*} [options] Override http request option.
|
|
6831
7005
|
* @throws {RequiredError}
|
|
6832
7006
|
*/
|
|
6833
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>,
|
|
7007
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
6834
7008
|
/**
|
|
6835
7009
|
* Publish a post.
|
|
6836
7010
|
* @param {string} name
|
|
@@ -6872,6 +7046,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6872
7046
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6873
7047
|
*/
|
|
6874
7048
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7049
|
+
/**
|
|
7050
|
+
*
|
|
7051
|
+
* @type {Array<string>}
|
|
7052
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7053
|
+
*/
|
|
7054
|
+
readonly contributor?: Array<string>;
|
|
6875
7055
|
/**
|
|
6876
7056
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6877
7057
|
* @type {boolean}
|
|
@@ -6895,13 +7075,7 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6895
7075
|
* @type {Array<string>}
|
|
6896
7076
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6897
7077
|
*/
|
|
6898
|
-
readonly
|
|
6899
|
-
/**
|
|
6900
|
-
* Posts filtered by keyword.
|
|
6901
|
-
* @type {string}
|
|
6902
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6903
|
-
*/
|
|
6904
|
-
readonly keyword?: string;
|
|
7078
|
+
readonly tag?: Array<string>;
|
|
6905
7079
|
/**
|
|
6906
7080
|
*
|
|
6907
7081
|
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
@@ -6909,11 +7083,11 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6909
7083
|
*/
|
|
6910
7084
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
6911
7085
|
/**
|
|
6912
|
-
*
|
|
6913
|
-
* @type {
|
|
7086
|
+
* Posts filtered by keyword.
|
|
7087
|
+
* @type {string}
|
|
6914
7088
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6915
7089
|
*/
|
|
6916
|
-
readonly
|
|
7090
|
+
readonly keyword?: string;
|
|
6917
7091
|
/**
|
|
6918
7092
|
* Size of one page. Zero indicates no limit.
|
|
6919
7093
|
* @type {number}
|
|
@@ -7131,7 +7305,12 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7131
7305
|
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7132
7306
|
/**
|
|
7133
7307
|
* List single pages.
|
|
7134
|
-
* @param {
|
|
7308
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7309
|
+
* @param {Array<string>} [contributor]
|
|
7310
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7311
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7312
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7313
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7135
7314
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7136
7315
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7137
7316
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -7139,7 +7318,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7139
7318
|
* @param {*} [options] Override http request option.
|
|
7140
7319
|
* @throws {RequiredError}
|
|
7141
7320
|
*/
|
|
7142
|
-
listSinglePages: (
|
|
7321
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7143
7322
|
/**
|
|
7144
7323
|
* Publish a single page.
|
|
7145
7324
|
* @param {string} name
|
|
@@ -7170,7 +7349,12 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7170
7349
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
7171
7350
|
/**
|
|
7172
7351
|
* List single pages.
|
|
7173
|
-
* @param {
|
|
7352
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7353
|
+
* @param {Array<string>} [contributor]
|
|
7354
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7355
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7356
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7357
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7174
7358
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7175
7359
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7176
7360
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -7178,7 +7362,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7178
7362
|
* @param {*} [options] Override http request option.
|
|
7179
7363
|
* @throws {RequiredError}
|
|
7180
7364
|
*/
|
|
7181
|
-
listSinglePages(
|
|
7365
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7182
7366
|
/**
|
|
7183
7367
|
* Publish a single page.
|
|
7184
7368
|
* @param {string} name
|
|
@@ -7209,7 +7393,12 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7209
7393
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
7210
7394
|
/**
|
|
7211
7395
|
* List single pages.
|
|
7212
|
-
* @param {
|
|
7396
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7397
|
+
* @param {Array<string>} [contributor]
|
|
7398
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7399
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7400
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7401
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7213
7402
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7214
7403
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7215
7404
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -7217,7 +7406,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7217
7406
|
* @param {*} [options] Override http request option.
|
|
7218
7407
|
* @throws {RequiredError}
|
|
7219
7408
|
*/
|
|
7220
|
-
listSinglePages(
|
|
7409
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7221
7410
|
/**
|
|
7222
7411
|
* Publish a single page.
|
|
7223
7412
|
* @param {string} name
|
|
@@ -7253,12 +7442,42 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
|
7253
7442
|
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
7254
7443
|
*/
|
|
7255
7444
|
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
7445
|
+
/**
|
|
7446
|
+
* SinglePage collation.
|
|
7447
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
7448
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7449
|
+
*/
|
|
7450
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7256
7451
|
/**
|
|
7257
7452
|
*
|
|
7258
7453
|
* @type {Array<string>}
|
|
7259
7454
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7260
7455
|
*/
|
|
7261
|
-
readonly
|
|
7456
|
+
readonly contributor?: Array<string>;
|
|
7457
|
+
/**
|
|
7458
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7459
|
+
* @type {boolean}
|
|
7460
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7461
|
+
*/
|
|
7462
|
+
readonly sortOrder?: boolean;
|
|
7463
|
+
/**
|
|
7464
|
+
*
|
|
7465
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7466
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7467
|
+
*/
|
|
7468
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7469
|
+
/**
|
|
7470
|
+
*
|
|
7471
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7472
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7473
|
+
*/
|
|
7474
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7475
|
+
/**
|
|
7476
|
+
* SinglePages filtered by keyword.
|
|
7477
|
+
* @type {string}
|
|
7478
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7479
|
+
*/
|
|
7480
|
+
readonly keyword?: string;
|
|
7262
7481
|
/**
|
|
7263
7482
|
* Size of one page. Zero indicates no limit.
|
|
7264
7483
|
* @type {number}
|
|
@@ -9885,33 +10104,33 @@ declare class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
9885
10104
|
}
|
|
9886
10105
|
|
|
9887
10106
|
/**
|
|
9888
|
-
*
|
|
10107
|
+
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
9889
10108
|
* @export
|
|
9890
10109
|
*/
|
|
9891
|
-
declare const
|
|
10110
|
+
declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9892
10111
|
/**
|
|
9893
|
-
* Create
|
|
9894
|
-
* @param {
|
|
10112
|
+
* Create core.halo.run/v1alpha1/Link
|
|
10113
|
+
* @param {Link} [link] Fresh link
|
|
9895
10114
|
* @param {*} [options] Override http request option.
|
|
9896
10115
|
* @throws {RequiredError}
|
|
9897
10116
|
*/
|
|
9898
|
-
|
|
10117
|
+
createcoreHaloRunV1alpha1Link: (link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9899
10118
|
/**
|
|
9900
|
-
* Delete
|
|
9901
|
-
* @param {string} name Name of
|
|
10119
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
10120
|
+
* @param {string} name Name of link
|
|
9902
10121
|
* @param {*} [options] Override http request option.
|
|
9903
10122
|
* @throws {RequiredError}
|
|
9904
10123
|
*/
|
|
9905
|
-
|
|
10124
|
+
deletecoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9906
10125
|
/**
|
|
9907
|
-
* Get
|
|
9908
|
-
* @param {string} name Name of
|
|
10126
|
+
* Get core.halo.run/v1alpha1/Link
|
|
10127
|
+
* @param {string} name Name of link
|
|
9909
10128
|
* @param {*} [options] Override http request option.
|
|
9910
10129
|
* @throws {RequiredError}
|
|
9911
10130
|
*/
|
|
9912
|
-
|
|
10131
|
+
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9913
10132
|
/**
|
|
9914
|
-
* List
|
|
10133
|
+
* List core.halo.run/v1alpha1/Link
|
|
9915
10134
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9916
10135
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9917
10136
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -9919,35 +10138,581 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
|
|
|
9919
10138
|
* @param {*} [options] Override http request option.
|
|
9920
10139
|
* @throws {RequiredError}
|
|
9921
10140
|
*/
|
|
9922
|
-
|
|
10141
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9923
10142
|
/**
|
|
9924
|
-
* Update
|
|
9925
|
-
* @param {string} name Name of
|
|
9926
|
-
* @param {
|
|
10143
|
+
* Update core.halo.run/v1alpha1/Link
|
|
10144
|
+
* @param {string} name Name of link
|
|
10145
|
+
* @param {Link} [link] Updated link
|
|
9927
10146
|
* @param {*} [options] Override http request option.
|
|
9928
10147
|
* @throws {RequiredError}
|
|
9929
10148
|
*/
|
|
9930
|
-
|
|
10149
|
+
updatecoreHaloRunV1alpha1Link: (name: string, link?: Link, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9931
10150
|
};
|
|
9932
10151
|
/**
|
|
9933
|
-
*
|
|
10152
|
+
* CoreHaloRunV1alpha1LinkApi - functional programming interface
|
|
9934
10153
|
* @export
|
|
9935
10154
|
*/
|
|
9936
|
-
declare const
|
|
10155
|
+
declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
9937
10156
|
/**
|
|
9938
|
-
* Create
|
|
9939
|
-
* @param {
|
|
10157
|
+
* Create core.halo.run/v1alpha1/Link
|
|
10158
|
+
* @param {Link} [link] Fresh link
|
|
9940
10159
|
* @param {*} [options] Override http request option.
|
|
9941
10160
|
* @throws {RequiredError}
|
|
9942
10161
|
*/
|
|
9943
|
-
|
|
10162
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
9944
10163
|
/**
|
|
9945
|
-
* Delete
|
|
9946
|
-
* @param {string} name Name of
|
|
10164
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
10165
|
+
* @param {string} name Name of link
|
|
9947
10166
|
* @param {*} [options] Override http request option.
|
|
9948
10167
|
* @throws {RequiredError}
|
|
9949
10168
|
*/
|
|
9950
|
-
|
|
10169
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10170
|
+
/**
|
|
10171
|
+
* Get core.halo.run/v1alpha1/Link
|
|
10172
|
+
* @param {string} name Name of link
|
|
10173
|
+
* @param {*} [options] Override http request option.
|
|
10174
|
+
* @throws {RequiredError}
|
|
10175
|
+
*/
|
|
10176
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
10177
|
+
/**
|
|
10178
|
+
* List core.halo.run/v1alpha1/Link
|
|
10179
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10180
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10181
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10182
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10183
|
+
* @param {*} [options] Override http request option.
|
|
10184
|
+
* @throws {RequiredError}
|
|
10185
|
+
*/
|
|
10186
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
10187
|
+
/**
|
|
10188
|
+
* Update core.halo.run/v1alpha1/Link
|
|
10189
|
+
* @param {string} name Name of link
|
|
10190
|
+
* @param {Link} [link] Updated link
|
|
10191
|
+
* @param {*} [options] Override http request option.
|
|
10192
|
+
* @throws {RequiredError}
|
|
10193
|
+
*/
|
|
10194
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
10195
|
+
};
|
|
10196
|
+
/**
|
|
10197
|
+
* CoreHaloRunV1alpha1LinkApi - factory interface
|
|
10198
|
+
* @export
|
|
10199
|
+
*/
|
|
10200
|
+
declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10201
|
+
/**
|
|
10202
|
+
* Create core.halo.run/v1alpha1/Link
|
|
10203
|
+
* @param {Link} [link] Fresh link
|
|
10204
|
+
* @param {*} [options] Override http request option.
|
|
10205
|
+
* @throws {RequiredError}
|
|
10206
|
+
*/
|
|
10207
|
+
createcoreHaloRunV1alpha1Link(link?: Link, options?: any): AxiosPromise<Link>;
|
|
10208
|
+
/**
|
|
10209
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
10210
|
+
* @param {string} name Name of link
|
|
10211
|
+
* @param {*} [options] Override http request option.
|
|
10212
|
+
* @throws {RequiredError}
|
|
10213
|
+
*/
|
|
10214
|
+
deletecoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<void>;
|
|
10215
|
+
/**
|
|
10216
|
+
* Get core.halo.run/v1alpha1/Link
|
|
10217
|
+
* @param {string} name Name of link
|
|
10218
|
+
* @param {*} [options] Override http request option.
|
|
10219
|
+
* @throws {RequiredError}
|
|
10220
|
+
*/
|
|
10221
|
+
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
10222
|
+
/**
|
|
10223
|
+
* List core.halo.run/v1alpha1/Link
|
|
10224
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10225
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10226
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10227
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10228
|
+
* @param {*} [options] Override http request option.
|
|
10229
|
+
* @throws {RequiredError}
|
|
10230
|
+
*/
|
|
10231
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
10232
|
+
/**
|
|
10233
|
+
* Update core.halo.run/v1alpha1/Link
|
|
10234
|
+
* @param {string} name Name of link
|
|
10235
|
+
* @param {Link} [link] Updated link
|
|
10236
|
+
* @param {*} [options] Override http request option.
|
|
10237
|
+
* @throws {RequiredError}
|
|
10238
|
+
*/
|
|
10239
|
+
updatecoreHaloRunV1alpha1Link(name: string, link?: Link, options?: any): AxiosPromise<Link>;
|
|
10240
|
+
};
|
|
10241
|
+
/**
|
|
10242
|
+
* Request parameters for createcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
10243
|
+
* @export
|
|
10244
|
+
* @interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest
|
|
10245
|
+
*/
|
|
10246
|
+
interface CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest {
|
|
10247
|
+
/**
|
|
10248
|
+
* Fresh link
|
|
10249
|
+
* @type {Link}
|
|
10250
|
+
* @memberof CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1Link
|
|
10251
|
+
*/
|
|
10252
|
+
readonly link?: Link;
|
|
10253
|
+
}
|
|
10254
|
+
/**
|
|
10255
|
+
* Request parameters for deletecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
10256
|
+
* @export
|
|
10257
|
+
* @interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest
|
|
10258
|
+
*/
|
|
10259
|
+
interface CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest {
|
|
10260
|
+
/**
|
|
10261
|
+
* Name of link
|
|
10262
|
+
* @type {string}
|
|
10263
|
+
* @memberof CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1Link
|
|
10264
|
+
*/
|
|
10265
|
+
readonly name: string;
|
|
10266
|
+
}
|
|
10267
|
+
/**
|
|
10268
|
+
* Request parameters for getcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
10269
|
+
* @export
|
|
10270
|
+
* @interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest
|
|
10271
|
+
*/
|
|
10272
|
+
interface CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest {
|
|
10273
|
+
/**
|
|
10274
|
+
* Name of link
|
|
10275
|
+
* @type {string}
|
|
10276
|
+
* @memberof CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1Link
|
|
10277
|
+
*/
|
|
10278
|
+
readonly name: string;
|
|
10279
|
+
}
|
|
10280
|
+
/**
|
|
10281
|
+
* Request parameters for listcoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
10282
|
+
* @export
|
|
10283
|
+
* @interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest
|
|
10284
|
+
*/
|
|
10285
|
+
interface CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest {
|
|
10286
|
+
/**
|
|
10287
|
+
* The page number. Zero indicates no page.
|
|
10288
|
+
* @type {number}
|
|
10289
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
10290
|
+
*/
|
|
10291
|
+
readonly page?: number;
|
|
10292
|
+
/**
|
|
10293
|
+
* Size of one page. Zero indicates no limit.
|
|
10294
|
+
* @type {number}
|
|
10295
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
10296
|
+
*/
|
|
10297
|
+
readonly size?: number;
|
|
10298
|
+
/**
|
|
10299
|
+
* Label selector for filtering.
|
|
10300
|
+
* @type {Array<string>}
|
|
10301
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
10302
|
+
*/
|
|
10303
|
+
readonly labelSelector?: Array<string>;
|
|
10304
|
+
/**
|
|
10305
|
+
* Field selector for filtering.
|
|
10306
|
+
* @type {Array<string>}
|
|
10307
|
+
* @memberof CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1Link
|
|
10308
|
+
*/
|
|
10309
|
+
readonly fieldSelector?: Array<string>;
|
|
10310
|
+
}
|
|
10311
|
+
/**
|
|
10312
|
+
* Request parameters for updatecoreHaloRunV1alpha1Link operation in CoreHaloRunV1alpha1LinkApi.
|
|
10313
|
+
* @export
|
|
10314
|
+
* @interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest
|
|
10315
|
+
*/
|
|
10316
|
+
interface CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest {
|
|
10317
|
+
/**
|
|
10318
|
+
* Name of link
|
|
10319
|
+
* @type {string}
|
|
10320
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
10321
|
+
*/
|
|
10322
|
+
readonly name: string;
|
|
10323
|
+
/**
|
|
10324
|
+
* Updated link
|
|
10325
|
+
* @type {Link}
|
|
10326
|
+
* @memberof CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1Link
|
|
10327
|
+
*/
|
|
10328
|
+
readonly link?: Link;
|
|
10329
|
+
}
|
|
10330
|
+
/**
|
|
10331
|
+
* CoreHaloRunV1alpha1LinkApi - object-oriented interface
|
|
10332
|
+
* @export
|
|
10333
|
+
* @class CoreHaloRunV1alpha1LinkApi
|
|
10334
|
+
* @extends {BaseAPI}
|
|
10335
|
+
*/
|
|
10336
|
+
declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
10337
|
+
/**
|
|
10338
|
+
* Create core.halo.run/v1alpha1/Link
|
|
10339
|
+
* @param {CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
10340
|
+
* @param {*} [options] Override http request option.
|
|
10341
|
+
* @throws {RequiredError}
|
|
10342
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
10343
|
+
*/
|
|
10344
|
+
createcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
10345
|
+
/**
|
|
10346
|
+
* Delete core.halo.run/v1alpha1/Link
|
|
10347
|
+
* @param {CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
10348
|
+
* @param {*} [options] Override http request option.
|
|
10349
|
+
* @throws {RequiredError}
|
|
10350
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
10351
|
+
*/
|
|
10352
|
+
deletecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10353
|
+
/**
|
|
10354
|
+
* Get core.halo.run/v1alpha1/Link
|
|
10355
|
+
* @param {CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
10356
|
+
* @param {*} [options] Override http request option.
|
|
10357
|
+
* @throws {RequiredError}
|
|
10358
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
10359
|
+
*/
|
|
10360
|
+
getcoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
10361
|
+
/**
|
|
10362
|
+
* List core.halo.run/v1alpha1/Link
|
|
10363
|
+
* @param {CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
10364
|
+
* @param {*} [options] Override http request option.
|
|
10365
|
+
* @throws {RequiredError}
|
|
10366
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
10367
|
+
*/
|
|
10368
|
+
listcoreHaloRunV1alpha1Link(requestParameters?: CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
10369
|
+
/**
|
|
10370
|
+
* Update core.halo.run/v1alpha1/Link
|
|
10371
|
+
* @param {CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest} requestParameters Request parameters.
|
|
10372
|
+
* @param {*} [options] Override http request option.
|
|
10373
|
+
* @throws {RequiredError}
|
|
10374
|
+
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
10375
|
+
*/
|
|
10376
|
+
updatecoreHaloRunV1alpha1Link(requestParameters: CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
10377
|
+
}
|
|
10378
|
+
|
|
10379
|
+
/**
|
|
10380
|
+
* CoreHaloRunV1alpha1LinkGroupApi - axios parameter creator
|
|
10381
|
+
* @export
|
|
10382
|
+
*/
|
|
10383
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10384
|
+
/**
|
|
10385
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
10386
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
10387
|
+
* @param {*} [options] Override http request option.
|
|
10388
|
+
* @throws {RequiredError}
|
|
10389
|
+
*/
|
|
10390
|
+
createcoreHaloRunV1alpha1LinkGroup: (linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10391
|
+
/**
|
|
10392
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
10393
|
+
* @param {string} name Name of linkgroup
|
|
10394
|
+
* @param {*} [options] Override http request option.
|
|
10395
|
+
* @throws {RequiredError}
|
|
10396
|
+
*/
|
|
10397
|
+
deletecoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10398
|
+
/**
|
|
10399
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
10400
|
+
* @param {string} name Name of linkgroup
|
|
10401
|
+
* @param {*} [options] Override http request option.
|
|
10402
|
+
* @throws {RequiredError}
|
|
10403
|
+
*/
|
|
10404
|
+
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10405
|
+
/**
|
|
10406
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
10407
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10408
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10409
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10410
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10411
|
+
* @param {*} [options] Override http request option.
|
|
10412
|
+
* @throws {RequiredError}
|
|
10413
|
+
*/
|
|
10414
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10415
|
+
/**
|
|
10416
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
10417
|
+
* @param {string} name Name of linkgroup
|
|
10418
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
10419
|
+
* @param {*} [options] Override http request option.
|
|
10420
|
+
* @throws {RequiredError}
|
|
10421
|
+
*/
|
|
10422
|
+
updatecoreHaloRunV1alpha1LinkGroup: (name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10423
|
+
};
|
|
10424
|
+
/**
|
|
10425
|
+
* CoreHaloRunV1alpha1LinkGroupApi - functional programming interface
|
|
10426
|
+
* @export
|
|
10427
|
+
*/
|
|
10428
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration) => {
|
|
10429
|
+
/**
|
|
10430
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
10431
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
10432
|
+
* @param {*} [options] Override http request option.
|
|
10433
|
+
* @throws {RequiredError}
|
|
10434
|
+
*/
|
|
10435
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
10436
|
+
/**
|
|
10437
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
10438
|
+
* @param {string} name Name of linkgroup
|
|
10439
|
+
* @param {*} [options] Override http request option.
|
|
10440
|
+
* @throws {RequiredError}
|
|
10441
|
+
*/
|
|
10442
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10443
|
+
/**
|
|
10444
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
10445
|
+
* @param {string} name Name of linkgroup
|
|
10446
|
+
* @param {*} [options] Override http request option.
|
|
10447
|
+
* @throws {RequiredError}
|
|
10448
|
+
*/
|
|
10449
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
10450
|
+
/**
|
|
10451
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
10452
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10453
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10454
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10455
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10456
|
+
* @param {*} [options] Override http request option.
|
|
10457
|
+
* @throws {RequiredError}
|
|
10458
|
+
*/
|
|
10459
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
10460
|
+
/**
|
|
10461
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
10462
|
+
* @param {string} name Name of linkgroup
|
|
10463
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
10464
|
+
* @param {*} [options] Override http request option.
|
|
10465
|
+
* @throws {RequiredError}
|
|
10466
|
+
*/
|
|
10467
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
10468
|
+
};
|
|
10469
|
+
/**
|
|
10470
|
+
* CoreHaloRunV1alpha1LinkGroupApi - factory interface
|
|
10471
|
+
* @export
|
|
10472
|
+
*/
|
|
10473
|
+
declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10474
|
+
/**
|
|
10475
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
10476
|
+
* @param {LinkGroup} [linkGroup] Fresh linkgroup
|
|
10477
|
+
* @param {*} [options] Override http request option.
|
|
10478
|
+
* @throws {RequiredError}
|
|
10479
|
+
*/
|
|
10480
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
10481
|
+
/**
|
|
10482
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
10483
|
+
* @param {string} name Name of linkgroup
|
|
10484
|
+
* @param {*} [options] Override http request option.
|
|
10485
|
+
* @throws {RequiredError}
|
|
10486
|
+
*/
|
|
10487
|
+
deletecoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<void>;
|
|
10488
|
+
/**
|
|
10489
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
10490
|
+
* @param {string} name Name of linkgroup
|
|
10491
|
+
* @param {*} [options] Override http request option.
|
|
10492
|
+
* @throws {RequiredError}
|
|
10493
|
+
*/
|
|
10494
|
+
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
10495
|
+
/**
|
|
10496
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
10497
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10498
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10499
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10500
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10501
|
+
* @param {*} [options] Override http request option.
|
|
10502
|
+
* @throws {RequiredError}
|
|
10503
|
+
*/
|
|
10504
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
10505
|
+
/**
|
|
10506
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
10507
|
+
* @param {string} name Name of linkgroup
|
|
10508
|
+
* @param {LinkGroup} [linkGroup] Updated linkgroup
|
|
10509
|
+
* @param {*} [options] Override http request option.
|
|
10510
|
+
* @throws {RequiredError}
|
|
10511
|
+
*/
|
|
10512
|
+
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: any): AxiosPromise<LinkGroup>;
|
|
10513
|
+
};
|
|
10514
|
+
/**
|
|
10515
|
+
* Request parameters for createcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
10516
|
+
* @export
|
|
10517
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest
|
|
10518
|
+
*/
|
|
10519
|
+
interface CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
10520
|
+
/**
|
|
10521
|
+
* Fresh linkgroup
|
|
10522
|
+
* @type {LinkGroup}
|
|
10523
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroup
|
|
10524
|
+
*/
|
|
10525
|
+
readonly linkGroup?: LinkGroup;
|
|
10526
|
+
}
|
|
10527
|
+
/**
|
|
10528
|
+
* Request parameters for deletecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
10529
|
+
* @export
|
|
10530
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest
|
|
10531
|
+
*/
|
|
10532
|
+
interface CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest {
|
|
10533
|
+
/**
|
|
10534
|
+
* Name of linkgroup
|
|
10535
|
+
* @type {string}
|
|
10536
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroup
|
|
10537
|
+
*/
|
|
10538
|
+
readonly name: string;
|
|
10539
|
+
}
|
|
10540
|
+
/**
|
|
10541
|
+
* Request parameters for getcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
10542
|
+
* @export
|
|
10543
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest
|
|
10544
|
+
*/
|
|
10545
|
+
interface CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest {
|
|
10546
|
+
/**
|
|
10547
|
+
* Name of linkgroup
|
|
10548
|
+
* @type {string}
|
|
10549
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroup
|
|
10550
|
+
*/
|
|
10551
|
+
readonly name: string;
|
|
10552
|
+
}
|
|
10553
|
+
/**
|
|
10554
|
+
* Request parameters for listcoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
10555
|
+
* @export
|
|
10556
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest
|
|
10557
|
+
*/
|
|
10558
|
+
interface CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest {
|
|
10559
|
+
/**
|
|
10560
|
+
* The page number. Zero indicates no page.
|
|
10561
|
+
* @type {number}
|
|
10562
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
10563
|
+
*/
|
|
10564
|
+
readonly page?: number;
|
|
10565
|
+
/**
|
|
10566
|
+
* Size of one page. Zero indicates no limit.
|
|
10567
|
+
* @type {number}
|
|
10568
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
10569
|
+
*/
|
|
10570
|
+
readonly size?: number;
|
|
10571
|
+
/**
|
|
10572
|
+
* Label selector for filtering.
|
|
10573
|
+
* @type {Array<string>}
|
|
10574
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
10575
|
+
*/
|
|
10576
|
+
readonly labelSelector?: Array<string>;
|
|
10577
|
+
/**
|
|
10578
|
+
* Field selector for filtering.
|
|
10579
|
+
* @type {Array<string>}
|
|
10580
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroup
|
|
10581
|
+
*/
|
|
10582
|
+
readonly fieldSelector?: Array<string>;
|
|
10583
|
+
}
|
|
10584
|
+
/**
|
|
10585
|
+
* Request parameters for updatecoreHaloRunV1alpha1LinkGroup operation in CoreHaloRunV1alpha1LinkGroupApi.
|
|
10586
|
+
* @export
|
|
10587
|
+
* @interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest
|
|
10588
|
+
*/
|
|
10589
|
+
interface CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest {
|
|
10590
|
+
/**
|
|
10591
|
+
* Name of linkgroup
|
|
10592
|
+
* @type {string}
|
|
10593
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
10594
|
+
*/
|
|
10595
|
+
readonly name: string;
|
|
10596
|
+
/**
|
|
10597
|
+
* Updated linkgroup
|
|
10598
|
+
* @type {LinkGroup}
|
|
10599
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroup
|
|
10600
|
+
*/
|
|
10601
|
+
readonly linkGroup?: LinkGroup;
|
|
10602
|
+
}
|
|
10603
|
+
/**
|
|
10604
|
+
* CoreHaloRunV1alpha1LinkGroupApi - object-oriented interface
|
|
10605
|
+
* @export
|
|
10606
|
+
* @class CoreHaloRunV1alpha1LinkGroupApi
|
|
10607
|
+
* @extends {BaseAPI}
|
|
10608
|
+
*/
|
|
10609
|
+
declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
10610
|
+
/**
|
|
10611
|
+
* Create core.halo.run/v1alpha1/LinkGroup
|
|
10612
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
10613
|
+
* @param {*} [options] Override http request option.
|
|
10614
|
+
* @throws {RequiredError}
|
|
10615
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
10616
|
+
*/
|
|
10617
|
+
createcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
10618
|
+
/**
|
|
10619
|
+
* Delete core.halo.run/v1alpha1/LinkGroup
|
|
10620
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
10621
|
+
* @param {*} [options] Override http request option.
|
|
10622
|
+
* @throws {RequiredError}
|
|
10623
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
10624
|
+
*/
|
|
10625
|
+
deletecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10626
|
+
/**
|
|
10627
|
+
* Get core.halo.run/v1alpha1/LinkGroup
|
|
10628
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
10629
|
+
* @param {*} [options] Override http request option.
|
|
10630
|
+
* @throws {RequiredError}
|
|
10631
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
10632
|
+
*/
|
|
10633
|
+
getcoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
10634
|
+
/**
|
|
10635
|
+
* List core.halo.run/v1alpha1/LinkGroup
|
|
10636
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
10637
|
+
* @param {*} [options] Override http request option.
|
|
10638
|
+
* @throws {RequiredError}
|
|
10639
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
10640
|
+
*/
|
|
10641
|
+
listcoreHaloRunV1alpha1LinkGroup(requestParameters?: CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
10642
|
+
/**
|
|
10643
|
+
* Update core.halo.run/v1alpha1/LinkGroup
|
|
10644
|
+
* @param {CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest} requestParameters Request parameters.
|
|
10645
|
+
* @param {*} [options] Override http request option.
|
|
10646
|
+
* @throws {RequiredError}
|
|
10647
|
+
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
10648
|
+
*/
|
|
10649
|
+
updatecoreHaloRunV1alpha1LinkGroup(requestParameters: CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
10650
|
+
}
|
|
10651
|
+
|
|
10652
|
+
/**
|
|
10653
|
+
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
10654
|
+
* @export
|
|
10655
|
+
*/
|
|
10656
|
+
declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10657
|
+
/**
|
|
10658
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
10659
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
10660
|
+
* @param {*} [options] Override http request option.
|
|
10661
|
+
* @throws {RequiredError}
|
|
10662
|
+
*/
|
|
10663
|
+
createpluginHaloRunV1alpha1Plugin: (plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10664
|
+
/**
|
|
10665
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
10666
|
+
* @param {string} name Name of plugin
|
|
10667
|
+
* @param {*} [options] Override http request option.
|
|
10668
|
+
* @throws {RequiredError}
|
|
10669
|
+
*/
|
|
10670
|
+
deletepluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10671
|
+
/**
|
|
10672
|
+
* Get plugin.halo.run/v1alpha1/Plugin
|
|
10673
|
+
* @param {string} name Name of plugin
|
|
10674
|
+
* @param {*} [options] Override http request option.
|
|
10675
|
+
* @throws {RequiredError}
|
|
10676
|
+
*/
|
|
10677
|
+
getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10678
|
+
/**
|
|
10679
|
+
* List plugin.halo.run/v1alpha1/Plugin
|
|
10680
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10681
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10682
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10683
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10684
|
+
* @param {*} [options] Override http request option.
|
|
10685
|
+
* @throws {RequiredError}
|
|
10686
|
+
*/
|
|
10687
|
+
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10688
|
+
/**
|
|
10689
|
+
* Update plugin.halo.run/v1alpha1/Plugin
|
|
10690
|
+
* @param {string} name Name of plugin
|
|
10691
|
+
* @param {Plugin} [plugin] Updated plugin
|
|
10692
|
+
* @param {*} [options] Override http request option.
|
|
10693
|
+
* @throws {RequiredError}
|
|
10694
|
+
*/
|
|
10695
|
+
updatepluginHaloRunV1alpha1Plugin: (name: string, plugin?: Plugin, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10696
|
+
};
|
|
10697
|
+
/**
|
|
10698
|
+
* PluginHaloRunV1alpha1PluginApi - functional programming interface
|
|
10699
|
+
* @export
|
|
10700
|
+
*/
|
|
10701
|
+
declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
10702
|
+
/**
|
|
10703
|
+
* Create plugin.halo.run/v1alpha1/Plugin
|
|
10704
|
+
* @param {Plugin} [plugin] Fresh plugin
|
|
10705
|
+
* @param {*} [options] Override http request option.
|
|
10706
|
+
* @throws {RequiredError}
|
|
10707
|
+
*/
|
|
10708
|
+
createpluginHaloRunV1alpha1Plugin(plugin?: Plugin, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
10709
|
+
/**
|
|
10710
|
+
* Delete plugin.halo.run/v1alpha1/Plugin
|
|
10711
|
+
* @param {string} name Name of plugin
|
|
10712
|
+
* @param {*} [options] Override http request option.
|
|
10713
|
+
* @throws {RequiredError}
|
|
10714
|
+
*/
|
|
10715
|
+
deletepluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9951
10716
|
/**
|
|
9952
10717
|
* Get plugin.halo.run/v1alpha1/Plugin
|
|
9953
10718
|
* @param {string} name Name of plugin
|
|
@@ -10470,8 +11235,8 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
10470
11235
|
*
|
|
10471
11236
|
* @param {string} [policy] Name of policy
|
|
10472
11237
|
* @param {string} [displayName] Display name of attachment
|
|
10473
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10474
11238
|
* @param {string} [group] Name of group
|
|
11239
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10475
11240
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10476
11241
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10477
11242
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -10479,7 +11244,7 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
10479
11244
|
* @param {*} [options] Override http request option.
|
|
10480
11245
|
* @throws {RequiredError}
|
|
10481
11246
|
*/
|
|
10482
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
11247
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10483
11248
|
/**
|
|
10484
11249
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
10485
11250
|
* @param {string} name Name of attachment
|
|
@@ -10538,8 +11303,8 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
10538
11303
|
*
|
|
10539
11304
|
* @param {string} [policy] Name of policy
|
|
10540
11305
|
* @param {string} [displayName] Display name of attachment
|
|
10541
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10542
11306
|
* @param {string} [group] Name of group
|
|
11307
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10543
11308
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10544
11309
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10545
11310
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -10547,7 +11312,7 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
10547
11312
|
* @param {*} [options] Override http request option.
|
|
10548
11313
|
* @throws {RequiredError}
|
|
10549
11314
|
*/
|
|
10550
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
11315
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
10551
11316
|
/**
|
|
10552
11317
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
10553
11318
|
* @param {string} name Name of attachment
|
|
@@ -10606,8 +11371,8 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
10606
11371
|
*
|
|
10607
11372
|
* @param {string} [policy] Name of policy
|
|
10608
11373
|
* @param {string} [displayName] Display name of attachment
|
|
10609
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10610
11374
|
* @param {string} [group] Name of group
|
|
11375
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10611
11376
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
10612
11377
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10613
11378
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -10615,7 +11380,7 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
10615
11380
|
* @param {*} [options] Override http request option.
|
|
10616
11381
|
* @throws {RequiredError}
|
|
10617
11382
|
*/
|
|
10618
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
11383
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
10619
11384
|
/**
|
|
10620
11385
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
10621
11386
|
* @param {string} name Name of attachment
|
|
@@ -10723,17 +11488,17 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
10723
11488
|
*/
|
|
10724
11489
|
readonly displayName?: string;
|
|
10725
11490
|
/**
|
|
10726
|
-
* Name of
|
|
11491
|
+
* Name of group
|
|
10727
11492
|
* @type {string}
|
|
10728
11493
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10729
11494
|
*/
|
|
10730
|
-
readonly
|
|
11495
|
+
readonly group?: string;
|
|
10731
11496
|
/**
|
|
10732
|
-
* Name of
|
|
11497
|
+
* Name of user who uploaded the attachment
|
|
10733
11498
|
* @type {string}
|
|
10734
11499
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10735
11500
|
*/
|
|
10736
|
-
readonly
|
|
11501
|
+
readonly uploadedBy?: string;
|
|
10737
11502
|
/**
|
|
10738
11503
|
* Size of one page. Zero indicates no limit.
|
|
10739
11504
|
* @type {number}
|
|
@@ -14144,4 +14909,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
14144
14909
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
14145
14910
|
}
|
|
14146
14911
|
|
|
14147
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, 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, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, 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, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|
|
14912
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, 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, ContentRequest, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, 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, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|