创建项目
更新时间:2020-07-09
接口描述
本接口用于创建IDaaS项目,注意项目名和项目域名前缀在百度云须唯一
请求结构
POST /v{version}/project HTTP/1.1
Host: idaas.baidubce.com
Authorization: authorization string
{
"name":"projectName",
"comment":"comment",
"alias":"alias"
}
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号 |
name | String | 是 | RequestBody参数 | 项目名,长度不超过64位 |
comment | String | 是 | RequestBody参数 | 项目描述,长度不超过128位 |
alias | String | 是 | RequestBody参数 | 项目登录地址前缀,只能由字母和数字组成,长度不超过32位 |
响应头域
除公共头域外,无其它特殊头域。
响应参数
参数名称 | 类型 | 描述 |
---|---|---|
id | String | 项目唯一 id |
name | String | 项目名 |
alias | String | 项目登录地址前缀 |
comment | String | 项目描述 |
status | Integer | 项目状态,1表示启用,0表示禁用,创建成功后默认为启用状态 |
请求示例
POST https://idaas.baidubce.com/v1/project
Host: idaas.baidubce.com
Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2015-08-11T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
{
"name":"test_name",
"comment": "comment_test",
"alias": "test123"
}
响应示例
HTTP/1.1 201 CREATED
Content-Type: application/json;charset=UTF-8
Date: Wed, 08 Jul 2015 03:28:11 GMT
x-bce-request-id: d8752367-38e8-45e4-b4c7-e53be3137ce5
Server: BWS
{
"id": "cadd0f870d304c5fa6eccdd4002145dd",
"name": "test_name",
"alias": "test123",
"comment": "comment_test",
"status": 1
}