github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/resources/user_resource.go (about)

     1  package resources
     2  
     3  // User represents a Cloud Controller User.
     4  type User struct {
     5  	// GUID is the unique user identifier.
     6  	GUID             string `json:"guid"`
     7  	Username         string `json:"username"`
     8  	PresentationName string `json:"presentation_name"`
     9  	Origin           string `json:"origin"`
    10  }
    11  
    12  type K8sUser struct {
    13  	Name string `json:"name"`
    14  	Kind string `json:"kind"`
    15  }