github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/api/cloudcontroller/ccv2/docker_credentials.go (about)

     1  package ccv2
     2  
     3  // DockerCredentials are the authentication credentials to pull a docker image
     4  // from it's repository.
     5  type DockerCredentials struct {
     6  	// Username is the username for a user that has access to a given docker
     7  	// image.
     8  	Username string `json:"username,omitempty"`
     9  
    10  	// Password is the password for the user.
    11  	Password string `json:"password,omitempty"`
    12  }