import * as pulumi from "@pulumi/pulumi"; /** * Gets a data collector. */ export declare function getDataCollector(args: GetDataCollectorArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDataCollectorArgs { datacollectorId: string; organizationId: string; } export interface GetDataCollectorResult { /** * The time at which the data collector was created in milliseconds since the epoch. */ readonly createdAt: string; /** * A description of the data collector. */ readonly description: string; /** * The time at which the Data Collector was last updated in milliseconds since the epoch. */ readonly lastModifiedAt: string; /** * ID of the data collector. Must begin with `dc_`. */ readonly name: string; /** * Immutable. The type of data this data collector will collect. */ readonly type: string; } /** * Gets a data collector. */ export declare function getDataCollectorOutput(args: GetDataCollectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetDataCollectorOutputArgs { datacollectorId: pulumi.Input; organizationId: pulumi.Input; }