Show / Hide Table of Contents

Class ExecutionActionMember

The action member details.

Inheritance
object
ExecutionActionMember
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 ExecutionActionMember

Properties

EstimatedTimeInMins

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

The estimated time of the execution action member in minutes.

MemberId

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

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

Remarks

Required

MemberOrder

Declaration
[Required(ErrorMessage = "MemberOrder is required.")]
[JsonProperty(PropertyName = "memberOrder")]
public int? MemberOrder { get; set; }
Property Value
Type Description
int?

The priority order of the execution action member.

Remarks

Required

Status

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

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