github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/msg_client_info.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 manager 7 8 type MsgClientInfo struct { 9 10 // Account name for the messaging client. Identifies the client on the management plane message bus. 11 AccountName string `json:"account_name,omitempty"` 12 13 // Messaging client's certificate. Used to authenticate to the control plane messaging endpoint. 14 Certificate string `json:"certificate,omitempty"` 15 16 // Messaging client's secret. Used to authenticate to the management plane messaging broker. 17 SharedSecret string `json:"shared_secret,omitempty"` 18 }