import * as $dara from '@darabonba/typescript'; export declare class ListClusterAddonInstanceResourcesResponseBodyHelmRelease extends $dara.Model { /** * @remarks * The Helm chart name of the component. * * @example * ack-node-problem-detector */ chartName?: string; /** * @remarks * The Helm chart version of the component. * * @example * 1.2.28 */ chartVersion?: string; /** * @remarks * The namespace. * * @example * kube-system */ namespace?: string; /** * @remarks * The name of the Helm release instance. * * @example * ack-node-problem-detector */ releaseName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListClusterAddonInstanceResourcesResponseBodyKubernetesObjects extends $dara.Model { /** * @remarks * The Kubernetes API group to which the object belongs. * * @example * rbac.authorization.k8s.io */ group?: string; /** * @remarks * The Kubernetes API kind of the object. * * @example * ClusterRole */ kind?: string; /** * @remarks * The name of the object. * * @example * terway-pod-reader */ name?: string; /** * @remarks * The namespace to which the object belongs. * * @example * kube-system */ namespace?: string; /** * @remarks * The Kubernetes API version to which the object belongs. * * @example * v1 */ version?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListClusterAddonInstanceResourcesResponseBody extends $dara.Model { /** * @remarks * The Helm release instance information of the component. */ helmRelease?: ListClusterAddonInstanceResourcesResponseBodyHelmRelease; /** * @remarks * The list of Kubernetes objects contained in the component. */ kubernetesObjects?: ListClusterAddonInstanceResourcesResponseBodyKubernetesObjects[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }