Files
go/kubernetes/client/v1_daemon_set_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

34 lines
891 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"
)
// DaemonSetCondition describes the state of a DaemonSet at a certain point.
type V1DaemonSetCondition struct {
// Last time the condition transitioned from one status to another.
LastTransitionTime time.Time `json:"lastTransitionTime,omitempty"`
// A human readable message indicating details about the transition.
Message string `json:"message,omitempty"`
// The reason for the condition's last transition.
Reason string `json:"reason,omitempty"`
// Status of the condition, one of True, False, Unknown.
Status string `json:"status"`
// Type of DaemonSet condition.
Type_ string `json:"type"`
}