github.com/openshift/installer@v1.4.17/pkg/types/nutanix/metadata.go (about)

     1  package nutanix
     2  
     3  // Metadata contains Nutanix metadata (e.g. for uninstalling the cluster).
     4  type Metadata struct {
     5  	// PrismCentral is the domain name or IP address of the Prism Central.
     6  	PrismCentral string `json:"prismCentral"`
     7  	// Username is the name of the user to use to connect to the Prism Central.
     8  	Username string `json:"username"`
     9  	// Password is the password for the user to use to connect to the Prism Central.
    10  	Password string `json:"password"`
    11  	// Port is the port used to connect to the Prism Central.
    12  	Port string `json:"port"`
    13  }