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 Invoke Runs in Oracle Cloud Infrastructure Data Flow service. * * Lists all runs of an application in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInvokeRuns = oci.dataflow.getInvokeRuns({ * compartmentId: compartmentId, * applicationId: testApplication.id, * displayName: invokeRunDisplayName, * displayNameStartsWith: invokeRunDisplayNameStartsWith, * ownerPrincipalId: testOwnerPrincipal.id, * poolId: testPool.id, * state: invokeRunState, * timeCreatedGreaterThan: invokeRunTimeCreatedGreaterThan, * }); * ``` */ export declare function getInvokeRuns(args: GetInvokeRunsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInvokeRuns. */ export interface GetInvokeRunsArgs { /** * The ID of the application. */ applicationId?: string; /** * The OCID of the compartment. */ compartmentId: string; /** * The query parameter for the Spark application name. */ displayName?: string; /** * The displayName prefix. */ displayNameStartsWith?: string; filters?: inputs.DataFlow.GetInvokeRunsFilter[]; /** * The OCID of the user who created the resource. */ ownerPrincipalId?: string; /** * The ID of the pool. */ poolId?: string; /** * The LifecycleState of the run. */ state?: string; /** * The epoch time that the resource was created. */ timeCreatedGreaterThan?: string; } /** * A collection of values returned by getInvokeRuns. */ export interface GetInvokeRunsResult { /** * The application ID. */ readonly applicationId?: string; /** * The OCID of a compartment. */ readonly compartmentId: string; /** * A user-friendly name. This name is not necessarily unique. */ readonly displayName?: string; readonly displayNameStartsWith?: string; readonly filters?: outputs.DataFlow.GetInvokeRunsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the user who created the resource. */ readonly ownerPrincipalId?: string; /** * The OCID of a pool. Unique Id to indentify a dataflow pool resource. */ readonly poolId?: string; /** * The list of runs. */ readonly runs: outputs.DataFlow.GetInvokeRunsRun[]; /** * The current state of this run. */ readonly state?: string; readonly timeCreatedGreaterThan?: string; } /** * This data source provides the list of Invoke Runs in Oracle Cloud Infrastructure Data Flow service. * * Lists all runs of an application in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInvokeRuns = oci.dataflow.getInvokeRuns({ * compartmentId: compartmentId, * applicationId: testApplication.id, * displayName: invokeRunDisplayName, * displayNameStartsWith: invokeRunDisplayNameStartsWith, * ownerPrincipalId: testOwnerPrincipal.id, * poolId: testPool.id, * state: invokeRunState, * timeCreatedGreaterThan: invokeRunTimeCreatedGreaterThan, * }); * ``` */ export declare function getInvokeRunsOutput(args: GetInvokeRunsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInvokeRuns. */ export interface GetInvokeRunsOutputArgs { /** * The ID of the application. */ applicationId?: pulumi.Input; /** * The OCID of the compartment. */ compartmentId: pulumi.Input; /** * The query parameter for the Spark application name. */ displayName?: pulumi.Input; /** * The displayName prefix. */ displayNameStartsWith?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The OCID of the user who created the resource. */ ownerPrincipalId?: pulumi.Input; /** * The ID of the pool. */ poolId?: pulumi.Input; /** * The LifecycleState of the run. */ state?: pulumi.Input; /** * The epoch time that the resource was created. */ timeCreatedGreaterThan?: pulumi.Input; } //# sourceMappingURL=getInvokeRuns.d.ts.map