| description: > |
| Implement to update LDAP mandatory properties. |
| |
| properties: |
| - name: LDAPServerURI |
| type: string |
| description: > |
| Specifies the LDAP URI of the server to connect to. |
| errors: |
| - xyz.openbmc_project.Common.Error.InternalFailure |
| - xyz.openbmc_project.Common.Error.InvalidArgument |
| - xyz.openbmc_project.Common.Error.NoCACertificate |
| - name: LDAPBindDN |
| type: string |
| description: > |
| Specifies the distinguished name with which to bind to the directory |
| server for lookups. |
| errors: |
| - xyz.openbmc_project.Common.Error.InternalFailure |
| - xyz.openbmc_project.Common.Error.InvalidArgument |
| - name: LDAPBaseDN |
| type: string |
| description: > |
| Specifies the base distinguished name to use as search base. |
| errors: |
| - xyz.openbmc_project.Common.Error.InternalFailure |
| - xyz.openbmc_project.Common.Error.InvalidArgument |
| - name: LDAPSearchScope |
| type: enum[self.SearchScope] |
| description: > |
| Specifies the search scope:subtree, one level or base object. |
| default: sub |
| errors: |
| - xyz.openbmc_project.Common.Error.InternalFailure |
| - name: LDAPType |
| type: enum[self.Type] |
| description: > |
| Specifies the the configured server is ActiveDirectory(AD) or |
| OpenLdap. It's just an indication for the LDAP stack running on |
| the BMC, in case the app is implemented in such a way that it has |
| to react differently for AD vs openldap. |
| errors: |
| - xyz.openbmc_project.Common.Error.InternalFailure |
| |
| enumerations: |
| - name: SearchScope |
| description: > |
| Possible base scopes. |
| values: |
| - name: sub |
| - name: one |
| - name: base |
| |
| - name: Type |
| description: > |
| Possible LDAP Types. |
| values: |
| - name: ActiveDirectory |
| - name: OpenLdap |
| |
| # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 |