import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VlanGroupConfig extends cdktf.TerraformMetaArguments { /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_group#device VlanGroup#device} */ readonly device?: string; /** * Group name starts with alphabet * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_group#name VlanGroup#name} */ readonly name: string; /** * VLANs in the vlan group * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_group#vlan_lists VlanGroup#vlan_lists} */ readonly vlanLists: number[]; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_group iosxe_vlan_group} */ export declare class VlanGroup extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_vlan_group"; /** * Generates CDKTF code for importing a VlanGroup 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 VlanGroup to import * @param importFromId The id of the existing VlanGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VlanGroup 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/vlan_group iosxe_vlan_group} 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 VlanGroupConfig */ constructor(scope: Construct, id: string, config: VlanGroupConfig); 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 _vlanLists?; get vlanLists(): number[]; set vlanLists(value: number[]); get vlanListsInput(): number[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }