import * as pulumi from "@pulumi/pulumi"; /** * The zia.NssServer resource manages NSS (Nanolog Streaming Service) server configurations in the * Zscaler Internet Access (ZIA) cloud. NSS servers are used to stream logs from ZIA to external SIEM * or log management systems. * * ## Example Usage * ### Basic NSS Server * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.NssServer("example", { * name: "Example NSS Server", * status: "ENABLED", * type: "NSS_FOR_FIREWALL", * }); * ``` * * ## Import * * An existing NSS server can be imported using its ID, e.g. * * ```sh * $ pulumi import zia:index:NssServer example 12345 * ``` */ export declare class NssServer extends pulumi.CustomResource { /** * Get an existing NssServer resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): NssServer; /** * Returns true if the given object is an instance of NssServer. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NssServer; /** * The ICAP server ID associated with the NSS server. */ readonly icapSvrId: pulumi.Output; /** * Name of the NSS server. */ readonly name: pulumi.Output; /** * The unique identifier for the NSS server assigned by the ZIA cloud. */ readonly nssId: pulumi.Output; /** * The status of the NSS server. Accepted values: 'ENABLED' or 'DISABLED'. Default: 'ENABLED'. */ readonly status: pulumi.Output; /** * The NSS server type. Accepted values: 'NSS_FOR_FIREWALL', 'NSS_FOR_WEB'. Default: 'NSS_FOR_FIREWALL'. */ readonly type: pulumi.Output; /** * Create a NssServer resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NssServerArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a NssServer resource. */ export interface NssServerArgs { /** * The ICAP server ID associated with the NSS server. */ icapSvrId?: pulumi.Input; /** * Name of the NSS server. */ name: pulumi.Input; /** * The status of the NSS server. Accepted values: 'ENABLED' or 'DISABLED'. Default: 'ENABLED'. */ status?: pulumi.Input; /** * The NSS server type. Accepted values: 'NSS_FOR_FIREWALL', 'NSS_FOR_WEB'. Default: 'NSS_FOR_FIREWALL'. */ type?: pulumi.Input; } //# sourceMappingURL=nssServer.d.ts.map