Show / Hide Table of Contents

Class RenameRule

Lets you rename an attribute.

Inheritance
object
ProjectionRule
RenameRule
Inherited Members
ProjectionRule.Key
ProjectionRule.ModelVersion
ProjectionRule.ParentRef
ProjectionRule.IsJavaRegexSyntax
ProjectionRule.ConfigValues
ProjectionRule.ObjectStatus
ProjectionRule.Description
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class RenameRule : ProjectionRule

Properties

FromName

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

The attribute name that needs to be renamed.

IsSkipRemainingRulesOnMatch

Declaration
[JsonProperty(PropertyName = "isSkipRemainingRulesOnMatch")]
public bool? IsSkipRemainingRulesOnMatch { get; set; }
Property Value
Type Description
bool?

Specifies whether to skip remaining rules when a match is found.

ToName

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

The new attribute name.

In this article
Back to top