Class WorkRequestLogEntry
A log message from the execution of a work request.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class WorkRequestLogEntry
Properties
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public int? Id { get; set; }
Property Value
Type | Description |
---|---|
int? | The identifier of the work request log. |
Remarks
Required
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. |
Remarks
Required
Timestamp
Declaration
[Required(ErrorMessage = "Timestamp is required.")]
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time the log message was written, described in RFC 3339. The precision for the time object is in milliseconds. |
Remarks
Required
WorkRequestId
Declaration
[Required(ErrorMessage = "WorkRequestId is required.")]
[JsonProperty(PropertyName = "workRequestId")]
public string WorkRequestId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the work request. |
Remarks
Required