GET zstack/v1/account-import/bindings
Authorization: OAuth the-session-uuid
curl -H "Content-Type: application/json;charset=UTF-8" \ -H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \ -X GET http://localhost:8080/zstack/v1/account-import/bindings?q=accountUuid=bcfc6b1c7aaf3a43a39ab4edf8b9107d
可查询字段
运行CLI命令行工具,输入QueryThirdPartyAccountSourceBinding
并按Tab键查看所有可查询字段以及可跨表查询的资源名。
{ "inventories": [ { "id": 1, "credentials": "ou\u003dEmployee,uid\u003dtest", "accountSourceUuid": "617cef7cda233b559d134245cf8211d5", "accountUuid": "f29adf4e230831f3b34f4d4bf7cfa1dc" } ] }
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
success | boolean | API是否成功 | 4.3.0 |
error | ErrorCode | 错误码,若不为null,则表示操作失败, 操作成功时该字段为null。 详情参考error | 4.3.0 |
inventories | List | 详情参考inventories | 4.3.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
code | String | 错误码号,错误的全局唯一标识,例如SYS.1000, HOST.1001 | 0.6 |
description | String | 错误的概要描述 | 0.6 |
details | String | 错误的详细信息 | 0.6 |
elaboration | String | 保留字段,默认为null | 0.6 |
opaque | LinkedHashMap | 保留字段,默认为null | 0.6 |
cause | ErrorCode | 根错误,引发当前错误的源错误,若无原错误,该字段为null | 0.6 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
id | Long | 唯一标示该关系 | 4.3.0 |
credentials | String | 导入源使用的用户唯一标识,例如LDAP源导入的用户则为登录使用的UID | 4.3.0 |
accountSourceUuid | String | 导入源服务器UUID | 4.3.0 |
accountUuid | String | 账户UUID | 4.3.0 |
createDate | Timestamp | 创建时间 | 4.3.0 |
lastOpDate | Timestamp | 最后一次修改时间 | 4.3.0 |
QueryThirdPartyAccountSourceBindingAction action = new QueryThirdPartyAccountSourceBindingAction(); action.conditions = asList("accountUuid=5ec5476a24423683ad3f51da0891682e"); action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"; QueryThirdPartyAccountSourceBindingAction.Result res = action.call();
QueryThirdPartyAccountSourceBindingAction action = QueryThirdPartyAccountSourceBindingAction() action.conditions = ["accountUuid=c02ff535be723284947cad9f679cc1b9"] action.sessionId = "b86c9016b4f24953a9edefb53ca0678c" QueryThirdPartyAccountSourceBindingAction.Result res = action.call()
POST zstack/v1/ldap/servers
Authorization: OAuth the-session-uuid
{ "params": { "name": "miao", "description": "miao desc", "url": "ldap://localhost:1888", "base": "dc\u003dexample,dc\u003dcom", "username": "", "password": "", "encryption": "None", "serverType": "WindowsAD", "usernameProperty": "cn", "filter": "(cn\u003dMicha Kops)", "syncCreatedAccountStrategy": "CreateAccount", "syncDeletedAccountStrategy": "StaleAccount" }, "systemTags": [], "userTags": [] }
systemTags
、userTags
字段可以省略。列出是为了表示body中可以包含这两个字段。curl -H "Content-Type: application/json;charset=UTF-8" \ -H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \ -X POST -d '{"params":{"name":"miao","description":"miao desc","url":"ldap://localhost:1888","base":"dc=example,dc=com","username":"","password":"","encryption":"None","serverType":"WindowsAD","usernameProperty":"cn","filter":"(cn=Micha Kops)","syncCreatedAccountStrategy":"CreateAccount","syncDeletedAccountStrategy":"StaleAccount"}}' \ http://localhost:8080/zstack/v1/ldap/servers
名字 | 类型 | 位置 | 描述 | 可选值 | 起始版本 |
---|---|---|---|---|---|
name | String | body(包含在params 结构中) | 资源名称 | 4.3.0 | |
description (可选) | String | body(包含在params 结构中) | 资源的详细描述 | 4.3.0 | |
url | String | body(包含在params 结构中) | LDAP服务器访问地址 | 4.3.0 | |
base | String | body(包含在params 结构中) | LDAP服务查询BaseDN | 4.3.0 | |
username | String | body(包含在params 结构中) | 访问LDAP服务器使用的用户名 | 4.3.0 | |
password | String | body(包含在params 结构中) | 密码 | 4.3.0 | |
encryption | String | body(包含在params 结构中) | 加密方式 |
| 4.3.0 |
systemTags (可选) | List | body | 系统标签 | 4.3.0 | |
userTags (可选) | List | body | 用户标签 | 4.3.0 | |
serverType (可选) | String | body(包含在params 结构中) | LDAP服务器类型 |
| 4.3.0 |
usernameProperty (可选) | String | body(包含在params 结构中) | 用户登录该虚拟化平台时使用哪个字段用作用户名 | 4.3.0 | |
filter (可选) | String | body(包含在params 结构中) | 从LDAP服务器同步时,使用的过滤器,确定哪些用户是需要同步的 | 4.3.0 | |
syncCreatedAccountStrategy (可选) | String | body(包含在params 结构中) | 从LDAP服务器同步时,对于LDAP服务器中新创建的用户,该虚拟化平台的处理策略,是创建对应的account还是无动作 |
| 4.3.0 |
syncDeletedAccountStrategy (可选) | String | body(包含在params 结构中) | 从LDAP服务器同步时,对于LDAP服务器中已删除的用户,该虚拟化平台的处理策略,是删除对应的account、标记已删除还是无动作 |
| 4.3.0 |
{ "inventory": { "uuid": "01b489793e3d31728ccbbc4fdfd99ed0", "name": "miao", "description": "miao desc", "url": "ldap://localhost:1888", "base": "dc\u003dexample,dc\u003dcom", "username": "", "password": "", "encryption": "None" } }
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
success | boolean | 4.3.0 | |
error | ErrorCode | 错误码,若不为null,则表示操作失败, 操作成功时该字段为null。 详情参考error | 4.3.0 |
inventory | LdapServerInventory | 详情参考inventory | 4.3.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
code | String | 错误码号,错误的全局唯一标识,例如SYS.1000, HOST.1001 | 0.6 |
description | String | 错误的概要描述 | 0.6 |
details | String | 错误的详细信息 | 0.6 |
elaboration | String | 保留字段,默认为null | 0.6 |
opaque | LinkedHashMap | 保留字段,默认为null | 0.6 |
cause | ErrorCode | 根错误,引发当前错误的源错误,若无原错误,该字段为null | 0.6 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
uuid | String | 资源的UUID,唯一标示该资源 | 4.3.0 |
name | String | 资源名称 | 4.3.0 |
type | String | 用户源类型,一般是ldap | 4.3.0 |
description | String | 资源的详细描述 | 4.3.0 |
url | String | 4.3.0 | |
base | String | LDAP服务器访问地址 | 4.3.0 |
username | String | 用于访问LDAP服务器的用户名 | 4.3.0 |
password | String | 密码 | 4.3.0 |
encryption | String | 加密方式 | 4.3.0 |
serverType | String | 服务器类型,可能是OpenLdap或WindowsAD,如果不确定会返回Unknown | 4.3.0 |
createDate | Timestamp | 创建时间 | 4.3.0 |
lastOpDate | Timestamp | 最后一次修改时间 | 4.3.0 |
AddLdapServerAction action = new AddLdapServerAction(); action.name = "miao"; action.description = "miao desc"; action.url = "ldap://localhost:1888"; action.base = "dc=example,dc=com"; action.username = ""; action.password = ""; action.encryption = "None"; action.serverType = "WindowsAD"; action.usernameProperty = "cn"; action.filter = "(cn=Micha Kops)"; action.syncCreatedAccountStrategy = "CreateAccount"; action.syncDeletedAccountStrategy = "StaleAccount"; action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"; AddLdapServerAction.Result res = action.call();
AddLdapServerAction action = AddLdapServerAction() action.name = "miao" action.description = "miao desc" action.url = "ldap://localhost:1888" action.base = "dc=example,dc=com" action.username = "" action.password = "" action.encryption = "None" action.serverType = "WindowsAD" action.usernameProperty = "cn" action.filter = "(cn=Micha Kops)" action.syncCreatedAccountStrategy = "CreateAccount" action.syncDeletedAccountStrategy = "StaleAccount" action.sessionId = "b86c9016b4f24953a9edefb53ca0678c" AddLdapServerAction.Result res = action.call()
DELETE zstack/v1/ldap/servers/{uuid}
Authorization: OAuth the-session-uuid
curl -H "Content-Type: application/json;charset=UTF-8" \ -H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \ -X DELETE http://localhost:8080/zstack/v1/ldap/servers/01d547012c9a39cf85964e578842f5a5
名字 | 类型 | 位置 | 描述 | 可选值 | 起始版本 |
---|---|---|---|---|---|
uuid | String | url | 资源的UUID,唯一标示该资源 | 4.3.0 | |
deleteMode (可选) | String | body | 删除模式 | 4.3.0 | |
systemTags (可选) | List | body | 系统标签 | 4.3.0 | |
userTags (可选) | List | body | 用户标签 | 4.3.0 |
{}
,出错时返回的JSON结构包含一个error字段,例如:{ "error": { "code": "SYS.1001", "description": "A message or a operation timeout", "details": "Create VM on KVM timeout after 300s" } }
DeleteLdapServerAction action = new DeleteLdapServerAction(); action.uuid = "01d547012c9a39cf85964e578842f5a5"; action.deleteMode = "Permissive"; action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"; DeleteLdapServerAction.Result res = action.call();
DeleteLdapServerAction action = DeleteLdapServerAction() action.uuid = "01d547012c9a39cf85964e578842f5a5" action.deleteMode = "Permissive" action.sessionId = "b86c9016b4f24953a9edefb53ca0678c" DeleteLdapServerAction.Result res = action.call()
学习路径
ZStack Cloud 产品学习路径
快速梳理文档,点击相应文本链接,快速跳转到相应文档的页面,学习 ZStack Cloud 产品。
业务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2其他(漏洞提交、投诉举报等)
400-962-2212 转 3业务咨询:
400-962-2212 转 1ZStack学院:
training@zstack.io业务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2其他(漏洞提交、投诉举报等)
400-962-2212 转 3业务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2其他(漏洞提交、投诉举报等)
400-962-2212 转 3业务咨询:
400-962-2212 转 1商务联系:
channel@zstack.io业务咨询:
400-962-2212 转 1商务联系:
channel@zstack.io下载链接已发送至您的邮箱。
如未收到,请查看您的垃圾邮件、订阅邮件、广告邮件。 当您收到电子邮件后,请点击 URL 链接,以完成下载。感谢您使用 ZStack 产品和服务。
成功提交申请。
我们将安排工作人员尽快与您取得联系。感谢您使用 ZStack 产品和服务。
信息提交成功。
我们将安排工作人员尽快与您取得联系,请保持电话畅通。感谢您使用 ZStack 产品和服务。
商务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2商务联系:
sales@zstack.io成功提交申请。
我们将安排工作人员尽快与您取得联系。感谢您使用 ZStack 产品和服务。