@halo-dev/api-client 0.0.3 → 0.0.6
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 +487 -266
- package/dist/index.d.ts +444 -350
- package/dist/index.mjs +480 -263
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -827,6 +827,7 @@ interface PluginSpec {
|
|
|
827
827
|
*
|
|
828
828
|
* @type {string}
|
|
829
829
|
* @memberof PluginSpec
|
|
830
|
+
* @deprecated
|
|
830
831
|
*/
|
|
831
832
|
pluginClass?: string;
|
|
832
833
|
/**
|
|
@@ -835,12 +836,6 @@ interface PluginSpec {
|
|
|
835
836
|
* @memberof PluginSpec
|
|
836
837
|
*/
|
|
837
838
|
enabled?: boolean;
|
|
838
|
-
/**
|
|
839
|
-
*
|
|
840
|
-
* @type {Array<string>}
|
|
841
|
-
* @memberof PluginSpec
|
|
842
|
-
*/
|
|
843
|
-
extensionLocations?: Array<string>;
|
|
844
839
|
/**
|
|
845
840
|
*
|
|
846
841
|
* @type {string}
|
|
@@ -1590,6 +1585,61 @@ interface UserStatus {
|
|
|
1590
1585
|
*/
|
|
1591
1586
|
loginHistories?: Array<LoginHistory>;
|
|
1592
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
|
+
}
|
|
1593
1643
|
/**
|
|
1594
1644
|
* ApiHaloRunV1alpha1UserApi - axios parameter creator
|
|
1595
1645
|
* @export
|
|
@@ -1736,189 +1786,6 @@ declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1736
1786
|
*/
|
|
1737
1787
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
1738
1788
|
}
|
|
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
1789
|
/**
|
|
1923
1790
|
* ApplesControllerApi - axios parameter creator
|
|
1924
1791
|
* @export
|
|
@@ -1998,13 +1865,14 @@ declare const CoreHaloRunV1alpha1LinkApiAxiosParamCreator: (configuration?: Conf
|
|
|
1998
1865
|
getcoreHaloRunV1alpha1Link: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1999
1866
|
/**
|
|
2000
1867
|
* List core.halo.run/v1alpha1/Link
|
|
2001
|
-
* @param {number} [page]
|
|
2002
|
-
* @param {number} [size] Size of one page
|
|
2003
|
-
* @param {string} [
|
|
1868
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
1869
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
1870
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
1871
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2004
1872
|
* @param {*} [options] Override http request option.
|
|
2005
1873
|
* @throws {RequiredError}
|
|
2006
1874
|
*/
|
|
2007
|
-
listcoreHaloRunV1alpha1Link: (page?: number, size?: number,
|
|
1875
|
+
listcoreHaloRunV1alpha1Link: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2008
1876
|
/**
|
|
2009
1877
|
* Update core.halo.run/v1alpha1/Link
|
|
2010
1878
|
* @param {string} name Name of link
|
|
@@ -2042,13 +1910,14 @@ declare const CoreHaloRunV1alpha1LinkApiFp: (configuration?: Configuration) => {
|
|
|
2042
1910
|
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Link>>;
|
|
2043
1911
|
/**
|
|
2044
1912
|
* List core.halo.run/v1alpha1/Link
|
|
2045
|
-
* @param {number} [page]
|
|
2046
|
-
* @param {number} [size] Size of one page
|
|
2047
|
-
* @param {string} [
|
|
1913
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
1914
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
1915
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
1916
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2048
1917
|
* @param {*} [options] Override http request option.
|
|
2049
1918
|
* @throws {RequiredError}
|
|
2050
1919
|
*/
|
|
2051
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number,
|
|
1920
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2052
1921
|
/**
|
|
2053
1922
|
* Update core.halo.run/v1alpha1/Link
|
|
2054
1923
|
* @param {string} name Name of link
|
|
@@ -2086,13 +1955,14 @@ declare const CoreHaloRunV1alpha1LinkApiFactory: (configuration?: Configuration,
|
|
|
2086
1955
|
getcoreHaloRunV1alpha1Link(name: string, options?: any): AxiosPromise<Link>;
|
|
2087
1956
|
/**
|
|
2088
1957
|
* List core.halo.run/v1alpha1/Link
|
|
2089
|
-
* @param {number} [page]
|
|
2090
|
-
* @param {number} [size] Size of one page
|
|
2091
|
-
* @param {string} [
|
|
1958
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
1959
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
1960
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
1961
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2092
1962
|
* @param {*} [options] Override http request option.
|
|
2093
1963
|
* @throws {RequiredError}
|
|
2094
1964
|
*/
|
|
2095
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number,
|
|
1965
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2096
1966
|
/**
|
|
2097
1967
|
* Update core.halo.run/v1alpha1/Link
|
|
2098
1968
|
* @param {string} name Name of link
|
|
@@ -2135,14 +2005,15 @@ declare class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
|
2135
2005
|
getcoreHaloRunV1alpha1Link(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Link, any>>;
|
|
2136
2006
|
/**
|
|
2137
2007
|
* List core.halo.run/v1alpha1/Link
|
|
2138
|
-
* @param {number} [page]
|
|
2139
|
-
* @param {number} [size] Size of one page
|
|
2140
|
-
* @param {string} [
|
|
2008
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2009
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2010
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2011
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2141
2012
|
* @param {*} [options] Override http request option.
|
|
2142
2013
|
* @throws {RequiredError}
|
|
2143
2014
|
* @memberof CoreHaloRunV1alpha1LinkApi
|
|
2144
2015
|
*/
|
|
2145
|
-
listcoreHaloRunV1alpha1Link(page?: number, size?: number,
|
|
2016
|
+
listcoreHaloRunV1alpha1Link(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2146
2017
|
/**
|
|
2147
2018
|
* Update core.halo.run/v1alpha1/Link
|
|
2148
2019
|
* @param {string} name Name of link
|
|
@@ -2181,13 +2052,14 @@ declare const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator: (configuration?:
|
|
|
2181
2052
|
getcoreHaloRunV1alpha1LinkGroup: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2182
2053
|
/**
|
|
2183
2054
|
* List core.halo.run/v1alpha1/LinkGroup
|
|
2184
|
-
* @param {number} [page]
|
|
2185
|
-
* @param {number} [size] Size of one page
|
|
2186
|
-
* @param {string} [
|
|
2055
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2056
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2057
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2058
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2187
2059
|
* @param {*} [options] Override http request option.
|
|
2188
2060
|
* @throws {RequiredError}
|
|
2189
2061
|
*/
|
|
2190
|
-
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number,
|
|
2062
|
+
listcoreHaloRunV1alpha1LinkGroup: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2191
2063
|
/**
|
|
2192
2064
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2193
2065
|
* @param {string} name Name of linkgroup
|
|
@@ -2225,13 +2097,14 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFp: (configuration?: Configuration)
|
|
|
2225
2097
|
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkGroup>>;
|
|
2226
2098
|
/**
|
|
2227
2099
|
* List core.halo.run/v1alpha1/LinkGroup
|
|
2228
|
-
* @param {number} [page]
|
|
2229
|
-
* @param {number} [size] Size of one page
|
|
2230
|
-
* @param {string} [
|
|
2100
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2101
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2102
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2103
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2231
2104
|
* @param {*} [options] Override http request option.
|
|
2232
2105
|
* @throws {RequiredError}
|
|
2233
2106
|
*/
|
|
2234
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number,
|
|
2107
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2235
2108
|
/**
|
|
2236
2109
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2237
2110
|
* @param {string} name Name of linkgroup
|
|
@@ -2269,13 +2142,14 @@ declare const CoreHaloRunV1alpha1LinkGroupApiFactory: (configuration?: Configura
|
|
|
2269
2142
|
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: any): AxiosPromise<LinkGroup>;
|
|
2270
2143
|
/**
|
|
2271
2144
|
* List core.halo.run/v1alpha1/LinkGroup
|
|
2272
|
-
* @param {number} [page]
|
|
2273
|
-
* @param {number} [size] Size of one page
|
|
2274
|
-
* @param {string} [
|
|
2145
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2146
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2147
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2148
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2275
2149
|
* @param {*} [options] Override http request option.
|
|
2276
2150
|
* @throws {RequiredError}
|
|
2277
2151
|
*/
|
|
2278
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number,
|
|
2152
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2279
2153
|
/**
|
|
2280
2154
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2281
2155
|
* @param {string} name Name of linkgroup
|
|
@@ -2318,14 +2192,15 @@ declare class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
2318
2192
|
getcoreHaloRunV1alpha1LinkGroup(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<LinkGroup, any>>;
|
|
2319
2193
|
/**
|
|
2320
2194
|
* List core.halo.run/v1alpha1/LinkGroup
|
|
2321
|
-
* @param {number} [page]
|
|
2322
|
-
* @param {number} [size] Size of one page
|
|
2323
|
-
* @param {string} [
|
|
2195
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2196
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2197
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2198
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2324
2199
|
* @param {*} [options] Override http request option.
|
|
2325
2200
|
* @throws {RequiredError}
|
|
2326
2201
|
* @memberof CoreHaloRunV1alpha1LinkGroupApi
|
|
2327
2202
|
*/
|
|
2328
|
-
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number,
|
|
2203
|
+
listcoreHaloRunV1alpha1LinkGroup(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2329
2204
|
/**
|
|
2330
2205
|
* Update core.halo.run/v1alpha1/LinkGroup
|
|
2331
2206
|
* @param {string} name Name of linkgroup
|
|
@@ -2364,13 +2239,14 @@ declare const PluginHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?:
|
|
|
2364
2239
|
getpluginHaloRunV1alpha1Plugin: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2365
2240
|
/**
|
|
2366
2241
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
2367
|
-
* @param {number} [page]
|
|
2368
|
-
* @param {number} [size] Size of one page
|
|
2369
|
-
* @param {string} [
|
|
2242
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2243
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2244
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2245
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2370
2246
|
* @param {*} [options] Override http request option.
|
|
2371
2247
|
* @throws {RequiredError}
|
|
2372
2248
|
*/
|
|
2373
|
-
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number,
|
|
2249
|
+
listpluginHaloRunV1alpha1Plugin: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2374
2250
|
/**
|
|
2375
2251
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
2376
2252
|
* @param {string} name Name of plugin
|
|
@@ -2408,13 +2284,14 @@ declare const PluginHaloRunV1alpha1PluginApiFp: (configuration?: Configuration)
|
|
|
2408
2284
|
getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
2409
2285
|
/**
|
|
2410
2286
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
2411
|
-
* @param {number} [page]
|
|
2412
|
-
* @param {number} [size] Size of one page
|
|
2413
|
-
* @param {string} [
|
|
2287
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2288
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2289
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2290
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2414
2291
|
* @param {*} [options] Override http request option.
|
|
2415
2292
|
* @throws {RequiredError}
|
|
2416
2293
|
*/
|
|
2417
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number,
|
|
2294
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
2418
2295
|
/**
|
|
2419
2296
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
2420
2297
|
* @param {string} name Name of plugin
|
|
@@ -2452,13 +2329,14 @@ declare const PluginHaloRunV1alpha1PluginApiFactory: (configuration?: Configurat
|
|
|
2452
2329
|
getpluginHaloRunV1alpha1Plugin(name: string, options?: any): AxiosPromise<Plugin>;
|
|
2453
2330
|
/**
|
|
2454
2331
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
2455
|
-
* @param {number} [page]
|
|
2456
|
-
* @param {number} [size] Size of one page
|
|
2457
|
-
* @param {string} [
|
|
2332
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2333
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2334
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2335
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2458
2336
|
* @param {*} [options] Override http request option.
|
|
2459
2337
|
* @throws {RequiredError}
|
|
2460
2338
|
*/
|
|
2461
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number,
|
|
2339
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
2462
2340
|
/**
|
|
2463
2341
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
2464
2342
|
* @param {string} name Name of plugin
|
|
@@ -2501,14 +2379,15 @@ declare class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
2501
2379
|
getpluginHaloRunV1alpha1Plugin(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
2502
2380
|
/**
|
|
2503
2381
|
* List plugin.halo.run/v1alpha1/Plugin
|
|
2504
|
-
* @param {number} [page]
|
|
2505
|
-
* @param {number} [size] Size of one page
|
|
2506
|
-
* @param {string} [
|
|
2382
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2383
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2384
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2385
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2507
2386
|
* @param {*} [options] Override http request option.
|
|
2508
2387
|
* @throws {RequiredError}
|
|
2509
2388
|
* @memberof PluginHaloRunV1alpha1PluginApi
|
|
2510
2389
|
*/
|
|
2511
|
-
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number,
|
|
2390
|
+
listpluginHaloRunV1alpha1Plugin(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
2512
2391
|
/**
|
|
2513
2392
|
* Update plugin.halo.run/v1alpha1/Plugin
|
|
2514
2393
|
* @param {string} name Name of plugin
|
|
@@ -2547,13 +2426,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator: (configurat
|
|
|
2547
2426
|
getpluginHaloRunV1alpha1ReverseProxy: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2548
2427
|
/**
|
|
2549
2428
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2550
|
-
* @param {number} [page]
|
|
2551
|
-
* @param {number} [size] Size of one page
|
|
2552
|
-
* @param {string} [
|
|
2429
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2430
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2431
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2432
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2553
2433
|
* @param {*} [options] Override http request option.
|
|
2554
2434
|
* @throws {RequiredError}
|
|
2555
2435
|
*/
|
|
2556
|
-
listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number,
|
|
2436
|
+
listpluginHaloRunV1alpha1ReverseProxy: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2557
2437
|
/**
|
|
2558
2438
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2559
2439
|
* @param {string} name Name of reverseproxy
|
|
@@ -2591,13 +2471,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFp: (configuration?: Configura
|
|
|
2591
2471
|
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxy>>;
|
|
2592
2472
|
/**
|
|
2593
2473
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2594
|
-
* @param {number} [page]
|
|
2595
|
-
* @param {number} [size] Size of one page
|
|
2596
|
-
* @param {string} [
|
|
2474
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2475
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2476
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2477
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2597
2478
|
* @param {*} [options] Override http request option.
|
|
2598
2479
|
* @throws {RequiredError}
|
|
2599
2480
|
*/
|
|
2600
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number,
|
|
2481
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseProxyList>>;
|
|
2601
2482
|
/**
|
|
2602
2483
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2603
2484
|
* @param {string} name Name of reverseproxy
|
|
@@ -2635,13 +2516,14 @@ declare const PluginHaloRunV1alpha1ReverseProxyApiFactory: (configuration?: Conf
|
|
|
2635
2516
|
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: any): AxiosPromise<ReverseProxy>;
|
|
2636
2517
|
/**
|
|
2637
2518
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2638
|
-
* @param {number} [page]
|
|
2639
|
-
* @param {number} [size] Size of one page
|
|
2640
|
-
* @param {string} [
|
|
2519
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2520
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2521
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2522
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2641
2523
|
* @param {*} [options] Override http request option.
|
|
2642
2524
|
* @throws {RequiredError}
|
|
2643
2525
|
*/
|
|
2644
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number,
|
|
2526
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ReverseProxyList>;
|
|
2645
2527
|
/**
|
|
2646
2528
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2647
2529
|
* @param {string} name Name of reverseproxy
|
|
@@ -2684,14 +2566,15 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2684
2566
|
getpluginHaloRunV1alpha1ReverseProxy(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
2685
2567
|
/**
|
|
2686
2568
|
* List plugin.halo.run/v1alpha1/ReverseProxy
|
|
2687
|
-
* @param {number} [page]
|
|
2688
|
-
* @param {number} [size] Size of one page
|
|
2689
|
-
* @param {string} [
|
|
2569
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2570
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2571
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2572
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2690
2573
|
* @param {*} [options] Override http request option.
|
|
2691
2574
|
* @throws {RequiredError}
|
|
2692
2575
|
* @memberof PluginHaloRunV1alpha1ReverseProxyApi
|
|
2693
2576
|
*/
|
|
2694
|
-
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number,
|
|
2577
|
+
listpluginHaloRunV1alpha1ReverseProxy(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxyList, any>>;
|
|
2695
2578
|
/**
|
|
2696
2579
|
* Update plugin.halo.run/v1alpha1/ReverseProxy
|
|
2697
2580
|
* @param {string} name Name of reverseproxy
|
|
@@ -2702,6 +2585,193 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
2702
2585
|
*/
|
|
2703
2586
|
updatepluginHaloRunV1alpha1ReverseProxy(name: string, reverseProxy?: ReverseProxy, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
2704
2587
|
}
|
|
2588
|
+
/**
|
|
2589
|
+
* RunHaloTemplateV1alpha1AppleApi - axios parameter creator
|
|
2590
|
+
* @export
|
|
2591
|
+
*/
|
|
2592
|
+
declare const RunHaloTemplateV1alpha1AppleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2593
|
+
/**
|
|
2594
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2595
|
+
* @param {Apple} [apple] Fresh apple
|
|
2596
|
+
* @param {*} [options] Override http request option.
|
|
2597
|
+
* @throws {RequiredError}
|
|
2598
|
+
*/
|
|
2599
|
+
createrunHaloTemplateV1alpha1Apple: (apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2600
|
+
/**
|
|
2601
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2602
|
+
* @param {string} name Name of apple
|
|
2603
|
+
* @param {*} [options] Override http request option.
|
|
2604
|
+
* @throws {RequiredError}
|
|
2605
|
+
*/
|
|
2606
|
+
deleterunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2607
|
+
/**
|
|
2608
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2609
|
+
* @param {string} name Name of apple
|
|
2610
|
+
* @param {*} [options] Override http request option.
|
|
2611
|
+
* @throws {RequiredError}
|
|
2612
|
+
*/
|
|
2613
|
+
getrunHaloTemplateV1alpha1Apple: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2614
|
+
/**
|
|
2615
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2616
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2617
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2618
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2619
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2620
|
+
* @param {*} [options] Override http request option.
|
|
2621
|
+
* @throws {RequiredError}
|
|
2622
|
+
*/
|
|
2623
|
+
listrunHaloTemplateV1alpha1Apple: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2624
|
+
/**
|
|
2625
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2626
|
+
* @param {string} name Name of apple
|
|
2627
|
+
* @param {Apple} [apple] Updated apple
|
|
2628
|
+
* @param {*} [options] Override http request option.
|
|
2629
|
+
* @throws {RequiredError}
|
|
2630
|
+
*/
|
|
2631
|
+
updaterunHaloTemplateV1alpha1Apple: (name: string, apple?: Apple, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2632
|
+
};
|
|
2633
|
+
/**
|
|
2634
|
+
* RunHaloTemplateV1alpha1AppleApi - functional programming interface
|
|
2635
|
+
* @export
|
|
2636
|
+
*/
|
|
2637
|
+
declare const RunHaloTemplateV1alpha1AppleApiFp: (configuration?: Configuration) => {
|
|
2638
|
+
/**
|
|
2639
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2640
|
+
* @param {Apple} [apple] Fresh apple
|
|
2641
|
+
* @param {*} [options] Override http request option.
|
|
2642
|
+
* @throws {RequiredError}
|
|
2643
|
+
*/
|
|
2644
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2645
|
+
/**
|
|
2646
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2647
|
+
* @param {string} name Name of apple
|
|
2648
|
+
* @param {*} [options] Override http request option.
|
|
2649
|
+
* @throws {RequiredError}
|
|
2650
|
+
*/
|
|
2651
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2652
|
+
/**
|
|
2653
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2654
|
+
* @param {string} name Name of apple
|
|
2655
|
+
* @param {*} [options] Override http request option.
|
|
2656
|
+
* @throws {RequiredError}
|
|
2657
|
+
*/
|
|
2658
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2659
|
+
/**
|
|
2660
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2661
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2662
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2663
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2664
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2665
|
+
* @param {*} [options] Override http request option.
|
|
2666
|
+
* @throws {RequiredError}
|
|
2667
|
+
*/
|
|
2668
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2669
|
+
/**
|
|
2670
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2671
|
+
* @param {string} name Name of apple
|
|
2672
|
+
* @param {Apple} [apple] Updated apple
|
|
2673
|
+
* @param {*} [options] Override http request option.
|
|
2674
|
+
* @throws {RequiredError}
|
|
2675
|
+
*/
|
|
2676
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apple>>;
|
|
2677
|
+
};
|
|
2678
|
+
/**
|
|
2679
|
+
* RunHaloTemplateV1alpha1AppleApi - factory interface
|
|
2680
|
+
* @export
|
|
2681
|
+
*/
|
|
2682
|
+
declare const RunHaloTemplateV1alpha1AppleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2683
|
+
/**
|
|
2684
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2685
|
+
* @param {Apple} [apple] Fresh apple
|
|
2686
|
+
* @param {*} [options] Override http request option.
|
|
2687
|
+
* @throws {RequiredError}
|
|
2688
|
+
*/
|
|
2689
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2690
|
+
/**
|
|
2691
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2692
|
+
* @param {string} name Name of apple
|
|
2693
|
+
* @param {*} [options] Override http request option.
|
|
2694
|
+
* @throws {RequiredError}
|
|
2695
|
+
*/
|
|
2696
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<void>;
|
|
2697
|
+
/**
|
|
2698
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2699
|
+
* @param {string} name Name of apple
|
|
2700
|
+
* @param {*} [options] Override http request option.
|
|
2701
|
+
* @throws {RequiredError}
|
|
2702
|
+
*/
|
|
2703
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: any): AxiosPromise<Apple>;
|
|
2704
|
+
/**
|
|
2705
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2706
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2707
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2708
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2709
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2710
|
+
* @param {*} [options] Override http request option.
|
|
2711
|
+
* @throws {RequiredError}
|
|
2712
|
+
*/
|
|
2713
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2714
|
+
/**
|
|
2715
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2716
|
+
* @param {string} name Name of apple
|
|
2717
|
+
* @param {Apple} [apple] Updated apple
|
|
2718
|
+
* @param {*} [options] Override http request option.
|
|
2719
|
+
* @throws {RequiredError}
|
|
2720
|
+
*/
|
|
2721
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: any): AxiosPromise<Apple>;
|
|
2722
|
+
};
|
|
2723
|
+
/**
|
|
2724
|
+
* RunHaloTemplateV1alpha1AppleApi - object-oriented interface
|
|
2725
|
+
* @export
|
|
2726
|
+
* @class RunHaloTemplateV1alpha1AppleApi
|
|
2727
|
+
* @extends {BaseAPI}
|
|
2728
|
+
*/
|
|
2729
|
+
declare class RunHaloTemplateV1alpha1AppleApi extends BaseAPI {
|
|
2730
|
+
/**
|
|
2731
|
+
* Create run.halo.template/v1alpha1/Apple
|
|
2732
|
+
* @param {Apple} [apple] Fresh apple
|
|
2733
|
+
* @param {*} [options] Override http request option.
|
|
2734
|
+
* @throws {RequiredError}
|
|
2735
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2736
|
+
*/
|
|
2737
|
+
createrunHaloTemplateV1alpha1Apple(apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2738
|
+
/**
|
|
2739
|
+
* Delete run.halo.template/v1alpha1/Apple
|
|
2740
|
+
* @param {string} name Name of apple
|
|
2741
|
+
* @param {*} [options] Override http request option.
|
|
2742
|
+
* @throws {RequiredError}
|
|
2743
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2744
|
+
*/
|
|
2745
|
+
deleterunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2746
|
+
/**
|
|
2747
|
+
* Get run.halo.template/v1alpha1/Apple
|
|
2748
|
+
* @param {string} name Name of apple
|
|
2749
|
+
* @param {*} [options] Override http request option.
|
|
2750
|
+
* @throws {RequiredError}
|
|
2751
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2752
|
+
*/
|
|
2753
|
+
getrunHaloTemplateV1alpha1Apple(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2754
|
+
/**
|
|
2755
|
+
* List run.halo.template/v1alpha1/Apple
|
|
2756
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2757
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2758
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2759
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2760
|
+
* @param {*} [options] Override http request option.
|
|
2761
|
+
* @throws {RequiredError}
|
|
2762
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2763
|
+
*/
|
|
2764
|
+
listrunHaloTemplateV1alpha1Apple(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
2765
|
+
/**
|
|
2766
|
+
* Update run.halo.template/v1alpha1/Apple
|
|
2767
|
+
* @param {string} name Name of apple
|
|
2768
|
+
* @param {Apple} [apple] Updated apple
|
|
2769
|
+
* @param {*} [options] Override http request option.
|
|
2770
|
+
* @throws {RequiredError}
|
|
2771
|
+
* @memberof RunHaloTemplateV1alpha1AppleApi
|
|
2772
|
+
*/
|
|
2773
|
+
updaterunHaloTemplateV1alpha1Apple(name: string, apple?: Apple, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Apple, any>>;
|
|
2774
|
+
}
|
|
2705
2775
|
/**
|
|
2706
2776
|
* V1alpha1ConfigMapApi - axios parameter creator
|
|
2707
2777
|
* @export
|
|
@@ -2730,13 +2800,14 @@ declare const V1alpha1ConfigMapApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2730
2800
|
getv1alpha1ConfigMap: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2731
2801
|
/**
|
|
2732
2802
|
* List v1alpha1/ConfigMap
|
|
2733
|
-
* @param {number} [page]
|
|
2734
|
-
* @param {number} [size] Size of one page
|
|
2735
|
-
* @param {string} [
|
|
2803
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2804
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2805
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2806
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2736
2807
|
* @param {*} [options] Override http request option.
|
|
2737
2808
|
* @throws {RequiredError}
|
|
2738
2809
|
*/
|
|
2739
|
-
listv1alpha1ConfigMap: (page?: number, size?: number,
|
|
2810
|
+
listv1alpha1ConfigMap: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2740
2811
|
/**
|
|
2741
2812
|
* Update v1alpha1/ConfigMap
|
|
2742
2813
|
* @param {string} name Name of configmap
|
|
@@ -2774,13 +2845,14 @@ declare const V1alpha1ConfigMapApiFp: (configuration?: Configuration) => {
|
|
|
2774
2845
|
getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
2775
2846
|
/**
|
|
2776
2847
|
* List v1alpha1/ConfigMap
|
|
2777
|
-
* @param {number} [page]
|
|
2778
|
-
* @param {number} [size] Size of one page
|
|
2779
|
-
* @param {string} [
|
|
2848
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2849
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2850
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2851
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2780
2852
|
* @param {*} [options] Override http request option.
|
|
2781
2853
|
* @throws {RequiredError}
|
|
2782
2854
|
*/
|
|
2783
|
-
listv1alpha1ConfigMap(page?: number, size?: number,
|
|
2855
|
+
listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMapList>>;
|
|
2784
2856
|
/**
|
|
2785
2857
|
* Update v1alpha1/ConfigMap
|
|
2786
2858
|
* @param {string} name Name of configmap
|
|
@@ -2818,13 +2890,14 @@ declare const V1alpha1ConfigMapApiFactory: (configuration?: Configuration, baseP
|
|
|
2818
2890
|
getv1alpha1ConfigMap(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
2819
2891
|
/**
|
|
2820
2892
|
* List v1alpha1/ConfigMap
|
|
2821
|
-
* @param {number} [page]
|
|
2822
|
-
* @param {number} [size] Size of one page
|
|
2823
|
-
* @param {string} [
|
|
2893
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2894
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2895
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2896
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2824
2897
|
* @param {*} [options] Override http request option.
|
|
2825
2898
|
* @throws {RequiredError}
|
|
2826
2899
|
*/
|
|
2827
|
-
listv1alpha1ConfigMap(page?: number, size?: number,
|
|
2900
|
+
listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ConfigMapList>;
|
|
2828
2901
|
/**
|
|
2829
2902
|
* Update v1alpha1/ConfigMap
|
|
2830
2903
|
* @param {string} name Name of configmap
|
|
@@ -2867,14 +2940,15 @@ declare class V1alpha1ConfigMapApi extends BaseAPI {
|
|
|
2867
2940
|
getv1alpha1ConfigMap(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
2868
2941
|
/**
|
|
2869
2942
|
* List v1alpha1/ConfigMap
|
|
2870
|
-
* @param {number} [page]
|
|
2871
|
-
* @param {number} [size] Size of one page
|
|
2872
|
-
* @param {string} [
|
|
2943
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2944
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2945
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2946
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2873
2947
|
* @param {*} [options] Override http request option.
|
|
2874
2948
|
* @throws {RequiredError}
|
|
2875
2949
|
* @memberof V1alpha1ConfigMapApi
|
|
2876
2950
|
*/
|
|
2877
|
-
listv1alpha1ConfigMap(page?: number, size?: number,
|
|
2951
|
+
listv1alpha1ConfigMap(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMapList, any>>;
|
|
2878
2952
|
/**
|
|
2879
2953
|
* Update v1alpha1/ConfigMap
|
|
2880
2954
|
* @param {string} name Name of configmap
|
|
@@ -2913,13 +2987,14 @@ declare const V1alpha1PersonalAccessTokenApiAxiosParamCreator: (configuration?:
|
|
|
2913
2987
|
getv1alpha1PersonalAccessToken: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2914
2988
|
/**
|
|
2915
2989
|
* List v1alpha1/PersonalAccessToken
|
|
2916
|
-
* @param {number} [page]
|
|
2917
|
-
* @param {number} [size] Size of one page
|
|
2918
|
-
* @param {string} [
|
|
2990
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
2991
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
2992
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
2993
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2919
2994
|
* @param {*} [options] Override http request option.
|
|
2920
2995
|
* @throws {RequiredError}
|
|
2921
2996
|
*/
|
|
2922
|
-
listv1alpha1PersonalAccessToken: (page?: number, size?: number,
|
|
2997
|
+
listv1alpha1PersonalAccessToken: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2923
2998
|
/**
|
|
2924
2999
|
* Update v1alpha1/PersonalAccessToken
|
|
2925
3000
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -2957,13 +3032,14 @@ declare const V1alpha1PersonalAccessTokenApiFp: (configuration?: Configuration)
|
|
|
2957
3032
|
getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessToken>>;
|
|
2958
3033
|
/**
|
|
2959
3034
|
* List v1alpha1/PersonalAccessToken
|
|
2960
|
-
* @param {number} [page]
|
|
2961
|
-
* @param {number} [size] Size of one page
|
|
2962
|
-
* @param {string} [
|
|
3035
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3036
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3037
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3038
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
2963
3039
|
* @param {*} [options] Override http request option.
|
|
2964
3040
|
* @throws {RequiredError}
|
|
2965
3041
|
*/
|
|
2966
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number,
|
|
3042
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonalAccessTokenList>>;
|
|
2967
3043
|
/**
|
|
2968
3044
|
* Update v1alpha1/PersonalAccessToken
|
|
2969
3045
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -3001,13 +3077,14 @@ declare const V1alpha1PersonalAccessTokenApiFactory: (configuration?: Configurat
|
|
|
3001
3077
|
getv1alpha1PersonalAccessToken(name: string, options?: any): AxiosPromise<PersonalAccessToken>;
|
|
3002
3078
|
/**
|
|
3003
3079
|
* List v1alpha1/PersonalAccessToken
|
|
3004
|
-
* @param {number} [page]
|
|
3005
|
-
* @param {number} [size] Size of one page
|
|
3006
|
-
* @param {string} [
|
|
3080
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3081
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3082
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3083
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3007
3084
|
* @param {*} [options] Override http request option.
|
|
3008
3085
|
* @throws {RequiredError}
|
|
3009
3086
|
*/
|
|
3010
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number,
|
|
3087
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PersonalAccessTokenList>;
|
|
3011
3088
|
/**
|
|
3012
3089
|
* Update v1alpha1/PersonalAccessToken
|
|
3013
3090
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -3050,14 +3127,15 @@ declare class V1alpha1PersonalAccessTokenApi extends BaseAPI {
|
|
|
3050
3127
|
getv1alpha1PersonalAccessToken(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessToken, any>>;
|
|
3051
3128
|
/**
|
|
3052
3129
|
* List v1alpha1/PersonalAccessToken
|
|
3053
|
-
* @param {number} [page]
|
|
3054
|
-
* @param {number} [size] Size of one page
|
|
3055
|
-
* @param {string} [
|
|
3130
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3131
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3132
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3133
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3056
3134
|
* @param {*} [options] Override http request option.
|
|
3057
3135
|
* @throws {RequiredError}
|
|
3058
3136
|
* @memberof V1alpha1PersonalAccessTokenApi
|
|
3059
3137
|
*/
|
|
3060
|
-
listv1alpha1PersonalAccessToken(page?: number, size?: number,
|
|
3138
|
+
listv1alpha1PersonalAccessToken(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PersonalAccessTokenList, any>>;
|
|
3061
3139
|
/**
|
|
3062
3140
|
* Update v1alpha1/PersonalAccessToken
|
|
3063
3141
|
* @param {string} name Name of personalaccesstoken
|
|
@@ -3096,13 +3174,14 @@ declare const V1alpha1RoleApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3096
3174
|
getv1alpha1Role: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3097
3175
|
/**
|
|
3098
3176
|
* List v1alpha1/Role
|
|
3099
|
-
* @param {number} [page]
|
|
3100
|
-
* @param {number} [size] Size of one page
|
|
3101
|
-
* @param {string} [
|
|
3177
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3178
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3179
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3180
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3102
3181
|
* @param {*} [options] Override http request option.
|
|
3103
3182
|
* @throws {RequiredError}
|
|
3104
3183
|
*/
|
|
3105
|
-
listv1alpha1Role: (page?: number, size?: number,
|
|
3184
|
+
listv1alpha1Role: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3106
3185
|
/**
|
|
3107
3186
|
* Update v1alpha1/Role
|
|
3108
3187
|
* @param {string} name Name of role
|
|
@@ -3140,13 +3219,14 @@ declare const V1alpha1RoleApiFp: (configuration?: Configuration) => {
|
|
|
3140
3219
|
getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
|
|
3141
3220
|
/**
|
|
3142
3221
|
* List v1alpha1/Role
|
|
3143
|
-
* @param {number} [page]
|
|
3144
|
-
* @param {number} [size] Size of one page
|
|
3145
|
-
* @param {string} [
|
|
3222
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3223
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3224
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3225
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3146
3226
|
* @param {*} [options] Override http request option.
|
|
3147
3227
|
* @throws {RequiredError}
|
|
3148
3228
|
*/
|
|
3149
|
-
listv1alpha1Role(page?: number, size?: number,
|
|
3229
|
+
listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
|
|
3150
3230
|
/**
|
|
3151
3231
|
* Update v1alpha1/Role
|
|
3152
3232
|
* @param {string} name Name of role
|
|
@@ -3184,13 +3264,14 @@ declare const V1alpha1RoleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3184
3264
|
getv1alpha1Role(name: string, options?: any): AxiosPromise<Role>;
|
|
3185
3265
|
/**
|
|
3186
3266
|
* List v1alpha1/Role
|
|
3187
|
-
* @param {number} [page]
|
|
3188
|
-
* @param {number} [size] Size of one page
|
|
3189
|
-
* @param {string} [
|
|
3267
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3268
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3269
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3270
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3190
3271
|
* @param {*} [options] Override http request option.
|
|
3191
3272
|
* @throws {RequiredError}
|
|
3192
3273
|
*/
|
|
3193
|
-
listv1alpha1Role(page?: number, size?: number,
|
|
3274
|
+
listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<RoleList>;
|
|
3194
3275
|
/**
|
|
3195
3276
|
* Update v1alpha1/Role
|
|
3196
3277
|
* @param {string} name Name of role
|
|
@@ -3233,14 +3314,15 @@ declare class V1alpha1RoleApi extends BaseAPI {
|
|
|
3233
3314
|
getv1alpha1Role(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
|
|
3234
3315
|
/**
|
|
3235
3316
|
* List v1alpha1/Role
|
|
3236
|
-
* @param {number} [page]
|
|
3237
|
-
* @param {number} [size] Size of one page
|
|
3238
|
-
* @param {string} [
|
|
3317
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3318
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3319
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3320
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3239
3321
|
* @param {*} [options] Override http request option.
|
|
3240
3322
|
* @throws {RequiredError}
|
|
3241
3323
|
* @memberof V1alpha1RoleApi
|
|
3242
3324
|
*/
|
|
3243
|
-
listv1alpha1Role(page?: number, size?: number,
|
|
3325
|
+
listv1alpha1Role(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleList, any>>;
|
|
3244
3326
|
/**
|
|
3245
3327
|
* Update v1alpha1/Role
|
|
3246
3328
|
* @param {string} name Name of role
|
|
@@ -3279,13 +3361,14 @@ declare const V1alpha1RoleBindingApiAxiosParamCreator: (configuration?: Configur
|
|
|
3279
3361
|
getv1alpha1RoleBinding: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3280
3362
|
/**
|
|
3281
3363
|
* List v1alpha1/RoleBinding
|
|
3282
|
-
* @param {number} [page]
|
|
3283
|
-
* @param {number} [size] Size of one page
|
|
3284
|
-
* @param {string} [
|
|
3364
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3365
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3366
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3367
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3285
3368
|
* @param {*} [options] Override http request option.
|
|
3286
3369
|
* @throws {RequiredError}
|
|
3287
3370
|
*/
|
|
3288
|
-
listv1alpha1RoleBinding: (page?: number, size?: number,
|
|
3371
|
+
listv1alpha1RoleBinding: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3289
3372
|
/**
|
|
3290
3373
|
* Update v1alpha1/RoleBinding
|
|
3291
3374
|
* @param {string} name Name of rolebinding
|
|
@@ -3323,13 +3406,14 @@ declare const V1alpha1RoleBindingApiFp: (configuration?: Configuration) => {
|
|
|
3323
3406
|
getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBinding>>;
|
|
3324
3407
|
/**
|
|
3325
3408
|
* List v1alpha1/RoleBinding
|
|
3326
|
-
* @param {number} [page]
|
|
3327
|
-
* @param {number} [size] Size of one page
|
|
3328
|
-
* @param {string} [
|
|
3409
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3410
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3411
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3412
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3329
3413
|
* @param {*} [options] Override http request option.
|
|
3330
3414
|
* @throws {RequiredError}
|
|
3331
3415
|
*/
|
|
3332
|
-
listv1alpha1RoleBinding(page?: number, size?: number,
|
|
3416
|
+
listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBindingList>>;
|
|
3333
3417
|
/**
|
|
3334
3418
|
* Update v1alpha1/RoleBinding
|
|
3335
3419
|
* @param {string} name Name of rolebinding
|
|
@@ -3367,13 +3451,14 @@ declare const V1alpha1RoleBindingApiFactory: (configuration?: Configuration, bas
|
|
|
3367
3451
|
getv1alpha1RoleBinding(name: string, options?: any): AxiosPromise<RoleBinding>;
|
|
3368
3452
|
/**
|
|
3369
3453
|
* List v1alpha1/RoleBinding
|
|
3370
|
-
* @param {number} [page]
|
|
3371
|
-
* @param {number} [size] Size of one page
|
|
3372
|
-
* @param {string} [
|
|
3454
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3455
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3456
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3457
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3373
3458
|
* @param {*} [options] Override http request option.
|
|
3374
3459
|
* @throws {RequiredError}
|
|
3375
3460
|
*/
|
|
3376
|
-
listv1alpha1RoleBinding(page?: number, size?: number,
|
|
3461
|
+
listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<RoleBindingList>;
|
|
3377
3462
|
/**
|
|
3378
3463
|
* Update v1alpha1/RoleBinding
|
|
3379
3464
|
* @param {string} name Name of rolebinding
|
|
@@ -3416,14 +3501,15 @@ declare class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
3416
3501
|
getv1alpha1RoleBinding(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
|
|
3417
3502
|
/**
|
|
3418
3503
|
* List v1alpha1/RoleBinding
|
|
3419
|
-
* @param {number} [page]
|
|
3420
|
-
* @param {number} [size] Size of one page
|
|
3421
|
-
* @param {string} [
|
|
3504
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3505
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3506
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3507
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3422
3508
|
* @param {*} [options] Override http request option.
|
|
3423
3509
|
* @throws {RequiredError}
|
|
3424
3510
|
* @memberof V1alpha1RoleBindingApi
|
|
3425
3511
|
*/
|
|
3426
|
-
listv1alpha1RoleBinding(page?: number, size?: number,
|
|
3512
|
+
listv1alpha1RoleBinding(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBindingList, any>>;
|
|
3427
3513
|
/**
|
|
3428
3514
|
* Update v1alpha1/RoleBinding
|
|
3429
3515
|
* @param {string} name Name of rolebinding
|
|
@@ -3462,13 +3548,14 @@ declare const V1alpha1SettingApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3462
3548
|
getv1alpha1Setting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3463
3549
|
/**
|
|
3464
3550
|
* List v1alpha1/Setting
|
|
3465
|
-
* @param {number} [page]
|
|
3466
|
-
* @param {number} [size] Size of one page
|
|
3467
|
-
* @param {string} [
|
|
3551
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3552
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3553
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3554
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3468
3555
|
* @param {*} [options] Override http request option.
|
|
3469
3556
|
* @throws {RequiredError}
|
|
3470
3557
|
*/
|
|
3471
|
-
listv1alpha1Setting: (page?: number, size?: number,
|
|
3558
|
+
listv1alpha1Setting: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3472
3559
|
/**
|
|
3473
3560
|
* Update v1alpha1/Setting
|
|
3474
3561
|
* @param {string} name Name of setting
|
|
@@ -3506,13 +3593,14 @@ declare const V1alpha1SettingApiFp: (configuration?: Configuration) => {
|
|
|
3506
3593
|
getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
3507
3594
|
/**
|
|
3508
3595
|
* List v1alpha1/Setting
|
|
3509
|
-
* @param {number} [page]
|
|
3510
|
-
* @param {number} [size] Size of one page
|
|
3511
|
-
* @param {string} [
|
|
3596
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3597
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3598
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3599
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3512
3600
|
* @param {*} [options] Override http request option.
|
|
3513
3601
|
* @throws {RequiredError}
|
|
3514
3602
|
*/
|
|
3515
|
-
listv1alpha1Setting(page?: number, size?: number,
|
|
3603
|
+
listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingList>>;
|
|
3516
3604
|
/**
|
|
3517
3605
|
* Update v1alpha1/Setting
|
|
3518
3606
|
* @param {string} name Name of setting
|
|
@@ -3550,13 +3638,14 @@ declare const V1alpha1SettingApiFactory: (configuration?: Configuration, basePat
|
|
|
3550
3638
|
getv1alpha1Setting(name: string, options?: any): AxiosPromise<Setting>;
|
|
3551
3639
|
/**
|
|
3552
3640
|
* List v1alpha1/Setting
|
|
3553
|
-
* @param {number} [page]
|
|
3554
|
-
* @param {number} [size] Size of one page
|
|
3555
|
-
* @param {string} [
|
|
3641
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3642
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3643
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3644
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3556
3645
|
* @param {*} [options] Override http request option.
|
|
3557
3646
|
* @throws {RequiredError}
|
|
3558
3647
|
*/
|
|
3559
|
-
listv1alpha1Setting(page?: number, size?: number,
|
|
3648
|
+
listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SettingList>;
|
|
3560
3649
|
/**
|
|
3561
3650
|
* Update v1alpha1/Setting
|
|
3562
3651
|
* @param {string} name Name of setting
|
|
@@ -3599,14 +3688,15 @@ declare class V1alpha1SettingApi extends BaseAPI {
|
|
|
3599
3688
|
getv1alpha1Setting(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
|
|
3600
3689
|
/**
|
|
3601
3690
|
* List v1alpha1/Setting
|
|
3602
|
-
* @param {number} [page]
|
|
3603
|
-
* @param {number} [size] Size of one page
|
|
3604
|
-
* @param {string} [
|
|
3691
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3692
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3693
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3694
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3605
3695
|
* @param {*} [options] Override http request option.
|
|
3606
3696
|
* @throws {RequiredError}
|
|
3607
3697
|
* @memberof V1alpha1SettingApi
|
|
3608
3698
|
*/
|
|
3609
|
-
listv1alpha1Setting(page?: number, size?: number,
|
|
3699
|
+
listv1alpha1Setting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SettingList, any>>;
|
|
3610
3700
|
/**
|
|
3611
3701
|
* Update v1alpha1/Setting
|
|
3612
3702
|
* @param {string} name Name of setting
|
|
@@ -3645,13 +3735,14 @@ declare const V1alpha1UserApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3645
3735
|
getv1alpha1User: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3646
3736
|
/**
|
|
3647
3737
|
* List v1alpha1/User
|
|
3648
|
-
* @param {number} [page]
|
|
3649
|
-
* @param {number} [size] Size of one page
|
|
3650
|
-
* @param {string} [
|
|
3738
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3739
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3740
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3741
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3651
3742
|
* @param {*} [options] Override http request option.
|
|
3652
3743
|
* @throws {RequiredError}
|
|
3653
3744
|
*/
|
|
3654
|
-
listv1alpha1User: (page?: number, size?: number,
|
|
3745
|
+
listv1alpha1User: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3655
3746
|
/**
|
|
3656
3747
|
* Update v1alpha1/User
|
|
3657
3748
|
* @param {string} name Name of user
|
|
@@ -3689,13 +3780,14 @@ declare const V1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
3689
3780
|
getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
3690
3781
|
/**
|
|
3691
3782
|
* List v1alpha1/User
|
|
3692
|
-
* @param {number} [page]
|
|
3693
|
-
* @param {number} [size] Size of one page
|
|
3694
|
-
* @param {string} [
|
|
3783
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3784
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3785
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3786
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3695
3787
|
* @param {*} [options] Override http request option.
|
|
3696
3788
|
* @throws {RequiredError}
|
|
3697
3789
|
*/
|
|
3698
|
-
listv1alpha1User(page?: number, size?: number,
|
|
3790
|
+
listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserList>>;
|
|
3699
3791
|
/**
|
|
3700
3792
|
* Update v1alpha1/User
|
|
3701
3793
|
* @param {string} name Name of user
|
|
@@ -3733,13 +3825,14 @@ declare const V1alpha1UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3733
3825
|
getv1alpha1User(name: string, options?: any): AxiosPromise<User>;
|
|
3734
3826
|
/**
|
|
3735
3827
|
* List v1alpha1/User
|
|
3736
|
-
* @param {number} [page]
|
|
3737
|
-
* @param {number} [size] Size of one page
|
|
3738
|
-
* @param {string} [
|
|
3828
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3829
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3830
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3831
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3739
3832
|
* @param {*} [options] Override http request option.
|
|
3740
3833
|
* @throws {RequiredError}
|
|
3741
3834
|
*/
|
|
3742
|
-
listv1alpha1User(page?: number, size?: number,
|
|
3835
|
+
listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<UserList>;
|
|
3743
3836
|
/**
|
|
3744
3837
|
* Update v1alpha1/User
|
|
3745
3838
|
* @param {string} name Name of user
|
|
@@ -3782,14 +3875,15 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3782
3875
|
getv1alpha1User(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3783
3876
|
/**
|
|
3784
3877
|
* List v1alpha1/User
|
|
3785
|
-
* @param {number} [page]
|
|
3786
|
-
* @param {number} [size] Size of one page
|
|
3787
|
-
* @param {string} [
|
|
3878
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3879
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3880
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3881
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3788
3882
|
* @param {*} [options] Override http request option.
|
|
3789
3883
|
* @throws {RequiredError}
|
|
3790
3884
|
* @memberof V1alpha1UserApi
|
|
3791
3885
|
*/
|
|
3792
|
-
listv1alpha1User(page?: number, size?: number,
|
|
3886
|
+
listv1alpha1User(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserList, any>>;
|
|
3793
3887
|
/**
|
|
3794
3888
|
* Update v1alpha1/User
|
|
3795
3889
|
* @param {string} name Name of user
|
|
@@ -3801,4 +3895,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
3801
3895
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
3802
3896
|
}
|
|
3803
3897
|
|
|
3804
|
-
export {
|
|
3898
|
+
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 };
|