# Get all mounts Endpoint: GET /mount-filesystem Version: 5.1.41 Security: api_key ## Query parameters: - `page_number` (integer) The page number for which to get mount information. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"mountName":"my_mount","hostAddress":"some.host.com","mountPath":"/path/to/my/mount","type":"NFS4","options":"comma,delimited,options,list","connectOnStartup":true}] - `responseList.mountId` (integer) The ID number of the mount. This field is auto-generated by the Masking Engine. - `responseList.mountName` (string, required) The name of the mount. This field must be unique. Example: "my_mount" - `responseList.hostAddress` (string, required) The host address of the server. This field cannot be changed. Example: "some.host.com" - `responseList.mountPath` (string, required) The path to the directory on the filesystem to mount. This field cannot be changed. Example: "/path/to/my/mount" - `responseList.type` (string, required) The type of filesystem. This field cannot be changed. Enum: "CIFS", "NFS3", "NFS4", "EXTERNAL" - `responseList.connectOnStartup` (boolean) This field determines whether this filesystem will be automatically connected (mounted) on startup of the masking engine. Note that all mounts will be disconnected on shutdown of the masking engine. Example: true - `responseList.options` (string) The options for mount. The endpoint will return all default options and user specified options. Example: "comma,delimited,options,list" - `responseList.status` (string) The connection status for mount. This field is automatically managed by the masking engine. Enum: "ACTIVE", "DISCONNECTED" - `responseList.mountDevice` (string) The mounted device IP/URI and the local path on that device. Automatically auto-discovered in containerized masking environment. The field is empty when running in the Delphix Virtual Appliance. This field cannot be changed. - `responseList.localMountPath` (string) The path to the mounted local directory on the containerized masking engine. Automatically auto-discovered in containerized masking environment. The field is empty when running in the Delphix Virtual Appliance. This field cannot be changed. ## Response 400 fields ## Response 401 fields ## Response 404 fields