import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BridgeDomainConfig extends cdktf.TerraformMetaArguments { /** * <1..16000>;;bridge-domain ID * - Range: `1`-`16000` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#bridge_domain_id BridgeDomain#bridge_domain_id} */ readonly bridgeDomainId: number; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is `all`. * - Choices: `all`, `attributes` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#delete_mode BridgeDomain#delete_mode} */ readonly deleteMode?: 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/bridge_domain#device BridgeDomain#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#member_interfaces BridgeDomain#member_interfaces} */ readonly memberInterfaces?: BridgeDomainMemberInterfaces[] | cdktf.IResolvable; /** * * - Range: `4096`-`16777215` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#member_vni BridgeDomain#member_vni} */ readonly memberVni?: number; } export interface BridgeDomainMemberInterfacesServiceInstances { /** * * - Range: `1`-`8000` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#instance_id BridgeDomain#instance_id} */ readonly instanceId: number; } export declare function bridgeDomainMemberInterfacesServiceInstancesToTerraform(struct?: BridgeDomainMemberInterfacesServiceInstances | cdktf.IResolvable): any; export declare function bridgeDomainMemberInterfacesServiceInstancesToHclTerraform(struct?: BridgeDomainMemberInterfacesServiceInstances | cdktf.IResolvable): any; export declare class BridgeDomainMemberInterfacesServiceInstancesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): BridgeDomainMemberInterfacesServiceInstances | cdktf.IResolvable | undefined; set internalValue(value: BridgeDomainMemberInterfacesServiceInstances | cdktf.IResolvable | undefined); private _instanceId?; get instanceId(): number; set instanceId(value: number); get instanceIdInput(): number; } export declare class BridgeDomainMemberInterfacesServiceInstancesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BridgeDomainMemberInterfacesServiceInstances[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): BridgeDomainMemberInterfacesServiceInstancesOutputReference; } export interface BridgeDomainMemberInterfaces { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#interface BridgeDomain#interface} */ readonly interface: string; /** * ethernet service instance * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#service_instances BridgeDomain#service_instances} */ readonly serviceInstances?: BridgeDomainMemberInterfacesServiceInstances[] | cdktf.IResolvable; } export declare function bridgeDomainMemberInterfacesToTerraform(struct?: BridgeDomainMemberInterfaces | cdktf.IResolvable): any; export declare function bridgeDomainMemberInterfacesToHclTerraform(struct?: BridgeDomainMemberInterfaces | cdktf.IResolvable): any; export declare class BridgeDomainMemberInterfacesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): BridgeDomainMemberInterfaces | cdktf.IResolvable | undefined; set internalValue(value: BridgeDomainMemberInterfaces | cdktf.IResolvable | undefined); private _interface?; get interface(): string; set interface(value: string); get interfaceInput(): string; private _serviceInstances; get serviceInstances(): BridgeDomainMemberInterfacesServiceInstancesList; putServiceInstances(value: BridgeDomainMemberInterfacesServiceInstances[] | cdktf.IResolvable): void; resetServiceInstances(): void; get serviceInstancesInput(): any; } export declare class BridgeDomainMemberInterfacesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BridgeDomainMemberInterfaces[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): BridgeDomainMemberInterfacesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain iosxe_bridge_domain} */ export declare class BridgeDomain extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_bridge_domain"; /** * Generates CDKTF code for importing a BridgeDomain 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 BridgeDomain to import * @param importFromId The id of the existing BridgeDomain that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bridge_domain#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BridgeDomain 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/bridge_domain iosxe_bridge_domain} 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 BridgeDomainConfig */ constructor(scope: Construct, id: string, config: BridgeDomainConfig); private _bridgeDomainId?; get bridgeDomainId(): number; set bridgeDomainId(value: number); get bridgeDomainIdInput(): number; private _deleteMode?; get deleteMode(): string; set deleteMode(value: string); resetDeleteMode(): void; get deleteModeInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _memberInterfaces; get memberInterfaces(): BridgeDomainMemberInterfacesList; putMemberInterfaces(value: BridgeDomainMemberInterfaces[] | cdktf.IResolvable): void; resetMemberInterfaces(): void; get memberInterfacesInput(): any; private _memberVni?; get memberVni(): number; set memberVni(value: number); resetMemberVni(): void; get memberVniInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }