Show / Hide Table of Contents

Class WorkRequestLogEntry

A log message related to 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.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.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

A human-readable log message.
Example: DR plan execution is in progress

Remarks

Required

Timestamp

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

The time the log message was written. An RFC3339 formatted datetime string.
Example: 2019-03-29T09:36:42Z

Remarks

Required

In this article
Back to top