import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MsdpConfig 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/msdp#delete_mode Msdp#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/msdp#device Msdp#device} */ readonly device?: string; /** * Configure MSDP Originator ID * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#originator_id Msdp#originator_id} */ readonly originatorId?: string; /** * MSDP peer on which the password is to be set * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#passwords Msdp#passwords} */ readonly passwords?: MsdpPasswords[] | cdktf.IResolvable; /** * Configure an MSDP peer * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#peers Msdp#peers} */ readonly peers?: MsdpPeers[] | cdktf.IResolvable; /** * Select VPN Routing/Forwarding instance * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#vrfs Msdp#vrfs} */ readonly vrfs?: MsdpVrfs[] | cdktf.IResolvable; } export interface MsdpPasswords { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#addr Msdp#addr} */ readonly addr: string; /** * * - Range: `0`-`7` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#encryption Msdp#encryption} */ readonly encryption?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#password Msdp#password} */ readonly password: string; } export declare function msdpPasswordsToTerraform(struct?: MsdpPasswords | cdktf.IResolvable): any; export declare function msdpPasswordsToHclTerraform(struct?: MsdpPasswords | cdktf.IResolvable): any; export declare class MsdpPasswordsOutputReference 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(): MsdpPasswords | cdktf.IResolvable | undefined; set internalValue(value: MsdpPasswords | cdktf.IResolvable | undefined); private _addr?; get addr(): string; set addr(value: string); get addrInput(): string; private _encryption?; get encryption(): number; set encryption(value: number); resetEncryption(): void; get encryptionInput(): number; private _password?; get password(): string; set password(value: string); get passwordInput(): string; } export declare class MsdpPasswordsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MsdpPasswords[] | 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): MsdpPasswordsOutputReference; } export interface MsdpPeers { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#addr Msdp#addr} */ readonly addr: string; /** * Loopback interface * - Range: `0`-`2147483647` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#connect_source_loopback Msdp#connect_source_loopback} */ readonly connectSourceLoopback?: number; /** * Configured AS number * - Range: `1`-`65535` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#remote_as Msdp#remote_as} */ readonly remoteAs?: number; } export declare function msdpPeersToTerraform(struct?: MsdpPeers | cdktf.IResolvable): any; export declare function msdpPeersToHclTerraform(struct?: MsdpPeers | cdktf.IResolvable): any; export declare class MsdpPeersOutputReference 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(): MsdpPeers | cdktf.IResolvable | undefined; set internalValue(value: MsdpPeers | cdktf.IResolvable | undefined); private _addr?; get addr(): string; set addr(value: string); get addrInput(): string; private _connectSourceLoopback?; get connectSourceLoopback(): number; set connectSourceLoopback(value: number); resetConnectSourceLoopback(): void; get connectSourceLoopbackInput(): number; private _remoteAs?; get remoteAs(): number; set remoteAs(value: number); resetRemoteAs(): void; get remoteAsInput(): number; } export declare class MsdpPeersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MsdpPeers[] | 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): MsdpPeersOutputReference; } export interface MsdpVrfsPasswords { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#addr Msdp#addr} */ readonly addr: string; /** * * - Range: `0`-`7` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#encryption Msdp#encryption} */ readonly encryption?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#password Msdp#password} */ readonly password: string; } export declare function msdpVrfsPasswordsToTerraform(struct?: MsdpVrfsPasswords | cdktf.IResolvable): any; export declare function msdpVrfsPasswordsToHclTerraform(struct?: MsdpVrfsPasswords | cdktf.IResolvable): any; export declare class MsdpVrfsPasswordsOutputReference 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(): MsdpVrfsPasswords | cdktf.IResolvable | undefined; set internalValue(value: MsdpVrfsPasswords | cdktf.IResolvable | undefined); private _addr?; get addr(): string; set addr(value: string); get addrInput(): string; private _encryption?; get encryption(): number; set encryption(value: number); resetEncryption(): void; get encryptionInput(): number; private _password?; get password(): string; set password(value: string); get passwordInput(): string; } export declare class MsdpVrfsPasswordsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MsdpVrfsPasswords[] | 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): MsdpVrfsPasswordsOutputReference; } export interface MsdpVrfsPeers { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#addr Msdp#addr} */ readonly addr: string; /** * Loopback interface * - Range: `0`-`2147483647` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#connect_source_loopback Msdp#connect_source_loopback} */ readonly connectSourceLoopback?: number; /** * Configured AS number * - Range: `1`-`65535` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#remote_as Msdp#remote_as} */ readonly remoteAs?: number; } export declare function msdpVrfsPeersToTerraform(struct?: MsdpVrfsPeers | cdktf.IResolvable): any; export declare function msdpVrfsPeersToHclTerraform(struct?: MsdpVrfsPeers | cdktf.IResolvable): any; export declare class MsdpVrfsPeersOutputReference 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(): MsdpVrfsPeers | cdktf.IResolvable | undefined; set internalValue(value: MsdpVrfsPeers | cdktf.IResolvable | undefined); private _addr?; get addr(): string; set addr(value: string); get addrInput(): string; private _connectSourceLoopback?; get connectSourceLoopback(): number; set connectSourceLoopback(value: number); resetConnectSourceLoopback(): void; get connectSourceLoopbackInput(): number; private _remoteAs?; get remoteAs(): number; set remoteAs(value: number); resetRemoteAs(): void; get remoteAsInput(): number; } export declare class MsdpVrfsPeersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MsdpVrfsPeers[] | 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): MsdpVrfsPeersOutputReference; } export interface MsdpVrfs { /** * Configure MSDP Originator ID * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#originator_id Msdp#originator_id} */ readonly originatorId?: string; /** * MSDP peer on which the password is to be set * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#passwords Msdp#passwords} */ readonly passwords?: MsdpVrfsPasswords[] | cdktf.IResolvable; /** * Configure an MSDP peer * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#peers Msdp#peers} */ readonly peers?: MsdpVrfsPeers[] | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#vrf Msdp#vrf} */ readonly vrf: string; } export declare function msdpVrfsToTerraform(struct?: MsdpVrfs | cdktf.IResolvable): any; export declare function msdpVrfsToHclTerraform(struct?: MsdpVrfs | cdktf.IResolvable): any; export declare class MsdpVrfsOutputReference 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(): MsdpVrfs | cdktf.IResolvable | undefined; set internalValue(value: MsdpVrfs | cdktf.IResolvable | undefined); private _originatorId?; get originatorId(): string; set originatorId(value: string); resetOriginatorId(): void; get originatorIdInput(): string; private _passwords; get passwords(): MsdpVrfsPasswordsList; putPasswords(value: MsdpVrfsPasswords[] | cdktf.IResolvable): void; resetPasswords(): void; get passwordsInput(): any; private _peers; get peers(): MsdpVrfsPeersList; putPeers(value: MsdpVrfsPeers[] | cdktf.IResolvable): void; resetPeers(): void; get peersInput(): any; private _vrf?; get vrf(): string; set vrf(value: string); get vrfInput(): string; } export declare class MsdpVrfsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MsdpVrfs[] | 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): MsdpVrfsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp iosxe_msdp} */ export declare class Msdp extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_msdp"; /** * Generates CDKTF code for importing a Msdp 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 Msdp to import * @param importFromId The id of the existing Msdp that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/msdp#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Msdp 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/msdp iosxe_msdp} 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 MsdpConfig = {} */ constructor(scope: Construct, id: string, config?: MsdpConfig); 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 _originatorId?; get originatorId(): string; set originatorId(value: string); resetOriginatorId(): void; get originatorIdInput(): string; private _passwords; get passwords(): MsdpPasswordsList; putPasswords(value: MsdpPasswords[] | cdktf.IResolvable): void; resetPasswords(): void; get passwordsInput(): any; private _peers; get peers(): MsdpPeersList; putPeers(value: MsdpPeers[] | cdktf.IResolvable): void; resetPeers(): void; get peersInput(): any; private _vrfs; get vrfs(): MsdpVrfsList; putVrfs(value: MsdpVrfs[] | cdktf.IResolvable): void; resetVrfs(): void; get vrfsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }