import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PrefixListConfig 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/resources/prefix_list#device PrefixList#device} */ readonly device?: string; /** * Describe about prefix-list entry * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#prefix_list_description PrefixList#prefix_list_description} */ readonly prefixListDescription?: PrefixListPrefixListDescription[] | cdktf.IResolvable; /** * Build prefix-lists with name ans seq.no * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#prefixes PrefixList#prefixes} */ readonly prefixes?: PrefixListPrefixes[] | cdktf.IResolvable; } export interface PrefixListPrefixListDescription { /** * Prefix-list specific description * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#description PrefixList#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#name PrefixList#name} */ readonly name: string; } export declare function prefixListPrefixListDescriptionToTerraform(struct?: PrefixListPrefixListDescription | cdktf.IResolvable): any; export declare function prefixListPrefixListDescriptionToHclTerraform(struct?: PrefixListPrefixListDescription | cdktf.IResolvable): any; export declare class PrefixListPrefixListDescriptionOutputReference 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(): PrefixListPrefixListDescription | cdktf.IResolvable | undefined; set internalValue(value: PrefixListPrefixListDescription | cdktf.IResolvable | undefined); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; } export declare class PrefixListPrefixListDescriptionList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: PrefixListPrefixListDescription[] | 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): PrefixListPrefixListDescriptionOutputReference; } export interface PrefixListPrefixes { /** * Specify deny or permit action * - Choices: `deny`, `permit` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#action PrefixList#action} */ readonly action?: string; /** * Minimum prefix length to be matched * - Range: `1`-`32` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#ge PrefixList#ge} */ readonly ge?: number; /** * IPv4 Prefix * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#ip PrefixList#ip} */ readonly ip?: string; /** * Maximum prefix length to be matched * - Range: `1`-`32` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#le PrefixList#le} */ readonly le?: number; /** * Name of the prefix-list * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#name PrefixList#name} */ readonly name: string; /** * Seq Number of the prefix-list * - Range: `1`-`4294967294` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#seq PrefixList#seq} */ readonly seq: number; } export declare function prefixListPrefixesToTerraform(struct?: PrefixListPrefixes | cdktf.IResolvable): any; export declare function prefixListPrefixesToHclTerraform(struct?: PrefixListPrefixes | cdktf.IResolvable): any; export declare class PrefixListPrefixesOutputReference 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(): PrefixListPrefixes | cdktf.IResolvable | undefined; set internalValue(value: PrefixListPrefixes | cdktf.IResolvable | undefined); private _action?; get action(): string; set action(value: string); resetAction(): void; get actionInput(): string; private _ge?; get ge(): number; set ge(value: number); resetGe(): void; get geInput(): number; private _ip?; get ip(): string; set ip(value: string); resetIp(): void; get ipInput(): string; private _le?; get le(): number; set le(value: number); resetLe(): void; get leInput(): number; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _seq?; get seq(): number; set seq(value: number); get seqInput(): number; } export declare class PrefixListPrefixesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: PrefixListPrefixes[] | 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): PrefixListPrefixesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list iosxe_prefix_list} */ export declare class PrefixList extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_prefix_list"; /** * Generates CDKTF code for importing a PrefixList 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 PrefixList to import * @param importFromId The id of the existing PrefixList that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/prefix_list#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PrefixList 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/prefix_list iosxe_prefix_list} 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 PrefixListConfig = {} */ constructor(scope: Construct, id: string, config?: PrefixListConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _prefixListDescription; get prefixListDescription(): PrefixListPrefixListDescriptionList; putPrefixListDescription(value: PrefixListPrefixListDescription[] | cdktf.IResolvable): void; resetPrefixListDescription(): void; get prefixListDescriptionInput(): any; private _prefixes; get prefixes(): PrefixListPrefixesList; putPrefixes(value: PrefixListPrefixes[] | cdktf.IResolvable): void; resetPrefixes(): void; get prefixesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }