Show / Hide Table of Contents

Class UploadSummary

Summary of the Upload.

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

Properties

Name

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

The name of the upload container.

Remarks

Required

Reference

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

Unique internal identifier to refer the upload container.

Remarks

Required

TimeCreated

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

The time when this upload container is created. An RFC3339 formatted datetime string.

Remarks

Required

TimeEarliestLogEntry

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

This time represents the earliest time of the log entry in this container. An RFC3339 formatted datetime string.

TimeLatestLogEntry

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

This time represents the latest time of the log entry in this container. An RFC3339 formatted datetime string.

TimeUpdated

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

The latest time when this upload container is modified. An RFC3339 formatted datetime string.

WarningsCount

Declaration
[JsonProperty(PropertyName = "warningsCount")]
public int? WarningsCount { get; set; }
Property Value
Type Description
int?

Number of warnings associated to the upload.

In this article
Back to top