// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
//   protoc-gen-ts_proto  v2.6.1
//   protoc               v3.17.1
// source: outbound/OutboundNTLMAuth.proto

/* eslint-disable */
import { type Metadata } from "../common/Metadata.js";

/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */

export interface OutboundNTLMAuth {
  kind?: string | undefined;
  apiVersion?:
    | string
    | undefined;
  /** common metadata to identify a specific asset in the files */
  metadata?: Metadata | undefined;
  kindEnum?: OutboundNTLMAuth_KindEnums | undefined;
  spec?: OutboundNTLMAuth_Spec | undefined;
}

/** Kind id supported for OutboundNTLMAuth */
export enum OutboundNTLMAuth_KindEnums {
  OutboundNTLMAuth = "OutboundNTLMAuth",
}

/** The message specified the information related to Use_custom_credentials */
export interface OutboundNTLMAuth_UseCustomCredentials {
  username?: string | undefined;
  password?: string | undefined;
  domain?: string | undefined;
}

export interface OutboundNTLMAuth_Spec {
  enabled?: boolean | undefined;
  use_custom_credentials?: OutboundNTLMAuth_UseCustomCredentials | undefined;
  use_incoming_http_credentials?: boolean | undefined;
  use_transparent_auth?: boolean | undefined;
}
