import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a PerfSampleSeries. May return any of the following error code(s): - ALREADY_EXISTS - PerfMetricSummary already exists for the given Step - NOT_FOUND - The containing Step does not exist * Auto-naming is currently not supported for this resource. * Note - this resource's API doesn't support deletion. When deleted, the resource will persist * on Google Cloud even though it will be deleted from Pulumi state. */ export declare class PerfSampleSeries extends pulumi.CustomResource { /** * Get an existing PerfSampleSeries 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): PerfSampleSeries; /** * Returns true if the given object is an instance of PerfSampleSeries. 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 PerfSampleSeries; /** * Basic series represented by a line chart */ readonly basicPerfSampleSeries: pulumi.Output; readonly executionId: pulumi.Output; readonly historyId: pulumi.Output; readonly project: pulumi.Output; /** * A sample series id */ readonly sampleSeriesId: pulumi.Output; readonly stepId: pulumi.Output; /** * Create a PerfSampleSeries 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: PerfSampleSeriesArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a PerfSampleSeries resource. */ export interface PerfSampleSeriesArgs { /** * Basic series represented by a line chart */ basicPerfSampleSeries?: pulumi.Input; executionId: pulumi.Input; historyId: pulumi.Input; project?: pulumi.Input; stepId: pulumi.Input; }