Files
go/kubernetes/client/v1beta1_api_service_condition.go
Haowei Cai 6181687d2e Generated API change for kubernetes 1.10
Settings:
    export KUBERNETES_BRANCH="release-1.10"
    export CLIENT_VERSION="0.1.0a1"
    export PACKAGE_NAME="client"
2018-03-21 14:15:19 -07:00

33 lines
863 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 V1beta1ApiServiceCondition 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"`
}