Show / Hide Table of Contents

Class HostFilesystemConfiguration

Filesystem Configuration metric for the host.

Inheritance
object
HostConfigurationMetricGroup
HostFilesystemConfiguration
Inherited Members
HostConfigurationMetricGroup.TimeCollected
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 HostFilesystemConfiguration : HostConfigurationMetricGroup

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

FileSystemSizeInGB

Declaration
[Required(ErrorMessage = "FileSystemSizeInGB is required.")]
[JsonProperty(PropertyName = "fileSystemSizeInGB")]
public double FileSystemSizeInGB { 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

In this article
Back to top