Skip to content

Latest commit

 

History

History
executable file
·
33 lines (27 loc) · 1.04 KB

Memory.md

File metadata and controls

executable file
·
33 lines (27 loc) · 1.04 KB

Memory

Properties

Name Type Description Notes
Percent Decimal Percent of used memory [optional]
Total Int32 Total memory (bytes) [optional]
Free Int32 Unused memory (bytes) [optional]
Used Int32 Memory used by applications (bytes) [optional]
Buffer Int32 Memory used for buffers (bytes) [optional]
Cache Int32 Memory used for cached data (bytes) [optional]
Available AnyType Memory that is available for applications (bytes) [optional]

Examples

  • Prepare the resource
$Memory = Initialize-GrommunioAdminMemory  -Percent null `
 -Total null `
 -Free null `
 -Used null `
 -Buffer null `
 -Cache null `
 -Available null
  • Convert the resource to JSON
$Memory | ConvertTo-JSON

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