import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustGatewayPacfile = new cloudflare.ZeroTrustGatewayPacfile("example_zero_trust_gateway_pacfile", { * accountId: "699d98642c564d2e855e9661899b7252", * contents: "function FindProxyForURL(url, host) { return \"DIRECT\"; }", * name: "Devops team", * description: "PAC file for Devops team", * slug: "pac_devops", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustGatewayPacfile:ZeroTrustGatewayPacfile example '/' * ``` */ export declare class ZeroTrustGatewayPacfile extends pulumi.CustomResource { /** * Get an existing ZeroTrustGatewayPacfile 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ZeroTrustGatewayPacfileState, opts?: pulumi.CustomResourceOptions): ZeroTrustGatewayPacfile; /** * Returns true if the given object is an instance of ZeroTrustGatewayPacfile. 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 ZeroTrustGatewayPacfile; readonly accountId: pulumi.Output; /** * Actual contents of the PAC file */ readonly contents: pulumi.Output; readonly createdAt: pulumi.Output; /** * Detailed description of the PAC file. */ readonly description: pulumi.Output; /** * Name of the PAC file. */ readonly name: pulumi.Output; /** * URL-friendly version of the PAC file name. If not provided, it will be auto-generated */ readonly slug: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Unique URL to download the PAC file. */ readonly url: pulumi.Output; /** * Create a ZeroTrustGatewayPacfile 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: ZeroTrustGatewayPacfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustGatewayPacfile resources. */ export interface ZeroTrustGatewayPacfileState { accountId?: pulumi.Input; /** * Actual contents of the PAC file */ contents?: pulumi.Input; createdAt?: pulumi.Input; /** * Detailed description of the PAC file. */ description?: pulumi.Input; /** * Name of the PAC file. */ name?: pulumi.Input; /** * URL-friendly version of the PAC file name. If not provided, it will be auto-generated */ slug?: pulumi.Input; updatedAt?: pulumi.Input; /** * Unique URL to download the PAC file. */ url?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustGatewayPacfile resource. */ export interface ZeroTrustGatewayPacfileArgs { accountId: pulumi.Input; /** * Actual contents of the PAC file */ contents: pulumi.Input; /** * Detailed description of the PAC file. */ description?: pulumi.Input; /** * Name of the PAC file. */ name: pulumi.Input; /** * URL-friendly version of the PAC file name. If not provided, it will be auto-generated */ slug?: pulumi.Input; }