import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface NssServerConfig extends cdktf.TerraformMetaArguments { /** * The ICAP server ID * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/nss_server#icap_svr_id NssServer#icap_svr_id} */ readonly icapSvrId?: number; /** * The NSS server name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/nss_server#name NssServer#name} */ readonly name: string; /** * Enables or disables the status of the NSS server * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/nss_server#status NssServer#status} */ readonly status?: string; /** * The type of the NSS Server * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/nss_server#type NssServer#type} */ readonly type?: string; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/nss_server zia_nss_server} */ export declare class NssServer extends cdktf.TerraformResource { static readonly tfResourceType = "zia_nss_server"; /** * Generates CDKTF code for importing a NssServer 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 NssServer to import * @param importFromId The id of the existing NssServer that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/nss_server#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the NssServer 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/zscaler/zia/4.6.5/docs/resources/nss_server zia_nss_server} 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 NssServerConfig */ constructor(scope: Construct, id: string, config: NssServerConfig); private _icapSvrId?; get icapSvrId(): number; set icapSvrId(value: number); resetIcapSvrId(): void; get icapSvrIdInput(): number; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get nssId(): any; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }