Show / Hide Table of Contents

Class ReorderScheduledActionsDetails

Describes the re-order parameters for the Scheduled Action resources.

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

Properties

ScheduledActionIdOrders

Declaration
[Required(ErrorMessage = "ScheduledActionIdOrders is required.")]
[JsonProperty(PropertyName = "scheduledActionIdOrders")]
public List<ActionOrderDetails> ScheduledActionIdOrders { get; set; }
Property Value
Type Description
List<ActionOrderDetails>

List of action resources in a specific order. Example: [{actionOrder: 1, actionResourceId: "resourceId1"}, {actionOrder: 2, actionResourceId: "resourceId2"}]

Remarks

Required

SchedulingWindowId

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

The OCID of the Scheduling Window.

Remarks

Required

In this article
Back to top