Show / Hide Table of Contents

Class MlApplicationInstanceInternalTrigger

Trigger details

Inheritance
object
InstanceComponent
MlApplicationInstanceInternalTrigger
Inherited Members
InstanceComponent.Name
InstanceComponent.ComponentName
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class MlApplicationInstanceInternalTrigger : InstanceComponent

Properties

IsEnabled

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

Indicates whether the trigger is enabled. If it is false trigger does not fire even when the trigger condition is met.

Remarks

Required

TriggerDefinition

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

Trigger definition for given ML Application Instance

Remarks

Required

In this article
Back to top