Show / Hide Table of Contents

Class JavaMigrationAnalysisSummary

Summary information about a Java Migration Analysis.

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

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

AnalysisResultFiles

Declaration
[Required(ErrorMessage = "AnalysisResultFiles is required.")]
[JsonProperty(PropertyName = "analysisResultFiles")]
public List<string> AnalysisResultFiles { get; set; }
Property Value
Type Description
List<string>

The analysis application file names result in the Object Storage.

Remarks

Required

AnalysisResultObjectStoragePath

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

Path to the Object Storage analysis application result.

Remarks

Required

BucketName

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

Object storage bucket name.

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 Java Migration Analysis.

Remarks

Required

InputApplicationsObjectStoragePaths

Declaration
[Required(ErrorMessage = "InputApplicationsObjectStoragePaths is required.")]
[JsonProperty(PropertyName = "inputApplicationsObjectStoragePaths")]
public List<string> InputApplicationsObjectStoragePaths { get; set; }
Property Value
Type Description
List<string>

Object storage paths to the input files applications to be analysed.

Remarks

Required

Metadata

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

Additional info reserved for future use.

NamespaceName

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

Object storage namespace.

Remarks

Required

TargetJdkVersion

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

Jdk Version of the Java Migration Analysis target.

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 Java Migration 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 Java Migration 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 Java Migration Analysis was started, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

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