github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/supportbundle/support_bundle_remote_file_server.go (about) 1 /* 2 * NSX-T Manager API 3 * 4 * VMware NSX-T Manager REST API 5 * 6 * API version: 3.2.0.0.0 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 10 package supportbundle 11 12 // Remote file server 13 type SupportBundleRemoteFileServer struct { 14 // Remote server directory to copy bundle files to 15 DirectoryPath string `json:"directory_path"` 16 // Uploads to the remote file server performed by the manager 17 ManagerUploadOnly bool `json:"manager_upload_only,omitempty"` 18 // Server port 19 Port int64 `json:"port,omitempty"` 20 Protocol *SupportBundleFileTransferProtocol `json:"protocol"` 21 // Remote server hostname or IP address 22 Server string `json:"server"` 23 }