import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AccessListStandardConfig 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/access_list_standard#device AccessListStandard#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#entries AccessListStandard#entries} */ readonly entries?: AccessListStandardEntries[] | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#name AccessListStandard#name} */ readonly name: string; } export interface AccessListStandardEntries { /** * Any source prefix * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#deny_any AccessListStandard#deny_any} */ readonly denyAny?: boolean | cdktf.IResolvable; /** * A single source host * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#deny_host AccessListStandard#deny_host} */ readonly denyHost?: string; /** * Log matches against this entry * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#deny_log AccessListStandard#deny_log} */ readonly denyLog?: boolean | cdktf.IResolvable; /** * Network address prefix * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#deny_prefix AccessListStandard#deny_prefix} */ readonly denyPrefix?: string; /** * Wildcard bits * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#deny_prefix_mask AccessListStandard#deny_prefix_mask} */ readonly denyPrefixMask?: string; /** * Any source prefix * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#permit_any AccessListStandard#permit_any} */ readonly permitAny?: boolean | cdktf.IResolvable; /** * A single source host * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#permit_host AccessListStandard#permit_host} */ readonly permitHost?: string; /** * Log matches against this entry * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#permit_log AccessListStandard#permit_log} */ readonly permitLog?: boolean | cdktf.IResolvable; /** * Network address prefix * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#permit_prefix AccessListStandard#permit_prefix} */ readonly permitPrefix?: string; /** * Wildcard bits * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#permit_prefix_mask AccessListStandard#permit_prefix_mask} */ readonly permitPrefixMask?: string; /** * Access list entry comment * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#remark AccessListStandard#remark} */ readonly remark?: string; /** * * - Range: `1`-`2147483647` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#sequence AccessListStandard#sequence} */ readonly sequence: number; } export declare function accessListStandardEntriesToTerraform(struct?: AccessListStandardEntries | cdktf.IResolvable): any; export declare function accessListStandardEntriesToHclTerraform(struct?: AccessListStandardEntries | cdktf.IResolvable): any; export declare class AccessListStandardEntriesOutputReference 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(): AccessListStandardEntries | cdktf.IResolvable | undefined; set internalValue(value: AccessListStandardEntries | cdktf.IResolvable | undefined); private _denyAny?; get denyAny(): boolean | cdktf.IResolvable; set denyAny(value: boolean | cdktf.IResolvable); resetDenyAny(): void; get denyAnyInput(): any; private _denyHost?; get denyHost(): string; set denyHost(value: string); resetDenyHost(): void; get denyHostInput(): string; private _denyLog?; get denyLog(): boolean | cdktf.IResolvable; set denyLog(value: boolean | cdktf.IResolvable); resetDenyLog(): void; get denyLogInput(): any; private _denyPrefix?; get denyPrefix(): string; set denyPrefix(value: string); resetDenyPrefix(): void; get denyPrefixInput(): string; private _denyPrefixMask?; get denyPrefixMask(): string; set denyPrefixMask(value: string); resetDenyPrefixMask(): void; get denyPrefixMaskInput(): string; private _permitAny?; get permitAny(): boolean | cdktf.IResolvable; set permitAny(value: boolean | cdktf.IResolvable); resetPermitAny(): void; get permitAnyInput(): any; private _permitHost?; get permitHost(): string; set permitHost(value: string); resetPermitHost(): void; get permitHostInput(): string; private _permitLog?; get permitLog(): boolean | cdktf.IResolvable; set permitLog(value: boolean | cdktf.IResolvable); resetPermitLog(): void; get permitLogInput(): any; private _permitPrefix?; get permitPrefix(): string; set permitPrefix(value: string); resetPermitPrefix(): void; get permitPrefixInput(): string; private _permitPrefixMask?; get permitPrefixMask(): string; set permitPrefixMask(value: string); resetPermitPrefixMask(): void; get permitPrefixMaskInput(): string; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _sequence?; get sequence(): number; set sequence(value: number); get sequenceInput(): number; } export declare class AccessListStandardEntriesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: AccessListStandardEntries[] | 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): AccessListStandardEntriesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard iosxe_access_list_standard} */ export declare class AccessListStandard extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_access_list_standard"; /** * Generates CDKTF code for importing a AccessListStandard 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 AccessListStandard to import * @param importFromId The id of the existing AccessListStandard that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/access_list_standard#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AccessListStandard 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/access_list_standard iosxe_access_list_standard} 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 AccessListStandardConfig */ constructor(scope: Construct, id: string, config: AccessListStandardConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _entries; get entries(): AccessListStandardEntriesList; putEntries(value: AccessListStandardEntries[] | cdktf.IResolvable): void; resetEntries(): void; get entriesInput(): any; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }