import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Scheduled Runs in Oracle Cloud Infrastructure Metering Computation service. * * Returns the schedule history list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testScheduledRuns = oci.meteringcomputation.getScheduledRuns({ * scheduleId: testSchedule.id, * }); * ``` */ export declare function getScheduledRuns(args: GetScheduledRunsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getScheduledRuns. */ export interface GetScheduledRunsArgs { filters?: inputs.MeteringComputation.GetScheduledRunsFilter[]; /** * The schedule unique ID. */ scheduleId: string; } /** * A collection of values returned by getScheduledRuns. */ export interface GetScheduledRunsResult { readonly filters?: outputs.MeteringComputation.GetScheduledRunsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID representing a unique shedule. */ readonly scheduleId: string; /** * The list of scheduled_run_collection. */ readonly scheduledRunCollections: outputs.MeteringComputation.GetScheduledRunsScheduledRunCollection[]; } /** * This data source provides the list of Scheduled Runs in Oracle Cloud Infrastructure Metering Computation service. * * Returns the schedule history list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testScheduledRuns = oci.meteringcomputation.getScheduledRuns({ * scheduleId: testSchedule.id, * }); * ``` */ export declare function getScheduledRunsOutput(args: GetScheduledRunsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getScheduledRuns. */ export interface GetScheduledRunsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The schedule unique ID. */ scheduleId: pulumi.Input; } //# sourceMappingURL=getScheduledRuns.d.ts.map