Show / Hide Table of Contents

Class CreateOracleMigrationDetails

Create Migration resource parameters.

Inheritance
object
CreateMigrationDetails
CreateOracleMigrationDetails
Inherited Members
CreateMigrationDetails.Description
CreateMigrationDetails.CompartmentId
CreateMigrationDetails.Type
CreateMigrationDetails.DisplayName
CreateMigrationDetails.SourceDatabaseConnectionId
CreateMigrationDetails.TargetDatabaseConnectionId
CreateMigrationDetails.FreeformTags
CreateMigrationDetails.DefinedTags
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 CreateOracleMigrationDetails : CreateMigrationDetails

Properties

AdvancedParameters

Declaration
[JsonProperty(PropertyName = "advancedParameters")]
public List<MigrationParameterDetails> AdvancedParameters { get; set; }
Property Value
Type Description
List<MigrationParameterDetails>

List of Migration Parameter objects.

AdvisorSettings

Declaration
[JsonProperty(PropertyName = "advisorSettings")]
public CreateOracleAdvisorSettings AdvisorSettings { get; set; }
Property Value
Type Description
CreateOracleAdvisorSettings

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 CreateOracleDataTransferMediumDetails DataTransferMediumDetails { get; set; }
Property Value
Type Description
CreateOracleDataTransferMediumDetails

ExcludeObjects

Declaration
[JsonProperty(PropertyName = "excludeObjects")]
public List<OracleDatabaseObject> ExcludeObjects { get; set; }
Property Value
Type Description
List<OracleDatabaseObject>

Database objects to exclude from migration, cannot be specified alongside 'includeObjects'

GgsDetails

Declaration
[JsonProperty(PropertyName = "ggsDetails")]
public CreateOracleGgsDeploymentDetails GgsDetails { get; set; }
Property Value
Type Description
CreateOracleGgsDeploymentDetails

HubDetails

Declaration
[JsonProperty(PropertyName = "hubDetails")]
public CreateGoldenGateHubDetails HubDetails { get; set; }
Property Value
Type Description
CreateGoldenGateHubDetails

IncludeObjects

Declaration
[JsonProperty(PropertyName = "includeObjects")]
public List<OracleDatabaseObject> IncludeObjects { get; set; }
Property Value
Type Description
List<OracleDatabaseObject>

Database objects to include from migration, cannot be specified alongside 'excludeObjects'

InitialLoadSettings

Declaration
[JsonProperty(PropertyName = "initialLoadSettings")]
public CreateOracleInitialLoadSettings InitialLoadSettings { get; set; }
Property Value
Type Description
CreateOracleInitialLoadSettings

SourceContainerDatabaseConnectionId

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

The OCID of the resource being referenced.

SourceStandbyDatabaseConnectionId

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

The OCID of the resource being referenced.

In this article
Back to top