Remove duplicate ExportOptions objects

There should only be a single type unversioned.ExportOptions that is
referenced from multiple group versions.
This commit is contained in:
Clayton Coleman
2016-11-27 18:53:00 -05:00
parent 545f749a0d
commit c43bdfbf0d
4 changed files with 2 additions and 30 deletions

View File

@@ -69,9 +69,9 @@ type ListMeta struct {
// ExportOptions is the query options to the standard REST get call.
type ExportOptions struct {
TypeMeta `json:",inline"`
// Should this value be exported. Export strips fields that a user can not specify.`
// Should this value be exported. Export strips fields that a user can not specify.
Export bool `json:"export" protobuf:"varint,1,opt,name=export"`
// Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'
// Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
Exact bool `json:"exact" protobuf:"varint,2,opt,name=exact"`
}