Skip to content

Latest commit

 

History

History
executable file
·
33 lines (27 loc) · 945 Bytes

Disk.md

File metadata and controls

executable file
·
33 lines (27 loc) · 945 Bytes

Disk

Properties

Name Type Description Notes
Percent Decimal Percentage of used memory [optional]
Total Int32 Total disk space (bytes) [optional]
Used Int32 Used disk space (bytes) [optional]
Free Int32 Free disk space (bytes) [optional]
Device String [optional]
Mountpoint String [optional]
Filesystem String [optional]

Examples

  • Prepare the resource
$Disk = Initialize-GrommunioAdminDisk  -Percent null `
 -Total null `
 -Used null `
 -Free null `
 -Device null `
 -Mountpoint null `
 -Filesystem null
  • Convert the resource to JSON
$Disk | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]