POST /v1/iam2/organizations
Authorization: OAuth the-session-uuid
{
"params": {
"name": "org1",
"type": "Company",
"parentUuid": "b24b468d502f4d7e949dfcdf9036879c",
"attributes": [
{
"name": "some-attribute-name",
"value": "attribute-value"
}
]
},
"systemTags": [],
"userTags": []
}
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X POST -d '{"params":{"name":"org1","type":"Company","parentUuid":"1c26fe0d3e384ac9bf67ce4340d65413","attributes":[{"name":"some-attribute-name","value":"attribute-value"}]}}' http://localhost:8080/zstack/v1/iam2/organizations
名字 | 类型 | 位置 | 描述 | 可选值 | 起始版本 |
---|---|---|---|---|---|
name | String | body(包含在params结构中) | 资源名称 | 2.4.0 | |
description (可选) | String | body(包含在params结构中) | 资源的详细描述 | 2.4.0 | |
type | OrganizationType | body(包含在params结构中) | 组织类型 |
| 2.4.0 |
parentUuid (可选) | String | body(包含在params结构中) | 2.4.0 | ||
attributes (可选) | List | body(包含在params结构中) | 2.4.0 | ||
resourceUuid (可选) | String | body(包含在params结构中) | 2.4.0 | ||
systemTags (可选) | List | body | 2.4.0 | ||
userTags (可选) | List | body | 2.4.0 |
{
"inventory": {
"uuid": "c623821bf32a4a9ea6e8e6839de79473",
"name": "org1",
"state": "Enabled",
"type": "Company",
"parentUuid": "58b7f5a391b64d189ba79217758cd30e",
"attributes": [
{
"uuid": "b058dd2b053540faa97eb80e13b41970",
"name": "attribute-name",
"value": "attribute-value",
"type": "Customized"
}
]
}
}
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
error | ErrorCode | 错误码,若不为null,则表示操作失败, 操作成功时该字段为null。 详情参考error | 2.4.0 |
inventory | IAM2OrganizationInventory | 详情参考inventory | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
code | String | 错误码号,错误的全局唯一标识,例如SYS.1000, HOST.1001 | 2.4.0 |
description | String | 错误的概要描述 | 2.4.0 |
details | String | 错误的详细信息 | 2.4.0 |
elaboration | String | 保留字段,默认为null | 2.4.0 |
opaque | LinkedHashMap | 保留字段,默认为null | 2.4.0 |
cause | ErrorCode | 根错误,引发当前错误的源错误,若无原错误,该字段为null | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
uuid | String | 资源的UUID,唯一标示该资源 | 2.4.0 |
name | String | 资源名称 | 2.4.0 |
description | String | 资源的详细描述 | 2.4.0 |
createDate | Timestamp | 创建时间 | 2.4.0 |
lastOpDate | Timestamp | 最后一次修改时间 | 2.4.0 |
parentUuid | String | 2.4.0 | |
state | State | 详情参考state | 2.4.0 |
type | OrganizationType | 详情参考type | 2.4.0 |
attributes | List | 详情参考attributes | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
name | String | 资源名称 | 2.4.0 |
ordinal | int | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
name | String | 资源名称 | 2.4.0 |
ordinal | int | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
organizationUuid | String | 2.4.0 | |
uuid | String | 资源的UUID,唯一标示该资源 | 2.4.0 |
name | String | 资源名称 | 2.4.0 |
value | String | 2.4.0 | |
type | AttributeType | 详情参考type | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
name | String | 资源名称 | 2.4.0 |
ordinal | int | 2.4.0 |
CreateIAM2OrganizationAction action = new CreateIAM2OrganizationAction();
action.name = "org1";
action.type = "Company";
action.parentUuid = "1d650e96108c47a297a7529d45afef97";
action.attributes = asList([name:some-attribute-name, value:attribute-value]);
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
CreateIAM2OrganizationAction.Result res = action.call();
CreateIAM2OrganizationAction action = CreateIAM2OrganizationAction()
action.name = "org1"
action.type = "Company"
action.parentUuid = "a7faaafa84ae4345957fd7e61434481b"
action.attributes = [[name:some-attribute-name, value:attribute-value]]
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
CreateIAM2OrganizationAction.Result res = action.call()
DELETE /v1/iam2/organizations/{uuid}?deleteMode={deleteMode}
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/iam2/organizations/b30d1f09a0df3f708bba1208ade2aa90?deleteMode=Permissive
名字 | 类型 | 位置 | 描述 | 可选值 | 起始版本 |
---|---|---|---|---|---|
uuid | String | url | 资源的UUID,唯一标示该资源 | 2.4.0 | |
deleteMode (可选) | String | url | 2.4.0 | ||
systemTags (可选) | List | body | 2.4.0 | ||
userTags (可选) | List | body | 2.4.0 |
该API成功时返回一个空的JSON结构{}
,出错时返回的JSON结构包含一个error字段,例如:
{
"error": {
"code": "SYS.1001",
"description": "A message or a operation timeout",
"details": "Create VM on KVM timeout after 300s"
}
}
DeleteIAM2OrganizationAction action = new DeleteIAM2OrganizationAction();
action.uuid = "b30d1f09a0df3f708bba1208ade2aa90";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
DeleteIAM2OrganizationAction.Result res = action.call();
DeleteIAM2OrganizationAction action = DeleteIAM2OrganizationAction()
action.uuid = "b30d1f09a0df3f708bba1208ade2aa90"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
DeleteIAM2OrganizationAction.Result res = action.call()
GET zstack/v1/iam2/organizations
GET zstack/v1/iam2/organizations/{uuid}
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/iam2/organizations?q=name=test
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X GET http://localhost:8080/zstack/v1/iam2/organizations/e09768162e273e56aaffa649184585e3
可查询字段
运行zstack-cli命令行工具,输入QueryIAM2Organization并按Tab键查看所有可查询字段以及可跨表查询的资源名。
{
"inventories": [
{
"uuid": "22e5c247ec02478286a1fccfdaa9a2d3",
"name": "org1",
"state": "Enabled",
"type": "Company",
"parentUuid": "3714d14d9b78487e983236a5ae65a190",
"attributes": [
{
"uuid": "ee3bccfce21243cfbfc03cce1118b929",
"name": "attribute-name",
"value": "attribute-value",
"type": "Customized"
}
]
}
]
}
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
error | ErrorCode | 错误码,若不为null,则表示操作失败, 操作成功时该字段为null。 详情参考error | 2.4.0 |
inventories | List | 详情参考inventories | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
code | String | 错误码号,错误的全局唯一标识,例如SYS.1000, HOST.1001 | 2.4.0 |
description | String | 错误的概要描述 | 2.4.0 |
details | String | 错误的详细信息 | 2.4.0 |
elaboration | String | 保留字段,默认为null | 2.4.0 |
opaque | LinkedHashMap | 保留字段,默认为null | 2.4.0 |
cause | ErrorCode | 根错误,引发当前错误的源错误,若无原错误,该字段为null | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
uuid | String | 资源的UUID,唯一标示该资源 | 2.4.0 |
name | String | 资源名称 | 2.4.0 |
description | String | 资源的详细描述 | 2.4.0 |
createDate | Timestamp | 创建时间 | 2.4.0 |
lastOpDate | Timestamp | 最后一次修改时间 | 2.4.0 |
parentUuid | String | 2.4.0 | |
state | State | 详情参考state | 2.4.0 |
type | OrganizationType | 详情参考type | 2.4.0 |
attributes | List | 详情参考attributes | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
name | String | 资源名称 | 2.4.0 |
ordinal | int | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
name | String | 资源名称 | 2.4.0 |
ordinal | int | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
organizationUuid | String | 2.4.0 | |
uuid | String | 资源的UUID,唯一标示该资源 | 2.4.0 |
name | String | 资源名称 | 2.4.0 |
value | String | 2.4.0 | |
type | AttributeType | 详情参考type | 2.4.0 |
名字 | 类型 | 描述 | 起始版本 |
---|---|---|---|
name | String | 资源名称 | 2.4.0 |
ordinal | int | 2.4.0 |
QueryIAM2OrganizationAction action = new QueryIAM2OrganizationAction();
action.conditions = asList("name=test");
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
QueryIAM2OrganizationAction.Result res = action.call();
QueryIAM2OrganizationAction action = QueryIAM2OrganizationAction()
action.conditions = ["name=test"]
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
QueryIAM2OrganizationAction.Result res = action.call()
学习路径
ZStack Cloud 产品学习路径
快速梳理文档,点击相应文本链接,快速跳转到相应文档的页面,学习 ZStack Cloud 产品。
商务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2商务联系:
sales@zstack.io商务咨询:
400-962-2212 转 1商务联系:
channel@zstack.io商务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2商务联系:
sales@zstack.io商务咨询:
400-962-2212 转 1商务联系:
channel@zstack.io商务咨询:
400-962-2212 转 1商务联系:
channel@zstack.io下载链接已发送至您的邮箱。
如未收到,请查看您的垃圾邮件、订阅邮件、广告邮件。 当您收到电子邮件后,请点击 URL 链接,以完成下载。感谢您使用 ZStack 产品和服务。
成功提交申请。
我们将安排工作人员尽快与您取得联系。感谢您使用 ZStack 产品和服务。
立即体验
联系我们
回到顶部
商务咨询:
400-962-2212 转 1售后咨询:
400-962-2212 转 2商务联系:
sales@zstack.io成功提交申请。
我们将安排工作人员尽快与您取得联系。感谢您使用 ZStack 产品和服务。