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; /** * Controls whether the external emergency disconnect feature is enabled. */ readonly externalEmergencySignalEnabled: boolean; /** * The SHA256 fingerprint (64 hexadecimal characters) of the HTTPS server certificate for the external*emergency*signal_url. If provided, the WARP client will use this value to verify the server's identity. The device will ignore any response if the server's certificate fingerprint does not exactly match this value. */ readonly externalEmergencySignalFingerprint: string; /** * The interval at which the WARP client fetches the emergency disconnect signal, formatted as a duration string (e.g., "5m", "2m30s", "1h"). Minimum 30 seconds. */ readonly externalEmergencySignalInterval: string; /** * The HTTPS URL from which to fetch the emergency disconnect signal. Must use HTTPS and have an IPv4 or IPv6 address as the host. */ readonly externalEmergencySignalUrl: string; /** * 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; }