DataSphere API v2, gRPC: ProjectService.ResizeDisk
Resizes project disk
gRPC request
rpc ResizeDisk (ResizeProjectDiskRequest) returns (operation.Operation)
ResizeProjectDiskRequest
{
"project_id": "string",
"new_disk_size_gb": "int64"
}
Field |
Description |
project_id |
string Required field. ID of the project. |
new_disk_size_gb |
int64 Set new size project disk in gigabytes. |
operation.Operation
{
"id": "string",
"description": "string",
"created_at": "google.protobuf.Timestamp",
"created_by": "string",
"modified_at": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"project_id": "string",
"old_disk_size_gb": "int64",
"new_disk_size_gb": "int64"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"project_id": "string",
"disk_size_gb": "double",
"disk_used_gb": "double",
"detailed_usage": {
"user_data_gb": "double",
"packages_gb": "double",
"system_data_gb": "double",
"free_space_gb": "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. |
created_at |
Creation timestamp. |
created_by |
string ID of the user or service account who initiated the operation. |
modified_at |
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 |
project_id |
string ID of the project which resized project disk. |
old_disk_size_gb |
int64 Old size project disk in gigabytes. |
new_disk_size_gb |
int64 New size project disk in gigabytes. |
DiskInfo
Field |
Description |
project_id |
string ID of the project. |
disk_size_gb |
double Project disk size in gigabytes. |
disk_used_gb |
double Used project disk in gigabytes. |
detailed_usage |
Detailed information about the project disk. |
DetailedDiskInfo
Field |
Description |
user_data_gb |
double Used project disk for user data in gigabytes. |
packages_gb |
double Used project disk for packages in gigabytes. |
system_data_gb |
double Used project disk for system data in gigabytes. |
free_space_gb |
double Free space project disk in gigabytes. |