import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; /** * Creates a new data collector. */ export declare class DataCollector extends pulumi.CustomResource { /** * Get an existing DataCollector resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): DataCollector; /** * Returns true if the given object is an instance of DataCollector. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DataCollector; /** * The time at which the data collector was created in milliseconds since the epoch. */ readonly createdAt: pulumi.Output; /** * ID of the data collector. Overrides any ID in the data collector resource. Must be a string beginning with `dc_` that contains only letters, numbers, and underscores. */ readonly dataCollectorId: pulumi.Output; /** * A description of the data collector. */ readonly description: pulumi.Output; /** * The time at which the Data Collector was last updated in milliseconds since the epoch. */ readonly lastModifiedAt: pulumi.Output; /** * ID of the data collector. Must begin with `dc_`. */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * Immutable. The type of data this data collector will collect. */ readonly type: pulumi.Output; /** * Create a DataCollector resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DataCollectorArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DataCollector resource. */ export interface DataCollectorArgs { /** * ID of the data collector. Overrides any ID in the data collector resource. Must be a string beginning with `dc_` that contains only letters, numbers, and underscores. */ dataCollectorId?: pulumi.Input; /** * A description of the data collector. */ description?: pulumi.Input; /** * ID of the data collector. Must begin with `dc_`. */ name?: pulumi.Input; organizationId: pulumi.Input; /** * Immutable. The type of data this data collector will collect. */ type?: pulumi.Input; }