import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CommunityListStandardConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard#deny_entries CommunityListStandard#deny_entries} */ readonly denyEntries?: string[]; /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard#device CommunityListStandard#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard#name CommunityListStandard#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard#permit_entries CommunityListStandard#permit_entries} */ readonly permitEntries?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard iosxe_community_list_standard} */ export declare class CommunityListStandard extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_community_list_standard"; /** * Generates CDKTF code for importing a CommunityListStandard 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 CommunityListStandard to import * @param importFromId The id of the existing CommunityListStandard that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CommunityListStandard 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/ciscodevnet/iosxe/0.15.0/docs/resources/community_list_standard iosxe_community_list_standard} 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 CommunityListStandardConfig */ constructor(scope: Construct, id: string, config: CommunityListStandardConfig); private _denyEntries?; get denyEntries(): string[]; set denyEntries(value: string[]); resetDenyEntries(): void; get denyEntriesInput(): string[]; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _permitEntries?; get permitEntries(): string[]; set permitEntries(value: string[]); resetPermitEntries(): void; get permitEntriesInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }