Show / Hide Table of Contents

Class PerformanceTuningAnalysisResultSummary

Summary of a performance tuning analysis result. The actual output of the analysis is stored in the Object Storage object.

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

Properties

ApplicationId

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

The OCID of the application for which the report has been generated.

Remarks

Required

ApplicationInstallationId

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

The internal identifier of the application installation for which the report has been generated.

Remarks

Required

ApplicationInstallationPath

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

The installation path of the application for which the report has been generated.

Remarks

Required

ApplicationName

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

The name of the application for which the report has been generated.

Remarks

Required

BucketName

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

The Object Storage bucket name of this analysis result.

Remarks

Required

FleetId

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

The fleet OCID.

Remarks

Required

HostName

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

The hostname of the managed instance.

Remarks

Required

Id

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

The OCID to identify this analysis results.

Remarks

Required

ManagedInstanceId

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

The managed instance OCID.

Remarks

Required

Namespace

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

The Object Storage namespace of this analysis result.

Remarks

Required

ObjectName

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

The Object Storage object name of this analysis result.

Remarks

Required

Result

Declaration
[Required(ErrorMessage = "Result is required.")]
[JsonProperty(PropertyName = "result")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PerformanceTuningResultStatus? Result { get; set; }
Property Value
Type Description
PerformanceTuningResultStatus?

Result of the analysis based on whether warnings have been found or not.

Remarks

Required

TimeCreated

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

The time the result is compiled.

Remarks

Required

TimeFinished

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

The time the JFR recording has finished.

Remarks

Required

TimeStarted

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

The time the JFR recording has started.

Remarks

Required

WarningCount

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

Total number of warnings reported by the analysis.

Remarks

Required

WorkRequestId

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

The OCID of the work request to start the analysis.

In this article
Back to top