Show / Hide Table of Contents

Class EstimateReleaseDataSizeResult

This is the size and time range of data to be released

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

Properties

SizeInBytes

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

This is the size in bytes

Remarks

Required

TimeDataEnded

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

This is the end of the time range of data to be released. timeDataStarted and timeDataEnded delineate the time range of the recalled data to be released. They may not be exact the same as the parameters in the request input (EstimateReleaseDataSizeDetails).

Remarks

Required

TimeDataStarted

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

This is the start of the time range of data to be released

Remarks

Required

In this article
Back to top