Compute Cloud API, REST: Filesystem.list
Lists filesystems in the specified folder.
HTTP request
GET https://compute.api.il.nebius.cloud/compute/v1/filesystems
Query parameters
Parameter | Description |
---|---|
folderId | Required. ID of the folder to list filesystems in. To get the folder ID, make a list request. The maximum string length in characters is 50. |
pageSize | The maximum number of results per page to return. If the number of available results is larger than The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set The maximum string length in characters is 100. |
filter | A filter expression that filters resources listed in the response. The expression consists of one or more conditions united by Each condition has the form
The maximum string length in characters is 1000. |
orderBy | By which column the listing should be ordered and in which direction, format is "createdAt desc". "id asc" if omitted. The default sorting order is ascending The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"filesystems": [
{
"id": "string",
"folderId": "string",
"createdAt": "string",
"name": "string",
"description": "string",
"labels": "object",
"typeId": "string",
"zoneId": "string",
"size": "string",
"blockSize": "string",
"status": "string"
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
filesystems[] | object List of filesystems in the specified folder. |
filesystems[]. id |
string ID of the filesystem. Generated at creation time. |
filesystems[]. folderId |
string ID of the folder that the filesystem belongs to. |
filesystems[]. createdAt |
string (date-time) Creation timestamp. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
filesystems[]. name |
string Name of the filesystem. The name is unique within the folder. |
filesystems[]. description |
string Description of the filesystem. |
filesystems[]. labels |
object Filesystem labels as |
filesystems[]. typeId |
string ID of the filesystem type. To get a list of available filesystem types, make a list request. |
filesystems[]. zoneId |
string ID of the availability zone where the filesystem resides. A filesystem can be attached only to instances residing in the same availability zone. |
filesystems[]. size |
string (int64) Size of the filesystem, specified in bytes. |
filesystems[]. blockSize |
string (int64) Block size used for the filesystem, specified in bytes. |
filesystems[]. status |
string Current status of the filesystem.
|
nextPageToken | string Token for getting the next page of the list. If the number of results is greater than the specified pageSize, use Each subsequent page will have its own |