Show / Hide Table of Contents

Class ConnectionFromAdwcDetails

The connection details for an Autonomous Data Warehouse data asset.

Inheritance
object
ConnectionDetails
ConnectionFromAdwcDetails
Inherited Members
ConnectionDetails.Key
ConnectionDetails.ModelVersion
ConnectionDetails.ParentRef
ConnectionDetails.Name
ConnectionDetails.Description
ConnectionDetails.ObjectVersion
ConnectionDetails.ObjectStatus
ConnectionDetails.Identifier
ConnectionDetails.PrimarySchema
ConnectionDetails.ConnectionProperties
ConnectionDetails.IsDefault
ConnectionDetails.Metadata
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class ConnectionFromAdwcDetails : ConnectionDetails

Properties

Password

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

The password for the connection.

PasswordSecret

Declaration
[JsonProperty(PropertyName = "passwordSecret")]
public SensitiveAttribute PasswordSecret { get; set; }
Property Value
Type Description
SensitiveAttribute

TnsAlias

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

The Autonomous Data Warehouse instance service name.

TnsNames

Declaration
[JsonProperty(PropertyName = "tnsNames")]
public List<string> TnsNames { get; set; }
Property Value
Type Description
List<string>

Array of service names that are available for selection in the tnsAlias property.

Username

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

The user name for the connection.

In this article
Back to top