import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataGcoreWaapDomainPolicyConfig extends cdktf.TerraformMetaArguments { /** * The WAAP domain ID * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/data-sources/waap_domain_policy#domain_id DataGcoreWaapDomainPolicy#domain_id} */ readonly domainId: number; /** * The policy group name to which the policy belongs * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/data-sources/waap_domain_policy#group DataGcoreWaapDomainPolicy#group} */ readonly group: string; /** * The name of the Domain Policy * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/data-sources/waap_domain_policy#name DataGcoreWaapDomainPolicy#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/data-sources/waap_domain_policy gcore_waap_domain_policy} */ export declare class DataGcoreWaapDomainPolicy extends cdktf.TerraformDataSource { static readonly tfResourceType = "gcore_waap_domain_policy"; /** * Generates CDKTF code for importing a DataGcoreWaapDomainPolicy 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 DataGcoreWaapDomainPolicy to import * @param importFromId The id of the existing DataGcoreWaapDomainPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/data-sources/waap_domain_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataGcoreWaapDomainPolicy 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/data-sources/waap_domain_policy gcore_waap_domain_policy} Data Source * * @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 DataGcoreWaapDomainPolicyConfig */ constructor(scope: Construct, id: string, config: DataGcoreWaapDomainPolicyConfig); private _domainId?; get domainId(): number; set domainId(value: number); get domainIdInput(): number; private _group?; get group(): string; set group(value: string); get groupInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }