Show / Hide Table of Contents

Class UpdateMySqlInitialLoadSettings

Optional dump settings

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

Properties

Compatibility

Declaration
[JsonProperty(PropertyName = "compatibility")]
public List<CompatibilityOption> Compatibility { get; set; }
Property Value
Type Description
List<CompatibilityOption>

Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.

HandleGrantErrors

Declaration
[JsonProperty(PropertyName = "handleGrantErrors")]
[JsonConverter(typeof(StringEnumConverter))]
public HandleGrantErrors? HandleGrantErrors { get; set; }
Property Value
Type Description
HandleGrantErrors?

The action taken in the event of errors related to GRANT or REVOKE errors.

IsConsistent

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

Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.

IsIgnoreExistingObjects

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

Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.

IsTzUtc

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

Include a statement at the start of the dump to set the time zone to UTC.

JobMode

Declaration
[Required(ErrorMessage = "JobMode is required.")]
[JsonProperty(PropertyName = "jobMode")]
[JsonConverter(typeof(StringEnumConverter))]
public JobModeMySql? JobMode { get; set; }
Property Value
Type Description
JobModeMySql?

MySql Job Mode

Remarks

Required

PrimaryKeyCompatibility

Declaration
[JsonProperty(PropertyName = "primaryKeyCompatibility")]
[JsonConverter(typeof(StringEnumConverter))]
public PrimaryKeyCompatibility? PrimaryKeyCompatibility { get; set; }
Property Value
Type Description
PrimaryKeyCompatibility?

Primary key compatibility option

In this article
Back to top