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

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

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

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

/** Kind id supported for OutboundBasicAuth */
export enum OutboundBasicAuth_KindEnums {
  OutboundBasicAuth = "OutboundBasicAuth",
}

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

export interface OutboundBasicAuth_Spec {
  enabled?: boolean | undefined;
  use_incoming_credentials?: boolean | undefined;
  use_custom_credentials?: OutboundBasicAuth_UseCustomCredentials | undefined;
}
