import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustGatewaySettings = new cloudflare.ZeroTrustGatewaySettings("example_zero_trust_gateway_settings", { * accountId: "699d98642c564d2e855e9661899b7252", * settings: { * activityLog: { * enabled: true, * }, * antivirus: { * enabledDownloadPhase: false, * enabledUploadPhase: false, * failClosed: false, * notificationSettings: { * enabled: true, * includeContext: true, * msg: "msg", * supportUrl: "support_url", * }, * }, * blockPage: { * backgroundColor: "background_color", * enabled: true, * footerText: "--footer--", * headerText: "--header--", * includeContext: true, * logoPath: "https://logos.com/a.png", * mailtoAddress: "admin@example.com", * mailtoSubject: "Blocked User Inquiry", * mode: "", * name: "Cloudflare", * suppressFooter: false, * targetUri: "https://example.com", * }, * bodyScanning: { * inspectionMode: "deep", * }, * browserIsolation: { * nonIdentityEnabled: true, * urlBrowserIsolationEnabled: true, * }, * certificate: { * id: "d1b364c5-1311-466e-a194-f0e943e0799f", * }, * customCertificate: { * enabled: true, * id: "d1b364c5-1311-466e-a194-f0e943e0799f", * }, * extendedEmailMatching: { * enabled: true, * }, * fips: { * tls: true, * }, * hostSelector: { * enabled: false, * }, * inspection: { * mode: "static", * }, * protocolDetection: { * enabled: true, * }, * sandbox: { * enabled: true, * fallbackAction: "allow", * }, * tlsDecrypt: { * enabled: true, * }, * }, * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustGatewaySettings:ZeroTrustGatewaySettings example '' * ``` */ export declare class ZeroTrustGatewaySettings extends pulumi.CustomResource { /** * Get an existing ZeroTrustGatewaySettings 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?: ZeroTrustGatewaySettingsState, opts?: pulumi.CustomResourceOptions): ZeroTrustGatewaySettings; /** * Returns true if the given object is an instance of ZeroTrustGatewaySettings. 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 ZeroTrustGatewaySettings; readonly accountId: pulumi.Output; readonly createdAt: pulumi.Output; /** * Specify account settings. */ readonly settings: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Create a ZeroTrustGatewaySettings 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: ZeroTrustGatewaySettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustGatewaySettings resources. */ export interface ZeroTrustGatewaySettingsState { accountId?: pulumi.Input; createdAt?: pulumi.Input; /** * Specify account settings. */ settings?: pulumi.Input; updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustGatewaySettings resource. */ export interface ZeroTrustGatewaySettingsArgs { accountId: pulumi.Input; /** * Specify account settings. */ settings?: pulumi.Input; }