Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
25 lines
660 B
Go
25 lines
660 B
Go
/*
|
|
* Kubernetes
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: v1.10.0
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package client
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// VolumeError captures an error encountered during a volume operation.
|
|
type V1alpha1VolumeError struct {
|
|
|
|
// String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.
|
|
Message string `json:"message,omitempty"`
|
|
|
|
// Time the error was encountered.
|
|
Time time.Time `json:"time,omitempty"`
|
|
}
|