import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeVlanConfig 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/data-sources/vlan#device DataIosxeVlan#device} */ readonly device?: string; /** * VLAN ID * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan#vlan_id DataIosxeVlan#vlan_id} */ readonly vlanId: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan iosxe_vlan} */ export declare class DataIosxeVlan extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_vlan"; /** * Generates CDKTF code for importing a DataIosxeVlan 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 DataIosxeVlan to import * @param importFromId The id of the existing DataIosxeVlan that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeVlan 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/data-sources/vlan iosxe_vlan} 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 DataIosxeVlanConfig */ constructor(scope: Construct, id: string, config: DataIosxeVlanConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get name(): any; get privateVlanAssociation(): any; get privateVlanCommunity(): any; get privateVlanIsolated(): any; get privateVlanPrimary(): any; get remoteSpan(): any; get shutdown(): any; private _vlanId?; get vlanId(): number; set vlanId(value: number); get vlanIdInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }