import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Create a Collector to manage the on-prem appliance which collects information about Customer assets. */ export declare class Collector extends pulumi.CustomResource { /** * Get an existing Collector 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): Collector; /** * Returns true if the given object is an instance of Collector. 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 Collector; /** * Store cloud storage bucket name (which is a guid) created with this Collector. */ readonly bucket: pulumi.Output; /** * Client version. */ readonly clientVersion: pulumi.Output; /** * How many days to collect data. */ readonly collectionDays: pulumi.Output; /** * Required. Id of the requesting object. */ readonly collectorId: pulumi.Output; /** * Create time stamp. */ readonly createTime: pulumi.Output; /** * User specified description of the Collector. */ readonly description: pulumi.Output; /** * User specified name of the Collector. */ readonly displayName: pulumi.Output; /** * Uri for EULA (End User License Agreement) from customer. */ readonly eulaUri: pulumi.Output; /** * User specified expected asset count. */ readonly expectedAssetCount: pulumi.Output; /** * Reference to MC Source Guest Os Scan. */ readonly guestOsScan: pulumi.Output; /** * Labels as key value pairs. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * name of resource. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. An optional request ID to identify requests. */ readonly requestId: pulumi.Output; /** * Service Account email used to ingest data to this Collector. */ readonly serviceAccount: pulumi.Output; /** * State of the Collector. */ readonly state: pulumi.Output; /** * Update time stamp. */ readonly updateTime: pulumi.Output; /** * Reference to MC Source vsphere_scan. */ readonly vsphereScan: pulumi.Output; /** * Create a Collector 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: CollectorArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Collector resource. */ export interface CollectorArgs { /** * How many days to collect data. */ collectionDays?: pulumi.Input; /** * Required. Id of the requesting object. */ collectorId: pulumi.Input; /** * User specified description of the Collector. */ description?: pulumi.Input; /** * User specified name of the Collector. */ displayName?: pulumi.Input; /** * Uri for EULA (End User License Agreement) from customer. */ eulaUri?: pulumi.Input; /** * User specified expected asset count. */ expectedAssetCount?: pulumi.Input; /** * Labels as key value pairs. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * name of resource. */ name?: pulumi.Input; project?: pulumi.Input; /** * Optional. An optional request ID to identify requests. */ requestId?: pulumi.Input; /** * Service Account email used to ingest data to this Collector. */ serviceAccount?: pulumi.Input; }