import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a PerfSampleSeries. May return any of the following error code(s): - NOT_FOUND - The specified PerfSampleSeries does not exist */ export declare function getPerfSampleSeries(args: GetPerfSampleSeriesArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetPerfSampleSeriesArgs { executionId: string; historyId: string; project?: string; sampleSeriesId: string; stepId: string; } export interface GetPerfSampleSeriesResult { /** * Basic series represented by a line chart */ readonly basicPerfSampleSeries: outputs.toolresults.v1beta3.BasicPerfSampleSeriesResponse; /** * A tool results execution ID. */ readonly executionId: string; /** * A tool results history ID. */ readonly historyId: string; /** * The cloud project */ readonly project: string; /** * A sample series id */ readonly sampleSeriesId: string; /** * A tool results step ID. */ readonly stepId: string; } /** * Gets a PerfSampleSeries. May return any of the following error code(s): - NOT_FOUND - The specified PerfSampleSeries does not exist */ export declare function getPerfSampleSeriesOutput(args: GetPerfSampleSeriesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetPerfSampleSeriesOutputArgs { executionId: pulumi.Input; historyId: pulumi.Input; project?: pulumi.Input; sampleSeriesId: pulumi.Input; stepId: pulumi.Input; }