Show / Hide Table of Contents

Class NetworkUsageTrendAggregation

Usage data per network interface.

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

Properties

InterfaceName

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

Name of interface.

Remarks

Required

IpAddress

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

Address that is connected to a computer network that uses the Internet Protocol for communication.

Remarks

Required

MacAddress

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

Unique identifier assigned to a network interface.

Remarks

Required

UsageData

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

List of usage data samples for a network interface.

Remarks

Required

In this article
Back to top