Show / Hide Table of Contents

Class TargetAssessmentConnection

Target Assessment Connection object

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

Properties

ConnectionType

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

Defines the type of connection. For example, ORACLE.

DatabaseVersion

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

The database version

Id

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

The OCID of the resource being referenced.

TechnologySubType

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

Technology sub-type e.g. ADW_SHARED, ADW_DEDICATED, ATP_SHARED, ATP_DEDICATED

TechnologyType

Declaration
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TechnologyType? TechnologyType { get; set; }
Property Value
Type Description
TechnologyType?

The technology type.

In this article
Back to top