github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/node_auth_provider_vidm_properties.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 // Node AAA provider vIDM properties 9 type NodeAuthProviderVidmProperties struct { 10 11 // vIDM client id 12 ClientId string `json:"client_id"` 13 14 // vIDM client secret 15 ClientSecret string `json:"client_secret,omitempty"` 16 17 // Fully Qualified Domain Name(FQDN) of vIDM 18 HostName string `json:"host_name"` 19 20 // host name to use when creating the redirect URL for clients to follow after authenticating to vIDM 21 NodeHostName string `json:"node_host_name"` 22 23 // Hexadecimal SHA256 hash of the vIDM server's X.509 certificate 24 Thumbprint string `json:"thumbprint"` 25 26 // vIDM enable flag 27 VidmEnable bool `json:"vidm_enable,omitempty"` 28 }