Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
24 lines
760 B
Go
24 lines
760 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
|
|
|
|
// CrossVersionObjectReference contains enough information to let you identify the referred resource.
|
|
type V2beta1CrossVersionObjectReference struct {
|
|
|
|
// API version of the referent
|
|
ApiVersion string `json:"apiVersion,omitempty"`
|
|
|
|
// Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"
|
|
Kind string `json:"kind"`
|
|
|
|
// Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
|
|
Name string `json:"name"`
|
|
}
|