import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PimIpv6Config 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/pim_ipv6#delete_mode PimIpv6#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/pim_ipv6#device PimIpv6#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#rp_address PimIpv6#rp_address} */ readonly rpAddress?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#rp_address_access_list PimIpv6#rp_address_access_list} */ readonly rpAddressAccessList?: string; /** * Specify keyword bidir to configure a bidir RP * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#rp_address_bidir PimIpv6#rp_address_bidir} */ readonly rpAddressBidir?: boolean | cdktf.IResolvable; /** * Select VPN Routing/Forwarding instance * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#vrfs PimIpv6#vrfs} */ readonly vrfs?: PimIpv6Vrfs[] | cdktf.IResolvable; } export interface PimIpv6Vrfs { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#rp_address PimIpv6#rp_address} */ readonly rpAddress?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#rp_address_access_list PimIpv6#rp_address_access_list} */ readonly rpAddressAccessList?: string; /** * Specify keyword bidir to configure a bidir RP * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#rp_address_bidir PimIpv6#rp_address_bidir} */ readonly rpAddressBidir?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#vrf PimIpv6#vrf} */ readonly vrf: string; } export declare function pimIpv6VrfsToTerraform(struct?: PimIpv6Vrfs | cdktf.IResolvable): any; export declare function pimIpv6VrfsToHclTerraform(struct?: PimIpv6Vrfs | cdktf.IResolvable): any; export declare class PimIpv6VrfsOutputReference 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(): PimIpv6Vrfs | cdktf.IResolvable | undefined; set internalValue(value: PimIpv6Vrfs | cdktf.IResolvable | undefined); private _rpAddress?; get rpAddress(): string; set rpAddress(value: string); resetRpAddress(): void; get rpAddressInput(): string; private _rpAddressAccessList?; get rpAddressAccessList(): string; set rpAddressAccessList(value: string); resetRpAddressAccessList(): void; get rpAddressAccessListInput(): string; private _rpAddressBidir?; get rpAddressBidir(): boolean | cdktf.IResolvable; set rpAddressBidir(value: boolean | cdktf.IResolvable); resetRpAddressBidir(): void; get rpAddressBidirInput(): any; private _vrf?; get vrf(): string; set vrf(value: string); get vrfInput(): string; } export declare class PimIpv6VrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: PimIpv6Vrfs[] | 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): PimIpv6VrfsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6 iosxe_pim_ipv6} */ export declare class PimIpv6 extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_pim_ipv6"; /** * Generates CDKTF code for importing a PimIpv6 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 PimIpv6 to import * @param importFromId The id of the existing PimIpv6 that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/pim_ipv6#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PimIpv6 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/pim_ipv6 iosxe_pim_ipv6} 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 PimIpv6Config = {} */ constructor(scope: Construct, id: string, config?: PimIpv6Config); 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 _rpAddress?; get rpAddress(): string; set rpAddress(value: string); resetRpAddress(): void; get rpAddressInput(): string; private _rpAddressAccessList?; get rpAddressAccessList(): string; set rpAddressAccessList(value: string); resetRpAddressAccessList(): void; get rpAddressAccessListInput(): string; private _rpAddressBidir?; get rpAddressBidir(): boolean | cdktf.IResolvable; set rpAddressBidir(value: boolean | cdktf.IResolvable); resetRpAddressBidir(): void; get rpAddressBidirInput(): any; private _vrfs; get vrfs(): PimIpv6VrfsList; putVrfs(value: PimIpv6Vrfs[] | cdktf.IResolvable): void; resetVrfs(): void; get vrfsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }