github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+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 }