From d7c3fbb96dad31f07d34bd7322b010e502249f41 Mon Sep 17 00:00:00 2001 From: Amanj Sherwany Date: Thu, 10 Oct 2024 10:15:42 -0400 Subject: [PATCH] Various improvements on the cleanroom message (#32) Co-authored-by: amanjpro --- gen/optable/external/v1/cleanroom.pb.go | 639 ++++++++-------------- proto/optable/external/v1/cleanroom.proto | 62 +-- 2 files changed, 231 insertions(+), 470 deletions(-) diff --git a/gen/optable/external/v1/cleanroom.pb.go b/gen/optable/external/v1/cleanroom.pb.go index 85a5710..4cd8dfb 100644 --- a/gen/optable/external/v1/cleanroom.pb.go +++ b/gen/optable/external/v1/cleanroom.pb.go @@ -229,6 +229,59 @@ func (Cleanroom_Participant_State) EnumDescriptor() ([]byte, []int) { return file_optable_external_v1_cleanroom_proto_rawDescGZIP(), []int{0, 1, 0} } +//buf:lint:ignore ENUM_VALUE_PREFIX +type Cleanroom_Participant_Role int32 + +const ( + // Unspecified role. + Cleanroom_Participant_ROLE_UNSPECIFIED Cleanroom_Participant_Role = 0 + // Participant is a publisher. + Cleanroom_Participant_PUBLISHER Cleanroom_Participant_Role = 1 + // Participant is an advertiser. + Cleanroom_Participant_ADVERTISER Cleanroom_Participant_Role = 2 +) + +// Enum value maps for Cleanroom_Participant_Role. +var ( + Cleanroom_Participant_Role_name = map[int32]string{ + 0: "ROLE_UNSPECIFIED", + 1: "PUBLISHER", + 2: "ADVERTISER", + } + Cleanroom_Participant_Role_value = map[string]int32{ + "ROLE_UNSPECIFIED": 0, + "PUBLISHER": 1, + "ADVERTISER": 2, + } +) + +func (x Cleanroom_Participant_Role) Enum() *Cleanroom_Participant_Role { + p := new(Cleanroom_Participant_Role) + *p = x + return p +} + +func (x Cleanroom_Participant_Role) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (Cleanroom_Participant_Role) Descriptor() protoreflect.EnumDescriptor { + return file_optable_external_v1_cleanroom_proto_enumTypes[3].Descriptor() +} + +func (Cleanroom_Participant_Role) Type() protoreflect.EnumType { + return &file_optable_external_v1_cleanroom_proto_enumTypes[3] +} + +func (x Cleanroom_Participant_Role) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use Cleanroom_Participant_Role.Descriptor instead. +func (Cleanroom_Participant_Role) EnumDescriptor() ([]byte, []int) { + return file_optable_external_v1_cleanroom_proto_rawDescGZIP(), []int{0, 1, 1} +} + //buf:lint:ignore ENUM_VALUE_PREFIX type GetCleanroomRequest_View int32 @@ -266,11 +319,11 @@ func (x GetCleanroomRequest_View) String() string { } func (GetCleanroomRequest_View) Descriptor() protoreflect.EnumDescriptor { - return file_optable_external_v1_cleanroom_proto_enumTypes[3].Descriptor() + return file_optable_external_v1_cleanroom_proto_enumTypes[4].Descriptor() } func (GetCleanroomRequest_View) Type() protoreflect.EnumType { - return &file_optable_external_v1_cleanroom_proto_enumTypes[3] + return &file_optable_external_v1_cleanroom_proto_enumTypes[4] } func (x GetCleanroomRequest_View) Number() protoreflect.EnumNumber { @@ -310,8 +363,6 @@ type Cleanroom struct { Config *Cleanroom_Config `protobuf:"bytes,9,opt,name=config,proto3" json:"config,omitempty"` // Participants of the cleanroom. Participants []*Cleanroom_Participant `protobuf:"bytes,10,rep,name=participants,proto3" json:"participants,omitempty"` - // The result of the cleanroom. - Result *Cleanroom_Result `protobuf:"bytes,11,opt,name=result,proto3" json:"result,omitempty"` } func (x *Cleanroom) Reset() { @@ -414,13 +465,6 @@ func (x *Cleanroom) GetParticipants() []*Cleanroom_Participant { return nil } -func (x *Cleanroom) GetResult() *Cleanroom_Result { - if x != nil { - return x.Result - } - return nil -} - // The request message to get a cleanroom. type GetCleanroomRequest struct { state protoimpl.MessageState @@ -603,6 +647,8 @@ type Cleanroom_Participant struct { UpdateTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` // Invitation update time for the participant. InvitationUpdateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=invitation_update_time,json=invitationUpdateTime,proto3" json:"invitation_update_time,omitempty"` + // Role of the participant. + Role Cleanroom_Participant_Role `protobuf:"varint,4,opt,name=role,proto3,enum=optable.external.v1.Cleanroom_Participant_Role" json:"role,omitempty"` } func (x *Cleanroom_Participant) Reset() { @@ -656,72 +702,13 @@ func (x *Cleanroom_Participant) GetInvitationUpdateTime() *timestamppb.Timestamp return nil } -// Result is the resource that represents the result of the cleanroom operation. -type Cleanroom_Result struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Result: - // - // *Cleanroom_Result_PairResult_ - Result isCleanroom_Result_Result `protobuf_oneof:"result"` -} - -func (x *Cleanroom_Result) Reset() { - *x = Cleanroom_Result{} - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *Cleanroom_Result) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Cleanroom_Result) ProtoMessage() {} - -func (x *Cleanroom_Result) ProtoReflect() protoreflect.Message { - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[5] +func (x *Cleanroom_Participant) GetRole() Cleanroom_Participant_Role { if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms + return x.Role } - return mi.MessageOf(x) -} - -// Deprecated: Use Cleanroom_Result.ProtoReflect.Descriptor instead. -func (*Cleanroom_Result) Descriptor() ([]byte, []int) { - return file_optable_external_v1_cleanroom_proto_rawDescGZIP(), []int{0, 2} + return Cleanroom_Participant_ROLE_UNSPECIFIED } -func (m *Cleanroom_Result) GetResult() isCleanroom_Result_Result { - if m != nil { - return m.Result - } - return nil -} - -func (x *Cleanroom_Result) GetPairResult() *Cleanroom_Result_PairResult { - if x, ok := x.GetResult().(*Cleanroom_Result_PairResult_); ok { - return x.PairResult - } - return nil -} - -type isCleanroom_Result_Result interface { - isCleanroom_Result_Result() -} - -type Cleanroom_Result_PairResult_ struct { - PairResult *Cleanroom_Result_PairResult `protobuf:"bytes,1,opt,name=pair_result,json=pairResult,proto3,oneof"` -} - -func (*Cleanroom_Result_PairResult_) isCleanroom_Result_Result() {} - // Configuration for a PAIR cleanroom. type Cleanroom_Config_PairConfig struct { state protoimpl.MessageState @@ -731,18 +718,18 @@ type Cleanroom_Config_PairConfig struct { // The auth-token for the advertiser to use to interact with the cleanroom's provided bucket Token *Cleanroom_Config_PairConfig_AuthToken `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"` // The URL of the advertiser encrypted and hashed data. - AdvertiserEncryptedDataUrl string `protobuf:"bytes,3,opt,name=advertiser_encrypted_data_url,json=advertiserEncryptedDataUrl,proto3" json:"advertiser_encrypted_data_url,omitempty"` + AdvertiserTwiceEncryptedDataUrl string `protobuf:"bytes,3,opt,name=advertiser_twice_encrypted_data_url,json=advertiserTwiceEncryptedDataUrl,proto3" json:"advertiser_twice_encrypted_data_url,omitempty"` // The URL of the publisher encrypted and hashed data. - PublisherEncryptedDataUrl string `protobuf:"bytes,4,opt,name=publisher_encrypted_data_url,json=publisherEncryptedDataUrl,proto3" json:"publisher_encrypted_data_url,omitempty"` + PublisherTwiceEncryptedDataUrl string `protobuf:"bytes,4,opt,name=publisher_twice_encrypted_data_url,json=publisherTwiceEncryptedDataUrl,proto3" json:"publisher_twice_encrypted_data_url,omitempty"` // The URL of the advertiser re-encrypted data by the publisher. - AdvertiserTwiceEncryptedDataUrl string `protobuf:"bytes,5,opt,name=advertiser_twice_encrypted_data_url,json=advertiserTwiceEncryptedDataUrl,proto3" json:"advertiser_twice_encrypted_data_url,omitempty"` + AdvertiserTripleEncryptedDataUrl string `protobuf:"bytes,5,opt,name=advertiser_triple_encrypted_data_url,json=advertiserTripleEncryptedDataUrl,proto3" json:"advertiser_triple_encrypted_data_url,omitempty"` // The URL of the publisher re-encrypted data by the advertiser. - PublisherTwiceEncryptedDataUrl string `protobuf:"bytes,6,opt,name=publisher_twice_encrypted_data_url,json=publisherTwiceEncryptedDataUrl,proto3" json:"publisher_twice_encrypted_data_url,omitempty"` + PublisherTripleEncryptedDataUrl string `protobuf:"bytes,6,opt,name=publisher_triple_encrypted_data_url,json=publisherTripleEncryptedDataUrl,proto3" json:"publisher_triple_encrypted_data_url,omitempty"` } func (x *Cleanroom_Config_PairConfig) Reset() { *x = Cleanroom_Config_PairConfig{} - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[6] + mi := &file_optable_external_v1_cleanroom_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -754,7 +741,7 @@ func (x *Cleanroom_Config_PairConfig) String() string { func (*Cleanroom_Config_PairConfig) ProtoMessage() {} func (x *Cleanroom_Config_PairConfig) ProtoReflect() protoreflect.Message { - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[6] + mi := &file_optable_external_v1_cleanroom_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -777,30 +764,30 @@ func (x *Cleanroom_Config_PairConfig) GetToken() *Cleanroom_Config_PairConfig_Au return nil } -func (x *Cleanroom_Config_PairConfig) GetAdvertiserEncryptedDataUrl() string { +func (x *Cleanroom_Config_PairConfig) GetAdvertiserTwiceEncryptedDataUrl() string { if x != nil { - return x.AdvertiserEncryptedDataUrl + return x.AdvertiserTwiceEncryptedDataUrl } return "" } -func (x *Cleanroom_Config_PairConfig) GetPublisherEncryptedDataUrl() string { +func (x *Cleanroom_Config_PairConfig) GetPublisherTwiceEncryptedDataUrl() string { if x != nil { - return x.PublisherEncryptedDataUrl + return x.PublisherTwiceEncryptedDataUrl } return "" } -func (x *Cleanroom_Config_PairConfig) GetAdvertiserTwiceEncryptedDataUrl() string { +func (x *Cleanroom_Config_PairConfig) GetAdvertiserTripleEncryptedDataUrl() string { if x != nil { - return x.AdvertiserTwiceEncryptedDataUrl + return x.AdvertiserTripleEncryptedDataUrl } return "" } -func (x *Cleanroom_Config_PairConfig) GetPublisherTwiceEncryptedDataUrl() string { +func (x *Cleanroom_Config_PairConfig) GetPublisherTripleEncryptedDataUrl() string { if x != nil { - return x.PublisherTwiceEncryptedDataUrl + return x.PublisherTripleEncryptedDataUrl } return "" } @@ -816,7 +803,7 @@ type Cleanroom_Config_PairConfig_AuthToken struct { func (x *Cleanroom_Config_PairConfig_AuthToken) Reset() { *x = Cleanroom_Config_PairConfig_AuthToken{} - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[7] + mi := &file_optable_external_v1_cleanroom_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -828,7 +815,7 @@ func (x *Cleanroom_Config_PairConfig_AuthToken) String() string { func (*Cleanroom_Config_PairConfig_AuthToken) ProtoMessage() {} func (x *Cleanroom_Config_PairConfig_AuthToken) ProtoReflect() protoreflect.Message { - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[7] + mi := &file_optable_external_v1_cleanroom_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -858,164 +845,6 @@ func (x *Cleanroom_Config_PairConfig_AuthToken) GetExpireTime() *timestamppb.Tim return nil } -// Result of the PAIR cleanroom operation. -type Cleanroom_Result_PairResult struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Indicates when the result was created. - CreateTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` - // Error of the result. - Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` - // Unique identitfier of the advertiser and publisher pair. - AdvertiserPublisherId string `protobuf:"bytes,3,opt,name=advertiser_publisher_id,json=advertiserPublisherId,proto3" json:"advertiser_publisher_id,omitempty"` - // The fully qualified cloud storage URL where the double encrypted PAIR IDs from the publisher are stored. - PublisherPairIdsUrl string `protobuf:"bytes,4,opt,name=publisher_pair_ids_url,json=publisherPairIdsUrl,proto3" json:"publisher_pair_ids_url,omitempty"` - // The fully qualified cloud storage URL where the double encrypted PAIR IDs from the advertiser are stored. - AdvertiserPairIdsUrl string `protobuf:"bytes,5,opt,name=advertiser_pair_ids_url,json=advertiserPairIdsUrl,proto3" json:"advertiser_pair_ids_url,omitempty"` - // The fully qualified cloud storage URL where the once decrypted matched PAIR IDs are stored. This is optional. - MatchedPairIdsUrl string `protobuf:"bytes,6,opt,name=matched_pair_ids_url,json=matchedPairIdsUrl,proto3" json:"matched_pair_ids_url,omitempty"` - // Match rate of the pair cleanroom result. - MatchRate *Cleanroom_Result_PairResult_MatchRate `protobuf:"bytes,7,opt,name=match_rate,json=matchRate,proto3" json:"match_rate,omitempty"` -} - -func (x *Cleanroom_Result_PairResult) Reset() { - *x = Cleanroom_Result_PairResult{} - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[8] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *Cleanroom_Result_PairResult) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Cleanroom_Result_PairResult) ProtoMessage() {} - -func (x *Cleanroom_Result_PairResult) ProtoReflect() protoreflect.Message { - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[8] - if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Cleanroom_Result_PairResult.ProtoReflect.Descriptor instead. -func (*Cleanroom_Result_PairResult) Descriptor() ([]byte, []int) { - return file_optable_external_v1_cleanroom_proto_rawDescGZIP(), []int{0, 2, 0} -} - -func (x *Cleanroom_Result_PairResult) GetCreateTime() *timestamppb.Timestamp { - if x != nil { - return x.CreateTime - } - return nil -} - -func (x *Cleanroom_Result_PairResult) GetError() string { - if x != nil { - return x.Error - } - return "" -} - -func (x *Cleanroom_Result_PairResult) GetAdvertiserPublisherId() string { - if x != nil { - return x.AdvertiserPublisherId - } - return "" -} - -func (x *Cleanroom_Result_PairResult) GetPublisherPairIdsUrl() string { - if x != nil { - return x.PublisherPairIdsUrl - } - return "" -} - -func (x *Cleanroom_Result_PairResult) GetAdvertiserPairIdsUrl() string { - if x != nil { - return x.AdvertiserPairIdsUrl - } - return "" -} - -func (x *Cleanroom_Result_PairResult) GetMatchedPairIdsUrl() string { - if x != nil { - return x.MatchedPairIdsUrl - } - return "" -} - -func (x *Cleanroom_Result_PairResult) GetMatchRate() *Cleanroom_Result_PairResult_MatchRate { - if x != nil { - return x.MatchRate - } - return nil -} - -// The match rate of the pair cleanroom result. -type Cleanroom_Result_PairResult_MatchRate struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // The match rate of the pair cleanroom result. - Rate float32 `protobuf:"fixed32,1,opt,name=rate,proto3" json:"rate,omitempty"` - // details on the match rate if it isn't available. - // ex: Below threshold, too much overlap, etc. - Details string `protobuf:"bytes,2,opt,name=details,proto3" json:"details,omitempty"` -} - -func (x *Cleanroom_Result_PairResult_MatchRate) Reset() { - *x = Cleanroom_Result_PairResult_MatchRate{} - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[9] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *Cleanroom_Result_PairResult_MatchRate) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Cleanroom_Result_PairResult_MatchRate) ProtoMessage() {} - -func (x *Cleanroom_Result_PairResult_MatchRate) ProtoReflect() protoreflect.Message { - mi := &file_optable_external_v1_cleanroom_proto_msgTypes[9] - if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Cleanroom_Result_PairResult_MatchRate.ProtoReflect.Descriptor instead. -func (*Cleanroom_Result_PairResult_MatchRate) Descriptor() ([]byte, []int) { - return file_optable_external_v1_cleanroom_proto_rawDescGZIP(), []int{0, 2, 0, 0} -} - -func (x *Cleanroom_Result_PairResult_MatchRate) GetRate() float32 { - if x != nil { - return x.Rate - } - return 0 -} - -func (x *Cleanroom_Result_PairResult_MatchRate) GetDetails() string { - if x != nil { - return x.Details - } - return "" -} - var File_optable_external_v1_cleanroom_proto protoreflect.FileDescriptor var file_optable_external_v1_cleanroom_proto_rawDesc = []byte{ @@ -1028,7 +857,7 @@ var file_optable_external_v1_cleanroom_proto_rawDesc = []byte{ 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf6, 0x13, 0x0a, 0x09, 0x43, 0x6c, 0x65, 0x61, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf5, 0x0f, 0x0a, 0x09, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x08, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, @@ -1065,66 +894,68 @@ var file_optable_external_v1_cleanroom_proto_rawDesc = []byte{ 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, - 0x69, 0x70, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x42, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, + 0x69, 0x70, 0x61, 0x6e, 0x74, 0x73, 0x1a, 0x89, 0x05, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x12, 0x53, 0x0a, 0x0b, 0x70, 0x61, 0x69, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, - 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x1a, 0xef, 0x04, 0x0a, 0x06, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x53, 0x0a, 0x0b, 0x70, 0x61, 0x69, 0x72, 0x5f, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6f, 0x70, 0x74, - 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, - 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x2e, 0x50, 0x61, 0x69, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0a, - 0x70, 0x61, 0x69, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0x85, 0x04, 0x0a, 0x0a, 0x50, - 0x61, 0x69, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x55, 0x0a, 0x05, 0x74, 0x6f, 0x6b, - 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, - 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, - 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, - 0x50, 0x61, 0x69, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x54, - 0x6f, 0x6b, 0x65, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, - 0x12, 0x46, 0x0a, 0x1d, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x5f, 0x65, - 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x75, 0x72, - 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x1a, 0x61, 0x64, - 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, - 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, 0x72, 0x6c, 0x12, 0x44, 0x0a, 0x1c, 0x70, 0x75, 0x62, 0x6c, - 0x69, 0x73, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, - 0x64, 0x61, 0x74, 0x61, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x03, 0x52, 0x19, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x45, 0x6e, - 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, 0x72, 0x6c, 0x12, 0x51, - 0x0a, 0x23, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x5f, 0x74, 0x77, 0x69, + 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x50, 0x61, + 0x69, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0a, 0x70, 0x61, 0x69, 0x72, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0x9f, 0x04, 0x0a, 0x0a, 0x50, 0x61, 0x69, 0x72, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x55, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, + 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, + 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x50, 0x61, 0x69, 0x72, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x51, 0x0a, 0x23, + 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x5f, 0x74, 0x77, 0x69, 0x63, 0x65, + 0x5f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, + 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x1f, + 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x54, 0x77, 0x69, 0x63, 0x65, 0x45, + 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, 0x72, 0x6c, 0x12, + 0x4f, 0x0a, 0x22, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x5f, 0x74, 0x77, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, - 0x61, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, - 0x52, 0x1f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x54, 0x77, 0x69, 0x63, - 0x65, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, 0x72, - 0x6c, 0x12, 0x4f, 0x0a, 0x22, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x5f, 0x74, - 0x77, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x64, - 0x61, 0x74, 0x61, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x1e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x54, 0x77, 0x69, - 0x63, 0x65, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, - 0x72, 0x6c, 0x1a, 0x68, 0x0a, 0x09, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, - 0x19, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x40, 0x0a, 0x0b, 0x65, 0x78, - 0x70, 0x69, 0x72, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, - 0x52, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x01, - 0x10, 0x02, 0x42, 0x08, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0xbe, 0x03, 0x0a, - 0x0b, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x12, 0x4b, 0x0a, 0x05, - 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x6f, 0x70, - 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, - 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x50, 0x61, 0x72, 0x74, - 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x75, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, - 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x55, 0x0a, 0x16, 0x69, - 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, - 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x69, 0x6e, - 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, - 0x6d, 0x65, 0x22, 0xc8, 0x01, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x15, 0x0a, 0x11, + 0x61, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x52, 0x1e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x54, 0x77, 0x69, 0x63, 0x65, + 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, 0x72, 0x6c, + 0x12, 0x53, 0x0a, 0x24, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x5f, 0x74, + 0x72, 0x69, 0x70, 0x6c, 0x65, 0x5f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, + 0x64, 0x61, 0x74, 0x61, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, + 0xe0, 0x41, 0x03, 0x52, 0x20, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x54, + 0x72, 0x69, 0x70, 0x6c, 0x65, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, + 0x74, 0x61, 0x55, 0x72, 0x6c, 0x12, 0x51, 0x0a, 0x23, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, + 0x65, 0x72, 0x5f, 0x74, 0x72, 0x69, 0x70, 0x6c, 0x65, 0x5f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, + 0x74, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x1f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, + 0x65, 0x72, 0x54, 0x72, 0x69, 0x70, 0x6c, 0x65, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, + 0x64, 0x44, 0x61, 0x74, 0x61, 0x55, 0x72, 0x6c, 0x1a, 0x68, 0x0a, 0x09, 0x41, 0x75, 0x74, 0x68, + 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x19, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, + 0x12, 0x40, 0x0a, 0x0b, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, + 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x54, 0x69, + 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x42, 0x08, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x1a, 0xc5, 0x04, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, + 0x6e, 0x74, 0x12, 0x4b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x0e, 0x32, 0x30, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, + 0x6d, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x2e, 0x53, 0x74, + 0x61, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, + 0x40, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, + 0x65, 0x12, 0x55, 0x0a, 0x16, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x52, 0x14, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, + 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, + 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, + 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, + 0x6e, 0x74, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x72, 0x6f, + 0x6c, 0x65, 0x22, 0xc8, 0x01, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x49, 0x54, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x0d, 0x0a, @@ -1136,90 +967,56 @@ var file_optable_external_v1_cleanroom_proto_rawDesc = []byte{ 0x54, 0x41, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45, 0x44, 0x10, 0x08, 0x12, 0x15, 0x0a, 0x11, 0x44, 0x41, 0x54, 0x41, 0x5f, 0x54, 0x52, 0x41, 0x4e, 0x53, 0x46, 0x4f, 0x52, 0x4d, 0x49, 0x4e, 0x47, 0x10, 0x09, 0x12, 0x14, 0x0a, 0x10, 0x44, 0x41, 0x54, 0x41, 0x5f, - 0x54, 0x52, 0x41, 0x4e, 0x53, 0x46, 0x4f, 0x52, 0x4d, 0x45, 0x44, 0x10, 0x0a, 0x1a, 0xe1, 0x04, - 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x53, 0x0a, 0x0b, 0x70, 0x61, 0x69, 0x72, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, - 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x50, 0x61, 0x69, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, - 0x00, 0x52, 0x0a, 0x70, 0x61, 0x69, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x1a, 0xf7, 0x03, - 0x0a, 0x0a, 0x50, 0x61, 0x69, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x40, 0x0a, 0x0b, - 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, - 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x3b, 0x0a, 0x17, 0x61, 0x64, 0x76, - 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, - 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, - 0x15, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6c, 0x69, - 0x73, 0x68, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x16, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, - 0x68, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x69, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x5f, 0x75, 0x72, 0x6c, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x13, 0x70, 0x75, 0x62, - 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x50, 0x61, 0x69, 0x72, 0x49, 0x64, 0x73, 0x55, 0x72, 0x6c, - 0x12, 0x3a, 0x0a, 0x17, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x65, 0x72, 0x5f, 0x70, - 0x61, 0x69, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x14, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, - 0x65, 0x72, 0x50, 0x61, 0x69, 0x72, 0x49, 0x64, 0x73, 0x55, 0x72, 0x6c, 0x12, 0x34, 0x0a, 0x14, - 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x69, 0x72, 0x5f, 0x69, 0x64, 0x73, - 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, - 0x11, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x50, 0x61, 0x69, 0x72, 0x49, 0x64, 0x73, 0x55, - 0x72, 0x6c, 0x12, 0x5e, 0x0a, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, - 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, - 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, - 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x50, 0x61, - 0x69, 0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x61, - 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x61, - 0x74, 0x65, 0x1a, 0x43, 0x0a, 0x09, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x61, 0x74, 0x65, 0x12, - 0x17, 0x0a, 0x04, 0x72, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x42, 0x03, 0xe0, - 0x41, 0x03, 0x52, 0x04, 0x72, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, - 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x07, - 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x22, 0x69, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x54, - 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, - 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, - 0x0a, 0x0a, 0x06, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x45, - 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4e, 0x44, 0x45, 0x44, - 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0c, - 0x0a, 0x08, 0x41, 0x52, 0x43, 0x48, 0x49, 0x56, 0x45, 0x44, 0x10, 0x06, 0x22, 0x26, 0x0a, 0x04, - 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x10, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, - 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x50, 0x41, - 0x49, 0x52, 0x10, 0x01, 0x3a, 0x3a, 0xea, 0x41, 0x37, 0x0a, 0x1d, 0x63, 0x6c, 0x65, 0x61, 0x6e, - 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, 0x74, 0x62, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, - 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x12, 0x16, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x72, - 0x6f, 0x6f, 0x6d, 0x73, 0x2f, 0x7b, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x7d, - 0x22, 0xcf, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, - 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x54, 0x52, 0x41, 0x4e, 0x53, 0x46, 0x4f, 0x52, 0x4d, 0x45, 0x44, 0x10, 0x0a, 0x22, 0x3b, 0x0a, + 0x04, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x14, 0x0a, 0x10, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x55, 0x4e, + 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x50, + 0x55, 0x42, 0x4c, 0x49, 0x53, 0x48, 0x45, 0x52, 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x41, 0x44, + 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x45, 0x52, 0x10, 0x02, 0x22, 0x69, 0x0a, 0x05, 0x53, 0x74, + 0x61, 0x74, 0x65, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, + 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x52, + 0x45, 0x41, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x41, 0x43, 0x54, 0x49, + 0x56, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x03, + 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4e, 0x44, 0x45, 0x44, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x46, + 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x41, 0x52, 0x43, 0x48, 0x49, + 0x56, 0x45, 0x44, 0x10, 0x06, 0x22, 0x26, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, + 0x10, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, + 0x44, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x50, 0x41, 0x49, 0x52, 0x10, 0x01, 0x3a, 0x3a, 0xea, + 0x41, 0x37, 0x0a, 0x1d, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, + 0x74, 0x62, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, + 0x6d, 0x12, 0x16, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x73, 0x2f, 0x7b, 0x63, + 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x7d, 0x4a, 0x04, 0x08, 0x0b, 0x10, 0x0c, 0x22, + 0xcf, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x1f, 0x0a, 0x1d, 0x63, + 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, 0x74, 0x62, 0x6c, 0x2e, 0x63, + 0x6f, 0x6d, 0x2f, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x52, 0x04, 0x6e, 0x61, + 0x6d, 0x65, 0x12, 0x46, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x2d, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, + 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x42, + 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 0x35, 0x0a, 0x04, 0x56, 0x69, + 0x65, 0x77, 0x12, 0x14, 0x0a, 0x10, 0x56, 0x49, 0x45, 0x57, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, + 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x46, 0x55, 0x4c, 0x4c, + 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x45, 0x4e, 0x53, 0x49, 0x54, 0x49, 0x56, 0x45, 0x10, + 0x02, 0x22, 0x50, 0x0a, 0x13, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x1f, 0x0a, 0x1d, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, 0x74, 0x62, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x52, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x12, 0x46, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x2d, 0x2e, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x6e, - 0x72, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x56, 0x69, 0x65, 0x77, - 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 0x35, 0x0a, 0x04, 0x56, - 0x69, 0x65, 0x77, 0x12, 0x14, 0x0a, 0x10, 0x56, 0x49, 0x45, 0x57, 0x5f, 0x55, 0x4e, 0x53, 0x50, - 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x46, 0x55, 0x4c, - 0x4c, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x45, 0x4e, 0x53, 0x49, 0x54, 0x49, 0x56, 0x45, - 0x10, 0x02, 0x22, 0x50, 0x0a, 0x13, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b, - 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x1f, 0x0a, - 0x1d, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, 0x74, 0x62, 0x6c, - 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x52, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xcd, 0x01, 0x0a, 0x17, 0x63, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, 0x74, - 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, - 0x42, 0x0e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x74, 0x6f, - 0x50, 0x01, 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, - 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x2d, 0x61, 0x70, 0x69, - 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x65, 0x78, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4f, 0x45, 0x58, 0xaa, 0x02, - 0x13, 0x4f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x13, 0x4f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5c, 0x45, - 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x1f, 0x4f, 0x70, 0x74, - 0x61, 0x62, 0x6c, 0x65, 0x5c, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5c, 0x56, 0x31, - 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x15, 0x4f, - 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3a, 0x3a, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x61, 0x6d, 0x65, 0x42, 0xcd, 0x01, 0x0a, 0x17, 0x63, 0x6f, 0x6d, 0x2e, 0x6f, 0x70, 0x74, 0x61, + 0x62, 0x6c, 0x65, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x42, + 0x0e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, + 0x01, 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x70, + 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x2d, 0x61, 0x70, 0x69, 0x2f, + 0x67, 0x65, 0x6e, 0x2f, 0x6f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x65, 0x78, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4f, 0x45, 0x58, 0xaa, 0x02, 0x13, + 0x4f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x2e, 0x56, 0x31, 0xca, 0x02, 0x13, 0x4f, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5c, 0x45, 0x78, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x1f, 0x4f, 0x70, 0x74, 0x61, + 0x62, 0x6c, 0x65, 0x5c, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5c, 0x56, 0x31, 0x5c, + 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x15, 0x4f, 0x70, + 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3a, 0x3a, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x3a, + 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -1234,49 +1031,44 @@ func file_optable_external_v1_cleanroom_proto_rawDescGZIP() []byte { return file_optable_external_v1_cleanroom_proto_rawDescData } -var file_optable_external_v1_cleanroom_proto_enumTypes = make([]protoimpl.EnumInfo, 4) -var file_optable_external_v1_cleanroom_proto_msgTypes = make([]protoimpl.MessageInfo, 10) +var file_optable_external_v1_cleanroom_proto_enumTypes = make([]protoimpl.EnumInfo, 5) +var file_optable_external_v1_cleanroom_proto_msgTypes = make([]protoimpl.MessageInfo, 7) var file_optable_external_v1_cleanroom_proto_goTypes = []any{ (Cleanroom_State)(0), // 0: optable.external.v1.Cleanroom.State (Cleanroom_Type)(0), // 1: optable.external.v1.Cleanroom.Type (Cleanroom_Participant_State)(0), // 2: optable.external.v1.Cleanroom.Participant.State - (GetCleanroomRequest_View)(0), // 3: optable.external.v1.GetCleanroomRequest.View - (*Cleanroom)(nil), // 4: optable.external.v1.Cleanroom - (*GetCleanroomRequest)(nil), // 5: optable.external.v1.GetCleanroomRequest - (*RefreshTokenRequest)(nil), // 6: optable.external.v1.RefreshTokenRequest - (*Cleanroom_Config)(nil), // 7: optable.external.v1.Cleanroom.Config - (*Cleanroom_Participant)(nil), // 8: optable.external.v1.Cleanroom.Participant - (*Cleanroom_Result)(nil), // 9: optable.external.v1.Cleanroom.Result + (Cleanroom_Participant_Role)(0), // 3: optable.external.v1.Cleanroom.Participant.Role + (GetCleanroomRequest_View)(0), // 4: optable.external.v1.GetCleanroomRequest.View + (*Cleanroom)(nil), // 5: optable.external.v1.Cleanroom + (*GetCleanroomRequest)(nil), // 6: optable.external.v1.GetCleanroomRequest + (*RefreshTokenRequest)(nil), // 7: optable.external.v1.RefreshTokenRequest + (*Cleanroom_Config)(nil), // 8: optable.external.v1.Cleanroom.Config + (*Cleanroom_Participant)(nil), // 9: optable.external.v1.Cleanroom.Participant (*Cleanroom_Config_PairConfig)(nil), // 10: optable.external.v1.Cleanroom.Config.PairConfig (*Cleanroom_Config_PairConfig_AuthToken)(nil), // 11: optable.external.v1.Cleanroom.Config.PairConfig.AuthToken - (*Cleanroom_Result_PairResult)(nil), // 12: optable.external.v1.Cleanroom.Result.PairResult - (*Cleanroom_Result_PairResult_MatchRate)(nil), // 13: optable.external.v1.Cleanroom.Result.PairResult.MatchRate - (*timestamppb.Timestamp)(nil), // 14: google.protobuf.Timestamp + (*timestamppb.Timestamp)(nil), // 12: google.protobuf.Timestamp } var file_optable_external_v1_cleanroom_proto_depIdxs = []int32{ - 14, // 0: optable.external.v1.Cleanroom.create_time:type_name -> google.protobuf.Timestamp - 14, // 1: optable.external.v1.Cleanroom.update_time:type_name -> google.protobuf.Timestamp - 14, // 2: optable.external.v1.Cleanroom.expire_time:type_name -> google.protobuf.Timestamp + 12, // 0: optable.external.v1.Cleanroom.create_time:type_name -> google.protobuf.Timestamp + 12, // 1: optable.external.v1.Cleanroom.update_time:type_name -> google.protobuf.Timestamp + 12, // 2: optable.external.v1.Cleanroom.expire_time:type_name -> google.protobuf.Timestamp 0, // 3: optable.external.v1.Cleanroom.state:type_name -> optable.external.v1.Cleanroom.State 1, // 4: optable.external.v1.Cleanroom.type:type_name -> optable.external.v1.Cleanroom.Type - 7, // 5: optable.external.v1.Cleanroom.config:type_name -> optable.external.v1.Cleanroom.Config - 8, // 6: optable.external.v1.Cleanroom.participants:type_name -> optable.external.v1.Cleanroom.Participant - 9, // 7: optable.external.v1.Cleanroom.result:type_name -> optable.external.v1.Cleanroom.Result - 3, // 8: optable.external.v1.GetCleanroomRequest.view:type_name -> optable.external.v1.GetCleanroomRequest.View - 10, // 9: optable.external.v1.Cleanroom.Config.pair_config:type_name -> optable.external.v1.Cleanroom.Config.PairConfig - 2, // 10: optable.external.v1.Cleanroom.Participant.state:type_name -> optable.external.v1.Cleanroom.Participant.State - 14, // 11: optable.external.v1.Cleanroom.Participant.update_time:type_name -> google.protobuf.Timestamp - 14, // 12: optable.external.v1.Cleanroom.Participant.invitation_update_time:type_name -> google.protobuf.Timestamp - 12, // 13: optable.external.v1.Cleanroom.Result.pair_result:type_name -> optable.external.v1.Cleanroom.Result.PairResult - 11, // 14: optable.external.v1.Cleanroom.Config.PairConfig.token:type_name -> optable.external.v1.Cleanroom.Config.PairConfig.AuthToken - 14, // 15: optable.external.v1.Cleanroom.Config.PairConfig.AuthToken.expire_time:type_name -> google.protobuf.Timestamp - 14, // 16: optable.external.v1.Cleanroom.Result.PairResult.create_time:type_name -> google.protobuf.Timestamp - 13, // 17: optable.external.v1.Cleanroom.Result.PairResult.match_rate:type_name -> optable.external.v1.Cleanroom.Result.PairResult.MatchRate - 18, // [18:18] is the sub-list for method output_type - 18, // [18:18] is the sub-list for method input_type - 18, // [18:18] is the sub-list for extension type_name - 18, // [18:18] is the sub-list for extension extendee - 0, // [0:18] is the sub-list for field type_name + 8, // 5: optable.external.v1.Cleanroom.config:type_name -> optable.external.v1.Cleanroom.Config + 9, // 6: optable.external.v1.Cleanroom.participants:type_name -> optable.external.v1.Cleanroom.Participant + 4, // 7: optable.external.v1.GetCleanroomRequest.view:type_name -> optable.external.v1.GetCleanroomRequest.View + 10, // 8: optable.external.v1.Cleanroom.Config.pair_config:type_name -> optable.external.v1.Cleanroom.Config.PairConfig + 2, // 9: optable.external.v1.Cleanroom.Participant.state:type_name -> optable.external.v1.Cleanroom.Participant.State + 12, // 10: optable.external.v1.Cleanroom.Participant.update_time:type_name -> google.protobuf.Timestamp + 12, // 11: optable.external.v1.Cleanroom.Participant.invitation_update_time:type_name -> google.protobuf.Timestamp + 3, // 12: optable.external.v1.Cleanroom.Participant.role:type_name -> optable.external.v1.Cleanroom.Participant.Role + 11, // 13: optable.external.v1.Cleanroom.Config.PairConfig.token:type_name -> optable.external.v1.Cleanroom.Config.PairConfig.AuthToken + 12, // 14: optable.external.v1.Cleanroom.Config.PairConfig.AuthToken.expire_time:type_name -> google.protobuf.Timestamp + 15, // [15:15] is the sub-list for method output_type + 15, // [15:15] is the sub-list for method input_type + 15, // [15:15] is the sub-list for extension type_name + 15, // [15:15] is the sub-list for extension extendee + 0, // [0:15] is the sub-list for field type_name } func init() { file_optable_external_v1_cleanroom_proto_init() } @@ -1287,16 +1079,13 @@ func file_optable_external_v1_cleanroom_proto_init() { file_optable_external_v1_cleanroom_proto_msgTypes[3].OneofWrappers = []any{ (*Cleanroom_Config_PairConfig_)(nil), } - file_optable_external_v1_cleanroom_proto_msgTypes[5].OneofWrappers = []any{ - (*Cleanroom_Result_PairResult_)(nil), - } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_optable_external_v1_cleanroom_proto_rawDesc, - NumEnums: 4, - NumMessages: 10, + NumEnums: 5, + NumMessages: 7, NumExtensions: 0, NumServices: 0, }, diff --git a/proto/optable/external/v1/cleanroom.proto b/proto/optable/external/v1/cleanroom.proto index 28edde6..6e14a26 100644 --- a/proto/optable/external/v1/cleanroom.proto +++ b/proto/optable/external/v1/cleanroom.proto @@ -11,6 +11,7 @@ import "google/api/resource.proto"; // data clean room that allows secure data analysis on data contributed // by multiple parties. message Cleanroom { + reserved 11; option (google.api.resource) = { type: "cleanroom.optbl.com/Cleanroom" pattern: "cleanrooms/{cleanroom}" @@ -87,16 +88,16 @@ message Cleanroom { AuthToken token = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; // The URL of the advertiser encrypted and hashed data. - string advertiser_encrypted_data_url = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; + string advertiser_twice_encrypted_data_url = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; // The URL of the publisher encrypted and hashed data. - string publisher_encrypted_data_url = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; + string publisher_twice_encrypted_data_url = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; // The URL of the advertiser re-encrypted data by the publisher. - string advertiser_twice_encrypted_data_url = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; + string advertiser_triple_encrypted_data_url = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; // The URL of the publisher re-encrypted data by the advertiser. - string publisher_twice_encrypted_data_url = 6 [(google.api.field_behavior) = OUTPUT_ONLY]; + string publisher_triple_encrypted_data_url = 6 [(google.api.field_behavior) = OUTPUT_ONLY]; } } @@ -139,52 +140,23 @@ message Cleanroom { // Invitation update time for the participant. google.protobuf.Timestamp invitation_update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; - } - - // Participants of the cleanroom. - repeated Participant participants = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; - // Result is the resource that represents the result of the cleanroom operation. - message Result { - oneof result { - PairResult pair_result = 1; + //buf:lint:ignore ENUM_VALUE_PREFIX + enum Role { + // Unspecified role. + ROLE_UNSPECIFIED = 0; + // Participant is a publisher. + PUBLISHER = 1; + // Participant is an advertiser. + ADVERTISER = 2; } - // Result of the PAIR cleanroom operation. - message PairResult { - // Indicates when the result was created. - google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; - - // Error of the result. - string error = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; - - // Unique identitfier of the advertiser and publisher pair. - string advertiser_publisher_id = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; - - // The fully qualified cloud storage URL where the double encrypted PAIR IDs from the publisher are stored. - string publisher_pair_ids_url = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; - - // The fully qualified cloud storage URL where the double encrypted PAIR IDs from the advertiser are stored. - string advertiser_pair_ids_url = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; - - // The fully qualified cloud storage URL where the once decrypted matched PAIR IDs are stored. This is optional. - string matched_pair_ids_url = 6 [(google.api.field_behavior) = OUTPUT_ONLY]; - - // The match rate of the pair cleanroom result. - message MatchRate { - // The match rate of the pair cleanroom result. - float rate = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; - // details on the match rate if it isn't available. - // ex: Below threshold, too much overlap, etc. - string details = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; - } - // Match rate of the pair cleanroom result. - MatchRate match_rate = 7 [(google.api.field_behavior) = OUTPUT_ONLY]; - } + // Role of the participant. + Role role = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; } - // The result of the cleanroom. - Result result = 11 [(google.api.field_behavior) = OUTPUT_ONLY]; + // Participants of the cleanroom. + repeated Participant participants = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; } // The request message to get a cleanroom.