import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IsisConfig extends cdktf.TerraformMetaArguments { /** * IS-IS area tag * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#area_tag Isis#area_tag} */ readonly areaTag: string; /** * 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/isis#delete_mode Isis#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/isis#device Isis#device} */ readonly device?: string; /** * Log changes in adjacency state * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#log_adjacency_changes Isis#log_adjacency_changes} */ readonly logAdjacencyChanges?: boolean | cdktf.IResolvable; /** * Log all adjacency changes including non-IIH events * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#log_adjacency_changes_all Isis#log_adjacency_changes_all} */ readonly logAdjacencyChangesAll?: boolean | cdktf.IResolvable; /** * Use old style of TLVs with narrow metric * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#metric_style_narrow Isis#metric_style_narrow} */ readonly metricStyleNarrow?: boolean | cdktf.IResolvable; /** * Send and accept both styles of TLVs during transition * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#metric_style_transition Isis#metric_style_transition} */ readonly metricStyleTransition?: boolean | cdktf.IResolvable; /** * Use new style of TLVs to carry wider metric * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#metric_style_wide Isis#metric_style_wide} */ readonly metricStyleWide?: boolean | cdktf.IResolvable; /** * Network Entity Titles for this IS-IS process * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#nets Isis#nets} */ readonly nets?: IsisNets[] | cdktf.IResolvable; } export interface IsisNets { /** * NET value * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#tag Isis#tag} */ readonly tag: string; } export declare function isisNetsToTerraform(struct?: IsisNets | cdktf.IResolvable): any; export declare function isisNetsToHclTerraform(struct?: IsisNets | cdktf.IResolvable): any; export declare class IsisNetsOutputReference 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(): IsisNets | cdktf.IResolvable | undefined; set internalValue(value: IsisNets | cdktf.IResolvable | undefined); private _tag?; get tag(): string; set tag(value: string); get tagInput(): string; } export declare class IsisNetsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: IsisNets[] | 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): IsisNetsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis iosxe_isis} */ export declare class Isis extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_isis"; /** * Generates CDKTF code for importing a Isis 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 Isis to import * @param importFromId The id of the existing Isis that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/isis#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Isis 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/isis iosxe_isis} 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 IsisConfig */ constructor(scope: Construct, id: string, config: IsisConfig); private _areaTag?; get areaTag(): string; set areaTag(value: string); get areaTagInput(): string; 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 _logAdjacencyChanges?; get logAdjacencyChanges(): boolean | cdktf.IResolvable; set logAdjacencyChanges(value: boolean | cdktf.IResolvable); resetLogAdjacencyChanges(): void; get logAdjacencyChangesInput(): any; private _logAdjacencyChangesAll?; get logAdjacencyChangesAll(): boolean | cdktf.IResolvable; set logAdjacencyChangesAll(value: boolean | cdktf.IResolvable); resetLogAdjacencyChangesAll(): void; get logAdjacencyChangesAllInput(): any; private _metricStyleNarrow?; get metricStyleNarrow(): boolean | cdktf.IResolvable; set metricStyleNarrow(value: boolean | cdktf.IResolvable); resetMetricStyleNarrow(): void; get metricStyleNarrowInput(): any; private _metricStyleTransition?; get metricStyleTransition(): boolean | cdktf.IResolvable; set metricStyleTransition(value: boolean | cdktf.IResolvable); resetMetricStyleTransition(): void; get metricStyleTransitionInput(): any; private _metricStyleWide?; get metricStyleWide(): boolean | cdktf.IResolvable; set metricStyleWide(value: boolean | cdktf.IResolvable); resetMetricStyleWide(): void; get metricStyleWideInput(): any; private _nets; get nets(): IsisNetsList; putNets(value: IsisNets[] | cdktf.IResolvable): void; resetNets(): void; get netsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }