import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::CLB::CheckLogTopic */ export declare function getCheckLogTopic(args: GetCheckLogTopicArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCheckLogTopic. */ export interface GetCheckLogTopicArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getCheckLogTopic. */ export interface GetCheckLogTopicResult { /** * Uniquely identifies the resource. */ readonly id: string; /** * CLB ID information that meets the criteria. */ readonly loadBalancerId: string; /** * ID of the created log topic. You can call the DescribeTopics API to query the log topic ID. */ readonly logTopicId: string; } /** * Data Source schema for Volcengine::CLB::CheckLogTopic */ export declare function getCheckLogTopicOutput(args: GetCheckLogTopicOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCheckLogTopic. */ export interface GetCheckLogTopicOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }