github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/add_management_node_spec.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  import (
     9  	"github.com/vmware/go-vmware-nsxt/manager"
    10  )
    11  
    12  type AddManagementNodeSpec struct {
    13  
    14  	// The certificate thumbprint of the remote node.
    15  	CertThumbprint string `json:"cert_thumbprint,omitempty"`
    16  
    17  	MpaMsgClientInfo *manager.MsgClientInfo `json:"mpa_msg_client_info,omitempty"`
    18  
    19  	// The password to be used to authenticate with the remote node.
    20  	Password string `json:"password"`
    21  
    22  	// The host address of the remote node to which to send this join request.
    23  	RemoteAddress string `json:"remote_address"`
    24  
    25  	// must be set to AddManagementNodeSpec
    26  	Type_ string `json:"type"`
    27  
    28  	// The username to be used to authenticate with the remote node.
    29  	UserName string `json:"user_name"`
    30  }