Show / Hide Table of Contents

Class ConnectionFromRestBasicAuth

The connection details for a basic auth rest connection.

Inheritance
object
Connection
ConnectionFromRestBasicAuth
Inherited Members
Connection.Key
Connection.ModelVersion
Connection.ParentRef
Connection.Name
Connection.Description
Connection.ObjectVersion
Connection.ObjectStatus
Connection.Identifier
Connection.PrimarySchema
Connection.ConnectionProperties
Connection.IsDefault
Connection.Metadata
Connection.KeyMap
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 ConnectionFromRestBasicAuth : Connection

Properties

AuthHeader

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

Optional header name if used other than default header(Authorization).

PasswordSecret

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

Username

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

Username for the connection.

In this article
Back to top