import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MonitorTmpMultipleWritesListConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#id MonitorTmpMultipleWritesList#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; /** * Instance id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#instance_id MonitorTmpMultipleWritesList#instance_id} */ readonly instanceId: string; /** * remote_writes block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#remote_writes MonitorTmpMultipleWritesList#remote_writes} */ readonly remoteWrites?: MonitorTmpMultipleWritesListRemoteWrites[] | cdktf.IResolvable; } export interface MonitorTmpMultipleWritesListRemoteWritesBasicAuth { /** * Password. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#password MonitorTmpMultipleWritesList#password} */ readonly password?: string; /** * User name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#user_name MonitorTmpMultipleWritesList#user_name} */ readonly userName?: string; } export declare function monitorTmpMultipleWritesListRemoteWritesBasicAuthToTerraform(struct?: MonitorTmpMultipleWritesListRemoteWritesBasicAuthOutputReference | MonitorTmpMultipleWritesListRemoteWritesBasicAuth): any; export declare function monitorTmpMultipleWritesListRemoteWritesBasicAuthToHclTerraform(struct?: MonitorTmpMultipleWritesListRemoteWritesBasicAuthOutputReference | MonitorTmpMultipleWritesListRemoteWritesBasicAuth): any; export declare class MonitorTmpMultipleWritesListRemoteWritesBasicAuthOutputReference 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(): MonitorTmpMultipleWritesListRemoteWritesBasicAuth | undefined; set internalValue(value: MonitorTmpMultipleWritesListRemoteWritesBasicAuth | undefined); private _password?; get password(): string; set password(value: string); resetPassword(): void; get passwordInput(): string; private _userName?; get userName(): string; set userName(value: string); resetUserName(): void; get userNameInput(): string; } export interface MonitorTmpMultipleWritesListRemoteWritesHeaders { /** * HTTP header key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#key MonitorTmpMultipleWritesList#key} */ readonly key: string; /** * HTTP header value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#value MonitorTmpMultipleWritesList#value} */ readonly value?: string; } export declare function monitorTmpMultipleWritesListRemoteWritesHeadersToTerraform(struct?: MonitorTmpMultipleWritesListRemoteWritesHeaders | cdktf.IResolvable): any; export declare function monitorTmpMultipleWritesListRemoteWritesHeadersToHclTerraform(struct?: MonitorTmpMultipleWritesListRemoteWritesHeaders | cdktf.IResolvable): any; export declare class MonitorTmpMultipleWritesListRemoteWritesHeadersOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): MonitorTmpMultipleWritesListRemoteWritesHeaders | cdktf.IResolvable | undefined; set internalValue(value: MonitorTmpMultipleWritesListRemoteWritesHeaders | cdktf.IResolvable | undefined); private _key?; get key(): string; set key(value: string); get keyInput(): string; private _value?; get value(): string; set value(value: string); resetValue(): void; get valueInput(): string; } export declare class MonitorTmpMultipleWritesListRemoteWritesHeadersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MonitorTmpMultipleWritesListRemoteWritesHeaders[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): MonitorTmpMultipleWritesListRemoteWritesHeadersOutputReference; } export interface MonitorTmpMultipleWritesListRemoteWrites { /** * Label. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#label MonitorTmpMultipleWritesList#label} */ readonly label?: string; /** * Maximum block. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#max_block_size MonitorTmpMultipleWritesList#max_block_size} */ readonly maxBlockSize?: string; /** * Data multiple write url. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#url MonitorTmpMultipleWritesList#url} */ readonly url: string; /** * RelabelConfig. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#url_relabel_config MonitorTmpMultipleWritesList#url_relabel_config} */ readonly urlRelabelConfig?: string; /** * basic_auth block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#basic_auth MonitorTmpMultipleWritesList#basic_auth} */ readonly basicAuth?: MonitorTmpMultipleWritesListRemoteWritesBasicAuth; /** * headers block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#headers MonitorTmpMultipleWritesList#headers} */ readonly headers?: MonitorTmpMultipleWritesListRemoteWritesHeaders[] | cdktf.IResolvable; } export declare function monitorTmpMultipleWritesListRemoteWritesToTerraform(struct?: MonitorTmpMultipleWritesListRemoteWrites | cdktf.IResolvable): any; export declare function monitorTmpMultipleWritesListRemoteWritesToHclTerraform(struct?: MonitorTmpMultipleWritesListRemoteWrites | cdktf.IResolvable): any; export declare class MonitorTmpMultipleWritesListRemoteWritesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): MonitorTmpMultipleWritesListRemoteWrites | cdktf.IResolvable | undefined; set internalValue(value: MonitorTmpMultipleWritesListRemoteWrites | cdktf.IResolvable | undefined); private _label?; get label(): string; set label(value: string); resetLabel(): void; get labelInput(): string; private _maxBlockSize?; get maxBlockSize(): string; set maxBlockSize(value: string); resetMaxBlockSize(): void; get maxBlockSizeInput(): string; private _url?; get url(): string; set url(value: string); get urlInput(): string; private _urlRelabelConfig?; get urlRelabelConfig(): string; set urlRelabelConfig(value: string); resetUrlRelabelConfig(): void; get urlRelabelConfigInput(): string; private _basicAuth; get basicAuth(): MonitorTmpMultipleWritesListRemoteWritesBasicAuthOutputReference; putBasicAuth(value: MonitorTmpMultipleWritesListRemoteWritesBasicAuth): void; resetBasicAuth(): void; get basicAuthInput(): MonitorTmpMultipleWritesListRemoteWritesBasicAuth; private _headers; get headers(): MonitorTmpMultipleWritesListRemoteWritesHeadersList; putHeaders(value: MonitorTmpMultipleWritesListRemoteWritesHeaders[] | cdktf.IResolvable): void; resetHeaders(): void; get headersInput(): any; } export declare class MonitorTmpMultipleWritesListRemoteWritesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MonitorTmpMultipleWritesListRemoteWrites[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): MonitorTmpMultipleWritesListRemoteWritesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list tencentcloud_monitor_tmp_multiple_writes_list} */ export declare class MonitorTmpMultipleWritesList extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_monitor_tmp_multiple_writes_list"; /** * Generates CDKTF code for importing a MonitorTmpMultipleWritesList 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 MonitorTmpMultipleWritesList to import * @param importFromId The id of the existing MonitorTmpMultipleWritesList that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/monitor_tmp_multiple_writes_list#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MonitorTmpMultipleWritesList 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_multiple_writes_list tencentcloud_monitor_tmp_multiple_writes_list} 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 MonitorTmpMultipleWritesListConfig */ constructor(scope: Construct, id: string, config: MonitorTmpMultipleWritesListConfig); 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 _remoteWrites; get remoteWrites(): MonitorTmpMultipleWritesListRemoteWritesList; putRemoteWrites(value: MonitorTmpMultipleWritesListRemoteWrites[] | cdktf.IResolvable): void; resetRemoteWrites(): void; get remoteWritesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }