Show / Hide Table of Contents

Class TablespaceUsageTrendAggregation

Usage data per tablespace for a Pluggable database

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

Properties

TablespaceName

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

The name of tablespace.

Remarks

Required

TablespaceType

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

Type of tablespace

Remarks

Required

UsageData

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

List of usage data samples for a tablespace

Remarks

Required

In this article
Back to top