Show / Hide Table of Contents

Class LogAnalyticsConfigWorkRequest

LogAnalyticsConfigWorkRequest

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

Properties

CompartmentId

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

The compartment unique identifier.

Id

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

The workrequest unique identifier.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogAnalyticsConfigWorkRequest.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
LogAnalyticsConfigWorkRequest.LifecycleStateEnum?

The lifecycle status. Valid values are ACCEPTED, IN_PROGRESS, SUCCEEDED or FAILED

OperationType

Declaration
[JsonProperty(PropertyName = "operationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogAnalyticsConfigWorkRequest.OperationTypeEnum? OperationType { get; set; }
Property Value
Type Description
LogAnalyticsConfigWorkRequest.OperationTypeEnum?

The operation type

Payload

Declaration
[JsonProperty(PropertyName = "payload")]
public List<LogAnalyticsConfigWorkRequestPayload> Payload { get; set; }
Property Value
Type Description
List<LogAnalyticsConfigWorkRequestPayload>

The list of config work request responses.

PercentComplete

Declaration
[JsonProperty(PropertyName = "percentComplete")]
public long? PercentComplete { get; set; }
Property Value
Type Description
long?

The completion percentage.

TimeAccepted

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

The time at which the work request was accepted.

TimeFinished

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

The time at which the work request was finished.

TimeStarted

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

The time at which the work request was started.

In this article
Back to top