Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
33 lines
858 B
Go
33 lines
858 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"
|
|
)
|
|
|
|
type V1ApiServiceCondition struct {
|
|
|
|
// Last time the condition transitioned from one status to another.
|
|
LastTransitionTime time.Time `json:"lastTransitionTime,omitempty"`
|
|
|
|
// Human-readable message indicating details about last transition.
|
|
Message string `json:"message,omitempty"`
|
|
|
|
// Unique, one-word, CamelCase reason for the condition's last transition.
|
|
Reason string `json:"reason,omitempty"`
|
|
|
|
// Status is the status of the condition. Can be True, False, Unknown.
|
|
Status string `json:"status"`
|
|
|
|
// Type is the type of the condition.
|
|
Type_ string `json:"type"`
|
|
}
|