Show / Hide Table of Contents

Class DetectAnomalyJob

Anomaly Job contains information for asynchronous detection of anomalies.

Inheritance
object
DetectAnomalyJob
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
public class DetectAnomalyJob

Properties

AreAllEstimatesRequired

Declaration
[JsonProperty(PropertyName = "areAllEstimatesRequired")]
public bool? AreAllEstimatesRequired { get; set; }
Property Value
Type Description
bool?

Flag to enable the service to return estimates for all data points rather than just the anomalous data points

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 that starts the job.

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. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

Detect anomaly job description.

DisplayName

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

Detect anomaly job display name.

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

Id of the job.

Remarks

Required

InputDetails

Declaration
[Required(ErrorMessage = "InputDetails is required.")]
[JsonProperty(PropertyName = "inputDetails")]
public InputJobDetails InputDetails { get; set; }
Property Value
Type Description
InputJobDetails
Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DetectAnomalyJob.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
DetectAnomalyJob.LifecycleStateEnum?

The current state of the batch document job.

Remarks

Required

LifecycleStateDetails

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

The current state details of the batch document job.

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

OutputDetails

Declaration
[Required(ErrorMessage = "OutputDetails is required.")]
[JsonProperty(PropertyName = "outputDetails")]
public OutputJobDetails OutputDetails { get; set; }
Property Value
Type Description
OutputJobDetails
Remarks

Required

ProjectId

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

The OCID of the project.

Sensitivity

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

The value that customer can adjust to control the sensitivity of anomaly detection

SystemTags

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

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: { "orcl-cloud": { "free-tier-retained": "true" } }

TimeAccepted

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

Job accepted time

Remarks

Required

TimeFinished

Declaration
[JsonProperty(PropertyName = "timeFinished")]
public DateTime? TimeFinished { get; set; }
Property Value
Type Description
DateTime?

Job finished time

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

Job started time

In this article
Back to top