Show / Hide Table of Contents

Class JavaServerUsage

Java Server usage during a specified time period.

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

Properties

ApproximateDeployedApplicationCount

Declaration
[JsonProperty(PropertyName = "approximateDeployedApplicationCount")]
public int? ApproximateDeployedApplicationCount { get; set; }
Property Value
Type Description
int?

The approximate count of deployed applications in the Java Server.

FleetId

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

The OCID of the related fleet.

Remarks

Required

ServerInstanceCount

Declaration
[JsonProperty(PropertyName = "serverInstanceCount")]
public int? ServerInstanceCount { get; set; }
Property Value
Type Description
int?

The count of server instances of the Java Server.

ServerKey

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

The internal identifier of the Java Server.

Remarks

Required

ServerName

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

The name of the Java Server.

Remarks

Required

ServerVersion

Declaration
[JsonProperty(PropertyName = "serverVersion")]
public string ServerVersion { get; set; }
Property Value
Type Description
string

The version of the Java Server.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

Upper bound of the specified time period filter. JMS provides a view of the data that is per day. The query uses only the date element of the parameter.

TimeFirstSeen

Declaration
[JsonProperty(PropertyName = "timeFirstSeen")]
public DateTime? TimeFirstSeen { get; set; }
Property Value
Type Description
DateTime?

The date and time the resource was first reported to JMS. This is potentially before the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

TimeLastSeen

Declaration
[JsonProperty(PropertyName = "timeLastSeen")]
public DateTime? TimeLastSeen { get; set; }
Property Value
Type Description
DateTime?

The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

TimeStart

Declaration
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

Lower bound of the specified time period filter. JMS provides a view of the data that is per day. The query uses only the date element of the parameter.

In this article
Back to top