Show / Hide Table of Contents

Class MigrationParameterSummary

Migration parameter response object.

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

Properties

CategoryDisplayName

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

Parameter category display name.

Remarks

Required

CategoryName

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

Parameter category name.

Remarks

Required

DataType

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

Parameter data type.

Remarks

Required

DatabaseCombination

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

The combination of source and target databases participating in a migration. Example: ORACLE means the migration is meant for migrating Oracle source and target databases.

Remarks

Required

DefaultValue

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

Default value for a parameter.

Description

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

Parameter name description.

Remarks

Required

DisplayName

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

Parameter display name.

Remarks

Required

DocUrlLink

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

Parameter documentation URL link.

HintText

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

Hint text for parameter value.

MaxValue

Declaration
[JsonProperty(PropertyName = "maxValue")]
public float? MaxValue { get; set; }
Property Value
Type Description
float?

Parameter maximum value.

MigrationType

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

Migration Stage.

Remarks

Required

MinValue

Declaration
[JsonProperty(PropertyName = "minValue")]
public float? MinValue { get; set; }
Property Value
Type Description
float?

Parameter minimum value.

Name

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

Parameter name.

Remarks

Required

In this article
Back to top