DataSphere API v2, gRPC: ProjectService.ResizeDisk
Resizes project disk
gRPC request
rpc ResizeDisk (ResizeProjectDiskRequest) returns (operation.Operation)
ResizeProjectDiskRequest
{
"projectId": "string",
"newDiskSizeGb": "int64"
}
Field |
Description |
projectId |
string Required field. ID of the project. |
newDiskSizeGb |
int64 Set new size project disk in gigabytes. |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"projectId": "string",
"oldDiskSizeGb": "int64",
"newDiskSizeGb": "int64"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"projectId": "string",
"diskSizeGb": "double",
"diskUsedGb": "double",
"detailedUsage": {
"userDataGb": "double",
"packagesGb": "double",
"systemDataGb": "double",
"freeSpaceGb": "double"
}
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
ResizeProjectDiskMetadata
Field |
Description |
projectId |
string ID of the project which resized project disk. |
oldDiskSizeGb |
int64 Old size project disk in gigabytes. |
newDiskSizeGb |
int64 New size project disk in gigabytes. |
DiskInfo
Field |
Description |
projectId |
string ID of the project. |
diskSizeGb |
double Project disk size in gigabytes. |
diskUsedGb |
double Used project disk in gigabytes. |
detailedUsage |
Detailed information about the project disk. |
DetailedDiskInfo
Field |
Description |
userDataGb |
double Used project disk for user data in gigabytes. |
packagesGb |
double Used project disk for packages in gigabytes. |
systemDataGb |
double Used project disk for system data in gigabytes. |
freeSpaceGb |
double Free space project disk in gigabytes. |