github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/remote_file_server.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 administration 7 8 // Remote file server 9 type RemoteFileServer struct { 10 11 // Remote server directory to copy bundle files to 12 DirectoryPath string `json:"directory_path"` 13 14 // Server port 15 Port int64 `json:"port"` 16 17 // Protocol to use to copy file 18 Protocol *FileTransferProtocol `json:"protocol"` 19 20 // Remote server hostname or IP address 21 Server string `json:"server"` 22 }