Bumping k8s dependencies to 1.13
This commit is contained in:
72
vendor/google.golang.org/genproto/googleapis/genomics/v1/readgroupset.pb.go
generated
vendored
72
vendor/google.golang.org/genproto/googleapis/genomics/v1/readgroupset.pb.go
generated
vendored
@@ -3,17 +3,25 @@
|
||||
|
||||
package genomics
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import google_protobuf3 "github.com/golang/protobuf/ptypes/struct"
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
_struct "github.com/golang/protobuf/ptypes/struct"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// A read group set is a logical collection of read groups, which are
|
||||
// collections of reads produced by a sequencer. A read group set typically
|
||||
// models reads corresponding to one sample, sequenced one way, and aligned one
|
||||
@@ -27,27 +35,50 @@ var _ = math.Inf
|
||||
// Genomics](https://cloud.google.com/genomics/fundamentals-of-google-genomics)
|
||||
type ReadGroupSet struct {
|
||||
// The server-generated read group set ID, unique for all read group sets.
|
||||
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
||||
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||
// The dataset to which this read group set belongs.
|
||||
DatasetId string `protobuf:"bytes,2,opt,name=dataset_id,json=datasetId" json:"dataset_id,omitempty"`
|
||||
DatasetId string `protobuf:"bytes,2,opt,name=dataset_id,json=datasetId,proto3" json:"dataset_id,omitempty"`
|
||||
// The reference set to which the reads in this read group set are aligned.
|
||||
ReferenceSetId string `protobuf:"bytes,3,opt,name=reference_set_id,json=referenceSetId" json:"reference_set_id,omitempty"`
|
||||
ReferenceSetId string `protobuf:"bytes,3,opt,name=reference_set_id,json=referenceSetId,proto3" json:"reference_set_id,omitempty"`
|
||||
// The read group set name. By default this will be initialized to the sample
|
||||
// name of the sequenced data contained in this set.
|
||||
Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// The filename of the original source file for this read group set, if any.
|
||||
Filename string `protobuf:"bytes,5,opt,name=filename" json:"filename,omitempty"`
|
||||
Filename string `protobuf:"bytes,5,opt,name=filename,proto3" json:"filename,omitempty"`
|
||||
// The read groups in this set. There are typically 1-10 read groups in a read
|
||||
// group set.
|
||||
ReadGroups []*ReadGroup `protobuf:"bytes,6,rep,name=read_groups,json=readGroups" json:"read_groups,omitempty"`
|
||||
ReadGroups []*ReadGroup `protobuf:"bytes,6,rep,name=read_groups,json=readGroups,proto3" json:"read_groups,omitempty"`
|
||||
// A map of additional read group set information.
|
||||
Info map[string]*google_protobuf3.ListValue `protobuf:"bytes,7,rep,name=info" json:"info,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
||||
Info map[string]*_struct.ListValue `protobuf:"bytes,7,rep,name=info,proto3" json:"info,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ReadGroupSet) Reset() { *m = ReadGroupSet{} }
|
||||
func (m *ReadGroupSet) String() string { return proto.CompactTextString(m) }
|
||||
func (*ReadGroupSet) ProtoMessage() {}
|
||||
func (*ReadGroupSet) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{0} }
|
||||
func (m *ReadGroupSet) Reset() { *m = ReadGroupSet{} }
|
||||
func (m *ReadGroupSet) String() string { return proto.CompactTextString(m) }
|
||||
func (*ReadGroupSet) ProtoMessage() {}
|
||||
func (*ReadGroupSet) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_976a96d3fd28f245, []int{0}
|
||||
}
|
||||
|
||||
func (m *ReadGroupSet) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ReadGroupSet.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ReadGroupSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ReadGroupSet.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ReadGroupSet) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ReadGroupSet.Merge(m, src)
|
||||
}
|
||||
func (m *ReadGroupSet) XXX_Size() int {
|
||||
return xxx_messageInfo_ReadGroupSet.Size(m)
|
||||
}
|
||||
func (m *ReadGroupSet) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ReadGroupSet.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ReadGroupSet proto.InternalMessageInfo
|
||||
|
||||
func (m *ReadGroupSet) GetId() string {
|
||||
if m != nil {
|
||||
@@ -91,7 +122,7 @@ func (m *ReadGroupSet) GetReadGroups() []*ReadGroup {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ReadGroupSet) GetInfo() map[string]*google_protobuf3.ListValue {
|
||||
func (m *ReadGroupSet) GetInfo() map[string]*_struct.ListValue {
|
||||
if m != nil {
|
||||
return m.Info
|
||||
}
|
||||
@@ -100,11 +131,14 @@ func (m *ReadGroupSet) GetInfo() map[string]*google_protobuf3.ListValue {
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*ReadGroupSet)(nil), "google.genomics.v1.ReadGroupSet")
|
||||
proto.RegisterMapType((map[string]*_struct.ListValue)(nil), "google.genomics.v1.ReadGroupSet.InfoEntry")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("google/genomics/v1/readgroupset.proto", fileDescriptor8) }
|
||||
func init() {
|
||||
proto.RegisterFile("google/genomics/v1/readgroupset.proto", fileDescriptor_976a96d3fd28f245)
|
||||
}
|
||||
|
||||
var fileDescriptor8 = []byte{
|
||||
var fileDescriptor_976a96d3fd28f245 = []byte{
|
||||
// 367 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0x4f, 0x8b, 0xdb, 0x30,
|
||||
0x10, 0xc5, 0xb1, 0xf3, 0xa7, 0xcd, 0xa4, 0x84, 0x54, 0x87, 0x62, 0x4c, 0x03, 0x21, 0x50, 0x08,
|
||||
|
||||
Reference in New Issue
Block a user