// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 // protoc (unknown) // source: store/workspace_setting.proto package store import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" unsafe "unsafe" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) type WorkspaceSettingKey int32 const ( WorkspaceSettingKey_WORKSPACE_SETTING_KEY_UNSPECIFIED WorkspaceSettingKey = 0 // Workspace general settings. WorkspaceSettingKey_WORKSPACE_SETTING_GENERAL WorkspaceSettingKey = 1 // Workspace security settings. WorkspaceSettingKey_WORKSPACE_SETTING_SECURITY WorkspaceSettingKey = 2 // Workspace shortcut-related settings. WorkspaceSettingKey_WORKSPACE_SETTING_SHORTCUT_RELATED WorkspaceSettingKey = 3 // Workspace identity provider settings. WorkspaceSettingKey_WORKSPACE_SETTING_IDENTITY_PROVIDER WorkspaceSettingKey = 4 // TODO: remove the following keys. // The license key. WorkspaceSettingKey_WORKSPACE_SETTING_LICENSE_KEY WorkspaceSettingKey = 10 // The secret session key used to encrypt session data. WorkspaceSettingKey_WORKSPACE_SETTING_SECRET_SESSION WorkspaceSettingKey = 11 // The default visibility of shortcuts and collections. WorkspaceSettingKey_WORKSPACE_SETTING_DEFAULT_VISIBILITY WorkspaceSettingKey = 13 ) // Enum value maps for WorkspaceSettingKey. var ( WorkspaceSettingKey_name = map[int32]string{ 0: "WORKSPACE_SETTING_KEY_UNSPECIFIED", 1: "WORKSPACE_SETTING_GENERAL", 2: "WORKSPACE_SETTING_SECURITY", 3: "WORKSPACE_SETTING_SHORTCUT_RELATED", 4: "WORKSPACE_SETTING_IDENTITY_PROVIDER", 10: "WORKSPACE_SETTING_LICENSE_KEY", 11: "WORKSPACE_SETTING_SECRET_SESSION", 13: "WORKSPACE_SETTING_DEFAULT_VISIBILITY", } WorkspaceSettingKey_value = map[string]int32{ "WORKSPACE_SETTING_KEY_UNSPECIFIED": 0, "WORKSPACE_SETTING_GENERAL": 1, "WORKSPACE_SETTING_SECURITY": 2, "WORKSPACE_SETTING_SHORTCUT_RELATED": 3, "WORKSPACE_SETTING_IDENTITY_PROVIDER": 4, "WORKSPACE_SETTING_LICENSE_KEY": 10, "WORKSPACE_SETTING_SECRET_SESSION": 11, "WORKSPACE_SETTING_DEFAULT_VISIBILITY": 13, } ) func (x WorkspaceSettingKey) Enum() *WorkspaceSettingKey { p := new(WorkspaceSettingKey) *p = x return p } func (x WorkspaceSettingKey) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (WorkspaceSettingKey) Descriptor() protoreflect.EnumDescriptor { return file_store_workspace_setting_proto_enumTypes[0].Descriptor() } func (WorkspaceSettingKey) Type() protoreflect.EnumType { return &file_store_workspace_setting_proto_enumTypes[0] } func (x WorkspaceSettingKey) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use WorkspaceSettingKey.Descriptor instead. func (WorkspaceSettingKey) EnumDescriptor() ([]byte, []int) { return file_store_workspace_setting_proto_rawDescGZIP(), []int{0} } type WorkspaceSetting struct { state protoimpl.MessageState `protogen:"open.v1"` Key WorkspaceSettingKey `protobuf:"varint,1,opt,name=key,proto3,enum=slash.store.WorkspaceSettingKey" json:"key,omitempty"` Raw string `protobuf:"bytes,2,opt,name=raw,proto3" json:"raw,omitempty"` // Types that are valid to be assigned to Value: // // *WorkspaceSetting_General // *WorkspaceSetting_Security // *WorkspaceSetting_ShortcutRelated // *WorkspaceSetting_IdentityProvider Value isWorkspaceSetting_Value `protobuf_oneof:"value"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *WorkspaceSetting) Reset() { *x = WorkspaceSetting{} mi := &file_store_workspace_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *WorkspaceSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*WorkspaceSetting) ProtoMessage() {} func (x *WorkspaceSetting) ProtoReflect() protoreflect.Message { mi := &file_store_workspace_setting_proto_msgTypes[0] 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 WorkspaceSetting.ProtoReflect.Descriptor instead. func (*WorkspaceSetting) Descriptor() ([]byte, []int) { return file_store_workspace_setting_proto_rawDescGZIP(), []int{0} } func (x *WorkspaceSetting) GetKey() WorkspaceSettingKey { if x != nil { return x.Key } return WorkspaceSettingKey_WORKSPACE_SETTING_KEY_UNSPECIFIED } func (x *WorkspaceSetting) GetRaw() string { if x != nil { return x.Raw } return "" } func (x *WorkspaceSetting) GetValue() isWorkspaceSetting_Value { if x != nil { return x.Value } return nil } func (x *WorkspaceSetting) GetGeneral() *WorkspaceSetting_GeneralSetting { if x != nil { if x, ok := x.Value.(*WorkspaceSetting_General); ok { return x.General } } return nil } func (x *WorkspaceSetting) GetSecurity() *WorkspaceSetting_SecuritySetting { if x != nil { if x, ok := x.Value.(*WorkspaceSetting_Security); ok { return x.Security } } return nil } func (x *WorkspaceSetting) GetShortcutRelated() *WorkspaceSetting_ShortcutRelatedSetting { if x != nil { if x, ok := x.Value.(*WorkspaceSetting_ShortcutRelated); ok { return x.ShortcutRelated } } return nil } func (x *WorkspaceSetting) GetIdentityProvider() *WorkspaceSetting_IdentityProviderSetting { if x != nil { if x, ok := x.Value.(*WorkspaceSetting_IdentityProvider); ok { return x.IdentityProvider } } return nil } type isWorkspaceSetting_Value interface { isWorkspaceSetting_Value() } type WorkspaceSetting_General struct { General *WorkspaceSetting_GeneralSetting `protobuf:"bytes,3,opt,name=general,proto3,oneof"` } type WorkspaceSetting_Security struct { Security *WorkspaceSetting_SecuritySetting `protobuf:"bytes,4,opt,name=security,proto3,oneof"` } type WorkspaceSetting_ShortcutRelated struct { ShortcutRelated *WorkspaceSetting_ShortcutRelatedSetting `protobuf:"bytes,5,opt,name=shortcut_related,json=shortcutRelated,proto3,oneof"` } type WorkspaceSetting_IdentityProvider struct { IdentityProvider *WorkspaceSetting_IdentityProviderSetting `protobuf:"bytes,6,opt,name=identity_provider,json=identityProvider,proto3,oneof"` } func (*WorkspaceSetting_General) isWorkspaceSetting_Value() {} func (*WorkspaceSetting_Security) isWorkspaceSetting_Value() {} func (*WorkspaceSetting_ShortcutRelated) isWorkspaceSetting_Value() {} func (*WorkspaceSetting_IdentityProvider) isWorkspaceSetting_Value() {} type WorkspaceSetting_GeneralSetting struct { state protoimpl.MessageState `protogen:"open.v1"` SecretSession string `protobuf:"bytes,1,opt,name=secret_session,json=secretSession,proto3" json:"secret_session,omitempty"` LicenseKey string `protobuf:"bytes,2,opt,name=license_key,json=licenseKey,proto3" json:"license_key,omitempty"` InstanceUrl string `protobuf:"bytes,3,opt,name=instance_url,json=instanceUrl,proto3" json:"instance_url,omitempty"` Branding []byte `protobuf:"bytes,4,opt,name=branding,proto3" json:"branding,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *WorkspaceSetting_GeneralSetting) Reset() { *x = WorkspaceSetting_GeneralSetting{} mi := &file_store_workspace_setting_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *WorkspaceSetting_GeneralSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*WorkspaceSetting_GeneralSetting) ProtoMessage() {} func (x *WorkspaceSetting_GeneralSetting) ProtoReflect() protoreflect.Message { mi := &file_store_workspace_setting_proto_msgTypes[1] 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 WorkspaceSetting_GeneralSetting.ProtoReflect.Descriptor instead. func (*WorkspaceSetting_GeneralSetting) Descriptor() ([]byte, []int) { return file_store_workspace_setting_proto_rawDescGZIP(), []int{0, 0} } func (x *WorkspaceSetting_GeneralSetting) GetSecretSession() string { if x != nil { return x.SecretSession } return "" } func (x *WorkspaceSetting_GeneralSetting) GetLicenseKey() string { if x != nil { return x.LicenseKey } return "" } func (x *WorkspaceSetting_GeneralSetting) GetInstanceUrl() string { if x != nil { return x.InstanceUrl } return "" } func (x *WorkspaceSetting_GeneralSetting) GetBranding() []byte { if x != nil { return x.Branding } return nil } type WorkspaceSetting_SecuritySetting struct { state protoimpl.MessageState `protogen:"open.v1"` DisallowUserRegistration bool `protobuf:"varint,1,opt,name=disallow_user_registration,json=disallowUserRegistration,proto3" json:"disallow_user_registration,omitempty"` DisallowPasswordAuth bool `protobuf:"varint,2,opt,name=disallow_password_auth,json=disallowPasswordAuth,proto3" json:"disallow_password_auth,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *WorkspaceSetting_SecuritySetting) Reset() { *x = WorkspaceSetting_SecuritySetting{} mi := &file_store_workspace_setting_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *WorkspaceSetting_SecuritySetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*WorkspaceSetting_SecuritySetting) ProtoMessage() {} func (x *WorkspaceSetting_SecuritySetting) ProtoReflect() protoreflect.Message { mi := &file_store_workspace_setting_proto_msgTypes[2] 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 WorkspaceSetting_SecuritySetting.ProtoReflect.Descriptor instead. func (*WorkspaceSetting_SecuritySetting) Descriptor() ([]byte, []int) { return file_store_workspace_setting_proto_rawDescGZIP(), []int{0, 1} } func (x *WorkspaceSetting_SecuritySetting) GetDisallowUserRegistration() bool { if x != nil { return x.DisallowUserRegistration } return false } func (x *WorkspaceSetting_SecuritySetting) GetDisallowPasswordAuth() bool { if x != nil { return x.DisallowPasswordAuth } return false } type WorkspaceSetting_ShortcutRelatedSetting struct { state protoimpl.MessageState `protogen:"open.v1"` DefaultVisibility Visibility `protobuf:"varint,1,opt,name=default_visibility,json=defaultVisibility,proto3,enum=slash.store.Visibility" json:"default_visibility,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *WorkspaceSetting_ShortcutRelatedSetting) Reset() { *x = WorkspaceSetting_ShortcutRelatedSetting{} mi := &file_store_workspace_setting_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *WorkspaceSetting_ShortcutRelatedSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*WorkspaceSetting_ShortcutRelatedSetting) ProtoMessage() {} func (x *WorkspaceSetting_ShortcutRelatedSetting) ProtoReflect() protoreflect.Message { mi := &file_store_workspace_setting_proto_msgTypes[3] 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 WorkspaceSetting_ShortcutRelatedSetting.ProtoReflect.Descriptor instead. func (*WorkspaceSetting_ShortcutRelatedSetting) Descriptor() ([]byte, []int) { return file_store_workspace_setting_proto_rawDescGZIP(), []int{0, 2} } func (x *WorkspaceSetting_ShortcutRelatedSetting) GetDefaultVisibility() Visibility { if x != nil { return x.DefaultVisibility } return Visibility_VISIBILITY_UNSPECIFIED } type WorkspaceSetting_IdentityProviderSetting struct { state protoimpl.MessageState `protogen:"open.v1"` IdentityProviders []*IdentityProvider `protobuf:"bytes,1,rep,name=identity_providers,json=identityProviders,proto3" json:"identity_providers,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *WorkspaceSetting_IdentityProviderSetting) Reset() { *x = WorkspaceSetting_IdentityProviderSetting{} mi := &file_store_workspace_setting_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *WorkspaceSetting_IdentityProviderSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*WorkspaceSetting_IdentityProviderSetting) ProtoMessage() {} func (x *WorkspaceSetting_IdentityProviderSetting) ProtoReflect() protoreflect.Message { mi := &file_store_workspace_setting_proto_msgTypes[4] 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 WorkspaceSetting_IdentityProviderSetting.ProtoReflect.Descriptor instead. func (*WorkspaceSetting_IdentityProviderSetting) Descriptor() ([]byte, []int) { return file_store_workspace_setting_proto_rawDescGZIP(), []int{0, 3} } func (x *WorkspaceSetting_IdentityProviderSetting) GetIdentityProviders() []*IdentityProvider { if x != nil { return x.IdentityProviders } return nil } var File_store_workspace_setting_proto protoreflect.FileDescriptor const file_store_workspace_setting_proto_rawDesc = "" + "\n" + "\x1dstore/workspace_setting.proto\x12\vslash.store\x1a\x12store/common.proto\x1a\x0fstore/idp.proto\"\xae\a\n" + "\x10WorkspaceSetting\x122\n" + "\x03key\x18\x01 \x01(\x0e2 .slash.store.WorkspaceSettingKeyR\x03key\x12\x10\n" + "\x03raw\x18\x02 \x01(\tR\x03raw\x12H\n" + "\ageneral\x18\x03 \x01(\v2,.slash.store.WorkspaceSetting.GeneralSettingH\x00R\ageneral\x12K\n" + "\bsecurity\x18\x04 \x01(\v2-.slash.store.WorkspaceSetting.SecuritySettingH\x00R\bsecurity\x12a\n" + "\x10shortcut_related\x18\x05 \x01(\v24.slash.store.WorkspaceSetting.ShortcutRelatedSettingH\x00R\x0fshortcutRelated\x12d\n" + "\x11identity_provider\x18\x06 \x01(\v25.slash.store.WorkspaceSetting.IdentityProviderSettingH\x00R\x10identityProvider\x1a\x97\x01\n" + "\x0eGeneralSetting\x12%\n" + "\x0esecret_session\x18\x01 \x01(\tR\rsecretSession\x12\x1f\n" + "\vlicense_key\x18\x02 \x01(\tR\n" + "licenseKey\x12!\n" + "\finstance_url\x18\x03 \x01(\tR\vinstanceUrl\x12\x1a\n" + "\bbranding\x18\x04 \x01(\fR\bbranding\x1a\x85\x01\n" + "\x0fSecuritySetting\x12<\n" + "\x1adisallow_user_registration\x18\x01 \x01(\bR\x18disallowUserRegistration\x124\n" + "\x16disallow_password_auth\x18\x02 \x01(\bR\x14disallowPasswordAuth\x1a`\n" + "\x16ShortcutRelatedSetting\x12F\n" + "\x12default_visibility\x18\x01 \x01(\x0e2\x17.slash.store.VisibilityR\x11defaultVisibility\x1ag\n" + "\x17IdentityProviderSetting\x12L\n" + "\x12identity_providers\x18\x01 \x03(\v2\x1d.slash.store.IdentityProviderR\x11identityProvidersB\a\n" + "\x05value*\xbf\x02\n" + "\x13WorkspaceSettingKey\x12%\n" + "!WORKSPACE_SETTING_KEY_UNSPECIFIED\x10\x00\x12\x1d\n" + "\x19WORKSPACE_SETTING_GENERAL\x10\x01\x12\x1e\n" + "\x1aWORKSPACE_SETTING_SECURITY\x10\x02\x12&\n" + "\"WORKSPACE_SETTING_SHORTCUT_RELATED\x10\x03\x12'\n" + "#WORKSPACE_SETTING_IDENTITY_PROVIDER\x10\x04\x12!\n" + "\x1dWORKSPACE_SETTING_LICENSE_KEY\x10\n" + "\x12$\n" + " WORKSPACE_SETTING_SECRET_SESSION\x10\v\x12(\n" + "$WORKSPACE_SETTING_DEFAULT_VISIBILITY\x10\rB\xa6\x01\n" + "\x0fcom.slash.storeB\x15WorkspaceSettingProtoP\x01Z/github.com/yourselfhosted/slash/proto/gen/store\xa2\x02\x03SSX\xaa\x02\vSlash.Store\xca\x02\vSlash\\Store\xe2\x02\x17Slash\\Store\\GPBMetadata\xea\x02\fSlash::Storeb\x06proto3" var ( file_store_workspace_setting_proto_rawDescOnce sync.Once file_store_workspace_setting_proto_rawDescData []byte ) func file_store_workspace_setting_proto_rawDescGZIP() []byte { file_store_workspace_setting_proto_rawDescOnce.Do(func() { file_store_workspace_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_store_workspace_setting_proto_rawDesc), len(file_store_workspace_setting_proto_rawDesc))) }) return file_store_workspace_setting_proto_rawDescData } var file_store_workspace_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_store_workspace_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 5) var file_store_workspace_setting_proto_goTypes = []any{ (WorkspaceSettingKey)(0), // 0: slash.store.WorkspaceSettingKey (*WorkspaceSetting)(nil), // 1: slash.store.WorkspaceSetting (*WorkspaceSetting_GeneralSetting)(nil), // 2: slash.store.WorkspaceSetting.GeneralSetting (*WorkspaceSetting_SecuritySetting)(nil), // 3: slash.store.WorkspaceSetting.SecuritySetting (*WorkspaceSetting_ShortcutRelatedSetting)(nil), // 4: slash.store.WorkspaceSetting.ShortcutRelatedSetting (*WorkspaceSetting_IdentityProviderSetting)(nil), // 5: slash.store.WorkspaceSetting.IdentityProviderSetting (Visibility)(0), // 6: slash.store.Visibility (*IdentityProvider)(nil), // 7: slash.store.IdentityProvider } var file_store_workspace_setting_proto_depIdxs = []int32{ 0, // 0: slash.store.WorkspaceSetting.key:type_name -> slash.store.WorkspaceSettingKey 2, // 1: slash.store.WorkspaceSetting.general:type_name -> slash.store.WorkspaceSetting.GeneralSetting 3, // 2: slash.store.WorkspaceSetting.security:type_name -> slash.store.WorkspaceSetting.SecuritySetting 4, // 3: slash.store.WorkspaceSetting.shortcut_related:type_name -> slash.store.WorkspaceSetting.ShortcutRelatedSetting 5, // 4: slash.store.WorkspaceSetting.identity_provider:type_name -> slash.store.WorkspaceSetting.IdentityProviderSetting 6, // 5: slash.store.WorkspaceSetting.ShortcutRelatedSetting.default_visibility:type_name -> slash.store.Visibility 7, // 6: slash.store.WorkspaceSetting.IdentityProviderSetting.identity_providers:type_name -> slash.store.IdentityProvider 7, // [7:7] is the sub-list for method output_type 7, // [7:7] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name 7, // [7:7] is the sub-list for extension extendee 0, // [0:7] is the sub-list for field type_name } func init() { file_store_workspace_setting_proto_init() } func file_store_workspace_setting_proto_init() { if File_store_workspace_setting_proto != nil { return } file_store_common_proto_init() file_store_idp_proto_init() file_store_workspace_setting_proto_msgTypes[0].OneofWrappers = []any{ (*WorkspaceSetting_General)(nil), (*WorkspaceSetting_Security)(nil), (*WorkspaceSetting_ShortcutRelated)(nil), (*WorkspaceSetting_IdentityProvider)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_store_workspace_setting_proto_rawDesc), len(file_store_workspace_setting_proto_rawDesc)), NumEnums: 1, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, GoTypes: file_store_workspace_setting_proto_goTypes, DependencyIndexes: file_store_workspace_setting_proto_depIdxs, EnumInfos: file_store_workspace_setting_proto_enumTypes, MessageInfos: file_store_workspace_setting_proto_msgTypes, }.Build() File_store_workspace_setting_proto = out.File file_store_workspace_setting_proto_goTypes = nil file_store_workspace_setting_proto_depIdxs = nil }