File

src/lib/service/auth/auth-profile.interface.ts

Index

Properties

Properties

active
active: boolean
Type : boolean
Optional

flag whether or not the profile is active

auth
auth: string
Type : string
Optional

token to be set to the authorization header

host
host: string
Type : string

host to connect to

ntlm
ntlm: boolean
Type : boolean
Optional

flag whether or not to connect via NTLM

user
user: string
Type : string
Optional

username

export interface AuthProfile {
  /**
   * host to connect to
   */
  host: string;
  /**
   * username
   */
  user?: string;
  /**
   * token to be set to the authorization header
   */
  auth?: string;
  /**
   * flag whether or not the profile is active
   */
  active?: boolean;
  /**
   * flag whether or not to connect via NTLM
   */
  ntlm?: boolean;
}

results matching ""

    No results matching ""