Show / Hide Table of Contents

Class MySqlDatabaseObject

Database objects to include or exclude from migration

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

Properties

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

Schema

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

Schema 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