Class MySqlDatabaseObjectSummary
Database objects to include or exclude from migration
Inherited Members
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class MySqlDatabaseObjectSummary
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
ObjectStatus
Declaration
[JsonProperty(PropertyName = "objectStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ObjectStatus? ObjectStatus { get; set; }
Property Value
Type | Description |
---|---|
ObjectStatus? | Object status. |
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. |