import * as $dara from '@darabonba/typescript'; export declare class ListDashboardsByNameRequest extends $dara.Model { /** * @remarks * The ID of the cluster. If the ClusterType parameter is not set to `cloud-product-prometheus` or `cms-enterprise-prometheus`, you must specify the ClusterId parameter. * * @example * cc7a37ee31aea4ed1a059eff8034b**** */ clusterId?: string; /** * @remarks * The cluster type. Valid values: * * * vpc-prometheus * * cloud-product-prometheus * * cms-enterprise-prometheus * * ExternalKubernetes * * Ask * * Kubernetes * * ManagedKubernetes * * remote-write-prometheus * * GlobalViewV2 * * @example * cloud-product-prometheus */ clusterType?: string; /** * @remarks * The name of the dashboard. * * @example * edas-ingress-url */ dashBoardName?: string; /** * @remarks * The version of the dashboard. * * @example * latest */ dashBoardVersion?: string; /** * @remarks * The type of the data source. Valid values: * * * loki * * prometheus * * @example * loki */ dataSourceType?: string; /** * @remarks * The name of the dashboard group. * * @example * EDAS */ groupName?: string; /** * @remarks * Specifies whether to display the Grafana dashboard only in the Application Real-Time Monitoring Service (ARMS) console. * * @example * true */ onlyQuery?: boolean; /** * @remarks * The abbreviation of the Alibaba Cloud service name. * * @example * edas */ productCode?: string; /** * @remarks * The ID of the region. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }