Class JavaMigrationAnalysisTarget
The target for the Java Migration Analysis
Inherited Members
Namespace: Oci.JmsutilsService.Models
Assembly: OCI.DotNetSDK.Jmsutils.dll
Syntax
public class JavaMigrationAnalysisTarget
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
ExcludePackagePrefixes
Declaration
[JsonProperty(PropertyName = "excludePackagePrefixes")]
public List<string> ExcludePackagePrefixes { get; set; }
Property Value
Type | Description |
---|---|
List<string> | Package prefixes to be excluded from the migration analysis. Either this or includePackagePrefixes can be specified. |
IncludePackagePrefixes
Declaration
[JsonProperty(PropertyName = "includePackagePrefixes")]
public List<string> IncludePackagePrefixes { get; set; }
Property Value
Type | Description |
---|---|
List<string> | Package prefixes to be included from the migration analysis. Either this or excludePackagePrefixes can be specified. |
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
TargetJdkVersions
Declaration
[Required(ErrorMessage = "TargetJdkVersions is required.")]
[JsonProperty(PropertyName = "targetJdkVersions")]
public List<string> TargetJdkVersions { get; set; }
Property Value
Type | Description |
---|---|
List<string> | Version of the target JDKs. |
Remarks
Required