github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/policy/nsxt_connection_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 policy 7 8 type NsxtConnectionInfo struct { 9 10 // Address of the Enforcement point 11 EnforcementPointAddress string `json:"enforcement_point_address,omitempty"` 12 13 ResourceType string `json:"resource_type"` 14 15 // Password 16 Password string `json:"password"` 17 18 // Thumbprint of EnforcementPoint. sha-256 hash represented in lower case hex. 19 Thumbprint string `json:"thumbprint"` 20 21 // UserName 22 Username string `json:"username"` 23 }