import * as pulumi from "@pulumi/pulumi"; import { output as outputs } from "./types"; export declare function getMdbKafkaTopic(args: GetMdbKafkaTopicArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMdbKafkaTopic. */ export interface GetMdbKafkaTopicArgs { clusterId: string; name: string; } /** * A collection of values returned by getMdbKafkaTopic. */ export interface GetMdbKafkaTopicResult { readonly clusterId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly partitions: number; readonly replicationFactor: number; readonly topicConfigs: outputs.GetMdbKafkaTopicTopicConfig[]; } export declare function getMdbKafkaTopicOutput(args: GetMdbKafkaTopicOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getMdbKafkaTopic. */ export interface GetMdbKafkaTopicOutputArgs { clusterId: pulumi.Input; name: pulumi.Input; }