Files
go/kubernetes/client/v1_object_field_selector.go

21 lines
598 B
Go
Raw Normal View History

/*
* 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
// ObjectFieldSelector selects an APIVersioned field of an object.
type V1ObjectFieldSelector struct {
// Version of the schema the FieldPath is written in terms of, defaults to \"v1\".
ApiVersion string `json:"apiVersion,omitempty"`
// Path of the field to select in the specified API version.
FieldPath string `json:"fieldPath"`
}