Show / Hide Table of Contents

Class MySqlMigrationObjectCollection

Lists the database objects that participate in this migration.

Inheritance
object
MigrationObjectCollection
MySqlMigrationObjectCollection
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 MySqlMigrationObjectCollection : MigrationObjectCollection

Properties

BulkIncludeExcludeData

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

Specifies the database objects to be excluded from the migration in bulk. The definition accepts input in a CSV format, newline separated for each entry. More details can be found in the documentation.

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<MySqlDatabaseObjectSummary> Items { get; set; }
Property Value
Type Description
List<MySqlDatabaseObjectSummary>

An array of database objects that are either included or excluded from the migration.

Remarks

Required

In this article
Back to top