github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/support_bundle_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 SupportBundleRemoteFileServer struct {
    10  
    11  	// Remote server directory to copy bundle files to
    12  	DirectoryPath string `json:"directory_path"`
    13  
    14  	// Uploads to the remote file server performed by the manager
    15  	ManagerUploadOnly bool `json:"manager_upload_only,omitempty"`
    16  
    17  	// Server port
    18  	Port int64 `json:"port,omitempty"`
    19  
    20  	// Protocol to use to copy file
    21  	Protocol *SupportBundleFileTransferProtocol `json:"protocol"`
    22  
    23  	// Remote server hostname or IP address
    24  	Server string `json:"server"`
    25  }