Show / Hide Table of Contents

Class DiscoveryJobLogSummary

Log of a specific job

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

Properties

Id

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

The OCID of Discovery job

Remarks

Required

LogMessage

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

Log message

Remarks

Required

LogType

Declaration
[Required(ErrorMessage = "LogType is required.")]
[JsonProperty(PropertyName = "logType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DiscoveryJobLogSummary.LogTypeEnum? LogType { get; set; }
Property Value
Type Description
DiscoveryJobLogSummary.LogTypeEnum?

Type of log (INFO, WARNING, ERROR or SUCCESS)

Remarks

Required

SystemTags

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

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

TimeCreated

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

Time the Job log was created

Remarks

Required

In this article
Back to top