github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/support_bundle_request.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  type SupportBundleRequest struct {
     9  
    10  	// Bundle should include content of specified type
    11  	ContentFilters []string `json:"content_filters,omitempty"`
    12  
    13  	// Include log files with modified times not past the age limit in days
    14  	LogAgeLimit int64 `json:"log_age_limit,omitempty"`
    15  
    16  	// List of cluster/fabric node UUIDs processed in specified order
    17  	Nodes []string `json:"nodes"`
    18  
    19  	// Remote file server to copy bundles to, bundle in response body if not specified
    20  	RemoteFileServer *SupportBundleRemoteFileServer `json:"remote_file_server,omitempty"`
    21  }