import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MonitorTmpTkeTemplateAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#id MonitorTmpTkeTemplateAttachment#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; /** * The ID of the template, which is used for the outgoing reference. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#template_id MonitorTmpTkeTemplateAttachment#template_id} */ readonly templateId: string; /** * targets block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#targets MonitorTmpTkeTemplateAttachment#targets} */ readonly targets: MonitorTmpTkeTemplateAttachmentTargets; } export interface MonitorTmpTkeTemplateAttachmentTargets { /** * ID of the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#cluster_id MonitorTmpTkeTemplateAttachment#cluster_id} */ readonly clusterId?: string; /** * Name the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#cluster_name MonitorTmpTkeTemplateAttachment#cluster_name} */ readonly clusterName?: string; /** * Cluster type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#cluster_type MonitorTmpTkeTemplateAttachment#cluster_type} */ readonly clusterType?: string; /** * instance id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#instance_id MonitorTmpTkeTemplateAttachment#instance_id} */ readonly instanceId: string; /** * Name of the prometheus instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#instance_name MonitorTmpTkeTemplateAttachment#instance_name} */ readonly instanceName?: string; /** * target area. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#region MonitorTmpTkeTemplateAttachment#region} */ readonly region: string; /** * Last sync template time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#sync_time MonitorTmpTkeTemplateAttachment#sync_time} */ readonly syncTime?: string; /** * Template version currently in use. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#version MonitorTmpTkeTemplateAttachment#version} */ readonly version?: string; } export declare function monitorTmpTkeTemplateAttachmentTargetsToTerraform(struct?: MonitorTmpTkeTemplateAttachmentTargetsOutputReference | MonitorTmpTkeTemplateAttachmentTargets): any; export declare function monitorTmpTkeTemplateAttachmentTargetsToHclTerraform(struct?: MonitorTmpTkeTemplateAttachmentTargetsOutputReference | MonitorTmpTkeTemplateAttachmentTargets): any; export declare class MonitorTmpTkeTemplateAttachmentTargetsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): MonitorTmpTkeTemplateAttachmentTargets | undefined; set internalValue(value: MonitorTmpTkeTemplateAttachmentTargets | undefined); private _clusterId?; get clusterId(): string; set clusterId(value: string); resetClusterId(): void; get clusterIdInput(): string; private _clusterName?; get clusterName(): string; set clusterName(value: string); resetClusterName(): void; get clusterNameInput(): string; private _clusterType?; get clusterType(): string; set clusterType(value: string); resetClusterType(): void; get clusterTypeInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _instanceName?; get instanceName(): string; set instanceName(value: string); resetInstanceName(): void; get instanceNameInput(): string; private _region?; get region(): string; set region(value: string); get regionInput(): string; private _syncTime?; get syncTime(): string; set syncTime(value: string); resetSyncTime(): void; get syncTimeInput(): string; private _version?; get version(): string; set version(value: string); resetVersion(): void; get versionInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment tencentcloud_monitor_tmp_tke_template_attachment} */ export declare class MonitorTmpTkeTemplateAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_monitor_tmp_tke_template_attachment"; /** * Generates CDKTF code for importing a MonitorTmpTkeTemplateAttachment 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 MonitorTmpTkeTemplateAttachment to import * @param importFromId The id of the existing MonitorTmpTkeTemplateAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_tke_template_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MonitorTmpTkeTemplateAttachment 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_tmp_tke_template_attachment tencentcloud_monitor_tmp_tke_template_attachment} 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 MonitorTmpTkeTemplateAttachmentConfig */ constructor(scope: Construct, id: string, config: MonitorTmpTkeTemplateAttachmentConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _templateId?; get templateId(): string; set templateId(value: string); get templateIdInput(): string; private _targets; get targets(): MonitorTmpTkeTemplateAttachmentTargetsOutputReference; putTargets(value: MonitorTmpTkeTemplateAttachmentTargets): void; get targetsInput(): MonitorTmpTkeTemplateAttachmentTargets; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }