import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxePrefixListConfig 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/data-sources/prefix_list#device DataIosxePrefixList#device} */ readonly device?: string; } export interface DataIosxePrefixListPrefixListDescription { } export declare function dataIosxePrefixListPrefixListDescriptionToTerraform(struct?: DataIosxePrefixListPrefixListDescription): any; export declare function dataIosxePrefixListPrefixListDescriptionToHclTerraform(struct?: DataIosxePrefixListPrefixListDescription): any; export declare class DataIosxePrefixListPrefixListDescriptionOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataIosxePrefixListPrefixListDescription | undefined; set internalValue(value: DataIosxePrefixListPrefixListDescription | undefined); get description(): any; get name(): any; } export declare class DataIosxePrefixListPrefixListDescriptionList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataIosxePrefixListPrefixListDescriptionOutputReference; } export interface DataIosxePrefixListPrefixes { } export declare function dataIosxePrefixListPrefixesToTerraform(struct?: DataIosxePrefixListPrefixes): any; export declare function dataIosxePrefixListPrefixesToHclTerraform(struct?: DataIosxePrefixListPrefixes): any; export declare class DataIosxePrefixListPrefixesOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataIosxePrefixListPrefixes | undefined; set internalValue(value: DataIosxePrefixListPrefixes | undefined); get action(): any; get ge(): any; get ip(): any; get le(): any; get name(): any; get seq(): any; } export declare class DataIosxePrefixListPrefixesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataIosxePrefixListPrefixesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/prefix_list iosxe_prefix_list} */ export declare class DataIosxePrefixList extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_prefix_list"; /** * Generates CDKTF code for importing a DataIosxePrefixList 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 DataIosxePrefixList to import * @param importFromId The id of the existing DataIosxePrefixList that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/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 DataIosxePrefixList 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/data-sources/prefix_list iosxe_prefix_list} Data Source * * @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 DataIosxePrefixListConfig = {} */ constructor(scope: Construct, id: string, config?: DataIosxePrefixListConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _prefixListDescription; get prefixListDescription(): DataIosxePrefixListPrefixListDescriptionList; private _prefixes; get prefixes(): DataIosxePrefixListPrefixesList; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }