Endpoint

/v2/network/connections/

GET

Return a list of NFS and SMB protocol connections to each node

Parameters

This resource has no parameters.

Response

Codes

Code Description
200 Return value on success

Schema

{
  "type": "array",
  "items": {
    "description": "api_connection_list_data",
    "type": "object",
    "properties": {
      "id": {
        "description": "id",
        "type": "number"
      },
      "connections": {
        "type": "array",
        "items": {
          "description": "connections",
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "CONNECTION_TYPE_NFS",
                "CONNECTION_TYPE_SMB",
                "CONNECTION_TYPE_FTP",
                "CONNECTION_TYPE_REST",
                "CONNECTION_TYPE_S3"
              ],
              "description": "type:\n * `CONNECTION_TYPE_FTP` - CONNECTION_TYPE_FTP,\n * `CONNECTION_TYPE_NFS` - CONNECTION_TYPE_NFS,\n * `CONNECTION_TYPE_REST` - CONNECTION_TYPE_REST,\n * `CONNECTION_TYPE_S3` - CONNECTION_TYPE_S3,\n * `CONNECTION_TYPE_SMB` - CONNECTION_TYPE_SMB"
            },
            "network_address": {
              "description": "network_address",
              "type": "string"
            },
            "tenant_id": {
              "description": "tenant_id",
              "type": "number"
            }
          }
        }
      }
    }
  }
}