import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CliConfig extends cdktf.TerraformMetaArguments { /** * This attribute contains the CLI commands. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/cli#cli Cli#cli} */ readonly cli: 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/cli#device Cli#device} */ readonly device?: string; /** * Determines which RPC method is used to send CLI commands. When `false` (default), uses the transactional `config-ios-cli-trans` RPC which provides automatic rollback on failure but only supports native IOS CLIs with YANG model support. When `true`, uses the `config-ios-cli-rpc` RPC which supports all IOS native and non-native CLIs but without transactional guarantees or automatic rollback. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/cli#raw Cli#raw} */ readonly raw?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/cli iosxe_cli} */ export declare class Cli extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_cli"; /** * Generates CDKTF code for importing a Cli 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 Cli to import * @param importFromId The id of the existing Cli that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/cli#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Cli 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/cli iosxe_cli} 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 CliConfig */ constructor(scope: Construct, id: string, config: CliConfig); private _cli?; get cli(): string; set cli(value: string); get cliInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _raw?; get raw(): boolean | cdktf.IResolvable; set raw(value: boolean | cdktf.IResolvable); resetRaw(): void; get rawInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }