1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getExecutionActions
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Database.getExecutionActions

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

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

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,
});
Copy
import pulumi
import pulumi_oci as oci

test_execution_actions = oci.Database.get_execution_actions(compartment_id=compartment_id,
    display_name=execution_action_display_name,
    execution_window_id=test_execution_window["id"],
    state=execution_action_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetExecutionActions(ctx, &database.GetExecutionActionsArgs{
			CompartmentId:     compartmentId,
			DisplayName:       pulumi.StringRef(executionActionDisplayName),
			ExecutionWindowId: pulumi.StringRef(testExecutionWindow.Id),
			State:             pulumi.StringRef(executionActionState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExecutionActions = Oci.Database.GetExecutionActions.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = executionActionDisplayName,
        ExecutionWindowId = testExecutionWindow.Id,
        State = executionActionState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetExecutionActionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testExecutionActions = DatabaseFunctions.getExecutionActions(GetExecutionActionsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(executionActionDisplayName)
            .executionWindowId(testExecutionWindow.id())
            .state(executionActionState)
            .build());

    }
}
Copy
variables:
  testExecutionActions:
    fn::invoke:
      function: oci:Database:getExecutionActions
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${executionActionDisplayName}
        executionWindowId: ${testExecutionWindow.id}
        state: ${executionActionState}
Copy

Using getExecutionActions

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getExecutionActions(args: GetExecutionActionsArgs, opts?: InvokeOptions): Promise<GetExecutionActionsResult>
function getExecutionActionsOutput(args: GetExecutionActionsOutputArgs, opts?: InvokeOptions): Output<GetExecutionActionsResult>
Copy
def get_execution_actions(compartment_id: Optional[str] = None,
                          display_name: Optional[str] = None,
                          execution_window_id: Optional[str] = None,
                          filters: Optional[Sequence[_database.GetExecutionActionsFilter]] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetExecutionActionsResult
def get_execution_actions_output(compartment_id: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          execution_window_id: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetExecutionActionsFilterArgs]]]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetExecutionActionsResult]
Copy
func GetExecutionActions(ctx *Context, args *GetExecutionActionsArgs, opts ...InvokeOption) (*GetExecutionActionsResult, error)
func GetExecutionActionsOutput(ctx *Context, args *GetExecutionActionsOutputArgs, opts ...InvokeOption) GetExecutionActionsResultOutput
Copy

> Note: This function is named GetExecutionActions in the Go SDK.

public static class GetExecutionActions 
{
    public static Task<GetExecutionActionsResult> InvokeAsync(GetExecutionActionsArgs args, InvokeOptions? opts = null)
    public static Output<GetExecutionActionsResult> Invoke(GetExecutionActionsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetExecutionActionsResult> getExecutionActions(GetExecutionActionsArgs args, InvokeOptions options)
public static Output<GetExecutionActionsResult> getExecutionActions(GetExecutionActionsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getExecutionActions:getExecutionActions
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The compartment OCID.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
ExecutionWindowId string
A filter to return only resources that match the given execution wondow id.
Filters Changes to this property will trigger replacement. List<GetExecutionActionsFilter>
State string
A filter to return only resources that match the given lifecycle state exactly.
CompartmentId This property is required. string
The compartment OCID.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
ExecutionWindowId string
A filter to return only resources that match the given execution wondow id.
Filters Changes to this property will trigger replacement. []GetExecutionActionsFilter
State string
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
executionWindowId String
A filter to return only resources that match the given execution wondow id.
filters Changes to this property will trigger replacement. List<GetExecutionActionsFilter>
state String
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. string
The compartment OCID.
displayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
executionWindowId string
A filter to return only resources that match the given execution wondow id.
filters Changes to this property will trigger replacement. GetExecutionActionsFilter[]
state string
A filter to return only resources that match the given lifecycle state exactly.
compartment_id This property is required. str
The compartment OCID.
display_name str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
execution_window_id str
A filter to return only resources that match the given execution wondow id.
filters Changes to this property will trigger replacement. Sequence[database.GetExecutionActionsFilter]
state str
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
executionWindowId String
A filter to return only resources that match the given execution wondow id.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that match the given lifecycle state exactly.

getExecutionActions Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
ExecutionActions List<GetExecutionActionsExecutionAction>
The list of execution_actions.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the execution action. The name does not need to be unique.
ExecutionWindowId string
The OCID of the execution window resource the execution action belongs to.
Filters List<GetExecutionActionsFilter>
State string
The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.
CompartmentId string
The OCID of the compartment.
ExecutionActions []GetExecutionActionsExecutionAction
The list of execution_actions.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the execution action. The name does not need to be unique.
ExecutionWindowId string
The OCID of the execution window resource the execution action belongs to.
Filters []GetExecutionActionsFilter
State string
The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.
compartmentId String
The OCID of the compartment.
executionActions List<GetExecutionActionsExecutionAction>
The list of execution_actions.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the execution action. The name does not need to be unique.
executionWindowId String
The OCID of the execution window resource the execution action belongs to.
filters List<GetExecutionActionsFilter>
state String
The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.
compartmentId string
The OCID of the compartment.
executionActions GetExecutionActionsExecutionAction[]
The list of execution_actions.
id string
The provider-assigned unique ID for this managed resource.
displayName string
The user-friendly name for the execution action. The name does not need to be unique.
executionWindowId string
The OCID of the execution window resource the execution action belongs to.
filters GetExecutionActionsFilter[]
state string
The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.
compartment_id str
The OCID of the compartment.
execution_actions Sequence[database.GetExecutionActionsExecutionAction]
The list of execution_actions.
id str
The provider-assigned unique ID for this managed resource.
display_name str
The user-friendly name for the execution action. The name does not need to be unique.
execution_window_id str
The OCID of the execution window resource the execution action belongs to.
filters Sequence[database.GetExecutionActionsFilter]
state str
The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.
compartmentId String
The OCID of the compartment.
executionActions List<Property Map>
The list of execution_actions.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the execution action. The name does not need to be unique.
executionWindowId String
The OCID of the execution window resource the execution action belongs to.
filters List<Property Map>
state String
The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.

Supporting Types

GetExecutionActionsExecutionAction

ActionMembers This property is required. List<GetExecutionActionsExecutionActionActionMember>
List of action members of this execution action.
ActionParams This property is required. Dictionary<string, string>
Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
ActionType This property is required. string
The action type of the execution action being performed
CompartmentId This property is required. string
The compartment OCID.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Description This property is required. string
Description of the execution action.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
EstimatedTimeInMins This property is required. int
The estimated time of the execution action in minutes.
ExecutionActionOrder This property is required. int
The priority order of the execution action.
ExecutionWindowId This property is required. string
A filter to return only resources that match the given execution wondow id.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the execution action.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
LifecycleSubstate This property is required. string
The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeCreated This property is required. string
The date and time the execution action was created.
TimeUpdated This property is required. string
The last date and time that the execution action was updated.
TotalTimeTakenInMins This property is required. int
The total time taken by corresponding resource activity in minutes.
ActionMembers This property is required. []GetExecutionActionsExecutionActionActionMember
List of action members of this execution action.
ActionParams This property is required. map[string]string
Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
ActionType This property is required. string
The action type of the execution action being performed
CompartmentId This property is required. string
The compartment OCID.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Description This property is required. string
Description of the execution action.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
EstimatedTimeInMins This property is required. int
The estimated time of the execution action in minutes.
ExecutionActionOrder This property is required. int
The priority order of the execution action.
ExecutionWindowId This property is required. string
A filter to return only resources that match the given execution wondow id.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the execution action.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
LifecycleSubstate This property is required. string
The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeCreated This property is required. string
The date and time the execution action was created.
TimeUpdated This property is required. string
The last date and time that the execution action was updated.
TotalTimeTakenInMins This property is required. int
The total time taken by corresponding resource activity in minutes.
actionMembers This property is required. List<GetExecutionActionsExecutionActionActionMember>
List of action members of this execution action.
actionParams This property is required. Map<String,String>
Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
actionType This property is required. String
The action type of the execution action being performed
compartmentId This property is required. String
The compartment OCID.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description This property is required. String
Description of the execution action.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
estimatedTimeInMins This property is required. Integer
The estimated time of the execution action in minutes.
executionActionOrder This property is required. Integer
The priority order of the execution action.
executionWindowId This property is required. String
A filter to return only resources that match the given execution wondow id.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the execution action.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
lifecycleSubstate This property is required. String
The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. String
The date and time the execution action was created.
timeUpdated This property is required. String
The last date and time that the execution action was updated.
totalTimeTakenInMins This property is required. Integer
The total time taken by corresponding resource activity in minutes.
actionMembers This property is required. GetExecutionActionsExecutionActionActionMember[]
List of action members of this execution action.
actionParams This property is required. {[key: string]: string}
Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
actionType This property is required. string
The action type of the execution action being performed
compartmentId This property is required. string
The compartment OCID.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description This property is required. string
Description of the execution action.
displayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
estimatedTimeInMins This property is required. number
The estimated time of the execution action in minutes.
executionActionOrder This property is required. number
The priority order of the execution action.
executionWindowId This property is required. string
A filter to return only resources that match the given execution wondow id.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. string
The OCID of the execution action.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
lifecycleSubstate This property is required. string
The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. string
The date and time the execution action was created.
timeUpdated This property is required. string
The last date and time that the execution action was updated.
totalTimeTakenInMins This property is required. number
The total time taken by corresponding resource activity in minutes.
action_members This property is required. Sequence[database.GetExecutionActionsExecutionActionActionMember]
List of action members of this execution action.
action_params This property is required. Mapping[str, str]
Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
action_type This property is required. str
The action type of the execution action being performed
compartment_id This property is required. str
The compartment OCID.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description This property is required. str
Description of the execution action.
display_name This property is required. str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
estimated_time_in_mins This property is required. int
The estimated time of the execution action in minutes.
execution_action_order This property is required. int
The priority order of the execution action.
execution_window_id This property is required. str
A filter to return only resources that match the given execution wondow id.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. str
The OCID of the execution action.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
lifecycle_substate This property is required. str
The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
time_created This property is required. str
The date and time the execution action was created.
time_updated This property is required. str
The last date and time that the execution action was updated.
total_time_taken_in_mins This property is required. int
The total time taken by corresponding resource activity in minutes.
actionMembers This property is required. List<Property Map>
List of action members of this execution action.
actionParams This property is required. Map<String>
Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
actionType This property is required. String
The action type of the execution action being performed
compartmentId This property is required. String
The compartment OCID.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
description This property is required. String
Description of the execution action.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
estimatedTimeInMins This property is required. Number
The estimated time of the execution action in minutes.
executionActionOrder This property is required. Number
The priority order of the execution action.
executionWindowId This property is required. String
A filter to return only resources that match the given execution wondow id.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the execution action.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
lifecycleSubstate This property is required. String
The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. String
The date and time the execution action was created.
timeUpdated This property is required. String
The last date and time that the execution action was updated.
totalTimeTakenInMins This property is required. Number
The total time taken by corresponding resource activity in minutes.

GetExecutionActionsExecutionActionActionMember

EstimatedTimeInMins This property is required. int
The estimated time of the execution action in minutes.
MemberId This property is required. string
The OCID of the parent resource the execution action belongs to.
MemberOrder This property is required. int
The priority order of the execution action member.
Status This property is required. string
The current status of the execution action member. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, DURATION_EXCEEDED, RESCHEDULED and COMPLETED. enum:

  • SCHEDULED
  • IN_PROGRESS
  • FAILED
  • CANCELED
  • DURATION_EXCEEDED
  • RESCHEDULED
  • SUCCEEDED
TotalTimeTakenInMins This property is required. int
The total time taken by corresponding resource activity in minutes.
EstimatedTimeInMins This property is required. int
The estimated time of the execution action in minutes.
MemberId This property is required. string
The OCID of the parent resource the execution action belongs to.
MemberOrder This property is required. int
The priority order of the execution action member.
Status This property is required. string
The current status of the execution action member. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, DURATION_EXCEEDED, RESCHEDULED and COMPLETED. enum:

  • SCHEDULED
  • IN_PROGRESS
  • FAILED
  • CANCELED
  • DURATION_EXCEEDED
  • RESCHEDULED
  • SUCCEEDED
TotalTimeTakenInMins This property is required. int
The total time taken by corresponding resource activity in minutes.
estimatedTimeInMins This property is required. Integer
The estimated time of the execution action in minutes.
memberId This property is required. String
The OCID of the parent resource the execution action belongs to.
memberOrder This property is required. Integer
The priority order of the execution action member.
status This property is required. String
The current status of the execution action member. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, DURATION_EXCEEDED, RESCHEDULED and COMPLETED. enum:

  • SCHEDULED
  • IN_PROGRESS
  • FAILED
  • CANCELED
  • DURATION_EXCEEDED
  • RESCHEDULED
  • SUCCEEDED
totalTimeTakenInMins This property is required. Integer
The total time taken by corresponding resource activity in minutes.
estimatedTimeInMins This property is required. number
The estimated time of the execution action in minutes.
memberId This property is required. string
The OCID of the parent resource the execution action belongs to.
memberOrder This property is required. number
The priority order of the execution action member.
status This property is required. string
The current status of the execution action member. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, DURATION_EXCEEDED, RESCHEDULED and COMPLETED. enum:

  • SCHEDULED
  • IN_PROGRESS
  • FAILED
  • CANCELED
  • DURATION_EXCEEDED
  • RESCHEDULED
  • SUCCEEDED
totalTimeTakenInMins This property is required. number
The total time taken by corresponding resource activity in minutes.
estimated_time_in_mins This property is required. int
The estimated time of the execution action in minutes.
member_id This property is required. str
The OCID of the parent resource the execution action belongs to.
member_order This property is required. int
The priority order of the execution action member.
status This property is required. str
The current status of the execution action member. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, DURATION_EXCEEDED, RESCHEDULED and COMPLETED. enum:

  • SCHEDULED
  • IN_PROGRESS
  • FAILED
  • CANCELED
  • DURATION_EXCEEDED
  • RESCHEDULED
  • SUCCEEDED
total_time_taken_in_mins This property is required. int
The total time taken by corresponding resource activity in minutes.
estimatedTimeInMins This property is required. Number
The estimated time of the execution action in minutes.
memberId This property is required. String
The OCID of the parent resource the execution action belongs to.
memberOrder This property is required. Number
The priority order of the execution action member.
status This property is required. String
The current status of the execution action member. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, DURATION_EXCEEDED, RESCHEDULED and COMPLETED. enum:

  • SCHEDULED
  • IN_PROGRESS
  • FAILED
  • CANCELED
  • DURATION_EXCEEDED
  • RESCHEDULED
  • SUCCEEDED
totalTimeTakenInMins This property is required. Number
The total time taken by corresponding resource activity in minutes.

GetExecutionActionsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi