Show / Hide Table of Contents

Class PerformanceTuningAnalysis

To use any of the API operations, you must be authorized by an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.

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

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(ResponseEnumConverter))]
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