Patrice Arruda | adfc112 | 2020-04-03 08:40:19 -0700 | [diff] [blame] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 | // source: upload.proto |
| 3 | |
| 4 | package soong_metrics_upload_proto |
| 5 | |
| 6 | import ( |
| 7 | fmt "fmt" |
| 8 | proto "github.com/golang/protobuf/proto" |
| 9 | math "math" |
| 10 | ) |
| 11 | |
| 12 | // Reference imports to suppress errors if they are not otherwise used. |
| 13 | var _ = proto.Marshal |
| 14 | var _ = fmt.Errorf |
| 15 | var _ = math.Inf |
| 16 | |
| 17 | // This is a compile-time assertion to ensure that this generated file |
| 18 | // is compatible with the proto package it is being compiled against. |
| 19 | // A compilation error at this line likely means your copy of the |
| 20 | // proto package needs to be updated. |
| 21 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
| 22 | |
| 23 | type Upload struct { |
| 24 | // The timestamp in milliseconds that the build was created. |
| 25 | CreationTimestampMs *uint64 `protobuf:"varint,1,opt,name=creation_timestamp_ms,json=creationTimestampMs" json:"creation_timestamp_ms,omitempty"` |
| 26 | // The timestamp in milliseconds when the build was completed. |
| 27 | CompletionTimestampMs *uint64 `protobuf:"varint,2,opt,name=completion_timestamp_ms,json=completionTimestampMs" json:"completion_timestamp_ms,omitempty"` |
| 28 | // The branch name. |
| 29 | BranchName *string `protobuf:"bytes,3,opt,name=branch_name,json=branchName" json:"branch_name,omitempty"` |
| 30 | // The target name. |
| 31 | TargetName *string `protobuf:"bytes,4,opt,name=target_name,json=targetName" json:"target_name,omitempty"` |
| 32 | // A list of metrics filepaths to upload. |
Patrice Arruda | 7cc2074 | 2020-06-10 18:48:01 +0000 | [diff] [blame^] | 33 | MetricsFiles []string `protobuf:"bytes,5,rep,name=metrics_files,json=metricsFiles" json:"metrics_files,omitempty"` |
| 34 | // A list of directories to delete after the copy of metrics files |
| 35 | // is completed for uploading. |
| 36 | DirectoriesToDelete []string `protobuf:"bytes,6,rep,name=directories_to_delete,json=directoriesToDelete" json:"directories_to_delete,omitempty"` |
Patrice Arruda | adfc112 | 2020-04-03 08:40:19 -0700 | [diff] [blame] | 37 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 38 | XXX_unrecognized []byte `json:"-"` |
| 39 | XXX_sizecache int32 `json:"-"` |
| 40 | } |
| 41 | |
| 42 | func (m *Upload) Reset() { *m = Upload{} } |
| 43 | func (m *Upload) String() string { return proto.CompactTextString(m) } |
| 44 | func (*Upload) ProtoMessage() {} |
| 45 | func (*Upload) Descriptor() ([]byte, []int) { |
| 46 | return fileDescriptor_91b94b655bd2a7e5, []int{0} |
| 47 | } |
| 48 | |
| 49 | func (m *Upload) XXX_Unmarshal(b []byte) error { |
| 50 | return xxx_messageInfo_Upload.Unmarshal(m, b) |
| 51 | } |
| 52 | func (m *Upload) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 53 | return xxx_messageInfo_Upload.Marshal(b, m, deterministic) |
| 54 | } |
| 55 | func (m *Upload) XXX_Merge(src proto.Message) { |
| 56 | xxx_messageInfo_Upload.Merge(m, src) |
| 57 | } |
| 58 | func (m *Upload) XXX_Size() int { |
| 59 | return xxx_messageInfo_Upload.Size(m) |
| 60 | } |
| 61 | func (m *Upload) XXX_DiscardUnknown() { |
| 62 | xxx_messageInfo_Upload.DiscardUnknown(m) |
| 63 | } |
| 64 | |
| 65 | var xxx_messageInfo_Upload proto.InternalMessageInfo |
| 66 | |
| 67 | func (m *Upload) GetCreationTimestampMs() uint64 { |
| 68 | if m != nil && m.CreationTimestampMs != nil { |
| 69 | return *m.CreationTimestampMs |
| 70 | } |
| 71 | return 0 |
| 72 | } |
| 73 | |
| 74 | func (m *Upload) GetCompletionTimestampMs() uint64 { |
| 75 | if m != nil && m.CompletionTimestampMs != nil { |
| 76 | return *m.CompletionTimestampMs |
| 77 | } |
| 78 | return 0 |
| 79 | } |
| 80 | |
| 81 | func (m *Upload) GetBranchName() string { |
| 82 | if m != nil && m.BranchName != nil { |
| 83 | return *m.BranchName |
| 84 | } |
| 85 | return "" |
| 86 | } |
| 87 | |
| 88 | func (m *Upload) GetTargetName() string { |
| 89 | if m != nil && m.TargetName != nil { |
| 90 | return *m.TargetName |
| 91 | } |
| 92 | return "" |
| 93 | } |
| 94 | |
| 95 | func (m *Upload) GetMetricsFiles() []string { |
| 96 | if m != nil { |
| 97 | return m.MetricsFiles |
| 98 | } |
| 99 | return nil |
| 100 | } |
| 101 | |
Patrice Arruda | 7cc2074 | 2020-06-10 18:48:01 +0000 | [diff] [blame^] | 102 | func (m *Upload) GetDirectoriesToDelete() []string { |
| 103 | if m != nil { |
| 104 | return m.DirectoriesToDelete |
| 105 | } |
| 106 | return nil |
| 107 | } |
| 108 | |
Patrice Arruda | adfc112 | 2020-04-03 08:40:19 -0700 | [diff] [blame] | 109 | func init() { |
| 110 | proto.RegisterType((*Upload)(nil), "soong_metrics_upload.Upload") |
| 111 | } |
| 112 | |
| 113 | func init() { |
| 114 | proto.RegisterFile("upload.proto", fileDescriptor_91b94b655bd2a7e5) |
| 115 | } |
| 116 | |
| 117 | var fileDescriptor_91b94b655bd2a7e5 = []byte{ |
Patrice Arruda | 7cc2074 | 2020-06-10 18:48:01 +0000 | [diff] [blame^] | 118 | // 230 bytes of a gzipped FileDescriptorProto |
| 119 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xb1, 0x4a, 0x04, 0x31, |
| 120 | 0x10, 0x86, 0xd9, 0xbb, 0xf3, 0xe0, 0xe2, 0xd9, 0xec, 0x79, 0x18, 0x44, 0x70, 0xd1, 0x66, 0x2b, |
| 121 | 0x0b, 0x0b, 0x1f, 0x40, 0xc4, 0x4e, 0x8b, 0xe5, 0x6c, 0x6c, 0x86, 0x98, 0x1d, 0xd7, 0x40, 0x92, |
| 122 | 0x09, 0xc9, 0xf8, 0x1c, 0xbe, 0xb2, 0x6c, 0xe2, 0xe2, 0x82, 0x76, 0xc3, 0xff, 0x7d, 0x7f, 0x31, |
| 123 | 0xbf, 0xd8, 0x7e, 0x06, 0x4b, 0xaa, 0xbf, 0x09, 0x91, 0x98, 0xea, 0xd3, 0x44, 0xe4, 0x07, 0x70, |
| 124 | 0xc8, 0xd1, 0xe8, 0x04, 0x85, 0x5d, 0x7d, 0x2d, 0xc4, 0xfa, 0x25, 0x9f, 0xf5, 0xad, 0xd8, 0xeb, |
| 125 | 0x88, 0x8a, 0x0d, 0x79, 0x60, 0xe3, 0x30, 0xb1, 0x72, 0x01, 0x5c, 0x92, 0x55, 0x53, 0xb5, 0xab, |
| 126 | 0x6e, 0x37, 0xc1, 0xc3, 0xc4, 0x9e, 0x52, 0x7d, 0x27, 0xce, 0x34, 0xb9, 0x60, 0xf1, 0x6f, 0x6b, |
| 127 | 0x91, 0x5b, 0xfb, 0x5f, 0x3c, 0xef, 0x5d, 0x8a, 0xe3, 0xb7, 0xa8, 0xbc, 0xfe, 0x00, 0xaf, 0x1c, |
| 128 | 0xca, 0x65, 0x53, 0xb5, 0x9b, 0x4e, 0x94, 0xe8, 0x59, 0x39, 0x1c, 0x05, 0x56, 0x71, 0x40, 0x2e, |
| 129 | 0xc2, 0xaa, 0x08, 0x25, 0xca, 0xc2, 0xb5, 0x38, 0x99, 0x5e, 0x79, 0x37, 0x16, 0x93, 0x3c, 0x6a, |
| 130 | 0x96, 0xed, 0xa6, 0xdb, 0xfe, 0x84, 0x8f, 0x63, 0x36, 0xbe, 0xd4, 0x9b, 0x88, 0x9a, 0x29, 0x1a, |
| 131 | 0x4c, 0xc0, 0x04, 0x3d, 0x5a, 0x64, 0x94, 0xeb, 0x2c, 0xef, 0x66, 0xf0, 0x40, 0x0f, 0x19, 0xdd, |
| 132 | 0x5f, 0xbc, 0x9e, 0xff, 0xb7, 0x14, 0xe4, 0x15, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x64, 0x04, |
| 133 | 0xa8, 0xf4, 0x54, 0x01, 0x00, 0x00, |
Patrice Arruda | adfc112 | 2020-04-03 08:40:19 -0700 | [diff] [blame] | 134 | } |