import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZoneSetting = cloudflare.getZoneSetting({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * settingId: "always_online", * }); * ``` */ export declare function getZoneSetting(args: GetZoneSettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getZoneSetting. */ export interface GetZoneSettingArgs { /** * Setting name */ settingId: string; /** * Identifier */ zoneId: string; } /** * A collection of values returned by getZoneSetting. */ export interface GetZoneSettingResult { /** * Whether or not this setting can be modified for this zone (based on your Cloudflare plan level). */ readonly editable: boolean; /** * ssl-recommender enrollment setting. */ readonly enabled: boolean; /** * Setting name */ readonly id: string; /** * last time this setting was modified. */ readonly modifiedOn: string; /** * Setting name */ readonly settingId: string; /** * Value of the zone setting. * Notes: The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is false. */ readonly timeRemaining: number; /** * Current value of the zone setting. * Available values: "on", "off". */ readonly value: string; /** * Identifier */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZoneSetting = cloudflare.getZoneSetting({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * settingId: "always_online", * }); * ``` */ export declare function getZoneSettingOutput(args: GetZoneSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getZoneSetting. */ export interface GetZoneSettingOutputArgs { /** * Setting name */ settingId: pulumi.Input; /** * Identifier */ zoneId: pulumi.Input; }