Show / Hide Table of Contents

Class UnsupportedDatabaseObject

Database objects to exclude from migration

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

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

Owner

Declaration
[Required(ErrorMessage = "Owner is required.")]
[JsonProperty(PropertyName = "owner")]
public string Owner { get; set; }
Property Value
Type Description
string

Owner of the object (regular expression is allowed)

Remarks

Required

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UnsupportedDatabaseObject.TypeEnum? Type { get; set; }
Property Value
Type Description
UnsupportedDatabaseObject.TypeEnum?

Type of unsupported object

In this article
Back to top