Show / Hide Table of Contents

Class UpdateConnectionFromRestBasicAuth

The details to update a basic auth rest connection.

Inheritance
object
UpdateConnectionDetails
UpdateConnectionFromRestBasicAuth
Inherited Members
UpdateConnectionDetails.Key
UpdateConnectionDetails.ModelVersion
UpdateConnectionDetails.ParentRef
UpdateConnectionDetails.Name
UpdateConnectionDetails.Description
UpdateConnectionDetails.ObjectStatus
UpdateConnectionDetails.ObjectVersion
UpdateConnectionDetails.Identifier
UpdateConnectionDetails.ConnectionProperties
UpdateConnectionDetails.RegistryMetadata
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 UpdateConnectionFromRestBasicAuth : UpdateConnectionDetails

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
[Required(ErrorMessage = "PasswordSecret is required.")]
[JsonProperty(PropertyName = "passwordSecret")]
public SensitiveAttribute PasswordSecret { get; set; }
Property Value
Type Description
SensitiveAttribute
Remarks

Required

Username

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

Username for the connection.

Remarks

Required

In this article
Back to top