Class CreateMySqlMigrationDetails
  Create Migration resource parameters.
 
  
  
    Inheritance
    
    
    CreateMySqlMigrationDetails
   
  
  
  Assembly: OCI.DotNetSDK.Databasemigration.dll
  Syntax
  
    public class CreateMySqlMigrationDetails : CreateMigrationDetails
   
  Properties
  
  AdvisorSettings
  
  
  Declaration
  
    [JsonProperty(PropertyName = "advisorSettings")]
public CreateMySqlAdvisorSettings AdvisorSettings { get; set; }
   
  Property Value
  
  
  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. 
 | 
      
    
  
  
  DataTransferMediumDetails
  
  
  Declaration
  
    [JsonProperty(PropertyName = "dataTransferMediumDetails")]
public CreateMySqlDataTransferMediumDetails DataTransferMediumDetails { get; set; }
   
  Property Value
  
  
  ExcludeObjects
  
  
  Declaration
  
    [JsonProperty(PropertyName = "excludeObjects")]
public List<MySqlDatabaseObject> ExcludeObjects { get; set; }
   
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | List<MySqlDatabaseObject> | 
        Database objects to exclude from migration, cannot be specified alongside 'includeObjects' 
 | 
      
    
  
  
  GgsDetails
  
  
  Declaration
  
    [JsonProperty(PropertyName = "ggsDetails")]
public CreateMySqlGgsDeploymentDetails GgsDetails { get; set; }
   
  Property Value
  
  
  HubDetails
  
  
  Declaration
  
    [JsonProperty(PropertyName = "hubDetails")]
public CreateGoldenGateHubDetails HubDetails { get; set; }
   
  Property Value
  
  
  IncludeObjects
  
  
  Declaration
  
    [JsonProperty(PropertyName = "includeObjects")]
public List<MySqlDatabaseObject> IncludeObjects { get; set; }
   
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | List<MySqlDatabaseObject> | 
        Database objects to include from migration, cannot be specified alongside 'excludeObjects' 
 | 
      
    
  
  
  InitialLoadSettings
  
  
  Declaration
  
    [JsonProperty(PropertyName = "initialLoadSettings")]
public CreateMySqlInitialLoadSettings InitialLoadSettings { get; set; }
   
  Property Value