File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed
packages/clients/src/api/k8s Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1- export * as v1 from './v1/index.gen '
1+ export * as v1 from './v1/index'
Original file line number Diff line number Diff line change 1+ import { API } from './api.gen'
2+ import type { GetClusterKubeConfigRequest } from './types.utils'
3+
4+ export class K8SUtilsAPI extends API {
5+ /**
6+ * Get configuration of a kube cluster.
7+ *
8+ * @param request - The request {@link GetClusterKubeConfigRequest}
9+ * @returns A Promise of Blob
10+ */
11+ getClusterKubeConfig = ( request : Readonly < GetClusterKubeConfigRequest > ) =>
12+ this . _getClusterKubeConfig ( request )
13+ }
Original file line number Diff line number Diff line change 1+ export { K8SUtilsAPI as API } from './api.utils'
2+ export * from './content.gen'
3+ export * from './types.gen'
4+ export * from './types.utils'
5+ export * as ValidationRules from './validation-rules.gen'
Original file line number Diff line number Diff line change 1+ export type { GetClusterKubeConfigRequest } from './types.private.gen'
You can’t perform that action at this time.
0 commit comments