import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleHostnameTlsSetting = cloudflare.getHostnameTlsSetting({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * settingId: "ciphers", * }); * ``` */ export declare function getHostnameTlsSetting(args: GetHostnameTlsSettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostnameTlsSetting. */ export interface GetHostnameTlsSettingArgs { /** * The TLS Setting name. * Available values: "ciphers", "min*tls*version", "http2". */ settingId: string; /** * Identifier. */ zoneId: string; } /** * A collection of values returned by getHostnameTlsSetting. */ export interface GetHostnameTlsSettingResult { /** * This is the time the tls setting was originally created for this hostname. */ readonly createdAt: string; /** * The hostname for which the tls settings are set. */ readonly hostname: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The TLS Setting name. * Available values: "ciphers", "min*tls*version", "http2". */ readonly settingId: string; /** * Deployment status for the given tls setting. */ readonly status: string; /** * This is the time the tls setting was updated. */ readonly updatedAt: string; /** * The tls setting value. */ readonly value: number; /** * Identifier. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleHostnameTlsSetting = cloudflare.getHostnameTlsSetting({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * settingId: "ciphers", * }); * ``` */ export declare function getHostnameTlsSettingOutput(args: GetHostnameTlsSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostnameTlsSetting. */ export interface GetHostnameTlsSettingOutputArgs { /** * The TLS Setting name. * Available values: "ciphers", "min*tls*version", "http2". */ settingId: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; }