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 Run Statements in Oracle Cloud Infrastructure Data Flow service. * * Lists all statements for a Session run. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRunStatements = oci.dataflow.getRunStatements({ * runId: testRun.id, * state: runStatementState, * }); * ``` */ export declare function getRunStatements(args: GetRunStatementsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRunStatements. */ export interface GetRunStatementsArgs { filters?: inputs.DataFlow.GetRunStatementsFilter[]; /** * The unique ID for the run */ runId: string; /** * The LifecycleState of the statement. */ state?: string; } /** * A collection of values returned by getRunStatements. */ export interface GetRunStatementsResult { readonly filters?: outputs.DataFlow.GetRunStatementsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The ID of a run. */ readonly runId: string; /** * The current state of this statement. */ readonly state?: string; /** * The list of statement_collection. */ readonly statementCollections: outputs.DataFlow.GetRunStatementsStatementCollection[]; } /** * This data source provides the list of Run Statements in Oracle Cloud Infrastructure Data Flow service. * * Lists all statements for a Session run. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRunStatements = oci.dataflow.getRunStatements({ * runId: testRun.id, * state: runStatementState, * }); * ``` */ export declare function getRunStatementsOutput(args: GetRunStatementsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRunStatements. */ export interface GetRunStatementsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The unique ID for the run */ runId: pulumi.Input; /** * The LifecycleState of the statement. */ state?: pulumi.Input; } //# sourceMappingURL=getRunStatements.d.ts.map