import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface NetscalersdxProviderConfig { /** * TODO * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#headers NetscalersdxProvider#headers} */ readonly headers?: { [key: string]: string; }; /** * NetScaler SDX host. Can be specified with `NETSCALERSDX_HOST` environment variable. This has to start with https:// * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#host NetscalersdxProvider#host} */ readonly host?: string; /** * TODO * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#json_log_format NetscalersdxProvider#json_log_format} */ readonly jsonLogFormat?: boolean | cdktf.IResolvable; /** * Log level (Default is INFO). Can be specified with `NETSCALERSDX_LOG_LEVEL` environment variable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#log_level NetscalersdxProvider#log_level} */ readonly logLevel?: string; /** * NetScaler SDX password. Can be specified with `NETSCALERSDX_PASSWORD` environment variable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#password NetscalersdxProvider#password} */ readonly password?: string; /** * TODO * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#root_ca_path NetscalersdxProvider#root_ca_path} */ readonly rootCaPath?: string; /** * TODO * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#server_name NetscalersdxProvider#server_name} */ readonly serverName?: string; /** * Ignore validity of SDX TLS certificate if true. Can be specified with `NETSCALERSDX_SSL_VERIFY` environment variable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#ssl_verify NetscalersdxProvider#ssl_verify} */ readonly sslVerify?: boolean | cdktf.IResolvable; /** * NetScaler SDX username. Can be specified with `NETSCALERSDX_USERNAME` environment variable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#username NetscalersdxProvider#username} */ readonly username?: string; /** * Alias name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#alias NetscalersdxProvider#alias} */ readonly alias?: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs netscalersdx} */ export declare class NetscalersdxProvider extends cdktf.TerraformProvider { static readonly tfResourceType = "netscalersdx"; /** * Generates CDKTF code for importing a NetscalersdxProvider 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 NetscalersdxProvider to import * @param importFromId The id of the existing NetscalersdxProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the NetscalersdxProvider 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/netscaler/netscalersdx/0.7.2/docs netscalersdx} 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 NetscalersdxProviderConfig = {} */ constructor(scope: Construct, id: string, config?: NetscalersdxProviderConfig); private _headers?; get headers(): { [key: string]: string; } | undefined; set headers(value: { [key: string]: string; } | undefined); resetHeaders(): void; get headersInput(): { [key: string]: string; }; private _host?; get host(): string | undefined; set host(value: string | undefined); resetHost(): void; get hostInput(): string; private _jsonLogFormat?; get jsonLogFormat(): boolean | cdktf.IResolvable | undefined; set jsonLogFormat(value: boolean | cdktf.IResolvable | undefined); resetJsonLogFormat(): void; get jsonLogFormatInput(): any; private _logLevel?; get logLevel(): string | undefined; set logLevel(value: string | undefined); resetLogLevel(): void; get logLevelInput(): string; private _password?; get password(): string | undefined; set password(value: string | undefined); resetPassword(): void; get passwordInput(): string; private _rootCaPath?; get rootCaPath(): string | undefined; set rootCaPath(value: string | undefined); resetRootCaPath(): void; get rootCaPathInput(): string; private _serverName?; get serverName(): string | undefined; set serverName(value: string | undefined); resetServerName(): void; get serverNameInput(): string; private _sslVerify?; get sslVerify(): boolean | cdktf.IResolvable | undefined; set sslVerify(value: boolean | cdktf.IResolvable | undefined); resetSslVerify(): void; get sslVerifyInput(): any; private _username?; get username(): string | undefined; set username(value: string | undefined); resetUsername(): void; get usernameInput(): string; private _alias?; get alias(): string | undefined; set alias(value: string | undefined); resetAlias(): void; get aliasInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }