Show / Hide Table of Contents

Class PerformanceTuningAnalysisSummary

Summary information about a Performance Tuning Analysis.

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

Properties

AnalysisProjectName

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

Name of the analysis project.

Remarks

Required

ArtifactObjectStoragePath

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

Object storage path to the artifact.

Remarks

Required

CompartmentId

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

The OCID of the compartment.

Remarks

Required

CreatedBy

Declaration
[Required(ErrorMessage = "CreatedBy is required.")]
[JsonProperty(PropertyName = "createdBy")]
public Principal CreatedBy { get; set; }
Property Value
Type Description
Principal
Remarks

Required

Id

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

The OCID of the Performance Tuning Analysis.

Remarks

Required

Result

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

Possible Performance Tuning Result statuses.

Remarks

Required

ResultObjectStoragePath

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

Object storage path to the analysis.

Remarks

Required

TimeCreated

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

The date and time the Performance Tuning Analysis was created, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeFinished

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

The date and time the Performance Tuning Analysis was finished, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeStarted

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

The date and time the Performance Tuning Analysis was started, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

WarningCount

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

Number of warnings in the Performance Tuning Analysis.

Remarks

Required

WorkRequestId

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

The OCID of the Work Request.

Remarks

Required

In this article
Back to top