@halo-dev/api-client 0.0.2 → 0.0.3
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 +237 -157
- package/dist/index.d.ts +343 -240
- package/dist/index.mjs +230 -154
- package/package.json +1 -1
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
|
|
@@ -874,62 +949,6 @@ interface PolicyRule {
|
|
|
874
949
|
*/
|
|
875
950
|
verbs?: Array<string>;
|
|
876
951
|
}
|
|
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
952
|
/**
|
|
934
953
|
*
|
|
935
954
|
* @export
|
|
@@ -1576,6 +1595,14 @@ interface UserStatus {
|
|
|
1576
1595
|
* @export
|
|
1577
1596
|
*/
|
|
1578
1597
|
declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1598
|
+
/**
|
|
1599
|
+
* Change password of user.
|
|
1600
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1601
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1602
|
+
* @param {*} [options] Override http request option.
|
|
1603
|
+
* @throws {RequiredError}
|
|
1604
|
+
*/
|
|
1605
|
+
changePassword: (name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1579
1606
|
/**
|
|
1580
1607
|
* Get current user detail
|
|
1581
1608
|
* @param {*} [options] Override http request option.
|
|
@@ -1603,6 +1630,14 @@ declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Confi
|
|
|
1603
1630
|
* @export
|
|
1604
1631
|
*/
|
|
1605
1632
|
declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
1633
|
+
/**
|
|
1634
|
+
* Change password of user.
|
|
1635
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1636
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1637
|
+
* @param {*} [options] Override http request option.
|
|
1638
|
+
* @throws {RequiredError}
|
|
1639
|
+
*/
|
|
1640
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
1606
1641
|
/**
|
|
1607
1642
|
* Get current user detail
|
|
1608
1643
|
* @param {*} [options] Override http request option.
|
|
@@ -1630,6 +1665,14 @@ declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
1630
1665
|
* @export
|
|
1631
1666
|
*/
|
|
1632
1667
|
declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1668
|
+
/**
|
|
1669
|
+
* Change password of user.
|
|
1670
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1671
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1672
|
+
* @param {*} [options] Override http request option.
|
|
1673
|
+
* @throws {RequiredError}
|
|
1674
|
+
*/
|
|
1675
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: any): AxiosPromise<User>;
|
|
1633
1676
|
/**
|
|
1634
1677
|
* Get current user detail
|
|
1635
1678
|
* @param {*} [options] Override http request option.
|
|
@@ -1659,6 +1702,15 @@ declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration,
|
|
|
1659
1702
|
* @extends {BaseAPI}
|
|
1660
1703
|
*/
|
|
1661
1704
|
declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
1705
|
+
/**
|
|
1706
|
+
* Change password of user.
|
|
1707
|
+
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
1708
|
+
* @param {ChangePasswordRequest} changePasswordRequest
|
|
1709
|
+
* @param {*} [options] Override http request option.
|
|
1710
|
+
* @throws {RequiredError}
|
|
1711
|
+
* @memberof ApiHaloRunV1alpha1UserApi
|
|
1712
|
+
*/
|
|
1713
|
+
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1662
1714
|
/**
|
|
1663
1715
|
* Get current user detail
|
|
1664
1716
|
* @param {*} [options] Override http request option.
|
|
@@ -1684,6 +1736,240 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1684
1736
|
*/
|
|
1685
1737
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1686
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
* AppleGuqingXyzV1alpha1AppleApi - axios parameter creator
|
|
1741
|
+
* @export
|
|
1742
|
+
*/
|
|
1743
|
+
declare const AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1744
|
+
/**
|
|
1745
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1746
|
+
* @param {Apple} [apple] Fresh apple
|
|
1747
|
+
* @param {*} [options] Override http request option.
|
|
1748
|
+
* @throws {RequiredError}
|
|
1749
|
+
*/
|
|
1750
|
+
createappleGuqingXyzV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1751
|
+
/**
|
|
1752
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1753
|
+
* @param {string} name Name of apple
|
|
1754
|
+
* @param {*} [options] Override http request option.
|
|
1755
|
+
* @throws {RequiredError}
|
|
1756
|
+
*/
|
|
1757
|
+
deleteappleGuqingXyzV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1758
|
+
/**
|
|
1759
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1760
|
+
* @param {string} name Name of apple
|
|
1761
|
+
* @param {*} [options] Override http request option.
|
|
1762
|
+
* @throws {RequiredError}
|
|
1763
|
+
*/
|
|
1764
|
+
getappleGuqingXyzV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1765
|
+
/**
|
|
1766
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1767
|
+
* @param {number} [page] Page index
|
|
1768
|
+
* @param {number} [size] Size of one page
|
|
1769
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1770
|
+
* @param {*} [options] Override http request option.
|
|
1771
|
+
* @throws {RequiredError}
|
|
1772
|
+
*/
|
|
1773
|
+
listappleGuqingXyzV1alpha1Apple: (page?: number, size?: number, sort?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1774
|
+
/**
|
|
1775
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1776
|
+
* @param {string} name Name of apple
|
|
1777
|
+
* @param {Apple} [apple] Updated apple
|
|
1778
|
+
* @param {*} [options] Override http request option.
|
|
1779
|
+
* @throws {RequiredError}
|
|
1780
|
+
*/
|
|
1781
|
+
updateappleGuqingXyzV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1782
|
+
};
|
|
1783
|
+
/**
|
|
1784
|
+
* AppleGuqingXyzV1alpha1AppleApi - functional programming interface
|
|
1785
|
+
* @export
|
|
1786
|
+
*/
|
|
1787
|
+
declare const AppleGuqingXyzV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
1788
|
+
/**
|
|
1789
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1790
|
+
* @param {Apple} [apple] Fresh apple
|
|
1791
|
+
* @param {*} [options] Override http request option.
|
|
1792
|
+
* @throws {RequiredError}
|
|
1793
|
+
*/
|
|
1794
|
+
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1795
|
+
/**
|
|
1796
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1797
|
+
* @param {string} name Name of apple
|
|
1798
|
+
* @param {*} [options] Override http request option.
|
|
1799
|
+
* @throws {RequiredError}
|
|
1800
|
+
*/
|
|
1801
|
+
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1802
|
+
/**
|
|
1803
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1804
|
+
* @param {string} name Name of apple
|
|
1805
|
+
* @param {*} [options] Override http request option.
|
|
1806
|
+
* @throws {RequiredError}
|
|
1807
|
+
*/
|
|
1808
|
+
getappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1809
|
+
/**
|
|
1810
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1811
|
+
* @param {number} [page] Page index
|
|
1812
|
+
* @param {number} [size] Size of one page
|
|
1813
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1814
|
+
* @param {*} [options] Override http request option.
|
|
1815
|
+
* @throws {RequiredError}
|
|
1816
|
+
*/
|
|
1817
|
+
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1818
|
+
/**
|
|
1819
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1820
|
+
* @param {string} name Name of apple
|
|
1821
|
+
* @param {Apple} [apple] Updated apple
|
|
1822
|
+
* @param {*} [options] Override http request option.
|
|
1823
|
+
* @throws {RequiredError}
|
|
1824
|
+
*/
|
|
1825
|
+
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
1826
|
+
};
|
|
1827
|
+
/**
|
|
1828
|
+
* AppleGuqingXyzV1alpha1AppleApi - factory interface
|
|
1829
|
+
* @export
|
|
1830
|
+
*/
|
|
1831
|
+
declare const AppleGuqingXyzV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1832
|
+
/**
|
|
1833
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1834
|
+
* @param {Apple} [apple] Fresh apple
|
|
1835
|
+
* @param {*} [options] Override http request option.
|
|
1836
|
+
* @throws {RequiredError}
|
|
1837
|
+
*/
|
|
1838
|
+
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
1839
|
+
/**
|
|
1840
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1841
|
+
* @param {string} name Name of apple
|
|
1842
|
+
* @param {*} [options] Override http request option.
|
|
1843
|
+
* @throws {RequiredError}
|
|
1844
|
+
*/
|
|
1845
|
+
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
1846
|
+
/**
|
|
1847
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1848
|
+
* @param {string} name Name of apple
|
|
1849
|
+
* @param {*} [options] Override http request option.
|
|
1850
|
+
* @throws {RequiredError}
|
|
1851
|
+
*/
|
|
1852
|
+
getappleGuqingXyzV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
1853
|
+
/**
|
|
1854
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1855
|
+
* @param {number} [page] Page index
|
|
1856
|
+
* @param {number} [size] Size of one page
|
|
1857
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1858
|
+
* @param {*} [options] Override http request option.
|
|
1859
|
+
* @throws {RequiredError}
|
|
1860
|
+
*/
|
|
1861
|
+
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: any): AxiosPromise<string>;
|
|
1862
|
+
/**
|
|
1863
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1864
|
+
* @param {string} name Name of apple
|
|
1865
|
+
* @param {Apple} [apple] Updated apple
|
|
1866
|
+
* @param {*} [options] Override http request option.
|
|
1867
|
+
* @throws {RequiredError}
|
|
1868
|
+
*/
|
|
1869
|
+
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
1870
|
+
};
|
|
1871
|
+
/**
|
|
1872
|
+
* AppleGuqingXyzV1alpha1AppleApi - object-oriented interface
|
|
1873
|
+
* @export
|
|
1874
|
+
* @class AppleGuqingXyzV1alpha1AppleApi
|
|
1875
|
+
* @extends {BaseAPI}
|
|
1876
|
+
*/
|
|
1877
|
+
declare class AppleGuqingXyzV1alpha1AppleApi extends BaseAPI {
|
|
1878
|
+
/**
|
|
1879
|
+
* Create apple.guqing.xyz/v1alpha1/Apple
|
|
1880
|
+
* @param {Apple} [apple] Fresh apple
|
|
1881
|
+
* @param {*} [options] Override http request option.
|
|
1882
|
+
* @throws {RequiredError}
|
|
1883
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1884
|
+
*/
|
|
1885
|
+
createappleGuqingXyzV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1886
|
+
/**
|
|
1887
|
+
* Delete apple.guqing.xyz/v1alpha1/Apple
|
|
1888
|
+
* @param {string} name Name of apple
|
|
1889
|
+
* @param {*} [options] Override http request option.
|
|
1890
|
+
* @throws {RequiredError}
|
|
1891
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1892
|
+
*/
|
|
1893
|
+
deleteappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1894
|
+
/**
|
|
1895
|
+
* Get apple.guqing.xyz/v1alpha1/Apple
|
|
1896
|
+
* @param {string} name Name of apple
|
|
1897
|
+
* @param {*} [options] Override http request option.
|
|
1898
|
+
* @throws {RequiredError}
|
|
1899
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1900
|
+
*/
|
|
1901
|
+
getappleGuqingXyzV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1902
|
+
/**
|
|
1903
|
+
* List apple.guqing.xyz/v1alpha1/Apple
|
|
1904
|
+
* @param {number} [page] Page index
|
|
1905
|
+
* @param {number} [size] Size of one page
|
|
1906
|
+
* @param {string} [sort] Sort by some fields. Like metadata.name,desc
|
|
1907
|
+
* @param {*} [options] Override http request option.
|
|
1908
|
+
* @throws {RequiredError}
|
|
1909
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1910
|
+
*/
|
|
1911
|
+
listappleGuqingXyzV1alpha1Apple(page?: number, size?: number, sort?: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1912
|
+
/**
|
|
1913
|
+
* Update apple.guqing.xyz/v1alpha1/Apple
|
|
1914
|
+
* @param {string} name Name of apple
|
|
1915
|
+
* @param {Apple} [apple] Updated apple
|
|
1916
|
+
* @param {*} [options] Override http request option.
|
|
1917
|
+
* @throws {RequiredError}
|
|
1918
|
+
* @memberof AppleGuqingXyzV1alpha1AppleApi
|
|
1919
|
+
*/
|
|
1920
|
+
updateappleGuqingXyzV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
1921
|
+
}
|
|
1922
|
+
/**
|
|
1923
|
+
* ApplesControllerApi - axios parameter creator
|
|
1924
|
+
* @export
|
|
1925
|
+
*/
|
|
1926
|
+
declare const ApplesControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1927
|
+
/**
|
|
1928
|
+
*
|
|
1929
|
+
* @param {*} [options] Override http request option.
|
|
1930
|
+
* @throws {RequiredError}
|
|
1931
|
+
*/
|
|
1932
|
+
hello: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1933
|
+
};
|
|
1934
|
+
/**
|
|
1935
|
+
* ApplesControllerApi - functional programming interface
|
|
1936
|
+
* @export
|
|
1937
|
+
*/
|
|
1938
|
+
declare const ApplesControllerApiFp: (configuration?: Configuration) => {
|
|
1939
|
+
/**
|
|
1940
|
+
*
|
|
1941
|
+
* @param {*} [options] Override http request option.
|
|
1942
|
+
* @throws {RequiredError}
|
|
1943
|
+
*/
|
|
1944
|
+
hello(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1945
|
+
};
|
|
1946
|
+
/**
|
|
1947
|
+
* ApplesControllerApi - factory interface
|
|
1948
|
+
* @export
|
|
1949
|
+
*/
|
|
1950
|
+
declare const ApplesControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1951
|
+
/**
|
|
1952
|
+
*
|
|
1953
|
+
* @param {*} [options] Override http request option.
|
|
1954
|
+
* @throws {RequiredError}
|
|
1955
|
+
*/
|
|
1956
|
+
hello(options?: any): AxiosPromise<string>;
|
|
1957
|
+
};
|
|
1958
|
+
/**
|
|
1959
|
+
* ApplesControllerApi - object-oriented interface
|
|
1960
|
+
* @export
|
|
1961
|
+
* @class ApplesControllerApi
|
|
1962
|
+
* @extends {BaseAPI}
|
|
1963
|
+
*/
|
|
1964
|
+
declare class ApplesControllerApi extends BaseAPI {
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @param {*} [options] Override http request option.
|
|
1968
|
+
* @throws {RequiredError}
|
|
1969
|
+
* @memberof ApplesControllerApi
|
|
1970
|
+
*/
|
|
1971
|
+
hello(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1972
|
+
}
|
|
1687
1973
|
/**
|
|
1688
1974
|
* CoreHaloRunV1alpha1LinkApi - axios parameter creator
|
|
1689
1975
|
* @export
|
|
@@ -2050,189 +2336,6 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
2050
2336
|
*/
|
|
2051
2337
|
updatecoreHaloRunV1alpha1LinkGroup(name: string, linkGroup?: LinkGroup, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2052
2338
|
}
|
|
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
2339
|
/**
|
|
2237
2340
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
2238
2341
|
* @export
|
|
@@ -3698,4 +3801,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3698
3801
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3699
3802
|
}
|
|
3700
3803
|
|
|
3701
|
-
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp,
|
|
3804
|
+
export { ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleGuqingXyzV1alpha1AppleApi, AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator, AppleGuqingXyzV1alpha1AppleApiFactory, AppleGuqingXyzV1alpha1AppleApiFp, 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, 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 };
|