import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * The zia.ForwardingControlZpaGateway resource manages forwarding control ZPA gateway configurations in the * Zscaler Internet Access (ZIA) cloud. ZPA gateways are used in forwarding control rules to direct traffic * to Zscaler Private Access (ZPA) application segments through ZPA server groups. * * ## Example Usage * ### Basic Forwarding Control ZPA Gateway * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.ForwardingControlZpaGateway("example", { * name: "Example ZPA Gateway", * description: "Managed by Pulumi", * type: "ZPA", * zpaServerGroup: { * externalId: "server-group-external-id", * name: "Example Server Group", * }, * zpaAppSegments: [{ * externalId: "app-segment-external-id", * name: "Example App Segment", * }], * }); * ``` * * ## Import * * An existing forwarding control ZPA gateway can be imported using its ID, e.g. * * ```sh * $ pulumi import zia:index:ForwardingControlZpaGateway example 12345 * ``` */ export declare class ForwardingControlZpaGateway extends pulumi.CustomResource { /** * Get an existing ForwardingControlZpaGateway 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): ForwardingControlZpaGateway; /** * Returns true if the given object is an instance of ForwardingControlZpaGateway. 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 ForwardingControlZpaGateway; /** * Description of the ZPA gateway. */ readonly description: pulumi.Output; /** * The unique identifier for the ZPA gateway assigned by the ZIA cloud. */ readonly gatewayId: pulumi.Output; /** * Name of the ZPA gateway. */ readonly name: pulumi.Output; /** * The gateway type. Accepted values: 'ZPA' or 'ECZPA'. */ readonly type: pulumi.Output; /** * List of ZPA application segments associated with the gateway. */ readonly zpaAppSegments: pulumi.Output; /** * The ZPA server group associated with the gateway. */ readonly zpaServerGroup: pulumi.Output; /** * Create a ForwardingControlZpaGateway 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?: ForwardingControlZpaGatewayArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ForwardingControlZpaGateway resource. */ export interface ForwardingControlZpaGatewayArgs { /** * Description of the ZPA gateway. */ description?: pulumi.Input; /** * Name of the ZPA gateway. */ name?: pulumi.Input; /** * The gateway type. Accepted values: 'ZPA' or 'ECZPA'. */ type?: pulumi.Input; /** * List of ZPA application segments associated with the gateway. */ zpaAppSegments?: pulumi.Input[] | undefined>; /** * The ZPA server group associated with the gateway. */ zpaServerGroup?: pulumi.Input; } //# sourceMappingURL=forwardingControlZpaGateway.d.ts.map