Endpoint

/v1/file-system/settings/notify

GET

Get FS notify related settings.

Parameters

This resource has no parameters.

Response

Codes

Code Description
200 Return value on success

Schema

{
  "description": "fs_notify_config",
  "type": "object",
  "properties": {
    "recursive_mode": {
      "type": "string",
      "enum": [
        "DISABLED_ERROR",
        "DISABLED_IGNORE",
        "ENABLED"
      ],
      "description": "recursive_mode:\n * `DISABLED_ERROR` - FS_NOTIFY_RECURSIVE_MODE_DISABLED_ERROR,\n * `DISABLED_IGNORE` - FS_NOTIFY_RECURSIVE_MODE_DISABLED_IGNORE,\n * `ENABLED` - FS_NOTIFY_RECURSIVE_MODE_ENABLED"
    }
  }
}

PUT

Set FS notify related settings.

Parameters

Name Description Required
If-Match ETag for expected version No

Request

Schema

{
  "description": "fs_notify_config",
  "type": "object",
  "properties": {
    "recursive_mode": {
      "type": "string",
      "enum": [
        "DISABLED_ERROR",
        "DISABLED_IGNORE",
        "ENABLED"
      ],
      "description": "recursive_mode:\n * `DISABLED_ERROR` - FS_NOTIFY_RECURSIVE_MODE_DISABLED_ERROR,\n * `DISABLED_IGNORE` - FS_NOTIFY_RECURSIVE_MODE_DISABLED_IGNORE,\n * `ENABLED` - FS_NOTIFY_RECURSIVE_MODE_ENABLED"
    }
  }
}

Response

Codes

Code Description
200 Return value on success

Schema

{
  "description": "fs_notify_config",
  "type": "object",
  "properties": {
    "recursive_mode": {
      "type": "string",
      "enum": [
        "DISABLED_ERROR",
        "DISABLED_IGNORE",
        "ENABLED"
      ],
      "description": "recursive_mode:\n * `DISABLED_ERROR` - FS_NOTIFY_RECURSIVE_MODE_DISABLED_ERROR,\n * `DISABLED_IGNORE` - FS_NOTIFY_RECURSIVE_MODE_DISABLED_IGNORE,\n * `ENABLED` - FS_NOTIFY_RECURSIVE_MODE_ENABLED"
    }
  }
}