Show / Hide Table of Contents

Class ApplicationInstallationUsageSummary

Summarizes application installation usage information during a specified time period. The main difference between ApplicationUsage and ApplicationInstallationUsageSummary is the presence of installation information. ApplicationUsage provides only aggregated information for an application regardless of the installation paths. Therefore, two different applications with the same application name installed in two different paths will be aggregated to a single application. This aggregation makes it difficult to focus actions to single application installed on a known path. An application installation is independent of the Java Runtime on which it's running or the Managed Instance where it's installed.

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

Properties

ApplicationInstallationKey

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

An internal identifier for the application installation that is unique to a Fleet.

Remarks

Required

ApplicationInvokedBy

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

Comma separated list of user names that invoked application installations.

ApplicationKey

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

An internal identifier for the application that is unique to a Fleet. ApplicationKey will be identical for applications with different installation information.

Remarks

Required

ApplicationType

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

The type of the application, denoted by how the application was started.

Remarks

Required

ApproximateInstallationCount

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

The approximate count of installations running this application.

ApproximateJreCount

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

The approximate count of Java Runtimes running this application.

ApproximateLibraryCount

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

The approximate count of libraries in this application.

ApproximateManagedInstanceCount

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

The approximate count of managed instances reporting this application.

DisplayName

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

The name of the application.

Remarks

Required

FullClassPath

Declaration
[JsonProperty(PropertyName = "fullClassPath")]
public List<string> FullClassPath { get; set; }
Property Value
Type Description
List<string>

List of full paths where the application last searched for classes. Contains full paths to all items from module-list and class path list.

InstallationPath

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

The full path on which the application installation was detected.

OperatingSystems

Declaration
[JsonProperty(PropertyName = "operatingSystems")]
public List<OperatingSystem> OperatingSystems { get; set; }
Property Value
Type Description
List<OperatingSystem>

The operating systems running this application.

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