Show / Hide Table of Contents

Class ResourceInventory

Inventory of JMS resources in a compartment during a specified time period.

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

Properties

ActiveFleetCount

Declaration
[Required(ErrorMessage = "ActiveFleetCount is required.")]
[JsonProperty(PropertyName = "activeFleetCount")]
public int? ActiveFleetCount { get; set; }
Property Value
Type Description
int?

The number of active fleets.

Remarks

Required

ApplicationCount

Declaration
[Required(ErrorMessage = "ApplicationCount is required.")]
[JsonProperty(PropertyName = "applicationCount")]
public int? ApplicationCount { get; set; }
Property Value
Type Description
int?

The number of applications.

Remarks

Required

InstallationCount

Declaration
[Required(ErrorMessage = "InstallationCount is required.")]
[JsonProperty(PropertyName = "installationCount")]
public int? InstallationCount { get; set; }
Property Value
Type Description
int?

The number of Java installations.

Remarks

Required

JreCount

Declaration
[Required(ErrorMessage = "JreCount is required.")]
[JsonProperty(PropertyName = "jreCount")]
public int? JreCount { get; set; }
Property Value
Type Description
int?

The number of Java Runtimes.

Remarks

Required

ManagedInstanceCount

Declaration
[Required(ErrorMessage = "ManagedInstanceCount is required.")]
[JsonProperty(PropertyName = "managedInstanceCount")]
public int? ManagedInstanceCount { get; set; }
Property Value
Type Description
int?

The number of managed instances.

Remarks

Required

In this article
Back to top