Show / Hide Table of Contents

Class UpdateScheduledActionDetails

Describes the modification parameters for the Scheduled Action.

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

Properties

ActionMembers

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

The list of action members in a scheduled action.

ActionParams

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

SchedulingWindowId

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

The OCID of the Scheduling Window.

In this article
Back to top