Show / Hide Table of Contents

Class ComponentProperties

The properties of the component.

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

Properties

ActionOnFailure

Declaration
[Required(ErrorMessage = "ActionOnFailure is required.")]
[JsonProperty(PropertyName = "actionOnFailure")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComponentProperties.ActionOnFailureEnum? ActionOnFailure { get; set; }
Property Value
Type Description
ComponentProperties.ActionOnFailureEnum?

The action to be taken in case of a failure.

Remarks

Required

NotificationPreferences

Declaration
[JsonProperty(PropertyName = "notificationPreferences")]
public TaskNotificationPreferences NotificationPreferences { get; set; }
Property Value
Type Description
TaskNotificationPreferences

PauseDetails

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

PreCondition

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

Build control flow conditions that determine the relevance of the task execution.

RunOn

Declaration
[JsonProperty(PropertyName = "runOn")]
public RunOnDetails RunOn { get; set; }
Property Value
Type Description
RunOnDetails
In this article
Back to top