Show / Hide Table of Contents

Class StatusSummary

StatusSummary

Inheritance
object
StatusSummary
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 StatusSummary

Properties

ChunksProcessed

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

The number of chunks processed.

FailureDetails

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

The failure details, if any.

Filename

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

The filename.

Status

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

The status.

TotalChunks

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

The total number of chunks.

In this article
Back to top