import * as $dara from '@darabonba/typescript'; export declare class GrafanaWorkspaceCustomDomain extends $dara.Model { /** * @example * protocol为http时无需填写; */ cert?: string; /** * @example * 1688627798017 */ date?: number; /** * @example * mydomain.com */ domain?: string; /** * @example * grafana-cn-*********** */ grafanaWorkspaceId?: string; /** * @example * 1 */ id?: number; /** * @example * protocol为http时无需填写; */ key?: string; /** * @example * true */ privateZone?: string; /** * @example * https */ protocol?: string; /** * @example * CreateSucceed */ status?: string; /** * @example * / */ uri?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }