Domain name for API request: chdfs.tencentcloudapi.com.
This API is used to create a mount point for a successfully created file system.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: CreateMountPoint. |
Version | Yes | String | Common Params. The value used for this API: 2020-11-12. |
Region | No | String | Common Params. This parameter is not required for this API. |
MountPointName | Yes | String | Mount point name |
FileSystemId | Yes | String | File system ID |
MountPointStatus | Yes | Integer | Mount point status (1: enabled; 2: disabled) |
Parameter Name | Type | Description |
---|---|---|
MountPoint | MountPoint | Mount point |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
This example shows how to create a mount point.
https://chdfs.tencentcloudapi.com/?Action=CreateMountPoint
&MountPointName=test
&FileSystemId=f4mnvilzmdd
&MountPointStatus=1
&<Common request parameters>
{
"Response": {
"MountPoint": {
"MountPointId": "f4mnvilzmdd-Tx5f",
"MountPointName": "test",
"FileSystemId": "f4mnvilzmdd",
"AccessGroupIds": [],
"Status": 1,
"CreateTime": "2019-07-30T18:19:18+08:00"
},
"RequestId": "b3caa32f-5e39-4360-91e4-5724369b78a6"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
FailedOperation | Operation failed. |
InternalError | Internal error. |
InvalidParameter | Incorrect parameter. |
InvalidParameterValue | Incorrect parameter value. |
InvalidParameterValue.InvalidFileSystemId | Incorrect parameter value: FileSystemId. |
InvalidParameterValue.InvalidMountPointName | Incorrect parameter value: MountPointName. |
LimitExceeded | The quota limit is exceeded. |
MissingParameter | Missing parameter. |
ResourceNotFound | The resource does not exist. |
ResourceNotFound.FileSystemNotExists | The file system does not exist. |
ResourceUnavailable | The resource is unavailable. |
UnauthorizedOperation | Unauthorized operation. |
Was this page helpful?