Show / Hide Table of Contents

Class JavaServerInstanceUsage

Java Server instance usage during a specified time period.

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

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 instance.

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

HostName

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

The host name of the related managed instance.

JvmDistribution

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

The distribution of the Java Runtime.

JvmKey

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

The internal identifier of the related Java Runtime.

JvmSecurityStatus

Declaration
[JsonProperty(PropertyName = "jvmSecurityStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JreSecurityStatus? JvmSecurityStatus { get; set; }
Property Value
Type Description
JreSecurityStatus?

The security status of the Java Runtime.

JvmVendor

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

The vendor of the Java Runtime.

JvmVersion

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

The version of the Java Runtime.

ManagedInstanceId

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

The OCID of the related managed instance.

Remarks

Required

ServerInstanceKey

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

The internal identifier of the Java Server instance.

Remarks

Required

ServerInstanceName

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

The name of the Java Server instance.

Remarks

Required

ServerInstancePort

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

The port of the Java Server instance.

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 related Java Server.

Remarks

Required

ServerName

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

The name of the Java Server.

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