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 Execution Actions in Oracle Cloud Infrastructure Database service. * * Lists the execution action resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExecutionActions = oci.database.getExecutionActions({ * compartmentId: compartmentId, * displayName: executionActionDisplayName, * executionWindowId: testExecutionWindow.id, * state: executionActionState, * }); * ``` */ export declare function getExecutionActions(args: GetExecutionActionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExecutionActions. */ export interface GetExecutionActionsArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; /** * A filter to return only resources that match the given execution wondow id. */ executionWindowId?: string; filters?: inputs.Database.GetExecutionActionsFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getExecutionActions. */ export interface GetExecutionActionsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The user-friendly name for the execution action. The name does not need to be unique. */ readonly displayName?: string; /** * The list of execution_actions. */ readonly executionActions: outputs.Database.GetExecutionActionsExecutionAction[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the execution window resource the execution action belongs to. */ readonly executionWindowId?: string; readonly filters?: outputs.Database.GetExecutionActionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS. */ readonly state?: string; } /** * This data source provides the list of Execution Actions in Oracle Cloud Infrastructure Database service. * * Lists the execution action resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExecutionActions = oci.database.getExecutionActions({ * compartmentId: compartmentId, * displayName: executionActionDisplayName, * executionWindowId: testExecutionWindow.id, * state: executionActionState, * }); * ``` */ export declare function getExecutionActionsOutput(args: GetExecutionActionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExecutionActions. */ export interface GetExecutionActionsOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; /** * A filter to return only resources that match the given execution wondow id. */ executionWindowId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getExecutionActions.d.ts.map