import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AsPathAccessListConfig 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/as_path_access_list#device AsPathAccessList#device} */ readonly device?: string; /** * Specify community list to accept or deny * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/as_path_access_list#entries AsPathAccessList#entries} */ readonly entries?: AsPathAccessListEntries[] | cdktf.IResolvable; /** * * - Range: `1`-`500` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/as_path_access_list#name AsPathAccessList#name} */ readonly name: number; } export interface AsPathAccessListEntries { /** * * - Choices: `deny`, `permit` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/as_path_access_list#action AsPathAccessList#action} */ readonly action: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/as_path_access_list#regex AsPathAccessList#regex} */ readonly regex: string; } export declare function asPathAccessListEntriesToTerraform(struct?: AsPathAccessListEntries | cdktf.IResolvable): any; export declare function asPathAccessListEntriesToHclTerraform(struct?: AsPathAccessListEntries | cdktf.IResolvable): any; export declare class AsPathAccessListEntriesOutputReference 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(): AsPathAccessListEntries | cdktf.IResolvable | undefined; set internalValue(value: AsPathAccessListEntries | cdktf.IResolvable | undefined); private _action?; get action(): string; set action(value: string); get actionInput(): string; private _regex?; get regex(): string; set regex(value: string); get regexInput(): string; } export declare class AsPathAccessListEntriesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: AsPathAccessListEntries[] | 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): AsPathAccessListEntriesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/as_path_access_list iosxe_as_path_access_list} */ export declare class AsPathAccessList extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_as_path_access_list"; /** * Generates CDKTF code for importing a AsPathAccessList 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 AsPathAccessList to import * @param importFromId The id of the existing AsPathAccessList that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/as_path_access_list#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AsPathAccessList 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/as_path_access_list iosxe_as_path_access_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 AsPathAccessListConfig */ constructor(scope: Construct, id: string, config: AsPathAccessListConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _entries; get entries(): AsPathAccessListEntriesList; putEntries(value: AsPathAccessListEntries[] | cdktf.IResolvable): void; resetEntries(): void; get entriesInput(): any; get id(): any; private _name?; get name(): number; set name(value: number); get nameInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }