Show / Hide Table of Contents

Class ExecutionActionSummary

Details of an execution action.

Inheritance
object
ExecutionActionSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class ExecutionActionSummary

Properties

ActionMembers

Declaration
[JsonProperty(PropertyName = "actionMembers")]
public List<ExecutionActionMember> ActionMembers { get; set; }
Property Value
Type Description
List<ExecutionActionMember>

List of action members of this execution action.

ActionParams

Declaration
[Required(ErrorMessage = "ActionParams is required.")]
[JsonProperty(PropertyName = "actionParams")]
public Dictionary<string, string> ActionParams { get; set; }
Property Value
Type Description
Dictionary<string, string>

ActionType

Declaration
[Required(ErrorMessage = "ActionType is required.")]
[JsonProperty(PropertyName = "actionType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExecutionActionSummary.ActionTypeEnum? ActionType { get; set; }
Property Value
Type Description
ExecutionActionSummary.ActionTypeEnum?

The action type of the execution action being performed

Remarks

Required

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Description of the execution action.

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The user-friendly name for the execution action. The name does not need to be unique.

Remarks

Required

EstimatedTimeInMins

Declaration
[JsonProperty(PropertyName = "estimatedTimeInMins")]
public int? EstimatedTimeInMins { get; set; }
Property Value
Type Description
int?

The estimated time of the execution action in minutes.

ExecutionActionOrder

Declaration
[JsonProperty(PropertyName = "executionActionOrder")]
public int? ExecutionActionOrder { get; set; }
Property Value
Type Description
int?

The priority order of the execution action.

ExecutionWindowId

Declaration
[Required(ErrorMessage = "ExecutionWindowId is required.")]
[JsonProperty(PropertyName = "executionWindowId")]
public string ExecutionWindowId { get; set; }
Property Value
Type Description
string

The OCID of the execution window resource the execution action belongs to.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
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

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the execution action.

Remarks

Required

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
Type Description
string

Additional information about the current lifecycle state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExecutionActionSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ExecutionActionSummary.LifecycleStateEnum?

The current state of the execution action. Valid states are SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.

Remarks

Required

LifecycleSubstate

Declaration
[JsonProperty(PropertyName = "lifecycleSubstate")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExecutionActionSummary.LifecycleSubstateEnum? LifecycleSubstate { get; set; }
Property Value
Type Description
ExecutionActionSummary.LifecycleSubstateEnum?

The current sub-state of the execution action. Valid states are DURATION_EXCEEDED, MAINTENANCE_IN_PROGRESS and WAITING.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the execution action was created.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The last date and time that the execution action was updated.

TotalTimeTakenInMins

Declaration
[JsonProperty(PropertyName = "totalTimeTakenInMins")]
public int? TotalTimeTakenInMins { get; set; }
Property Value
Type Description
int?

The total time taken by corresponding resource activity in minutes.

In this article
Back to top