import * as pulumi from "@pulumi/pulumi"; import { input as inputs } from "../../types"; /** * Stackdriver Monitoring Agent only: Creates a new time series.This method is only for use by the Stackdriver Monitoring Agent. Use projects.timeSeries.create instead. */ export declare class CollectdTimeSeries extends pulumi.CustomResource { /** * Get an existing CollectdTimeSeries 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): CollectdTimeSeries; /** * Returns true if the given object is an instance of CollectdTimeSeries. 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 CollectdTimeSeries; /** * Create a CollectdTimeSeries 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: CollectdTimeSeriesArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CollectdTimeSeries resource. */ export interface CollectdTimeSeriesArgs { /** * The collectd payloads representing the time series data. You must not include more than a single point for each time series, so no two payloads can have the same values for all of the fields plugin, plugin_instance, type, and type_instance. */ readonly collectdPayloads?: pulumi.Input[]>; /** * The version of collectd that collected the data. Example: "5.3.0-192.el6". */ readonly collectdVersion?: pulumi.Input; readonly projectsId: pulumi.Input; /** * The monitored resource associated with the time series. */ readonly resource?: pulumi.Input; }