nvmet.namespace.query¶
No Additional Items
Tuple Validation
Parameter 1: filters
filters
Type: array Default: []List of filters for query results. See API documentation for "Query Methods" for more guidance.
No Additional ItemsEach item of this array must be:
[
[
"name",
"=",
"bob"
]
]
[
[
"OR",
[
[
"name",
"=",
"bob"
],
[
"name",
"=",
"larry"
]
]
]
]
Parameter 2: options
options
Type: objectQuery options including pagination, ordering, and additional parameters.
No Additional PropertiesExtra
Type: object Default: {}Extra options are defined on a per-endpoint basis and are described in the documentation for the associated query method.
Order By
Type: array of string Default: []An array of field names describing the manner in which query results should be ordered. The field names may also have one of more of the following special prefixes: - (reverse sort direction), nulls_first: (place any null values at the head of the results list), nulls_last: (place any null values at the tail of the results list).
Each item of this array must be:
[
"size",
"-devname",
"nulls_first:-expiretime"
]
Select
Type: array Default: []An array of field names specifying the exact fields to include in the query return. The dot character . may be used to explicitly select only subkeys of the query result.
Each item of this array must be:
No Additional Items
Each item of this array must be:
[
"username",
"Authentication.status"
]
Count
Type: boolean Default: falseReturn a numeric value representing the number of items that match the specified query-filters.
Get
Type: boolean Default: falseReturn the JSON object of the first result matching the specified query-filters. The query fails if there specified query-filters return no results.
Offset
Type: integer Default: 0This specifies the beginning offset of the results array. When combined with the limit query-option it may be used to implement pagination of large results arrays. WARNING: some query methods provide volatile results and the onus is on the developer to understand whether pagination is appropriate for a particular query API method.
Value must be greater or equal to 0
Limit
Type: integer Default: 0This specifies the maximum number of results matching the specified query-filters to return. When combined wtih the offset query-option it may be used to implement pagination of large results arrays.
WARNING: Some query methods provide volatile results and the onus is on the developer to understand whether pagination is appropriate for a particular query API method.
Value must be greater or equal to 0 and lesser or equal to 10000
Force Sql Filters
Type: boolean Default: falseForce use of SQL for result filtering to reduce response time. May not work for all methods.
Result
No Additional Items
Each item of this array must be:
NVMetNamespaceEntry
Type: objectNo Additional Properties
Id
Type: integerUnique identifier for the NVMe-oF namespace.
Nsid
Default: nullNamespace ID (NSID).
Each namespace within a subsystem has an associated NSID, unique within that subsystem.
If not supplied during namespace creation then the next available NSID will be used.
Value must be greater or equal to 1 and strictly lesser than 4294967295
NVMe-oF subsystem that contains this namespace.
Device Type
Type: enum (of string)Type of device (or file) used to implement the namespace.
Must be one of:
- "ZVOL"
- "FILE"
Device Path
Type: stringPath to the device or file being used to implement the namespace.
When device_type is:
- "ZVOL":
device_pathis e.g. "zvol/poolname/zvolname" - "FILE":
device_pathis e.g. "/mnt/poolmnt/path/to/file". The file will be created if necessary.
Must be at least 1 characters long
Dataset
The ZFS dataset containing the file-based namespace (e.g., 'tank/nvmet'). Returns null for ZVOL-based namespaces or if the FILE path cannot be resolved yet (encrypted dataset not unlocked, etc.). This is a read-only field automatically populated from "device_path".
Relative Path
The path of the file-based namespace relative to the dataset mountpoint (e.g., 'namespaces/ns1.img'). An empty string indicates the file is at the dataset root. Returns null for ZVOL-based namespaces or if the path cannot be resolved yet. This is a read-only field automatically populated from "device_path".
Filesize
Default: nullWhen device_type is "FILE" then this will be the size of the file in bytes.
Device Uuid
Type: stringUnique device identifier for the namespace.
Must be at least 1 characters long
Device Nguid
Type: stringNamespace Globally Unique Identifier for the namespace.
Must be at least 1 characters long
Enabled
Type: boolean Default: trueIf enabled is False then the namespace will not be accessible.
Some namespace configuration changes are blocked when that namespace is enabled.
Locked
Reflect the locked state of the namespace.
The underlying device_path could be an encrypted ZVOL, or a file on an encrypted dataset. In either case locked will be True if the underlying entity is locked.
NVMetNamespaceEntry
Type: objectNo Additional Properties
Id
Type: integerUnique identifier for the NVMe-oF namespace.
Nsid
Default: nullNamespace ID (NSID).
Each namespace within a subsystem has an associated NSID, unique within that subsystem.
If not supplied during namespace creation then the next available NSID will be used.
Value must be greater or equal to 1 and strictly lesser than 4294967295
NVMe-oF subsystem that contains this namespace.
Device Type
Type: enum (of string)Type of device (or file) used to implement the namespace.
Must be one of:
- "ZVOL"
- "FILE"
Device Path
Type: stringPath to the device or file being used to implement the namespace.
When device_type is:
- "ZVOL":
device_pathis e.g. "zvol/poolname/zvolname" - "FILE":
device_pathis e.g. "/mnt/poolmnt/path/to/file". The file will be created if necessary.
Must be at least 1 characters long
Dataset
The ZFS dataset containing the file-based namespace (e.g., 'tank/nvmet'). Returns null for ZVOL-based namespaces or if the FILE path cannot be resolved yet (encrypted dataset not unlocked, etc.). This is a read-only field automatically populated from "device_path".
Relative Path
The path of the file-based namespace relative to the dataset mountpoint (e.g., 'namespaces/ns1.img'). An empty string indicates the file is at the dataset root. Returns null for ZVOL-based namespaces or if the path cannot be resolved yet. This is a read-only field automatically populated from "device_path".
Filesize
Default: nullWhen device_type is "FILE" then this will be the size of the file in bytes.
Device Uuid
Type: stringUnique device identifier for the namespace.
Must be at least 1 characters long
Device Nguid
Type: stringNamespace Globally Unique Identifier for the namespace.
Must be at least 1 characters long
Enabled
Type: boolean Default: trueIf enabled is False then the namespace will not be accessible.
Some namespace configuration changes are blocked when that namespace is enabled.
Locked
Reflect the locked state of the namespace.
The underlying device_path could be an encrypted ZVOL, or a file on an encrypted dataset. In either case locked will be True if the underlying entity is locked.
No Additional Items
Each item of this array must be:
Required roles: SHARING_NVME_TARGET_READ