Path: blob/main/components/image-builder-api/go/imgbuilder.pb.go
2498 views
// Copyright (c) 2025 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34// Code generated by protoc-gen-go. DO NOT EDIT.5// versions:6// protoc-gen-go v1.28.17// protoc v3.20.18// source: imgbuilder.proto910package api1112import (13api "github.com/gitpod-io/gitpod/content-service/api"14protoreflect "google.golang.org/protobuf/reflect/protoreflect"15protoimpl "google.golang.org/protobuf/runtime/protoimpl"16reflect "reflect"17sync "sync"18)1920const (21// Verify that this generated code is sufficiently up-to-date.22_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)23// Verify that runtime/protoimpl is sufficiently up-to-date.24_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)25)2627type BuildStatus int322829const (30BuildStatus_unknown BuildStatus = 031BuildStatus_running BuildStatus = 132BuildStatus_done_success BuildStatus = 233BuildStatus_done_failure BuildStatus = 334)3536// Enum value maps for BuildStatus.37var (38BuildStatus_name = map[int32]string{390: "unknown",401: "running",412: "done_success",423: "done_failure",43}44BuildStatus_value = map[string]int32{45"unknown": 0,46"running": 1,47"done_success": 2,48"done_failure": 3,49}50)5152func (x BuildStatus) Enum() *BuildStatus {53p := new(BuildStatus)54*p = x55return p56}5758func (x BuildStatus) String() string {59return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))60}6162func (BuildStatus) Descriptor() protoreflect.EnumDescriptor {63return file_imgbuilder_proto_enumTypes[0].Descriptor()64}6566func (BuildStatus) Type() protoreflect.EnumType {67return &file_imgbuilder_proto_enumTypes[0]68}6970func (x BuildStatus) Number() protoreflect.EnumNumber {71return protoreflect.EnumNumber(x)72}7374// Deprecated: Use BuildStatus.Descriptor instead.75func (BuildStatus) EnumDescriptor() ([]byte, []int) {76return file_imgbuilder_proto_rawDescGZIP(), []int{0}77}7879type BuildSource struct {80state protoimpl.MessageState81sizeCache protoimpl.SizeCache82unknownFields protoimpl.UnknownFields8384// Types that are assignable to From:85//86// *BuildSource_Ref87// *BuildSource_File88From isBuildSource_From `protobuf_oneof:"from"`89}9091func (x *BuildSource) Reset() {92*x = BuildSource{}93if protoimpl.UnsafeEnabled {94mi := &file_imgbuilder_proto_msgTypes[0]95ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))96ms.StoreMessageInfo(mi)97}98}99100func (x *BuildSource) String() string {101return protoimpl.X.MessageStringOf(x)102}103104func (*BuildSource) ProtoMessage() {}105106func (x *BuildSource) ProtoReflect() protoreflect.Message {107mi := &file_imgbuilder_proto_msgTypes[0]108if protoimpl.UnsafeEnabled && x != nil {109ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))110if ms.LoadMessageInfo() == nil {111ms.StoreMessageInfo(mi)112}113return ms114}115return mi.MessageOf(x)116}117118// Deprecated: Use BuildSource.ProtoReflect.Descriptor instead.119func (*BuildSource) Descriptor() ([]byte, []int) {120return file_imgbuilder_proto_rawDescGZIP(), []int{0}121}122123func (m *BuildSource) GetFrom() isBuildSource_From {124if m != nil {125return m.From126}127return nil128}129130func (x *BuildSource) GetRef() *BuildSourceReference {131if x, ok := x.GetFrom().(*BuildSource_Ref); ok {132return x.Ref133}134return nil135}136137func (x *BuildSource) GetFile() *BuildSourceDockerfile {138if x, ok := x.GetFrom().(*BuildSource_File); ok {139return x.File140}141return nil142}143144type isBuildSource_From interface {145isBuildSource_From()146}147148type BuildSource_Ref struct {149Ref *BuildSourceReference `protobuf:"bytes,1,opt,name=ref,proto3,oneof"`150}151152type BuildSource_File struct {153File *BuildSourceDockerfile `protobuf:"bytes,2,opt,name=file,proto3,oneof"`154}155156func (*BuildSource_Ref) isBuildSource_From() {}157158func (*BuildSource_File) isBuildSource_From() {}159160type BuildSourceReference struct {161state protoimpl.MessageState162sizeCache protoimpl.SizeCache163unknownFields protoimpl.UnknownFields164165Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`166}167168func (x *BuildSourceReference) Reset() {169*x = BuildSourceReference{}170if protoimpl.UnsafeEnabled {171mi := &file_imgbuilder_proto_msgTypes[1]172ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))173ms.StoreMessageInfo(mi)174}175}176177func (x *BuildSourceReference) String() string {178return protoimpl.X.MessageStringOf(x)179}180181func (*BuildSourceReference) ProtoMessage() {}182183func (x *BuildSourceReference) ProtoReflect() protoreflect.Message {184mi := &file_imgbuilder_proto_msgTypes[1]185if protoimpl.UnsafeEnabled && x != nil {186ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))187if ms.LoadMessageInfo() == nil {188ms.StoreMessageInfo(mi)189}190return ms191}192return mi.MessageOf(x)193}194195// Deprecated: Use BuildSourceReference.ProtoReflect.Descriptor instead.196func (*BuildSourceReference) Descriptor() ([]byte, []int) {197return file_imgbuilder_proto_rawDescGZIP(), []int{1}198}199200func (x *BuildSourceReference) GetRef() string {201if x != nil {202return x.Ref203}204return ""205}206207type BuildSourceDockerfile struct {208state protoimpl.MessageState209sizeCache protoimpl.SizeCache210unknownFields protoimpl.UnknownFields211212Source *api.WorkspaceInitializer `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`213DockerfileVersion string `protobuf:"bytes,2,opt,name=dockerfile_version,json=dockerfileVersion,proto3" json:"dockerfile_version,omitempty"`214DockerfilePath string `protobuf:"bytes,3,opt,name=dockerfile_path,json=dockerfilePath,proto3" json:"dockerfile_path,omitempty"`215ContextPath string `protobuf:"bytes,4,opt,name=context_path,json=contextPath,proto3" json:"context_path,omitempty"`216}217218func (x *BuildSourceDockerfile) Reset() {219*x = BuildSourceDockerfile{}220if protoimpl.UnsafeEnabled {221mi := &file_imgbuilder_proto_msgTypes[2]222ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))223ms.StoreMessageInfo(mi)224}225}226227func (x *BuildSourceDockerfile) String() string {228return protoimpl.X.MessageStringOf(x)229}230231func (*BuildSourceDockerfile) ProtoMessage() {}232233func (x *BuildSourceDockerfile) ProtoReflect() protoreflect.Message {234mi := &file_imgbuilder_proto_msgTypes[2]235if protoimpl.UnsafeEnabled && x != nil {236ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))237if ms.LoadMessageInfo() == nil {238ms.StoreMessageInfo(mi)239}240return ms241}242return mi.MessageOf(x)243}244245// Deprecated: Use BuildSourceDockerfile.ProtoReflect.Descriptor instead.246func (*BuildSourceDockerfile) Descriptor() ([]byte, []int) {247return file_imgbuilder_proto_rawDescGZIP(), []int{2}248}249250func (x *BuildSourceDockerfile) GetSource() *api.WorkspaceInitializer {251if x != nil {252return x.Source253}254return nil255}256257func (x *BuildSourceDockerfile) GetDockerfileVersion() string {258if x != nil {259return x.DockerfileVersion260}261return ""262}263264func (x *BuildSourceDockerfile) GetDockerfilePath() string {265if x != nil {266return x.DockerfilePath267}268return ""269}270271func (x *BuildSourceDockerfile) GetContextPath() string {272if x != nil {273return x.ContextPath274}275return ""276}277278type ResolveBaseImageRequest struct {279state protoimpl.MessageState280sizeCache protoimpl.SizeCache281unknownFields protoimpl.UnknownFields282283Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`284Auth *BuildRegistryAuth `protobuf:"bytes,2,opt,name=auth,proto3" json:"auth,omitempty"`285UseRetryClient bool `protobuf:"varint,3,opt,name=use_retry_client,json=useRetryClient,proto3" json:"use_retry_client,omitempty"`286}287288func (x *ResolveBaseImageRequest) Reset() {289*x = ResolveBaseImageRequest{}290if protoimpl.UnsafeEnabled {291mi := &file_imgbuilder_proto_msgTypes[3]292ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))293ms.StoreMessageInfo(mi)294}295}296297func (x *ResolveBaseImageRequest) String() string {298return protoimpl.X.MessageStringOf(x)299}300301func (*ResolveBaseImageRequest) ProtoMessage() {}302303func (x *ResolveBaseImageRequest) ProtoReflect() protoreflect.Message {304mi := &file_imgbuilder_proto_msgTypes[3]305if protoimpl.UnsafeEnabled && x != nil {306ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))307if ms.LoadMessageInfo() == nil {308ms.StoreMessageInfo(mi)309}310return ms311}312return mi.MessageOf(x)313}314315// Deprecated: Use ResolveBaseImageRequest.ProtoReflect.Descriptor instead.316func (*ResolveBaseImageRequest) Descriptor() ([]byte, []int) {317return file_imgbuilder_proto_rawDescGZIP(), []int{3}318}319320func (x *ResolveBaseImageRequest) GetRef() string {321if x != nil {322return x.Ref323}324return ""325}326327func (x *ResolveBaseImageRequest) GetAuth() *BuildRegistryAuth {328if x != nil {329return x.Auth330}331return nil332}333334func (x *ResolveBaseImageRequest) GetUseRetryClient() bool {335if x != nil {336return x.UseRetryClient337}338return false339}340341type ResolveBaseImageResponse struct {342state protoimpl.MessageState343sizeCache protoimpl.SizeCache344unknownFields protoimpl.UnknownFields345346Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`347}348349func (x *ResolveBaseImageResponse) Reset() {350*x = ResolveBaseImageResponse{}351if protoimpl.UnsafeEnabled {352mi := &file_imgbuilder_proto_msgTypes[4]353ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))354ms.StoreMessageInfo(mi)355}356}357358func (x *ResolveBaseImageResponse) String() string {359return protoimpl.X.MessageStringOf(x)360}361362func (*ResolveBaseImageResponse) ProtoMessage() {}363364func (x *ResolveBaseImageResponse) ProtoReflect() protoreflect.Message {365mi := &file_imgbuilder_proto_msgTypes[4]366if protoimpl.UnsafeEnabled && x != nil {367ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))368if ms.LoadMessageInfo() == nil {369ms.StoreMessageInfo(mi)370}371return ms372}373return mi.MessageOf(x)374}375376// Deprecated: Use ResolveBaseImageResponse.ProtoReflect.Descriptor instead.377func (*ResolveBaseImageResponse) Descriptor() ([]byte, []int) {378return file_imgbuilder_proto_rawDescGZIP(), []int{4}379}380381func (x *ResolveBaseImageResponse) GetRef() string {382if x != nil {383return x.Ref384}385return ""386}387388type ResolveWorkspaceImageRequest struct {389state protoimpl.MessageState390sizeCache protoimpl.SizeCache391unknownFields protoimpl.UnknownFields392393Source *BuildSource `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`394Auth *BuildRegistryAuth `protobuf:"bytes,2,opt,name=auth,proto3" json:"auth,omitempty"`395UseRetryClient bool `protobuf:"varint,3,opt,name=use_retry_client,json=useRetryClient,proto3" json:"use_retry_client,omitempty"`396}397398func (x *ResolveWorkspaceImageRequest) Reset() {399*x = ResolveWorkspaceImageRequest{}400if protoimpl.UnsafeEnabled {401mi := &file_imgbuilder_proto_msgTypes[5]402ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))403ms.StoreMessageInfo(mi)404}405}406407func (x *ResolveWorkspaceImageRequest) String() string {408return protoimpl.X.MessageStringOf(x)409}410411func (*ResolveWorkspaceImageRequest) ProtoMessage() {}412413func (x *ResolveWorkspaceImageRequest) ProtoReflect() protoreflect.Message {414mi := &file_imgbuilder_proto_msgTypes[5]415if protoimpl.UnsafeEnabled && x != nil {416ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))417if ms.LoadMessageInfo() == nil {418ms.StoreMessageInfo(mi)419}420return ms421}422return mi.MessageOf(x)423}424425// Deprecated: Use ResolveWorkspaceImageRequest.ProtoReflect.Descriptor instead.426func (*ResolveWorkspaceImageRequest) Descriptor() ([]byte, []int) {427return file_imgbuilder_proto_rawDescGZIP(), []int{5}428}429430func (x *ResolveWorkspaceImageRequest) GetSource() *BuildSource {431if x != nil {432return x.Source433}434return nil435}436437func (x *ResolveWorkspaceImageRequest) GetAuth() *BuildRegistryAuth {438if x != nil {439return x.Auth440}441return nil442}443444func (x *ResolveWorkspaceImageRequest) GetUseRetryClient() bool {445if x != nil {446return x.UseRetryClient447}448return false449}450451type ResolveWorkspaceImageResponse struct {452state protoimpl.MessageState453sizeCache protoimpl.SizeCache454unknownFields protoimpl.UnknownFields455456Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`457BaseRef string `protobuf:"bytes,3,opt,name=base_ref,json=baseRef,proto3" json:"base_ref,omitempty"`458Status BuildStatus `protobuf:"varint,2,opt,name=status,proto3,enum=builder.BuildStatus" json:"status,omitempty"`459}460461func (x *ResolveWorkspaceImageResponse) Reset() {462*x = ResolveWorkspaceImageResponse{}463if protoimpl.UnsafeEnabled {464mi := &file_imgbuilder_proto_msgTypes[6]465ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))466ms.StoreMessageInfo(mi)467}468}469470func (x *ResolveWorkspaceImageResponse) String() string {471return protoimpl.X.MessageStringOf(x)472}473474func (*ResolveWorkspaceImageResponse) ProtoMessage() {}475476func (x *ResolveWorkspaceImageResponse) ProtoReflect() protoreflect.Message {477mi := &file_imgbuilder_proto_msgTypes[6]478if protoimpl.UnsafeEnabled && x != nil {479ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))480if ms.LoadMessageInfo() == nil {481ms.StoreMessageInfo(mi)482}483return ms484}485return mi.MessageOf(x)486}487488// Deprecated: Use ResolveWorkspaceImageResponse.ProtoReflect.Descriptor instead.489func (*ResolveWorkspaceImageResponse) Descriptor() ([]byte, []int) {490return file_imgbuilder_proto_rawDescGZIP(), []int{6}491}492493func (x *ResolveWorkspaceImageResponse) GetRef() string {494if x != nil {495return x.Ref496}497return ""498}499500func (x *ResolveWorkspaceImageResponse) GetBaseRef() string {501if x != nil {502return x.BaseRef503}504return ""505}506507func (x *ResolveWorkspaceImageResponse) GetStatus() BuildStatus {508if x != nil {509return x.Status510}511return BuildStatus_unknown512}513514type BuildRequest struct {515state protoimpl.MessageState516sizeCache protoimpl.SizeCache517unknownFields protoimpl.UnknownFields518519Source *BuildSource `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`520Auth *BuildRegistryAuth `protobuf:"bytes,2,opt,name=auth,proto3" json:"auth,omitempty"`521ForceRebuild bool `protobuf:"varint,3,opt,name=force_rebuild,json=forceRebuild,proto3" json:"force_rebuild,omitempty"`522TriggeredBy string `protobuf:"bytes,4,opt,name=triggered_by,json=triggeredBy,proto3" json:"triggered_by,omitempty"`523SupervisorRef string `protobuf:"bytes,5,opt,name=supervisor_ref,json=supervisorRef,proto3" json:"supervisor_ref,omitempty"`524BaseImageNameResolved string `protobuf:"bytes,6,opt,name=base_image_name_resolved,json=baseImageNameResolved,proto3" json:"base_image_name_resolved,omitempty"`525UseRetryClient bool `protobuf:"varint,7,opt,name=use_retry_client,json=useRetryClient,proto3" json:"use_retry_client,omitempty"`526}527528func (x *BuildRequest) Reset() {529*x = BuildRequest{}530if protoimpl.UnsafeEnabled {531mi := &file_imgbuilder_proto_msgTypes[7]532ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))533ms.StoreMessageInfo(mi)534}535}536537func (x *BuildRequest) String() string {538return protoimpl.X.MessageStringOf(x)539}540541func (*BuildRequest) ProtoMessage() {}542543func (x *BuildRequest) ProtoReflect() protoreflect.Message {544mi := &file_imgbuilder_proto_msgTypes[7]545if protoimpl.UnsafeEnabled && x != nil {546ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))547if ms.LoadMessageInfo() == nil {548ms.StoreMessageInfo(mi)549}550return ms551}552return mi.MessageOf(x)553}554555// Deprecated: Use BuildRequest.ProtoReflect.Descriptor instead.556func (*BuildRequest) Descriptor() ([]byte, []int) {557return file_imgbuilder_proto_rawDescGZIP(), []int{7}558}559560func (x *BuildRequest) GetSource() *BuildSource {561if x != nil {562return x.Source563}564return nil565}566567func (x *BuildRequest) GetAuth() *BuildRegistryAuth {568if x != nil {569return x.Auth570}571return nil572}573574func (x *BuildRequest) GetForceRebuild() bool {575if x != nil {576return x.ForceRebuild577}578return false579}580581func (x *BuildRequest) GetTriggeredBy() string {582if x != nil {583return x.TriggeredBy584}585return ""586}587588func (x *BuildRequest) GetSupervisorRef() string {589if x != nil {590return x.SupervisorRef591}592return ""593}594595func (x *BuildRequest) GetBaseImageNameResolved() string {596if x != nil {597return x.BaseImageNameResolved598}599return ""600}601602func (x *BuildRequest) GetUseRetryClient() bool {603if x != nil {604return x.UseRetryClient605}606return false607}608609type BuildRegistryAuth struct {610state protoimpl.MessageState611sizeCache protoimpl.SizeCache612unknownFields protoimpl.UnknownFields613614// Types that are assignable to Mode:615//616// *BuildRegistryAuth_Total617// *BuildRegistryAuth_Selective618Mode isBuildRegistryAuth_Mode `protobuf_oneof:"mode"`619Additional map[string]string `protobuf:"bytes,3,rep,name=additional,proto3" json:"additional,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`620}621622func (x *BuildRegistryAuth) Reset() {623*x = BuildRegistryAuth{}624if protoimpl.UnsafeEnabled {625mi := &file_imgbuilder_proto_msgTypes[8]626ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))627ms.StoreMessageInfo(mi)628}629}630631func (x *BuildRegistryAuth) String() string {632return protoimpl.X.MessageStringOf(x)633}634635func (*BuildRegistryAuth) ProtoMessage() {}636637func (x *BuildRegistryAuth) ProtoReflect() protoreflect.Message {638mi := &file_imgbuilder_proto_msgTypes[8]639if protoimpl.UnsafeEnabled && x != nil {640ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))641if ms.LoadMessageInfo() == nil {642ms.StoreMessageInfo(mi)643}644return ms645}646return mi.MessageOf(x)647}648649// Deprecated: Use BuildRegistryAuth.ProtoReflect.Descriptor instead.650func (*BuildRegistryAuth) Descriptor() ([]byte, []int) {651return file_imgbuilder_proto_rawDescGZIP(), []int{8}652}653654func (m *BuildRegistryAuth) GetMode() isBuildRegistryAuth_Mode {655if m != nil {656return m.Mode657}658return nil659}660661func (x *BuildRegistryAuth) GetTotal() *BuildRegistryAuthTotal {662if x, ok := x.GetMode().(*BuildRegistryAuth_Total); ok {663return x.Total664}665return nil666}667668func (x *BuildRegistryAuth) GetSelective() *BuildRegistryAuthSelective {669if x, ok := x.GetMode().(*BuildRegistryAuth_Selective); ok {670return x.Selective671}672return nil673}674675func (x *BuildRegistryAuth) GetAdditional() map[string]string {676if x != nil {677return x.Additional678}679return nil680}681682type isBuildRegistryAuth_Mode interface {683isBuildRegistryAuth_Mode()684}685686type BuildRegistryAuth_Total struct {687Total *BuildRegistryAuthTotal `protobuf:"bytes,1,opt,name=total,proto3,oneof"`688}689690type BuildRegistryAuth_Selective struct {691Selective *BuildRegistryAuthSelective `protobuf:"bytes,2,opt,name=selective,proto3,oneof"`692}693694func (*BuildRegistryAuth_Total) isBuildRegistryAuth_Mode() {}695696func (*BuildRegistryAuth_Selective) isBuildRegistryAuth_Mode() {}697698type BuildRegistryAuthTotal struct {699state protoimpl.MessageState700sizeCache protoimpl.SizeCache701unknownFields protoimpl.UnknownFields702703AllowAll bool `protobuf:"varint,1,opt,name=allow_all,json=allowAll,proto3" json:"allow_all,omitempty"`704}705706func (x *BuildRegistryAuthTotal) Reset() {707*x = BuildRegistryAuthTotal{}708if protoimpl.UnsafeEnabled {709mi := &file_imgbuilder_proto_msgTypes[9]710ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))711ms.StoreMessageInfo(mi)712}713}714715func (x *BuildRegistryAuthTotal) String() string {716return protoimpl.X.MessageStringOf(x)717}718719func (*BuildRegistryAuthTotal) ProtoMessage() {}720721func (x *BuildRegistryAuthTotal) ProtoReflect() protoreflect.Message {722mi := &file_imgbuilder_proto_msgTypes[9]723if protoimpl.UnsafeEnabled && x != nil {724ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))725if ms.LoadMessageInfo() == nil {726ms.StoreMessageInfo(mi)727}728return ms729}730return mi.MessageOf(x)731}732733// Deprecated: Use BuildRegistryAuthTotal.ProtoReflect.Descriptor instead.734func (*BuildRegistryAuthTotal) Descriptor() ([]byte, []int) {735return file_imgbuilder_proto_rawDescGZIP(), []int{9}736}737738func (x *BuildRegistryAuthTotal) GetAllowAll() bool {739if x != nil {740return x.AllowAll741}742return false743}744745type BuildRegistryAuthSelective struct {746state protoimpl.MessageState747sizeCache protoimpl.SizeCache748unknownFields protoimpl.UnknownFields749750AllowBaserep bool `protobuf:"varint,1,opt,name=allow_baserep,json=allowBaserep,proto3" json:"allow_baserep,omitempty"`751AllowWorkspacerep bool `protobuf:"varint,2,opt,name=allow_workspacerep,json=allowWorkspacerep,proto3" json:"allow_workspacerep,omitempty"`752AnyOf []string `protobuf:"bytes,3,rep,name=any_of,json=anyOf,proto3" json:"any_of,omitempty"`753}754755func (x *BuildRegistryAuthSelective) Reset() {756*x = BuildRegistryAuthSelective{}757if protoimpl.UnsafeEnabled {758mi := &file_imgbuilder_proto_msgTypes[10]759ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))760ms.StoreMessageInfo(mi)761}762}763764func (x *BuildRegistryAuthSelective) String() string {765return protoimpl.X.MessageStringOf(x)766}767768func (*BuildRegistryAuthSelective) ProtoMessage() {}769770func (x *BuildRegistryAuthSelective) ProtoReflect() protoreflect.Message {771mi := &file_imgbuilder_proto_msgTypes[10]772if protoimpl.UnsafeEnabled && x != nil {773ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))774if ms.LoadMessageInfo() == nil {775ms.StoreMessageInfo(mi)776}777return ms778}779return mi.MessageOf(x)780}781782// Deprecated: Use BuildRegistryAuthSelective.ProtoReflect.Descriptor instead.783func (*BuildRegistryAuthSelective) Descriptor() ([]byte, []int) {784return file_imgbuilder_proto_rawDescGZIP(), []int{10}785}786787func (x *BuildRegistryAuthSelective) GetAllowBaserep() bool {788if x != nil {789return x.AllowBaserep790}791return false792}793794func (x *BuildRegistryAuthSelective) GetAllowWorkspacerep() bool {795if x != nil {796return x.AllowWorkspacerep797}798return false799}800801func (x *BuildRegistryAuthSelective) GetAnyOf() []string {802if x != nil {803return x.AnyOf804}805return nil806}807808type BuildResponse struct {809state protoimpl.MessageState810sizeCache protoimpl.SizeCache811unknownFields protoimpl.UnknownFields812813// deprecated(cw): expect this field to go away in a future version.814//815// it's redundant with the build info.816Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`817BaseRef string `protobuf:"bytes,4,opt,name=base_ref,json=baseRef,proto3" json:"base_ref,omitempty"`818// deprecated(cw): expect this field to go away in a future version.819//820// it's redundant with the build info.821Status BuildStatus `protobuf:"varint,2,opt,name=status,proto3,enum=builder.BuildStatus" json:"status,omitempty"`822Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`823Info *BuildInfo `protobuf:"bytes,5,opt,name=info,proto3" json:"info,omitempty"`824}825826func (x *BuildResponse) Reset() {827*x = BuildResponse{}828if protoimpl.UnsafeEnabled {829mi := &file_imgbuilder_proto_msgTypes[11]830ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))831ms.StoreMessageInfo(mi)832}833}834835func (x *BuildResponse) String() string {836return protoimpl.X.MessageStringOf(x)837}838839func (*BuildResponse) ProtoMessage() {}840841func (x *BuildResponse) ProtoReflect() protoreflect.Message {842mi := &file_imgbuilder_proto_msgTypes[11]843if protoimpl.UnsafeEnabled && x != nil {844ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))845if ms.LoadMessageInfo() == nil {846ms.StoreMessageInfo(mi)847}848return ms849}850return mi.MessageOf(x)851}852853// Deprecated: Use BuildResponse.ProtoReflect.Descriptor instead.854func (*BuildResponse) Descriptor() ([]byte, []int) {855return file_imgbuilder_proto_rawDescGZIP(), []int{11}856}857858func (x *BuildResponse) GetRef() string {859if x != nil {860return x.Ref861}862return ""863}864865func (x *BuildResponse) GetBaseRef() string {866if x != nil {867return x.BaseRef868}869return ""870}871872func (x *BuildResponse) GetStatus() BuildStatus {873if x != nil {874return x.Status875}876return BuildStatus_unknown877}878879func (x *BuildResponse) GetMessage() string {880if x != nil {881return x.Message882}883return ""884}885886func (x *BuildResponse) GetInfo() *BuildInfo {887if x != nil {888return x.Info889}890return nil891}892893type LogsRequest struct {894state protoimpl.MessageState895sizeCache protoimpl.SizeCache896unknownFields protoimpl.UnknownFields897898BuildRef string `protobuf:"bytes,1,opt,name=build_ref,json=buildRef,proto3" json:"build_ref,omitempty"`899Censored bool `protobuf:"varint,2,opt,name=censored,proto3" json:"censored,omitempty"`900BuildId string `protobuf:"bytes,3,opt,name=build_id,json=buildId,proto3" json:"build_id,omitempty"`901}902903func (x *LogsRequest) Reset() {904*x = LogsRequest{}905if protoimpl.UnsafeEnabled {906mi := &file_imgbuilder_proto_msgTypes[12]907ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))908ms.StoreMessageInfo(mi)909}910}911912func (x *LogsRequest) String() string {913return protoimpl.X.MessageStringOf(x)914}915916func (*LogsRequest) ProtoMessage() {}917918func (x *LogsRequest) ProtoReflect() protoreflect.Message {919mi := &file_imgbuilder_proto_msgTypes[12]920if protoimpl.UnsafeEnabled && x != nil {921ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))922if ms.LoadMessageInfo() == nil {923ms.StoreMessageInfo(mi)924}925return ms926}927return mi.MessageOf(x)928}929930// Deprecated: Use LogsRequest.ProtoReflect.Descriptor instead.931func (*LogsRequest) Descriptor() ([]byte, []int) {932return file_imgbuilder_proto_rawDescGZIP(), []int{12}933}934935func (x *LogsRequest) GetBuildRef() string {936if x != nil {937return x.BuildRef938}939return ""940}941942func (x *LogsRequest) GetCensored() bool {943if x != nil {944return x.Censored945}946return false947}948949func (x *LogsRequest) GetBuildId() string {950if x != nil {951return x.BuildId952}953return ""954}955956type LogsResponse struct {957state protoimpl.MessageState958sizeCache protoimpl.SizeCache959unknownFields protoimpl.UnknownFields960961Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`962}963964func (x *LogsResponse) Reset() {965*x = LogsResponse{}966if protoimpl.UnsafeEnabled {967mi := &file_imgbuilder_proto_msgTypes[13]968ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))969ms.StoreMessageInfo(mi)970}971}972973func (x *LogsResponse) String() string {974return protoimpl.X.MessageStringOf(x)975}976977func (*LogsResponse) ProtoMessage() {}978979func (x *LogsResponse) ProtoReflect() protoreflect.Message {980mi := &file_imgbuilder_proto_msgTypes[13]981if protoimpl.UnsafeEnabled && x != nil {982ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))983if ms.LoadMessageInfo() == nil {984ms.StoreMessageInfo(mi)985}986return ms987}988return mi.MessageOf(x)989}990991// Deprecated: Use LogsResponse.ProtoReflect.Descriptor instead.992func (*LogsResponse) Descriptor() ([]byte, []int) {993return file_imgbuilder_proto_rawDescGZIP(), []int{13}994}995996func (x *LogsResponse) GetContent() []byte {997if x != nil {998return x.Content999}1000return nil1001}10021003type ListBuildsRequest struct {1004state protoimpl.MessageState1005sizeCache protoimpl.SizeCache1006unknownFields protoimpl.UnknownFields1007}10081009func (x *ListBuildsRequest) Reset() {1010*x = ListBuildsRequest{}1011if protoimpl.UnsafeEnabled {1012mi := &file_imgbuilder_proto_msgTypes[14]1013ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1014ms.StoreMessageInfo(mi)1015}1016}10171018func (x *ListBuildsRequest) String() string {1019return protoimpl.X.MessageStringOf(x)1020}10211022func (*ListBuildsRequest) ProtoMessage() {}10231024func (x *ListBuildsRequest) ProtoReflect() protoreflect.Message {1025mi := &file_imgbuilder_proto_msgTypes[14]1026if protoimpl.UnsafeEnabled && x != nil {1027ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1028if ms.LoadMessageInfo() == nil {1029ms.StoreMessageInfo(mi)1030}1031return ms1032}1033return mi.MessageOf(x)1034}10351036// Deprecated: Use ListBuildsRequest.ProtoReflect.Descriptor instead.1037func (*ListBuildsRequest) Descriptor() ([]byte, []int) {1038return file_imgbuilder_proto_rawDescGZIP(), []int{14}1039}10401041type ListBuildsResponse struct {1042state protoimpl.MessageState1043sizeCache protoimpl.SizeCache1044unknownFields protoimpl.UnknownFields10451046Builds []*BuildInfo `protobuf:"bytes,1,rep,name=builds,proto3" json:"builds,omitempty"`1047}10481049func (x *ListBuildsResponse) Reset() {1050*x = ListBuildsResponse{}1051if protoimpl.UnsafeEnabled {1052mi := &file_imgbuilder_proto_msgTypes[15]1053ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1054ms.StoreMessageInfo(mi)1055}1056}10571058func (x *ListBuildsResponse) String() string {1059return protoimpl.X.MessageStringOf(x)1060}10611062func (*ListBuildsResponse) ProtoMessage() {}10631064func (x *ListBuildsResponse) ProtoReflect() protoreflect.Message {1065mi := &file_imgbuilder_proto_msgTypes[15]1066if protoimpl.UnsafeEnabled && x != nil {1067ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1068if ms.LoadMessageInfo() == nil {1069ms.StoreMessageInfo(mi)1070}1071return ms1072}1073return mi.MessageOf(x)1074}10751076// Deprecated: Use ListBuildsResponse.ProtoReflect.Descriptor instead.1077func (*ListBuildsResponse) Descriptor() ([]byte, []int) {1078return file_imgbuilder_proto_rawDescGZIP(), []int{15}1079}10801081func (x *ListBuildsResponse) GetBuilds() []*BuildInfo {1082if x != nil {1083return x.Builds1084}1085return nil1086}10871088type BuildInfo struct {1089state protoimpl.MessageState1090sizeCache protoimpl.SizeCache1091unknownFields protoimpl.UnknownFields10921093Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`1094BaseRef string `protobuf:"bytes,4,opt,name=base_ref,json=baseRef,proto3" json:"base_ref,omitempty"`1095Status BuildStatus `protobuf:"varint,2,opt,name=status,proto3,enum=builder.BuildStatus" json:"status,omitempty"`1096StartedAt int64 `protobuf:"varint,3,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`1097BuildId string `protobuf:"bytes,5,opt,name=build_id,json=buildId,proto3" json:"build_id,omitempty"`1098LogInfo *LogInfo `protobuf:"bytes,6,opt,name=log_info,json=logInfo,proto3" json:"log_info,omitempty"`1099}11001101func (x *BuildInfo) Reset() {1102*x = BuildInfo{}1103if protoimpl.UnsafeEnabled {1104mi := &file_imgbuilder_proto_msgTypes[16]1105ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1106ms.StoreMessageInfo(mi)1107}1108}11091110func (x *BuildInfo) String() string {1111return protoimpl.X.MessageStringOf(x)1112}11131114func (*BuildInfo) ProtoMessage() {}11151116func (x *BuildInfo) ProtoReflect() protoreflect.Message {1117mi := &file_imgbuilder_proto_msgTypes[16]1118if protoimpl.UnsafeEnabled && x != nil {1119ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1120if ms.LoadMessageInfo() == nil {1121ms.StoreMessageInfo(mi)1122}1123return ms1124}1125return mi.MessageOf(x)1126}11271128// Deprecated: Use BuildInfo.ProtoReflect.Descriptor instead.1129func (*BuildInfo) Descriptor() ([]byte, []int) {1130return file_imgbuilder_proto_rawDescGZIP(), []int{16}1131}11321133func (x *BuildInfo) GetRef() string {1134if x != nil {1135return x.Ref1136}1137return ""1138}11391140func (x *BuildInfo) GetBaseRef() string {1141if x != nil {1142return x.BaseRef1143}1144return ""1145}11461147func (x *BuildInfo) GetStatus() BuildStatus {1148if x != nil {1149return x.Status1150}1151return BuildStatus_unknown1152}11531154func (x *BuildInfo) GetStartedAt() int64 {1155if x != nil {1156return x.StartedAt1157}1158return 01159}11601161func (x *BuildInfo) GetBuildId() string {1162if x != nil {1163return x.BuildId1164}1165return ""1166}11671168func (x *BuildInfo) GetLogInfo() *LogInfo {1169if x != nil {1170return x.LogInfo1171}1172return nil1173}11741175type LogInfo struct {1176state protoimpl.MessageState1177sizeCache protoimpl.SizeCache1178unknownFields protoimpl.UnknownFields11791180Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`1181Headers map[string]string `protobuf:"bytes,2,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`1182}11831184func (x *LogInfo) Reset() {1185*x = LogInfo{}1186if protoimpl.UnsafeEnabled {1187mi := &file_imgbuilder_proto_msgTypes[17]1188ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1189ms.StoreMessageInfo(mi)1190}1191}11921193func (x *LogInfo) String() string {1194return protoimpl.X.MessageStringOf(x)1195}11961197func (*LogInfo) ProtoMessage() {}11981199func (x *LogInfo) ProtoReflect() protoreflect.Message {1200mi := &file_imgbuilder_proto_msgTypes[17]1201if protoimpl.UnsafeEnabled && x != nil {1202ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1203if ms.LoadMessageInfo() == nil {1204ms.StoreMessageInfo(mi)1205}1206return ms1207}1208return mi.MessageOf(x)1209}12101211// Deprecated: Use LogInfo.ProtoReflect.Descriptor instead.1212func (*LogInfo) Descriptor() ([]byte, []int) {1213return file_imgbuilder_proto_rawDescGZIP(), []int{17}1214}12151216func (x *LogInfo) GetUrl() string {1217if x != nil {1218return x.Url1219}1220return ""1221}12221223func (x *LogInfo) GetHeaders() map[string]string {1224if x != nil {1225return x.Headers1226}1227return nil1228}12291230var File_imgbuilder_proto protoreflect.FileDescriptor12311232var file_imgbuilder_proto_rawDesc = []byte{12330x0a, 0x10, 0x69, 0x6d, 0x67, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,12340x74, 0x6f, 0x12, 0x07, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x1a, 0x25, 0x63, 0x6f, 0x6e,12350x74, 0x65, 0x6e, 0x74, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2d, 0x61, 0x70, 0x69,12360x2f, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,12370x74, 0x6f, 0x22, 0x7e, 0x0a, 0x0b, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63,12380x65, 0x12, 0x31, 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d,12390x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x6f,12400x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x48, 0x00, 0x52,12410x03, 0x72, 0x65, 0x66, 0x12, 0x34, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01,12420x28, 0x0b, 0x32, 0x1e, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69,12430x6c, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x66, 0x69,12440x6c, 0x65, 0x48, 0x00, 0x52, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x42, 0x06, 0x0a, 0x04, 0x66, 0x72,12450x6f, 0x6d, 0x22, 0x28, 0x0a, 0x14, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63,12460x65, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65,12470x66, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x66, 0x22, 0xd0, 0x01, 0x0a,12480x15, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x6f, 0x63, 0x6b,12490x65, 0x72, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,12500x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,12510x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63,12520x65, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x72, 0x52, 0x06, 0x73, 0x6f,12530x75, 0x72, 0x63, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x64, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x66, 0x69,12540x6c, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,12550x52, 0x11, 0x64, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x66, 0x69, 0x6c, 0x65, 0x56, 0x65, 0x72, 0x73,12560x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x66, 0x69, 0x6c,12570x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x64, 0x6f,12580x63, 0x6b, 0x65, 0x72, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x21, 0x0a, 0x0c,12590x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01,12600x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22,12610x85, 0x01, 0x0a, 0x17, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49,12620x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x72,12630x65, 0x66, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x66, 0x12, 0x2e, 0x0a,12640x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x75,12650x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73,12660x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x12, 0x28, 0x0a,12670x10, 0x75, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e,12680x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x52, 0x65, 0x74, 0x72,12690x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x22, 0x2c, 0x0a, 0x18, 0x52, 0x65, 0x73, 0x6f, 0x6c,12700x76, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,12710x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,12720x52, 0x03, 0x72, 0x65, 0x66, 0x22, 0xa6, 0x01, 0x0a, 0x1c, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76,12730x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52,12740x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,12750x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72,12760x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x06, 0x73, 0x6f,12770x75, 0x72, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01,12780x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69,12790x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x52, 0x04,12800x61, 0x75, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x74, 0x72,12810x79, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e,12820x75, 0x73, 0x65, 0x52, 0x65, 0x74, 0x72, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x22, 0x7a,12830x0a, 0x1d, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61,12840x63, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,12850x10, 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65,12860x66, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x03, 0x20,12870x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x66, 0x12, 0x2c, 0x0a, 0x06,12880x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x62,12890x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x74, 0x61, 0x74,12900x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xbe, 0x02, 0x0a, 0x0c, 0x42,12910x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x06, 0x73,12920x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x75,12930x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x6f, 0x75, 0x72, 0x63,12940x65, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x04, 0x61, 0x75, 0x74,12950x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65,12960x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x41,12970x75, 0x74, 0x68, 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x6f, 0x72,12980x63, 0x65, 0x5f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,12990x52, 0x0c, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x21,13000x0a, 0x0c, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x04,13010x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42,13020x79, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x5f,13030x72, 0x65, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x70, 0x65, 0x72,13040x76, 0x69, 0x73, 0x6f, 0x72, 0x52, 0x65, 0x66, 0x12, 0x37, 0x0a, 0x18, 0x62, 0x61, 0x73, 0x65,13050x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x6f,13060x6c, 0x76, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x62, 0x61, 0x73, 0x65,13070x49, 0x6d, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65,13080x64, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x74, 0x72, 0x79, 0x5f, 0x63,13090x6c, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65,13100x52, 0x65, 0x74, 0x72, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x22, 0xa4, 0x02, 0x0a, 0x11,13110x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x41, 0x75, 0x74,13120x68, 0x12, 0x37, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,13130x32, 0x1f, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64,13140x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x74, 0x61,13150x6c, 0x48, 0x00, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x43, 0x0a, 0x09, 0x73, 0x65,13160x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e,13170x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x67,13180x69, 0x73, 0x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,13190x76, 0x65, 0x48, 0x00, 0x52, 0x09, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12,13200x4a, 0x0a, 0x0a, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x18, 0x03, 0x20,13210x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75,13220x69, 0x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x2e,13230x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,13240x0a, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x1a, 0x3d, 0x0a, 0x0f, 0x41,13250x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,13260x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,13270x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,13280x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x06, 0x0a, 0x04, 0x6d, 0x6f,13290x64, 0x65, 0x22, 0x35, 0x0a, 0x16, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73,13300x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09,13310x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,13320x08, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x41, 0x6c, 0x6c, 0x22, 0x87, 0x01, 0x0a, 0x1a, 0x42, 0x75,13330x69, 0x6c, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x41, 0x75, 0x74, 0x68, 0x53,13340x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f,13350x77, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x72, 0x65, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,13360x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x42, 0x61, 0x73, 0x65, 0x72, 0x65, 0x70, 0x12, 0x2d, 0x0a,13370x12, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65,13380x72, 0x65, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x61, 0x6c, 0x6c, 0x6f, 0x77,13390x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x72, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06,13400x61, 0x6e, 0x79, 0x5f, 0x6f, 0x66, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x61, 0x6e,13410x79, 0x4f, 0x66, 0x22, 0xac, 0x01, 0x0a, 0x0d, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73,13420x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x01, 0x20, 0x01,13430x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x66, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x61, 0x73, 0x65, 0x5f,13440x72, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x73, 0x65, 0x52,13450x65, 0x66, 0x12, 0x2c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01,13460x28, 0x0e, 0x32, 0x14, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69,13470x6c, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,13480x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,13490x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x69, 0x6e,13500x66, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64,13510x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e,13520x66, 0x6f, 0x22, 0x61, 0x0a, 0x0b, 0x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,13530x74, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x01,13540x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x66, 0x12, 0x1a,13550x0a, 0x08, 0x63, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,13560x52, 0x08, 0x63, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x65, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x75,13570x69, 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x75,13580x69, 0x6c, 0x64, 0x49, 0x64, 0x22, 0x28, 0x0a, 0x0c, 0x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x73,13590x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,13600x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22,13610x13, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x73, 0x52, 0x65, 0x71,13620x75, 0x65, 0x73, 0x74, 0x22, 0x40, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x69, 0x6c,13630x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x62, 0x75,13640x69, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x75, 0x69,13650x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06,13660x62, 0x75, 0x69, 0x6c, 0x64, 0x73, 0x22, 0xcd, 0x01, 0x0a, 0x09, 0x42, 0x75, 0x69, 0x6c, 0x64,13670x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x01, 0x20, 0x01, 0x28,13680x09, 0x52, 0x03, 0x72, 0x65, 0x66, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x72,13690x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65,13700x66, 0x12, 0x2c, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,13710x0e, 0x32, 0x14, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c,13720x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,13730x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20,13740x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x19,13750x0a, 0x08, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,13760x52, 0x07, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x08, 0x6c, 0x6f, 0x67,13770x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x62, 0x75,13780x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x4c, 0x6f, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x6c,13790x6f, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x90, 0x01, 0x0a, 0x07, 0x4c, 0x6f, 0x67, 0x49, 0x6e,13800x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,13810x03, 0x75, 0x72, 0x6c, 0x12, 0x37, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x18,13820x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e,13830x4c, 0x6f, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45,13840x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x1a, 0x3a, 0x0a,13850x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,13860x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,13870x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,13880x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x4b, 0x0a, 0x0b, 0x42, 0x75, 0x69,13890x6c, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0b, 0x0a, 0x07, 0x75, 0x6e, 0x6b, 0x6e,13900x6f, 0x77, 0x6e, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67,13910x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x64, 0x6f, 0x6e, 0x65, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65,13920x73, 0x73, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x0c, 0x64, 0x6f, 0x6e, 0x65, 0x5f, 0x66, 0x61, 0x69,13930x6c, 0x75, 0x72, 0x65, 0x10, 0x03, 0x32, 0x91, 0x03, 0x0a, 0x0c, 0x49, 0x6d, 0x61, 0x67, 0x65,13940x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x12, 0x59, 0x0a, 0x10, 0x52, 0x65, 0x73, 0x6f, 0x6c,13950x76, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x20, 0x2e, 0x62, 0x75,13960x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x42, 0x61, 0x73,13970x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e,13980x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x42,13990x61, 0x73, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,14000x22, 0x00, 0x12, 0x68, 0x0a, 0x15, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72,14010x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x25, 0x2e, 0x62, 0x75,14020x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72,14030x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,14040x73, 0x74, 0x1a, 0x26, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73,14050x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x6d, 0x61,14060x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x05,14070x42, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e,14080x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62,14090x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70,14100x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x37, 0x0a, 0x04, 0x4c, 0x6f, 0x67, 0x73,14110x12, 0x14, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x52,14120x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72,14130x2e, 0x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,14140x01, 0x12, 0x47, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x73, 0x12,14150x1a, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75,14160x69, 0x6c, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x62, 0x75,14170x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x73,14180x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x2f, 0x5a, 0x2d, 0x67, 0x69,14190x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d,14200x69, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2d,14210x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f,14220x74, 0x6f, 0x33,1423}14241425var (1426file_imgbuilder_proto_rawDescOnce sync.Once1427file_imgbuilder_proto_rawDescData = file_imgbuilder_proto_rawDesc1428)14291430func file_imgbuilder_proto_rawDescGZIP() []byte {1431file_imgbuilder_proto_rawDescOnce.Do(func() {1432file_imgbuilder_proto_rawDescData = protoimpl.X.CompressGZIP(file_imgbuilder_proto_rawDescData)1433})1434return file_imgbuilder_proto_rawDescData1435}14361437var file_imgbuilder_proto_enumTypes = make([]protoimpl.EnumInfo, 1)1438var file_imgbuilder_proto_msgTypes = make([]protoimpl.MessageInfo, 20)1439var file_imgbuilder_proto_goTypes = []interface{}{1440(BuildStatus)(0), // 0: builder.BuildStatus1441(*BuildSource)(nil), // 1: builder.BuildSource1442(*BuildSourceReference)(nil), // 2: builder.BuildSourceReference1443(*BuildSourceDockerfile)(nil), // 3: builder.BuildSourceDockerfile1444(*ResolveBaseImageRequest)(nil), // 4: builder.ResolveBaseImageRequest1445(*ResolveBaseImageResponse)(nil), // 5: builder.ResolveBaseImageResponse1446(*ResolveWorkspaceImageRequest)(nil), // 6: builder.ResolveWorkspaceImageRequest1447(*ResolveWorkspaceImageResponse)(nil), // 7: builder.ResolveWorkspaceImageResponse1448(*BuildRequest)(nil), // 8: builder.BuildRequest1449(*BuildRegistryAuth)(nil), // 9: builder.BuildRegistryAuth1450(*BuildRegistryAuthTotal)(nil), // 10: builder.BuildRegistryAuthTotal1451(*BuildRegistryAuthSelective)(nil), // 11: builder.BuildRegistryAuthSelective1452(*BuildResponse)(nil), // 12: builder.BuildResponse1453(*LogsRequest)(nil), // 13: builder.LogsRequest1454(*LogsResponse)(nil), // 14: builder.LogsResponse1455(*ListBuildsRequest)(nil), // 15: builder.ListBuildsRequest1456(*ListBuildsResponse)(nil), // 16: builder.ListBuildsResponse1457(*BuildInfo)(nil), // 17: builder.BuildInfo1458(*LogInfo)(nil), // 18: builder.LogInfo1459nil, // 19: builder.BuildRegistryAuth.AdditionalEntry1460nil, // 20: builder.LogInfo.HeadersEntry1461(*api.WorkspaceInitializer)(nil), // 21: contentservice.WorkspaceInitializer1462}1463var file_imgbuilder_proto_depIdxs = []int32{14642, // 0: builder.BuildSource.ref:type_name -> builder.BuildSourceReference14653, // 1: builder.BuildSource.file:type_name -> builder.BuildSourceDockerfile146621, // 2: builder.BuildSourceDockerfile.source:type_name -> contentservice.WorkspaceInitializer14679, // 3: builder.ResolveBaseImageRequest.auth:type_name -> builder.BuildRegistryAuth14681, // 4: builder.ResolveWorkspaceImageRequest.source:type_name -> builder.BuildSource14699, // 5: builder.ResolveWorkspaceImageRequest.auth:type_name -> builder.BuildRegistryAuth14700, // 6: builder.ResolveWorkspaceImageResponse.status:type_name -> builder.BuildStatus14711, // 7: builder.BuildRequest.source:type_name -> builder.BuildSource14729, // 8: builder.BuildRequest.auth:type_name -> builder.BuildRegistryAuth147310, // 9: builder.BuildRegistryAuth.total:type_name -> builder.BuildRegistryAuthTotal147411, // 10: builder.BuildRegistryAuth.selective:type_name -> builder.BuildRegistryAuthSelective147519, // 11: builder.BuildRegistryAuth.additional:type_name -> builder.BuildRegistryAuth.AdditionalEntry14760, // 12: builder.BuildResponse.status:type_name -> builder.BuildStatus147717, // 13: builder.BuildResponse.info:type_name -> builder.BuildInfo147817, // 14: builder.ListBuildsResponse.builds:type_name -> builder.BuildInfo14790, // 15: builder.BuildInfo.status:type_name -> builder.BuildStatus148018, // 16: builder.BuildInfo.log_info:type_name -> builder.LogInfo148120, // 17: builder.LogInfo.headers:type_name -> builder.LogInfo.HeadersEntry14824, // 18: builder.ImageBuilder.ResolveBaseImage:input_type -> builder.ResolveBaseImageRequest14836, // 19: builder.ImageBuilder.ResolveWorkspaceImage:input_type -> builder.ResolveWorkspaceImageRequest14848, // 20: builder.ImageBuilder.Build:input_type -> builder.BuildRequest148513, // 21: builder.ImageBuilder.Logs:input_type -> builder.LogsRequest148615, // 22: builder.ImageBuilder.ListBuilds:input_type -> builder.ListBuildsRequest14875, // 23: builder.ImageBuilder.ResolveBaseImage:output_type -> builder.ResolveBaseImageResponse14887, // 24: builder.ImageBuilder.ResolveWorkspaceImage:output_type -> builder.ResolveWorkspaceImageResponse148912, // 25: builder.ImageBuilder.Build:output_type -> builder.BuildResponse149014, // 26: builder.ImageBuilder.Logs:output_type -> builder.LogsResponse149116, // 27: builder.ImageBuilder.ListBuilds:output_type -> builder.ListBuildsResponse149223, // [23:28] is the sub-list for method output_type149318, // [18:23] is the sub-list for method input_type149418, // [18:18] is the sub-list for extension type_name149518, // [18:18] is the sub-list for extension extendee14960, // [0:18] is the sub-list for field type_name1497}14981499func init() { file_imgbuilder_proto_init() }1500func file_imgbuilder_proto_init() {1501if File_imgbuilder_proto != nil {1502return1503}1504if !protoimpl.UnsafeEnabled {1505file_imgbuilder_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {1506switch v := v.(*BuildSource); i {1507case 0:1508return &v.state1509case 1:1510return &v.sizeCache1511case 2:1512return &v.unknownFields1513default:1514return nil1515}1516}1517file_imgbuilder_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {1518switch v := v.(*BuildSourceReference); i {1519case 0:1520return &v.state1521case 1:1522return &v.sizeCache1523case 2:1524return &v.unknownFields1525default:1526return nil1527}1528}1529file_imgbuilder_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {1530switch v := v.(*BuildSourceDockerfile); i {1531case 0:1532return &v.state1533case 1:1534return &v.sizeCache1535case 2:1536return &v.unknownFields1537default:1538return nil1539}1540}1541file_imgbuilder_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {1542switch v := v.(*ResolveBaseImageRequest); i {1543case 0:1544return &v.state1545case 1:1546return &v.sizeCache1547case 2:1548return &v.unknownFields1549default:1550return nil1551}1552}1553file_imgbuilder_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {1554switch v := v.(*ResolveBaseImageResponse); i {1555case 0:1556return &v.state1557case 1:1558return &v.sizeCache1559case 2:1560return &v.unknownFields1561default:1562return nil1563}1564}1565file_imgbuilder_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {1566switch v := v.(*ResolveWorkspaceImageRequest); i {1567case 0:1568return &v.state1569case 1:1570return &v.sizeCache1571case 2:1572return &v.unknownFields1573default:1574return nil1575}1576}1577file_imgbuilder_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {1578switch v := v.(*ResolveWorkspaceImageResponse); i {1579case 0:1580return &v.state1581case 1:1582return &v.sizeCache1583case 2:1584return &v.unknownFields1585default:1586return nil1587}1588}1589file_imgbuilder_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {1590switch v := v.(*BuildRequest); i {1591case 0:1592return &v.state1593case 1:1594return &v.sizeCache1595case 2:1596return &v.unknownFields1597default:1598return nil1599}1600}1601file_imgbuilder_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {1602switch v := v.(*BuildRegistryAuth); i {1603case 0:1604return &v.state1605case 1:1606return &v.sizeCache1607case 2:1608return &v.unknownFields1609default:1610return nil1611}1612}1613file_imgbuilder_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {1614switch v := v.(*BuildRegistryAuthTotal); i {1615case 0:1616return &v.state1617case 1:1618return &v.sizeCache1619case 2:1620return &v.unknownFields1621default:1622return nil1623}1624}1625file_imgbuilder_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {1626switch v := v.(*BuildRegistryAuthSelective); i {1627case 0:1628return &v.state1629case 1:1630return &v.sizeCache1631case 2:1632return &v.unknownFields1633default:1634return nil1635}1636}1637file_imgbuilder_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {1638switch v := v.(*BuildResponse); i {1639case 0:1640return &v.state1641case 1:1642return &v.sizeCache1643case 2:1644return &v.unknownFields1645default:1646return nil1647}1648}1649file_imgbuilder_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {1650switch v := v.(*LogsRequest); i {1651case 0:1652return &v.state1653case 1:1654return &v.sizeCache1655case 2:1656return &v.unknownFields1657default:1658return nil1659}1660}1661file_imgbuilder_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {1662switch v := v.(*LogsResponse); i {1663case 0:1664return &v.state1665case 1:1666return &v.sizeCache1667case 2:1668return &v.unknownFields1669default:1670return nil1671}1672}1673file_imgbuilder_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {1674switch v := v.(*ListBuildsRequest); i {1675case 0:1676return &v.state1677case 1:1678return &v.sizeCache1679case 2:1680return &v.unknownFields1681default:1682return nil1683}1684}1685file_imgbuilder_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {1686switch v := v.(*ListBuildsResponse); i {1687case 0:1688return &v.state1689case 1:1690return &v.sizeCache1691case 2:1692return &v.unknownFields1693default:1694return nil1695}1696}1697file_imgbuilder_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {1698switch v := v.(*BuildInfo); i {1699case 0:1700return &v.state1701case 1:1702return &v.sizeCache1703case 2:1704return &v.unknownFields1705default:1706return nil1707}1708}1709file_imgbuilder_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {1710switch v := v.(*LogInfo); i {1711case 0:1712return &v.state1713case 1:1714return &v.sizeCache1715case 2:1716return &v.unknownFields1717default:1718return nil1719}1720}1721}1722file_imgbuilder_proto_msgTypes[0].OneofWrappers = []interface{}{1723(*BuildSource_Ref)(nil),1724(*BuildSource_File)(nil),1725}1726file_imgbuilder_proto_msgTypes[8].OneofWrappers = []interface{}{1727(*BuildRegistryAuth_Total)(nil),1728(*BuildRegistryAuth_Selective)(nil),1729}1730type x struct{}1731out := protoimpl.TypeBuilder{1732File: protoimpl.DescBuilder{1733GoPackagePath: reflect.TypeOf(x{}).PkgPath(),1734RawDescriptor: file_imgbuilder_proto_rawDesc,1735NumEnums: 1,1736NumMessages: 20,1737NumExtensions: 0,1738NumServices: 1,1739},1740GoTypes: file_imgbuilder_proto_goTypes,1741DependencyIndexes: file_imgbuilder_proto_depIdxs,1742EnumInfos: file_imgbuilder_proto_enumTypes,1743MessageInfos: file_imgbuilder_proto_msgTypes,1744}.Build()1745File_imgbuilder_proto = out.File1746file_imgbuilder_proto_rawDesc = nil1747file_imgbuilder_proto_goTypes = nil1748file_imgbuilder_proto_depIdxs = nil1749}175017511752