From b271959d1b1b8858dc75f34ab330490a96ef2f9a Mon Sep 17 00:00:00 2001 From: droplet-bot Date: Tue, 13 Feb 2024 16:15:43 +0000 Subject: [PATCH] chore: auto-gen by protobufs triggered by commit: https://github.com/instill-ai/protobufs/commit/15d36695a85011500217983a8b4f5915a25375c5 --- core/mgmt/v1beta/mgmt.pb.go | 695 +++++++++++++++++++++--------------- 1 file changed, 406 insertions(+), 289 deletions(-) diff --git a/core/mgmt/v1beta/mgmt.pb.go b/core/mgmt/v1beta/mgmt.pb.go index f9242a1..fa3ad31 100644 --- a/core/mgmt/v1beta/mgmt.pb.go +++ b/core/mgmt/v1beta/mgmt.pb.go @@ -359,6 +359,83 @@ func (ApiToken_State) EnumDescriptor() ([]byte, []int) { return file_core_mgmt_v1beta_mgmt_proto_rawDescGZIP(), []int{30, 0} } +// Enumerates the status types for the user's subscription. +type StripeSubscriptionDetail_Status int32 + +const ( + // Unspecified status. + StripeSubscriptionDetail_STATUS_UNSPECIFIED StripeSubscriptionDetail_Status = 0 + // Incomplete. + StripeSubscriptionDetail_STATUS_INCOMPLETE StripeSubscriptionDetail_Status = 1 + // Incomplete Expired. + StripeSubscriptionDetail_STATUS_INCOMPLETE_EXPIRED StripeSubscriptionDetail_Status = 2 + // Trialing. + StripeSubscriptionDetail_STATUS_TRIALING StripeSubscriptionDetail_Status = 3 + // Active. + StripeSubscriptionDetail_STATUS_ACTIVE StripeSubscriptionDetail_Status = 4 + // Past due. + StripeSubscriptionDetail_STATUS_PAST_DUE StripeSubscriptionDetail_Status = 5 + // Canceled. + StripeSubscriptionDetail_STATUS_CANCELED StripeSubscriptionDetail_Status = 6 + // Unpaid. + StripeSubscriptionDetail_STATUS_UNPAID StripeSubscriptionDetail_Status = 7 + // Paused. + StripeSubscriptionDetail_STATUS_PAUSED StripeSubscriptionDetail_Status = 8 +) + +// Enum value maps for StripeSubscriptionDetail_Status. +var ( + StripeSubscriptionDetail_Status_name = map[int32]string{ + 0: "STATUS_UNSPECIFIED", + 1: "STATUS_INCOMPLETE", + 2: "STATUS_INCOMPLETE_EXPIRED", + 3: "STATUS_TRIALING", + 4: "STATUS_ACTIVE", + 5: "STATUS_PAST_DUE", + 6: "STATUS_CANCELED", + 7: "STATUS_UNPAID", + 8: "STATUS_PAUSED", + } + StripeSubscriptionDetail_Status_value = map[string]int32{ + "STATUS_UNSPECIFIED": 0, + "STATUS_INCOMPLETE": 1, + "STATUS_INCOMPLETE_EXPIRED": 2, + "STATUS_TRIALING": 3, + "STATUS_ACTIVE": 4, + "STATUS_PAST_DUE": 5, + "STATUS_CANCELED": 6, + "STATUS_UNPAID": 7, + "STATUS_PAUSED": 8, + } +) + +func (x StripeSubscriptionDetail_Status) Enum() *StripeSubscriptionDetail_Status { + p := new(StripeSubscriptionDetail_Status) + *p = x + return p +} + +func (x StripeSubscriptionDetail_Status) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (StripeSubscriptionDetail_Status) Descriptor() protoreflect.EnumDescriptor { + return file_core_mgmt_v1beta_mgmt_proto_enumTypes[6].Descriptor() +} + +func (StripeSubscriptionDetail_Status) Type() protoreflect.EnumType { + return &file_core_mgmt_v1beta_mgmt_proto_enumTypes[6] +} + +func (x StripeSubscriptionDetail_Status) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use StripeSubscriptionDetail_Status.Descriptor instead. +func (StripeSubscriptionDetail_Status) EnumDescriptor() ([]byte, []int) { + return file_core_mgmt_v1beta_mgmt_proto_rawDescGZIP(), []int{80, 0} +} + // Enumerates the plan types for the user subscription. type UserSubscription_Plan int32 @@ -396,11 +473,11 @@ func (x UserSubscription_Plan) String() string { } func (UserSubscription_Plan) Descriptor() protoreflect.EnumDescriptor { - return file_core_mgmt_v1beta_mgmt_proto_enumTypes[6].Descriptor() + return file_core_mgmt_v1beta_mgmt_proto_enumTypes[7].Descriptor() } func (UserSubscription_Plan) Type() protoreflect.EnumType { - return &file_core_mgmt_v1beta_mgmt_proto_enumTypes[6] + return &file_core_mgmt_v1beta_mgmt_proto_enumTypes[7] } func (x UserSubscription_Plan) Number() protoreflect.EnumNumber { @@ -453,11 +530,11 @@ func (x OrganizationSubscription_Plan) String() string { } func (OrganizationSubscription_Plan) Descriptor() protoreflect.EnumDescriptor { - return file_core_mgmt_v1beta_mgmt_proto_enumTypes[7].Descriptor() + return file_core_mgmt_v1beta_mgmt_proto_enumTypes[8].Descriptor() } func (OrganizationSubscription_Plan) Type() protoreflect.EnumType { - return &file_core_mgmt_v1beta_mgmt_proto_enumTypes[7] + return &file_core_mgmt_v1beta_mgmt_proto_enumTypes[8] } func (x OrganizationSubscription_Plan) Number() protoreflect.EnumNumber { @@ -5213,6 +5290,10 @@ type StripeSubscriptionDetail struct { Price float32 `protobuf:"fixed32,4,opt,name=price,proto3" json:"price,omitempty"` // Optional timestamp indicating when the subscription was canceled, if applicable. CanceledAt *int32 `protobuf:"varint,5,opt,name=canceled_at,json=canceledAt,proto3,oneof" json:"canceled_at,omitempty"` + // Optional timestamp indicating when the trial ended, if applicable. + TrialEnd *int32 `protobuf:"varint,6,opt,name=trial_end,json=trialEnd,proto3,oneof" json:"trial_end,omitempty"` + // Status of the subscription. + Status StripeSubscriptionDetail_Status `protobuf:"varint,7,opt,name=status,proto3,enum=core.mgmt.v1beta.StripeSubscriptionDetail_Status" json:"status,omitempty"` } func (x *StripeSubscriptionDetail) Reset() { @@ -5282,6 +5363,20 @@ func (x *StripeSubscriptionDetail) GetCanceledAt() int32 { return 0 } +func (x *StripeSubscriptionDetail) GetTrialEnd() int32 { + if x != nil && x.TrialEnd != nil { + return *x.TrialEnd + } + return 0 +} + +func (x *StripeSubscriptionDetail) GetStatus() StripeSubscriptionDetail_Status { + if x != nil { + return x.Status + } + return StripeSubscriptionDetail_STATUS_UNSPECIFIED +} + // UserSubscription details describe the plan (i.e., features) a user has access to. type UserSubscription struct { state protoimpl.MessageState @@ -6644,7 +6739,7 @@ var file_core_mgmt_v1beta_mgmt_proto_rawDesc = []byte{ 0x69, 0x70, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x26, 0x0a, 0x24, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0xb2, 0x01, 0x0a, 0x18, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, + 0x22, 0xfe, 0x03, 0x0a, 0x18, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, @@ -6654,130 +6749,150 @@ var file_core_mgmt_v1beta_mgmt_proto_rawDesc = []byte{ 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0a, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x65, 0x64, - 0x41, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, - 0x65, 0x64, 0x5f, 0x61, 0x74, 0x22, 0xd2, 0x01, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, - 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x04, 0x70, 0x6c, - 0x61, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, - 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, - 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, - 0x6e, 0x52, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x12, 0x42, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, - 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, + 0x41, 0x74, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x65, + 0x6e, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x08, 0x74, 0x72, 0x69, 0x61, + 0x6c, 0x45, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x52, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x3d, 0x0a, 0x04, 0x50, - 0x6c, 0x61, 0x6e, 0x12, 0x14, 0x0a, 0x10, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, - 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x50, 0x4c, 0x41, - 0x4e, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x4d, 0x49, 0x55, 0x4d, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, - 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x10, 0x02, 0x22, 0xb4, 0x02, 0x0a, 0x18, 0x4f, - 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, - 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, - 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x12, 0x42, 0x0a, 0x06, - 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, - 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, - 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, - 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x74, 0x73, 0x12, 0x1d, 0x0a, - 0x0a, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x09, 0x75, 0x73, 0x65, 0x64, 0x53, 0x65, 0x61, 0x74, 0x73, 0x22, 0x53, 0x0a, 0x04, - 0x50, 0x6c, 0x61, 0x6e, 0x12, 0x14, 0x0a, 0x10, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x55, 0x4e, 0x53, - 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x50, 0x4c, - 0x41, 0x4e, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x4d, 0x49, 0x55, 0x4d, 0x10, 0x01, 0x12, 0x0d, 0x0a, - 0x09, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x54, 0x45, 0x41, 0x4d, 0x10, 0x02, 0x12, 0x13, 0x0a, 0x0f, - 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, - 0x03, 0x22, 0x29, 0x0a, 0x27, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, - 0x63, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x72, 0x0a, 0x28, - 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, - 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, - 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, - 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x22, 0x7d, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x57, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x3f, 0x92, 0x41, 0x17, 0xca, 0x3e, 0x14, 0xfa, 0x02, - 0x11, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x1f, 0x12, 0x1d, 0x61, 0x70, 0x69, 0x2e, 0x69, 0x6e, - 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2e, 0x74, 0x65, 0x63, 0x68, 0x2f, 0x4f, 0x72, 0x67, 0x61, 0x6e, - 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, - 0x75, 0x0a, 0x23, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4e, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, - 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, - 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x58, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, - 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, - 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x35, 0x0a, 0x06, 0x70, 0x61, 0x72, - 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1d, 0xe0, 0x41, 0x02, 0xfa, 0x41, - 0x17, 0x12, 0x15, 0x61, 0x70, 0x69, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2e, 0x74, - 0x65, 0x63, 0x68, 0x2f, 0x55, 0x73, 0x65, 0x72, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, - 0x22, 0x6a, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, + 0x61, 0x69, 0x6c, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x22, 0xce, 0x01, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, + 0x12, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, + 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, + 0x49, 0x4e, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, 0x45, 0x10, 0x01, 0x12, 0x1d, 0x0a, 0x19, + 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, + 0x45, 0x5f, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44, 0x10, 0x02, 0x12, 0x13, 0x0a, 0x0f, 0x53, + 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x49, 0x4e, 0x47, 0x10, 0x03, + 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, + 0x45, 0x10, 0x04, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x50, 0x41, + 0x53, 0x54, 0x5f, 0x44, 0x55, 0x45, 0x10, 0x05, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x54, 0x41, 0x54, + 0x55, 0x53, 0x5f, 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x45, 0x44, 0x10, 0x06, 0x12, 0x11, 0x0a, + 0x0d, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x50, 0x41, 0x49, 0x44, 0x10, 0x07, + 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x50, 0x41, 0x55, 0x53, 0x45, + 0x44, 0x10, 0x08, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x65, 0x64, + 0x5f, 0x61, 0x74, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x65, 0x6e, + 0x64, 0x22, 0xd2, 0x01, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, + 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x04, 0x70, + 0x6c, 0x61, 0x6e, 0x12, 0x42, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, + 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x53, 0x75, 0x62, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, + 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x3d, 0x0a, 0x04, 0x50, 0x6c, 0x61, 0x6e, 0x12, + 0x14, 0x0a, 0x10, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, + 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x46, 0x52, + 0x45, 0x45, 0x4d, 0x49, 0x55, 0x4d, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x4c, 0x41, 0x4e, + 0x5f, 0x50, 0x52, 0x4f, 0x10, 0x02, 0x22, 0xb4, 0x02, 0x0a, 0x18, 0x4f, 0x72, 0x67, 0x61, 0x6e, + 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x0e, 0x32, 0x2f, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, + 0x62, 0x65, 0x74, 0x61, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, + 0x61, 0x6e, 0x52, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x12, 0x42, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, + 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, + 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x72, 0x69, + 0x70, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, + 0x74, 0x61, 0x69, 0x6c, 0x52, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1b, 0x0a, 0x09, + 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x08, 0x6d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x74, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x73, 0x65, + 0x64, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x75, + 0x73, 0x65, 0x64, 0x53, 0x65, 0x61, 0x74, 0x73, 0x22, 0x53, 0x0a, 0x04, 0x50, 0x6c, 0x61, 0x6e, + 0x12, 0x14, 0x0a, 0x10, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, + 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x50, 0x4c, 0x41, 0x4e, 0x5f, 0x46, + 0x52, 0x45, 0x45, 0x4d, 0x49, 0x55, 0x4d, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x4c, 0x41, + 0x4e, 0x5f, 0x54, 0x45, 0x41, 0x4d, 0x10, 0x02, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x4c, 0x41, 0x4e, + 0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x03, 0x22, 0x29, 0x0a, + 0x27, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, + 0x64, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x72, 0x0a, 0x28, 0x47, 0x65, 0x74, 0x41, + 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, + 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, - 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x68, 0x0a, 0x27, + 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x7d, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, - 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, - 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x1f, 0x12, - 0x1d, 0x61, 0x70, 0x69, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2e, 0x74, 0x65, 0x63, - 0x68, 0x2f, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, - 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x7a, 0x0a, 0x28, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, - 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x57, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x42, 0x3f, 0x92, 0x41, 0x17, 0xca, 0x3e, 0x14, 0xfa, 0x02, 0x11, 0x6f, 0x72, 0x67, + 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0xe0, 0x41, + 0x02, 0xfa, 0x41, 0x1f, 0x12, 0x1d, 0x61, 0x70, 0x69, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, + 0x6c, 0x2e, 0x74, 0x65, 0x63, 0x68, 0x2f, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x75, 0x0a, 0x23, 0x47, + 0x65, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, + 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4e, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x2a, 0x3b, 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, 0x0e, 0x0a, 0x0a, 0x56, 0x49, 0x45, 0x57, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x01, - 0x12, 0x0d, 0x0a, 0x09, 0x56, 0x49, 0x45, 0x57, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x02, 0x2a, - 0x59, 0x0a, 0x09, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16, - 0x4f, 0x57, 0x4e, 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, - 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4f, 0x57, 0x4e, 0x45, - 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x10, 0x01, 0x12, 0x1b, 0x0a, - 0x17, 0x4f, 0x57, 0x4e, 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x52, 0x47, 0x41, - 0x4e, 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x2a, 0x6e, 0x0a, 0x0f, 0x4d, 0x65, - 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, - 0x1c, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, - 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, - 0x1b, 0x0a, 0x17, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x53, 0x54, - 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, - 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, - 0x5f, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x2a, 0x79, 0x0a, 0x10, 0x4f, 0x6e, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, - 0x0a, 0x1d, 0x4f, 0x4e, 0x42, 0x4f, 0x41, 0x52, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x54, 0x41, - 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, - 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x4f, 0x4e, 0x42, 0x4f, 0x41, 0x52, 0x44, 0x49, 0x4e, 0x47, 0x5f, - 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x47, 0x52, 0x45, - 0x53, 0x53, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x4f, 0x4e, 0x42, 0x4f, 0x41, 0x52, 0x44, 0x49, - 0x4e, 0x47, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, - 0x54, 0x45, 0x44, 0x10, 0x02, 0x42, 0xc2, 0x01, 0x0a, 0x14, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x42, 0x09, - 0x4d, 0x67, 0x6d, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3d, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2d, - 0x61, 0x69, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x67, 0x65, 0x6e, 0x2d, 0x67, 0x6f, 0x2f, 0x63, - 0x6f, 0x72, 0x65, 0x2f, 0x6d, 0x67, 0x6d, 0x74, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x3b, - 0x6d, 0x67, 0x6d, 0x74, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0xa2, 0x02, 0x03, 0x43, 0x4d, 0x58, - 0xaa, 0x02, 0x10, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x4d, 0x67, 0x6d, 0x74, 0x2e, 0x56, 0x31, 0x62, - 0x65, 0x74, 0x61, 0xca, 0x02, 0x10, 0x43, 0x6f, 0x72, 0x65, 0x5c, 0x4d, 0x67, 0x6d, 0x74, 0x5c, - 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0xe2, 0x02, 0x1c, 0x43, 0x6f, 0x72, 0x65, 0x5c, 0x4d, 0x67, - 0x6d, 0x74, 0x5c, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, - 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x12, 0x43, 0x6f, 0x72, 0x65, 0x3a, 0x3a, 0x4d, 0x67, - 0x6d, 0x74, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x6f, 0x6e, 0x22, 0x58, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x35, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1d, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x17, 0x12, 0x15, 0x61, + 0x70, 0x69, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2e, 0x74, 0x65, 0x63, 0x68, 0x2f, + 0x55, 0x73, 0x65, 0x72, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x6a, 0x0a, 0x20, + 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x46, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, + 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x75, + 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x68, 0x0a, 0x27, 0x47, 0x65, 0x74, 0x4f, + 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x3d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x1f, 0x12, 0x1d, 0x61, 0x70, 0x69, + 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2e, 0x74, 0x65, 0x63, 0x68, 0x2f, 0x4f, 0x72, + 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, + 0x6e, 0x74, 0x22, 0x7a, 0x0a, 0x28, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4e, + 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, 0x67, 0x6d, 0x74, + 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2a, 0x3b, + 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, 0x0e, 0x0a, 0x0a, + 0x56, 0x49, 0x45, 0x57, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, + 0x56, 0x49, 0x45, 0x57, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x02, 0x2a, 0x59, 0x0a, 0x09, 0x4f, + 0x77, 0x6e, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16, 0x4f, 0x57, 0x4e, 0x45, + 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, + 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4f, 0x57, 0x4e, 0x45, 0x52, 0x5f, 0x54, 0x59, + 0x50, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x57, 0x4e, + 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x52, 0x47, 0x41, 0x4e, 0x49, 0x5a, 0x41, + 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x2a, 0x6e, 0x0a, 0x0f, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, + 0x73, 0x68, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x1c, 0x4d, 0x45, 0x4d, + 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, + 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x4d, + 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, + 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, 0x4d, 0x45, 0x4d, 0x42, + 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x50, 0x45, 0x4e, + 0x44, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x2a, 0x79, 0x0a, 0x10, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, + 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, 0x0a, 0x1d, 0x4f, 0x4e, + 0x42, 0x4f, 0x41, 0x52, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, + 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, + 0x1d, 0x4f, 0x4e, 0x42, 0x4f, 0x41, 0x52, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x54, 0x41, 0x54, + 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x47, 0x52, 0x45, 0x53, 0x53, 0x10, 0x01, + 0x12, 0x1f, 0x0a, 0x1b, 0x4f, 0x4e, 0x42, 0x4f, 0x41, 0x52, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x53, + 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, + 0x02, 0x42, 0xc2, 0x01, 0x0a, 0x14, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x6d, + 0x67, 0x6d, 0x74, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x42, 0x09, 0x4d, 0x67, 0x6d, 0x74, + 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x2d, 0x61, 0x69, 0x2f, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x67, 0x65, 0x6e, 0x2d, 0x67, 0x6f, 0x2f, 0x63, 0x6f, 0x72, 0x65, 0x2f, + 0x6d, 0x67, 0x6d, 0x74, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x3b, 0x6d, 0x67, 0x6d, 0x74, + 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0xa2, 0x02, 0x03, 0x43, 0x4d, 0x58, 0xaa, 0x02, 0x10, 0x43, + 0x6f, 0x72, 0x65, 0x2e, 0x4d, 0x67, 0x6d, 0x74, 0x2e, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0xca, + 0x02, 0x10, 0x43, 0x6f, 0x72, 0x65, 0x5c, 0x4d, 0x67, 0x6d, 0x74, 0x5c, 0x56, 0x31, 0x62, 0x65, + 0x74, 0x61, 0xe2, 0x02, 0x1c, 0x43, 0x6f, 0x72, 0x65, 0x5c, 0x4d, 0x67, 0x6d, 0x74, 0x5c, 0x56, + 0x31, 0x62, 0x65, 0x74, 0x61, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0xea, 0x02, 0x12, 0x43, 0x6f, 0x72, 0x65, 0x3a, 0x3a, 0x4d, 0x67, 0x6d, 0x74, 0x3a, 0x3a, + 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -6792,7 +6907,7 @@ func file_core_mgmt_v1beta_mgmt_proto_rawDescGZIP() []byte { return file_core_mgmt_v1beta_mgmt_proto_rawDescData } -var file_core_mgmt_v1beta_mgmt_proto_enumTypes = make([]protoimpl.EnumInfo, 8) +var file_core_mgmt_v1beta_mgmt_proto_enumTypes = make([]protoimpl.EnumInfo, 9) var file_core_mgmt_v1beta_mgmt_proto_msgTypes = make([]protoimpl.MessageInfo, 94) var file_core_mgmt_v1beta_mgmt_proto_goTypes = []interface{}{ (View)(0), // 0: core.mgmt.v1beta.View @@ -6801,195 +6916,197 @@ var file_core_mgmt_v1beta_mgmt_proto_goTypes = []interface{}{ (OnboardingStatus)(0), // 3: core.mgmt.v1beta.OnboardingStatus (CheckNamespaceResponse_Namespace)(0), // 4: core.mgmt.v1beta.CheckNamespaceResponse.Namespace (ApiToken_State)(0), // 5: core.mgmt.v1beta.ApiToken.State - (UserSubscription_Plan)(0), // 6: core.mgmt.v1beta.UserSubscription.Plan - (OrganizationSubscription_Plan)(0), // 7: core.mgmt.v1beta.OrganizationSubscription.Plan - (*LivenessRequest)(nil), // 8: core.mgmt.v1beta.LivenessRequest - (*LivenessResponse)(nil), // 9: core.mgmt.v1beta.LivenessResponse - (*ReadinessRequest)(nil), // 10: core.mgmt.v1beta.ReadinessRequest - (*ReadinessResponse)(nil), // 11: core.mgmt.v1beta.ReadinessResponse - (*UserProfile)(nil), // 12: core.mgmt.v1beta.UserProfile - (*OrganizationProfile)(nil), // 13: core.mgmt.v1beta.OrganizationProfile - (*AuthenticatedUser)(nil), // 14: core.mgmt.v1beta.AuthenticatedUser - (*User)(nil), // 15: core.mgmt.v1beta.User - (*ListUsersAdminRequest)(nil), // 16: core.mgmt.v1beta.ListUsersAdminRequest - (*ListUsersAdminResponse)(nil), // 17: core.mgmt.v1beta.ListUsersAdminResponse - (*GetUserAdminRequest)(nil), // 18: core.mgmt.v1beta.GetUserAdminRequest - (*GetUserAdminResponse)(nil), // 19: core.mgmt.v1beta.GetUserAdminResponse - (*LookUpUserAdminRequest)(nil), // 20: core.mgmt.v1beta.LookUpUserAdminRequest - (*LookUpUserAdminResponse)(nil), // 21: core.mgmt.v1beta.LookUpUserAdminResponse - (*ListOrganizationsAdminRequest)(nil), // 22: core.mgmt.v1beta.ListOrganizationsAdminRequest - (*ListOrganizationsAdminResponse)(nil), // 23: core.mgmt.v1beta.ListOrganizationsAdminResponse - (*GetOrganizationAdminRequest)(nil), // 24: core.mgmt.v1beta.GetOrganizationAdminRequest - (*GetOrganizationAdminResponse)(nil), // 25: core.mgmt.v1beta.GetOrganizationAdminResponse - (*LookUpOrganizationAdminRequest)(nil), // 26: core.mgmt.v1beta.LookUpOrganizationAdminRequest - (*LookUpOrganizationAdminResponse)(nil), // 27: core.mgmt.v1beta.LookUpOrganizationAdminResponse - (*ListUsersRequest)(nil), // 28: core.mgmt.v1beta.ListUsersRequest - (*ListUsersResponse)(nil), // 29: core.mgmt.v1beta.ListUsersResponse - (*GetUserRequest)(nil), // 30: core.mgmt.v1beta.GetUserRequest - (*GetUserResponse)(nil), // 31: core.mgmt.v1beta.GetUserResponse - (*GetAuthenticatedUserRequest)(nil), // 32: core.mgmt.v1beta.GetAuthenticatedUserRequest - (*GetAuthenticatedUserResponse)(nil), // 33: core.mgmt.v1beta.GetAuthenticatedUserResponse - (*PatchAuthenticatedUserRequest)(nil), // 34: core.mgmt.v1beta.PatchAuthenticatedUserRequest - (*PatchAuthenticatedUserResponse)(nil), // 35: core.mgmt.v1beta.PatchAuthenticatedUserResponse - (*CheckNamespaceRequest)(nil), // 36: core.mgmt.v1beta.CheckNamespaceRequest - (*CheckNamespaceResponse)(nil), // 37: core.mgmt.v1beta.CheckNamespaceResponse - (*ApiToken)(nil), // 38: core.mgmt.v1beta.ApiToken - (*CreateTokenRequest)(nil), // 39: core.mgmt.v1beta.CreateTokenRequest - (*CreateTokenResponse)(nil), // 40: core.mgmt.v1beta.CreateTokenResponse - (*ListTokensRequest)(nil), // 41: core.mgmt.v1beta.ListTokensRequest - (*ListTokensResponse)(nil), // 42: core.mgmt.v1beta.ListTokensResponse - (*GetTokenRequest)(nil), // 43: core.mgmt.v1beta.GetTokenRequest - (*GetTokenResponse)(nil), // 44: core.mgmt.v1beta.GetTokenResponse - (*DeleteTokenRequest)(nil), // 45: core.mgmt.v1beta.DeleteTokenRequest - (*DeleteTokenResponse)(nil), // 46: core.mgmt.v1beta.DeleteTokenResponse - (*ValidateTokenRequest)(nil), // 47: core.mgmt.v1beta.ValidateTokenRequest - (*ValidateTokenResponse)(nil), // 48: core.mgmt.v1beta.ValidateTokenResponse - (*AuthTokenIssuerRequest)(nil), // 49: core.mgmt.v1beta.AuthTokenIssuerRequest - (*AuthTokenIssuerResponse)(nil), // 50: core.mgmt.v1beta.AuthTokenIssuerResponse - (*AuthLoginRequest)(nil), // 51: core.mgmt.v1beta.AuthLoginRequest - (*AuthLoginResponse)(nil), // 52: core.mgmt.v1beta.AuthLoginResponse - (*AuthLogoutRequest)(nil), // 53: core.mgmt.v1beta.AuthLogoutRequest - (*AuthLogoutResponse)(nil), // 54: core.mgmt.v1beta.AuthLogoutResponse - (*AuthValidateAccessTokenRequest)(nil), // 55: core.mgmt.v1beta.AuthValidateAccessTokenRequest - (*AuthValidateAccessTokenResponse)(nil), // 56: core.mgmt.v1beta.AuthValidateAccessTokenResponse - (*AuthChangePasswordRequest)(nil), // 57: core.mgmt.v1beta.AuthChangePasswordRequest - (*AuthChangePasswordResponse)(nil), // 58: core.mgmt.v1beta.AuthChangePasswordResponse - (*Organization)(nil), // 59: core.mgmt.v1beta.Organization - (*ListOrganizationsRequest)(nil), // 60: core.mgmt.v1beta.ListOrganizationsRequest - (*ListOrganizationsResponse)(nil), // 61: core.mgmt.v1beta.ListOrganizationsResponse - (*CreateOrganizationRequest)(nil), // 62: core.mgmt.v1beta.CreateOrganizationRequest - (*CreateOrganizationResponse)(nil), // 63: core.mgmt.v1beta.CreateOrganizationResponse - (*GetOrganizationRequest)(nil), // 64: core.mgmt.v1beta.GetOrganizationRequest - (*GetOrganizationResponse)(nil), // 65: core.mgmt.v1beta.GetOrganizationResponse - (*UpdateOrganizationRequest)(nil), // 66: core.mgmt.v1beta.UpdateOrganizationRequest - (*UpdateOrganizationResponse)(nil), // 67: core.mgmt.v1beta.UpdateOrganizationResponse - (*DeleteOrganizationRequest)(nil), // 68: core.mgmt.v1beta.DeleteOrganizationRequest - (*DeleteOrganizationResponse)(nil), // 69: core.mgmt.v1beta.DeleteOrganizationResponse - (*OrganizationMembership)(nil), // 70: core.mgmt.v1beta.OrganizationMembership - (*UserMembership)(nil), // 71: core.mgmt.v1beta.UserMembership - (*ListUserMembershipsRequest)(nil), // 72: core.mgmt.v1beta.ListUserMembershipsRequest - (*ListUserMembershipsResponse)(nil), // 73: core.mgmt.v1beta.ListUserMembershipsResponse - (*GetUserMembershipRequest)(nil), // 74: core.mgmt.v1beta.GetUserMembershipRequest - (*GetUserMembershipResponse)(nil), // 75: core.mgmt.v1beta.GetUserMembershipResponse - (*UpdateUserMembershipRequest)(nil), // 76: core.mgmt.v1beta.UpdateUserMembershipRequest - (*UpdateUserMembershipResponse)(nil), // 77: core.mgmt.v1beta.UpdateUserMembershipResponse - (*DeleteUserMembershipRequest)(nil), // 78: core.mgmt.v1beta.DeleteUserMembershipRequest - (*DeleteUserMembershipResponse)(nil), // 79: core.mgmt.v1beta.DeleteUserMembershipResponse - (*ListOrganizationMembershipsRequest)(nil), // 80: core.mgmt.v1beta.ListOrganizationMembershipsRequest - (*ListOrganizationMembershipsResponse)(nil), // 81: core.mgmt.v1beta.ListOrganizationMembershipsResponse - (*GetOrganizationMembershipRequest)(nil), // 82: core.mgmt.v1beta.GetOrganizationMembershipRequest - (*GetOrganizationMembershipResponse)(nil), // 83: core.mgmt.v1beta.GetOrganizationMembershipResponse - (*UpdateOrganizationMembershipRequest)(nil), // 84: core.mgmt.v1beta.UpdateOrganizationMembershipRequest - (*UpdateOrganizationMembershipResponse)(nil), // 85: core.mgmt.v1beta.UpdateOrganizationMembershipResponse - (*DeleteOrganizationMembershipRequest)(nil), // 86: core.mgmt.v1beta.DeleteOrganizationMembershipRequest - (*DeleteOrganizationMembershipResponse)(nil), // 87: core.mgmt.v1beta.DeleteOrganizationMembershipResponse - (*StripeSubscriptionDetail)(nil), // 88: core.mgmt.v1beta.StripeSubscriptionDetail - (*UserSubscription)(nil), // 89: core.mgmt.v1beta.UserSubscription - (*OrganizationSubscription)(nil), // 90: core.mgmt.v1beta.OrganizationSubscription - (*GetAuthenticatedUserSubscriptionRequest)(nil), // 91: core.mgmt.v1beta.GetAuthenticatedUserSubscriptionRequest - (*GetAuthenticatedUserSubscriptionResponse)(nil), // 92: core.mgmt.v1beta.GetAuthenticatedUserSubscriptionResponse - (*GetOrganizationSubscriptionRequest)(nil), // 93: core.mgmt.v1beta.GetOrganizationSubscriptionRequest - (*GetOrganizationSubscriptionResponse)(nil), // 94: core.mgmt.v1beta.GetOrganizationSubscriptionResponse - (*GetUserSubscriptionAdminRequest)(nil), // 95: core.mgmt.v1beta.GetUserSubscriptionAdminRequest - (*GetUserSubscriptionAdminResponse)(nil), // 96: core.mgmt.v1beta.GetUserSubscriptionAdminResponse - (*GetOrganizationSubscriptionAdminRequest)(nil), // 97: core.mgmt.v1beta.GetOrganizationSubscriptionAdminRequest - (*GetOrganizationSubscriptionAdminResponse)(nil), // 98: core.mgmt.v1beta.GetOrganizationSubscriptionAdminResponse - nil, // 99: core.mgmt.v1beta.UserProfile.SocialProfileLinksEntry - nil, // 100: core.mgmt.v1beta.OrganizationProfile.SocialProfileLinksEntry - (*AuthTokenIssuerResponse_UnsignedAccessToken)(nil), // 101: core.mgmt.v1beta.AuthTokenIssuerResponse.UnsignedAccessToken - (*v1beta.HealthCheckRequest)(nil), // 102: common.healthcheck.v1beta.HealthCheckRequest - (*v1beta.HealthCheckResponse)(nil), // 103: common.healthcheck.v1beta.HealthCheckResponse - (*timestamppb.Timestamp)(nil), // 104: google.protobuf.Timestamp - (*fieldmaskpb.FieldMask)(nil), // 105: google.protobuf.FieldMask + (StripeSubscriptionDetail_Status)(0), // 6: core.mgmt.v1beta.StripeSubscriptionDetail.Status + (UserSubscription_Plan)(0), // 7: core.mgmt.v1beta.UserSubscription.Plan + (OrganizationSubscription_Plan)(0), // 8: core.mgmt.v1beta.OrganizationSubscription.Plan + (*LivenessRequest)(nil), // 9: core.mgmt.v1beta.LivenessRequest + (*LivenessResponse)(nil), // 10: core.mgmt.v1beta.LivenessResponse + (*ReadinessRequest)(nil), // 11: core.mgmt.v1beta.ReadinessRequest + (*ReadinessResponse)(nil), // 12: core.mgmt.v1beta.ReadinessResponse + (*UserProfile)(nil), // 13: core.mgmt.v1beta.UserProfile + (*OrganizationProfile)(nil), // 14: core.mgmt.v1beta.OrganizationProfile + (*AuthenticatedUser)(nil), // 15: core.mgmt.v1beta.AuthenticatedUser + (*User)(nil), // 16: core.mgmt.v1beta.User + (*ListUsersAdminRequest)(nil), // 17: core.mgmt.v1beta.ListUsersAdminRequest + (*ListUsersAdminResponse)(nil), // 18: core.mgmt.v1beta.ListUsersAdminResponse + (*GetUserAdminRequest)(nil), // 19: core.mgmt.v1beta.GetUserAdminRequest + (*GetUserAdminResponse)(nil), // 20: core.mgmt.v1beta.GetUserAdminResponse + (*LookUpUserAdminRequest)(nil), // 21: core.mgmt.v1beta.LookUpUserAdminRequest + (*LookUpUserAdminResponse)(nil), // 22: core.mgmt.v1beta.LookUpUserAdminResponse + (*ListOrganizationsAdminRequest)(nil), // 23: core.mgmt.v1beta.ListOrganizationsAdminRequest + (*ListOrganizationsAdminResponse)(nil), // 24: core.mgmt.v1beta.ListOrganizationsAdminResponse + (*GetOrganizationAdminRequest)(nil), // 25: core.mgmt.v1beta.GetOrganizationAdminRequest + (*GetOrganizationAdminResponse)(nil), // 26: core.mgmt.v1beta.GetOrganizationAdminResponse + (*LookUpOrganizationAdminRequest)(nil), // 27: core.mgmt.v1beta.LookUpOrganizationAdminRequest + (*LookUpOrganizationAdminResponse)(nil), // 28: core.mgmt.v1beta.LookUpOrganizationAdminResponse + (*ListUsersRequest)(nil), // 29: core.mgmt.v1beta.ListUsersRequest + (*ListUsersResponse)(nil), // 30: core.mgmt.v1beta.ListUsersResponse + (*GetUserRequest)(nil), // 31: core.mgmt.v1beta.GetUserRequest + (*GetUserResponse)(nil), // 32: core.mgmt.v1beta.GetUserResponse + (*GetAuthenticatedUserRequest)(nil), // 33: core.mgmt.v1beta.GetAuthenticatedUserRequest + (*GetAuthenticatedUserResponse)(nil), // 34: core.mgmt.v1beta.GetAuthenticatedUserResponse + (*PatchAuthenticatedUserRequest)(nil), // 35: core.mgmt.v1beta.PatchAuthenticatedUserRequest + (*PatchAuthenticatedUserResponse)(nil), // 36: core.mgmt.v1beta.PatchAuthenticatedUserResponse + (*CheckNamespaceRequest)(nil), // 37: core.mgmt.v1beta.CheckNamespaceRequest + (*CheckNamespaceResponse)(nil), // 38: core.mgmt.v1beta.CheckNamespaceResponse + (*ApiToken)(nil), // 39: core.mgmt.v1beta.ApiToken + (*CreateTokenRequest)(nil), // 40: core.mgmt.v1beta.CreateTokenRequest + (*CreateTokenResponse)(nil), // 41: core.mgmt.v1beta.CreateTokenResponse + (*ListTokensRequest)(nil), // 42: core.mgmt.v1beta.ListTokensRequest + (*ListTokensResponse)(nil), // 43: core.mgmt.v1beta.ListTokensResponse + (*GetTokenRequest)(nil), // 44: core.mgmt.v1beta.GetTokenRequest + (*GetTokenResponse)(nil), // 45: core.mgmt.v1beta.GetTokenResponse + (*DeleteTokenRequest)(nil), // 46: core.mgmt.v1beta.DeleteTokenRequest + (*DeleteTokenResponse)(nil), // 47: core.mgmt.v1beta.DeleteTokenResponse + (*ValidateTokenRequest)(nil), // 48: core.mgmt.v1beta.ValidateTokenRequest + (*ValidateTokenResponse)(nil), // 49: core.mgmt.v1beta.ValidateTokenResponse + (*AuthTokenIssuerRequest)(nil), // 50: core.mgmt.v1beta.AuthTokenIssuerRequest + (*AuthTokenIssuerResponse)(nil), // 51: core.mgmt.v1beta.AuthTokenIssuerResponse + (*AuthLoginRequest)(nil), // 52: core.mgmt.v1beta.AuthLoginRequest + (*AuthLoginResponse)(nil), // 53: core.mgmt.v1beta.AuthLoginResponse + (*AuthLogoutRequest)(nil), // 54: core.mgmt.v1beta.AuthLogoutRequest + (*AuthLogoutResponse)(nil), // 55: core.mgmt.v1beta.AuthLogoutResponse + (*AuthValidateAccessTokenRequest)(nil), // 56: core.mgmt.v1beta.AuthValidateAccessTokenRequest + (*AuthValidateAccessTokenResponse)(nil), // 57: core.mgmt.v1beta.AuthValidateAccessTokenResponse + (*AuthChangePasswordRequest)(nil), // 58: core.mgmt.v1beta.AuthChangePasswordRequest + (*AuthChangePasswordResponse)(nil), // 59: core.mgmt.v1beta.AuthChangePasswordResponse + (*Organization)(nil), // 60: core.mgmt.v1beta.Organization + (*ListOrganizationsRequest)(nil), // 61: core.mgmt.v1beta.ListOrganizationsRequest + (*ListOrganizationsResponse)(nil), // 62: core.mgmt.v1beta.ListOrganizationsResponse + (*CreateOrganizationRequest)(nil), // 63: core.mgmt.v1beta.CreateOrganizationRequest + (*CreateOrganizationResponse)(nil), // 64: core.mgmt.v1beta.CreateOrganizationResponse + (*GetOrganizationRequest)(nil), // 65: core.mgmt.v1beta.GetOrganizationRequest + (*GetOrganizationResponse)(nil), // 66: core.mgmt.v1beta.GetOrganizationResponse + (*UpdateOrganizationRequest)(nil), // 67: core.mgmt.v1beta.UpdateOrganizationRequest + (*UpdateOrganizationResponse)(nil), // 68: core.mgmt.v1beta.UpdateOrganizationResponse + (*DeleteOrganizationRequest)(nil), // 69: core.mgmt.v1beta.DeleteOrganizationRequest + (*DeleteOrganizationResponse)(nil), // 70: core.mgmt.v1beta.DeleteOrganizationResponse + (*OrganizationMembership)(nil), // 71: core.mgmt.v1beta.OrganizationMembership + (*UserMembership)(nil), // 72: core.mgmt.v1beta.UserMembership + (*ListUserMembershipsRequest)(nil), // 73: core.mgmt.v1beta.ListUserMembershipsRequest + (*ListUserMembershipsResponse)(nil), // 74: core.mgmt.v1beta.ListUserMembershipsResponse + (*GetUserMembershipRequest)(nil), // 75: core.mgmt.v1beta.GetUserMembershipRequest + (*GetUserMembershipResponse)(nil), // 76: core.mgmt.v1beta.GetUserMembershipResponse + (*UpdateUserMembershipRequest)(nil), // 77: core.mgmt.v1beta.UpdateUserMembershipRequest + (*UpdateUserMembershipResponse)(nil), // 78: core.mgmt.v1beta.UpdateUserMembershipResponse + (*DeleteUserMembershipRequest)(nil), // 79: core.mgmt.v1beta.DeleteUserMembershipRequest + (*DeleteUserMembershipResponse)(nil), // 80: core.mgmt.v1beta.DeleteUserMembershipResponse + (*ListOrganizationMembershipsRequest)(nil), // 81: core.mgmt.v1beta.ListOrganizationMembershipsRequest + (*ListOrganizationMembershipsResponse)(nil), // 82: core.mgmt.v1beta.ListOrganizationMembershipsResponse + (*GetOrganizationMembershipRequest)(nil), // 83: core.mgmt.v1beta.GetOrganizationMembershipRequest + (*GetOrganizationMembershipResponse)(nil), // 84: core.mgmt.v1beta.GetOrganizationMembershipResponse + (*UpdateOrganizationMembershipRequest)(nil), // 85: core.mgmt.v1beta.UpdateOrganizationMembershipRequest + (*UpdateOrganizationMembershipResponse)(nil), // 86: core.mgmt.v1beta.UpdateOrganizationMembershipResponse + (*DeleteOrganizationMembershipRequest)(nil), // 87: core.mgmt.v1beta.DeleteOrganizationMembershipRequest + (*DeleteOrganizationMembershipResponse)(nil), // 88: core.mgmt.v1beta.DeleteOrganizationMembershipResponse + (*StripeSubscriptionDetail)(nil), // 89: core.mgmt.v1beta.StripeSubscriptionDetail + (*UserSubscription)(nil), // 90: core.mgmt.v1beta.UserSubscription + (*OrganizationSubscription)(nil), // 91: core.mgmt.v1beta.OrganizationSubscription + (*GetAuthenticatedUserSubscriptionRequest)(nil), // 92: core.mgmt.v1beta.GetAuthenticatedUserSubscriptionRequest + (*GetAuthenticatedUserSubscriptionResponse)(nil), // 93: core.mgmt.v1beta.GetAuthenticatedUserSubscriptionResponse + (*GetOrganizationSubscriptionRequest)(nil), // 94: core.mgmt.v1beta.GetOrganizationSubscriptionRequest + (*GetOrganizationSubscriptionResponse)(nil), // 95: core.mgmt.v1beta.GetOrganizationSubscriptionResponse + (*GetUserSubscriptionAdminRequest)(nil), // 96: core.mgmt.v1beta.GetUserSubscriptionAdminRequest + (*GetUserSubscriptionAdminResponse)(nil), // 97: core.mgmt.v1beta.GetUserSubscriptionAdminResponse + (*GetOrganizationSubscriptionAdminRequest)(nil), // 98: core.mgmt.v1beta.GetOrganizationSubscriptionAdminRequest + (*GetOrganizationSubscriptionAdminResponse)(nil), // 99: core.mgmt.v1beta.GetOrganizationSubscriptionAdminResponse + nil, // 100: core.mgmt.v1beta.UserProfile.SocialProfileLinksEntry + nil, // 101: core.mgmt.v1beta.OrganizationProfile.SocialProfileLinksEntry + (*AuthTokenIssuerResponse_UnsignedAccessToken)(nil), // 102: core.mgmt.v1beta.AuthTokenIssuerResponse.UnsignedAccessToken + (*v1beta.HealthCheckRequest)(nil), // 103: common.healthcheck.v1beta.HealthCheckRequest + (*v1beta.HealthCheckResponse)(nil), // 104: common.healthcheck.v1beta.HealthCheckResponse + (*timestamppb.Timestamp)(nil), // 105: google.protobuf.Timestamp + (*fieldmaskpb.FieldMask)(nil), // 106: google.protobuf.FieldMask } var file_core_mgmt_v1beta_mgmt_proto_depIdxs = []int32{ - 102, // 0: core.mgmt.v1beta.LivenessRequest.health_check_request:type_name -> common.healthcheck.v1beta.HealthCheckRequest - 103, // 1: core.mgmt.v1beta.LivenessResponse.health_check_response:type_name -> common.healthcheck.v1beta.HealthCheckResponse - 102, // 2: core.mgmt.v1beta.ReadinessRequest.health_check_request:type_name -> common.healthcheck.v1beta.HealthCheckRequest - 103, // 3: core.mgmt.v1beta.ReadinessResponse.health_check_response:type_name -> common.healthcheck.v1beta.HealthCheckResponse - 99, // 4: core.mgmt.v1beta.UserProfile.social_profile_links:type_name -> core.mgmt.v1beta.UserProfile.SocialProfileLinksEntry - 100, // 5: core.mgmt.v1beta.OrganizationProfile.social_profile_links:type_name -> core.mgmt.v1beta.OrganizationProfile.SocialProfileLinksEntry - 104, // 6: core.mgmt.v1beta.AuthenticatedUser.create_time:type_name -> google.protobuf.Timestamp - 104, // 7: core.mgmt.v1beta.AuthenticatedUser.update_time:type_name -> google.protobuf.Timestamp + 103, // 0: core.mgmt.v1beta.LivenessRequest.health_check_request:type_name -> common.healthcheck.v1beta.HealthCheckRequest + 104, // 1: core.mgmt.v1beta.LivenessResponse.health_check_response:type_name -> common.healthcheck.v1beta.HealthCheckResponse + 103, // 2: core.mgmt.v1beta.ReadinessRequest.health_check_request:type_name -> common.healthcheck.v1beta.HealthCheckRequest + 104, // 3: core.mgmt.v1beta.ReadinessResponse.health_check_response:type_name -> common.healthcheck.v1beta.HealthCheckResponse + 100, // 4: core.mgmt.v1beta.UserProfile.social_profile_links:type_name -> core.mgmt.v1beta.UserProfile.SocialProfileLinksEntry + 101, // 5: core.mgmt.v1beta.OrganizationProfile.social_profile_links:type_name -> core.mgmt.v1beta.OrganizationProfile.SocialProfileLinksEntry + 105, // 6: core.mgmt.v1beta.AuthenticatedUser.create_time:type_name -> google.protobuf.Timestamp + 105, // 7: core.mgmt.v1beta.AuthenticatedUser.update_time:type_name -> google.protobuf.Timestamp 3, // 8: core.mgmt.v1beta.AuthenticatedUser.onboarding_status:type_name -> core.mgmt.v1beta.OnboardingStatus - 12, // 9: core.mgmt.v1beta.AuthenticatedUser.profile:type_name -> core.mgmt.v1beta.UserProfile - 104, // 10: core.mgmt.v1beta.User.create_time:type_name -> google.protobuf.Timestamp - 104, // 11: core.mgmt.v1beta.User.update_time:type_name -> google.protobuf.Timestamp - 12, // 12: core.mgmt.v1beta.User.profile:type_name -> core.mgmt.v1beta.UserProfile + 13, // 9: core.mgmt.v1beta.AuthenticatedUser.profile:type_name -> core.mgmt.v1beta.UserProfile + 105, // 10: core.mgmt.v1beta.User.create_time:type_name -> google.protobuf.Timestamp + 105, // 11: core.mgmt.v1beta.User.update_time:type_name -> google.protobuf.Timestamp + 13, // 12: core.mgmt.v1beta.User.profile:type_name -> core.mgmt.v1beta.UserProfile 0, // 13: core.mgmt.v1beta.ListUsersAdminRequest.view:type_name -> core.mgmt.v1beta.View - 15, // 14: core.mgmt.v1beta.ListUsersAdminResponse.users:type_name -> core.mgmt.v1beta.User + 16, // 14: core.mgmt.v1beta.ListUsersAdminResponse.users:type_name -> core.mgmt.v1beta.User 0, // 15: core.mgmt.v1beta.GetUserAdminRequest.view:type_name -> core.mgmt.v1beta.View - 15, // 16: core.mgmt.v1beta.GetUserAdminResponse.user:type_name -> core.mgmt.v1beta.User + 16, // 16: core.mgmt.v1beta.GetUserAdminResponse.user:type_name -> core.mgmt.v1beta.User 0, // 17: core.mgmt.v1beta.LookUpUserAdminRequest.view:type_name -> core.mgmt.v1beta.View - 15, // 18: core.mgmt.v1beta.LookUpUserAdminResponse.user:type_name -> core.mgmt.v1beta.User + 16, // 18: core.mgmt.v1beta.LookUpUserAdminResponse.user:type_name -> core.mgmt.v1beta.User 0, // 19: core.mgmt.v1beta.ListOrganizationsAdminRequest.view:type_name -> core.mgmt.v1beta.View - 59, // 20: core.mgmt.v1beta.ListOrganizationsAdminResponse.organizations:type_name -> core.mgmt.v1beta.Organization + 60, // 20: core.mgmt.v1beta.ListOrganizationsAdminResponse.organizations:type_name -> core.mgmt.v1beta.Organization 0, // 21: core.mgmt.v1beta.GetOrganizationAdminRequest.view:type_name -> core.mgmt.v1beta.View - 59, // 22: core.mgmt.v1beta.GetOrganizationAdminResponse.organization:type_name -> core.mgmt.v1beta.Organization + 60, // 22: core.mgmt.v1beta.GetOrganizationAdminResponse.organization:type_name -> core.mgmt.v1beta.Organization 0, // 23: core.mgmt.v1beta.LookUpOrganizationAdminRequest.view:type_name -> core.mgmt.v1beta.View - 59, // 24: core.mgmt.v1beta.LookUpOrganizationAdminResponse.organization:type_name -> core.mgmt.v1beta.Organization + 60, // 24: core.mgmt.v1beta.LookUpOrganizationAdminResponse.organization:type_name -> core.mgmt.v1beta.Organization 0, // 25: core.mgmt.v1beta.ListUsersRequest.view:type_name -> core.mgmt.v1beta.View - 15, // 26: core.mgmt.v1beta.ListUsersResponse.users:type_name -> core.mgmt.v1beta.User + 16, // 26: core.mgmt.v1beta.ListUsersResponse.users:type_name -> core.mgmt.v1beta.User 0, // 27: core.mgmt.v1beta.GetUserRequest.view:type_name -> core.mgmt.v1beta.View - 15, // 28: core.mgmt.v1beta.GetUserResponse.user:type_name -> core.mgmt.v1beta.User - 14, // 29: core.mgmt.v1beta.GetAuthenticatedUserResponse.user:type_name -> core.mgmt.v1beta.AuthenticatedUser - 14, // 30: core.mgmt.v1beta.PatchAuthenticatedUserRequest.user:type_name -> core.mgmt.v1beta.AuthenticatedUser - 105, // 31: core.mgmt.v1beta.PatchAuthenticatedUserRequest.update_mask:type_name -> google.protobuf.FieldMask - 14, // 32: core.mgmt.v1beta.PatchAuthenticatedUserResponse.user:type_name -> core.mgmt.v1beta.AuthenticatedUser + 16, // 28: core.mgmt.v1beta.GetUserResponse.user:type_name -> core.mgmt.v1beta.User + 15, // 29: core.mgmt.v1beta.GetAuthenticatedUserResponse.user:type_name -> core.mgmt.v1beta.AuthenticatedUser + 15, // 30: core.mgmt.v1beta.PatchAuthenticatedUserRequest.user:type_name -> core.mgmt.v1beta.AuthenticatedUser + 106, // 31: core.mgmt.v1beta.PatchAuthenticatedUserRequest.update_mask:type_name -> google.protobuf.FieldMask + 15, // 32: core.mgmt.v1beta.PatchAuthenticatedUserResponse.user:type_name -> core.mgmt.v1beta.AuthenticatedUser 4, // 33: core.mgmt.v1beta.CheckNamespaceResponse.type:type_name -> core.mgmt.v1beta.CheckNamespaceResponse.Namespace - 104, // 34: core.mgmt.v1beta.ApiToken.create_time:type_name -> google.protobuf.Timestamp - 104, // 35: core.mgmt.v1beta.ApiToken.update_time:type_name -> google.protobuf.Timestamp + 105, // 34: core.mgmt.v1beta.ApiToken.create_time:type_name -> google.protobuf.Timestamp + 105, // 35: core.mgmt.v1beta.ApiToken.update_time:type_name -> google.protobuf.Timestamp 5, // 36: core.mgmt.v1beta.ApiToken.state:type_name -> core.mgmt.v1beta.ApiToken.State - 104, // 37: core.mgmt.v1beta.ApiToken.expire_time:type_name -> google.protobuf.Timestamp - 38, // 38: core.mgmt.v1beta.CreateTokenRequest.token:type_name -> core.mgmt.v1beta.ApiToken - 38, // 39: core.mgmt.v1beta.CreateTokenResponse.token:type_name -> core.mgmt.v1beta.ApiToken - 38, // 40: core.mgmt.v1beta.ListTokensResponse.tokens:type_name -> core.mgmt.v1beta.ApiToken - 38, // 41: core.mgmt.v1beta.GetTokenResponse.token:type_name -> core.mgmt.v1beta.ApiToken - 101, // 42: core.mgmt.v1beta.AuthTokenIssuerResponse.access_token:type_name -> core.mgmt.v1beta.AuthTokenIssuerResponse.UnsignedAccessToken - 104, // 43: core.mgmt.v1beta.Organization.create_time:type_name -> google.protobuf.Timestamp - 104, // 44: core.mgmt.v1beta.Organization.update_time:type_name -> google.protobuf.Timestamp - 15, // 45: core.mgmt.v1beta.Organization.owner:type_name -> core.mgmt.v1beta.User - 13, // 46: core.mgmt.v1beta.Organization.profile:type_name -> core.mgmt.v1beta.OrganizationProfile + 105, // 37: core.mgmt.v1beta.ApiToken.expire_time:type_name -> google.protobuf.Timestamp + 39, // 38: core.mgmt.v1beta.CreateTokenRequest.token:type_name -> core.mgmt.v1beta.ApiToken + 39, // 39: core.mgmt.v1beta.CreateTokenResponse.token:type_name -> core.mgmt.v1beta.ApiToken + 39, // 40: core.mgmt.v1beta.ListTokensResponse.tokens:type_name -> core.mgmt.v1beta.ApiToken + 39, // 41: core.mgmt.v1beta.GetTokenResponse.token:type_name -> core.mgmt.v1beta.ApiToken + 102, // 42: core.mgmt.v1beta.AuthTokenIssuerResponse.access_token:type_name -> core.mgmt.v1beta.AuthTokenIssuerResponse.UnsignedAccessToken + 105, // 43: core.mgmt.v1beta.Organization.create_time:type_name -> google.protobuf.Timestamp + 105, // 44: core.mgmt.v1beta.Organization.update_time:type_name -> google.protobuf.Timestamp + 16, // 45: core.mgmt.v1beta.Organization.owner:type_name -> core.mgmt.v1beta.User + 14, // 46: core.mgmt.v1beta.Organization.profile:type_name -> core.mgmt.v1beta.OrganizationProfile 0, // 47: core.mgmt.v1beta.ListOrganizationsRequest.view:type_name -> core.mgmt.v1beta.View - 59, // 48: core.mgmt.v1beta.ListOrganizationsResponse.organizations:type_name -> core.mgmt.v1beta.Organization - 59, // 49: core.mgmt.v1beta.CreateOrganizationRequest.organization:type_name -> core.mgmt.v1beta.Organization - 59, // 50: core.mgmt.v1beta.CreateOrganizationResponse.organization:type_name -> core.mgmt.v1beta.Organization + 60, // 48: core.mgmt.v1beta.ListOrganizationsResponse.organizations:type_name -> core.mgmt.v1beta.Organization + 60, // 49: core.mgmt.v1beta.CreateOrganizationRequest.organization:type_name -> core.mgmt.v1beta.Organization + 60, // 50: core.mgmt.v1beta.CreateOrganizationResponse.organization:type_name -> core.mgmt.v1beta.Organization 0, // 51: core.mgmt.v1beta.GetOrganizationRequest.view:type_name -> core.mgmt.v1beta.View - 59, // 52: core.mgmt.v1beta.GetOrganizationResponse.organization:type_name -> core.mgmt.v1beta.Organization - 59, // 53: core.mgmt.v1beta.UpdateOrganizationRequest.organization:type_name -> core.mgmt.v1beta.Organization - 105, // 54: core.mgmt.v1beta.UpdateOrganizationRequest.update_mask:type_name -> google.protobuf.FieldMask - 59, // 55: core.mgmt.v1beta.UpdateOrganizationResponse.organization:type_name -> core.mgmt.v1beta.Organization + 60, // 52: core.mgmt.v1beta.GetOrganizationResponse.organization:type_name -> core.mgmt.v1beta.Organization + 60, // 53: core.mgmt.v1beta.UpdateOrganizationRequest.organization:type_name -> core.mgmt.v1beta.Organization + 106, // 54: core.mgmt.v1beta.UpdateOrganizationRequest.update_mask:type_name -> google.protobuf.FieldMask + 60, // 55: core.mgmt.v1beta.UpdateOrganizationResponse.organization:type_name -> core.mgmt.v1beta.Organization 2, // 56: core.mgmt.v1beta.OrganizationMembership.state:type_name -> core.mgmt.v1beta.MembershipState - 15, // 57: core.mgmt.v1beta.OrganizationMembership.user:type_name -> core.mgmt.v1beta.User - 59, // 58: core.mgmt.v1beta.OrganizationMembership.organization:type_name -> core.mgmt.v1beta.Organization + 16, // 57: core.mgmt.v1beta.OrganizationMembership.user:type_name -> core.mgmt.v1beta.User + 60, // 58: core.mgmt.v1beta.OrganizationMembership.organization:type_name -> core.mgmt.v1beta.Organization 2, // 59: core.mgmt.v1beta.UserMembership.state:type_name -> core.mgmt.v1beta.MembershipState - 15, // 60: core.mgmt.v1beta.UserMembership.user:type_name -> core.mgmt.v1beta.User - 59, // 61: core.mgmt.v1beta.UserMembership.organization:type_name -> core.mgmt.v1beta.Organization - 71, // 62: core.mgmt.v1beta.ListUserMembershipsResponse.memberships:type_name -> core.mgmt.v1beta.UserMembership + 16, // 60: core.mgmt.v1beta.UserMembership.user:type_name -> core.mgmt.v1beta.User + 60, // 61: core.mgmt.v1beta.UserMembership.organization:type_name -> core.mgmt.v1beta.Organization + 72, // 62: core.mgmt.v1beta.ListUserMembershipsResponse.memberships:type_name -> core.mgmt.v1beta.UserMembership 0, // 63: core.mgmt.v1beta.GetUserMembershipRequest.view:type_name -> core.mgmt.v1beta.View - 71, // 64: core.mgmt.v1beta.GetUserMembershipResponse.membership:type_name -> core.mgmt.v1beta.UserMembership - 71, // 65: core.mgmt.v1beta.UpdateUserMembershipRequest.membership:type_name -> core.mgmt.v1beta.UserMembership - 105, // 66: core.mgmt.v1beta.UpdateUserMembershipRequest.update_mask:type_name -> google.protobuf.FieldMask - 71, // 67: core.mgmt.v1beta.UpdateUserMembershipResponse.membership:type_name -> core.mgmt.v1beta.UserMembership - 70, // 68: core.mgmt.v1beta.ListOrganizationMembershipsResponse.memberships:type_name -> core.mgmt.v1beta.OrganizationMembership + 72, // 64: core.mgmt.v1beta.GetUserMembershipResponse.membership:type_name -> core.mgmt.v1beta.UserMembership + 72, // 65: core.mgmt.v1beta.UpdateUserMembershipRequest.membership:type_name -> core.mgmt.v1beta.UserMembership + 106, // 66: core.mgmt.v1beta.UpdateUserMembershipRequest.update_mask:type_name -> google.protobuf.FieldMask + 72, // 67: core.mgmt.v1beta.UpdateUserMembershipResponse.membership:type_name -> core.mgmt.v1beta.UserMembership + 71, // 68: core.mgmt.v1beta.ListOrganizationMembershipsResponse.memberships:type_name -> core.mgmt.v1beta.OrganizationMembership 0, // 69: core.mgmt.v1beta.GetOrganizationMembershipRequest.view:type_name -> core.mgmt.v1beta.View - 70, // 70: core.mgmt.v1beta.GetOrganizationMembershipResponse.membership:type_name -> core.mgmt.v1beta.OrganizationMembership - 70, // 71: core.mgmt.v1beta.UpdateOrganizationMembershipRequest.membership:type_name -> core.mgmt.v1beta.OrganizationMembership - 105, // 72: core.mgmt.v1beta.UpdateOrganizationMembershipRequest.update_mask:type_name -> google.protobuf.FieldMask - 70, // 73: core.mgmt.v1beta.UpdateOrganizationMembershipResponse.membership:type_name -> core.mgmt.v1beta.OrganizationMembership - 6, // 74: core.mgmt.v1beta.UserSubscription.plan:type_name -> core.mgmt.v1beta.UserSubscription.Plan - 88, // 75: core.mgmt.v1beta.UserSubscription.detail:type_name -> core.mgmt.v1beta.StripeSubscriptionDetail - 7, // 76: core.mgmt.v1beta.OrganizationSubscription.plan:type_name -> core.mgmt.v1beta.OrganizationSubscription.Plan - 88, // 77: core.mgmt.v1beta.OrganizationSubscription.detail:type_name -> core.mgmt.v1beta.StripeSubscriptionDetail - 89, // 78: core.mgmt.v1beta.GetAuthenticatedUserSubscriptionResponse.subscription:type_name -> core.mgmt.v1beta.UserSubscription - 90, // 79: core.mgmt.v1beta.GetOrganizationSubscriptionResponse.subscription:type_name -> core.mgmt.v1beta.OrganizationSubscription - 89, // 80: core.mgmt.v1beta.GetUserSubscriptionAdminResponse.subscription:type_name -> core.mgmt.v1beta.UserSubscription - 90, // 81: core.mgmt.v1beta.GetOrganizationSubscriptionAdminResponse.subscription:type_name -> core.mgmt.v1beta.OrganizationSubscription - 82, // [82:82] is the sub-list for method output_type - 82, // [82:82] is the sub-list for method input_type - 82, // [82:82] is the sub-list for extension type_name - 82, // [82:82] is the sub-list for extension extendee - 0, // [0:82] is the sub-list for field type_name + 71, // 70: core.mgmt.v1beta.GetOrganizationMembershipResponse.membership:type_name -> core.mgmt.v1beta.OrganizationMembership + 71, // 71: core.mgmt.v1beta.UpdateOrganizationMembershipRequest.membership:type_name -> core.mgmt.v1beta.OrganizationMembership + 106, // 72: core.mgmt.v1beta.UpdateOrganizationMembershipRequest.update_mask:type_name -> google.protobuf.FieldMask + 71, // 73: core.mgmt.v1beta.UpdateOrganizationMembershipResponse.membership:type_name -> core.mgmt.v1beta.OrganizationMembership + 6, // 74: core.mgmt.v1beta.StripeSubscriptionDetail.status:type_name -> core.mgmt.v1beta.StripeSubscriptionDetail.Status + 7, // 75: core.mgmt.v1beta.UserSubscription.plan:type_name -> core.mgmt.v1beta.UserSubscription.Plan + 89, // 76: core.mgmt.v1beta.UserSubscription.detail:type_name -> core.mgmt.v1beta.StripeSubscriptionDetail + 8, // 77: core.mgmt.v1beta.OrganizationSubscription.plan:type_name -> core.mgmt.v1beta.OrganizationSubscription.Plan + 89, // 78: core.mgmt.v1beta.OrganizationSubscription.detail:type_name -> core.mgmt.v1beta.StripeSubscriptionDetail + 90, // 79: core.mgmt.v1beta.GetAuthenticatedUserSubscriptionResponse.subscription:type_name -> core.mgmt.v1beta.UserSubscription + 91, // 80: core.mgmt.v1beta.GetOrganizationSubscriptionResponse.subscription:type_name -> core.mgmt.v1beta.OrganizationSubscription + 90, // 81: core.mgmt.v1beta.GetUserSubscriptionAdminResponse.subscription:type_name -> core.mgmt.v1beta.UserSubscription + 91, // 82: core.mgmt.v1beta.GetOrganizationSubscriptionAdminResponse.subscription:type_name -> core.mgmt.v1beta.OrganizationSubscription + 83, // [83:83] is the sub-list for method output_type + 83, // [83:83] is the sub-list for method input_type + 83, // [83:83] is the sub-list for extension type_name + 83, // [83:83] is the sub-list for extension extendee + 0, // [0:83] is the sub-list for field type_name } func init() { file_core_mgmt_v1beta_mgmt_proto_init() } @@ -8132,7 +8249,7 @@ func file_core_mgmt_v1beta_mgmt_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_core_mgmt_v1beta_mgmt_proto_rawDesc, - NumEnums: 8, + NumEnums: 9, NumMessages: 94, NumExtensions: 0, NumServices: 0,