import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MonitorGrafanaNotificationChannelConfig extends cdktf.TerraformMetaArguments { /** * channel name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#channel_name MonitorGrafanaNotificationChannel#channel_name} */ readonly channelName?: string; /** * extra grafana organization id list, default to 1 representing Main Org. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#extra_org_ids MonitorGrafanaNotificationChannel#extra_org_ids} */ readonly extraOrgIds?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#id MonitorGrafanaNotificationChannel#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * grafana instance id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#instance_id MonitorGrafanaNotificationChannel#instance_id} */ readonly instanceId: string; /** * Grafana organization which channel will be installed, default to 1 representing Main Org. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#org_id MonitorGrafanaNotificationChannel#org_id} */ readonly orgId?: number; /** * cloud monitor notification template notice-id list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#receivers MonitorGrafanaNotificationChannel#receivers} */ readonly receivers?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel tencentcloud_monitor_grafana_notification_channel} */ export declare class MonitorGrafanaNotificationChannel extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_monitor_grafana_notification_channel"; /** * Generates CDKTF code for importing a MonitorGrafanaNotificationChannel resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the MonitorGrafanaNotificationChannel to import * @param importFromId The id of the existing MonitorGrafanaNotificationChannel that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MonitorGrafanaNotificationChannel to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_grafana_notification_channel tencentcloud_monitor_grafana_notification_channel} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options MonitorGrafanaNotificationChannelConfig */ constructor(scope: Construct, id: string, config: MonitorGrafanaNotificationChannelConfig); get channelId(): any; private _channelName?; get channelName(): string; set channelName(value: string); resetChannelName(): void; get channelNameInput(): string; private _extraOrgIds?; get extraOrgIds(): string[]; set extraOrgIds(value: string[]); resetExtraOrgIds(): void; get extraOrgIdsInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _orgId?; get orgId(): number; set orgId(value: number); resetOrgId(): void; get orgIdInput(): number; private _receivers?; get receivers(): string[]; set receivers(value: string[]); resetReceivers(): void; get receiversInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }