Show / Hide Table of Contents

Class LogEntry

Log entry for an operation resulting from a job's execution.

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

Properties

Level

Declaration
[JsonProperty(PropertyName = "level")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogEntry.LevelEnum? Level { get; set; }
Property Value
Type Description
LogEntry.LevelEnum?

Specifies the severity level of the log entry.

Message

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

The log entry value.

Timestamp

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

The date and time of the log entry. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogEntry.TypeEnum? Type { get; set; }
Property Value
Type Description
LogEntry.TypeEnum?

Specifies the log type for the log entry.

In this article
Back to top