import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve information about a DBaas logs input engine. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const logstash = ovh.Dbaas.getLogsInputEngine({ * serviceName: "ldp-xx-xxxxx", * name: "logstash", * version: "6.8", * isDeprecated: true, * }); * ``` */ export declare function getLogsInputEngine(args: GetLogsInputEngineArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogsInputEngine. */ export interface GetLogsInputEngineArgs { /** * Indicates if engine will soon not be supported. */ isDeprecated?: boolean; /** * The name of the logs input engine. */ name?: string; /** * The service name. It's the ID of your Logs Data Platform instance. */ serviceName: string; /** * Software version */ version?: string; } /** * A collection of values returned by getLogsInputEngine. */ export interface GetLogsInputEngineResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly isDeprecated: boolean; readonly name: string; readonly serviceName: string; readonly version: string; } /** * Use this data source to retrieve information about a DBaas logs input engine. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const logstash = ovh.Dbaas.getLogsInputEngine({ * serviceName: "ldp-xx-xxxxx", * name: "logstash", * version: "6.8", * isDeprecated: true, * }); * ``` */ export declare function getLogsInputEngineOutput(args: GetLogsInputEngineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogsInputEngine. */ export interface GetLogsInputEngineOutputArgs { /** * Indicates if engine will soon not be supported. */ isDeprecated?: pulumi.Input; /** * The name of the logs input engine. */ name?: pulumi.Input; /** * The service name. It's the ID of your Logs Data Platform instance. */ serviceName: pulumi.Input; /** * Software version */ version?: pulumi.Input; }