@halo-dev/api-client 0.0.2 → 0.0.5
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 +425 -157
- package/dist/index.d.ts +399 -246
- package/dist/index.mjs +414 -154
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,81 @@ declare class BaseAPI {
|
|
|
118
118
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @export
|
|
124
|
+
* @interface Apple
|
|
125
|
+
*/
|
|
126
|
+
interface Apple {
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {AppleSpec}
|
|
130
|
+
* @memberof Apple
|
|
131
|
+
*/
|
|
132
|
+
spec?: AppleSpec;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @memberof Apple
|
|
137
|
+
*/
|
|
138
|
+
apiVersion: string;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof Apple
|
|
143
|
+
*/
|
|
144
|
+
kind: string;
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @type {Metadata}
|
|
148
|
+
* @memberof Apple
|
|
149
|
+
*/
|
|
150
|
+
metadata: Metadata;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @export
|
|
155
|
+
* @interface AppleSpec
|
|
156
|
+
*/
|
|
157
|
+
interface AppleSpec {
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof AppleSpec
|
|
162
|
+
*/
|
|
163
|
+
varieties: string;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {string}
|
|
167
|
+
* @memberof AppleSpec
|
|
168
|
+
*/
|
|
169
|
+
color?: string;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof AppleSpec
|
|
174
|
+
*/
|
|
175
|
+
size?: string;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {string}
|
|
179
|
+
* @memberof AppleSpec
|
|
180
|
+
*/
|
|
181
|
+
producingArea?: string;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @export
|
|
186
|
+
* @interface ChangePasswordRequest
|
|
187
|
+
*/
|
|
188
|
+
interface ChangePasswordRequest {
|
|
189
|
+
/**
|
|
190
|
+
* New password.
|
|
191
|
+
* @type {string}
|
|
192
|
+
* @memberof ChangePasswordRequest
|
|
193
|
+
*/
|
|
194
|
+
password: string;
|
|
195
|
+
}
|
|
121
196
|
/**
|
|
122
197
|
*
|
|
123
198
|
* @export
|
|
@@ -752,6 +827,7 @@ interface PluginSpec {
|
|
|
752
827
|
*
|
|
753
828
|
* @type {string}
|
|
754
829
|
* @memberof PluginSpec
|
|
830
|
+
* @deprecated
|
|
755
831
|
*/
|
|
756
832
|
pluginClass?: string;
|
|
757
833
|
/**
|
|
@@ -760,12 +836,6 @@ interface PluginSpec {
|
|
|
760
836
|
* @memberof PluginSpec
|
|
761
837
|
*/
|
|
762
838
|
enabled?: boolean;
|
|
763
|
-
/**
|
|
764
|
-
*
|
|
765
|
-
* @type {Array<string>}
|
|
766
|
-
* @memberof PluginSpec
|
|
767
|
-
*/
|
|
768
|
-
extensionLocations?: Array<string>;
|
|
769
839
|
/**
|
|
770
840
|
*
|
|
771
841
|
* @type {string}
|
|
@@ -874,62 +944,6 @@ interface PolicyRule {
|
|
|
874
944
|
*/
|
|
875
945
|
verbs?: Array<string>;
|
|
876
946
|
}
|
|
877
|
-
/**
|
|
878
|
-
*
|
|
879
|
-
* @export
|
|
880
|
-
* @interface Post
|
|
881
|
-
*/
|
|
882
|
-
interface Post {
|
|
883
|
-
/**
|
|
884
|
-
*
|
|
885
|
-
* @type {PostSpec}
|
|
886
|
-
* @memberof Post
|
|
887
|
-
*/
|
|
888
|
-
spec?: PostSpec;
|
|
889
|
-
/**
|
|
890
|
-
*
|
|
891
|
-
* @type {string}
|
|
892
|
-
* @memberof Post
|
|
893
|
-
*/
|
|
894
|
-
apiVersion: string;
|
|
895
|
-
/**
|
|
896
|
-
*
|
|
897
|
-
* @type {string}
|
|
898
|
-
* @memberof Post
|
|
899
|
-
*/
|
|
900
|
-
kind: string;
|
|
901
|
-
/**
|
|
902
|
-
*
|
|
903
|
-
* @type {Metadata}
|
|
904
|
-
* @memberof Post
|
|
905
|
-
*/
|
|
906
|
-
metadata: Metadata;
|
|
907
|
-
}
|
|
908
|
-
/**
|
|
909
|
-
*
|
|
910
|
-
* @export
|
|
911
|
-
* @interface PostSpec
|
|
912
|
-
*/
|
|
913
|
-
interface PostSpec {
|
|
914
|
-
/**
|
|
915
|
-
*
|
|
916
|
-
* @type {string}
|
|
917
|
-
* @memberof PostSpec
|
|
918
|
-
*/
|
|
919
|
-
title?: string;
|
|
920
|
-
/**
|
|
921
|
-
*
|
|
922
|
-
* @type {string}
|
|
923
|
-
* @memberof PostSpec
|
|
924
|
-
*/
|
|
925
|
-
content?: string;
|
|
926
|
-
/**
|
|
927
|
-
*
|
|
928
|
-
* @type {string}
|
|
929
|
-
* @memberof PostSpec
|
|
930
|
-
*/
|
|
931
|
-
keyword?: string;
|
|
932
|
-
}
|
|
933
947
|
/**
|
|
934
948
|
*
|
|
935
949
|
* @export
|
|
@@ -1571,11 +1585,74 @@ interface UserStatus {
|
|
|
1571
1585
|
*/
|
|
1572
1586
|
loginHistories?: Array<LoginHistory>;
|
|
1573
1587
|
}
|
|
1588
|
+
/**
|
|
1589
|
+
* ApiHaloRunV1alpha1PluginApi - axios parameter creator
|
|
1590
|
+
* @export
|
|
1591
|
+
*/
|
|
1592
|
+
declare const ApiHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1593
|
+
/**
|
|
1594
|
+
* Install a plugin by uploading a Jar file.
|
|
1595
|
+
* @param {any} file
|
|
1596
|
+
* @param {*} [options] Override http request option.
|
|
1597
|
+
* @throws {RequiredError}
|
|
1598
|
+
*/
|
|
1599
|
+
installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1600
|
+
};
|
|
1601
|
+
/**
|
|
1602
|
+
* ApiHaloRunV1alpha1PluginApi - functional programming interface
|
|
1603
|
+
* @export
|
|
1604
|
+
*/
|
|
1605
|
+
declare const ApiHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
1606
|
+
/**
|
|
1607
|
+
* Install a plugin by uploading a Jar file.
|
|
1608
|
+
* @param {any} file
|
|
1609
|
+
* @param {*} [options] Override http request option.
|
|
1610
|
+
* @throws {RequiredError}
|
|
1611
|
+
*/
|
|
1612
|
+
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1613
|
+
};
|
|
1614
|
+
/**
|
|
1615
|
+
* ApiHaloRunV1alpha1PluginApi - factory interface
|
|
1616
|
+
* @export
|
|
1617
|
+
*/
|
|
1618
|
+
declare const ApiHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1619
|
+
/**
|
|
1620
|
+
* Install a plugin by uploading a Jar file.
|
|
1621
|
+
* @param {any} file
|
|
1622
|
+
* @param {*} [options] Override http request option.
|
|
1623
|
+
* @throws {RequiredError}
|
|
1624
|
+
*/
|
|
1625
|
+
installPlugin(file: any, options?: any): AxiosPromise<void>;
|
|
1626
|
+
};
|
|
1627
|
+
/**
|
|
1628
|
+
* ApiHaloRunV1alpha1PluginApi - object-oriented interface
|
|
1629
|
+
* @export
|
|
1630
|
+
* @class ApiHaloRunV1alpha1PluginApi
|
|
1631
|
+
* @extends {BaseAPI}
|
|
1632
|
+
*/
|
|
1633
|
+
declare class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
1634
|
+
/**
|
|
1635
|
+
* Install a plugin by uploading a Jar file.
|
|
1636
|
+
* @param {any} file
|
|
1637
|
+
* @param {*} [options] Override http request option.
|
|
1638
|
+
* @throws {RequiredError}
|
|
1639
|
+
* @memberof ApiHaloRunV1alpha1PluginApi
|
|
1640
|
+
*/
|
|
1641
|
+
installPlugin(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1642
|
+
}
|
|
1574
1643
|
/**
|
|
1575
1644
|
* ApiHaloRunV1alpha1UserApi - axios parameter creator
|
|
1576
1645
|
* @export
|
|
1577
1646
|
*/
|
|
1578
1647
|
declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1648
|
+
/**
|
|
1649
|
+
* Change password of user.
|
|
1650
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1651
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1652
|
+
* @param {*} [options] Override http request option.
|
|
1653
|
+
* @throws {RequiredError}
|
|
1654
|
+
*/
|
|
1655
|
+
changePassword: (name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1579
1656
|
/**
|
|
1580
1657
|
* Get current user detail
|
|
1581
1658
|
* @param {*} [options] Override http request option.
|
|
@@ -1603,6 +1680,14 @@ declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Confi
|
|
|
1603
1680
|
* @export
|
|
1604
1681
|
*/
|
|
1605
1682
|
declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
1683
|
+
/**
|
|
1684
|
+
* Change password of user.
|
|
1685
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1686
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1687
|
+
* @param {*} [options] Override http request option.
|
|
1688
|
+
* @throws {RequiredError}
|
|
1689
|
+
*/
|
|
1690
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
1606
1691
|
/**
|
|
1607
1692
|
* Get current user detail
|
|
1608
1693
|
* @param {*} [options] Override http request option.
|
|
@@ -1630,6 +1715,14 @@ declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
1630
1715
|
* @export
|
|
1631
1716
|
*/
|
|
1632
1717
|
declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1718
|
+
/**
|
|
1719
|
+
* Change password of user.
|
|
1720
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1721
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1722
|
+
* @param {*} [options] Override http request option.
|
|
1723
|
+
* @throws {RequiredError}
|
|
1724
|
+
*/
|
|
1725
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: any): AxiosPromise<User>;
|
|
1633
1726
|
/**
|
|
1634
1727
|
* Get current user detail
|
|
1635
1728
|
* @param {*} [options] Override http request option.
|
|
@@ -1659,6 +1752,15 @@ declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration,
|
|
|
1659
1752
|
* @extends {BaseAPI}
|
|
1660
1753
|
*/
|
|
1661
1754
|
declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
1755
|
+
/**
|
|
1756
|
+
* Change password of user.
|
|
1757
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1758
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1759
|
+
* @param {*} [options] Override http request option.
|
|
1760
|
+
* @throws {RequiredError}
|
|
1761
|
+
* @memberof ApiHaloRunV1alpha1UserApi
|
|
1762
|
+
*/
|
|
1763
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1662
1764
|
/**
|
|
1663
1765
|
* Get current user detail
|
|
1664
1766
|
* @param {*} [options] Override http request option.
|
|
@@ -1684,6 +1786,57 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1684
1786
|
*/
|
|
1685
1787
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1686
1788
|
}
|
|
1789
|
+
/**
|
|
1790
|
+
* ApplesControllerApi - axios parameter creator
|
|
1791
|
+
* @export
|
|
1792
|
+
*/
|
|
1793
|
+
declare const ApplesControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @param {*} [options] Override http request option.
|
|
1797
|
+
* @throws {RequiredError}
|
|
1798
|
+
*/
|
|
1799
|
+
hello: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1800
|
+
};
|
|
1801
|
+
/**
|
|
1802
|
+
* ApplesControllerApi - functional programming interface
|
|
1803
|
+
* @export
|
|
1804
|
+
*/
|
|
1805
|
+
declare const ApplesControllerApiFp: (configuration?: Configuration) => {
|
|
1806
|
+
/**
|
|
1807
|
+
*
|
|
1808
|
+
* @param {*} [options] Override http request option.
|
|
1809
|
+
* @throws {RequiredError}
|
|
1810
|
+
*/
|
|
1811
|
+
hello(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1812
|
+
};
|
|
1813
|
+
/**
|
|
1814
|
+
* ApplesControllerApi - factory interface
|
|
1815
|
+
* @export
|
|
1816
|
+
*/
|
|
1817
|
+
declare const ApplesControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1818
|
+
/**
|
|
1819
|
+
*
|
|
1820
|
+
* @param {*} [options] Override http request option.
|
|
1821
|
+
* @throws {RequiredError}
|
|
1822
|
+
*/
|
|
1823
|
+
hello(options?: any): AxiosPromise<string>;
|
|
1824
|
+
};
|
|
1825
|
+
/**
|
|
1826
|
+
* ApplesControllerApi - object-oriented interface
|
|
1827
|
+
* @export
|
|
1828
|
+
* @class ApplesControllerApi
|
|
1829
|
+
* @extends {BaseAPI}
|
|
1830
|
+
*/
|
|
1831
|
+
declare class ApplesControllerApi extends BaseAPI {
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @param {*} [options] Override http request option.
|
|
1835
|
+
* @throws {RequiredError}
|
|
1836
|
+
* @memberof ApplesControllerApi
|
|
1837
|
+
*/
|
|
1838
|
+
hello(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1839
|
+
}
|
|
1687
1840
|
/**
|
|
1688
1841
|
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
1689
1842
|
* @export
|
|
@@ -2050,189 +2203,6 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
2050
2203
|
*/
|
|
2051
2204
|
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2052
2205
|
}
|
|
2053
|
-
/**
|
|
2054
|
-
* CoreHaloRunV1alpha1PostApi - axios parameter creator
|
|
2055
|
-
* @export
|
|
2056
|
-
*/
|
|
2057
|
-
declare const CoreHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2058
|
-
/**
|
|
2059
|
-
* Create core.halo.run/v1alpha1/Post
|
|
2060
|
-
* @param {Post} [post] Fresh post
|
|
2061
|
-
* @param {*} [options] Override http request option.
|
|
2062
|
-
* @throws {RequiredError}
|
|
2063
|
-
*/
|
|
2064
|
-
createcoreHaloRunV1alpha1Post: (post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2065
|
-
/**
|
|
2066
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
2067
|
-
* @param {string} name Name of post
|
|
2068
|
-
* @param {*} [options] Override http request option.
|
|
2069
|
-
* @throws {RequiredError}
|
|
2070
|
-
*/
|
|
2071
|
-
deletecoreHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2072
|
-
/**
|
|
2073
|
-
* Get core.halo.run/v1alpha1/Post
|
|
2074
|
-
* @param {string} name Name of post
|
|
2075
|
-
* @param {*} [options] Override http request option.
|
|
2076
|
-
* @throws {RequiredError}
|
|
2077
|
-
*/
|
|
2078
|
-
getcoreHaloRunV1alpha1Post: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2079
|
-
/**
|
|
2080
|
-
* List core.halo.run/v1alpha1/Post
|
|
2081
|
-
* @param {number} [page] Page index
|
|
2082
|
-
* @param {number} [size] Size of one page
|
|
2083
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2084
|
-
* @param {*} [options] Override http request option.
|
|
2085
|
-
* @throws {RequiredError}
|
|
2086
|
-
*/
|
|
2087
|
-
listcoreHaloRunV1alpha1Post: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2088
|
-
/**
|
|
2089
|
-
* Update core.halo.run/v1alpha1/Post
|
|
2090
|
-
* @param {string} name Name of post
|
|
2091
|
-
* @param {Post} [post] Updated post
|
|
2092
|
-
* @param {*} [options] Override http request option.
|
|
2093
|
-
* @throws {RequiredError}
|
|
2094
|
-
*/
|
|
2095
|
-
updatecoreHaloRunV1alpha1Post: (name: string, post?: Post, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2096
|
-
};
|
|
2097
|
-
/**
|
|
2098
|
-
* CoreHaloRunV1alpha1PostApi - functional programming interface
|
|
2099
|
-
* @export
|
|
2100
|
-
*/
|
|
2101
|
-
declare const CoreHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
2102
|
-
/**
|
|
2103
|
-
* Create core.halo.run/v1alpha1/Post
|
|
2104
|
-
* @param {Post} [post] Fresh post
|
|
2105
|
-
* @param {*} [options] Override http request option.
|
|
2106
|
-
* @throws {RequiredError}
|
|
2107
|
-
*/
|
|
2108
|
-
createcoreHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
2109
|
-
/**
|
|
2110
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
2111
|
-
* @param {string} name Name of post
|
|
2112
|
-
* @param {*} [options] Override http request option.
|
|
2113
|
-
* @throws {RequiredError}
|
|
2114
|
-
*/
|
|
2115
|
-
deletecoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2116
|
-
/**
|
|
2117
|
-
* Get core.halo.run/v1alpha1/Post
|
|
2118
|
-
* @param {string} name Name of post
|
|
2119
|
-
* @param {*} [options] Override http request option.
|
|
2120
|
-
* @throws {RequiredError}
|
|
2121
|
-
*/
|
|
2122
|
-
getcoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
2123
|
-
/**
|
|
2124
|
-
* List core.halo.run/v1alpha1/Post
|
|
2125
|
-
* @param {number} [page] Page index
|
|
2126
|
-
* @param {number} [size] Size of one page
|
|
2127
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2128
|
-
* @param {*} [options] Override http request option.
|
|
2129
|
-
* @throws {RequiredError}
|
|
2130
|
-
*/
|
|
2131
|
-
listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2132
|
-
/**
|
|
2133
|
-
* Update core.halo.run/v1alpha1/Post
|
|
2134
|
-
* @param {string} name Name of post
|
|
2135
|
-
* @param {Post} [post] Updated post
|
|
2136
|
-
* @param {*} [options] Override http request option.
|
|
2137
|
-
* @throws {RequiredError}
|
|
2138
|
-
*/
|
|
2139
|
-
updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
2140
|
-
};
|
|
2141
|
-
/**
|
|
2142
|
-
* CoreHaloRunV1alpha1PostApi - factory interface
|
|
2143
|
-
* @export
|
|
2144
|
-
*/
|
|
2145
|
-
declare const CoreHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2146
|
-
/**
|
|
2147
|
-
* Create core.halo.run/v1alpha1/Post
|
|
2148
|
-
* @param {Post} [post] Fresh post
|
|
2149
|
-
* @param {*} [options] Override http request option.
|
|
2150
|
-
* @throws {RequiredError}
|
|
2151
|
-
*/
|
|
2152
|
-
createcoreHaloRunV1alpha1Post(post?: Post, options?: any): AxiosPromise<Post>;
|
|
2153
|
-
/**
|
|
2154
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
2155
|
-
* @param {string} name Name of post
|
|
2156
|
-
* @param {*} [options] Override http request option.
|
|
2157
|
-
* @throws {RequiredError}
|
|
2158
|
-
*/
|
|
2159
|
-
deletecoreHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<void>;
|
|
2160
|
-
/**
|
|
2161
|
-
* Get core.halo.run/v1alpha1/Post
|
|
2162
|
-
* @param {string} name Name of post
|
|
2163
|
-
* @param {*} [options] Override http request option.
|
|
2164
|
-
* @throws {RequiredError}
|
|
2165
|
-
*/
|
|
2166
|
-
getcoreHaloRunV1alpha1Post(name: string, options?: any): AxiosPromise<Post>;
|
|
2167
|
-
/**
|
|
2168
|
-
* List core.halo.run/v1alpha1/Post
|
|
2169
|
-
* @param {number} [page] Page index
|
|
2170
|
-
* @param {number} [size] Size of one page
|
|
2171
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2172
|
-
* @param {*} [options] Override http request option.
|
|
2173
|
-
* @throws {RequiredError}
|
|
2174
|
-
*/
|
|
2175
|
-
listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
2176
|
-
/**
|
|
2177
|
-
* Update core.halo.run/v1alpha1/Post
|
|
2178
|
-
* @param {string} name Name of post
|
|
2179
|
-
* @param {Post} [post] Updated post
|
|
2180
|
-
* @param {*} [options] Override http request option.
|
|
2181
|
-
* @throws {RequiredError}
|
|
2182
|
-
*/
|
|
2183
|
-
updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: any): AxiosPromise<Post>;
|
|
2184
|
-
};
|
|
2185
|
-
/**
|
|
2186
|
-
* CoreHaloRunV1alpha1PostApi - object-oriented interface
|
|
2187
|
-
* @export
|
|
2188
|
-
* @class CoreHaloRunV1alpha1PostApi
|
|
2189
|
-
* @extends {BaseAPI}
|
|
2190
|
-
*/
|
|
2191
|
-
declare class CoreHaloRunV1alpha1PostApi extends BaseAPI {
|
|
2192
|
-
/**
|
|
2193
|
-
* Create core.halo.run/v1alpha1/Post
|
|
2194
|
-
* @param {Post} [post] Fresh post
|
|
2195
|
-
* @param {*} [options] Override http request option.
|
|
2196
|
-
* @throws {RequiredError}
|
|
2197
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
2198
|
-
*/
|
|
2199
|
-
createcoreHaloRunV1alpha1Post(post?: Post, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
2200
|
-
/**
|
|
2201
|
-
* Delete core.halo.run/v1alpha1/Post
|
|
2202
|
-
* @param {string} name Name of post
|
|
2203
|
-
* @param {*} [options] Override http request option.
|
|
2204
|
-
* @throws {RequiredError}
|
|
2205
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
2206
|
-
*/
|
|
2207
|
-
deletecoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2208
|
-
/**
|
|
2209
|
-
* Get core.halo.run/v1alpha1/Post
|
|
2210
|
-
* @param {string} name Name of post
|
|
2211
|
-
* @param {*} [options] Override http request option.
|
|
2212
|
-
* @throws {RequiredError}
|
|
2213
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
2214
|
-
*/
|
|
2215
|
-
getcoreHaloRunV1alpha1Post(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
2216
|
-
/**
|
|
2217
|
-
* List core.halo.run/v1alpha1/Post
|
|
2218
|
-
* @param {number} [page] Page index
|
|
2219
|
-
* @param {number} [size] Size of one page
|
|
2220
|
-
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2221
|
-
* @param {*} [options] Override http request option.
|
|
2222
|
-
* @throws {RequiredError}
|
|
2223
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
2224
|
-
*/
|
|
2225
|
-
listcoreHaloRunV1alpha1Post(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2226
|
-
/**
|
|
2227
|
-
* Update core.halo.run/v1alpha1/Post
|
|
2228
|
-
* @param {string} name Name of post
|
|
2229
|
-
* @param {Post} [post] Updated post
|
|
2230
|
-
* @param {*} [options] Override http request option.
|
|
2231
|
-
* @throws {RequiredError}
|
|
2232
|
-
* @memberof CoreHaloRunV1alpha1PostApi
|
|
2233
|
-
*/
|
|
2234
|
-
updatecoreHaloRunV1alpha1Post(name: string, post?: Post, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
2235
|
-
}
|
|
2236
2206
|
/**
|
|
2237
2207
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
2238
2208
|
* @export
|
|
@@ -2599,6 +2569,189 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2599
2569
|
*/
|
|
2600
2570
|
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
2601
2571
|
}
|
|
2572
|
+
/**
|
|
2573
|
+
* RunHaloTemplateV1alpha1AppleApi - axios parameter creator
|
|
2574
|
+
* @export
|
|
2575
|
+
*/
|
|
2576
|
+
declare const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2577
|
+
/**
|
|
2578
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2579
|
+
* @param {Apple} [apple] Fresh apple
|
|
2580
|
+
* @param {*} [options] Override http request option.
|
|
2581
|
+
* @throws {RequiredError}
|
|
2582
|
+
*/
|
|
2583
|
+
createrunHaloTemplateV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2584
|
+
/**
|
|
2585
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2586
|
+
* @param {string} name Name of apple
|
|
2587
|
+
* @param {*} [options] Override http request option.
|
|
2588
|
+
* @throws {RequiredError}
|
|
2589
|
+
*/
|
|
2590
|
+
deleterunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2591
|
+
/**
|
|
2592
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2593
|
+
* @param {string} name Name of apple
|
|
2594
|
+
* @param {*} [options] Override http request option.
|
|
2595
|
+
* @throws {RequiredError}
|
|
2596
|
+
*/
|
|
2597
|
+
getrunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2598
|
+
/**
|
|
2599
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2600
|
+
* @param {number} [page] Page index
|
|
2601
|
+
* @param {number} [size] Size of one page
|
|
2602
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2603
|
+
* @param {*} [options] Override http request option.
|
|
2604
|
+
* @throws {RequiredError}
|
|
2605
|
+
*/
|
|
2606
|
+
listrunHaloTemplateV1alpha1Apple: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2607
|
+
/**
|
|
2608
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2609
|
+
* @param {string} name Name of apple
|
|
2610
|
+
* @param {Apple} [apple] Updated apple
|
|
2611
|
+
* @param {*} [options] Override http request option.
|
|
2612
|
+
* @throws {RequiredError}
|
|
2613
|
+
*/
|
|
2614
|
+
updaterunHaloTemplateV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2615
|
+
};
|
|
2616
|
+
/**
|
|
2617
|
+
* RunHaloTemplateV1alpha1AppleApi - functional programming interface
|
|
2618
|
+
* @export
|
|
2619
|
+
*/
|
|
2620
|
+
declare const RunHaloTemplateV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
2621
|
+
/**
|
|
2622
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2623
|
+
* @param {Apple} [apple] Fresh apple
|
|
2624
|
+
* @param {*} [options] Override http request option.
|
|
2625
|
+
* @throws {RequiredError}
|
|
2626
|
+
*/
|
|
2627
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2628
|
+
/**
|
|
2629
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2630
|
+
* @param {string} name Name of apple
|
|
2631
|
+
* @param {*} [options] Override http request option.
|
|
2632
|
+
* @throws {RequiredError}
|
|
2633
|
+
*/
|
|
2634
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2635
|
+
/**
|
|
2636
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2637
|
+
* @param {string} name Name of apple
|
|
2638
|
+
* @param {*} [options] Override http request option.
|
|
2639
|
+
* @throws {RequiredError}
|
|
2640
|
+
*/
|
|
2641
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2642
|
+
/**
|
|
2643
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2644
|
+
* @param {number} [page] Page index
|
|
2645
|
+
* @param {number} [size] Size of one page
|
|
2646
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2647
|
+
* @param {*} [options] Override http request option.
|
|
2648
|
+
* @throws {RequiredError}
|
|
2649
|
+
*/
|
|
2650
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2651
|
+
/**
|
|
2652
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2653
|
+
* @param {string} name Name of apple
|
|
2654
|
+
* @param {Apple} [apple] Updated apple
|
|
2655
|
+
* @param {*} [options] Override http request option.
|
|
2656
|
+
* @throws {RequiredError}
|
|
2657
|
+
*/
|
|
2658
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2659
|
+
};
|
|
2660
|
+
/**
|
|
2661
|
+
* RunHaloTemplateV1alpha1AppleApi - factory interface
|
|
2662
|
+
* @export
|
|
2663
|
+
*/
|
|
2664
|
+
declare const RunHaloTemplateV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2665
|
+
/**
|
|
2666
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2667
|
+
* @param {Apple} [apple] Fresh apple
|
|
2668
|
+
* @param {*} [options] Override http request option.
|
|
2669
|
+
* @throws {RequiredError}
|
|
2670
|
+
*/
|
|
2671
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2674
|
+
* @param {string} name Name of apple
|
|
2675
|
+
* @param {*} [options] Override http request option.
|
|
2676
|
+
* @throws {RequiredError}
|
|
2677
|
+
*/
|
|
2678
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
2679
|
+
/**
|
|
2680
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2681
|
+
* @param {string} name Name of apple
|
|
2682
|
+
* @param {*} [options] Override http request option.
|
|
2683
|
+
* @throws {RequiredError}
|
|
2684
|
+
*/
|
|
2685
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
2686
|
+
/**
|
|
2687
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2688
|
+
* @param {number} [page] Page index
|
|
2689
|
+
* @param {number} [size] Size of one page
|
|
2690
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2691
|
+
* @param {*} [options] Override http request option.
|
|
2692
|
+
* @throws {RequiredError}
|
|
2693
|
+
*/
|
|
2694
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
2695
|
+
/**
|
|
2696
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2697
|
+
* @param {string} name Name of apple
|
|
2698
|
+
* @param {Apple} [apple] Updated apple
|
|
2699
|
+
* @param {*} [options] Override http request option.
|
|
2700
|
+
* @throws {RequiredError}
|
|
2701
|
+
*/
|
|
2702
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2703
|
+
};
|
|
2704
|
+
/**
|
|
2705
|
+
* RunHaloTemplateV1alpha1AppleApi - object-oriented interface
|
|
2706
|
+
* @export
|
|
2707
|
+
* @class RunHaloTemplateV1alpha1AppleApi
|
|
2708
|
+
* @extends {BaseAPI}
|
|
2709
|
+
*/
|
|
2710
|
+
declare class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
2711
|
+
/**
|
|
2712
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2713
|
+
* @param {Apple} [apple] Fresh apple
|
|
2714
|
+
* @param {*} [options] Override http request option.
|
|
2715
|
+
* @throws {RequiredError}
|
|
2716
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2717
|
+
*/
|
|
2718
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2719
|
+
/**
|
|
2720
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2721
|
+
* @param {string} name Name of apple
|
|
2722
|
+
* @param {*} [options] Override http request option.
|
|
2723
|
+
* @throws {RequiredError}
|
|
2724
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2725
|
+
*/
|
|
2726
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2727
|
+
/**
|
|
2728
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2729
|
+
* @param {string} name Name of apple
|
|
2730
|
+
* @param {*} [options] Override http request option.
|
|
2731
|
+
* @throws {RequiredError}
|
|
2732
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2733
|
+
*/
|
|
2734
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2735
|
+
/**
|
|
2736
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2737
|
+
* @param {number} [page] Page index
|
|
2738
|
+
* @param {number} [size] Size of one page
|
|
2739
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
2740
|
+
* @param {*} [options] Override http request option.
|
|
2741
|
+
* @throws {RequiredError}
|
|
2742
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2743
|
+
*/
|
|
2744
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2745
|
+
/**
|
|
2746
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2747
|
+
* @param {string} name Name of apple
|
|
2748
|
+
* @param {Apple} [apple] Updated apple
|
|
2749
|
+
* @param {*} [options] Override http request option.
|
|
2750
|
+
* @throws {RequiredError}
|
|
2751
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2752
|
+
*/
|
|
2753
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2754
|
+
}
|
|
2602
2755
|
/**
|
|
2603
2756
|
* V1alpha1ConfigMapApi - axios parameter creator
|
|
2604
2757
|
* @export
|
|
@@ -3698,4 +3851,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3698
3851
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3699
3852
|
}
|
|
3700
3853
|
|
|
3701
|
-
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp,
|
|
3854
|
+
export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|