github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/node_file_system_properties.go (about)

     1  /* Copyright © 2017 VMware, Inc. All Rights Reserved.
     2     SPDX-License-Identifier: BSD-2-Clause
     3  
     4     Generated by: https://github.com/swagger-api/swagger-codegen.git */
     5  
     6  package manager
     7  
     8  // File system properties
     9  type NodeFileSystemProperties struct {
    10  
    11  	// File system id
    12  	FileSystem string `json:"file_system,omitempty"`
    13  
    14  	// File system mount
    15  	Mount string `json:"mount,omitempty"`
    16  
    17  	// File system size in kilobytes
    18  	Total int64 `json:"total,omitempty"`
    19  
    20  	// File system type
    21  	Type_ string `json:"type,omitempty"`
    22  
    23  	// Amount of file system used in kilobytes
    24  	Used int64 `json:"used,omitempty"`
    25  }