/plugins/catalog-backend-module-ldap/api-report.md

https://github.com/backstage/backstage · Markdown · 271 lines · 251 code · 20 blank · 0 comment · 0 complexity · 48ca49ec0c6019dbca6bd9b02d03c27b MD5 · raw file

  1. ## API Report File for "@backstage/plugin-catalog-backend-module-ldap"
  2. > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
  3. ```ts
  4. import { CatalogProcessor } from '@backstage/plugin-catalog-backend';
  5. import { CatalogProcessorEmit } from '@backstage/plugin-catalog-backend';
  6. import { Client } from 'ldapjs';
  7. import { Config } from '@backstage/config';
  8. import { EntityProvider } from '@backstage/plugin-catalog-backend';
  9. import { EntityProviderConnection } from '@backstage/plugin-catalog-backend';
  10. import { GroupEntity } from '@backstage/catalog-model';
  11. import { JsonValue } from '@backstage/types';
  12. import { LocationSpec } from '@backstage/catalog-model';
  13. import { Logger as Logger_2 } from 'winston';
  14. import { SearchEntry } from 'ldapjs';
  15. import { SearchOptions } from 'ldapjs';
  16. import { UserEntity } from '@backstage/catalog-model';
  17. // Warning: (ae-missing-release-tag) "defaultGroupTransformer" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  18. //
  19. // @public (undocumented)
  20. export function defaultGroupTransformer(
  21. vendor: LdapVendor,
  22. config: GroupConfig,
  23. entry: SearchEntry,
  24. ): Promise<GroupEntity | undefined>;
  25. // Warning: (ae-missing-release-tag) "defaultUserTransformer" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  26. //
  27. // @public (undocumented)
  28. export function defaultUserTransformer(
  29. vendor: LdapVendor,
  30. config: UserConfig,
  31. entry: SearchEntry,
  32. ): Promise<UserEntity | undefined>;
  33. // Warning: (ae-missing-release-tag) "GroupConfig" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  34. //
  35. // @public
  36. export type GroupConfig = {
  37. dn: string;
  38. options: SearchOptions;
  39. set?: {
  40. [path: string]: JsonValue;
  41. };
  42. map: {
  43. rdn: string;
  44. name: string;
  45. description: string;
  46. type: string;
  47. displayName: string;
  48. email?: string;
  49. picture?: string;
  50. memberOf: string;
  51. members: string;
  52. };
  53. };
  54. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  55. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  56. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  57. // Warning: (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
  58. // Warning: (ae-missing-release-tag) "GroupTransformer" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  59. //
  60. // @public
  61. export type GroupTransformer = (
  62. vendor: LdapVendor,
  63. config: GroupConfig,
  64. group: SearchEntry,
  65. ) => Promise<GroupEntity | undefined>;
  66. // Warning: (ae-missing-release-tag) "LDAP_DN_ANNOTATION" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  67. //
  68. // @public
  69. export const LDAP_DN_ANNOTATION = 'backstage.io/ldap-dn';
  70. // Warning: (ae-missing-release-tag) "LDAP_RDN_ANNOTATION" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  71. //
  72. // @public
  73. export const LDAP_RDN_ANNOTATION = 'backstage.io/ldap-rdn';
  74. // Warning: (ae-missing-release-tag) "LDAP_UUID_ANNOTATION" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  75. //
  76. // @public
  77. export const LDAP_UUID_ANNOTATION = 'backstage.io/ldap-uuid';
  78. // Warning: (ae-missing-release-tag) "LdapClient" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  79. //
  80. // @public
  81. export class LdapClient {
  82. constructor(client: Client, logger: Logger_2);
  83. // Warning: (ae-forgotten-export) The symbol "BindConfig" needs to be exported by the entry point index.d.ts
  84. //
  85. // (undocumented)
  86. static create(
  87. logger: Logger_2,
  88. target: string,
  89. bind?: BindConfig,
  90. ): Promise<LdapClient>;
  91. getRootDSE(): Promise<SearchEntry | undefined>;
  92. getVendor(): Promise<LdapVendor>;
  93. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  94. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  95. search(dn: string, options: SearchOptions): Promise<SearchEntry[]>;
  96. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  97. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  98. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  99. // Warning: (ae-forgotten-export) The symbol "SearchCallback" needs to be exported by the entry point index.d.ts
  100. searchStreaming(
  101. dn: string,
  102. options: SearchOptions,
  103. f: SearchCallback,
  104. ): Promise<void>;
  105. }
  106. // Warning: (ae-missing-release-tag) "LdapOrgEntityProvider" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  107. //
  108. // @public
  109. export class LdapOrgEntityProvider implements EntityProvider {
  110. constructor(options: {
  111. id: string;
  112. provider: LdapProviderConfig;
  113. logger: Logger_2;
  114. userTransformer?: UserTransformer;
  115. groupTransformer?: GroupTransformer;
  116. });
  117. // (undocumented)
  118. connect(connection: EntityProviderConnection): Promise<void>;
  119. // (undocumented)
  120. static fromConfig(
  121. configRoot: Config,
  122. options: {
  123. id: string;
  124. target: string;
  125. userTransformer?: UserTransformer;
  126. groupTransformer?: GroupTransformer;
  127. logger: Logger_2;
  128. },
  129. ): LdapOrgEntityProvider;
  130. // (undocumented)
  131. getProviderName(): string;
  132. // (undocumented)
  133. read(): Promise<void>;
  134. }
  135. // Warning: (ae-missing-release-tag) "LdapOrgReaderProcessor" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  136. //
  137. // @public
  138. export class LdapOrgReaderProcessor implements CatalogProcessor {
  139. constructor(options: {
  140. providers: LdapProviderConfig[];
  141. logger: Logger_2;
  142. groupTransformer?: GroupTransformer;
  143. userTransformer?: UserTransformer;
  144. });
  145. // (undocumented)
  146. static fromConfig(
  147. config: Config,
  148. options: {
  149. logger: Logger_2;
  150. groupTransformer?: GroupTransformer;
  151. userTransformer?: UserTransformer;
  152. },
  153. ): LdapOrgReaderProcessor;
  154. // (undocumented)
  155. readLocation(
  156. location: LocationSpec,
  157. _optional: boolean,
  158. emit: CatalogProcessorEmit,
  159. ): Promise<boolean>;
  160. }
  161. // Warning: (ae-missing-release-tag) "LdapProviderConfig" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  162. //
  163. // @public
  164. export type LdapProviderConfig = {
  165. target: string;
  166. bind?: BindConfig;
  167. users: UserConfig;
  168. groups: GroupConfig;
  169. };
  170. // Warning: (ae-missing-release-tag) "LdapVendor" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  171. //
  172. // @public
  173. export type LdapVendor = {
  174. dnAttributeName: string;
  175. uuidAttributeName: string;
  176. decodeStringAttribute: (entry: SearchEntry, name: string) => string[];
  177. };
  178. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  179. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  180. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  181. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  182. // Warning: (ae-missing-release-tag) "mapStringAttr" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  183. //
  184. // @public
  185. export function mapStringAttr(
  186. entry: SearchEntry,
  187. vendor: LdapVendor,
  188. attributeName: string | undefined,
  189. setter: (value: string) => void,
  190. ): void;
  191. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  192. // Warning: (ae-missing-release-tag) "readLdapConfig" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  193. //
  194. // @public
  195. export function readLdapConfig(config: Config): LdapProviderConfig[];
  196. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  197. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  198. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  199. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  200. // Warning: (ae-missing-release-tag) "readLdapOrg" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  201. //
  202. // @public
  203. export function readLdapOrg(
  204. client: LdapClient,
  205. userConfig: UserConfig,
  206. groupConfig: GroupConfig,
  207. options: {
  208. groupTransformer?: GroupTransformer;
  209. userTransformer?: UserTransformer;
  210. logger: Logger_2;
  211. },
  212. ): Promise<{
  213. users: UserEntity[];
  214. groups: GroupEntity[];
  215. }>;
  216. // Warning: (ae-missing-release-tag) "UserConfig" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  217. //
  218. // @public
  219. export type UserConfig = {
  220. dn: string;
  221. options: SearchOptions;
  222. set?: {
  223. [path: string]: JsonValue;
  224. };
  225. map: {
  226. rdn: string;
  227. name: string;
  228. description?: string;
  229. displayName: string;
  230. email: string;
  231. picture?: string;
  232. memberOf: string;
  233. };
  234. };
  235. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  236. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  237. // Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  238. // Warning: (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
  239. // Warning: (ae-missing-release-tag) "UserTransformer" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
  240. //
  241. // @public
  242. export type UserTransformer = (
  243. vendor: LdapVendor,
  244. config: UserConfig,
  245. user: SearchEntry,
  246. ) => Promise<UserEntity | undefined>;
  247. // Warnings were encountered during analysis:
  248. //
  249. // src/ldap/vendors.d.ts:17:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  250. // src/ldap/vendors.d.ts:18:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
  251. ```