Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APIService ¶
type APIService struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // metadata Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"` // Spec contains information for locating and communicating with a server Spec *APIServiceSpec `json:"spec,omitempty"` // Status contains derived information about an API server Status *APIServiceStatus `json:"status,omitempty"` }
APIService APIService represents a server for a particular GroupVersion. Name must be "version.group".
swagger:model APIService
func (APIService) MarshalEasyJSON ¶
func (v APIService) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (APIService) MarshalJSON ¶
func (v APIService) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*APIService) UnmarshalEasyJSON ¶
func (v *APIService) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*APIService) UnmarshalJSON ¶
func (v *APIService) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type APIServiceCondition ¶
type APIServiceCondition struct { // Last time the condition transitioned from one status to another. LastTransitionTime *apimachinery_pkg_apis_meta_v1.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. // Required: true Status *string `json:"status"` // Type is the type of the condition. // Required: true Type *string `json:"type"` }
APIServiceCondition APIServiceCondition describes the state of an APIService at a particular point
swagger:model APIServiceCondition
func (APIServiceCondition) MarshalEasyJSON ¶
func (v APIServiceCondition) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (APIServiceCondition) MarshalJSON ¶
func (v APIServiceCondition) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*APIServiceCondition) UnmarshalEasyJSON ¶
func (v *APIServiceCondition) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*APIServiceCondition) UnmarshalJSON ¶
func (v *APIServiceCondition) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type APIServiceList ¶
type APIServiceList struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // items // Required: true Items []*APIService `json:"items"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // metadata Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"` }
APIServiceList APIServiceList is a list of APIService objects.
swagger:model APIServiceList
func (APIServiceList) MarshalEasyJSON ¶
func (v APIServiceList) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (APIServiceList) MarshalJSON ¶
func (v APIServiceList) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*APIServiceList) UnmarshalEasyJSON ¶
func (v *APIServiceList) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*APIServiceList) UnmarshalJSON ¶
func (v *APIServiceList) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type APIServiceSpec ¶
type APIServiceSpec struct { // CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used. // Format: byte CaBundle strfmt.Base64 `json:"caBundle,omitempty"` // Group is the API group name this server hosts Group string `json:"group,omitempty"` // GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s // Required: true GroupPriorityMinimum *int32 `json:"groupPriorityMinimum"` // InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. InsecureSkipTLSVerify bool `json:"insecureSkipTLSVerify,omitempty"` // Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled. Service *ServiceReference `json:"service,omitempty"` // Version is the API version this server hosts. For example, "v1" Version string `json:"version,omitempty"` // VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. // Required: true VersionPriority *int32 `json:"versionPriority"` }
APIServiceSpec APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.
swagger:model APIServiceSpec
func (APIServiceSpec) MarshalEasyJSON ¶
func (v APIServiceSpec) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (APIServiceSpec) MarshalJSON ¶
func (v APIServiceSpec) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*APIServiceSpec) UnmarshalEasyJSON ¶
func (v *APIServiceSpec) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*APIServiceSpec) UnmarshalJSON ¶
func (v *APIServiceSpec) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type APIServiceStatus ¶
type APIServiceStatus struct { // Current service state of apiService. Conditions []*APIServiceCondition `json:"conditions,omitempty"` }
APIServiceStatus APIServiceStatus contains derived information about an API server
swagger:model APIServiceStatus
func (APIServiceStatus) MarshalEasyJSON ¶
func (v APIServiceStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (APIServiceStatus) MarshalJSON ¶
func (v APIServiceStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*APIServiceStatus) UnmarshalEasyJSON ¶
func (v *APIServiceStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*APIServiceStatus) UnmarshalJSON ¶
func (v *APIServiceStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ServiceReference ¶
type ServiceReference struct { // Name is the name of the service Name string `json:"name,omitempty"` // Namespace is the namespace of the service Namespace string `json:"namespace,omitempty"` // If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). Port int32 `json:"port,omitempty"` }
ServiceReference ServiceReference holds a reference to Service.legacy.k8s.io
swagger:model ServiceReference
func (ServiceReference) MarshalEasyJSON ¶
func (v ServiceReference) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ServiceReference) MarshalJSON ¶
func (v ServiceReference) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ServiceReference) UnmarshalEasyJSON ¶
func (v *ServiceReference) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ServiceReference) UnmarshalJSON ¶
func (v *ServiceReference) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface