Bumping k8s dependencies to 1.13
This commit is contained in:
127
vendor/google.golang.org/genproto/googleapis/genomics/v1/operations.pb.go
generated
vendored
127
vendor/google.golang.org/genproto/googleapis/genomics/v1/operations.pb.go
generated
vendored
@@ -3,50 +3,81 @@
|
||||
|
||||
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_protobuf5 "github.com/golang/protobuf/ptypes/any"
|
||||
import google_protobuf6 "github.com/golang/protobuf/ptypes/timestamp"
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
any "github.com/golang/protobuf/ptypes/any"
|
||||
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
_ "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
|
||||
|
||||
// Metadata describing an [Operation][google.longrunning.Operation].
|
||||
type OperationMetadata struct {
|
||||
// The Google Cloud Project in which the job is scoped.
|
||||
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId" json:"project_id,omitempty"`
|
||||
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
||||
// The time at which the job was submitted to the Genomics service.
|
||||
CreateTime *google_protobuf6.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime" json:"create_time,omitempty"`
|
||||
CreateTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
||||
// The time at which the job began to run.
|
||||
StartTime *google_protobuf6.Timestamp `protobuf:"bytes,3,opt,name=start_time,json=startTime" json:"start_time,omitempty"`
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time at which the job stopped running.
|
||||
EndTime *google_protobuf6.Timestamp `protobuf:"bytes,4,opt,name=end_time,json=endTime" json:"end_time,omitempty"`
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The original request that started the operation. Note that this will be in
|
||||
// current version of the API. If the operation was started with v1beta2 API
|
||||
// and a GetOperation is performed on v1 API, a v1 request will be returned.
|
||||
Request *google_protobuf5.Any `protobuf:"bytes,5,opt,name=request" json:"request,omitempty"`
|
||||
Request *any.Any `protobuf:"bytes,5,opt,name=request,proto3" json:"request,omitempty"`
|
||||
// Optional event messages that were generated during the job's execution.
|
||||
// This also contains any warnings that were generated during import
|
||||
// or export.
|
||||
Events []*OperationEvent `protobuf:"bytes,6,rep,name=events" json:"events,omitempty"`
|
||||
Events []*OperationEvent `protobuf:"bytes,6,rep,name=events,proto3" json:"events,omitempty"`
|
||||
// This field is deprecated. Use `labels` instead. Optionally provided by the
|
||||
// caller when submitting the request that creates the operation.
|
||||
ClientId string `protobuf:"bytes,7,opt,name=client_id,json=clientId" json:"client_id,omitempty"`
|
||||
ClientId string `protobuf:"bytes,7,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
||||
// Runtime metadata on this Operation.
|
||||
RuntimeMetadata *google_protobuf5.Any `protobuf:"bytes,8,opt,name=runtime_metadata,json=runtimeMetadata" json:"runtime_metadata,omitempty"`
|
||||
RuntimeMetadata *any.Any `protobuf:"bytes,8,opt,name=runtime_metadata,json=runtimeMetadata,proto3" json:"runtime_metadata,omitempty"`
|
||||
// Optionally provided by the caller when submitting the request that creates
|
||||
// the operation.
|
||||
Labels map[string]string `protobuf:"bytes,9,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
||||
Labels map[string]string `protobuf:"bytes,9,rep,name=labels,proto3" json:"labels,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 *OperationMetadata) Reset() { *m = OperationMetadata{} }
|
||||
func (m *OperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*OperationMetadata) ProtoMessage() {}
|
||||
func (*OperationMetadata) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{0} }
|
||||
func (m *OperationMetadata) Reset() { *m = OperationMetadata{} }
|
||||
func (m *OperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*OperationMetadata) ProtoMessage() {}
|
||||
func (*OperationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ab6c330828363542, []int{0}
|
||||
}
|
||||
|
||||
func (m *OperationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_OperationMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *OperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_OperationMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *OperationMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_OperationMetadata.Merge(m, src)
|
||||
}
|
||||
func (m *OperationMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_OperationMetadata.Size(m)
|
||||
}
|
||||
func (m *OperationMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_OperationMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_OperationMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *OperationMetadata) GetProjectId() string {
|
||||
if m != nil {
|
||||
@@ -55,28 +86,28 @@ func (m *OperationMetadata) GetProjectId() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *OperationMetadata) GetCreateTime() *google_protobuf6.Timestamp {
|
||||
func (m *OperationMetadata) GetCreateTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.CreateTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *OperationMetadata) GetStartTime() *google_protobuf6.Timestamp {
|
||||
func (m *OperationMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *OperationMetadata) GetEndTime() *google_protobuf6.Timestamp {
|
||||
func (m *OperationMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *OperationMetadata) GetRequest() *google_protobuf5.Any {
|
||||
func (m *OperationMetadata) GetRequest() *any.Any {
|
||||
if m != nil {
|
||||
return m.Request
|
||||
}
|
||||
@@ -97,7 +128,7 @@ func (m *OperationMetadata) GetClientId() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *OperationMetadata) GetRuntimeMetadata() *google_protobuf5.Any {
|
||||
func (m *OperationMetadata) GetRuntimeMetadata() *any.Any {
|
||||
if m != nil {
|
||||
return m.RuntimeMetadata
|
||||
}
|
||||
@@ -114,27 +145,50 @@ func (m *OperationMetadata) GetLabels() map[string]string {
|
||||
// An event that occurred during an [Operation][google.longrunning.Operation].
|
||||
type OperationEvent struct {
|
||||
// Optional time of when event started.
|
||||
StartTime *google_protobuf6.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime" json:"start_time,omitempty"`
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// Optional time of when event finished. An event can have a start time and no
|
||||
// finish time. If an event has a finish time, there must be a start time.
|
||||
EndTime *google_protobuf6.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime" json:"end_time,omitempty"`
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// Required description of event.
|
||||
Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
|
||||
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *OperationEvent) Reset() { *m = OperationEvent{} }
|
||||
func (m *OperationEvent) String() string { return proto.CompactTextString(m) }
|
||||
func (*OperationEvent) ProtoMessage() {}
|
||||
func (*OperationEvent) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{1} }
|
||||
func (m *OperationEvent) Reset() { *m = OperationEvent{} }
|
||||
func (m *OperationEvent) String() string { return proto.CompactTextString(m) }
|
||||
func (*OperationEvent) ProtoMessage() {}
|
||||
func (*OperationEvent) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ab6c330828363542, []int{1}
|
||||
}
|
||||
|
||||
func (m *OperationEvent) GetStartTime() *google_protobuf6.Timestamp {
|
||||
func (m *OperationEvent) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_OperationEvent.Unmarshal(m, b)
|
||||
}
|
||||
func (m *OperationEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_OperationEvent.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *OperationEvent) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_OperationEvent.Merge(m, src)
|
||||
}
|
||||
func (m *OperationEvent) XXX_Size() int {
|
||||
return xxx_messageInfo_OperationEvent.Size(m)
|
||||
}
|
||||
func (m *OperationEvent) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_OperationEvent.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_OperationEvent proto.InternalMessageInfo
|
||||
|
||||
func (m *OperationEvent) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *OperationEvent) GetEndTime() *google_protobuf6.Timestamp {
|
||||
func (m *OperationEvent) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
@@ -150,12 +204,15 @@ func (m *OperationEvent) GetDescription() string {
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*OperationMetadata)(nil), "google.genomics.v1.OperationMetadata")
|
||||
proto.RegisterMapType((map[string]string)(nil), "google.genomics.v1.OperationMetadata.LabelsEntry")
|
||||
proto.RegisterType((*OperationEvent)(nil), "google.genomics.v1.OperationEvent")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("google/genomics/v1/operations.proto", fileDescriptor3) }
|
||||
func init() {
|
||||
proto.RegisterFile("google/genomics/v1/operations.proto", fileDescriptor_ab6c330828363542)
|
||||
}
|
||||
|
||||
var fileDescriptor3 = []byte{
|
||||
var fileDescriptor_ab6c330828363542 = []byte{
|
||||
// 456 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x41, 0x6f, 0xd3, 0x30,
|
||||
0x14, 0xc7, 0xe5, 0x76, 0x6b, 0x9b, 0x17, 0x89, 0x0d, 0x6b, 0x42, 0xa1, 0x80, 0xa8, 0xca, 0xa5,
|
||||
|
||||
Reference in New Issue
Block a user