Show / Hide Table of Contents

Class WorkRequestLogEntry

A log message from the execution of a work request.

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

Properties

Message

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

Human-readable log message.

Remarks

Required

TimeStamp

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

When the log message was written. A date-time string as described in RFC 3339, section 14.29.

Remarks

Required

In this article
Back to top