Show / Hide Table of Contents

Class DatabaseConnectionTypeSummary

Connection type e.g. ORACLE and array of technology type objects.

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

Properties

ConnectionType

Declaration
[Required(ErrorMessage = "ConnectionType is required.")]
[JsonProperty(PropertyName = "connectionType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConnectionType? ConnectionType { get; set; }
Property Value
Type Description
ConnectionType?

Defines the type of connection. For example, ORACLE.

Remarks

Required

TechnologyTypes

Declaration
[JsonProperty(PropertyName = "technologyTypes")]
public List<DatabaseTechnologyType> TechnologyTypes { get; set; }
Property Value
Type Description
List<DatabaseTechnologyType>

Array of technology type objects

In this article
Back to top