diff --git a/coordinator/coordinatorproto/coordinator.pb.go b/coordinator/coordinatorproto/coordinator.pb.go index 932be480..4198f16e 100644 --- a/coordinator/coordinatorproto/coordinator.pb.go +++ b/coordinator/coordinatorproto/coordinator.pb.go @@ -371,6 +371,7 @@ type SpaceStatusPayload struct { DeletionTimestamp int64 `protobuf:"varint,2,opt,name=deletionTimestamp,proto3" json:"deletionTimestamp,omitempty"` Permissions SpacePermissions `protobuf:"varint,3,opt,name=permissions,proto3,enum=coordinator.SpacePermissions" json:"permissions,omitempty"` Limits *SpaceLimits `protobuf:"bytes,4,opt,name=limits,proto3" json:"limits,omitempty"` + IsShared bool `protobuf:"varint,5,opt,name=isShared,proto3" json:"isShared,omitempty"` } func (m *SpaceStatusPayload) Reset() { *m = SpaceStatusPayload{} } @@ -434,6 +435,13 @@ func (m *SpaceStatusPayload) GetLimits() *SpaceLimits { return nil } +func (m *SpaceStatusPayload) GetIsShared() bool { + if m != nil { + return m.IsShared + } + return false +} + type SpaceSignResponse struct { Receipt *SpaceReceiptWithSignature `protobuf:"bytes,1,opt,name=receipt,proto3" json:"receipt,omitempty"` } @@ -907,6 +915,166 @@ func (m *SpaceStatusChangeResponse) GetPayload() *SpaceStatusPayload { return nil } +type SpaceMakeShareableRequest struct { + SpaceId string `protobuf:"bytes,1,opt,name=spaceId,proto3" json:"spaceId,omitempty"` +} + +func (m *SpaceMakeShareableRequest) Reset() { *m = SpaceMakeShareableRequest{} } +func (m *SpaceMakeShareableRequest) String() string { return proto.CompactTextString(m) } +func (*SpaceMakeShareableRequest) ProtoMessage() {} +func (*SpaceMakeShareableRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_d94f6f99586adae2, []int{12} +} +func (m *SpaceMakeShareableRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SpaceMakeShareableRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SpaceMakeShareableRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *SpaceMakeShareableRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SpaceMakeShareableRequest.Merge(m, src) +} +func (m *SpaceMakeShareableRequest) XXX_Size() int { + return m.Size() +} +func (m *SpaceMakeShareableRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SpaceMakeShareableRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_SpaceMakeShareableRequest proto.InternalMessageInfo + +func (m *SpaceMakeShareableRequest) GetSpaceId() string { + if m != nil { + return m.SpaceId + } + return "" +} + +type SpaceMakeShareableResponse struct { +} + +func (m *SpaceMakeShareableResponse) Reset() { *m = SpaceMakeShareableResponse{} } +func (m *SpaceMakeShareableResponse) String() string { return proto.CompactTextString(m) } +func (*SpaceMakeShareableResponse) ProtoMessage() {} +func (*SpaceMakeShareableResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_d94f6f99586adae2, []int{13} +} +func (m *SpaceMakeShareableResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SpaceMakeShareableResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SpaceMakeShareableResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *SpaceMakeShareableResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SpaceMakeShareableResponse.Merge(m, src) +} +func (m *SpaceMakeShareableResponse) XXX_Size() int { + return m.Size() +} +func (m *SpaceMakeShareableResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SpaceMakeShareableResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SpaceMakeShareableResponse proto.InternalMessageInfo + +type SpaceMakeUnshareableRequest struct { + SpaceId string `protobuf:"bytes,1,opt,name=spaceId,proto3" json:"spaceId,omitempty"` +} + +func (m *SpaceMakeUnshareableRequest) Reset() { *m = SpaceMakeUnshareableRequest{} } +func (m *SpaceMakeUnshareableRequest) String() string { return proto.CompactTextString(m) } +func (*SpaceMakeUnshareableRequest) ProtoMessage() {} +func (*SpaceMakeUnshareableRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_d94f6f99586adae2, []int{14} +} +func (m *SpaceMakeUnshareableRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SpaceMakeUnshareableRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SpaceMakeUnshareableRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *SpaceMakeUnshareableRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SpaceMakeUnshareableRequest.Merge(m, src) +} +func (m *SpaceMakeUnshareableRequest) XXX_Size() int { + return m.Size() +} +func (m *SpaceMakeUnshareableRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SpaceMakeUnshareableRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_SpaceMakeUnshareableRequest proto.InternalMessageInfo + +func (m *SpaceMakeUnshareableRequest) GetSpaceId() string { + if m != nil { + return m.SpaceId + } + return "" +} + +type SpaceMakeUnshareableResponse struct { +} + +func (m *SpaceMakeUnshareableResponse) Reset() { *m = SpaceMakeUnshareableResponse{} } +func (m *SpaceMakeUnshareableResponse) String() string { return proto.CompactTextString(m) } +func (*SpaceMakeUnshareableResponse) ProtoMessage() {} +func (*SpaceMakeUnshareableResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_d94f6f99586adae2, []int{15} +} +func (m *SpaceMakeUnshareableResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SpaceMakeUnshareableResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SpaceMakeUnshareableResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *SpaceMakeUnshareableResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SpaceMakeUnshareableResponse.Merge(m, src) +} +func (m *SpaceMakeUnshareableResponse) XXX_Size() int { + return m.Size() +} +func (m *SpaceMakeUnshareableResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SpaceMakeUnshareableResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SpaceMakeUnshareableResponse proto.InternalMessageInfo + // NetworkConfigurationRequest contains currenId of the client configuration, it can be empty type NetworkConfigurationRequest struct { // currenId of the client configuration @@ -918,7 +1086,7 @@ func (m *NetworkConfigurationRequest) Reset() { *m = NetworkConfiguratio func (m *NetworkConfigurationRequest) String() string { return proto.CompactTextString(m) } func (*NetworkConfigurationRequest) ProtoMessage() {} func (*NetworkConfigurationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{12} + return fileDescriptor_d94f6f99586adae2, []int{16} } func (m *NetworkConfigurationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -970,7 +1138,7 @@ func (m *NetworkConfigurationResponse) Reset() { *m = NetworkConfigurati func (m *NetworkConfigurationResponse) String() string { return proto.CompactTextString(m) } func (*NetworkConfigurationResponse) ProtoMessage() {} func (*NetworkConfigurationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{13} + return fileDescriptor_d94f6f99586adae2, []int{17} } func (m *NetworkConfigurationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1041,7 +1209,7 @@ func (m *Node) Reset() { *m = Node{} } func (m *Node) String() string { return proto.CompactTextString(m) } func (*Node) ProtoMessage() {} func (*Node) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{14} + return fileDescriptor_d94f6f99586adae2, []int{18} } func (m *Node) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1101,7 +1269,7 @@ func (m *DeletionConfirmPayloadWithSignature) Reset() { *m = DeletionCon func (m *DeletionConfirmPayloadWithSignature) String() string { return proto.CompactTextString(m) } func (*DeletionConfirmPayloadWithSignature) ProtoMessage() {} func (*DeletionConfirmPayloadWithSignature) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{15} + return fileDescriptor_d94f6f99586adae2, []int{19} } func (m *DeletionConfirmPayloadWithSignature) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1162,7 +1330,7 @@ func (m *DeletionConfirmPayload) Reset() { *m = DeletionConfirmPayload{} func (m *DeletionConfirmPayload) String() string { return proto.CompactTextString(m) } func (*DeletionConfirmPayload) ProtoMessage() {} func (*DeletionConfirmPayload) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{16} + return fileDescriptor_d94f6f99586adae2, []int{20} } func (m *DeletionConfirmPayload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1237,7 +1405,7 @@ func (m *DeletionLogRequest) Reset() { *m = DeletionLogRequest{} } func (m *DeletionLogRequest) String() string { return proto.CompactTextString(m) } func (*DeletionLogRequest) ProtoMessage() {} func (*DeletionLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{17} + return fileDescriptor_d94f6f99586adae2, []int{21} } func (m *DeletionLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1291,7 +1459,7 @@ func (m *DeletionLogResponse) Reset() { *m = DeletionLogResponse{} } func (m *DeletionLogResponse) String() string { return proto.CompactTextString(m) } func (*DeletionLogResponse) ProtoMessage() {} func (*DeletionLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{18} + return fileDescriptor_d94f6f99586adae2, []int{22} } func (m *DeletionLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1351,7 +1519,7 @@ func (m *DeletionLogRecord) Reset() { *m = DeletionLogRecord{} } func (m *DeletionLogRecord) String() string { return proto.CompactTextString(m) } func (*DeletionLogRecord) ProtoMessage() {} func (*DeletionLogRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{19} + return fileDescriptor_d94f6f99586adae2, []int{23} } func (m *DeletionLogRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1427,7 +1595,7 @@ func (m *SpaceDeleteRequest) Reset() { *m = SpaceDeleteRequest{} } func (m *SpaceDeleteRequest) String() string { return proto.CompactTextString(m) } func (*SpaceDeleteRequest) ProtoMessage() {} func (*SpaceDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{20} + return fileDescriptor_d94f6f99586adae2, []int{24} } func (m *SpaceDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1493,7 +1661,7 @@ func (m *SpaceDeleteResponse) Reset() { *m = SpaceDeleteResponse{} } func (m *SpaceDeleteResponse) String() string { return proto.CompactTextString(m) } func (*SpaceDeleteResponse) ProtoMessage() {} func (*SpaceDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{21} + return fileDescriptor_d94f6f99586adae2, []int{25} } func (m *SpaceDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1539,7 +1707,7 @@ func (m *AccountDeleteRequest) Reset() { *m = AccountDeleteRequest{} } func (m *AccountDeleteRequest) String() string { return proto.CompactTextString(m) } func (*AccountDeleteRequest) ProtoMessage() {} func (*AccountDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{22} + return fileDescriptor_d94f6f99586adae2, []int{26} } func (m *AccountDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1598,7 +1766,7 @@ func (m *AccountDeletionConfirmPayload) Reset() { *m = AccountDeletionCo func (m *AccountDeletionConfirmPayload) String() string { return proto.CompactTextString(m) } func (*AccountDeletionConfirmPayload) ProtoMessage() {} func (*AccountDeletionConfirmPayload) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{23} + return fileDescriptor_d94f6f99586adae2, []int{27} } func (m *AccountDeletionConfirmPayload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1664,7 +1832,7 @@ func (m *AccountDeleteResponse) Reset() { *m = AccountDeleteResponse{} } func (m *AccountDeleteResponse) String() string { return proto.CompactTextString(m) } func (*AccountDeleteResponse) ProtoMessage() {} func (*AccountDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{24} + return fileDescriptor_d94f6f99586adae2, []int{28} } func (m *AccountDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1708,7 +1876,7 @@ func (m *AccountRevertDeletionRequest) Reset() { *m = AccountRevertDelet func (m *AccountRevertDeletionRequest) String() string { return proto.CompactTextString(m) } func (*AccountRevertDeletionRequest) ProtoMessage() {} func (*AccountRevertDeletionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{25} + return fileDescriptor_d94f6f99586adae2, []int{29} } func (m *AccountRevertDeletionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1745,7 +1913,7 @@ func (m *AccountRevertDeletionResponse) Reset() { *m = AccountRevertDele func (m *AccountRevertDeletionResponse) String() string { return proto.CompactTextString(m) } func (*AccountRevertDeletionResponse) ProtoMessage() {} func (*AccountRevertDeletionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{26} + return fileDescriptor_d94f6f99586adae2, []int{30} } func (m *AccountRevertDeletionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1784,7 +1952,7 @@ func (m *AclAddRecordRequest) Reset() { *m = AclAddRecordRequest{} } func (m *AclAddRecordRequest) String() string { return proto.CompactTextString(m) } func (*AclAddRecordRequest) ProtoMessage() {} func (*AclAddRecordRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{27} + return fileDescriptor_d94f6f99586adae2, []int{31} } func (m *AclAddRecordRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1837,7 +2005,7 @@ func (m *AclAddRecordResponse) Reset() { *m = AclAddRecordResponse{} } func (m *AclAddRecordResponse) String() string { return proto.CompactTextString(m) } func (*AclAddRecordResponse) ProtoMessage() {} func (*AclAddRecordResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{28} + return fileDescriptor_d94f6f99586adae2, []int{32} } func (m *AclAddRecordResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1891,7 +2059,7 @@ func (m *AclGetRecordsRequest) Reset() { *m = AclGetRecordsRequest{} } func (m *AclGetRecordsRequest) String() string { return proto.CompactTextString(m) } func (*AclGetRecordsRequest) ProtoMessage() {} func (*AclGetRecordsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{29} + return fileDescriptor_d94f6f99586adae2, []int{33} } func (m *AclGetRecordsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1943,7 +2111,7 @@ func (m *AclGetRecordsResponse) Reset() { *m = AclGetRecordsResponse{} } func (m *AclGetRecordsResponse) String() string { return proto.CompactTextString(m) } func (*AclGetRecordsResponse) ProtoMessage() {} func (*AclGetRecordsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{30} + return fileDescriptor_d94f6f99586adae2, []int{34} } func (m *AclGetRecordsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1985,13 +2153,14 @@ type AccountLimitsSetRequest struct { FileStorageLimitBytes uint64 `protobuf:"varint,3,opt,name=fileStorageLimitBytes,proto3" json:"fileStorageLimitBytes,omitempty"` SpaceMembersRead uint32 `protobuf:"varint,4,opt,name=spaceMembersRead,proto3" json:"spaceMembersRead,omitempty"` SpaceMembersWrite uint32 `protobuf:"varint,5,opt,name=spaceMembersWrite,proto3" json:"spaceMembersWrite,omitempty"` + SharedSpacesLimit uint32 `protobuf:"varint,6,opt,name=sharedSpacesLimit,proto3" json:"sharedSpacesLimit,omitempty"` } func (m *AccountLimitsSetRequest) Reset() { *m = AccountLimitsSetRequest{} } func (m *AccountLimitsSetRequest) String() string { return proto.CompactTextString(m) } func (*AccountLimitsSetRequest) ProtoMessage() {} func (*AccountLimitsSetRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{31} + return fileDescriptor_d94f6f99586adae2, []int{35} } func (m *AccountLimitsSetRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2055,6 +2224,13 @@ func (m *AccountLimitsSetRequest) GetSpaceMembersWrite() uint32 { return 0 } +func (m *AccountLimitsSetRequest) GetSharedSpacesLimit() uint32 { + if m != nil { + return m.SharedSpacesLimit + } + return 0 +} + type AccountLimitsSetResponse struct { } @@ -2062,7 +2238,7 @@ func (m *AccountLimitsSetResponse) Reset() { *m = AccountLimitsSetRespon func (m *AccountLimitsSetResponse) String() string { return proto.CompactTextString(m) } func (*AccountLimitsSetResponse) ProtoMessage() {} func (*AccountLimitsSetResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d94f6f99586adae2, []int{32} + return fileDescriptor_d94f6f99586adae2, []int{36} } func (m *AccountLimitsSetResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2110,6 +2286,10 @@ func init() { proto.RegisterType((*SpaceStatusCheckManyResponse)(nil), "coordinator.SpaceStatusCheckManyResponse") proto.RegisterType((*SpaceStatusChangeRequest)(nil), "coordinator.SpaceStatusChangeRequest") proto.RegisterType((*SpaceStatusChangeResponse)(nil), "coordinator.SpaceStatusChangeResponse") + proto.RegisterType((*SpaceMakeShareableRequest)(nil), "coordinator.SpaceMakeShareableRequest") + proto.RegisterType((*SpaceMakeShareableResponse)(nil), "coordinator.SpaceMakeShareableResponse") + proto.RegisterType((*SpaceMakeUnshareableRequest)(nil), "coordinator.SpaceMakeUnshareableRequest") + proto.RegisterType((*SpaceMakeUnshareableResponse)(nil), "coordinator.SpaceMakeUnshareableResponse") proto.RegisterType((*NetworkConfigurationRequest)(nil), "coordinator.NetworkConfigurationRequest") proto.RegisterType((*NetworkConfigurationResponse)(nil), "coordinator.NetworkConfigurationResponse") proto.RegisterType((*Node)(nil), "coordinator.Node") @@ -2138,115 +2318,122 @@ func init() { } var fileDescriptor_d94f6f99586adae2 = []byte{ - // 1721 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x18, 0xcd, 0x6f, 0x13, 0xc7, - 0xd7, 0xeb, 0x38, 0x89, 0xfd, 0x9c, 0x84, 0xcd, 0x24, 0x01, 0x63, 0x8c, 0x09, 0xfb, 0xe3, 0x47, - 0x83, 0x5b, 0x01, 0x35, 0x6d, 0x55, 0x44, 0xa5, 0x12, 0xc2, 0x47, 0x43, 0x21, 0x44, 0x13, 0x02, - 0x52, 0x7b, 0x40, 0x1b, 0xef, 0xc4, 0x59, 0xc5, 0x9e, 0x75, 0x67, 0xc7, 0x84, 0xfc, 0x17, 0xbd, - 0xf5, 0xd4, 0x7b, 0x0f, 0x3d, 0x54, 0xbd, 0x54, 0x6a, 0xa5, 0x9e, 0x7b, 0xe4, 0xd8, 0x4b, 0x25, - 0x04, 0x87, 0xde, 0xfb, 0x17, 0x54, 0x33, 0x3b, 0xbb, 0x3b, 0xfb, 0x61, 0x27, 0x15, 0x07, 0x2e, - 0x89, 0xe7, 0x7d, 0xcd, 0x7b, 0x6f, 0xde, 0xe7, 0xc2, 0xc7, 0x1d, 0xcf, 0x63, 0x8e, 0x4b, 0x6d, - 0xee, 0xb1, 0x2b, 0xda, 0xef, 0x01, 0xf3, 0xb8, 0x77, 0x45, 0xfe, 0xf5, 0x75, 0xf8, 0x65, 0x09, - 0x42, 0x55, 0x0d, 0x64, 0xfd, 0x6e, 0x80, 0xb9, 0x35, 0xb0, 0x3b, 0x64, 0xcb, 0xed, 0x52, 0x4c, - 0xbe, 0x19, 0x12, 0x9f, 0xa3, 0x1a, 0x4c, 0xfb, 0x02, 0xb6, 0xee, 0xd4, 0x8c, 0x65, 0x63, 0xa5, - 0x82, 0xc3, 0x23, 0x3a, 0x09, 0x53, 0x7b, 0xc4, 0x76, 0x08, 0xab, 0x15, 0x97, 0x8d, 0x95, 0x19, - 0xac, 0x4e, 0x68, 0x19, 0xaa, 0x5e, 0xcf, 0x59, 0x77, 0x08, 0xe5, 0x2e, 0x3f, 0xac, 0x4d, 0x48, - 0xa4, 0x0e, 0x42, 0x6d, 0x58, 0xa4, 0xe4, 0x20, 0x3c, 0x8a, 0xdb, 0x6c, 0x3e, 0x64, 0xa4, 0x56, - 0x92, 0xa4, 0xb9, 0x38, 0x64, 0xc1, 0xcc, 0xae, 0xc7, 0x3a, 0x44, 0xe9, 0x55, 0x9b, 0x5c, 0x36, - 0x56, 0xca, 0x38, 0x01, 0xb3, 0xb6, 0xa0, 0x2a, 0xf5, 0x7f, 0xe0, 0xf6, 0x5d, 0xee, 0x0b, 0x45, - 0x18, 0xb1, 0x9d, 0x87, 0xa4, 0xbf, 0x43, 0x98, 0x2f, 0xd5, 0x9f, 0xc5, 0x3a, 0x48, 0x08, 0x3d, - 0x60, 0x2e, 0x27, 0x21, 0x49, 0x51, 0x92, 0x24, 0x60, 0xd6, 0xdf, 0x06, 0xa0, 0xc0, 0x2b, 0xdc, - 0xe6, 0x43, 0x7f, 0xd3, 0x3e, 0xec, 0x79, 0xb6, 0x83, 0xae, 0xc2, 0x94, 0x2f, 0x01, 0x52, 0xee, - 0x5c, 0xbb, 0x76, 0x59, 0xf7, 0xae, 0xc6, 0x80, 0x15, 0x1d, 0xfa, 0x00, 0xe6, 0x1d, 0xd2, 0x23, - 0xdc, 0xf5, 0xe8, 0x63, 0xb7, 0x4f, 0x7c, 0x6e, 0xf7, 0x07, 0xf2, 0xc6, 0x09, 0x9c, 0x45, 0xa0, - 0xcf, 0xa1, 0x3a, 0x20, 0xac, 0xef, 0xfa, 0xbe, 0xeb, 0x51, 0x5f, 0x7a, 0x71, 0xae, 0x7d, 0x36, - 0x7b, 0xc9, 0x66, 0x4c, 0x84, 0x75, 0x0e, 0xa1, 0x60, 0x4f, 0xfa, 0x41, 0xba, 0xb5, 0x9a, 0xa7, - 0x60, 0xe0, 0x27, 0xac, 0xe8, 0xac, 0x6d, 0x98, 0xd7, 0x9e, 0xdf, 0x1f, 0x78, 0xd4, 0x27, 0xe8, - 0x26, 0x4c, 0x33, 0xd2, 0x21, 0xee, 0x80, 0x4b, 0x43, 0xab, 0xed, 0x8b, 0x59, 0x39, 0x38, 0x20, - 0x78, 0xea, 0xf2, 0xbd, 0xe8, 0xc1, 0x70, 0xc8, 0x66, 0xed, 0xc3, 0xe9, 0x91, 0x54, 0xe8, 0x2a, - 0x2c, 0xf8, 0x1a, 0x52, 0x79, 0x57, 0x5e, 0x35, 0x83, 0xf3, 0x50, 0xa8, 0x01, 0x15, 0x3f, 0x8a, - 0x98, 0x20, 0xf2, 0x62, 0x80, 0xf5, 0x83, 0x01, 0x33, 0xfa, 0x6d, 0xe3, 0xe3, 0x77, 0x40, 0x08, - 0x5b, 0x77, 0xa4, 0x94, 0x0a, 0x56, 0x27, 0xb4, 0x02, 0x27, 0xec, 0x4e, 0xc7, 0x1b, 0x52, 0x9e, - 0x8a, 0xe1, 0x34, 0x58, 0xa8, 0x42, 0x09, 0x3f, 0xf0, 0xd8, 0xfe, 0xba, 0x23, 0xbd, 0x5c, 0xc1, - 0x31, 0x00, 0x35, 0x01, 0x9e, 0xdb, 0x3d, 0xd7, 0xd9, 0xa6, 0xdc, 0xed, 0xc9, 0x78, 0x2d, 0x61, - 0x0d, 0x62, 0x5d, 0x83, 0x53, 0x5a, 0x98, 0xac, 0xed, 0x91, 0xce, 0xfe, 0x91, 0x49, 0x67, 0x6d, - 0x43, 0x2d, 0xcb, 0xa4, 0x9e, 0xea, 0x3a, 0x4c, 0x0f, 0x34, 0xff, 0x55, 0xdb, 0xe7, 0x46, 0xc5, - 0xa4, 0xf2, 0x25, 0x0e, 0xe9, 0xad, 0xeb, 0x70, 0x26, 0x2d, 0xf6, 0xa1, 0x4d, 0x0f, 0x43, 0x7d, - 0xea, 0x50, 0x56, 0x0a, 0x88, 0x70, 0x9f, 0x58, 0xa9, 0xe0, 0xe8, 0x6c, 0x7d, 0x0d, 0x8d, 0x7c, - 0x56, 0xa5, 0xd5, 0x0d, 0x28, 0xab, 0x5b, 0x02, 0xde, 0x63, 0xa8, 0x15, 0x31, 0x58, 0xaf, 0x8c, - 0x94, 0xbd, 0x36, 0xed, 0x92, 0xa3, 0x4b, 0x93, 0x96, 0x6a, 0x4a, 0x66, 0xf4, 0xca, 0x59, 0x84, - 0x78, 0xf0, 0x14, 0x30, 0x7c, 0xf0, 0x14, 0x18, 0x61, 0x58, 0x48, 0x81, 0x1e, 0x1f, 0x0e, 0x82, - 0xba, 0x35, 0xd7, 0x5e, 0x4e, 0x98, 0x75, 0x3b, 0x4b, 0x87, 0xf3, 0x98, 0xad, 0x27, 0x2a, 0x3d, - 0x92, 0x16, 0xbe, 0xfd, 0x93, 0xde, 0x80, 0x33, 0x1b, 0x41, 0x2c, 0xae, 0x79, 0x74, 0xd7, 0xed, - 0x0e, 0x99, 0x2d, 0xae, 0x0e, 0x9d, 0xd7, 0x80, 0x4a, 0x67, 0xc8, 0x18, 0x11, 0xe1, 0xac, 0xdc, - 0x17, 0x03, 0xac, 0xdf, 0x0c, 0x68, 0xe4, 0x73, 0x2b, 0xc5, 0x56, 0xe0, 0x44, 0x47, 0x47, 0x44, - 0x42, 0xd2, 0xe0, 0x64, 0x92, 0x14, 0xd3, 0x49, 0xf2, 0x1e, 0x4c, 0x52, 0xcf, 0x21, 0xa2, 0xc0, - 0x89, 0xd0, 0x98, 0x4f, 0x98, 0xb7, 0xe1, 0x39, 0x04, 0x07, 0x78, 0xd4, 0x02, 0xb3, 0xc3, 0x88, - 0x1d, 0x16, 0xc9, 0x6d, 0xea, 0xbe, 0x90, 0x7e, 0x2f, 0xe1, 0x0c, 0xdc, 0x72, 0xa1, 0x24, 0x58, - 0xb5, 0x0c, 0x37, 0x12, 0x19, 0xde, 0x80, 0x8a, 0xed, 0x38, 0x8c, 0xf8, 0x3e, 0x11, 0x35, 0x5f, - 0xc4, 0x73, 0x0c, 0x40, 0xef, 0xc3, 0x24, 0x3f, 0x1c, 0x28, 0x95, 0xe6, 0xda, 0x4b, 0x19, 0x95, - 0xe4, 0x5b, 0x06, 0x34, 0x56, 0x1f, 0xfe, 0x17, 0xbe, 0xb4, 0x74, 0x14, 0xeb, 0xab, 0x87, 0x48, - 0x96, 0xb9, 0x9c, 0x10, 0x33, 0xf2, 0x43, 0x6c, 0x7c, 0x79, 0xfb, 0xc9, 0x80, 0x93, 0xf9, 0xf7, - 0xbd, 0xc3, 0x42, 0xd7, 0x80, 0x0a, 0x8f, 0x1a, 0xda, 0xa4, 0x6c, 0x68, 0x31, 0xc0, 0xba, 0x0d, - 0x28, 0xd4, 0xf8, 0x81, 0xd7, 0xd5, 0x72, 0xd7, 0xde, 0xe5, 0xda, 0xdb, 0x84, 0x47, 0xb4, 0x08, - 0x93, 0xb2, 0x1f, 0xa9, 0x66, 0x1c, 0x1c, 0x2c, 0x17, 0x16, 0x12, 0x52, 0x54, 0x18, 0x7e, 0x2a, - 0xbb, 0x93, 0xc7, 0xa2, 0xda, 0xd2, 0xcc, 0x4d, 0x42, 0xc9, 0x22, 0xc8, 0x70, 0x48, 0x2e, 0x14, - 0xd8, 0xb3, 0xfd, 0x87, 0x9e, 0xf2, 0x72, 0x19, 0x87, 0x47, 0xeb, 0x17, 0x03, 0xe6, 0x33, 0x8c, - 0x68, 0x0e, 0x8a, 0x6e, 0xa8, 0x6b, 0xd1, 0x4d, 0xb8, 0xbb, 0x98, 0x74, 0xf7, 0x67, 0xd1, 0x64, - 0x10, 0x34, 0xed, 0x0b, 0xe3, 0x55, 0x4a, 0x4d, 0x09, 0x09, 0x67, 0x96, 0x52, 0xce, 0x14, 0xd8, - 0x5d, 0xb7, 0x47, 0xee, 0x31, 0x6f, 0x18, 0xb8, 0xba, 0x82, 0x63, 0x80, 0xf5, 0x73, 0x38, 0xaa, - 0xc8, 0x4b, 0xde, 0x61, 0x9d, 0x6c, 0x81, 0x19, 0x82, 0x6e, 0xab, 0x4a, 0xa0, 0x6c, 0xc9, 0xc0, - 0xad, 0x75, 0x58, 0x48, 0xe8, 0xac, 0x5e, 0xb6, 0x0d, 0x8b, 0xdc, 0xbb, 0xa5, 0xa0, 0x4e, 0x3c, - 0x30, 0x19, 0x52, 0x4c, 0x2e, 0xce, 0xa2, 0xb0, 0xb8, 0x1a, 0x44, 0x6e, 0xd2, 0x01, 0xb9, 0x66, - 0x1a, 0xff, 0xc1, 0xcc, 0x62, 0xae, 0x99, 0xd6, 0xf7, 0x06, 0x9c, 0xd5, 0x2f, 0xcc, 0x26, 0xe5, - 0xa8, 0x0a, 0x94, 0x93, 0x7a, 0xc5, 0x63, 0xa4, 0xde, 0xc4, 0xd8, 0xd4, 0x4b, 0x47, 0x8b, 0xf5, - 0x25, 0x2c, 0xa5, 0xfc, 0xf1, 0x16, 0xce, 0x6d, 0x42, 0x43, 0x09, 0xc3, 0xe4, 0x39, 0x61, 0x91, - 0xc5, 0xe1, 0xf0, 0x7d, 0x2e, 0xf2, 0x45, 0x1a, 0x1f, 0x5c, 0x2a, 0x1e, 0x7a, 0xb5, 0xd3, 0x5b, - 0x75, 0x1c, 0x95, 0x8a, 0x47, 0x46, 0x67, 0x2d, 0x6e, 0x7e, 0x81, 0x73, 0xa2, 0xde, 0xf6, 0x40, - 0x3c, 0xb4, 0x2e, 0x4a, 0xd9, 0x55, 0x87, 0x72, 0x90, 0xdf, 0x91, 0xb0, 0xe8, 0x3c, 0x46, 0xda, - 0x7d, 0x29, 0xed, 0x1e, 0xe1, 0x81, 0x34, 0xff, 0x58, 0x9a, 0xd9, 0x9d, 0xde, 0x17, 0xc4, 0x8e, - 0x92, 0x5f, 0x1d, 0xad, 0x0f, 0x85, 0xcb, 0x13, 0xb2, 0x94, 0x6a, 0xb5, 0x64, 0xa5, 0x9a, 0x89, - 0x2a, 0x91, 0xf5, 0x97, 0x01, 0xa7, 0x94, 0xe7, 0x82, 0x81, 0x7c, 0x4b, 0x70, 0x47, 0x83, 0x97, - 0x1b, 0x06, 0x88, 0x32, 0x28, 0x3c, 0x8b, 0xd8, 0x62, 0xc4, 0xf6, 0x3d, 0x1a, 0x96, 0xf5, 0xe0, - 0x84, 0x3e, 0x82, 0x25, 0x51, 0x12, 0xb6, 0xb8, 0xc7, 0xec, 0x6e, 0x30, 0xe3, 0xdf, 0x3a, 0xe4, - 0x24, 0x28, 0x47, 0x25, 0x9c, 0x8f, 0x14, 0x29, 0x2b, 0xad, 0x53, 0x6b, 0x0f, 0x16, 0xb6, 0x95, - 0x64, 0x05, 0xce, 0xc0, 0x45, 0x3e, 0xe9, 0xb0, 0xa7, 0x62, 0x5d, 0x92, 0xd5, 0x68, 0x16, 0x67, - 0x11, 0x56, 0x1d, 0x6a, 0x59, 0xf3, 0x02, 0xaf, 0xb4, 0x7e, 0x35, 0x00, 0xee, 0x30, 0xe6, 0xb1, - 0x35, 0xd9, 0xe4, 0xe7, 0x00, 0xb6, 0x29, 0x79, 0x31, 0x20, 0x1d, 0x4e, 0x1c, 0xb3, 0x80, 0x4c, - 0x35, 0xcc, 0xab, 0x60, 0x34, 0x0d, 0x54, 0x83, 0xc5, 0x18, 0x22, 0x52, 0x91, 0x50, 0xc7, 0xa5, - 0x5d, 0xb3, 0x18, 0xd1, 0xae, 0x89, 0x69, 0x80, 0x38, 0xe6, 0x04, 0x42, 0x30, 0x27, 0x21, 0x1b, - 0x1e, 0xbf, 0xf3, 0xc2, 0xf5, 0xb9, 0x6f, 0x96, 0xd0, 0x92, 0xda, 0x71, 0xa4, 0x2a, 0x98, 0xd8, - 0x9d, 0x3d, 0xe2, 0x98, 0x93, 0x82, 0x34, 0x91, 0x29, 0x8e, 0x39, 0x85, 0x66, 0xa1, 0x72, 0xd7, - 0x63, 0x3b, 0xae, 0xe3, 0x10, 0x6a, 0x4e, 0x23, 0x13, 0xaa, 0x52, 0xd3, 0x47, 0xbb, 0xbb, 0x3e, - 0xe1, 0xe6, 0x8f, 0xc5, 0xd6, 0x77, 0x86, 0xda, 0x37, 0x83, 0x12, 0x8e, 0x4e, 0x26, 0x16, 0xc5, - 0x50, 0x8f, 0x02, 0x6a, 0x42, 0x5d, 0x1f, 0xd4, 0x02, 0x8d, 0x43, 0x03, 0x4c, 0x23, 0x85, 0x0f, - 0x11, 0x5b, 0xdc, 0x66, 0x82, 0xbf, 0x98, 0x92, 0x1b, 0x2a, 0x38, 0x11, 0xf9, 0x22, 0x80, 0x6b, - 0x56, 0xb6, 0xee, 0xab, 0x45, 0x5e, 0x5b, 0x0e, 0xd1, 0x19, 0xb5, 0x6e, 0x68, 0xb0, 0x6d, 0xba, - 0x4f, 0xbd, 0x03, 0x6a, 0x16, 0xd0, 0x69, 0x58, 0x4a, 0x23, 0x1f, 0x1d, 0x50, 0xc2, 0x4c, 0xa3, - 0x75, 0x00, 0xe5, 0x70, 0xe8, 0x41, 0x55, 0x98, 0x7e, 0xcc, 0x08, 0x59, 0xdd, 0x5c, 0x37, 0x0b, - 0xe2, 0x70, 0xd7, 0xed, 0xc9, 0x83, 0x21, 0x1c, 0xb8, 0x16, 0x77, 0x39, 0x01, 0x93, 0x2f, 0xb2, - 0x26, 0x5e, 0x99, 0xfa, 0x43, 0x5f, 0x40, 0x26, 0xd0, 0x3c, 0xcc, 0x6e, 0xd8, 0x7d, 0x97, 0x76, - 0x85, 0x44, 0x01, 0x2a, 0x09, 0x23, 0x36, 0xed, 0xc3, 0x3e, 0xa1, 0x7c, 0x93, 0x79, 0x1d, 0xe2, - 0xfb, 0x2e, 0xed, 0x0a, 0xcc, 0x64, 0xeb, 0x7a, 0xdc, 0xf2, 0xb5, 0x79, 0x19, 0x95, 0xa1, 0x24, - 0x74, 0x08, 0x14, 0x50, 0xe5, 0xd6, 0x34, 0xc4, 0x41, 0xbd, 0xa0, 0x59, 0x6c, 0xdd, 0x84, 0x53, - 0x23, 0xfa, 0x2c, 0x9a, 0x82, 0xe2, 0xa3, 0x7d, 0xb3, 0x20, 0x54, 0xc1, 0xa4, 0xef, 0x3d, 0x27, - 0x9b, 0x8c, 0x0c, 0x6c, 0x46, 0x4c, 0x03, 0x01, 0x4c, 0x05, 0x20, 0xb3, 0xd8, 0xfe, 0xa7, 0x0c, - 0x55, 0xcd, 0x20, 0x74, 0x1f, 0x2a, 0xd1, 0x6e, 0x8c, 0x72, 0xd6, 0x70, 0xed, 0x93, 0x49, 0xbd, - 0x39, 0x0a, 0xad, 0x4a, 0xc1, 0xb3, 0xf0, 0x33, 0x4b, 0xbc, 0x31, 0xa1, 0x0b, 0xa3, 0xe6, 0x7a, - 0x7d, 0x2f, 0xac, 0xff, 0xff, 0x08, 0x2a, 0x75, 0xc1, 0x7e, 0x22, 0x30, 0xa2, 0x95, 0x0c, 0xad, - 0x8c, 0x65, 0xd7, 0x16, 0xbe, 0xfa, 0xa5, 0x63, 0x50, 0xaa, 0xcb, 0x76, 0xc2, 0xaf, 0x06, 0xda, - 0xfe, 0x82, 0xc6, 0x28, 0xaa, 0x6d, 0x70, 0xf5, 0x8b, 0x47, 0x91, 0xc5, 0x06, 0xe5, 0x6d, 0x23, - 0x29, 0x83, 0xc6, 0xac, 0x3b, 0x29, 0x83, 0xc6, 0xae, 0x36, 0x9b, 0x50, 0xd5, 0x82, 0x07, 0x9d, - 0x1b, 0x3d, 0xbe, 0x05, 0xa2, 0x97, 0x47, 0x13, 0xc4, 0x12, 0xb5, 0x32, 0x86, 0x72, 0x76, 0xb8, - 0xc4, 0xbc, 0x92, 0x92, 0x98, 0x37, 0x1d, 0x3d, 0x81, 0xd9, 0x44, 0xbd, 0x42, 0xe7, 0x13, 0x2c, - 0x79, 0x53, 0x50, 0xdd, 0x1a, 0x47, 0xa2, 0xe4, 0xd2, 0x68, 0x62, 0x48, 0x36, 0x71, 0x74, 0x29, - 0x8f, 0x39, 0x77, 0x10, 0xa8, 0xb7, 0x8e, 0x43, 0xaa, 0xee, 0xdb, 0x82, 0x19, 0xbd, 0x91, 0xa3, - 0xe5, 0x14, 0x6f, 0x66, 0x5c, 0xa8, 0x9f, 0x1f, 0x43, 0xa1, 0x3b, 0x47, 0xeb, 0xc1, 0x19, 0xe7, - 0x64, 0x7b, 0x7d, 0xc6, 0x39, 0x79, 0x2d, 0xfc, 0x19, 0x98, 0xe9, 0x46, 0x96, 0xca, 0xdb, 0x11, - 0x6d, 0x3c, 0x95, 0xb7, 0xa3, 0xba, 0xe1, 0xad, 0x4f, 0xfe, 0x78, 0xdd, 0x34, 0x5e, 0xbe, 0x6e, - 0x1a, 0xaf, 0x5e, 0x37, 0x8d, 0x6f, 0xdf, 0x34, 0x0b, 0x2f, 0xdf, 0x34, 0x0b, 0x7f, 0xbe, 0x69, - 0x16, 0xbe, 0x6a, 0x8c, 0xfb, 0xbc, 0xbb, 0x33, 0x25, 0xff, 0x5d, 0xfb, 0x37, 0x00, 0x00, 0xff, - 0xff, 0x82, 0x38, 0x48, 0x4a, 0x05, 0x16, 0x00, 0x00, + // 1825 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcd, 0x73, 0x13, 0xc7, + 0x12, 0xd7, 0xae, 0x65, 0x5b, 0x6a, 0xd9, 0x66, 0x3d, 0xb6, 0x41, 0x08, 0x21, 0xcc, 0x3e, 0x1e, + 0x18, 0xbd, 0x57, 0x40, 0x44, 0x48, 0x42, 0x91, 0xaa, 0x60, 0xcc, 0x47, 0x4c, 0xb0, 0x71, 0xad, + 0x30, 0x54, 0x25, 0x07, 0x6a, 0xbd, 0x3b, 0x96, 0xb7, 0x2c, 0xcd, 0x2a, 0xb3, 0x23, 0x8c, 0xcf, + 0x39, 0xe6, 0x92, 0x5b, 0x4e, 0xb9, 0xe7, 0x90, 0x43, 0x2a, 0x97, 0x54, 0x25, 0x55, 0x39, 0xa6, + 0x72, 0xe4, 0x98, 0x23, 0x05, 0xff, 0x48, 0x6a, 0x66, 0x67, 0x57, 0xb3, 0x1f, 0x92, 0x9d, 0xe2, + 0xc0, 0xc5, 0xd6, 0xf4, 0xd7, 0xf4, 0xfc, 0xa6, 0xbb, 0xa7, 0x7b, 0xe1, 0x86, 0xe3, 0xfb, 0xd4, + 0xf5, 0x88, 0xcd, 0x7c, 0x7a, 0x55, 0xf9, 0xdd, 0xa7, 0x3e, 0xf3, 0xaf, 0x8a, 0xbf, 0x81, 0x4a, + 0xbf, 0x22, 0x48, 0xa8, 0xa2, 0x90, 0xcc, 0x3f, 0x34, 0x30, 0xda, 0x7d, 0xdb, 0xc1, 0x6d, 0xaf, + 0x43, 0x2c, 0xfc, 0xf5, 0x00, 0x07, 0x0c, 0x55, 0x61, 0x3a, 0xe0, 0xb4, 0x75, 0xb7, 0xaa, 0x2d, + 0x6b, 0x2b, 0x65, 0x2b, 0x5a, 0xa2, 0x93, 0x30, 0xb5, 0x87, 0x6d, 0x17, 0xd3, 0xaa, 0xbe, 0xac, + 0xad, 0xcc, 0x58, 0x72, 0x85, 0x96, 0xa1, 0xe2, 0x77, 0xdd, 0x75, 0x17, 0x13, 0xe6, 0xb1, 0xc3, + 0xea, 0x84, 0x60, 0xaa, 0x24, 0xd4, 0x82, 0x45, 0x82, 0x0f, 0xa2, 0x25, 0xdf, 0xcd, 0x66, 0x03, + 0x8a, 0xab, 0x45, 0x21, 0x9a, 0xcb, 0x43, 0x26, 0xcc, 0xec, 0xfa, 0xd4, 0xc1, 0xd2, 0xaf, 0xea, + 0xe4, 0xb2, 0xb6, 0x52, 0xb2, 0x12, 0x34, 0xb3, 0x0d, 0x15, 0xe1, 0xff, 0x23, 0xaf, 0xe7, 0xb1, + 0x80, 0x3b, 0x42, 0xb1, 0xed, 0x6e, 0xe0, 0xde, 0x0e, 0xa6, 0x81, 0x70, 0x7f, 0xd6, 0x52, 0x49, + 0xdc, 0xe8, 0x01, 0xf5, 0x18, 0x8e, 0x44, 0x74, 0x21, 0x92, 0xa0, 0x99, 0xdf, 0xe8, 0x80, 0x42, + 0x54, 0x98, 0xcd, 0x06, 0xc1, 0x96, 0x7d, 0xd8, 0xf5, 0x6d, 0x17, 0x5d, 0x83, 0xa9, 0x40, 0x10, + 0x84, 0xdd, 0xb9, 0x56, 0xf5, 0x8a, 0x8a, 0xae, 0xa2, 0x60, 0x49, 0x39, 0xf4, 0x7f, 0x98, 0x77, + 0x71, 0x17, 0x33, 0xcf, 0x27, 0x4f, 0xbc, 0x1e, 0x0e, 0x98, 0xdd, 0xeb, 0x8b, 0x1d, 0x27, 0xac, + 0x2c, 0x03, 0x7d, 0x06, 0x95, 0x3e, 0xa6, 0x3d, 0x2f, 0x08, 0x3c, 0x9f, 0x04, 0x02, 0xc5, 0xb9, + 0xd6, 0xd9, 0xec, 0x26, 0x5b, 0x43, 0x21, 0x4b, 0xd5, 0xe0, 0x0e, 0x76, 0x05, 0x0e, 0x02, 0xd6, + 0x4a, 0x9e, 0x83, 0x21, 0x4e, 0x96, 0x94, 0x43, 0x35, 0x28, 0x79, 0x41, 0x7b, 0xcf, 0xa6, 0xd8, + 0x95, 0xf0, 0xc6, 0x6b, 0x73, 0x1b, 0xe6, 0x95, 0xd0, 0x08, 0xfa, 0x3e, 0x09, 0x30, 0xba, 0x0d, + 0xd3, 0x14, 0x3b, 0xd8, 0xeb, 0x33, 0x01, 0x42, 0xa5, 0x75, 0x31, 0xbb, 0x87, 0x15, 0x0a, 0x3c, + 0xf3, 0xd8, 0x5e, 0x7c, 0x99, 0x56, 0xa4, 0x66, 0xee, 0xc3, 0xe9, 0x91, 0x52, 0xe8, 0x1a, 0x2c, + 0x04, 0x0a, 0x53, 0x22, 0x2f, 0xb6, 0x9a, 0xb1, 0xf2, 0x58, 0xa8, 0x0e, 0xe5, 0x20, 0x8e, 0xa6, + 0x30, 0x2a, 0x87, 0x04, 0xf3, 0x47, 0x0d, 0x66, 0xd4, 0xdd, 0xc6, 0xc7, 0x76, 0x1f, 0x63, 0xba, + 0xee, 0x0a, 0x2b, 0x65, 0x4b, 0xae, 0xd0, 0x0a, 0x9c, 0xb0, 0x1d, 0xc7, 0x1f, 0x10, 0x96, 0x8a, + 0xef, 0x34, 0x99, 0xbb, 0x42, 0x30, 0x3b, 0xf0, 0xe9, 0xfe, 0xba, 0x2b, 0x6e, 0xa0, 0x6c, 0x0d, + 0x09, 0xa8, 0x01, 0xf0, 0xc2, 0xee, 0x7a, 0xee, 0x36, 0x61, 0x5e, 0x57, 0x80, 0x5d, 0xb4, 0x14, + 0x8a, 0x79, 0x1d, 0x4e, 0x29, 0x21, 0xb4, 0xb6, 0x87, 0x9d, 0xfd, 0x23, 0x13, 0xd2, 0xdc, 0x86, + 0x6a, 0x56, 0x49, 0x5e, 0xd5, 0x4d, 0x98, 0xee, 0x2b, 0xf8, 0x55, 0x5a, 0xe7, 0x46, 0xc5, 0xab, + 0xc4, 0xd2, 0x8a, 0xe4, 0xcd, 0x9b, 0x70, 0x26, 0x6d, 0x76, 0xc3, 0x26, 0x87, 0x91, 0x3f, 0x35, + 0x28, 0x49, 0x07, 0x78, 0x2a, 0x4c, 0xac, 0x94, 0xad, 0x78, 0x6d, 0x7e, 0x05, 0xf5, 0x7c, 0x55, + 0xe9, 0xd5, 0x2d, 0x28, 0xc9, 0x5d, 0x42, 0xdd, 0x63, 0xb8, 0x15, 0x2b, 0x98, 0xaf, 0xb5, 0xd4, + 0x79, 0x6d, 0xd2, 0xc1, 0x47, 0x97, 0x2d, 0x25, 0x0d, 0xa5, 0xcd, 0xf8, 0x96, 0xb3, 0x0c, 0x7e, + 0xe1, 0x29, 0x62, 0x74, 0xe1, 0x29, 0x32, 0xb2, 0x60, 0x21, 0x45, 0x7a, 0x72, 0xd8, 0x0f, 0x6b, + 0xda, 0x5c, 0x6b, 0x39, 0x71, 0xac, 0xbb, 0x59, 0x39, 0x2b, 0x4f, 0xd9, 0x7c, 0x2a, 0xd3, 0x23, + 0x79, 0xc2, 0x77, 0xbf, 0xd2, 0x1b, 0xd2, 0xee, 0x86, 0xbd, 0x8f, 0x45, 0x82, 0xdb, 0x3b, 0xdd, + 0xa3, 0xa1, 0x33, 0xeb, 0x50, 0xcb, 0x53, 0x0b, 0xfd, 0x31, 0x3f, 0x96, 0x71, 0xc2, 0xb9, 0xdb, + 0x24, 0x38, 0xbe, 0xd9, 0x86, 0x8c, 0x92, 0x8c, 0xa2, 0x34, 0x7c, 0x0b, 0xce, 0x6c, 0x86, 0x99, + 0xb3, 0xe6, 0x93, 0x5d, 0xaf, 0x33, 0xa0, 0x36, 0x07, 0x2a, 0x32, 0x5c, 0x87, 0xb2, 0x33, 0xa0, + 0x14, 0xf3, 0xe4, 0x93, 0xa6, 0x87, 0x04, 0xf3, 0x77, 0x0d, 0xea, 0xf9, 0xda, 0x12, 0xc6, 0x15, + 0x38, 0xe1, 0xa8, 0x8c, 0xd8, 0x48, 0x9a, 0x9c, 0x4c, 0x69, 0x3d, 0x9d, 0xd2, 0x97, 0x60, 0x92, + 0xf8, 0x2e, 0xe6, 0xa5, 0x9a, 0x07, 0xf2, 0x7c, 0xe2, 0x32, 0x36, 0x7d, 0x17, 0x5b, 0x21, 0x1f, + 0x35, 0xc1, 0x70, 0x28, 0xb6, 0xa3, 0x72, 0xbf, 0x4d, 0xbc, 0x97, 0x22, 0x4a, 0x8a, 0x56, 0x86, + 0x6e, 0x7a, 0x50, 0xe4, 0xaa, 0x4a, 0x3d, 0xd2, 0x12, 0xf5, 0xa8, 0x0e, 0x65, 0xdb, 0x75, 0x29, + 0x0e, 0x02, 0xcc, 0x5f, 0x2f, 0x9e, 0x7d, 0x43, 0x02, 0xfa, 0x1f, 0x4c, 0xb2, 0xc3, 0xbe, 0x74, + 0x69, 0xae, 0xb5, 0x94, 0x71, 0x49, 0x44, 0x5e, 0x28, 0x63, 0xf6, 0xe0, 0x3f, 0x51, 0x5c, 0x0a, + 0xa0, 0x68, 0x4f, 0x86, 0x4d, 0xb2, 0x28, 0xe7, 0x24, 0x84, 0x96, 0x9f, 0x10, 0xe3, 0x8b, 0xf1, + 0xcf, 0x1a, 0x9c, 0xcc, 0xdf, 0xef, 0x3d, 0x96, 0xe5, 0x3a, 0x94, 0x59, 0xfc, 0x34, 0x4f, 0x8a, + 0xa7, 0x79, 0x48, 0x30, 0xef, 0x02, 0x8a, 0x3c, 0x7e, 0xe4, 0x77, 0x94, 0xb8, 0xb6, 0x77, 0x99, + 0x72, 0x37, 0xd1, 0x12, 0x2d, 0xc2, 0xa4, 0x78, 0x59, 0x65, 0x5b, 0x11, 0x2e, 0x4c, 0x0f, 0x16, + 0x12, 0x56, 0x64, 0x18, 0x7e, 0x22, 0xde, 0x52, 0x9f, 0xc6, 0x95, 0xb0, 0x91, 0x5b, 0x32, 0x84, + 0x0a, 0x17, 0xb3, 0x22, 0x71, 0xee, 0xc0, 0x9e, 0x1d, 0x6c, 0xf8, 0x12, 0xe5, 0x92, 0x15, 0x2d, + 0xcd, 0x5f, 0x35, 0x98, 0xcf, 0x28, 0xa2, 0x39, 0xd0, 0xbd, 0xc8, 0x57, 0xdd, 0x4b, 0xc0, 0xad, + 0x27, 0xe1, 0xfe, 0x34, 0xee, 0x71, 0xc2, 0xf6, 0xe3, 0xc2, 0x78, 0x97, 0x52, 0xfd, 0x4e, 0x02, + 0xcc, 0x62, 0x0a, 0x4c, 0xce, 0xdd, 0xf5, 0xba, 0xf8, 0x01, 0xf5, 0x07, 0x21, 0xd4, 0x65, 0x6b, + 0x48, 0x30, 0x7f, 0xd1, 0x64, 0xd3, 0x25, 0x36, 0x79, 0x8f, 0x55, 0xbd, 0x09, 0x46, 0x44, 0xba, + 0x2b, 0x2b, 0x81, 0x3c, 0x4b, 0x86, 0x6e, 0xae, 0xc3, 0x42, 0xc2, 0x67, 0x79, 0xb3, 0x2d, 0x58, + 0x64, 0xfe, 0x1d, 0x49, 0x75, 0x87, 0xad, 0x9f, 0x26, 0xcc, 0xe4, 0xf2, 0x4c, 0x02, 0x8b, 0xab, + 0x61, 0xe4, 0x26, 0x01, 0xc8, 0x3d, 0xa6, 0xf6, 0x2f, 0x8e, 0xa9, 0xe7, 0x1e, 0xd3, 0xfc, 0x41, + 0x83, 0xb3, 0xea, 0x86, 0xd9, 0xa4, 0x1c, 0x55, 0x81, 0x72, 0x52, 0x4f, 0x3f, 0x46, 0xea, 0x4d, + 0x8c, 0x4d, 0xbd, 0x74, 0xb4, 0x98, 0x5f, 0xc0, 0x52, 0x0a, 0x8f, 0x77, 0x00, 0xb7, 0x01, 0x75, + 0x69, 0xcc, 0xc2, 0x2f, 0x30, 0x8d, 0x4f, 0x1c, 0x8d, 0x11, 0xe7, 0x62, 0x2c, 0xd2, 0x7c, 0xf9, + 0x20, 0xad, 0xc3, 0xc2, 0xaa, 0xd3, 0x5d, 0x75, 0x5d, 0x99, 0x8a, 0x47, 0x46, 0x67, 0x75, 0xf8, + 0x54, 0x87, 0xe0, 0xc4, 0x2f, 0xf1, 0x23, 0x7e, 0xd1, 0xaa, 0x29, 0x79, 0xae, 0x1a, 0x94, 0xc2, + 0xfc, 0x8e, 0x8d, 0xc5, 0xeb, 0x31, 0xd6, 0x1e, 0x0a, 0x6b, 0x0f, 0x30, 0x0b, 0xad, 0x05, 0xc7, + 0xf2, 0xcc, 0x76, 0xba, 0x9f, 0x63, 0x3b, 0x4e, 0x7e, 0xb9, 0x34, 0x3f, 0xe0, 0x90, 0x27, 0x6c, + 0x49, 0xd7, 0xaa, 0xc9, 0x4a, 0x35, 0x13, 0x57, 0x22, 0xf3, 0x5b, 0x1d, 0x4e, 0x49, 0xe4, 0xc2, + 0xd1, 0xa2, 0xcd, 0xb5, 0xe3, 0x36, 0xd1, 0x8b, 0x02, 0x44, 0x1e, 0x28, 0x5a, 0xf3, 0xd8, 0xa2, + 0xd8, 0x0e, 0x7c, 0x12, 0x95, 0xf5, 0x70, 0x85, 0x3e, 0x84, 0x25, 0x5e, 0x12, 0xda, 0xcc, 0xa7, + 0x76, 0x27, 0x9c, 0x56, 0xee, 0x1c, 0x32, 0x1c, 0x96, 0xa3, 0xa2, 0x95, 0xcf, 0xe4, 0x29, 0x2b, + 0x4e, 0x27, 0x07, 0x38, 0x8b, 0x9f, 0xad, 0x28, 0x2a, 0x70, 0x86, 0xce, 0xf3, 0x49, 0xa5, 0x3d, + 0xe3, 0x83, 0x9f, 0xa8, 0x46, 0xb3, 0x56, 0x96, 0x21, 0xa4, 0xc5, 0x38, 0x24, 0xd2, 0x3c, 0x10, + 0x7b, 0x56, 0xa7, 0xa4, 0x74, 0x9a, 0x61, 0xd6, 0xa0, 0x9a, 0x05, 0x23, 0xc4, 0xb0, 0xf9, 0x9b, + 0x06, 0x70, 0x8f, 0x52, 0x9f, 0xae, 0x89, 0x96, 0x60, 0x0e, 0x60, 0x9b, 0xe0, 0x97, 0x7d, 0xec, + 0x30, 0xec, 0x1a, 0x05, 0x64, 0xc8, 0x41, 0x45, 0x86, 0xae, 0xa1, 0xa1, 0x2a, 0x2c, 0x0e, 0x29, + 0x3c, 0x71, 0x31, 0x71, 0x3d, 0xd2, 0x31, 0xf4, 0x58, 0x76, 0x8d, 0xf7, 0x0e, 0xd8, 0x35, 0x26, + 0x10, 0x82, 0x39, 0x41, 0xd9, 0xf4, 0xd9, 0xbd, 0x97, 0x5e, 0xc0, 0x02, 0xa3, 0x88, 0x96, 0xe4, + 0xfc, 0x26, 0x5c, 0xb1, 0xb0, 0xed, 0xec, 0x61, 0xd7, 0x98, 0xe4, 0xa2, 0x89, 0xbc, 0x72, 0x8d, + 0x29, 0x34, 0x0b, 0xe5, 0xfb, 0x3e, 0xdd, 0xf1, 0x5c, 0x17, 0x13, 0x63, 0x1a, 0x19, 0x50, 0x11, + 0x9e, 0x3e, 0xde, 0xdd, 0x0d, 0x30, 0x33, 0x7e, 0xd2, 0x9b, 0xdf, 0x6b, 0x72, 0xce, 0x0e, 0x0b, + 0x3e, 0x3a, 0x99, 0x18, 0x90, 0x23, 0x3f, 0x0a, 0xa8, 0x21, 0xdb, 0x45, 0xd9, 0x84, 0x86, 0x1e, + 0x47, 0x07, 0x30, 0xb4, 0x14, 0x3f, 0x62, 0xb4, 0x99, 0x4d, 0xb9, 0xbe, 0x9e, 0xb2, 0x1b, 0x39, + 0x38, 0x11, 0x63, 0x11, 0xd2, 0x95, 0x53, 0x36, 0x1f, 0xca, 0x0f, 0x18, 0xca, 0x50, 0x8c, 0xce, + 0xc8, 0x51, 0x4a, 0xa1, 0x6d, 0x93, 0x7d, 0xe2, 0x1f, 0x10, 0xa3, 0x80, 0x4e, 0xc3, 0x52, 0x9a, + 0xf9, 0xf8, 0x80, 0x60, 0x6a, 0x68, 0xcd, 0x03, 0x28, 0x45, 0x2d, 0x12, 0xaa, 0xc0, 0xf4, 0x13, + 0x8a, 0xf1, 0xea, 0xd6, 0xba, 0x51, 0xe0, 0x8b, 0xfb, 0x5e, 0x57, 0x2c, 0x34, 0x0e, 0xe0, 0xda, + 0xf0, 0x4d, 0xe4, 0x34, 0x71, 0x23, 0x6b, 0xfc, 0x96, 0x49, 0x30, 0x08, 0x38, 0x65, 0x02, 0xcd, + 0xc3, 0xec, 0xa6, 0xdd, 0xf3, 0x48, 0x87, 0x5b, 0xe4, 0xa4, 0x22, 0x3f, 0xc4, 0x96, 0x7d, 0xd8, + 0xc3, 0x84, 0x6d, 0x51, 0xdf, 0xc1, 0x41, 0xe0, 0x91, 0x0e, 0xe7, 0x4c, 0x36, 0x6f, 0x0e, 0x1b, + 0x04, 0x65, 0x16, 0x40, 0x25, 0x28, 0x72, 0x1f, 0x42, 0x07, 0x64, 0x71, 0x36, 0x34, 0xbe, 0x90, + 0x37, 0x68, 0xe8, 0xcd, 0xdb, 0x70, 0x6a, 0xc4, 0xab, 0x8c, 0xa6, 0x40, 0x7f, 0xbc, 0x6f, 0x14, + 0xb8, 0x2b, 0x16, 0xee, 0xf9, 0x2f, 0xf0, 0x16, 0xc5, 0x7d, 0x9b, 0x62, 0x43, 0x43, 0x00, 0x53, + 0x21, 0xc9, 0xd0, 0x5b, 0x7f, 0x02, 0x54, 0x94, 0x03, 0xa1, 0x87, 0x50, 0x8e, 0xe7, 0x7e, 0x94, + 0xf3, 0xf9, 0x41, 0xf9, 0x54, 0x54, 0x6b, 0x8c, 0x62, 0xcb, 0xc2, 0xf1, 0x3c, 0xfa, 0xbc, 0x34, + 0x9c, 0x06, 0xd1, 0x85, 0x51, 0x33, 0x8b, 0x3a, 0xf3, 0xd6, 0xfe, 0x7b, 0x84, 0x94, 0xdc, 0x60, + 0x3f, 0x11, 0x18, 0xf1, 0xb8, 0x89, 0x56, 0xc6, 0xaa, 0x2b, 0xc3, 0x6c, 0xed, 0xf2, 0x31, 0x24, + 0xe5, 0x66, 0x3b, 0xd1, 0x17, 0x11, 0x65, 0x36, 0x43, 0x63, 0x1c, 0x55, 0xa6, 0xd3, 0xda, 0xc5, + 0xa3, 0xc4, 0xe4, 0x1e, 0x58, 0x66, 0x40, 0x62, 0xe0, 0x42, 0x39, 0xda, 0x79, 0x83, 0x5c, 0xed, + 0xd2, 0x91, 0x72, 0x29, 0xdc, 0x52, 0x03, 0x58, 0x1e, 0x6e, 0xf9, 0xc3, 0x5d, 0x1e, 0x6e, 0x23, + 0xa6, 0x39, 0xbe, 0x59, 0xde, 0x3c, 0x96, 0xda, 0x6c, 0xcc, 0xc0, 0x97, 0xda, 0x6c, 0xec, 0x70, + 0xb7, 0x05, 0x15, 0x25, 0x21, 0xd0, 0xb9, 0xd1, 0x0d, 0x6c, 0x68, 0x7a, 0x79, 0xb4, 0xc0, 0xd0, + 0xa2, 0x52, 0x9a, 0x51, 0xce, 0xcc, 0x9d, 0xe8, 0xd8, 0x52, 0x16, 0xf3, 0xfa, 0xc3, 0xa7, 0x30, + 0x9b, 0xa8, 0xc1, 0xe8, 0x7c, 0x42, 0x25, 0xaf, 0x0f, 0xac, 0x99, 0xe3, 0x44, 0xa4, 0x5d, 0x12, + 0xf7, 0x4c, 0xc9, 0x36, 0x06, 0x5d, 0xce, 0x53, 0xce, 0x6d, 0x85, 0x6a, 0xcd, 0xe3, 0x88, 0xca, + 0xfd, 0xda, 0x30, 0xa3, 0xb6, 0x32, 0x68, 0x39, 0xa5, 0x9b, 0x69, 0x98, 0x6a, 0xe7, 0xc7, 0x48, + 0xa8, 0xe0, 0x28, 0x5d, 0x48, 0x06, 0x9c, 0x6c, 0xb7, 0x93, 0x01, 0x27, 0xaf, 0x89, 0x79, 0x0e, + 0x46, 0xfa, 0x71, 0x4e, 0xd5, 0xa2, 0x11, 0x8d, 0x4c, 0xaa, 0x16, 0x8d, 0x7a, 0xe1, 0xef, 0x7c, + 0xf4, 0xd7, 0x9b, 0x86, 0xf6, 0xea, 0x4d, 0x43, 0x7b, 0xfd, 0xa6, 0xa1, 0x7d, 0xf7, 0xb6, 0x51, + 0x78, 0xf5, 0xb6, 0x51, 0xf8, 0xfb, 0x6d, 0xa3, 0xf0, 0x65, 0x7d, 0xdc, 0xa7, 0xfa, 0x9d, 0x29, + 0xf1, 0xef, 0xfa, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x0c, 0xff, 0x82, 0xd1, 0x17, 0x00, + 0x00, } func (m *SpaceSignRequest) Marshal() (dAtA []byte, err error) { @@ -2363,6 +2550,16 @@ func (m *SpaceStatusPayload) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.IsShared { + i-- + if m.IsShared { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } if m.Limits != nil { { size, err := m.Limits.MarshalToSizedBuffer(dAtA[:i]) @@ -2739,6 +2936,112 @@ func (m *SpaceStatusChangeResponse) MarshalToSizedBuffer(dAtA []byte) (int, erro return len(dAtA) - i, nil } +func (m *SpaceMakeShareableRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SpaceMakeShareableRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SpaceMakeShareableRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.SpaceId) > 0 { + i -= len(m.SpaceId) + copy(dAtA[i:], m.SpaceId) + i = encodeVarintCoordinator(dAtA, i, uint64(len(m.SpaceId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *SpaceMakeShareableResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SpaceMakeShareableResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SpaceMakeShareableResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *SpaceMakeUnshareableRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SpaceMakeUnshareableRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SpaceMakeUnshareableRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.SpaceId) > 0 { + i -= len(m.SpaceId) + copy(dAtA[i:], m.SpaceId) + i = encodeVarintCoordinator(dAtA, i, uint64(len(m.SpaceId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *SpaceMakeUnshareableResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SpaceMakeUnshareableResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SpaceMakeUnshareableResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func (m *NetworkConfigurationRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3511,6 +3814,11 @@ func (m *AccountLimitsSetRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) _ = i var l int _ = l + if m.SharedSpacesLimit != 0 { + i = encodeVarintCoordinator(dAtA, i, uint64(m.SharedSpacesLimit)) + i-- + dAtA[i] = 0x30 + } if m.SpaceMembersWrite != 0 { i = encodeVarintCoordinator(dAtA, i, uint64(m.SpaceMembersWrite)) i-- @@ -3639,6 +3947,9 @@ func (m *SpaceStatusPayload) Size() (n int) { l = m.Limits.Size() n += 1 + l + sovCoordinator(uint64(l)) } + if m.IsShared { + n += 2 + } return n } @@ -3793,6 +4104,50 @@ func (m *SpaceStatusChangeResponse) Size() (n int) { return n } +func (m *SpaceMakeShareableRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.SpaceId) + if l > 0 { + n += 1 + l + sovCoordinator(uint64(l)) + } + return n +} + +func (m *SpaceMakeShareableResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *SpaceMakeUnshareableRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.SpaceId) + if l > 0 { + n += 1 + l + sovCoordinator(uint64(l)) + } + return n +} + +func (m *SpaceMakeUnshareableResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func (m *NetworkConfigurationRequest) Size() (n int) { if m == nil { return 0 @@ -4160,6 +4515,9 @@ func (m *AccountLimitsSetRequest) Size() (n int) { if m.SpaceMembersWrite != 0 { n += 1 + sovCoordinator(uint64(m.SpaceMembersWrite)) } + if m.SharedSpacesLimit != 0 { + n += 1 + sovCoordinator(uint64(m.SharedSpacesLimit)) + } return n } @@ -4592,6 +4950,26 @@ func (m *SpaceStatusPayload) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsShared", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsShared = bool(v != 0) default: iNdEx = preIndex skippy, err := skipCoordinator(dAtA[iNdEx:]) @@ -5603,6 +5981,270 @@ func (m *SpaceStatusChangeResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *SpaceMakeShareableRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SpaceMakeShareableRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SpaceMakeShareableRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SpaceId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoordinator + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoordinator + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SpaceId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCoordinator(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCoordinator + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SpaceMakeShareableResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SpaceMakeShareableResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SpaceMakeShareableResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipCoordinator(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCoordinator + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SpaceMakeUnshareableRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SpaceMakeUnshareableRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SpaceMakeUnshareableRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SpaceId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoordinator + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoordinator + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SpaceId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCoordinator(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCoordinator + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SpaceMakeUnshareableResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SpaceMakeUnshareableResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SpaceMakeUnshareableResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipCoordinator(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCoordinator + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *NetworkConfigurationRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -8007,6 +8649,25 @@ func (m *AccountLimitsSetRequest) Unmarshal(dAtA []byte) error { break } } + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SharedSpacesLimit", wireType) + } + m.SharedSpacesLimit = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoordinator + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SharedSpacesLimit |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipCoordinator(dAtA[iNdEx:]) diff --git a/coordinator/coordinatorproto/coordinator_drpc.pb.go b/coordinator/coordinatorproto/coordinator_drpc.pb.go index 20723965..3443a788 100644 --- a/coordinator/coordinatorproto/coordinator_drpc.pb.go +++ b/coordinator/coordinatorproto/coordinator_drpc.pb.go @@ -44,6 +44,8 @@ type DRPCCoordinatorClient interface { SpaceStatusCheck(ctx context.Context, in *SpaceStatusCheckRequest) (*SpaceStatusCheckResponse, error) SpaceStatusCheckMany(ctx context.Context, in *SpaceStatusCheckManyRequest) (*SpaceStatusCheckManyResponse, error) SpaceStatusChange(ctx context.Context, in *SpaceStatusChangeRequest) (*SpaceStatusChangeResponse, error) + SpaceMakeShareable(ctx context.Context, in *SpaceMakeShareableRequest) (*SpaceMakeShareableResponse, error) + SpaceMakeUnshareable(ctx context.Context, in *SpaceMakeUnshareableRequest) (*SpaceMakeUnshareableResponse, error) NetworkConfiguration(ctx context.Context, in *NetworkConfigurationRequest) (*NetworkConfigurationResponse, error) DeletionLog(ctx context.Context, in *DeletionLogRequest) (*DeletionLogResponse, error) SpaceDelete(ctx context.Context, in *SpaceDeleteRequest) (*SpaceDeleteResponse, error) @@ -100,6 +102,24 @@ func (c *drpcCoordinatorClient) SpaceStatusChange(ctx context.Context, in *Space return out, nil } +func (c *drpcCoordinatorClient) SpaceMakeShareable(ctx context.Context, in *SpaceMakeShareableRequest) (*SpaceMakeShareableResponse, error) { + out := new(SpaceMakeShareableResponse) + err := c.cc.Invoke(ctx, "/coordinator.Coordinator/SpaceMakeShareable", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, in, out) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *drpcCoordinatorClient) SpaceMakeUnshareable(ctx context.Context, in *SpaceMakeUnshareableRequest) (*SpaceMakeUnshareableResponse, error) { + out := new(SpaceMakeUnshareableResponse) + err := c.cc.Invoke(ctx, "/coordinator.Coordinator/SpaceMakeUnshareable", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, in, out) + if err != nil { + return nil, err + } + return out, nil +} + func (c *drpcCoordinatorClient) NetworkConfiguration(ctx context.Context, in *NetworkConfigurationRequest) (*NetworkConfigurationResponse, error) { out := new(NetworkConfigurationResponse) err := c.cc.Invoke(ctx, "/coordinator.Coordinator/NetworkConfiguration", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, in, out) @@ -177,6 +197,8 @@ type DRPCCoordinatorServer interface { SpaceStatusCheck(context.Context, *SpaceStatusCheckRequest) (*SpaceStatusCheckResponse, error) SpaceStatusCheckMany(context.Context, *SpaceStatusCheckManyRequest) (*SpaceStatusCheckManyResponse, error) SpaceStatusChange(context.Context, *SpaceStatusChangeRequest) (*SpaceStatusChangeResponse, error) + SpaceMakeShareable(context.Context, *SpaceMakeShareableRequest) (*SpaceMakeShareableResponse, error) + SpaceMakeUnshareable(context.Context, *SpaceMakeUnshareableRequest) (*SpaceMakeUnshareableResponse, error) NetworkConfiguration(context.Context, *NetworkConfigurationRequest) (*NetworkConfigurationResponse, error) DeletionLog(context.Context, *DeletionLogRequest) (*DeletionLogResponse, error) SpaceDelete(context.Context, *SpaceDeleteRequest) (*SpaceDeleteResponse, error) @@ -205,6 +227,14 @@ func (s *DRPCCoordinatorUnimplementedServer) SpaceStatusChange(context.Context, return nil, drpcerr.WithCode(errors.New("Unimplemented"), drpcerr.Unimplemented) } +func (s *DRPCCoordinatorUnimplementedServer) SpaceMakeShareable(context.Context, *SpaceMakeShareableRequest) (*SpaceMakeShareableResponse, error) { + return nil, drpcerr.WithCode(errors.New("Unimplemented"), drpcerr.Unimplemented) +} + +func (s *DRPCCoordinatorUnimplementedServer) SpaceMakeUnshareable(context.Context, *SpaceMakeUnshareableRequest) (*SpaceMakeUnshareableResponse, error) { + return nil, drpcerr.WithCode(errors.New("Unimplemented"), drpcerr.Unimplemented) +} + func (s *DRPCCoordinatorUnimplementedServer) NetworkConfiguration(context.Context, *NetworkConfigurationRequest) (*NetworkConfigurationResponse, error) { return nil, drpcerr.WithCode(errors.New("Unimplemented"), drpcerr.Unimplemented) } @@ -239,7 +269,7 @@ func (s *DRPCCoordinatorUnimplementedServer) AccountLimitsSet(context.Context, * type DRPCCoordinatorDescription struct{} -func (DRPCCoordinatorDescription) NumMethods() int { return 12 } +func (DRPCCoordinatorDescription) NumMethods() int { return 14 } func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Receiver, interface{}, bool) { switch n { @@ -280,6 +310,24 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec ) }, DRPCCoordinatorServer.SpaceStatusChange, true case 4: + return "/coordinator.Coordinator/SpaceMakeShareable", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, + func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { + return srv.(DRPCCoordinatorServer). + SpaceMakeShareable( + ctx, + in1.(*SpaceMakeShareableRequest), + ) + }, DRPCCoordinatorServer.SpaceMakeShareable, true + case 5: + return "/coordinator.Coordinator/SpaceMakeUnshareable", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, + func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { + return srv.(DRPCCoordinatorServer). + SpaceMakeUnshareable( + ctx, + in1.(*SpaceMakeUnshareableRequest), + ) + }, DRPCCoordinatorServer.SpaceMakeUnshareable, true + case 6: return "/coordinator.Coordinator/NetworkConfiguration", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -288,7 +336,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*NetworkConfigurationRequest), ) }, DRPCCoordinatorServer.NetworkConfiguration, true - case 5: + case 7: return "/coordinator.Coordinator/DeletionLog", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -297,7 +345,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*DeletionLogRequest), ) }, DRPCCoordinatorServer.DeletionLog, true - case 6: + case 8: return "/coordinator.Coordinator/SpaceDelete", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -306,7 +354,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*SpaceDeleteRequest), ) }, DRPCCoordinatorServer.SpaceDelete, true - case 7: + case 9: return "/coordinator.Coordinator/AccountDelete", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -315,7 +363,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*AccountDeleteRequest), ) }, DRPCCoordinatorServer.AccountDelete, true - case 8: + case 10: return "/coordinator.Coordinator/AccountRevertDeletion", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -324,7 +372,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*AccountRevertDeletionRequest), ) }, DRPCCoordinatorServer.AccountRevertDeletion, true - case 9: + case 11: return "/coordinator.Coordinator/AclAddRecord", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -333,7 +381,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*AclAddRecordRequest), ) }, DRPCCoordinatorServer.AclAddRecord, true - case 10: + case 12: return "/coordinator.Coordinator/AclGetRecords", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -342,7 +390,7 @@ func (DRPCCoordinatorDescription) Method(n int) (string, drpc.Encoding, drpc.Rec in1.(*AclGetRecordsRequest), ) }, DRPCCoordinatorServer.AclGetRecords, true - case 11: + case 13: return "/coordinator.Coordinator/AccountLimitsSet", drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}, func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) { return srv.(DRPCCoordinatorServer). @@ -424,6 +472,38 @@ func (x *drpcCoordinator_SpaceStatusChangeStream) SendAndClose(m *SpaceStatusCha return x.CloseSend() } +type DRPCCoordinator_SpaceMakeShareableStream interface { + drpc.Stream + SendAndClose(*SpaceMakeShareableResponse) error +} + +type drpcCoordinator_SpaceMakeShareableStream struct { + drpc.Stream +} + +func (x *drpcCoordinator_SpaceMakeShareableStream) SendAndClose(m *SpaceMakeShareableResponse) error { + if err := x.MsgSend(m, drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}); err != nil { + return err + } + return x.CloseSend() +} + +type DRPCCoordinator_SpaceMakeUnshareableStream interface { + drpc.Stream + SendAndClose(*SpaceMakeUnshareableResponse) error +} + +type drpcCoordinator_SpaceMakeUnshareableStream struct { + drpc.Stream +} + +func (x *drpcCoordinator_SpaceMakeUnshareableStream) SendAndClose(m *SpaceMakeUnshareableResponse) error { + if err := x.MsgSend(m, drpcEncoding_File_coordinator_coordinatorproto_protos_coordinator_proto{}); err != nil { + return err + } + return x.CloseSend() +} + type DRPCCoordinator_NetworkConfigurationStream interface { drpc.Stream SendAndClose(*NetworkConfigurationResponse) error diff --git a/coordinator/coordinatorproto/protos/coordinator.proto b/coordinator/coordinatorproto/protos/coordinator.proto index e585785f..10ae900c 100644 --- a/coordinator/coordinatorproto/protos/coordinator.proto +++ b/coordinator/coordinatorproto/protos/coordinator.proto @@ -16,6 +16,12 @@ service Coordinator { // SpaceStatusChange changes the status of space - Deprecated rpc SpaceStatusChange(SpaceStatusChangeRequest) returns (SpaceStatusChangeResponse); + // SpaceMakeShareable makes space shareable + rpc SpaceMakeShareable(SpaceMakeShareableRequest) returns (SpaceMakeShareableResponse); + + // SpaceMakeUnshareable marks space unshareable + rpc SpaceMakeUnshareable(SpaceMakeUnshareableRequest) returns (SpaceMakeUnshareableResponse); + // NetworkConfiguration retrieves the latest network configuration rpc NetworkConfiguration(NetworkConfigurationRequest) returns (NetworkConfigurationResponse); @@ -87,6 +93,7 @@ message SpaceStatusPayload { int64 deletionTimestamp = 2; SpacePermissions permissions = 3; SpaceLimits limits = 4; + bool isShared = 5; } message SpaceSignResponse { @@ -146,6 +153,18 @@ message SpaceStatusChangeResponse { SpaceStatusPayload payload = 1; } +message SpaceMakeShareableRequest { + string spaceId = 1; +} + +message SpaceMakeShareableResponse {} + +message SpaceMakeUnshareableRequest { + string spaceId = 1; +} + +message SpaceMakeUnshareableResponse {} + // NetworkConfigurationRequest contains currenId of the client configuration, it can be empty message NetworkConfigurationRequest { // currenId of the client configuration @@ -331,6 +350,7 @@ message AccountLimitsSetRequest { uint64 fileStorageLimitBytes = 3; uint32 spaceMembersRead = 4; uint32 spaceMembersWrite = 5; + uint32 sharedSpacesLimit = 6; }