import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BfdConfig extends cdktf.TerraformMetaArguments { /** * 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/bfd#delete_mode Bfd#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/bfd#device Bfd#device} */ readonly device?: string; /** * IPv4 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv4_both_vrfs Bfd#ipv4_both_vrfs} */ readonly ipv4BothVrfs?: BfdIpv4BothVrfs[] | cdktf.IResolvable; /** * IPv4 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv4_with_dst_vrfs Bfd#ipv4_with_dst_vrfs} */ readonly ipv4WithDstVrfs?: BfdIpv4WithDstVrfs[] | cdktf.IResolvable; /** * IPv4 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv4_with_src_vrfs Bfd#ipv4_with_src_vrfs} */ readonly ipv4WithSrcVrfs?: BfdIpv4WithSrcVrfs[] | cdktf.IResolvable; /** * IPv4 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv4_without_vrfs Bfd#ipv4_without_vrfs} */ readonly ipv4WithoutVrfs?: BfdIpv4WithoutVrfs[] | cdktf.IResolvable; /** * IPv6 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv6_with_both_vrfs Bfd#ipv6_with_both_vrfs} */ readonly ipv6WithBothVrfs?: BfdIpv6WithBothVrfs[] | cdktf.IResolvable; /** * IPv6 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv6_with_dst_vrfs Bfd#ipv6_with_dst_vrfs} */ readonly ipv6WithDstVrfs?: BfdIpv6WithDstVrfs[] | cdktf.IResolvable; /** * IPv6 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv6_with_src_vrfs Bfd#ipv6_with_src_vrfs} */ readonly ipv6WithSrcVrfs?: BfdIpv6WithSrcVrfs[] | cdktf.IResolvable; /** * IPv6 Address Family with vrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#ipv6_without_vrfs Bfd#ipv6_without_vrfs} */ readonly ipv6WithoutVrfs?: BfdIpv6WithoutVrfs[] | cdktf.IResolvable; /** * Value in ms to use for slow timers * - Range: `1000`-`30000` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#slow_timers Bfd#slow_timers} */ readonly slowTimers?: number; } export interface BfdIpv4BothVrfs { /** * Destination IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ip Bfd#dest_ip} */ readonly destIp: string; /** * Destination VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dst_vrf Bfd#dst_vrf} */ readonly dstVrf: string; /** * Source IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ip Bfd#src_ip} */ readonly srcIp: string; /** * source VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_vrf Bfd#src_vrf} */ readonly srcVrf: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv4BothVrfsToTerraform(struct?: BfdIpv4BothVrfs | cdktf.IResolvable): any; export declare function bfdIpv4BothVrfsToHclTerraform(struct?: BfdIpv4BothVrfs | cdktf.IResolvable): any; export declare class BfdIpv4BothVrfsOutputReference 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(): BfdIpv4BothVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv4BothVrfs | cdktf.IResolvable | undefined); private _destIp?; get destIp(): string; set destIp(value: string); get destIpInput(): string; private _dstVrf?; get dstVrf(): string; set dstVrf(value: string); get dstVrfInput(): string; private _srcIp?; get srcIp(): string; set srcIp(value: string); get srcIpInput(): string; private _srcVrf?; get srcVrf(): string; set srcVrf(value: string); get srcVrfInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv4BothVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv4BothVrfs[] | 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): BfdIpv4BothVrfsOutputReference; } export interface BfdIpv4WithDstVrfs { /** * Destination IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ip Bfd#dest_ip} */ readonly destIp: string; /** * Destination VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dst_vrf Bfd#dst_vrf} */ readonly dstVrf: string; /** * Source IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ip Bfd#src_ip} */ readonly srcIp: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv4WithDstVrfsToTerraform(struct?: BfdIpv4WithDstVrfs | cdktf.IResolvable): any; export declare function bfdIpv4WithDstVrfsToHclTerraform(struct?: BfdIpv4WithDstVrfs | cdktf.IResolvable): any; export declare class BfdIpv4WithDstVrfsOutputReference 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(): BfdIpv4WithDstVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv4WithDstVrfs | cdktf.IResolvable | undefined); private _destIp?; get destIp(): string; set destIp(value: string); get destIpInput(): string; private _dstVrf?; get dstVrf(): string; set dstVrf(value: string); get dstVrfInput(): string; private _srcIp?; get srcIp(): string; set srcIp(value: string); get srcIpInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv4WithDstVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv4WithDstVrfs[] | 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): BfdIpv4WithDstVrfsOutputReference; } export interface BfdIpv4WithSrcVrfs { /** * Destination IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ip Bfd#dest_ip} */ readonly destIp: string; /** * Source IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ip Bfd#src_ip} */ readonly srcIp: string; /** * source VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_vrf Bfd#src_vrf} */ readonly srcVrf: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv4WithSrcVrfsToTerraform(struct?: BfdIpv4WithSrcVrfs | cdktf.IResolvable): any; export declare function bfdIpv4WithSrcVrfsToHclTerraform(struct?: BfdIpv4WithSrcVrfs | cdktf.IResolvable): any; export declare class BfdIpv4WithSrcVrfsOutputReference 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(): BfdIpv4WithSrcVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv4WithSrcVrfs | cdktf.IResolvable | undefined); private _destIp?; get destIp(): string; set destIp(value: string); get destIpInput(): string; private _srcIp?; get srcIp(): string; set srcIp(value: string); get srcIpInput(): string; private _srcVrf?; get srcVrf(): string; set srcVrf(value: string); get srcVrfInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv4WithSrcVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv4WithSrcVrfs[] | 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): BfdIpv4WithSrcVrfsOutputReference; } export interface BfdIpv4WithoutVrfs { /** * Destination IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ip Bfd#dest_ip} */ readonly destIp: string; /** * Source IP prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ip Bfd#src_ip} */ readonly srcIp: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv4WithoutVrfsToTerraform(struct?: BfdIpv4WithoutVrfs | cdktf.IResolvable): any; export declare function bfdIpv4WithoutVrfsToHclTerraform(struct?: BfdIpv4WithoutVrfs | cdktf.IResolvable): any; export declare class BfdIpv4WithoutVrfsOutputReference 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(): BfdIpv4WithoutVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv4WithoutVrfs | cdktf.IResolvable | undefined); private _destIp?; get destIp(): string; set destIp(value: string); get destIpInput(): string; private _srcIp?; get srcIp(): string; set srcIp(value: string); get srcIpInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv4WithoutVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv4WithoutVrfs[] | 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): BfdIpv4WithoutVrfsOutputReference; } export interface BfdIpv6WithBothVrfs { /** * Destination IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ipv6 Bfd#dest_ipv6} */ readonly destIpv6: string; /** * Destination VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dst_vrf Bfd#dst_vrf} */ readonly dstVrf: string; /** * Source IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ipv6 Bfd#src_ipv6} */ readonly srcIpv6: string; /** * source VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_vrf Bfd#src_vrf} */ readonly srcVrf: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv6WithBothVrfsToTerraform(struct?: BfdIpv6WithBothVrfs | cdktf.IResolvable): any; export declare function bfdIpv6WithBothVrfsToHclTerraform(struct?: BfdIpv6WithBothVrfs | cdktf.IResolvable): any; export declare class BfdIpv6WithBothVrfsOutputReference 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(): BfdIpv6WithBothVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv6WithBothVrfs | cdktf.IResolvable | undefined); private _destIpv6?; get destIpv6(): string; set destIpv6(value: string); get destIpv6Input(): string; private _dstVrf?; get dstVrf(): string; set dstVrf(value: string); get dstVrfInput(): string; private _srcIpv6?; get srcIpv6(): string; set srcIpv6(value: string); get srcIpv6Input(): string; private _srcVrf?; get srcVrf(): string; set srcVrf(value: string); get srcVrfInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv6WithBothVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv6WithBothVrfs[] | 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): BfdIpv6WithBothVrfsOutputReference; } export interface BfdIpv6WithDstVrfs { /** * Destination IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ipv6 Bfd#dest_ipv6} */ readonly destIpv6: string; /** * Destination VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dst_vrf Bfd#dst_vrf} */ readonly dstVrf: string; /** * Source IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ipv6 Bfd#src_ipv6} */ readonly srcIpv6: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv6WithDstVrfsToTerraform(struct?: BfdIpv6WithDstVrfs | cdktf.IResolvable): any; export declare function bfdIpv6WithDstVrfsToHclTerraform(struct?: BfdIpv6WithDstVrfs | cdktf.IResolvable): any; export declare class BfdIpv6WithDstVrfsOutputReference 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(): BfdIpv6WithDstVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv6WithDstVrfs | cdktf.IResolvable | undefined); private _destIpv6?; get destIpv6(): string; set destIpv6(value: string); get destIpv6Input(): string; private _dstVrf?; get dstVrf(): string; set dstVrf(value: string); get dstVrfInput(): string; private _srcIpv6?; get srcIpv6(): string; set srcIpv6(value: string); get srcIpv6Input(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv6WithDstVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv6WithDstVrfs[] | 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): BfdIpv6WithDstVrfsOutputReference; } export interface BfdIpv6WithSrcVrfs { /** * Destination IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ipv6 Bfd#dest_ipv6} */ readonly destIpv6: string; /** * Source IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ipv6 Bfd#src_ipv6} */ readonly srcIpv6: string; /** * source VRF instance name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_vrf Bfd#src_vrf} */ readonly srcVrf: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv6WithSrcVrfsToTerraform(struct?: BfdIpv6WithSrcVrfs | cdktf.IResolvable): any; export declare function bfdIpv6WithSrcVrfsToHclTerraform(struct?: BfdIpv6WithSrcVrfs | cdktf.IResolvable): any; export declare class BfdIpv6WithSrcVrfsOutputReference 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(): BfdIpv6WithSrcVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv6WithSrcVrfs | cdktf.IResolvable | undefined); private _destIpv6?; get destIpv6(): string; set destIpv6(value: string); get destIpv6Input(): string; private _srcIpv6?; get srcIpv6(): string; set srcIpv6(value: string); get srcIpv6Input(): string; private _srcVrf?; get srcVrf(): string; set srcVrf(value: string); get srcVrfInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv6WithSrcVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv6WithSrcVrfs[] | 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): BfdIpv6WithSrcVrfsOutputReference; } export interface BfdIpv6WithoutVrfs { /** * Destination IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#dest_ipv6 Bfd#dest_ipv6} */ readonly destIpv6: string; /** * Source IPv6 prefix/len * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#src_ipv6 Bfd#src_ipv6} */ readonly srcIpv6: string; /** * BFD template name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#template_name Bfd#template_name} */ readonly templateName: string; } export declare function bfdIpv6WithoutVrfsToTerraform(struct?: BfdIpv6WithoutVrfs | cdktf.IResolvable): any; export declare function bfdIpv6WithoutVrfsToHclTerraform(struct?: BfdIpv6WithoutVrfs | cdktf.IResolvable): any; export declare class BfdIpv6WithoutVrfsOutputReference 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(): BfdIpv6WithoutVrfs | cdktf.IResolvable | undefined; set internalValue(value: BfdIpv6WithoutVrfs | cdktf.IResolvable | undefined); private _destIpv6?; get destIpv6(): string; set destIpv6(value: string); get destIpv6Input(): string; private _srcIpv6?; get srcIpv6(): string; set srcIpv6(value: string); get srcIpv6Input(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; } export declare class BfdIpv6WithoutVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BfdIpv6WithoutVrfs[] | 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): BfdIpv6WithoutVrfsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd iosxe_bfd} */ export declare class Bfd extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_bfd"; /** * Generates CDKTF code for importing a Bfd 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 Bfd to import * @param importFromId The id of the existing Bfd that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bfd#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Bfd 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/bfd iosxe_bfd} 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 BfdConfig = {} */ constructor(scope: Construct, id: string, config?: BfdConfig); 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 _ipv4BothVrfs; get ipv4BothVrfs(): BfdIpv4BothVrfsList; putIpv4BothVrfs(value: BfdIpv4BothVrfs[] | cdktf.IResolvable): void; resetIpv4BothVrfs(): void; get ipv4BothVrfsInput(): any; private _ipv4WithDstVrfs; get ipv4WithDstVrfs(): BfdIpv4WithDstVrfsList; putIpv4WithDstVrfs(value: BfdIpv4WithDstVrfs[] | cdktf.IResolvable): void; resetIpv4WithDstVrfs(): void; get ipv4WithDstVrfsInput(): any; private _ipv4WithSrcVrfs; get ipv4WithSrcVrfs(): BfdIpv4WithSrcVrfsList; putIpv4WithSrcVrfs(value: BfdIpv4WithSrcVrfs[] | cdktf.IResolvable): void; resetIpv4WithSrcVrfs(): void; get ipv4WithSrcVrfsInput(): any; private _ipv4WithoutVrfs; get ipv4WithoutVrfs(): BfdIpv4WithoutVrfsList; putIpv4WithoutVrfs(value: BfdIpv4WithoutVrfs[] | cdktf.IResolvable): void; resetIpv4WithoutVrfs(): void; get ipv4WithoutVrfsInput(): any; private _ipv6WithBothVrfs; get ipv6WithBothVrfs(): BfdIpv6WithBothVrfsList; putIpv6WithBothVrfs(value: BfdIpv6WithBothVrfs[] | cdktf.IResolvable): void; resetIpv6WithBothVrfs(): void; get ipv6WithBothVrfsInput(): any; private _ipv6WithDstVrfs; get ipv6WithDstVrfs(): BfdIpv6WithDstVrfsList; putIpv6WithDstVrfs(value: BfdIpv6WithDstVrfs[] | cdktf.IResolvable): void; resetIpv6WithDstVrfs(): void; get ipv6WithDstVrfsInput(): any; private _ipv6WithSrcVrfs; get ipv6WithSrcVrfs(): BfdIpv6WithSrcVrfsList; putIpv6WithSrcVrfs(value: BfdIpv6WithSrcVrfs[] | cdktf.IResolvable): void; resetIpv6WithSrcVrfs(): void; get ipv6WithSrcVrfsInput(): any; private _ipv6WithoutVrfs; get ipv6WithoutVrfs(): BfdIpv6WithoutVrfsList; putIpv6WithoutVrfs(value: BfdIpv6WithoutVrfs[] | cdktf.IResolvable): void; resetIpv6WithoutVrfs(): void; get ipv6WithoutVrfsInput(): any; private _slowTimers?; get slowTimers(): number; set slowTimers(value: number); resetSlowTimers(): void; get slowTimersInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }