import * as pulumi from "@pulumi/pulumi"; /** * The zia.ForwardingControlProxies resource manages forwarding control proxy configurations in the * Zscaler Internet Access (ZIA) cloud. Proxies are used in forwarding control rules to direct traffic * through proxy chains, ZIA, or EC-self proxy types. * * ## Example Usage * ### Basic Forwarding Control Proxy * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.ForwardingControlProxies("example", { * name: "Example Proxy", * description: "Managed by Pulumi", * type: "PROXYCHAIN", * address: "proxy.example.com", * port: 8080, * }); * ``` * * ## Import * * An existing forwarding control proxy can be imported using its ID, e.g. * * ```sh * $ pulumi import zia:index:ForwardingControlProxies example 12345 * ``` */ export declare class ForwardingControlProxies extends pulumi.CustomResource { /** * Get an existing ForwardingControlProxies 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): ForwardingControlProxies; /** * Returns true if the given object is an instance of ForwardingControlProxies. 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 ForwardingControlProxies; /** * The address of the proxy server. */ readonly address: pulumi.Output; /** * Whether to base64-encode the X-Authenticated-User header. */ readonly base64EncodeXauHeader: pulumi.Output; /** * The certificate ID used for the proxy. */ readonly certId: pulumi.Output; /** * Description of the forwarding control proxy. */ readonly description: pulumi.Output; /** * Whether to insert the X-Authenticated-User header. */ readonly insertXauHeader: pulumi.Output; /** * Name of the forwarding control proxy. */ readonly name: pulumi.Output; /** * The port number of the proxy server. */ readonly port: pulumi.Output; /** * The unique identifier for the proxy assigned by the ZIA cloud. */ readonly proxyId: pulumi.Output; /** * The proxy type. Accepted values: 'PROXYCHAIN', 'ZIA', 'ECSELF'. */ readonly type: pulumi.Output; /** * Create a ForwardingControlProxies 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?: ForwardingControlProxiesArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ForwardingControlProxies resource. */ export interface ForwardingControlProxiesArgs { /** * The address of the proxy server. */ address?: pulumi.Input; /** * Whether to base64-encode the X-Authenticated-User header. */ base64EncodeXauHeader?: pulumi.Input; /** * The certificate ID used for the proxy. */ certId?: pulumi.Input; /** * Description of the forwarding control proxy. */ description?: pulumi.Input; /** * Whether to insert the X-Authenticated-User header. */ insertXauHeader?: pulumi.Input; /** * Name of the forwarding control proxy. */ name?: pulumi.Input; /** * The port number of the proxy server. */ port?: pulumi.Input; /** * The proxy type. Accepted values: 'PROXYCHAIN', 'ZIA', 'ECSELF'. */ type?: pulumi.Input; } //# sourceMappingURL=forwardingControlProxies.d.ts.map