Path: blob/main/components/image-builder-api/go/subassembly.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: subassembly.proto910package api1112import (13protoreflect "google.golang.org/protobuf/reflect/protoreflect"14protoimpl "google.golang.org/protobuf/runtime/protoimpl"15reflect "reflect"16sync "sync"17)1819const (20// Verify that this generated code is sufficiently up-to-date.21_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)22// Verify that runtime/protoimpl is sufficiently up-to-date.23_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)24)2526type SubassemblyPhase int322728const (29SubassemblyPhase_SUBASSEMBLY_PHASE_UNSPECIFIED SubassemblyPhase = 030SubassemblyPhase_SUBASSEMBLY_PHASE_CREATING SubassemblyPhase = 131SubassemblyPhase_SUBASSEMBLY_PHASE_AVAILABLE SubassemblyPhase = 232SubassemblyPhase_SUBASSEMBLY_PHASE_UNAVAILABLE SubassemblyPhase = 333)3435// Enum value maps for SubassemblyPhase.36var (37SubassemblyPhase_name = map[int32]string{380: "SUBASSEMBLY_PHASE_UNSPECIFIED",391: "SUBASSEMBLY_PHASE_CREATING",402: "SUBASSEMBLY_PHASE_AVAILABLE",413: "SUBASSEMBLY_PHASE_UNAVAILABLE",42}43SubassemblyPhase_value = map[string]int32{44"SUBASSEMBLY_PHASE_UNSPECIFIED": 0,45"SUBASSEMBLY_PHASE_CREATING": 1,46"SUBASSEMBLY_PHASE_AVAILABLE": 2,47"SUBASSEMBLY_PHASE_UNAVAILABLE": 3,48}49)5051func (x SubassemblyPhase) Enum() *SubassemblyPhase {52p := new(SubassemblyPhase)53*p = x54return p55}5657func (x SubassemblyPhase) String() string {58return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))59}6061func (SubassemblyPhase) Descriptor() protoreflect.EnumDescriptor {62return file_subassembly_proto_enumTypes[0].Descriptor()63}6465func (SubassemblyPhase) Type() protoreflect.EnumType {66return &file_subassembly_proto_enumTypes[0]67}6869func (x SubassemblyPhase) Number() protoreflect.EnumNumber {70return protoreflect.EnumNumber(x)71}7273// Deprecated: Use SubassemblyPhase.Descriptor instead.74func (SubassemblyPhase) EnumDescriptor() ([]byte, []int) {75return file_subassembly_proto_rawDescGZIP(), []int{0}76}7778type CreateSubassemblyRequest struct {79state protoimpl.MessageState80sizeCache protoimpl.SizeCache81unknownFields protoimpl.UnknownFields8283OciReference string `protobuf:"bytes,1,opt,name=oci_reference,json=ociReference,proto3" json:"oci_reference,omitempty"`84}8586func (x *CreateSubassemblyRequest) Reset() {87*x = CreateSubassemblyRequest{}88if protoimpl.UnsafeEnabled {89mi := &file_subassembly_proto_msgTypes[0]90ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))91ms.StoreMessageInfo(mi)92}93}9495func (x *CreateSubassemblyRequest) String() string {96return protoimpl.X.MessageStringOf(x)97}9899func (*CreateSubassemblyRequest) ProtoMessage() {}100101func (x *CreateSubassemblyRequest) ProtoReflect() protoreflect.Message {102mi := &file_subassembly_proto_msgTypes[0]103if protoimpl.UnsafeEnabled && x != nil {104ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))105if ms.LoadMessageInfo() == nil {106ms.StoreMessageInfo(mi)107}108return ms109}110return mi.MessageOf(x)111}112113// Deprecated: Use CreateSubassemblyRequest.ProtoReflect.Descriptor instead.114func (*CreateSubassemblyRequest) Descriptor() ([]byte, []int) {115return file_subassembly_proto_rawDescGZIP(), []int{0}116}117118func (x *CreateSubassemblyRequest) GetOciReference() string {119if x != nil {120return x.OciReference121}122return ""123}124125type CreateSubassemblyResponse struct {126state protoimpl.MessageState127sizeCache protoimpl.SizeCache128unknownFields protoimpl.UnknownFields129130Status *SubassemblyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`131}132133func (x *CreateSubassemblyResponse) Reset() {134*x = CreateSubassemblyResponse{}135if protoimpl.UnsafeEnabled {136mi := &file_subassembly_proto_msgTypes[1]137ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))138ms.StoreMessageInfo(mi)139}140}141142func (x *CreateSubassemblyResponse) String() string {143return protoimpl.X.MessageStringOf(x)144}145146func (*CreateSubassemblyResponse) ProtoMessage() {}147148func (x *CreateSubassemblyResponse) ProtoReflect() protoreflect.Message {149mi := &file_subassembly_proto_msgTypes[1]150if protoimpl.UnsafeEnabled && x != nil {151ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))152if ms.LoadMessageInfo() == nil {153ms.StoreMessageInfo(mi)154}155return ms156}157return mi.MessageOf(x)158}159160// Deprecated: Use CreateSubassemblyResponse.ProtoReflect.Descriptor instead.161func (*CreateSubassemblyResponse) Descriptor() ([]byte, []int) {162return file_subassembly_proto_rawDescGZIP(), []int{1}163}164165func (x *CreateSubassemblyResponse) GetStatus() *SubassemblyStatus {166if x != nil {167return x.Status168}169return nil170}171172type GetSubassemblyRequest struct {173state protoimpl.MessageState174sizeCache protoimpl.SizeCache175unknownFields protoimpl.UnknownFields176177OciReference string `protobuf:"bytes,1,opt,name=oci_reference,json=ociReference,proto3" json:"oci_reference,omitempty"`178}179180func (x *GetSubassemblyRequest) Reset() {181*x = GetSubassemblyRequest{}182if protoimpl.UnsafeEnabled {183mi := &file_subassembly_proto_msgTypes[2]184ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))185ms.StoreMessageInfo(mi)186}187}188189func (x *GetSubassemblyRequest) String() string {190return protoimpl.X.MessageStringOf(x)191}192193func (*GetSubassemblyRequest) ProtoMessage() {}194195func (x *GetSubassemblyRequest) ProtoReflect() protoreflect.Message {196mi := &file_subassembly_proto_msgTypes[2]197if protoimpl.UnsafeEnabled && x != nil {198ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))199if ms.LoadMessageInfo() == nil {200ms.StoreMessageInfo(mi)201}202return ms203}204return mi.MessageOf(x)205}206207// Deprecated: Use GetSubassemblyRequest.ProtoReflect.Descriptor instead.208func (*GetSubassemblyRequest) Descriptor() ([]byte, []int) {209return file_subassembly_proto_rawDescGZIP(), []int{2}210}211212func (x *GetSubassemblyRequest) GetOciReference() string {213if x != nil {214return x.OciReference215}216return ""217}218219type GetSubassemblyResponse struct {220state protoimpl.MessageState221sizeCache protoimpl.SizeCache222unknownFields protoimpl.UnknownFields223224Status *SubassemblyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`225}226227func (x *GetSubassemblyResponse) Reset() {228*x = GetSubassemblyResponse{}229if protoimpl.UnsafeEnabled {230mi := &file_subassembly_proto_msgTypes[3]231ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))232ms.StoreMessageInfo(mi)233}234}235236func (x *GetSubassemblyResponse) String() string {237return protoimpl.X.MessageStringOf(x)238}239240func (*GetSubassemblyResponse) ProtoMessage() {}241242func (x *GetSubassemblyResponse) ProtoReflect() protoreflect.Message {243mi := &file_subassembly_proto_msgTypes[3]244if protoimpl.UnsafeEnabled && x != nil {245ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))246if ms.LoadMessageInfo() == nil {247ms.StoreMessageInfo(mi)248}249return ms250}251return mi.MessageOf(x)252}253254// Deprecated: Use GetSubassemblyResponse.ProtoReflect.Descriptor instead.255func (*GetSubassemblyResponse) Descriptor() ([]byte, []int) {256return file_subassembly_proto_rawDescGZIP(), []int{3}257}258259func (x *GetSubassemblyResponse) GetStatus() *SubassemblyStatus {260if x != nil {261return x.Status262}263return nil264}265266type SubassemblyStatus struct {267state protoimpl.MessageState268sizeCache protoimpl.SizeCache269unknownFields protoimpl.UnknownFields270271// phase describes the state of the subassembly.272Phase SubassemblyPhase `protobuf:"varint,1,opt,name=phase,proto3,enum=builder.SubassemblyPhase" json:"phase,omitempty"`273// message details the subassembly's state274Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`275// digest is the digest of the subassembly file276// Expect this field to only be present when the phase is "available".277Digest string `protobuf:"bytes,3,opt,name=digest,proto3" json:"digest,omitempty"`278// URL is a URL from which the subassembly can be downloaded.279// Expect this field to only be present when the phase is "available".280Url string `protobuf:"bytes,4,opt,name=url,proto3" json:"url,omitempty"`281// manifest describes the requirements of the subassembly282// Expect this field to only be present when the phase is "available".283Manifest []byte `protobuf:"bytes,5,opt,name=manifest,proto3" json:"manifest,omitempty"`284}285286func (x *SubassemblyStatus) Reset() {287*x = SubassemblyStatus{}288if protoimpl.UnsafeEnabled {289mi := &file_subassembly_proto_msgTypes[4]290ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))291ms.StoreMessageInfo(mi)292}293}294295func (x *SubassemblyStatus) String() string {296return protoimpl.X.MessageStringOf(x)297}298299func (*SubassemblyStatus) ProtoMessage() {}300301func (x *SubassemblyStatus) ProtoReflect() protoreflect.Message {302mi := &file_subassembly_proto_msgTypes[4]303if protoimpl.UnsafeEnabled && x != nil {304ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))305if ms.LoadMessageInfo() == nil {306ms.StoreMessageInfo(mi)307}308return ms309}310return mi.MessageOf(x)311}312313// Deprecated: Use SubassemblyStatus.ProtoReflect.Descriptor instead.314func (*SubassemblyStatus) Descriptor() ([]byte, []int) {315return file_subassembly_proto_rawDescGZIP(), []int{4}316}317318func (x *SubassemblyStatus) GetPhase() SubassemblyPhase {319if x != nil {320return x.Phase321}322return SubassemblyPhase_SUBASSEMBLY_PHASE_UNSPECIFIED323}324325func (x *SubassemblyStatus) GetMessage() string {326if x != nil {327return x.Message328}329return ""330}331332func (x *SubassemblyStatus) GetDigest() string {333if x != nil {334return x.Digest335}336return ""337}338339func (x *SubassemblyStatus) GetUrl() string {340if x != nil {341return x.Url342}343return ""344}345346func (x *SubassemblyStatus) GetManifest() []byte {347if x != nil {348return x.Manifest349}350return nil351}352353var File_subassembly_proto protoreflect.FileDescriptor354355var file_subassembly_proto_rawDesc = []byte{3560x0a, 0x11, 0x73, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x2e, 0x70, 0x72,3570x6f, 0x74, 0x6f, 0x12, 0x07, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x22, 0x3f, 0x0a, 0x18,3580x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c,3590x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x63, 0x69, 0x5f,3600x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,3610x0c, 0x6f, 0x63, 0x69, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x4f, 0x0a,3620x19, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62,3630x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x06, 0x73, 0x74,3640x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x75, 0x69,3650x6c, 0x64, 0x65, 0x72, 0x2e, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79,3660x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x3c,3670x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79,3680x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x63, 0x69, 0x5f, 0x72,3690x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,3700x6f, 0x63, 0x69, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x4c, 0x0a, 0x16,3710x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x52, 0x65,3720x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,3730x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72,3740x2e, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x53, 0x74, 0x61, 0x74,3750x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x11, 0x53,3760x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,3770x12, 0x2f, 0x0a, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,3780x19, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73,3790x65, 0x6d, 0x62, 0x6c, 0x79, 0x50, 0x68, 0x61, 0x73, 0x65, 0x52, 0x05, 0x70, 0x68, 0x61, 0x73,3800x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,3810x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64,3820x69, 0x67, 0x65, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x69, 0x67,3830x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,3840x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x6e, 0x69, 0x66, 0x65, 0x73,3850x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x61, 0x6e, 0x69, 0x66, 0x65, 0x73,3860x74, 0x2a, 0x99, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c,3870x79, 0x50, 0x68, 0x61, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x41, 0x53, 0x53,3880x45, 0x4d, 0x42, 0x4c, 0x59, 0x5f, 0x50, 0x48, 0x41, 0x53, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50,3890x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x53, 0x55, 0x42,3900x41, 0x53, 0x53, 0x45, 0x4d, 0x42, 0x4c, 0x59, 0x5f, 0x50, 0x48, 0x41, 0x53, 0x45, 0x5f, 0x43,3910x52, 0x45, 0x41, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42,3920x41, 0x53, 0x53, 0x45, 0x4d, 0x42, 0x4c, 0x59, 0x5f, 0x50, 0x48, 0x41, 0x53, 0x45, 0x5f, 0x41,3930x56, 0x41, 0x49, 0x4c, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55,3940x42, 0x41, 0x53, 0x53, 0x45, 0x4d, 0x42, 0x4c, 0x59, 0x5f, 0x50, 0x48, 0x41, 0x53, 0x45, 0x5f,3950x55, 0x4e, 0x41, 0x56, 0x41, 0x49, 0x4c, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x03, 0x32, 0xc7, 0x01,3960x0a, 0x12, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x53, 0x65, 0x72,3970x76, 0x69, 0x63, 0x65, 0x12, 0x5c, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x75,3980x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x69, 0x6c,3990x64, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73,4000x65, 0x6d, 0x62, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x62,4010x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62,4020x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,4030x22, 0x00, 0x12, 0x53, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65,4040x6d, 0x62, 0x6c, 0x79, 0x12, 0x1e, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x47,4050x65, 0x74, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x52, 0x65, 0x71,4060x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x47,4070x65, 0x74, 0x53, 0x75, 0x62, 0x61, 0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x52, 0x65, 0x73,4080x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x2f, 0x5a, 0x2d, 0x67, 0x69, 0x74, 0x68, 0x75,4090x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f,4100x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2d, 0x62, 0x75, 0x69,4110x6c, 0x64, 0x65, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,412}413414var (415file_subassembly_proto_rawDescOnce sync.Once416file_subassembly_proto_rawDescData = file_subassembly_proto_rawDesc417)418419func file_subassembly_proto_rawDescGZIP() []byte {420file_subassembly_proto_rawDescOnce.Do(func() {421file_subassembly_proto_rawDescData = protoimpl.X.CompressGZIP(file_subassembly_proto_rawDescData)422})423return file_subassembly_proto_rawDescData424}425426var file_subassembly_proto_enumTypes = make([]protoimpl.EnumInfo, 1)427var file_subassembly_proto_msgTypes = make([]protoimpl.MessageInfo, 5)428var file_subassembly_proto_goTypes = []interface{}{429(SubassemblyPhase)(0), // 0: builder.SubassemblyPhase430(*CreateSubassemblyRequest)(nil), // 1: builder.CreateSubassemblyRequest431(*CreateSubassemblyResponse)(nil), // 2: builder.CreateSubassemblyResponse432(*GetSubassemblyRequest)(nil), // 3: builder.GetSubassemblyRequest433(*GetSubassemblyResponse)(nil), // 4: builder.GetSubassemblyResponse434(*SubassemblyStatus)(nil), // 5: builder.SubassemblyStatus435}436var file_subassembly_proto_depIdxs = []int32{4375, // 0: builder.CreateSubassemblyResponse.status:type_name -> builder.SubassemblyStatus4385, // 1: builder.GetSubassemblyResponse.status:type_name -> builder.SubassemblyStatus4390, // 2: builder.SubassemblyStatus.phase:type_name -> builder.SubassemblyPhase4401, // 3: builder.SubassemblyService.CreateSubassembly:input_type -> builder.CreateSubassemblyRequest4413, // 4: builder.SubassemblyService.GetSubassembly:input_type -> builder.GetSubassemblyRequest4422, // 5: builder.SubassemblyService.CreateSubassembly:output_type -> builder.CreateSubassemblyResponse4434, // 6: builder.SubassemblyService.GetSubassembly:output_type -> builder.GetSubassemblyResponse4445, // [5:7] is the sub-list for method output_type4453, // [3:5] is the sub-list for method input_type4463, // [3:3] is the sub-list for extension type_name4473, // [3:3] is the sub-list for extension extendee4480, // [0:3] is the sub-list for field type_name449}450451func init() { file_subassembly_proto_init() }452func file_subassembly_proto_init() {453if File_subassembly_proto != nil {454return455}456if !protoimpl.UnsafeEnabled {457file_subassembly_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {458switch v := v.(*CreateSubassemblyRequest); i {459case 0:460return &v.state461case 1:462return &v.sizeCache463case 2:464return &v.unknownFields465default:466return nil467}468}469file_subassembly_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {470switch v := v.(*CreateSubassemblyResponse); i {471case 0:472return &v.state473case 1:474return &v.sizeCache475case 2:476return &v.unknownFields477default:478return nil479}480}481file_subassembly_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {482switch v := v.(*GetSubassemblyRequest); i {483case 0:484return &v.state485case 1:486return &v.sizeCache487case 2:488return &v.unknownFields489default:490return nil491}492}493file_subassembly_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {494switch v := v.(*GetSubassemblyResponse); i {495case 0:496return &v.state497case 1:498return &v.sizeCache499case 2:500return &v.unknownFields501default:502return nil503}504}505file_subassembly_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {506switch v := v.(*SubassemblyStatus); i {507case 0:508return &v.state509case 1:510return &v.sizeCache511case 2:512return &v.unknownFields513default:514return nil515}516}517}518type x struct{}519out := protoimpl.TypeBuilder{520File: protoimpl.DescBuilder{521GoPackagePath: reflect.TypeOf(x{}).PkgPath(),522RawDescriptor: file_subassembly_proto_rawDesc,523NumEnums: 1,524NumMessages: 5,525NumExtensions: 0,526NumServices: 1,527},528GoTypes: file_subassembly_proto_goTypes,529DependencyIndexes: file_subassembly_proto_depIdxs,530EnumInfos: file_subassembly_proto_enumTypes,531MessageInfos: file_subassembly_proto_msgTypes,532}.Build()533File_subassembly_proto = out.File534file_subassembly_proto_rawDesc = nil535file_subassembly_proto_goTypes = nil536file_subassembly_proto_depIdxs = nil537}538539540