import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustDeviceSettings = cloudflare.getZeroTrustDeviceSettings({ * accountId: "699d98642c564d2e855e9661899b7252", * }); * ``` */ export declare function getZeroTrustDeviceSettings(args: GetZeroTrustDeviceSettingsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getZeroTrustDeviceSettings. */ export interface GetZeroTrustDeviceSettingsArgs { accountId: string; } /** * A collection of values returned by getZeroTrustDeviceSettings. */ export interface GetZeroTrustDeviceSettingsResult { readonly accountId: string; /** * Sets the time limit, in seconds, that a user can use an override code to bypass WARP. */ readonly disableForTime: number; /** * Enable gateway proxy filtering on TCP. */ readonly gatewayProxyEnabled: boolean; /** * Enable gateway proxy filtering on UDP. */ readonly gatewayUdpProxyEnabled: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Enable installation of cloudflare managed root certificate. */ readonly rootCertificateInstallationEnabled: boolean; /** * Enable using CGNAT virtual IPv4. */ readonly useZtVirtualIp: boolean; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustDeviceSettings = cloudflare.getZeroTrustDeviceSettings({ * accountId: "699d98642c564d2e855e9661899b7252", * }); * ``` */ export declare function getZeroTrustDeviceSettingsOutput(args: GetZeroTrustDeviceSettingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getZeroTrustDeviceSettings. */ export interface GetZeroTrustDeviceSettingsOutputArgs { accountId: pulumi.Input; }