Show / Hide Table of Contents

Class DetectAnomaliesDetails

Base class for the DetectAnomalies call. It contains the identifier that is used for deciding what type of request this is.

Inheritance
object
DetectAnomaliesDetails
EmbeddedDetectAnomaliesRequest
InlineDetectAnomaliesRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AianomalydetectionService.Models
Assembly: OCI.DotNetSDK.Aianomalydetection.dll
Syntax
[JsonConverter(typeof(DetectAnomaliesDetailsModelConverter))]
public class DetectAnomaliesDetails

Properties

ModelId

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

The OCID of the trained model.

Remarks

Required

Sensitivity

Declaration
[JsonProperty(PropertyName = "sensitivity")]
public float? Sensitivity { get; set; }
Property Value
Type Description
float?

Sensitivity of the algorithm to detect anomalies - higher the value, more anomalies get flagged. The value estimated during training is used by default. You can choose to provide a custom value.

In this article
Back to top