Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjramsay <jcai@gitlab.com>2019-10-18 02:34:00 +0300
committerjramsay <jcai@gitlab.com>2019-10-18 02:34:00 +0300
commitb3f0429462246ac709453c626d53202014ef2e86 (patch)
treeb74f9fbe6ee2a5e7ab99289e3fb8f13c9e9aafb8
parent67f4fe73a05048a1b90afece1d3cf6a5a395eda6 (diff)
SetInfoAttributes RPCjc-sync-info-attributes
-rw-r--r--internal/service/repository/info_attributes.go51
-rw-r--r--internal/service/repository/info_attributes_test.go47
-rw-r--r--proto/go/gitalypb/repository-service.pb.go594
-rw-r--r--proto/repository-service.proto13
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb8
-rw-r--r--ruby/proto/gitaly/repository-service_services_pb.rb1
6 files changed, 493 insertions, 221 deletions
diff --git a/internal/service/repository/info_attributes.go b/internal/service/repository/info_attributes.go
index b5399fce8..ff1b1aaca 100644
--- a/internal/service/repository/info_attributes.go
+++ b/internal/service/repository/info_attributes.go
@@ -2,10 +2,13 @@ package repository
import (
"io"
+ "io/ioutil"
"os"
"path"
+ "path/filepath"
"gitlab.com/gitlab-org/gitaly/internal/helper"
+ "gitlab.com/gitlab-org/gitaly/internal/tempdir"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"gitlab.com/gitlab-org/gitaly/streamio"
"google.golang.org/grpc/codes"
@@ -38,3 +41,51 @@ func (s *server) GetInfoAttributes(in *gitalypb.GetInfoAttributesRequest, stream
_, err = io.Copy(sw, f)
return err
}
+
+func (s *server) SetInfoAttributes(stream gitalypb.RepositoryService_SetInfoAttributesServer) error {
+ firstRequest, err := stream.Recv()
+ if err != nil {
+ return status.Errorf(codes.Internal, "CreateRepositoryFromBundle: first request failed: %v", err)
+ }
+
+ firstRead := false
+ reader := streamio.NewReader(func() ([]byte, error) {
+ if !firstRead {
+ firstRead = true
+ return firstRequest.GetAttributes(), nil
+ }
+
+ request, err := stream.Recv()
+ return request.GetAttributes(), err
+ })
+
+ ctx := stream.Context()
+
+ tempDir, err := tempdir.New(ctx, firstRequest.GetRepository())
+
+ if err != nil {
+ return helper.ErrInternalf("error when creating temporary directory: %v", err)
+ }
+
+ attributesFile, err := ioutil.TempFile(tempDir, "new-attributes")
+ if err != nil {
+ return helper.ErrInternalf("error when creating temp file: %v", err)
+ }
+
+ if _, err = io.Copy(attributesFile, reader); err != nil {
+ return helper.ErrInternalf("error copying data to file: %v", err)
+ }
+
+ attributesFile.Close()
+
+ repoPath, err := helper.GetRepoPath(firstRequest.GetRepository())
+ if err != nil {
+ return err
+ }
+
+ if err = os.Rename(attributesFile.Name(), filepath.Join(repoPath, "info", "attributes")); err != nil {
+ return helper.ErrInternalf("error renaming attributes file: %v", err)
+ }
+
+ return stream.SendAndClose(&gitalypb.SetInfoAttributesResponse{})
+}
diff --git a/internal/service/repository/info_attributes_test.go b/internal/service/repository/info_attributes_test.go
index cc867ed68..03aa0d495 100644
--- a/internal/service/repository/info_attributes_test.go
+++ b/internal/service/repository/info_attributes_test.go
@@ -5,6 +5,7 @@ import (
"io/ioutil"
"os"
"path"
+ "path/filepath"
"testing"
"github.com/stretchr/testify/require"
@@ -70,3 +71,49 @@ func TestGetInfoAttributesNonExisting(t *testing.T) {
require.Empty(t, message.GetAttributes())
}
+
+func TestSetInfoAttributes(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, repoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ stream, err := client.SetInfoAttributes(ctx)
+ require.NoError(t, err)
+
+ req := &gitalypb.SetInfoAttributesRequest{Repository: testRepo}
+
+ writer := streamio.NewWriter(func(p []byte) error {
+ req.Attributes = p
+
+ if err := stream.Send(req); err != nil {
+ return err
+ }
+
+ req = &gitalypb.SetInfoAttributesRequest{}
+ return nil
+ })
+
+ attributes := []byte("*.docx diff=word\n*.pbxproj binary\n")
+
+ _, err = writer.Write(attributes)
+ require.NoError(t, err)
+
+ _, err = stream.CloseAndRecv()
+ require.NoError(t, err)
+
+ attributesFile, err := os.Open(filepath.Join(repoPath, "info", "attributes"))
+ require.NoError(t, err)
+
+ attributesData, err := ioutil.ReadAll(attributesFile)
+ require.NoError(t, err)
+
+ require.Equal(t, attributes, attributesData)
+}
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index 18e8fc8d5..825481d4c 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -92,7 +92,7 @@ func (x GetRawChangesResponse_RawChange_Operation) String() string {
}
func (GetRawChangesResponse_RawChange_Operation) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{61, 0, 0}
+ return fileDescriptor_e9b1768cf174c79b, []int{63, 0, 0}
}
type RepositoryExistsRequest struct {
@@ -2445,6 +2445,84 @@ func (m *GetInfoAttributesResponse) GetAttributes() []byte {
return nil
}
+type SetInfoAttributesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ Attributes []byte `protobuf:"bytes,2,opt,name=attributes,proto3" json:"attributes,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SetInfoAttributesRequest) Reset() { *m = SetInfoAttributesRequest{} }
+func (m *SetInfoAttributesRequest) String() string { return proto.CompactTextString(m) }
+func (*SetInfoAttributesRequest) ProtoMessage() {}
+func (*SetInfoAttributesRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e9b1768cf174c79b, []int{54}
+}
+
+func (m *SetInfoAttributesRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SetInfoAttributesRequest.Unmarshal(m, b)
+}
+func (m *SetInfoAttributesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SetInfoAttributesRequest.Marshal(b, m, deterministic)
+}
+func (m *SetInfoAttributesRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SetInfoAttributesRequest.Merge(m, src)
+}
+func (m *SetInfoAttributesRequest) XXX_Size() int {
+ return xxx_messageInfo_SetInfoAttributesRequest.Size(m)
+}
+func (m *SetInfoAttributesRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SetInfoAttributesRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SetInfoAttributesRequest proto.InternalMessageInfo
+
+func (m *SetInfoAttributesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *SetInfoAttributesRequest) GetAttributes() []byte {
+ if m != nil {
+ return m.Attributes
+ }
+ return nil
+}
+
+type SetInfoAttributesResponse struct {
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SetInfoAttributesResponse) Reset() { *m = SetInfoAttributesResponse{} }
+func (m *SetInfoAttributesResponse) String() string { return proto.CompactTextString(m) }
+func (*SetInfoAttributesResponse) ProtoMessage() {}
+func (*SetInfoAttributesResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e9b1768cf174c79b, []int{55}
+}
+
+func (m *SetInfoAttributesResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SetInfoAttributesResponse.Unmarshal(m, b)
+}
+func (m *SetInfoAttributesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SetInfoAttributesResponse.Marshal(b, m, deterministic)
+}
+func (m *SetInfoAttributesResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SetInfoAttributesResponse.Merge(m, src)
+}
+func (m *SetInfoAttributesResponse) XXX_Size() int {
+ return xxx_messageInfo_SetInfoAttributesResponse.Size(m)
+}
+func (m *SetInfoAttributesResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_SetInfoAttributesResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SetInfoAttributesResponse proto.InternalMessageInfo
+
type CalculateChecksumRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -2456,7 +2534,7 @@ func (m *CalculateChecksumRequest) Reset() { *m = CalculateChecksumReque
func (m *CalculateChecksumRequest) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumRequest) ProtoMessage() {}
func (*CalculateChecksumRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{54}
+ return fileDescriptor_e9b1768cf174c79b, []int{56}
}
func (m *CalculateChecksumRequest) XXX_Unmarshal(b []byte) error {
@@ -2495,7 +2573,7 @@ func (m *CalculateChecksumResponse) Reset() { *m = CalculateChecksumResp
func (m *CalculateChecksumResponse) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumResponse) ProtoMessage() {}
func (*CalculateChecksumResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{55}
+ return fileDescriptor_e9b1768cf174c79b, []int{57}
}
func (m *CalculateChecksumResponse) XXX_Unmarshal(b []byte) error {
@@ -2534,7 +2612,7 @@ func (m *GetSnapshotRequest) Reset() { *m = GetSnapshotRequest{} }
func (m *GetSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotRequest) ProtoMessage() {}
func (*GetSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{56}
+ return fileDescriptor_e9b1768cf174c79b, []int{58}
}
func (m *GetSnapshotRequest) XXX_Unmarshal(b []byte) error {
@@ -2573,7 +2651,7 @@ func (m *GetSnapshotResponse) Reset() { *m = GetSnapshotResponse{} }
func (m *GetSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotResponse) ProtoMessage() {}
func (*GetSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{57}
+ return fileDescriptor_e9b1768cf174c79b, []int{59}
}
func (m *GetSnapshotResponse) XXX_Unmarshal(b []byte) error {
@@ -2614,7 +2692,7 @@ func (m *CreateRepositoryFromSnapshotRequest) Reset() { *m = CreateRepos
func (m *CreateRepositoryFromSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotRequest) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{58}
+ return fileDescriptor_e9b1768cf174c79b, []int{60}
}
func (m *CreateRepositoryFromSnapshotRequest) XXX_Unmarshal(b []byte) error {
@@ -2666,7 +2744,7 @@ func (m *CreateRepositoryFromSnapshotResponse) Reset() { *m = CreateRepo
func (m *CreateRepositoryFromSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotResponse) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{59}
+ return fileDescriptor_e9b1768cf174c79b, []int{61}
}
func (m *CreateRepositoryFromSnapshotResponse) XXX_Unmarshal(b []byte) error {
@@ -2700,7 +2778,7 @@ func (m *GetRawChangesRequest) Reset() { *m = GetRawChangesRequest{} }
func (m *GetRawChangesRequest) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesRequest) ProtoMessage() {}
func (*GetRawChangesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{60}
+ return fileDescriptor_e9b1768cf174c79b, []int{62}
}
func (m *GetRawChangesRequest) XXX_Unmarshal(b []byte) error {
@@ -2753,7 +2831,7 @@ func (m *GetRawChangesResponse) Reset() { *m = GetRawChangesResponse{} }
func (m *GetRawChangesResponse) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse) ProtoMessage() {}
func (*GetRawChangesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{61}
+ return fileDescriptor_e9b1768cf174c79b, []int{63}
}
func (m *GetRawChangesResponse) XXX_Unmarshal(b []byte) error {
@@ -2803,7 +2881,7 @@ func (m *GetRawChangesResponse_RawChange) Reset() { *m = GetRawChangesRe
func (m *GetRawChangesResponse_RawChange) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse_RawChange) ProtoMessage() {}
func (*GetRawChangesResponse_RawChange) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{61, 0}
+ return fileDescriptor_e9b1768cf174c79b, []int{63, 0}
}
func (m *GetRawChangesResponse_RawChange) XXX_Unmarshal(b []byte) error {
@@ -2909,7 +2987,7 @@ func (m *SearchFilesByNameRequest) Reset() { *m = SearchFilesByNameReque
func (m *SearchFilesByNameRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameRequest) ProtoMessage() {}
func (*SearchFilesByNameRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{62}
+ return fileDescriptor_e9b1768cf174c79b, []int{64}
}
func (m *SearchFilesByNameRequest) XXX_Unmarshal(b []byte) error {
@@ -2962,7 +3040,7 @@ func (m *SearchFilesByNameResponse) Reset() { *m = SearchFilesByNameResp
func (m *SearchFilesByNameResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameResponse) ProtoMessage() {}
func (*SearchFilesByNameResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{63}
+ return fileDescriptor_e9b1768cf174c79b, []int{65}
}
func (m *SearchFilesByNameResponse) XXX_Unmarshal(b []byte) error {
@@ -3004,7 +3082,7 @@ func (m *SearchFilesByContentRequest) Reset() { *m = SearchFilesByConten
func (m *SearchFilesByContentRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentRequest) ProtoMessage() {}
func (*SearchFilesByContentRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{64}
+ return fileDescriptor_e9b1768cf174c79b, []int{66}
}
func (m *SearchFilesByContentRequest) XXX_Unmarshal(b []byte) error {
@@ -3066,7 +3144,7 @@ func (m *SearchFilesByContentResponse) Reset() { *m = SearchFilesByConte
func (m *SearchFilesByContentResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentResponse) ProtoMessage() {}
func (*SearchFilesByContentResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{65}
+ return fileDescriptor_e9b1768cf174c79b, []int{67}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
@@ -3121,7 +3199,7 @@ func (m *PreFetchRequest) Reset() { *m = PreFetchRequest{} }
func (m *PreFetchRequest) String() string { return proto.CompactTextString(m) }
func (*PreFetchRequest) ProtoMessage() {}
func (*PreFetchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{66}
+ return fileDescriptor_e9b1768cf174c79b, []int{68}
}
func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
@@ -3173,7 +3251,7 @@ func (m *PreFetchResponse) Reset() { *m = PreFetchResponse{} }
func (m *PreFetchResponse) String() string { return proto.CompactTextString(m) }
func (*PreFetchResponse) ProtoMessage() {}
func (*PreFetchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{67}
+ return fileDescriptor_e9b1768cf174c79b, []int{69}
}
func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
@@ -3208,7 +3286,7 @@ func (m *Remote) Reset() { *m = Remote{} }
func (m *Remote) String() string { return proto.CompactTextString(m) }
func (*Remote) ProtoMessage() {}
func (*Remote) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{68}
+ return fileDescriptor_e9b1768cf174c79b, []int{70}
}
func (m *Remote) XXX_Unmarshal(b []byte) error {
@@ -3270,7 +3348,7 @@ func (m *FetchHTTPRemoteRequest) Reset() { *m = FetchHTTPRemoteRequest{}
func (m *FetchHTTPRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteRequest) ProtoMessage() {}
func (*FetchHTTPRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{69}
+ return fileDescriptor_e9b1768cf174c79b, []int{71}
}
func (m *FetchHTTPRemoteRequest) XXX_Unmarshal(b []byte) error {
@@ -3322,7 +3400,7 @@ func (m *FetchHTTPRemoteResponse) Reset() { *m = FetchHTTPRemoteResponse
func (m *FetchHTTPRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteResponse) ProtoMessage() {}
func (*FetchHTTPRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{70}
+ return fileDescriptor_e9b1768cf174c79b, []int{72}
}
func (m *FetchHTTPRemoteResponse) XXX_Unmarshal(b []byte) error {
@@ -3354,7 +3432,7 @@ func (m *GetObjectDirectorySizeRequest) Reset() { *m = GetObjectDirector
func (m *GetObjectDirectorySizeRequest) String() string { return proto.CompactTextString(m) }
func (*GetObjectDirectorySizeRequest) ProtoMessage() {}
func (*GetObjectDirectorySizeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{71}
+ return fileDescriptor_e9b1768cf174c79b, []int{73}
}
func (m *GetObjectDirectorySizeRequest) XXX_Unmarshal(b []byte) error {
@@ -3394,7 +3472,7 @@ func (m *GetObjectDirectorySizeResponse) Reset() { *m = GetObjectDirecto
func (m *GetObjectDirectorySizeResponse) String() string { return proto.CompactTextString(m) }
func (*GetObjectDirectorySizeResponse) ProtoMessage() {}
func (*GetObjectDirectorySizeResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{72}
+ return fileDescriptor_e9b1768cf174c79b, []int{74}
}
func (m *GetObjectDirectorySizeResponse) XXX_Unmarshal(b []byte) error {
@@ -3435,7 +3513,7 @@ func (m *CloneFromPoolRequest) Reset() { *m = CloneFromPoolRequest{} }
func (m *CloneFromPoolRequest) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolRequest) ProtoMessage() {}
func (*CloneFromPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{73}
+ return fileDescriptor_e9b1768cf174c79b, []int{75}
}
func (m *CloneFromPoolRequest) XXX_Unmarshal(b []byte) error {
@@ -3487,7 +3565,7 @@ func (m *CloneFromPoolResponse) Reset() { *m = CloneFromPoolResponse{} }
func (m *CloneFromPoolResponse) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolResponse) ProtoMessage() {}
func (*CloneFromPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{74}
+ return fileDescriptor_e9b1768cf174c79b, []int{76}
}
func (m *CloneFromPoolResponse) XXX_Unmarshal(b []byte) error {
@@ -3521,7 +3599,7 @@ func (m *CloneFromPoolInternalRequest) Reset() { *m = CloneFromPoolInter
func (m *CloneFromPoolInternalRequest) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolInternalRequest) ProtoMessage() {}
func (*CloneFromPoolInternalRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{75}
+ return fileDescriptor_e9b1768cf174c79b, []int{77}
}
func (m *CloneFromPoolInternalRequest) XXX_Unmarshal(b []byte) error {
@@ -3573,7 +3651,7 @@ func (m *CloneFromPoolInternalResponse) Reset() { *m = CloneFromPoolInte
func (m *CloneFromPoolInternalResponse) String() string { return proto.CompactTextString(m) }
func (*CloneFromPoolInternalResponse) ProtoMessage() {}
func (*CloneFromPoolInternalResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{76}
+ return fileDescriptor_e9b1768cf174c79b, []int{78}
}
func (m *CloneFromPoolInternalResponse) XXX_Unmarshal(b []byte) error {
@@ -3605,7 +3683,7 @@ func (m *RemoveRepositoryRequest) Reset() { *m = RemoveRepositoryRequest
func (m *RemoveRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*RemoveRepositoryRequest) ProtoMessage() {}
func (*RemoveRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{77}
+ return fileDescriptor_e9b1768cf174c79b, []int{79}
}
func (m *RemoveRepositoryRequest) XXX_Unmarshal(b []byte) error {
@@ -3643,7 +3721,7 @@ func (m *RemoveRepositoryResponse) Reset() { *m = RemoveRepositoryRespon
func (m *RemoveRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*RemoveRepositoryResponse) ProtoMessage() {}
func (*RemoveRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{78}
+ return fileDescriptor_e9b1768cf174c79b, []int{80}
}
func (m *RemoveRepositoryResponse) XXX_Unmarshal(b []byte) error {
@@ -3676,7 +3754,7 @@ func (m *RenameRepositoryRequest) Reset() { *m = RenameRepositoryRequest
func (m *RenameRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*RenameRepositoryRequest) ProtoMessage() {}
func (*RenameRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{79}
+ return fileDescriptor_e9b1768cf174c79b, []int{81}
}
func (m *RenameRepositoryRequest) XXX_Unmarshal(b []byte) error {
@@ -3721,7 +3799,7 @@ func (m *RenameRepositoryResponse) Reset() { *m = RenameRepositoryRespon
func (m *RenameRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*RenameRepositoryResponse) ProtoMessage() {}
func (*RenameRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_e9b1768cf174c79b, []int{80}
+ return fileDescriptor_e9b1768cf174c79b, []int{82}
}
func (m *RenameRepositoryResponse) XXX_Unmarshal(b []byte) error {
@@ -3800,6 +3878,8 @@ func init() {
proto.RegisterType((*FindLicenseResponse)(nil), "gitaly.FindLicenseResponse")
proto.RegisterType((*GetInfoAttributesRequest)(nil), "gitaly.GetInfoAttributesRequest")
proto.RegisterType((*GetInfoAttributesResponse)(nil), "gitaly.GetInfoAttributesResponse")
+ proto.RegisterType((*SetInfoAttributesRequest)(nil), "gitaly.SetInfoAttributesRequest")
+ proto.RegisterType((*SetInfoAttributesResponse)(nil), "gitaly.SetInfoAttributesResponse")
proto.RegisterType((*CalculateChecksumRequest)(nil), "gitaly.CalculateChecksumRequest")
proto.RegisterType((*CalculateChecksumResponse)(nil), "gitaly.CalculateChecksumResponse")
proto.RegisterType((*GetSnapshotRequest)(nil), "gitaly.GetSnapshotRequest")
@@ -3833,192 +3913,194 @@ func init() {
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 2952 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcb, 0x6f, 0x1c, 0xc7,
- 0xd1, 0xd7, 0x70, 0x49, 0xee, 0x6e, 0xed, 0x4a, 0x5a, 0xb6, 0x28, 0x71, 0x39, 0x22, 0x45, 0x69,
- 0x24, 0xcb, 0xf2, 0x8b, 0x92, 0xa9, 0x0f, 0xf8, 0x8c, 0xef, 0x01, 0x83, 0x6f, 0xd2, 0x12, 0x1f,
- 0x19, 0x52, 0x10, 0x2c, 0xc0, 0x18, 0x0f, 0x67, 0x7b, 0xb9, 0x13, 0xce, 0x4e, 0xaf, 0x7b, 0x7a,
- 0x49, 0xd3, 0xa7, 0x1c, 0x12, 0xc0, 0xa7, 0x20, 0x3e, 0x19, 0xc8, 0x39, 0x7f, 0x41, 0x6e, 0x41,
- 0x90, 0x7b, 0xee, 0x39, 0xe5, 0x5f, 0x31, 0x10, 0x24, 0xe8, 0xc7, 0x4e, 0xcf, 0xec, 0xcc, 0xac,
- 0x65, 0x2c, 0xe3, 0xdc, 0xa6, 0xab, 0xaa, 0xab, 0xaa, 0xab, 0x9f, 0xf5, 0xab, 0x81, 0x26, 0xc5,
- 0x3d, 0x12, 0xf9, 0x8c, 0xd0, 0xcb, 0x8f, 0x22, 0x4c, 0xcf, 0x7d, 0x0f, 0x2f, 0xf7, 0x28, 0x61,
- 0x04, 0x4d, 0x9f, 0xfa, 0xcc, 0x0d, 0x2e, 0xcd, 0x7a, 0xd4, 0x71, 0x29, 0x6e, 0x49, 0xaa, 0xb5,
- 0x07, 0x73, 0x76, 0xdc, 0x63, 0xf3, 0x6b, 0x3f, 0x62, 0x91, 0x8d, 0xbf, 0xea, 0xe3, 0x88, 0xa1,
- 0x15, 0x00, 0xad, 0xac, 0x69, 0xdc, 0x37, 0x9e, 0xd4, 0x56, 0xd0, 0xb2, 0xd4, 0xb2, 0xac, 0x3b,
- 0xd9, 0x09, 0x29, 0x6b, 0x05, 0x9a, 0x59, 0x75, 0x51, 0x8f, 0x84, 0x11, 0x46, 0x77, 0x60, 0x1a,
- 0x0b, 0x8a, 0xd0, 0x55, 0xb1, 0x55, 0xcb, 0xda, 0x17, 0x7d, 0x5c, 0xef, 0x6c, 0x37, 0xf4, 0x28,
- 0xee, 0xe2, 0x90, 0xb9, 0xc1, 0x38, 0x3e, 0xdc, 0x85, 0xf9, 0x1c, 0x7d, 0xd2, 0x09, 0x2b, 0x80,
- 0x19, 0xc9, 0xdc, 0xea, 0x07, 0xe3, 0x58, 0x41, 0x0f, 0xe1, 0xba, 0x47, 0xb1, 0xcb, 0xb0, 0x73,
- 0xe2, 0xb3, 0xae, 0xdb, 0x6b, 0x4e, 0x88, 0x41, 0xd5, 0x25, 0x71, 0x4d, 0xd0, 0xac, 0x59, 0x40,
- 0x49, 0x6b, 0xca, 0x87, 0x1e, 0xdc, 0xde, 0x76, 0xe9, 0x89, 0x7b, 0x8a, 0xd7, 0x49, 0x10, 0x60,
- 0x8f, 0xfd, 0xdb, 0xfd, 0x68, 0xc2, 0x9d, 0x61, 0x8b, 0xca, 0x97, 0x0d, 0xb8, 0xb1, 0x1e, 0x60,
- 0x37, 0xec, 0xf7, 0xc6, 0x09, 0xf9, 0x0c, 0xdc, 0x8c, 0xb5, 0x28, 0xc5, 0x2f, 0xe0, 0xb6, 0x16,
- 0x3e, 0xf2, 0xbf, 0xc1, 0xe3, 0xe8, 0xff, 0x10, 0xee, 0x0c, 0x2b, 0x53, 0x8b, 0x0a, 0xc1, 0x64,
- 0xe4, 0x7f, 0x83, 0x85, 0x9e, 0x92, 0x2d, 0xbe, 0xad, 0x33, 0x98, 0x5f, 0xed, 0xf5, 0x82, 0xcb,
- 0x6d, 0x9f, 0xb9, 0x8c, 0x51, 0xff, 0xa4, 0xcf, 0xf0, 0x38, 0xab, 0x1a, 0x99, 0x50, 0xa1, 0xf8,
- 0xdc, 0x8f, 0x7c, 0x12, 0x8a, 0xf0, 0xd6, 0xed, 0xb8, 0x6d, 0x2d, 0x80, 0x99, 0x67, 0x4c, 0x45,
- 0xe1, 0x4f, 0x13, 0x80, 0xb6, 0x30, 0xf3, 0x3a, 0x36, 0xee, 0x12, 0x36, 0x4e, 0x0c, 0xf8, 0xf6,
- 0xa1, 0x42, 0x89, 0x70, 0xa1, 0x6a, 0xab, 0x16, 0x9a, 0x85, 0xa9, 0x36, 0xa1, 0x1e, 0x6e, 0x96,
- 0xc4, 0xc4, 0xcb, 0x06, 0x9a, 0x83, 0x72, 0x48, 0x1c, 0xe6, 0x9e, 0x46, 0xcd, 0x49, 0xb9, 0xdb,
- 0x42, 0x72, 0xec, 0x9e, 0x46, 0xa8, 0x09, 0x65, 0xe6, 0x77, 0x31, 0xe9, 0xb3, 0xe6, 0xd4, 0x7d,
- 0xe3, 0xc9, 0x94, 0x3d, 0x68, 0xf2, 0x2e, 0x51, 0xd4, 0x71, 0xce, 0xf0, 0x65, 0x73, 0x5a, 0x5a,
- 0x88, 0xa2, 0xce, 0x0b, 0x7c, 0x89, 0x96, 0xa0, 0x76, 0x16, 0x92, 0x8b, 0xd0, 0xe9, 0x10, 0xbe,
- 0x7b, 0xcb, 0x82, 0x09, 0x82, 0xb4, 0xc3, 0x29, 0x68, 0x1e, 0x2a, 0x21, 0x71, 0x7a, 0xb4, 0x1f,
- 0xe2, 0x66, 0x55, 0x58, 0x2b, 0x87, 0xe4, 0x90, 0x37, 0xd1, 0x73, 0xb8, 0x2e, 0xfd, 0x74, 0x7a,
- 0x2e, 0x75, 0xbb, 0x51, 0x13, 0xc4, 0x60, 0x6f, 0xe8, 0xc1, 0x8a, 0xb8, 0xd4, 0xa5, 0xd0, 0xa1,
- 0x90, 0xf9, 0x6c, 0xb2, 0x52, 0x69, 0x54, 0xad, 0xdb, 0x70, 0x2b, 0x15, 0x3a, 0x15, 0xd2, 0x3d,
- 0x98, 0x5b, 0x17, 0x6b, 0x3b, 0x11, 0xa7, 0x31, 0x96, 0x96, 0x09, 0xcd, 0xac, 0x3a, 0x65, 0xea,
- 0x9f, 0x06, 0xcc, 0x6c, 0x63, 0xb6, 0x4a, 0xbd, 0x8e, 0x7f, 0x3e, 0xd6, 0xe4, 0xdd, 0x85, 0xaa,
- 0x47, 0xba, 0x5d, 0x9f, 0x39, 0x7e, 0x4b, 0xcd, 0x5f, 0x45, 0x12, 0x76, 0x5b, 0x7c, 0x66, 0x7b,
- 0x14, 0xb7, 0xfd, 0xaf, 0xc5, 0x14, 0x56, 0x6d, 0xd5, 0x42, 0x9f, 0xc0, 0x74, 0x9b, 0xd0, 0xae,
- 0xcb, 0xc4, 0x14, 0xde, 0x58, 0xb9, 0x3f, 0x30, 0x92, 0xf1, 0x69, 0x79, 0x4b, 0xc8, 0xd9, 0x4a,
- 0x9e, 0xef, 0x8a, 0x9e, 0xcb, 0x3a, 0x62, 0x86, 0xeb, 0xb6, 0xf8, 0xb6, 0x9e, 0xc3, 0xb4, 0x94,
- 0x42, 0x65, 0x28, 0xbd, 0xd9, 0x3d, 0x6c, 0x5c, 0xe3, 0x1f, 0xc7, 0xab, 0x76, 0xc3, 0x40, 0x00,
- 0xd3, 0xc7, 0xab, 0xb6, 0xb3, 0xfd, 0xa6, 0x31, 0x81, 0x6a, 0x50, 0xe6, 0xdf, 0x6b, 0x6f, 0x56,
- 0x1a, 0x25, 0xeb, 0x09, 0xa0, 0xa4, 0x31, 0xbd, 0xe9, 0x5a, 0x2e, 0x73, 0xc5, 0xd8, 0xeb, 0xb6,
- 0xf8, 0xe6, 0xd3, 0xb2, 0xe3, 0x46, 0x2f, 0x89, 0xe7, 0x06, 0x6b, 0xd4, 0x0d, 0xbd, 0xce, 0x58,
- 0x5b, 0xce, 0x7a, 0x06, 0xcd, 0xac, 0x3a, 0x65, 0x7e, 0x16, 0xa6, 0xce, 0xdd, 0xa0, 0x8f, 0xd5,
- 0x3d, 0x22, 0x1b, 0xd6, 0xdf, 0x0c, 0x68, 0x8a, 0xf5, 0x72, 0x44, 0xfa, 0xd4, 0xc3, 0xb2, 0xd7,
- 0x38, 0x73, 0xf6, 0x29, 0xcc, 0x44, 0x42, 0x95, 0x93, 0xe8, 0x3a, 0x51, 0xd8, 0xb5, 0x21, 0x85,
- 0xed, 0xd4, 0xd1, 0xac, 0x14, 0x9c, 0x08, 0x67, 0xc4, 0xf4, 0xd6, 0xed, 0x7a, 0x94, 0x70, 0x10,
- 0x2d, 0x02, 0x30, 0x97, 0x9e, 0x62, 0xe6, 0x50, 0xdc, 0x16, 0x13, 0x5d, 0xb7, 0xab, 0x92, 0x62,
- 0xe3, 0xb6, 0xf5, 0x1c, 0xe6, 0x73, 0x06, 0xa5, 0x6f, 0x54, 0x8a, 0xa3, 0x7e, 0xc0, 0x06, 0x37,
- 0xaa, 0x6c, 0x59, 0xab, 0x50, 0xdb, 0x8a, 0xbc, 0xb3, 0x71, 0xe2, 0xff, 0x08, 0xea, 0x52, 0x85,
- 0x8e, 0x39, 0xa6, 0x94, 0x50, 0x35, 0xe7, 0xb2, 0x61, 0xfd, 0xd1, 0x80, 0x9b, 0xaf, 0xa9, 0xcf,
- 0x37, 0x4f, 0x7b, 0x9c, 0x50, 0x37, 0xa0, 0xc4, 0x47, 0x2f, 0xcf, 0x56, 0xfe, 0x99, 0x3a, 0x72,
- 0x4b, 0xe9, 0x23, 0x17, 0x3d, 0x80, 0x3a, 0x09, 0x5a, 0x4e, 0xcc, 0x97, 0x41, 0xab, 0x91, 0xa0,
- 0x65, 0x0f, 0x44, 0xe2, 0x43, 0x71, 0x2a, 0x71, 0x28, 0x7e, 0x36, 0x59, 0x99, 0x6e, 0x94, 0xad,
- 0x26, 0x34, 0xb4, 0xcf, 0x72, 0x78, 0x9f, 0x4d, 0x56, 0x8c, 0xc6, 0x84, 0xd5, 0x81, 0xd9, 0x2d,
- 0x3f, 0x6c, 0xed, 0x61, 0x7a, 0x8a, 0xd7, 0xdc, 0x68, 0xac, 0x1d, 0xbf, 0x00, 0xd5, 0x81, 0x83,
- 0x51, 0x73, 0xe2, 0x7e, 0x89, 0x4f, 0x6b, 0x4c, 0xb0, 0x3e, 0x80, 0xdb, 0x43, 0x96, 0xf4, 0xd6,
- 0x3a, 0x71, 0x23, 0xb9, 0xb4, 0xab, 0xb6, 0xf8, 0xb6, 0xbe, 0x35, 0x60, 0x46, 0x9e, 0x51, 0x5b,
- 0x84, 0x9e, 0xfd, 0x27, 0x97, 0x34, 0x7f, 0xd0, 0x24, 0x3d, 0x89, 0x1f, 0x55, 0xf3, 0xbb, 0x91,
- 0x8d, 0xb9, 0xb3, 0xbb, 0xe1, 0x21, 0x25, 0xa7, 0x14, 0x47, 0xd1, 0x98, 0xc7, 0x25, 0x15, 0xea,
- 0x12, 0xc7, 0xa5, 0x24, 0xec, 0xb6, 0xac, 0xff, 0x07, 0x33, 0xcf, 0x9a, 0x0a, 0xe0, 0x12, 0xd4,
- 0xfc, 0xd0, 0xe9, 0x29, 0xb2, 0xda, 0x18, 0xe0, 0xc7, 0x82, 0xd2, 0xd9, 0xa3, 0xaf, 0xfa, 0x6e,
- 0xd4, 0xb9, 0x32, 0x67, 0x23, 0xa1, 0x2e, 0xe1, 0xac, 0x24, 0x0c, 0x9c, 0xcd, 0x5a, 0x7b, 0x5b,
- 0x67, 0xdb, 0x70, 0x6f, 0xf8, 0x76, 0xda, 0xa2, 0xa4, 0xfb, 0xca, 0x7e, 0x39, 0xe6, 0x76, 0xeb,
- 0xd3, 0x40, 0xf9, 0xca, 0x3f, 0xad, 0x07, 0xb0, 0x54, 0x68, 0x47, 0x4d, 0xf2, 0x2e, 0xdc, 0x92,
- 0x22, 0x6b, 0xfd, 0xb0, 0x15, 0x8c, 0xf5, 0x9c, 0x7b, 0x1f, 0x66, 0xd3, 0xaa, 0x46, 0xdc, 0x2b,
- 0xdf, 0x4e, 0x40, 0xe3, 0x08, 0xb3, 0x75, 0x12, 0xb6, 0xfd, 0xd3, 0x71, 0x06, 0xfd, 0x09, 0x94,
- 0x71, 0xc8, 0xa8, 0x8f, 0xe5, 0x76, 0xac, 0xad, 0xdc, 0x1b, 0x74, 0x18, 0x56, 0xbf, 0xbc, 0x19,
- 0x32, 0x7a, 0x69, 0x0f, 0xc4, 0xcd, 0xdf, 0x18, 0x30, 0x25, 0x48, 0x3c, 0x70, 0xfc, 0x79, 0x24,
- 0x37, 0x27, 0xff, 0x44, 0x8b, 0x50, 0x15, 0xd7, 0x8f, 0x13, 0x31, 0x2a, 0x03, 0xba, 0x73, 0xcd,
- 0xae, 0x08, 0xd2, 0x11, 0xa3, 0xe8, 0x01, 0xd4, 0x24, 0xdb, 0x0f, 0xd9, 0xf3, 0x15, 0x71, 0x92,
- 0x4d, 0xed, 0x5c, 0xb3, 0x41, 0x10, 0x77, 0x39, 0x0d, 0x2d, 0x81, 0x6c, 0x39, 0x27, 0x84, 0x04,
- 0xf2, 0xb1, 0xb6, 0x73, 0xcd, 0x96, 0x5a, 0xd7, 0x08, 0x09, 0xd6, 0xca, 0xea, 0xba, 0xb3, 0x6e,
- 0xc1, 0x4c, 0xc2, 0x55, 0x35, 0x2d, 0x5f, 0xc0, 0xad, 0x0d, 0x1c, 0x60, 0x86, 0xc7, 0x8f, 0x10,
- 0x82, 0xc9, 0x33, 0x7c, 0x29, 0xc3, 0x53, 0xb5, 0xc5, 0xb7, 0x75, 0x07, 0x66, 0xd3, 0xea, 0x95,
- 0x59, 0x8f, 0x27, 0x59, 0x11, 0x23, 0x14, 0xaf, 0xf7, 0x23, 0x46, 0xba, 0x3b, 0x84, 0x9c, 0x45,
- 0x63, 0x1a, 0x17, 0x73, 0x3f, 0x91, 0x98, 0xfb, 0x05, 0x30, 0xf3, 0x8c, 0x28, 0x17, 0xf6, 0xa1,
- 0xb9, 0xe6, 0x7a, 0x67, 0xfd, 0xde, 0xd5, 0x78, 0x60, 0x3d, 0x85, 0xf9, 0x1c, 0x7d, 0x23, 0x96,
- 0xe6, 0x19, 0x3c, 0xc8, 0xdb, 0x34, 0x63, 0xef, 0x8f, 0xdc, 0x58, 0x3c, 0x02, 0x6b, 0x94, 0x31,
- 0x15, 0x93, 0x1d, 0x40, 0xfc, 0x5e, 0x79, 0xe9, 0x7b, 0x38, 0x1c, 0xeb, 0xfe, 0xb2, 0xd6, 0xe1,
- 0x56, 0x4a, 0x93, 0x8a, 0xc3, 0x87, 0x80, 0x02, 0x49, 0x72, 0xa2, 0x0e, 0xa1, 0xcc, 0x09, 0xdd,
- 0xee, 0xe0, 0xb6, 0x6a, 0x28, 0xce, 0x11, 0x67, 0xec, 0xbb, 0x5d, 0x31, 0x45, 0xdb, 0x98, 0xed,
- 0x86, 0x6d, 0xb2, 0x7a, 0x15, 0x89, 0x98, 0xf5, 0xbf, 0x30, 0x9f, 0xa3, 0x4f, 0xb9, 0x76, 0x0f,
- 0x40, 0x67, 0x60, 0x6a, 0xa2, 0x12, 0x14, 0xee, 0xcc, 0xba, 0x1b, 0x78, 0xfd, 0xc0, 0x65, 0x78,
- 0xbd, 0x83, 0xbd, 0xb3, 0xa8, 0xdf, 0x1d, 0xc7, 0x99, 0xff, 0x86, 0xf9, 0x1c, 0x7d, 0xca, 0x19,
- 0x13, 0x2a, 0x9e, 0xa2, 0xa9, 0xe8, 0xc4, 0x6d, 0x3e, 0x49, 0xdb, 0x98, 0x1d, 0x85, 0x6e, 0x2f,
- 0xea, 0x90, 0x71, 0x92, 0x7f, 0xeb, 0x3d, 0xb8, 0x95, 0xd2, 0x34, 0x62, 0xb1, 0x7e, 0x67, 0xc0,
- 0xc3, 0xbc, 0x05, 0x74, 0x05, 0x6e, 0xf0, 0xfc, 0xaf, 0xc3, 0x58, 0xcf, 0xd1, 0x97, 0x4a, 0x99,
- 0xb7, 0x5f, 0xd1, 0x80, 0x5f, 0x8e, 0x82, 0xe5, 0xf6, 0x59, 0x47, 0xa5, 0x37, 0x42, 0x76, 0xb5,
- 0xcf, 0x3a, 0xd6, 0x63, 0x78, 0x34, 0xda, 0x25, 0xb5, 0xaa, 0x7f, 0x67, 0xc0, 0xec, 0x36, 0x66,
- 0xb6, 0x7b, 0xb1, 0xde, 0x71, 0xc3, 0xd3, 0xf1, 0x92, 0xf9, 0x87, 0x70, 0xbd, 0x4d, 0x49, 0xd7,
- 0x49, 0x65, 0xf4, 0x55, 0xbb, 0xce, 0x89, 0xf1, 0xfb, 0x71, 0x09, 0x6a, 0x8c, 0x38, 0xa9, 0x17,
- 0x68, 0xd5, 0x06, 0x46, 0x06, 0x02, 0xd6, 0x5f, 0x26, 0xe1, 0xf6, 0x90, 0x4b, 0x2a, 0xf8, 0x3b,
- 0x50, 0xa3, 0xee, 0x85, 0xe3, 0x49, 0x72, 0xd3, 0x10, 0x77, 0xcd, 0xbb, 0x89, 0xd4, 0x2d, 0xdb,
- 0x67, 0x39, 0x26, 0xd9, 0x40, 0x63, 0xae, 0xf9, 0xf7, 0x12, 0x54, 0x63, 0x0e, 0x4f, 0xcf, 0x4f,
- 0x02, 0x72, 0xc2, 0x1f, 0x19, 0x72, 0x41, 0x4d, 0xf3, 0xe6, 0x6e, 0x2b, 0x86, 0x40, 0x26, 0x34,
- 0x04, 0x82, 0x16, 0xa1, 0x12, 0xe2, 0x0b, 0x47, 0x24, 0x81, 0xc2, 0xf9, 0xb5, 0x89, 0xa6, 0x61,
- 0x97, 0x43, 0x7c, 0x71, 0xe8, 0x32, 0x9e, 0x74, 0x54, 0xf8, 0x0b, 0x5a, 0xb0, 0x27, 0x35, 0x9b,
- 0x04, 0x2d, 0xc1, 0x3e, 0x80, 0x2a, 0xe9, 0x61, 0xea, 0x32, 0x3e, 0xf6, 0x29, 0x91, 0x7b, 0x7e,
- 0xfc, 0x96, 0x03, 0x58, 0x3e, 0x18, 0x74, 0xb4, 0xb5, 0x0e, 0x1e, 0x73, 0x1e, 0x13, 0xad, 0x54,
- 0x02, 0x0c, 0x75, 0xea, 0x5e, 0xc4, 0xf2, 0x7c, 0x15, 0x71, 0xa7, 0xba, 0xa4, 0x85, 0x05, 0xc6,
- 0x30, 0x25, 0x1c, 0xda, 0x23, 0x2d, 0x2c, 0x00, 0x06, 0x7c, 0x21, 0x59, 0x15, 0xc9, 0x0a, 0xf1,
- 0x85, 0x60, 0x3d, 0x82, 0x1b, 0x83, 0x91, 0x3a, 0x27, 0x97, 0x7c, 0xe7, 0x57, 0x65, 0x96, 0xa5,
- 0xc6, 0xba, 0xc6, 0x69, 0x5c, 0x6a, 0x30, 0x60, 0x25, 0x05, 0x52, 0x4a, 0x0d, 0x59, 0x48, 0x59,
- 0x3e, 0x54, 0xb5, 0x3b, 0x35, 0x28, 0xbf, 0xda, 0x7f, 0xb1, 0x7f, 0xf0, 0x7a, 0xbf, 0x71, 0x0d,
- 0x55, 0x61, 0x6a, 0x75, 0x63, 0x63, 0x73, 0x43, 0xe6, 0xca, 0xeb, 0x07, 0x87, 0xbb, 0x9b, 0x1b,
- 0x32, 0x57, 0xde, 0xd8, 0x7c, 0xb9, 0x79, 0xbc, 0xb9, 0xd1, 0x28, 0xa1, 0x3a, 0x54, 0xf6, 0x0e,
- 0x36, 0x76, 0xb7, 0x38, 0x6b, 0x92, 0xb3, 0xec, 0xcd, 0xfd, 0xd5, 0xbd, 0xcd, 0x8d, 0xc6, 0x14,
- 0x6a, 0x40, 0xfd, 0xf8, 0xf3, 0xc3, 0x4d, 0x67, 0x7d, 0x67, 0x75, 0x7f, 0x7b, 0x73, 0xa3, 0x31,
- 0x6d, 0x9d, 0x43, 0xf3, 0x08, 0xbb, 0xd4, 0xeb, 0x6c, 0xf9, 0x01, 0x8e, 0xd6, 0x2e, 0xf9, 0x71,
- 0x39, 0xce, 0xaa, 0x9e, 0x85, 0xa9, 0xaf, 0xfa, 0x58, 0xbd, 0xe6, 0xab, 0xb6, 0x6c, 0x0c, 0xf2,
- 0xaa, 0x52, 0x9c, 0x57, 0x59, 0x1f, 0xc3, 0x7c, 0x8e, 0x5d, 0x9d, 0xe4, 0xb5, 0x39, 0x59, 0x2c,
- 0xda, 0xba, 0x2d, 0x1b, 0xd6, 0x1f, 0x0c, 0xb8, 0x9b, 0xea, 0xb3, 0x4e, 0x42, 0x86, 0x43, 0xf6,
- 0x33, 0xb8, 0x8b, 0xde, 0x83, 0x86, 0xd7, 0xe9, 0x87, 0x67, 0x98, 0xa7, 0x7b, 0xd2, 0x4b, 0x85,
- 0x67, 0xdd, 0x54, 0xf4, 0xf8, 0x90, 0xb8, 0x84, 0x85, 0x7c, 0x2f, 0xd5, 0xe0, 0x9a, 0x50, 0xee,
- 0xba, 0xcc, 0xeb, 0xc4, 0xc3, 0x1b, 0x34, 0x79, 0x0a, 0x2e, 0x3e, 0x9d, 0xc4, 0xa5, 0x5b, 0x15,
- 0x94, 0x0d, 0x97, 0xb9, 0xe8, 0x3e, 0xd4, 0x71, 0xd8, 0x72, 0x48, 0xdb, 0x11, 0x34, 0x85, 0xb3,
- 0x01, 0x0e, 0x5b, 0x07, 0xed, 0x3d, 0x4e, 0xb1, 0xfe, 0x6a, 0xc0, 0xcd, 0x43, 0x8a, 0x15, 0x5a,
- 0x25, 0xa3, 0x92, 0x9b, 0x6a, 0x19, 0x3f, 0x01, 0x3d, 0xf8, 0x14, 0x66, 0x62, 0x60, 0xe0, 0x6d,
- 0x72, 0xb5, 0x01, 0x66, 0x10, 0x2b, 0x78, 0x0e, 0x35, 0x72, 0xf2, 0x4b, 0xec, 0x31, 0xa7, 0xc7,
- 0x5f, 0x96, 0xa5, 0x74, 0xd7, 0x03, 0xc1, 0x3a, 0x24, 0x24, 0xb0, 0x81, 0xc4, 0xdf, 0x16, 0x82,
- 0x86, 0x1e, 0x89, 0x8a, 0xec, 0x77, 0x06, 0x4c, 0x4b, 0x10, 0x6e, 0x90, 0x39, 0x18, 0x71, 0xe6,
- 0xc0, 0x4f, 0x1f, 0xf1, 0x04, 0x90, 0x13, 0x29, 0xbe, 0xd1, 0xff, 0xc0, 0x7c, 0x7c, 0xe8, 0x13,
- 0xea, 0x7f, 0x23, 0x36, 0x94, 0xd3, 0xc1, 0x6e, 0x0b, 0x53, 0x75, 0x96, 0xce, 0x0d, 0x2e, 0x81,
- 0x98, 0xbf, 0x23, 0xd8, 0xe8, 0x1d, 0xb8, 0xd1, 0xf5, 0x29, 0x25, 0xd4, 0xa1, 0xb8, 0xdd, 0x75,
- 0x7b, 0x51, 0x73, 0x52, 0x3c, 0x47, 0xaf, 0x4b, 0xaa, 0x2d, 0x89, 0xd6, 0x6f, 0x0d, 0xb8, 0x23,
- 0xbc, 0xdc, 0x39, 0x3e, 0x3e, 0x1c, 0x1f, 0x5c, 0x7d, 0x9c, 0x02, 0x57, 0xb3, 0xf8, 0xe4, 0x00,
- 0x6c, 0x4d, 0xa0, 0xa7, 0xa5, 0x14, 0x7a, 0x6a, 0xcd, 0xc3, 0x5c, 0xc6, 0x1f, 0x15, 0xbf, 0x23,
- 0x58, 0xdc, 0xc6, 0x4c, 0x06, 0x7c, 0xc3, 0xa7, 0xd8, 0xbb, 0x0a, 0x48, 0xfc, 0xbf, 0xe0, 0x5e,
- 0x91, 0xd2, 0x11, 0xd0, 0xf8, 0xef, 0x0d, 0x98, 0x5d, 0x0f, 0x48, 0x88, 0xf9, 0x3d, 0x2b, 0x26,
- 0x7f, 0xac, 0xa0, 0x4d, 0x8a, 0x95, 0x35, 0x51, 0xb8, 0xb2, 0x04, 0x3f, 0x11, 0xdc, 0xd2, 0xa8,
- 0xe0, 0x5a, 0x73, 0x70, 0x7b, 0xc8, 0x37, 0x15, 0xc0, 0x3f, 0x1b, 0xb0, 0x90, 0xe2, 0xec, 0x86,
- 0x0c, 0xd3, 0xd0, 0xfd, 0x59, 0xbc, 0xcf, 0xdd, 0xc8, 0xa5, 0x9f, 0x80, 0x99, 0x2c, 0xc1, 0x62,
- 0x81, 0xf3, 0x1a, 0xd1, 0xe6, 0x91, 0x38, 0xbf, 0x3a, 0x44, 0x3b, 0xab, 0x4e, 0x99, 0xa2, 0xdc,
- 0x54, 0x28, 0xce, 0xfc, 0x2b, 0x30, 0x25, 0xee, 0x75, 0x1c, 0xb8, 0xcc, 0x3f, 0xc7, 0xf2, 0x31,
- 0xa1, 0xde, 0x52, 0x03, 0x22, 0xbf, 0x5a, 0xa5, 0x3f, 0xc3, 0x36, 0xa5, 0x3f, 0x2b, 0xff, 0x58,
- 0x14, 0xf5, 0xb8, 0x41, 0x65, 0x47, 0x16, 0x2c, 0xd1, 0x97, 0xd0, 0x18, 0xae, 0x22, 0xa2, 0xa5,
- 0xac, 0x2b, 0xa9, 0x72, 0xa5, 0x79, 0xbf, 0x58, 0x40, 0x0d, 0xbe, 0xfa, 0xc3, 0xf7, 0x4f, 0xa6,
- 0x2a, 0x13, 0xa6, 0xf1, 0x31, 0xf2, 0x06, 0x65, 0xc0, 0x44, 0x8d, 0x10, 0x25, 0x35, 0xe4, 0x96,
- 0x23, 0xcd, 0x07, 0x23, 0x24, 0x52, 0x46, 0x0c, 0x6e, 0x64, 0x1f, 0x40, 0x57, 0xff, 0xd0, 0x7c,
- 0xba, 0x6f, 0xa2, 0xfe, 0x68, 0x9a, 0x79, 0xac, 0xac, 0xbe, 0x37, 0x70, 0x23, 0x5d, 0xc5, 0x43,
- 0x8b, 0xf1, 0xab, 0x2c, 0xaf, 0x9e, 0x68, 0xde, 0x2b, 0x62, 0xe7, 0xea, 0x4e, 0x57, 0xd8, 0xb4,
- 0xee, 0xdc, 0x32, 0x9e, 0xd6, 0x9d, 0x5f, 0x98, 0x4b, 0xea, 0x6e, 0x03, 0xca, 0x96, 0xc8, 0x50,
- 0x1c, 0xcb, 0xc2, 0x5a, 0x9d, 0x69, 0x8d, 0x12, 0xc9, 0xda, 0xf9, 0x05, 0xd4, 0x12, 0x05, 0x23,
- 0x14, 0x47, 0x35, 0x5b, 0x80, 0x33, 0xef, 0xe6, 0xf2, 0xb2, 0x2a, 0xbf, 0x84, 0xc6, 0x70, 0x86,
- 0xa2, 0x57, 0x62, 0x41, 0x19, 0x4a, 0xaf, 0xc4, 0xc2, 0xc2, 0x52, 0xc2, 0xc2, 0x21, 0x80, 0xae,
- 0xb0, 0xe8, 0x45, 0x92, 0x29, 0xf1, 0xe8, 0x45, 0x92, 0x2d, 0xc8, 0x24, 0xf4, 0x3d, 0x33, 0xb8,
- 0xcf, 0xc3, 0xa5, 0x13, 0xed, 0x73, 0x41, 0x8d, 0x46, 0xfb, 0x5c, 0x54, 0x75, 0x19, 0xda, 0x3d,
- 0x99, 0xa2, 0x84, 0xde, 0x3d, 0x45, 0x45, 0x18, 0xbd, 0x7b, 0x0a, 0x2b, 0x1a, 0xc9, 0xc0, 0xfc,
- 0x1f, 0x4c, 0x6e, 0x45, 0xde, 0x19, 0xba, 0x15, 0xf7, 0xd2, 0x25, 0x0d, 0x73, 0x36, 0x4d, 0xcc,
- 0xf6, 0xde, 0x81, 0xca, 0x00, 0xe4, 0x47, 0x73, 0x03, 0xe1, 0xa1, 0x52, 0x85, 0xd9, 0xcc, 0x32,
- 0xb2, 0x9a, 0x5e, 0xc3, 0xf5, 0x14, 0x54, 0x8f, 0x16, 0x62, 0xdb, 0x39, 0xb5, 0x02, 0x73, 0xb1,
- 0x80, 0x9b, 0x8d, 0xe2, 0x3e, 0x80, 0xc6, 0xd2, 0xf5, 0xcc, 0x67, 0x90, 0x7e, 0x3d, 0xf3, 0x39,
- 0xd0, 0x7b, 0x7a, 0x9b, 0x65, 0x71, 0x71, 0xbd, 0xcd, 0x0a, 0x11, 0x7a, 0xbd, 0xcd, 0x8a, 0x61,
- 0xf5, 0xa4, 0xdf, 0xc2, 0xce, 0x30, 0xa4, 0x9d, 0xb4, 0x53, 0x00, 0xae, 0x27, 0xed, 0x14, 0x21,
- 0xe2, 0x49, 0x3b, 0xfd, 0x6c, 0xa1, 0x57, 0x61, 0xd2, 0xe8, 0x71, 0xd1, 0x0e, 0x4b, 0x83, 0xe3,
- 0xe6, 0xbb, 0x3f, 0x2a, 0x97, 0x0d, 0xe3, 0x2b, 0xa8, 0x27, 0xc1, 0x69, 0x74, 0x37, 0xad, 0x23,
- 0x85, 0xee, 0x99, 0x0b, 0xf9, 0x4c, 0xa5, 0xb5, 0xf2, 0xc3, 0xf7, 0x4f, 0x26, 0x2b, 0x46, 0xc3,
- 0x78, 0x66, 0xa0, 0x5f, 0x19, 0x60, 0x16, 0x03, 0x78, 0xe8, 0xbd, 0x51, 0x9e, 0xa6, 0x6d, 0xbe,
- 0xff, 0x36, 0xa2, 0x99, 0x71, 0x3d, 0x31, 0xd0, 0x0b, 0xa8, 0xc6, 0xf8, 0x31, 0x6a, 0x16, 0xa1,
- 0xdf, 0xe6, 0x7c, 0x0e, 0x27, 0x1b, 0xa6, 0x63, 0xa8, 0x27, 0x81, 0x61, 0x1d, 0xa6, 0x1c, 0x34,
- 0x5a, 0x87, 0x29, 0x17, 0x4b, 0x1e, 0x3a, 0xc2, 0x35, 0xea, 0x98, 0x38, 0xc2, 0x33, 0xa0, 0x66,
- 0xe2, 0x08, 0xcf, 0xc2, 0x94, 0xc9, 0x65, 0x84, 0x45, 0x0d, 0x3f, 0x8d, 0x19, 0xa2, 0x64, 0x29,
- 0x3d, 0x17, 0x9e, 0xd4, 0x87, 0x55, 0x21, 0xe0, 0x98, 0x30, 0xf2, 0xcc, 0xe0, 0x67, 0x62, 0x06,
- 0x0d, 0xd4, 0x66, 0x8a, 0x80, 0x47, 0x6d, 0xa6, 0x10, 0x4a, 0x4c, 0x8e, 0x65, 0x13, 0xca, 0xea,
- 0x3f, 0x1b, 0x74, 0x27, 0xee, 0x98, 0xfa, 0x7d, 0xc7, 0x9c, 0xcb, 0xd0, 0xb3, 0x51, 0x3e, 0x82,
- 0x5a, 0x02, 0x36, 0x44, 0xc9, 0x9b, 0x65, 0x08, 0x0e, 0xd4, 0x51, 0xce, 0xc1, 0x19, 0xd3, 0x01,
- 0xf8, 0x35, 0x7f, 0xa4, 0x8f, 0x40, 0xf3, 0xd0, 0x07, 0xa3, 0xd6, 0xed, 0xb0, 0xdd, 0x0f, 0xdf,
- 0x4e, 0x38, 0x3b, 0xb6, 0xcf, 0xe1, 0x7a, 0x0a, 0xa2, 0xd2, 0xc7, 0x75, 0x1e, 0x82, 0xa8, 0x8f,
- 0xeb, 0x5c, 0x5c, 0x2b, 0x3d, 0xc2, 0x10, 0x66, 0xf3, 0x10, 0x06, 0xf4, 0x50, 0x6f, 0x98, 0x42,
- 0x94, 0xc4, 0x7c, 0x34, 0x5a, 0x28, 0xcf, 0x1e, 0x86, 0x99, 0x0c, 0x56, 0xa3, 0x97, 0x54, 0x11,
- 0x7c, 0xa4, 0x97, 0x54, 0x21, 0xd0, 0x93, 0x36, 0xd3, 0x01, 0x94, 0xad, 0xb2, 0xa0, 0xc4, 0x53,
- 0xb7, 0xa0, 0xcc, 0xa3, 0xcf, 0xf3, 0x11, 0x45, 0x9a, 0xd4, 0x01, 0x84, 0x61, 0x26, 0x53, 0x61,
- 0xd1, 0x03, 0x2a, 0x2a, 0xe6, 0xe8, 0x01, 0x15, 0x96, 0x67, 0xd2, 0x03, 0xda, 0x81, 0xca, 0x00,
- 0xc3, 0xd0, 0x77, 0xff, 0x10, 0x3e, 0xa3, 0xef, 0xfe, 0x0c, 0xdc, 0x91, 0x58, 0x4c, 0x5f, 0xc0,
- 0xcd, 0xa1, 0xa4, 0x1e, 0xdd, 0x4b, 0x3d, 0x62, 0x32, 0xe8, 0x83, 0xb9, 0x54, 0xc8, 0xcf, 0xaa,
- 0xa7, 0x70, 0x27, 0x3f, 0x87, 0x47, 0xef, 0x24, 0x96, 0x65, 0x31, 0x70, 0x60, 0x3e, 0xfe, 0x31,
- 0xb1, 0xec, 0x11, 0xf2, 0x1a, 0xae, 0xa7, 0xb2, 0x51, 0xbd, 0x3f, 0xf2, 0x70, 0x01, 0xbd, 0x3f,
- 0xf2, 0x33, 0xf3, 0xc4, 0x60, 0xc8, 0x50, 0xf6, 0x3e, 0x48, 0x73, 0xd1, 0xa3, 0x5c, 0x15, 0x43,
- 0x29, 0xbc, 0xf9, 0xce, 0x8f, 0x48, 0xe5, 0xbe, 0xcd, 0x87, 0xf3, 0xdc, 0x64, 0x96, 0x98, 0x9b,
- 0x50, 0x27, 0xb3, 0xc4, 0x82, 0x14, 0x79, 0xd8, 0x42, 0x3a, 0x73, 0x4d, 0x5a, 0xc8, 0xcd, 0xa3,
- 0x93, 0x16, 0xf2, 0x93, 0xde, 0x84, 0x85, 0xb5, 0x67, 0x6f, 0xb8, 0x74, 0xe0, 0x9e, 0x2c, 0x7b,
- 0xa4, 0xfb, 0x54, 0x7e, 0x7e, 0x44, 0xe8, 0xe9, 0x53, 0xa9, 0xe3, 0xa9, 0xf8, 0x49, 0xf7, 0xe9,
- 0x29, 0x51, 0xed, 0xde, 0xc9, 0xc9, 0xb4, 0x20, 0x3d, 0xff, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0x76, 0x10, 0xee, 0x2b, 0xe9, 0x2b, 0x00, 0x00,
+ // 2984 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x73, 0x1b, 0xc7,
+ 0xf1, 0xd7, 0x12, 0x24, 0x01, 0x34, 0x40, 0x09, 0x1c, 0x52, 0x24, 0xb8, 0xe2, 0x43, 0x5a, 0xc9,
+ 0x32, 0xfd, 0xa2, 0x64, 0xea, 0x5f, 0xf5, 0x77, 0xe5, 0x51, 0x2e, 0xbe, 0x49, 0x4b, 0x7c, 0x64,
+ 0x41, 0x95, 0xca, 0xaa, 0x72, 0xad, 0x97, 0x8b, 0x01, 0xb1, 0xe1, 0x62, 0x07, 0x9e, 0x1d, 0x90,
+ 0xa6, 0x4f, 0x39, 0x24, 0x55, 0x3e, 0xa5, 0xe2, 0x93, 0xab, 0x72, 0xce, 0x27, 0xc8, 0x2d, 0x95,
+ 0xca, 0x3d, 0xf7, 0x9c, 0x72, 0xcf, 0xa7, 0xf0, 0x25, 0xa9, 0x79, 0x60, 0x1f, 0xd8, 0x5d, 0x48,
+ 0x2e, 0x30, 0xce, 0x6d, 0xa7, 0xbb, 0xa7, 0xbb, 0xa7, 0xe7, 0xd9, 0xbf, 0x5e, 0xa8, 0x53, 0xdc,
+ 0x25, 0x81, 0xcb, 0x08, 0xbd, 0xfe, 0x28, 0xc0, 0xf4, 0xd2, 0x75, 0xf0, 0x5a, 0x97, 0x12, 0x46,
+ 0xd0, 0xe4, 0xb9, 0xcb, 0x6c, 0xef, 0x5a, 0xaf, 0x06, 0x6d, 0x9b, 0xe2, 0xa6, 0xa4, 0x1a, 0x87,
+ 0x30, 0x6f, 0x86, 0x3d, 0x76, 0xbe, 0x76, 0x03, 0x16, 0x98, 0xf8, 0xab, 0x1e, 0x0e, 0x18, 0x5a,
+ 0x07, 0x88, 0x94, 0xd5, 0xb5, 0xfb, 0xda, 0x6a, 0x65, 0x1d, 0xad, 0x49, 0x2d, 0x6b, 0x51, 0x27,
+ 0x33, 0x26, 0x65, 0xac, 0x43, 0x3d, 0xad, 0x2e, 0xe8, 0x12, 0x3f, 0xc0, 0x68, 0x0e, 0x26, 0xb1,
+ 0xa0, 0x08, 0x5d, 0x25, 0x53, 0xb5, 0x8c, 0x23, 0xd1, 0xc7, 0x76, 0x2e, 0x0e, 0x7c, 0x87, 0xe2,
+ 0x0e, 0xf6, 0x99, 0xed, 0x8d, 0xe2, 0xc3, 0x3d, 0x58, 0xc8, 0xd0, 0x27, 0x9d, 0x30, 0x3c, 0x98,
+ 0x96, 0xcc, 0xdd, 0x9e, 0x37, 0x8a, 0x15, 0xf4, 0x10, 0xa6, 0x1c, 0x8a, 0x6d, 0x86, 0xad, 0x33,
+ 0x97, 0x75, 0xec, 0x6e, 0x7d, 0x4c, 0x0c, 0xaa, 0x2a, 0x89, 0x9b, 0x82, 0x66, 0xcc, 0x02, 0x8a,
+ 0x5b, 0x53, 0x3e, 0x74, 0xe1, 0xee, 0x9e, 0x4d, 0xcf, 0xec, 0x73, 0xbc, 0x45, 0x3c, 0x0f, 0x3b,
+ 0xec, 0xbf, 0xee, 0x47, 0x1d, 0xe6, 0x06, 0x2d, 0x2a, 0x5f, 0xb6, 0xe1, 0xf6, 0x96, 0x87, 0x6d,
+ 0xbf, 0xd7, 0x1d, 0x25, 0xe4, 0xd3, 0x70, 0x27, 0xd4, 0xa2, 0x14, 0x3f, 0x87, 0xbb, 0x91, 0x70,
+ 0xc3, 0xfd, 0x06, 0x8f, 0xa2, 0xff, 0x43, 0x98, 0x1b, 0x54, 0xa6, 0x16, 0x15, 0x82, 0xf1, 0xc0,
+ 0xfd, 0x06, 0x0b, 0x3d, 0x05, 0x53, 0x7c, 0x1b, 0x17, 0xb0, 0xb0, 0xd1, 0xed, 0x7a, 0xd7, 0x7b,
+ 0x2e, 0xb3, 0x19, 0xa3, 0xee, 0x59, 0x8f, 0xe1, 0x51, 0x56, 0x35, 0xd2, 0xa1, 0x44, 0xf1, 0xa5,
+ 0x1b, 0xb8, 0xc4, 0x17, 0xe1, 0xad, 0x9a, 0x61, 0xdb, 0x58, 0x04, 0x3d, 0xcb, 0x98, 0x8a, 0xc2,
+ 0x5f, 0xc6, 0x00, 0xed, 0x62, 0xe6, 0xb4, 0x4d, 0xdc, 0x21, 0x6c, 0x94, 0x18, 0xf0, 0xed, 0x43,
+ 0x85, 0x12, 0xe1, 0x42, 0xd9, 0x54, 0x2d, 0x34, 0x0b, 0x13, 0x2d, 0x42, 0x1d, 0x5c, 0x2f, 0x88,
+ 0x89, 0x97, 0x0d, 0x34, 0x0f, 0x45, 0x9f, 0x58, 0xcc, 0x3e, 0x0f, 0xea, 0xe3, 0x72, 0xb7, 0xf9,
+ 0xe4, 0xd4, 0x3e, 0x0f, 0x50, 0x1d, 0x8a, 0xcc, 0xed, 0x60, 0xd2, 0x63, 0xf5, 0x89, 0xfb, 0xda,
+ 0xea, 0x84, 0xd9, 0x6f, 0xf2, 0x2e, 0x41, 0xd0, 0xb6, 0x2e, 0xf0, 0x75, 0x7d, 0x52, 0x5a, 0x08,
+ 0x82, 0xf6, 0x73, 0x7c, 0x8d, 0x56, 0xa0, 0x72, 0xe1, 0x93, 0x2b, 0xdf, 0x6a, 0x13, 0xbe, 0x7b,
+ 0x8b, 0x82, 0x09, 0x82, 0xb4, 0xcf, 0x29, 0x68, 0x01, 0x4a, 0x3e, 0xb1, 0xba, 0xb4, 0xe7, 0xe3,
+ 0x7a, 0x59, 0x58, 0x2b, 0xfa, 0xe4, 0x84, 0x37, 0xd1, 0x33, 0x98, 0x92, 0x7e, 0x5a, 0x5d, 0x9b,
+ 0xda, 0x9d, 0xa0, 0x0e, 0x62, 0xb0, 0xb7, 0xa3, 0xc1, 0x8a, 0xb8, 0x54, 0xa5, 0xd0, 0x89, 0x90,
+ 0xf9, 0x6c, 0xbc, 0x54, 0xaa, 0x95, 0x8d, 0xbb, 0x30, 0x93, 0x08, 0x9d, 0x0a, 0xe9, 0x21, 0xcc,
+ 0x6f, 0x89, 0xb5, 0x1d, 0x8b, 0xd3, 0x08, 0x4b, 0x4b, 0x87, 0x7a, 0x5a, 0x9d, 0x32, 0xf5, 0x6f,
+ 0x0d, 0xa6, 0xf7, 0x30, 0xdb, 0xa0, 0x4e, 0xdb, 0xbd, 0x1c, 0x69, 0xf2, 0xee, 0x41, 0xd9, 0x21,
+ 0x9d, 0x8e, 0xcb, 0x2c, 0xb7, 0xa9, 0xe6, 0xaf, 0x24, 0x09, 0x07, 0x4d, 0x3e, 0xb3, 0x5d, 0x8a,
+ 0x5b, 0xee, 0xd7, 0x62, 0x0a, 0xcb, 0xa6, 0x6a, 0xa1, 0x4f, 0x60, 0xb2, 0x45, 0x68, 0xc7, 0x66,
+ 0x62, 0x0a, 0x6f, 0xaf, 0xdf, 0xef, 0x1b, 0x49, 0xf9, 0xb4, 0xb6, 0x2b, 0xe4, 0x4c, 0x25, 0xcf,
+ 0x77, 0x45, 0xd7, 0x66, 0x6d, 0x31, 0xc3, 0x55, 0x53, 0x7c, 0x1b, 0xcf, 0x60, 0x52, 0x4a, 0xa1,
+ 0x22, 0x14, 0x5e, 0x1f, 0x9c, 0xd4, 0x6e, 0xf1, 0x8f, 0xd3, 0x0d, 0xb3, 0xa6, 0x21, 0x80, 0xc9,
+ 0xd3, 0x0d, 0xd3, 0xda, 0x7b, 0x5d, 0x1b, 0x43, 0x15, 0x28, 0xf2, 0xef, 0xcd, 0xd7, 0xeb, 0xb5,
+ 0x82, 0xb1, 0x0a, 0x28, 0x6e, 0x2c, 0xda, 0x74, 0x4d, 0x9b, 0xd9, 0x62, 0xec, 0x55, 0x53, 0x7c,
+ 0xf3, 0x69, 0xd9, 0xb7, 0x83, 0x17, 0xc4, 0xb1, 0xbd, 0x4d, 0x6a, 0xfb, 0x4e, 0x7b, 0xa4, 0x2d,
+ 0x67, 0x3c, 0x85, 0x7a, 0x5a, 0x9d, 0x32, 0x3f, 0x0b, 0x13, 0x97, 0xb6, 0xd7, 0xc3, 0xea, 0x1e,
+ 0x91, 0x0d, 0xe3, 0x1f, 0x1a, 0xd4, 0xc5, 0x7a, 0x69, 0x90, 0x1e, 0x75, 0xb0, 0xec, 0x35, 0xca,
+ 0x9c, 0x7d, 0x0a, 0xd3, 0x81, 0x50, 0x65, 0xc5, 0xba, 0x8e, 0xe5, 0x76, 0xad, 0x49, 0x61, 0x33,
+ 0x71, 0x34, 0x2b, 0x05, 0x67, 0xc2, 0x19, 0x31, 0xbd, 0x55, 0xb3, 0x1a, 0xc4, 0x1c, 0x44, 0x4b,
+ 0x00, 0xcc, 0xa6, 0xe7, 0x98, 0x59, 0x14, 0xb7, 0xc4, 0x44, 0x57, 0xcd, 0xb2, 0xa4, 0x98, 0xb8,
+ 0x65, 0x3c, 0x83, 0x85, 0x8c, 0x41, 0x45, 0x37, 0x2a, 0xc5, 0x41, 0xcf, 0x63, 0xfd, 0x1b, 0x55,
+ 0xb6, 0x8c, 0x0d, 0xa8, 0xec, 0x06, 0xce, 0xc5, 0x28, 0xf1, 0x7f, 0x04, 0x55, 0xa9, 0x22, 0x8a,
+ 0x39, 0xa6, 0x94, 0x50, 0x35, 0xe7, 0xb2, 0x61, 0xfc, 0x59, 0x83, 0x3b, 0xaf, 0xa8, 0xcb, 0x37,
+ 0x4f, 0x6b, 0x94, 0x50, 0xd7, 0xa0, 0xc0, 0x47, 0x2f, 0xcf, 0x56, 0xfe, 0x99, 0x38, 0x72, 0x0b,
+ 0xc9, 0x23, 0x17, 0x3d, 0x80, 0x2a, 0xf1, 0x9a, 0x56, 0xc8, 0x97, 0x41, 0xab, 0x10, 0xaf, 0x69,
+ 0xf6, 0x45, 0xc2, 0x43, 0x71, 0x22, 0x76, 0x28, 0x7e, 0x36, 0x5e, 0x9a, 0xac, 0x15, 0x8d, 0x3a,
+ 0xd4, 0x22, 0x9f, 0xe5, 0xf0, 0x3e, 0x1b, 0x2f, 0x69, 0xb5, 0x31, 0xa3, 0x0d, 0xb3, 0xbb, 0xae,
+ 0xdf, 0x3c, 0xc4, 0xf4, 0x1c, 0x6f, 0xda, 0xc1, 0x48, 0x3b, 0x7e, 0x11, 0xca, 0x7d, 0x07, 0x83,
+ 0xfa, 0xd8, 0xfd, 0x02, 0x9f, 0xd6, 0x90, 0x60, 0x7c, 0x00, 0x77, 0x07, 0x2c, 0x45, 0x5b, 0xeb,
+ 0xcc, 0x0e, 0xe4, 0xd2, 0x2e, 0x9b, 0xe2, 0xdb, 0xf8, 0x56, 0x83, 0x69, 0x79, 0x46, 0xed, 0x12,
+ 0x7a, 0xf1, 0xbf, 0x5c, 0xd2, 0xfc, 0x41, 0x13, 0xf7, 0x24, 0x7c, 0x54, 0x2d, 0x1c, 0x04, 0x26,
+ 0xe6, 0xce, 0x1e, 0xf8, 0x27, 0x94, 0x9c, 0x53, 0x1c, 0x04, 0x23, 0x1e, 0x97, 0x54, 0xa8, 0x8b,
+ 0x1d, 0x97, 0x92, 0x70, 0xd0, 0x34, 0x7e, 0x09, 0x7a, 0x96, 0x35, 0x15, 0xc0, 0x15, 0xa8, 0xb8,
+ 0xbe, 0xd5, 0x55, 0x64, 0xb5, 0x31, 0xc0, 0x0d, 0x05, 0xa5, 0xb3, 0x8d, 0xaf, 0x7a, 0x76, 0xd0,
+ 0xbe, 0x31, 0x67, 0x03, 0xa1, 0x2e, 0xe6, 0xac, 0x24, 0xf4, 0x9d, 0x4d, 0x5b, 0x7b, 0x5b, 0x67,
+ 0x5b, 0xb0, 0x3c, 0x78, 0x3b, 0xed, 0x52, 0xd2, 0x79, 0x69, 0xbe, 0x18, 0x71, 0xbb, 0xf5, 0xa8,
+ 0xa7, 0x7c, 0xe5, 0x9f, 0xc6, 0x03, 0x58, 0xc9, 0xb5, 0xa3, 0x26, 0xf9, 0x00, 0x66, 0xa4, 0xc8,
+ 0x66, 0xcf, 0x6f, 0x7a, 0x23, 0x3d, 0xe7, 0xde, 0x87, 0xd9, 0xa4, 0xaa, 0x21, 0xf7, 0xca, 0xb7,
+ 0x63, 0x50, 0x6b, 0x60, 0xb6, 0x45, 0xfc, 0x96, 0x7b, 0x3e, 0xca, 0xa0, 0x3f, 0x81, 0x22, 0xf6,
+ 0x19, 0x75, 0xb1, 0xdc, 0x8e, 0x95, 0xf5, 0xe5, 0x7e, 0x87, 0x41, 0xf5, 0x6b, 0x3b, 0x3e, 0xa3,
+ 0xd7, 0x66, 0x5f, 0x5c, 0xff, 0x9d, 0x06, 0x13, 0x82, 0xc4, 0x03, 0xc7, 0x9f, 0x47, 0x72, 0x73,
+ 0xf2, 0x4f, 0xb4, 0x04, 0x65, 0x71, 0xfd, 0x58, 0x01, 0xa3, 0x32, 0xa0, 0xfb, 0xb7, 0xcc, 0x92,
+ 0x20, 0x35, 0x18, 0x45, 0x0f, 0xa0, 0x22, 0xd9, 0xae, 0xcf, 0x9e, 0xad, 0x8b, 0x93, 0x6c, 0x62,
+ 0xff, 0x96, 0x09, 0x82, 0x78, 0xc0, 0x69, 0x68, 0x05, 0x64, 0xcb, 0x3a, 0x23, 0xc4, 0x93, 0x8f,
+ 0xb5, 0xfd, 0x5b, 0xa6, 0xd4, 0xba, 0x49, 0x88, 0xb7, 0x59, 0x54, 0xd7, 0x9d, 0x31, 0x03, 0xd3,
+ 0x31, 0x57, 0xd5, 0xb4, 0x7c, 0x01, 0x33, 0xdb, 0xd8, 0xc3, 0x0c, 0x8f, 0x1e, 0x21, 0x04, 0xe3,
+ 0x17, 0xf8, 0x5a, 0x86, 0xa7, 0x6c, 0x8a, 0x6f, 0x63, 0x0e, 0x66, 0x93, 0xea, 0x95, 0x59, 0x87,
+ 0x27, 0x59, 0x01, 0x23, 0x14, 0x6f, 0xf5, 0x02, 0x46, 0x3a, 0xfb, 0x84, 0x5c, 0x04, 0x23, 0x1a,
+ 0x17, 0x73, 0x3f, 0x16, 0x9b, 0xfb, 0x45, 0xd0, 0xb3, 0x8c, 0x28, 0x17, 0x8e, 0xa0, 0xbe, 0x69,
+ 0x3b, 0x17, 0xbd, 0xee, 0xcd, 0x78, 0x60, 0x3c, 0x81, 0x85, 0x0c, 0x7d, 0x43, 0x96, 0xe6, 0x05,
+ 0x3c, 0xc8, 0xda, 0x34, 0x23, 0xef, 0x8f, 0xcc, 0x58, 0x3c, 0x02, 0x63, 0x98, 0x31, 0x15, 0x93,
+ 0x7d, 0x40, 0xfc, 0x5e, 0x79, 0xe1, 0x3a, 0xd8, 0x1f, 0xe9, 0xfe, 0x32, 0xb6, 0x60, 0x26, 0xa1,
+ 0x49, 0xc5, 0xe1, 0x43, 0x40, 0x9e, 0x24, 0x59, 0x41, 0x9b, 0x50, 0x66, 0xf9, 0x76, 0xa7, 0x7f,
+ 0x5b, 0xd5, 0x14, 0xa7, 0xc1, 0x19, 0x47, 0x76, 0x47, 0x4c, 0xd1, 0x1e, 0x66, 0x07, 0x7e, 0x8b,
+ 0x6c, 0xdc, 0x44, 0x22, 0x66, 0xfc, 0x1c, 0x16, 0x32, 0xf4, 0x29, 0xd7, 0x96, 0x01, 0xa2, 0x0c,
+ 0x4c, 0x4d, 0x54, 0x8c, 0x62, 0xf8, 0x50, 0x6f, 0xdc, 0xa0, 0x33, 0x03, 0xf6, 0xc6, 0x52, 0xf6,
+ 0xee, 0xc1, 0x42, 0x23, 0xcf, 0x59, 0x1e, 0x99, 0x2d, 0xdb, 0x73, 0x7a, 0x9e, 0xcd, 0xf0, 0x56,
+ 0x1b, 0x3b, 0x17, 0x41, 0xaf, 0x33, 0x4a, 0x64, 0xfe, 0x1f, 0x16, 0x32, 0xf4, 0xa9, 0xc8, 0xe8,
+ 0x50, 0x72, 0x14, 0x4d, 0x4d, 0x55, 0xd8, 0xe6, 0x2b, 0x66, 0x0f, 0xb3, 0x86, 0x6f, 0x77, 0x83,
+ 0x36, 0x19, 0x05, 0x89, 0x30, 0xde, 0x83, 0x99, 0x84, 0xa6, 0x21, 0x3b, 0xe7, 0x3b, 0x0d, 0x1e,
+ 0x66, 0xad, 0xe6, 0x1b, 0x70, 0x83, 0x27, 0xa3, 0x6d, 0xc6, 0xba, 0x56, 0x74, 0xc3, 0x15, 0x79,
+ 0xfb, 0x25, 0xf5, 0xf8, 0x4d, 0x2d, 0x58, 0x76, 0x8f, 0xb5, 0x55, 0xae, 0x25, 0x64, 0x37, 0x7a,
+ 0xac, 0x6d, 0x3c, 0x86, 0x47, 0xc3, 0x5d, 0x52, 0x33, 0xf7, 0x07, 0x0d, 0x66, 0xf7, 0x30, 0x33,
+ 0xed, 0xab, 0xad, 0xb6, 0xed, 0x9f, 0x8f, 0xb6, 0x86, 0x1e, 0xc2, 0x54, 0x8b, 0x92, 0x8e, 0x95,
+ 0x80, 0x17, 0xca, 0x66, 0x95, 0x13, 0xc3, 0xc7, 0xec, 0x0a, 0x54, 0x18, 0xb1, 0x12, 0xcf, 0xe1,
+ 0xb2, 0x09, 0x8c, 0xf4, 0x05, 0x8c, 0xbf, 0x8d, 0xc3, 0xdd, 0x01, 0x97, 0x54, 0xf0, 0xf7, 0xa1,
+ 0x42, 0xed, 0x2b, 0xcb, 0x91, 0xe4, 0xba, 0x26, 0x2e, 0xbe, 0x77, 0x63, 0x79, 0x64, 0xba, 0xcf,
+ 0x5a, 0x48, 0x32, 0x81, 0x86, 0x5c, 0xfd, 0x9f, 0x05, 0x28, 0x87, 0x1c, 0x34, 0x0f, 0xc5, 0x33,
+ 0x8f, 0x9c, 0xf1, 0x17, 0x8f, 0x5c, 0x50, 0x93, 0xbc, 0x79, 0xd0, 0x0c, 0xf1, 0x98, 0xb1, 0x08,
+ 0x8f, 0x41, 0x4b, 0x50, 0xf2, 0xf1, 0x95, 0x25, 0x32, 0x52, 0xe1, 0xfc, 0xe6, 0x58, 0x5d, 0x33,
+ 0x8b, 0x3e, 0xbe, 0x3a, 0xb1, 0x19, 0xcf, 0x80, 0x4a, 0xfc, 0x39, 0x2f, 0xd8, 0xe3, 0x11, 0x9b,
+ 0x78, 0x4d, 0xc1, 0x3e, 0x86, 0x32, 0xe9, 0x62, 0x6a, 0x33, 0x3e, 0xf6, 0x09, 0x91, 0x08, 0x7f,
+ 0xfc, 0x96, 0x03, 0x58, 0x3b, 0xee, 0x77, 0x34, 0x23, 0x1d, 0x3c, 0xe6, 0x3c, 0x26, 0x91, 0x52,
+ 0x89, 0x76, 0x54, 0xa9, 0x7d, 0x15, 0xca, 0xf3, 0x55, 0xc4, 0x9d, 0xea, 0x90, 0x26, 0x16, 0x80,
+ 0xc7, 0x84, 0x70, 0xe8, 0x90, 0x34, 0xb1, 0x40, 0x3b, 0xf0, 0x95, 0x64, 0x95, 0x24, 0xcb, 0xc7,
+ 0x57, 0x82, 0xf5, 0x08, 0x6e, 0xf7, 0x47, 0x6a, 0x9d, 0x5d, 0xf3, 0x63, 0xa1, 0x2c, 0x53, 0x3e,
+ 0x35, 0xd6, 0x4d, 0x4e, 0xe3, 0x52, 0xfd, 0x01, 0x2b, 0x29, 0x90, 0x52, 0x6a, 0xc8, 0x42, 0xca,
+ 0x70, 0xa1, 0x1c, 0xb9, 0x53, 0x81, 0xe2, 0xcb, 0xa3, 0xe7, 0x47, 0xc7, 0xaf, 0x8e, 0x6a, 0xb7,
+ 0x50, 0x19, 0x26, 0x36, 0xb6, 0xb7, 0x77, 0xb6, 0x65, 0xe2, 0xbe, 0x75, 0x7c, 0x72, 0xb0, 0xb3,
+ 0x2d, 0x13, 0xf7, 0xed, 0x9d, 0x17, 0x3b, 0xa7, 0x3b, 0xdb, 0xb5, 0x02, 0xaa, 0x42, 0xe9, 0xf0,
+ 0x78, 0xfb, 0x60, 0x97, 0xb3, 0xc6, 0x39, 0xcb, 0xdc, 0x39, 0xda, 0x38, 0xdc, 0xd9, 0xae, 0x4d,
+ 0xa0, 0x1a, 0x54, 0x4f, 0x3f, 0x3f, 0xd9, 0xb1, 0xb6, 0xf6, 0x37, 0x8e, 0xf6, 0x76, 0xb6, 0x6b,
+ 0x93, 0xc6, 0x25, 0x3f, 0x19, 0x6d, 0xea, 0xb4, 0x77, 0x5d, 0x0f, 0x07, 0x9b, 0xd7, 0xfc, 0xec,
+ 0x1e, 0x65, 0x55, 0xcf, 0xc2, 0xc4, 0x57, 0x3d, 0xac, 0x52, 0x8b, 0xb2, 0x29, 0x1b, 0xfd, 0x24,
+ 0xaf, 0x10, 0x26, 0x79, 0xc6, 0xc7, 0xfc, 0x84, 0x4c, 0xd9, 0x8d, 0x32, 0xce, 0x16, 0x27, 0x8b,
+ 0x45, 0x5b, 0x35, 0x65, 0xc3, 0xf8, 0x93, 0x06, 0xf7, 0x12, 0x7d, 0xb6, 0x88, 0xcf, 0xb0, 0xcf,
+ 0x7e, 0x02, 0x77, 0xd1, 0x7b, 0x50, 0x73, 0xda, 0x3d, 0xff, 0x02, 0xf3, 0xdc, 0x53, 0x7a, 0xa9,
+ 0xc0, 0xb5, 0x3b, 0x8a, 0x1e, 0x1e, 0x12, 0xd7, 0xb0, 0x98, 0xed, 0xa5, 0x1a, 0x5c, 0x1d, 0x8a,
+ 0x1d, 0x9b, 0x39, 0xed, 0x70, 0x78, 0xfd, 0x26, 0x5a, 0x02, 0x10, 0x9f, 0x56, 0xec, 0x05, 0x50,
+ 0x16, 0x94, 0x6d, 0x9b, 0xd9, 0xe8, 0x3e, 0x54, 0xb1, 0xdf, 0xb4, 0x48, 0xcb, 0x12, 0x34, 0x05,
+ 0xfa, 0x01, 0xf6, 0x9b, 0xc7, 0xad, 0x43, 0x4e, 0x31, 0xfe, 0xae, 0xc1, 0x9d, 0x13, 0x8a, 0x15,
+ 0x74, 0x26, 0xa3, 0x92, 0x99, 0xf7, 0x69, 0x3f, 0x02, 0xca, 0xf8, 0x14, 0xa6, 0x43, 0x94, 0xe2,
+ 0x6d, 0x12, 0xc7, 0x3e, 0x80, 0x11, 0x2a, 0x78, 0x06, 0x15, 0x72, 0xf6, 0x6b, 0xec, 0x30, 0xab,
+ 0xcb, 0x9f, 0xb9, 0x85, 0x64, 0xd7, 0x63, 0xc1, 0x3a, 0x21, 0xc4, 0x33, 0x81, 0x84, 0xdf, 0x06,
+ 0x82, 0x5a, 0x34, 0x12, 0x15, 0xd9, 0xef, 0x34, 0x98, 0x94, 0x88, 0x60, 0x3f, 0x8d, 0xd1, 0xc2,
+ 0x34, 0x86, 0x9f, 0x3e, 0xe2, 0x3d, 0x22, 0x27, 0x52, 0x7c, 0xa3, 0x9f, 0xc1, 0x42, 0x78, 0xe8,
+ 0x13, 0xea, 0x7e, 0x23, 0x36, 0x94, 0xd5, 0xc6, 0x76, 0x13, 0x53, 0x75, 0x96, 0xce, 0xf7, 0x2f,
+ 0x81, 0x90, 0xbf, 0x2f, 0xd8, 0xe8, 0x1d, 0xb8, 0xdd, 0x71, 0x29, 0x25, 0xd4, 0xa2, 0xb8, 0xd5,
+ 0xb1, 0xbb, 0x41, 0x7d, 0x5c, 0xbc, 0x8d, 0xa7, 0x24, 0xd5, 0x94, 0x44, 0xe3, 0xf7, 0x1a, 0xcc,
+ 0x09, 0x2f, 0xf7, 0x4f, 0x4f, 0x4f, 0x46, 0x47, 0x7a, 0x1f, 0x27, 0x90, 0xde, 0x34, 0x58, 0xda,
+ 0x47, 0x7e, 0x63, 0x50, 0x6e, 0x21, 0x01, 0xe5, 0x1a, 0x0b, 0x30, 0x9f, 0xf2, 0x47, 0xc5, 0xaf,
+ 0x01, 0x4b, 0x7b, 0x98, 0xc9, 0x80, 0x6f, 0xbb, 0x14, 0x3b, 0x37, 0x81, 0xcf, 0xff, 0x1f, 0x2c,
+ 0xe7, 0x29, 0x1d, 0x82, 0xd3, 0xff, 0x51, 0x83, 0xd9, 0x2d, 0x8f, 0xf8, 0x98, 0xdf, 0xb3, 0x62,
+ 0xf2, 0x47, 0x0a, 0xda, 0xb8, 0x58, 0x59, 0x63, 0xb9, 0x2b, 0x4b, 0xf0, 0x63, 0xc1, 0x2d, 0x0c,
+ 0x0b, 0xae, 0x31, 0x0f, 0x77, 0x07, 0x7c, 0x53, 0x01, 0xfc, 0xab, 0x06, 0x8b, 0x09, 0xce, 0x81,
+ 0xcf, 0x30, 0xf5, 0xed, 0x9f, 0xc4, 0xfb, 0xcc, 0x8d, 0x5c, 0xf8, 0x11, 0x00, 0xce, 0x0a, 0x2c,
+ 0xe5, 0x38, 0x1f, 0xc1, 0xeb, 0x3c, 0x12, 0x97, 0x37, 0x07, 0xaf, 0xa7, 0xd5, 0x29, 0x53, 0x94,
+ 0x9b, 0xf2, 0xc5, 0x99, 0x7f, 0x03, 0xa6, 0xc4, 0xbd, 0x8e, 0x3d, 0x9b, 0xb9, 0x97, 0x58, 0x3e,
+ 0x26, 0xd4, 0x5b, 0xaa, 0x4f, 0xe4, 0x57, 0xab, 0xf4, 0x67, 0xd0, 0xa6, 0xf4, 0x67, 0xfd, 0x5f,
+ 0xcb, 0xa2, 0x38, 0xd8, 0x2f, 0x33, 0xc9, 0xea, 0x29, 0xfa, 0x12, 0x6a, 0x83, 0x25, 0x4d, 0xb4,
+ 0x92, 0x76, 0x25, 0x51, 0x3b, 0xd5, 0xef, 0xe7, 0x0b, 0xa8, 0xc1, 0x97, 0x7f, 0xf8, 0x7e, 0x75,
+ 0xa2, 0x34, 0xa6, 0x6b, 0x1f, 0x23, 0xa7, 0x5f, 0x93, 0x8c, 0x15, 0x2c, 0x51, 0x5c, 0x43, 0x66,
+ 0x6d, 0x54, 0x7f, 0x30, 0x44, 0x22, 0x61, 0x44, 0xe3, 0x46, 0x8e, 0x00, 0xa2, 0x52, 0x24, 0x5a,
+ 0x48, 0xf6, 0x8d, 0x15, 0x43, 0x75, 0x3d, 0x8b, 0x95, 0xd6, 0xf7, 0x1a, 0x6e, 0x27, 0x4b, 0x8a,
+ 0x68, 0x29, 0x7c, 0x95, 0x65, 0x15, 0x37, 0xf5, 0xe5, 0x3c, 0x76, 0xa6, 0xee, 0x64, 0xb9, 0x2f,
+ 0xd2, 0x9d, 0x59, 0x53, 0x8c, 0x74, 0x67, 0x57, 0x09, 0xe3, 0xba, 0x5b, 0x80, 0xd2, 0xf5, 0x3a,
+ 0x14, 0xc6, 0x32, 0xb7, 0x70, 0xa8, 0x1b, 0xc3, 0x44, 0xd2, 0x76, 0x7e, 0x05, 0x95, 0x58, 0xf5,
+ 0x0a, 0x85, 0x51, 0x4d, 0x57, 0x03, 0xf5, 0x7b, 0x99, 0xbc, 0xb4, 0xca, 0x2f, 0xa1, 0x36, 0x98,
+ 0xa1, 0x44, 0x2b, 0x31, 0xa7, 0x26, 0x16, 0xad, 0xc4, 0xdc, 0x2a, 0x57, 0xcc, 0xc2, 0x09, 0x40,
+ 0x54, 0xee, 0x89, 0x16, 0x49, 0xaa, 0xde, 0x14, 0x2d, 0x92, 0x74, 0x75, 0x28, 0xa6, 0xef, 0xa9,
+ 0xc6, 0x7d, 0x1e, 0xac, 0xe3, 0x44, 0x3e, 0xe7, 0x14, 0x8c, 0x22, 0x9f, 0xf3, 0x4a, 0x40, 0x03,
+ 0xbb, 0x27, 0x55, 0x21, 0x89, 0x76, 0x4f, 0x5e, 0x45, 0x28, 0xda, 0x3d, 0xb9, 0xe5, 0x95, 0x78,
+ 0x60, 0x7e, 0x01, 0xe3, 0xbb, 0x81, 0x73, 0x81, 0x66, 0xc2, 0x5e, 0x51, 0x7d, 0x45, 0x9f, 0x4d,
+ 0x12, 0xd3, 0xbd, 0xf7, 0xa1, 0xd4, 0xaf, 0x38, 0xa0, 0xf9, 0xbe, 0xf0, 0x40, 0xdd, 0x44, 0xaf,
+ 0xa7, 0x19, 0x69, 0x4d, 0xaf, 0x60, 0x2a, 0x51, 0x37, 0x40, 0x8b, 0xa1, 0xed, 0x8c, 0xc2, 0x85,
+ 0xbe, 0x94, 0xc3, 0x4d, 0x47, 0xf1, 0x08, 0x20, 0x02, 0xf6, 0xa3, 0x99, 0x4f, 0x95, 0x1d, 0xa2,
+ 0x99, 0xcf, 0xa8, 0x03, 0x24, 0xb7, 0x59, 0x1a, 0xa4, 0x8f, 0xb6, 0x59, 0x6e, 0xb9, 0x20, 0xda,
+ 0x66, 0xf9, 0x18, 0x7f, 0xdc, 0x6f, 0x61, 0x67, 0x10, 0x5f, 0x8f, 0xdb, 0xc9, 0x41, 0xfa, 0xe3,
+ 0x76, 0xf2, 0xe0, 0xf9, 0xb8, 0x9d, 0x5e, 0xba, 0xea, 0xac, 0x00, 0x72, 0xf4, 0x38, 0x6f, 0x87,
+ 0x25, 0x91, 0x7a, 0xfd, 0xdd, 0x37, 0xca, 0xa5, 0xc3, 0xf8, 0x12, 0xaa, 0x71, 0xa4, 0x1c, 0xdd,
+ 0x4b, 0xea, 0x48, 0x40, 0x8d, 0xfa, 0x62, 0x36, 0x53, 0x69, 0x2d, 0xfd, 0xf0, 0xfd, 0xea, 0x78,
+ 0x49, 0xab, 0x69, 0x4f, 0x35, 0xf4, 0x1b, 0x0d, 0xf4, 0x7c, 0x34, 0x11, 0xbd, 0x37, 0xcc, 0xd3,
+ 0xa4, 0xcd, 0xf7, 0xdf, 0x46, 0x34, 0x35, 0xae, 0x55, 0x0d, 0x3d, 0x87, 0x72, 0x08, 0x66, 0xa3,
+ 0x7a, 0x1e, 0x14, 0xaf, 0x2f, 0x64, 0x70, 0xd2, 0x61, 0x3a, 0x85, 0x6a, 0x1c, 0xa5, 0x8e, 0xc2,
+ 0x94, 0x01, 0x8d, 0x47, 0x61, 0xca, 0x04, 0xb6, 0x07, 0x8e, 0xf0, 0x08, 0x02, 0x8d, 0x1d, 0xe1,
+ 0x29, 0x84, 0x35, 0x76, 0x84, 0xa7, 0x31, 0xd3, 0xf8, 0x32, 0xc2, 0xe2, 0x87, 0x82, 0x24, 0x26,
+ 0x88, 0xe2, 0x75, 0xfd, 0x4c, 0x78, 0x32, 0x3a, 0xac, 0x72, 0xd1, 0xcf, 0x98, 0x91, 0xa7, 0x1a,
+ 0x37, 0xd3, 0xc8, 0x37, 0xd3, 0x78, 0xa3, 0x99, 0xc6, 0x5b, 0x98, 0x59, 0xd5, 0xf8, 0xd1, 0x9b,
+ 0x02, 0x1d, 0x23, 0x33, 0x79, 0xf8, 0x66, 0x64, 0x26, 0x17, 0xb1, 0x8c, 0x87, 0x6c, 0x07, 0x8a,
+ 0xea, 0xdf, 0x22, 0x34, 0x17, 0x76, 0x4c, 0xfc, 0xb2, 0xa4, 0xcf, 0xa7, 0xe8, 0xe9, 0xc9, 0x6c,
+ 0x40, 0x25, 0x86, 0x4e, 0xa2, 0xf8, 0x05, 0x36, 0x80, 0x3a, 0x46, 0x93, 0x99, 0x01, 0x67, 0x26,
+ 0xe3, 0xfc, 0x5b, 0x9e, 0x0b, 0x0c, 0x01, 0x0d, 0xd1, 0x07, 0xc3, 0xb6, 0xc7, 0xa0, 0xdd, 0x0f,
+ 0xdf, 0x4e, 0x38, 0x3d, 0xb6, 0xcf, 0x61, 0x2a, 0x81, 0x84, 0x45, 0xb7, 0x42, 0x16, 0x50, 0x19,
+ 0xdd, 0x0a, 0x99, 0xf0, 0x59, 0x72, 0x84, 0x3e, 0xcc, 0x66, 0x01, 0x19, 0xe8, 0x61, 0xb4, 0x54,
+ 0x72, 0xc1, 0x18, 0xfd, 0xd1, 0x70, 0xa1, 0xdc, 0x95, 0x3b, 0x00, 0x09, 0xc5, 0x57, 0x6e, 0x36,
+ 0x4a, 0x15, 0x5f, 0xb9, 0x39, 0x78, 0x52, 0xd2, 0x4c, 0x1b, 0x50, 0xba, 0xb2, 0x84, 0x62, 0x2f,
+ 0xea, 0x9c, 0xd2, 0x56, 0x74, 0x6d, 0x0c, 0x29, 0x4c, 0x25, 0xce, 0x39, 0x0c, 0xd3, 0xa9, 0xaa,
+ 0x52, 0x34, 0xa0, 0xbc, 0x02, 0x56, 0x34, 0xa0, 0xdc, 0x92, 0x54, 0x72, 0x40, 0xfb, 0x50, 0xea,
+ 0x43, 0x25, 0xd1, 0x13, 0x63, 0x00, 0x06, 0x8a, 0x9e, 0x18, 0x29, 0x54, 0x25, 0xb6, 0x98, 0xbe,
+ 0x80, 0x3b, 0x03, 0xd8, 0x01, 0x5a, 0x4e, 0xbc, 0x95, 0x52, 0x20, 0x87, 0xbe, 0x92, 0xcb, 0x4f,
+ 0xab, 0xa7, 0x30, 0x97, 0x0d, 0x15, 0xa0, 0x77, 0x62, 0xcb, 0x32, 0x1f, 0x9f, 0xd0, 0x1f, 0xbf,
+ 0x49, 0x2c, 0x7d, 0x84, 0xbc, 0x82, 0xa9, 0x44, 0xd2, 0x1b, 0xed, 0x8f, 0x2c, 0xf8, 0x21, 0xda,
+ 0x1f, 0xd9, 0x00, 0x40, 0x6c, 0x30, 0x64, 0x00, 0x24, 0xe8, 0x67, 0xd3, 0xe8, 0x51, 0xa6, 0x8a,
+ 0x01, 0xa4, 0x40, 0x7f, 0xe7, 0x0d, 0x52, 0x99, 0x29, 0xc0, 0x60, 0x3a, 0x1d, 0x4f, 0x46, 0x33,
+ 0xf3, 0xf6, 0x78, 0x32, 0x9a, 0x93, 0x89, 0x0f, 0x5a, 0x48, 0x26, 0xc8, 0x71, 0x0b, 0x99, 0xe9,
+ 0x7a, 0xdc, 0x42, 0x76, 0x6e, 0x1d, 0xb3, 0xb0, 0xf9, 0xf4, 0x35, 0x97, 0xf6, 0xec, 0xb3, 0x35,
+ 0x87, 0x74, 0x9e, 0xc8, 0xcf, 0x8f, 0x08, 0x3d, 0x7f, 0x22, 0x75, 0x3c, 0x11, 0x3f, 0x26, 0x3f,
+ 0x39, 0x27, 0xaa, 0xdd, 0x3d, 0x3b, 0x9b, 0x14, 0xa4, 0x67, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff,
+ 0x2b, 0x9e, 0x31, 0x82, 0xdd, 0x2c, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -4057,6 +4139,7 @@ type RepositoryServiceClient interface {
DeleteConfig(ctx context.Context, in *DeleteConfigRequest, opts ...grpc.CallOption) (*DeleteConfigResponse, error)
FindLicense(ctx context.Context, in *FindLicenseRequest, opts ...grpc.CallOption) (*FindLicenseResponse, error)
GetInfoAttributes(ctx context.Context, in *GetInfoAttributesRequest, opts ...grpc.CallOption) (RepositoryService_GetInfoAttributesClient, error)
+ SetInfoAttributes(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_SetInfoAttributesClient, error)
CalculateChecksum(ctx context.Context, in *CalculateChecksumRequest, opts ...grpc.CallOption) (*CalculateChecksumResponse, error)
Cleanup(ctx context.Context, in *CleanupRequest, opts ...grpc.CallOption) (*CleanupResponse, error)
GetSnapshot(ctx context.Context, in *GetSnapshotRequest, opts ...grpc.CallOption) (RepositoryService_GetSnapshotClient, error)
@@ -4393,6 +4476,40 @@ func (x *repositoryServiceGetInfoAttributesClient) Recv() (*GetInfoAttributesRes
return m, nil
}
+func (c *repositoryServiceClient) SetInfoAttributes(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_SetInfoAttributesClient, error) {
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[4], "/gitaly.RepositoryService/SetInfoAttributes", opts...)
+ if err != nil {
+ return nil, err
+ }
+ x := &repositoryServiceSetInfoAttributesClient{stream}
+ return x, nil
+}
+
+type RepositoryService_SetInfoAttributesClient interface {
+ Send(*SetInfoAttributesRequest) error
+ CloseAndRecv() (*SetInfoAttributesResponse, error)
+ grpc.ClientStream
+}
+
+type repositoryServiceSetInfoAttributesClient struct {
+ grpc.ClientStream
+}
+
+func (x *repositoryServiceSetInfoAttributesClient) Send(m *SetInfoAttributesRequest) error {
+ return x.ClientStream.SendMsg(m)
+}
+
+func (x *repositoryServiceSetInfoAttributesClient) CloseAndRecv() (*SetInfoAttributesResponse, error) {
+ if err := x.ClientStream.CloseSend(); err != nil {
+ return nil, err
+ }
+ m := new(SetInfoAttributesResponse)
+ if err := x.ClientStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
func (c *repositoryServiceClient) CalculateChecksum(ctx context.Context, in *CalculateChecksumRequest, opts ...grpc.CallOption) (*CalculateChecksumResponse, error) {
out := new(CalculateChecksumResponse)
err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/CalculateChecksum", in, out, opts...)
@@ -4412,7 +4529,7 @@ func (c *repositoryServiceClient) Cleanup(ctx context.Context, in *CleanupReques
}
func (c *repositoryServiceClient) GetSnapshot(ctx context.Context, in *GetSnapshotRequest, opts ...grpc.CallOption) (RepositoryService_GetSnapshotClient, error) {
- stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[4], "/gitaly.RepositoryService/GetSnapshot", opts...)
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[5], "/gitaly.RepositoryService/GetSnapshot", opts...)
if err != nil {
return nil, err
}
@@ -4453,7 +4570,7 @@ func (c *repositoryServiceClient) CreateRepositoryFromSnapshot(ctx context.Conte
}
func (c *repositoryServiceClient) GetRawChanges(ctx context.Context, in *GetRawChangesRequest, opts ...grpc.CallOption) (RepositoryService_GetRawChangesClient, error) {
- stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[5], "/gitaly.RepositoryService/GetRawChanges", opts...)
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[6], "/gitaly.RepositoryService/GetRawChanges", opts...)
if err != nil {
return nil, err
}
@@ -4485,7 +4602,7 @@ func (x *repositoryServiceGetRawChangesClient) Recv() (*GetRawChangesResponse, e
}
func (c *repositoryServiceClient) SearchFilesByContent(ctx context.Context, in *SearchFilesByContentRequest, opts ...grpc.CallOption) (RepositoryService_SearchFilesByContentClient, error) {
- stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[6], "/gitaly.RepositoryService/SearchFilesByContent", opts...)
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[7], "/gitaly.RepositoryService/SearchFilesByContent", opts...)
if err != nil {
return nil, err
}
@@ -4517,7 +4634,7 @@ func (x *repositoryServiceSearchFilesByContentClient) Recv() (*SearchFilesByCont
}
func (c *repositoryServiceClient) SearchFilesByName(ctx context.Context, in *SearchFilesByNameRequest, opts ...grpc.CallOption) (RepositoryService_SearchFilesByNameClient, error) {
- stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[7], "/gitaly.RepositoryService/SearchFilesByName", opts...)
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[8], "/gitaly.RepositoryService/SearchFilesByName", opts...)
if err != nil {
return nil, err
}
@@ -4549,7 +4666,7 @@ func (x *repositoryServiceSearchFilesByNameClient) Recv() (*SearchFilesByNameRes
}
func (c *repositoryServiceClient) RestoreCustomHooks(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_RestoreCustomHooksClient, error) {
- stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[8], "/gitaly.RepositoryService/RestoreCustomHooks", opts...)
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[9], "/gitaly.RepositoryService/RestoreCustomHooks", opts...)
if err != nil {
return nil, err
}
@@ -4583,7 +4700,7 @@ func (x *repositoryServiceRestoreCustomHooksClient) CloseAndRecv() (*RestoreCust
}
func (c *repositoryServiceClient) BackupCustomHooks(ctx context.Context, in *BackupCustomHooksRequest, opts ...grpc.CallOption) (RepositoryService_BackupCustomHooksClient, error) {
- stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[9], "/gitaly.RepositoryService/BackupCustomHooks", opts...)
+ stream, err := c.cc.NewStream(ctx, &_RepositoryService_serviceDesc.Streams[10], "/gitaly.RepositoryService/BackupCustomHooks", opts...)
if err != nil {
return nil, err
}
@@ -4703,6 +4820,7 @@ type RepositoryServiceServer interface {
DeleteConfig(context.Context, *DeleteConfigRequest) (*DeleteConfigResponse, error)
FindLicense(context.Context, *FindLicenseRequest) (*FindLicenseResponse, error)
GetInfoAttributes(*GetInfoAttributesRequest, RepositoryService_GetInfoAttributesServer) error
+ SetInfoAttributes(RepositoryService_SetInfoAttributesServer) error
CalculateChecksum(context.Context, *CalculateChecksumRequest) (*CalculateChecksumResponse, error)
Cleanup(context.Context, *CleanupRequest) (*CleanupResponse, error)
GetSnapshot(*GetSnapshotRequest, RepositoryService_GetSnapshotServer) error
@@ -4797,6 +4915,9 @@ func (*UnimplementedRepositoryServiceServer) FindLicense(ctx context.Context, re
func (*UnimplementedRepositoryServiceServer) GetInfoAttributes(req *GetInfoAttributesRequest, srv RepositoryService_GetInfoAttributesServer) error {
return status.Errorf(codes.Unimplemented, "method GetInfoAttributes not implemented")
}
+func (*UnimplementedRepositoryServiceServer) SetInfoAttributes(srv RepositoryService_SetInfoAttributesServer) error {
+ return status.Errorf(codes.Unimplemented, "method SetInfoAttributes not implemented")
+}
func (*UnimplementedRepositoryServiceServer) CalculateChecksum(ctx context.Context, req *CalculateChecksumRequest) (*CalculateChecksumResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CalculateChecksum not implemented")
}
@@ -5299,6 +5420,32 @@ func (x *repositoryServiceGetInfoAttributesServer) Send(m *GetInfoAttributesResp
return x.ServerStream.SendMsg(m)
}
+func _RepositoryService_SetInfoAttributes_Handler(srv interface{}, stream grpc.ServerStream) error {
+ return srv.(RepositoryServiceServer).SetInfoAttributes(&repositoryServiceSetInfoAttributesServer{stream})
+}
+
+type RepositoryService_SetInfoAttributesServer interface {
+ SendAndClose(*SetInfoAttributesResponse) error
+ Recv() (*SetInfoAttributesRequest, error)
+ grpc.ServerStream
+}
+
+type repositoryServiceSetInfoAttributesServer struct {
+ grpc.ServerStream
+}
+
+func (x *repositoryServiceSetInfoAttributesServer) SendAndClose(m *SetInfoAttributesResponse) error {
+ return x.ServerStream.SendMsg(m)
+}
+
+func (x *repositoryServiceSetInfoAttributesServer) Recv() (*SetInfoAttributesRequest, error) {
+ m := new(SetInfoAttributesRequest)
+ if err := x.ServerStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
func _RepositoryService_CalculateChecksum_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CalculateChecksumRequest)
if err := dec(in); err != nil {
@@ -5757,6 +5904,11 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServerStreams: true,
},
{
+ StreamName: "SetInfoAttributes",
+ Handler: _RepositoryService_SetInfoAttributes_Handler,
+ ClientStreams: true,
+ },
+ {
StreamName: "GetSnapshot",
Handler: _RepositoryService_GetSnapshot_Handler,
ServerStreams: true,
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index 7551ed1aa..69aaa8a86 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -152,6 +152,12 @@ service RepositoryService {
target_repository_field: "1"
};
}
+ rpc SetInfoAttributes(stream SetInfoAttributesRequest) returns (SetInfoAttributesResponse) {
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
+ }
rpc CalculateChecksum(CalculateChecksumRequest) returns (CalculateChecksumResponse) {
option (op_type) = {
op: ACCESSOR
@@ -497,6 +503,13 @@ message GetInfoAttributesResponse {
bytes attributes = 1;
}
+message SetInfoAttributesRequest {
+ Repository repository = 1;
+ bytes attributes = 2;
+}
+
+message SetInfoAttributesResponse {}
+
message CalculateChecksumRequest {
Repository repository = 1;
}
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index 80a97ea8e..91f1b2c87 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -198,6 +198,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
add_message "gitaly.GetInfoAttributesResponse" do
optional :attributes, :bytes, 1
end
+ add_message "gitaly.SetInfoAttributesRequest" do
+ optional :repository, :message, 1, "gitaly.Repository"
+ optional :attributes, :bytes, 2
+ end
+ add_message "gitaly.SetInfoAttributesResponse" do
+ end
add_message "gitaly.CalculateChecksumRequest" do
optional :repository, :message, 1, "gitaly.Repository"
end
@@ -375,6 +381,8 @@ module Gitaly
FindLicenseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseResponse").msgclass
GetInfoAttributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesRequest").msgclass
GetInfoAttributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesResponse").msgclass
+ SetInfoAttributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetInfoAttributesRequest").msgclass
+ SetInfoAttributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetInfoAttributesResponse").msgclass
CalculateChecksumRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumRequest").msgclass
CalculateChecksumResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumResponse").msgclass
GetSnapshotRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetSnapshotRequest").msgclass
diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb
index 5e3efa7c2..91b9c4cfa 100644
--- a/ruby/proto/gitaly/repository-service_services_pb.rb
+++ b/ruby/proto/gitaly/repository-service_services_pb.rb
@@ -38,6 +38,7 @@ module Gitaly
rpc :DeleteConfig, DeleteConfigRequest, DeleteConfigResponse
rpc :FindLicense, FindLicenseRequest, FindLicenseResponse
rpc :GetInfoAttributes, GetInfoAttributesRequest, stream(GetInfoAttributesResponse)
+ rpc :SetInfoAttributes, stream(SetInfoAttributesRequest), SetInfoAttributesResponse
rpc :CalculateChecksum, CalculateChecksumRequest, CalculateChecksumResponse
rpc :Cleanup, CleanupRequest, CleanupResponse
rpc :GetSnapshot, GetSnapshotRequest, stream(GetSnapshotResponse)