Show / Hide Table of Contents

Class StorageUsageTrend

Usage data samples.

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

Properties

EndTimestamp

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

The timestamp in which the current sampling period ends in RFC 3339 format.

Remarks

Required

FileSystemAvailInPercent

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

Filesystem available in percent.

Remarks

Required

FileSystemUsageInGBs

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

Filesystem usage in GB.

Remarks

Required

In this article
Back to top