Show / Hide Table of Contents

Class StorageUsageTrendAggregation

Usage data per filesystem.

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

Properties

FileSystemName

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

Name of filesystem.

Remarks

Required

FileSystemSizeInGBs

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

Size of filesystem.

Remarks

Required

MountPoint

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

Mount points are specialized NTFS filesystem objects.

Remarks

Required

UsageData

Declaration
[Required(ErrorMessage = "UsageData is required.")]
[JsonProperty(PropertyName = "usageData")]
public List<StorageUsageTrend> UsageData { get; set; }
Property Value
Type Description
List<StorageUsageTrend>

List of usage data samples for a filesystem.

Remarks

Required

In this article
Back to top