From 2df1f156beec304b91c1e3a1bb518ac105afe668 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 22 Oct 2019 10:27:18 -0400 Subject: [PATCH] document enums --- _articles/directory-connector/directory-sync.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/_articles/directory-connector/directory-sync.md b/_articles/directory-connector/directory-sync.md index 39d446f2..6ba9eda0 100644 --- a/_articles/directory-connector/directory-sync.md +++ b/_articles/directory-connector/directory-sync.md @@ -54,6 +54,7 @@ You can install and run Directory Connector as an agent on the server that hosts * [Clear Cache Command](#clear-cache-command) * [Update Command](#update-command) * [Version Option](#version-option) + * [Enums](#enums) - [Source code](#source-code) ## Download and Install @@ -295,6 +296,20 @@ bwdc --version If you receive an error message referring to the libsecret shared object `Error: libsecret-1.so.0: cannot open shared object file: No such file or directory`, you may need to install libsecret which is required to store things securely on the host. +### Enums + +**Two Step Login Methods** + +| Name | Value | +|---------------|-------| +| Authenticator | 0 | +| Email | 1 | +| Yubikey | 3 | + +{% note %} +Other two-step login methods such as FIDO U2F and Duo are not supported by the CLI. +{% endnote %} + ## Source code As with everything here at Bitwarden, the Directory Connector is open source and hosted on GitHub at .