Show / Hide Table of Contents

Class OracleDatabaseObjectSummary

Database objects to include or exclude from migration

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

Properties

IsOmitExcludedTableFromReplication

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

Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.

ObjectName

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

Name of the object (regular expression is allowed)

Remarks

Required

ObjectStatus

Declaration
[JsonProperty(PropertyName = "objectStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ObjectStatus? ObjectStatus { get; set; }
Property Value
Type Description
ObjectStatus?

Object status.

Owner

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

Owner of the object (regular expression is allowed)

Remarks

Required

Type

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

Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.

In this article
Back to top