import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WaapSecurityInsightSilenceConfig extends cdktf.TerraformMetaArguments { /** * The author of the silence. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#author WaapSecurityInsightSilence#author} */ readonly author: string; /** * A comment explaining the reason for the silence. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#comment WaapSecurityInsightSilence#comment} */ readonly comment: string; /** * The WAAP domain ID for which the insight silence is configured. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#domain_id WaapSecurityInsightSilence#domain_id} */ readonly domainId: number; /** * The date and time the silence expires in ISO 8601 format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#expire_at WaapSecurityInsightSilence#expire_at} */ readonly expireAt?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#id WaapSecurityInsightSilence#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 slug of the insight type. The insight type can be obtained from the API endpoint /v1/security-insights/types or you can use the gcore_waap_security_insight_type data source. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#insight_type WaapSecurityInsightSilence#insight_type} */ readonly insightType: string; /** * A hash table of label names and values that apply to the insight silence. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#labels WaapSecurityInsightSilence#labels} */ readonly labels: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence gcore_waap_security_insight_silence} */ export declare class WaapSecurityInsightSilence extends cdktf.TerraformResource { static readonly tfResourceType = "gcore_waap_security_insight_silence"; /** * Generates CDKTF code for importing a WaapSecurityInsightSilence 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 WaapSecurityInsightSilence to import * @param importFromId The id of the existing WaapSecurityInsightSilence that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WaapSecurityInsightSilence 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/g-core/gcore/0.32.5/docs/resources/waap_security_insight_silence gcore_waap_security_insight_silence} 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 WaapSecurityInsightSilenceConfig */ constructor(scope: Construct, id: string, config: WaapSecurityInsightSilenceConfig); private _author?; get author(): string; set author(value: string); get authorInput(): string; private _comment?; get comment(): string; set comment(value: string); get commentInput(): string; private _domainId?; get domainId(): number; set domainId(value: number); get domainIdInput(): number; private _expireAt?; get expireAt(): string; set expireAt(value: string); resetExpireAt(): void; get expireAtInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _insightType?; get insightType(): string; set insightType(value: string); get insightTypeInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); get labelsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }