Show / Hide Table of Contents

Class CreateScheduledActionDetails

Request to create Scheduled Action resource.

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

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>

ActionType

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

The type of the scheduled 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.

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"}

SchedulingPlanId

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

The OCID of the Scheduling Plan.

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