创建PFS实例
更新时间:2024-12-18
描述
创建一个pfs实例,返回分配的pfs id
请求
请求结构
POST /v1/pfs/instance
x-bce-date: 2023-06-09T10:08:22Z
host: pfs.gz.baidubce.com
content-type: application/json
Authorization: authorization string
{
"name": xxx,
"instanceType": instanceType,
"capacity": int(capacity),
"subnetId": subnetId,
"description": desc,
}
请求头域
除公共头域外,无其他特殊头域
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
name | string | 是 | request body | 实例名称 • 长度为1~128个英文或中文字符。 • 必须以大小字母或中文开头。 • 可以包含数字、中文、半角冒号(:)、下划线(_)或者短划线(-) |
instanceType | string | 是 | request body | 可选类型包括:base、basic、baseX、plus、plus2、plusl2X |
capacity | int | 是 | request body | 购买文件系统存储容量大小,详情见容量限制表(单位GB) |
subnetId | string | 是 | request body | 子网短ID |
description | string | 否 | request body | 实例描述 |
tags | List<Tag> | 否 | request body | 实例标签 |
购买不同类型实例的容量限制(单位GB):
console侧展示类型 | OpenApi对应标签 | 可购买最小容量 | 可购买最大容量 | 购买步长 |
---|---|---|---|---|
标准型 | basic | 7168(7T) | 207872(203T) | 7168(7T) |
增强型 | plus | 7168(7T) | 107520(105T) | 3584(3.5T) |
极速型 | base | 51200(50T) | 1048576(1P) | 1024(1T) |
极速型(专区) | baseX | 51200(50T) | 1048576(1P) | 1024(1T) |
极速型L2 | plusl2 | 51200(50T) | 5242880(5P) | 1024(1T) |
极速型L2(专区) | plusl2X | 51200(50T) | 5242880(5P) | 1024(1T) |
响应
返回状态码,成功返回200,失败返回见错误码
返回头域
除公共头域外,无其他特殊头域
返回参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
instanceId | string | 是 | response body | 实例Id |
orderId | string | 是 | response body | 订单id |
示例
请求:
POST /v1/pfs/instance
x-bce-date: 2023-06-09T10:08:22Z
host: pfs.gz.baidubce.com
content-type: application/json
Authorization: authorization string
{
"name": test,
"instanceType": basic,
"capacity": 7168,
"subnetId": sbn-6xba3c6eizh1,
"description": test,
}
响应:
HTTP/1.1 200 OK
x-bce-request-id: 946002ee-cb4f-4aad-b686-5be55df27f09
Date: Wed, 10 Apr 2016 08:26:52 GMT
Transfer-Encoding: chunked
Content-Type: application/json;charset=UTF-8
{
"orderId": "order-xxx",
"instanceId": "pfs-xxx",
}