Show / Hide Table of Contents

Class MetadataRemap

Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure

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

Properties

NewValue

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

Specifies the new value that oldValue should be translated into.

Remarks

Required

OldValue

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

Specifies the value which needs to be reset.

Remarks

Required

Type

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

Type of remap. Refer to METADATA_REMAP Procedure

Remarks

Required

In this article
Back to top