@lansweeper/multitenant-api-grpc 0.4.82 → 0.4.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_grpc_pb.d.ts +17 -0
- package/gen-proto/multitenant_grpc_pb.js +33 -0
- package/gen-proto/multitenant_pb.d.ts +46 -0
- package/gen-proto/multitenant_pb.js +352 -0
- package/generated-go/multitenant.pb.go +276 -125
- package/generated-go/multitenant_grpc.pb.go +38 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +11 -0
|
@@ -7109,6 +7109,108 @@ func (x *CreateFlowBuilderBotAccountResponse) GetAccountId() string {
|
|
|
7109
7109
|
return ""
|
|
7110
7110
|
}
|
|
7111
7111
|
|
|
7112
|
+
type GetManualInstallationRequest struct {
|
|
7113
|
+
state protoimpl.MessageState
|
|
7114
|
+
sizeCache protoimpl.SizeCache
|
|
7115
|
+
unknownFields protoimpl.UnknownFields
|
|
7116
|
+
|
|
7117
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
7118
|
+
UserId *string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3,oneof" json:"user_id,omitempty"`
|
|
7119
|
+
}
|
|
7120
|
+
|
|
7121
|
+
func (x *GetManualInstallationRequest) Reset() {
|
|
7122
|
+
*x = GetManualInstallationRequest{}
|
|
7123
|
+
if protoimpl.UnsafeEnabled {
|
|
7124
|
+
mi := &file_multitenant_proto_msgTypes[119]
|
|
7125
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7126
|
+
ms.StoreMessageInfo(mi)
|
|
7127
|
+
}
|
|
7128
|
+
}
|
|
7129
|
+
|
|
7130
|
+
func (x *GetManualInstallationRequest) String() string {
|
|
7131
|
+
return protoimpl.X.MessageStringOf(x)
|
|
7132
|
+
}
|
|
7133
|
+
|
|
7134
|
+
func (*GetManualInstallationRequest) ProtoMessage() {}
|
|
7135
|
+
|
|
7136
|
+
func (x *GetManualInstallationRequest) ProtoReflect() protoreflect.Message {
|
|
7137
|
+
mi := &file_multitenant_proto_msgTypes[119]
|
|
7138
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
7139
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7140
|
+
if ms.LoadMessageInfo() == nil {
|
|
7141
|
+
ms.StoreMessageInfo(mi)
|
|
7142
|
+
}
|
|
7143
|
+
return ms
|
|
7144
|
+
}
|
|
7145
|
+
return mi.MessageOf(x)
|
|
7146
|
+
}
|
|
7147
|
+
|
|
7148
|
+
// Deprecated: Use GetManualInstallationRequest.ProtoReflect.Descriptor instead.
|
|
7149
|
+
func (*GetManualInstallationRequest) Descriptor() ([]byte, []int) {
|
|
7150
|
+
return file_multitenant_proto_rawDescGZIP(), []int{119}
|
|
7151
|
+
}
|
|
7152
|
+
|
|
7153
|
+
func (x *GetManualInstallationRequest) GetSiteId() string {
|
|
7154
|
+
if x != nil {
|
|
7155
|
+
return x.SiteId
|
|
7156
|
+
}
|
|
7157
|
+
return ""
|
|
7158
|
+
}
|
|
7159
|
+
|
|
7160
|
+
func (x *GetManualInstallationRequest) GetUserId() string {
|
|
7161
|
+
if x != nil && x.UserId != nil {
|
|
7162
|
+
return *x.UserId
|
|
7163
|
+
}
|
|
7164
|
+
return ""
|
|
7165
|
+
}
|
|
7166
|
+
|
|
7167
|
+
type GetManualInstallationResponse struct {
|
|
7168
|
+
state protoimpl.MessageState
|
|
7169
|
+
sizeCache protoimpl.SizeCache
|
|
7170
|
+
unknownFields protoimpl.UnknownFields
|
|
7171
|
+
|
|
7172
|
+
ManualInstallId string `protobuf:"bytes,1,opt,name=manual_install_id,json=manualInstallId,proto3" json:"manual_install_id,omitempty"`
|
|
7173
|
+
}
|
|
7174
|
+
|
|
7175
|
+
func (x *GetManualInstallationResponse) Reset() {
|
|
7176
|
+
*x = GetManualInstallationResponse{}
|
|
7177
|
+
if protoimpl.UnsafeEnabled {
|
|
7178
|
+
mi := &file_multitenant_proto_msgTypes[120]
|
|
7179
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7180
|
+
ms.StoreMessageInfo(mi)
|
|
7181
|
+
}
|
|
7182
|
+
}
|
|
7183
|
+
|
|
7184
|
+
func (x *GetManualInstallationResponse) String() string {
|
|
7185
|
+
return protoimpl.X.MessageStringOf(x)
|
|
7186
|
+
}
|
|
7187
|
+
|
|
7188
|
+
func (*GetManualInstallationResponse) ProtoMessage() {}
|
|
7189
|
+
|
|
7190
|
+
func (x *GetManualInstallationResponse) ProtoReflect() protoreflect.Message {
|
|
7191
|
+
mi := &file_multitenant_proto_msgTypes[120]
|
|
7192
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
7193
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7194
|
+
if ms.LoadMessageInfo() == nil {
|
|
7195
|
+
ms.StoreMessageInfo(mi)
|
|
7196
|
+
}
|
|
7197
|
+
return ms
|
|
7198
|
+
}
|
|
7199
|
+
return mi.MessageOf(x)
|
|
7200
|
+
}
|
|
7201
|
+
|
|
7202
|
+
// Deprecated: Use GetManualInstallationResponse.ProtoReflect.Descriptor instead.
|
|
7203
|
+
func (*GetManualInstallationResponse) Descriptor() ([]byte, []int) {
|
|
7204
|
+
return file_multitenant_proto_rawDescGZIP(), []int{120}
|
|
7205
|
+
}
|
|
7206
|
+
|
|
7207
|
+
func (x *GetManualInstallationResponse) GetManualInstallId() string {
|
|
7208
|
+
if x != nil {
|
|
7209
|
+
return x.ManualInstallId
|
|
7210
|
+
}
|
|
7211
|
+
return ""
|
|
7212
|
+
}
|
|
7213
|
+
|
|
7112
7214
|
type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
7113
7215
|
state protoimpl.MessageState
|
|
7114
7216
|
sizeCache protoimpl.SizeCache
|
|
@@ -7121,7 +7223,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
|
7121
7223
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
7122
7224
|
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
7123
7225
|
if protoimpl.UnsafeEnabled {
|
|
7124
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7226
|
+
mi := &file_multitenant_proto_msgTypes[121]
|
|
7125
7227
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7126
7228
|
ms.StoreMessageInfo(mi)
|
|
7127
7229
|
}
|
|
@@ -7134,7 +7236,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
|
7134
7236
|
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
7135
7237
|
|
|
7136
7238
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
7137
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7239
|
+
mi := &file_multitenant_proto_msgTypes[121]
|
|
7138
7240
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7139
7241
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7140
7242
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7177,7 +7279,7 @@ type Install_InstallState struct {
|
|
|
7177
7279
|
func (x *Install_InstallState) Reset() {
|
|
7178
7280
|
*x = Install_InstallState{}
|
|
7179
7281
|
if protoimpl.UnsafeEnabled {
|
|
7180
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7282
|
+
mi := &file_multitenant_proto_msgTypes[122]
|
|
7181
7283
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7182
7284
|
ms.StoreMessageInfo(mi)
|
|
7183
7285
|
}
|
|
@@ -7190,7 +7292,7 @@ func (x *Install_InstallState) String() string {
|
|
|
7190
7292
|
func (*Install_InstallState) ProtoMessage() {}
|
|
7191
7293
|
|
|
7192
7294
|
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
7193
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7295
|
+
mi := &file_multitenant_proto_msgTypes[122]
|
|
7194
7296
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7195
7297
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7196
7298
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7241,7 +7343,7 @@ type GetInstallsBySiteRequest_Filter struct {
|
|
|
7241
7343
|
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
7242
7344
|
*x = GetInstallsBySiteRequest_Filter{}
|
|
7243
7345
|
if protoimpl.UnsafeEnabled {
|
|
7244
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7346
|
+
mi := &file_multitenant_proto_msgTypes[123]
|
|
7245
7347
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7246
7348
|
ms.StoreMessageInfo(mi)
|
|
7247
7349
|
}
|
|
@@ -7254,7 +7356,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
|
7254
7356
|
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
7255
7357
|
|
|
7256
7358
|
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
7257
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7359
|
+
mi := &file_multitenant_proto_msgTypes[123]
|
|
7258
7360
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7259
7361
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7260
7362
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7306,7 +7408,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
|
7306
7408
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
7307
7409
|
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
7308
7410
|
if protoimpl.UnsafeEnabled {
|
|
7309
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7411
|
+
mi := &file_multitenant_proto_msgTypes[124]
|
|
7310
7412
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7311
7413
|
ms.StoreMessageInfo(mi)
|
|
7312
7414
|
}
|
|
@@ -7319,7 +7421,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
|
7319
7421
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
7320
7422
|
|
|
7321
7423
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
7322
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7424
|
+
mi := &file_multitenant_proto_msgTypes[124]
|
|
7323
7425
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7324
7426
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7325
7427
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7375,7 +7477,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
|
7375
7477
|
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
7376
7478
|
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
7377
7479
|
if protoimpl.UnsafeEnabled {
|
|
7378
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7480
|
+
mi := &file_multitenant_proto_msgTypes[125]
|
|
7379
7481
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7380
7482
|
ms.StoreMessageInfo(mi)
|
|
7381
7483
|
}
|
|
@@ -7388,7 +7490,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
|
7388
7490
|
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
7389
7491
|
|
|
7390
7492
|
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
7391
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7493
|
+
mi := &file_multitenant_proto_msgTypes[125]
|
|
7392
7494
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7393
7495
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7394
7496
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7430,7 +7532,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
|
7430
7532
|
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
7431
7533
|
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
7432
7534
|
if protoimpl.UnsafeEnabled {
|
|
7433
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7535
|
+
mi := &file_multitenant_proto_msgTypes[126]
|
|
7434
7536
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7435
7537
|
ms.StoreMessageInfo(mi)
|
|
7436
7538
|
}
|
|
@@ -7443,7 +7545,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
|
7443
7545
|
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
7444
7546
|
|
|
7445
7547
|
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
7446
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7548
|
+
mi := &file_multitenant_proto_msgTypes[126]
|
|
7447
7549
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7448
7550
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7449
7551
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7484,7 +7586,7 @@ type GetUserPermissionsResponse_Scope struct {
|
|
|
7484
7586
|
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
7485
7587
|
*x = GetUserPermissionsResponse_Scope{}
|
|
7486
7588
|
if protoimpl.UnsafeEnabled {
|
|
7487
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7589
|
+
mi := &file_multitenant_proto_msgTypes[127]
|
|
7488
7590
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7489
7591
|
ms.StoreMessageInfo(mi)
|
|
7490
7592
|
}
|
|
@@ -7497,7 +7599,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
|
7497
7599
|
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
7498
7600
|
|
|
7499
7601
|
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
7500
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7602
|
+
mi := &file_multitenant_proto_msgTypes[127]
|
|
7501
7603
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7502
7604
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7503
7605
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7534,7 +7636,7 @@ type GetUserPermissionsResponse_Role struct {
|
|
|
7534
7636
|
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
7535
7637
|
*x = GetUserPermissionsResponse_Role{}
|
|
7536
7638
|
if protoimpl.UnsafeEnabled {
|
|
7537
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7639
|
+
mi := &file_multitenant_proto_msgTypes[128]
|
|
7538
7640
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7539
7641
|
ms.StoreMessageInfo(mi)
|
|
7540
7642
|
}
|
|
@@ -7547,7 +7649,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
|
|
|
7547
7649
|
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
7548
7650
|
|
|
7549
7651
|
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
7550
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7652
|
+
mi := &file_multitenant_proto_msgTypes[128]
|
|
7551
7653
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7552
7654
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7553
7655
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7606,7 +7708,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
|
|
|
7606
7708
|
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
7607
7709
|
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
7608
7710
|
if protoimpl.UnsafeEnabled {
|
|
7609
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7711
|
+
mi := &file_multitenant_proto_msgTypes[129]
|
|
7610
7712
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7611
7713
|
ms.StoreMessageInfo(mi)
|
|
7612
7714
|
}
|
|
@@ -7619,7 +7721,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
|
7619
7721
|
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
7620
7722
|
|
|
7621
7723
|
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
7622
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7724
|
+
mi := &file_multitenant_proto_msgTypes[129]
|
|
7623
7725
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7624
7726
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7625
7727
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7676,7 +7778,7 @@ type GetMsmpOrganizationListRequest_MsmpPaginationRequest struct {
|
|
|
7676
7778
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) Reset() {
|
|
7677
7779
|
*x = GetMsmpOrganizationListRequest_MsmpPaginationRequest{}
|
|
7678
7780
|
if protoimpl.UnsafeEnabled {
|
|
7679
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7781
|
+
mi := &file_multitenant_proto_msgTypes[131]
|
|
7680
7782
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7681
7783
|
ms.StoreMessageInfo(mi)
|
|
7682
7784
|
}
|
|
@@ -7689,7 +7791,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) String() string {
|
|
|
7689
7791
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoMessage() {}
|
|
7690
7792
|
|
|
7691
7793
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() protoreflect.Message {
|
|
7692
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7794
|
+
mi := &file_multitenant_proto_msgTypes[131]
|
|
7693
7795
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7694
7796
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7695
7797
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7731,7 +7833,7 @@ type GetMsmpOrganizationListResponse_MsmpOrganization struct {
|
|
|
7731
7833
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) Reset() {
|
|
7732
7834
|
*x = GetMsmpOrganizationListResponse_MsmpOrganization{}
|
|
7733
7835
|
if protoimpl.UnsafeEnabled {
|
|
7734
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7836
|
+
mi := &file_multitenant_proto_msgTypes[132]
|
|
7735
7837
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7736
7838
|
ms.StoreMessageInfo(mi)
|
|
7737
7839
|
}
|
|
@@ -7744,7 +7846,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) String() string {
|
|
|
7744
7846
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) ProtoMessage() {}
|
|
7745
7847
|
|
|
7746
7848
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protoreflect.Message {
|
|
7747
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7849
|
+
mi := &file_multitenant_proto_msgTypes[132]
|
|
7748
7850
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7749
7851
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7750
7852
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7788,7 +7890,7 @@ type GetMsmpOrganizationListResponse_MsmpPageInfo struct {
|
|
|
7788
7890
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) Reset() {
|
|
7789
7891
|
*x = GetMsmpOrganizationListResponse_MsmpPageInfo{}
|
|
7790
7892
|
if protoimpl.UnsafeEnabled {
|
|
7791
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7893
|
+
mi := &file_multitenant_proto_msgTypes[133]
|
|
7792
7894
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7793
7895
|
ms.StoreMessageInfo(mi)
|
|
7794
7896
|
}
|
|
@@ -7801,7 +7903,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) String() string {
|
|
|
7801
7903
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoMessage() {}
|
|
7802
7904
|
|
|
7803
7905
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protoreflect.Message {
|
|
7804
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7906
|
+
mi := &file_multitenant_proto_msgTypes[133]
|
|
7805
7907
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7806
7908
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7807
7909
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -8866,7 +8968,18 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
8866
8968
|
0x77, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x42, 0x6f, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8867
8969
|
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63,
|
|
8868
8970
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
|
8869
|
-
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
8971
|
+
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x1c, 0x47, 0x65, 0x74,
|
|
8972
|
+
0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
8973
|
+
0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74,
|
|
8974
|
+
0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65,
|
|
8975
|
+
0x49, 0x64, 0x12, 0x1c, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
|
8976
|
+
0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01,
|
|
8977
|
+
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x22, 0x4b, 0x0a, 0x1d,
|
|
8978
|
+
0x47, 0x65, 0x74, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8979
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a,
|
|
8980
|
+
0x11, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f,
|
|
8981
|
+
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c,
|
|
8982
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x2a, 0x4e, 0x0a, 0x08, 0x53, 0x69, 0x74,
|
|
8870
8983
|
0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43,
|
|
8871
8984
|
0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4c, 0x4f, 0x55, 0x44,
|
|
8872
8985
|
0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x45, 0x4d,
|
|
@@ -8900,7 +9013,7 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
8900
9013
|
0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53,
|
|
8901
9014
|
0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45,
|
|
8902
9015
|
0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53,
|
|
8903
|
-
0x45, 0x10, 0x05, 0x32,
|
|
9016
|
+
0x45, 0x10, 0x05, 0x32, 0xd6, 0x3d, 0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8904
9017
|
0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63,
|
|
8905
9018
|
0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8906
9019
|
0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
@@ -9384,9 +9497,18 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
9384
9497
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
9385
9498
|
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x6c,
|
|
9386
9499
|
0x6f, 0x77, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x42, 0x6f, 0x74, 0x41, 0x63, 0x63, 0x6f,
|
|
9387
|
-
0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
9388
|
-
|
|
9389
|
-
|
|
9500
|
+
0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01,
|
|
9501
|
+
0x0a, 0x15, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
9502
|
+
0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9503
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9504
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x49, 0x6e, 0x73,
|
|
9505
|
+
0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
9506
|
+
0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
9507
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
9508
|
+
0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
9509
|
+
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e,
|
|
9510
|
+
0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06,
|
|
9511
|
+
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
9390
9512
|
}
|
|
9391
9513
|
|
|
9392
9514
|
var (
|
|
@@ -9402,7 +9524,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
|
|
|
9402
9524
|
}
|
|
9403
9525
|
|
|
9404
9526
|
var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
|
|
9405
|
-
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
9527
|
+
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 134)
|
|
9406
9528
|
var file_multitenant_proto_goTypes = []any{
|
|
9407
9529
|
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
9408
9530
|
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
@@ -9528,21 +9650,23 @@ var file_multitenant_proto_goTypes = []any{
|
|
|
9528
9650
|
(*GetInstallationSettingsResponse)(nil), // 121: lansweeper.multitenant.v1.GetInstallationSettingsResponse
|
|
9529
9651
|
(*CreateFlowBuilderBotAccountRequest)(nil), // 122: lansweeper.multitenant.v1.CreateFlowBuilderBotAccountRequest
|
|
9530
9652
|
(*CreateFlowBuilderBotAccountResponse)(nil), // 123: lansweeper.multitenant.v1.CreateFlowBuilderBotAccountResponse
|
|
9531
|
-
(*
|
|
9532
|
-
(*
|
|
9533
|
-
(*
|
|
9534
|
-
(*
|
|
9535
|
-
(*
|
|
9536
|
-
(*
|
|
9537
|
-
(*
|
|
9538
|
-
(*
|
|
9539
|
-
(*
|
|
9540
|
-
nil,
|
|
9541
|
-
(*
|
|
9542
|
-
|
|
9543
|
-
(*
|
|
9544
|
-
(*
|
|
9545
|
-
(*
|
|
9653
|
+
(*GetManualInstallationRequest)(nil), // 124: lansweeper.multitenant.v1.GetManualInstallationRequest
|
|
9654
|
+
(*GetManualInstallationResponse)(nil), // 125: lansweeper.multitenant.v1.GetManualInstallationResponse
|
|
9655
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 126: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
9656
|
+
(*Install_InstallState)(nil), // 127: lansweeper.multitenant.v1.Install.InstallState
|
|
9657
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 128: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
9658
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 129: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
9659
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 130: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
9660
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 131: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
9661
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 132: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
9662
|
+
(*GetUserPermissionsResponse_Role)(nil), // 133: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
9663
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 134: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
9664
|
+
nil, // 135: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
9665
|
+
(*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 136: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
9666
|
+
(*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 137: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
9667
|
+
(*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 138: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
9668
|
+
(*generated_go.SiteLimits)(nil), // 139: lansweeper.shared.limits.v1.SiteLimits
|
|
9669
|
+
(*emptypb.Empty)(nil), // 140: google.protobuf.Empty
|
|
9546
9670
|
}
|
|
9547
9671
|
var file_multitenant_proto_depIdxs = []int32{
|
|
9548
9672
|
5, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
@@ -9555,13 +9679,13 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9555
9679
|
13, // 7: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9556
9680
|
16, // 8: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
9557
9681
|
16, // 9: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
9558
|
-
|
|
9559
|
-
|
|
9682
|
+
126, // 10: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
9683
|
+
127, // 11: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
9560
9684
|
2, // 12: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9561
9685
|
25, // 13: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9562
9686
|
25, // 14: lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9563
9687
|
2, // 15: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9564
|
-
|
|
9688
|
+
128, // 16: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
9565
9689
|
25, // 17: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9566
9690
|
25, // 18: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
|
|
9567
9691
|
25, // 19: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
@@ -9571,23 +9695,23 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9571
9695
|
2, // 23: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9572
9696
|
25, // 24: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9573
9697
|
26, // 25: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
9574
|
-
|
|
9698
|
+
129, // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
9575
9699
|
25, // 27: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9576
9700
|
2, // 28: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9577
9701
|
25, // 29: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9578
9702
|
26, // 30: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
9579
9703
|
13, // 31: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9580
|
-
|
|
9704
|
+
130, // 32: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
9581
9705
|
25, // 33: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9582
|
-
|
|
9583
|
-
|
|
9706
|
+
133, // 34: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
9707
|
+
134, // 35: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
9584
9708
|
62, // 36: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
|
|
9585
9709
|
3, // 37: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
9586
9710
|
3, // 38: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
9587
9711
|
69, // 39: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
|
|
9588
9712
|
16, // 40: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
|
|
9589
9713
|
5, // 41: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
9590
|
-
|
|
9714
|
+
135, // 42: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
9591
9715
|
4, // 43: lansweeper.multitenant.v1.SiteHierarchyIdsItem.parent_type:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem.ParentType
|
|
9592
9716
|
94, // 44: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.items:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem
|
|
9593
9717
|
95, // 45: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.page_info:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
|
|
@@ -9595,9 +9719,9 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9595
9719
|
99, // 47: lansweeper.multitenant.v1.SiteItem.metadata:type_name -> lansweeper.multitenant.v1.SiteItemMetadata
|
|
9596
9720
|
100, // 48: lansweeper.multitenant.v1.GetSitesResponse.items:type_name -> lansweeper.multitenant.v1.SiteItem
|
|
9597
9721
|
101, // 49: lansweeper.multitenant.v1.GetSitesResponse.page_info:type_name -> lansweeper.multitenant.v1.GetSitesPageInfo
|
|
9598
|
-
|
|
9599
|
-
|
|
9600
|
-
|
|
9722
|
+
136, // 50: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
9723
|
+
137, // 51: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
9724
|
+
138, // 52: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
9601
9725
|
103, // 53: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
|
|
9602
9726
|
13, // 54: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9603
9727
|
104, // 55: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
@@ -9606,10 +9730,10 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9606
9730
|
1, // 58: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
9607
9731
|
2, // 59: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9608
9732
|
33, // 60: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
|
|
9609
|
-
|
|
9733
|
+
131, // 61: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
9610
9734
|
25, // 62: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
9611
|
-
|
|
9612
|
-
|
|
9735
|
+
132, // 63: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
9736
|
+
139, // 64: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
|
|
9613
9737
|
21, // 65: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
9614
9738
|
23, // 66: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
|
|
9615
9739
|
6, // 67: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
@@ -9662,60 +9786,62 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9662
9786
|
118, // 114: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:input_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
|
|
9663
9787
|
120, // 115: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:input_type -> lansweeper.multitenant.v1.GetInstallationSettingsRequest
|
|
9664
9788
|
122, // 116: lansweeper.multitenant.v1.Multitenant.CreateFlowBuilderBotAccount:input_type -> lansweeper.multitenant.v1.CreateFlowBuilderBotAccountRequest
|
|
9665
|
-
|
|
9666
|
-
|
|
9667
|
-
|
|
9668
|
-
|
|
9669
|
-
|
|
9670
|
-
|
|
9671
|
-
|
|
9672
|
-
|
|
9673
|
-
|
|
9674
|
-
|
|
9675
|
-
|
|
9676
|
-
|
|
9677
|
-
|
|
9678
|
-
|
|
9679
|
-
|
|
9680
|
-
|
|
9681
|
-
|
|
9682
|
-
|
|
9683
|
-
|
|
9684
|
-
|
|
9685
|
-
|
|
9686
|
-
|
|
9687
|
-
|
|
9688
|
-
|
|
9689
|
-
|
|
9690
|
-
|
|
9691
|
-
|
|
9692
|
-
|
|
9693
|
-
|
|
9694
|
-
|
|
9695
|
-
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
9699
|
-
|
|
9700
|
-
|
|
9701
|
-
|
|
9702
|
-
|
|
9703
|
-
|
|
9704
|
-
|
|
9705
|
-
|
|
9706
|
-
|
|
9707
|
-
|
|
9708
|
-
|
|
9709
|
-
|
|
9710
|
-
|
|
9711
|
-
|
|
9712
|
-
|
|
9713
|
-
|
|
9714
|
-
|
|
9715
|
-
|
|
9716
|
-
|
|
9717
|
-
|
|
9718
|
-
|
|
9789
|
+
124, // 117: lansweeper.multitenant.v1.Multitenant.GetManualInstallation:input_type -> lansweeper.multitenant.v1.GetManualInstallationRequest
|
|
9790
|
+
22, // 118: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
9791
|
+
24, // 119: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
|
|
9792
|
+
7, // 120: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
9793
|
+
9, // 121: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
|
|
9794
|
+
11, // 122: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
|
|
9795
|
+
18, // 123: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
9796
|
+
20, // 124: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
9797
|
+
15, // 125: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
9798
|
+
41, // 126: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
9799
|
+
43, // 127: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
9800
|
+
35, // 128: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
9801
|
+
37, // 129: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
9802
|
+
30, // 130: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
|
|
9803
|
+
28, // 131: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
9804
|
+
39, // 132: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
9805
|
+
45, // 133: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
9806
|
+
47, // 134: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
9807
|
+
51, // 135: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
9808
|
+
49, // 136: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
9809
|
+
53, // 137: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
9810
|
+
55, // 138: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
9811
|
+
57, // 139: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
9812
|
+
59, // 140: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
9813
|
+
61, // 141: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
9814
|
+
64, // 142: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
9815
|
+
66, // 143: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
9816
|
+
68, // 144: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
9817
|
+
71, // 145: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
9818
|
+
73, // 146: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
9819
|
+
75, // 147: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
9820
|
+
79, // 148: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
9821
|
+
81, // 149: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
9822
|
+
77, // 150: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
9823
|
+
83, // 151: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
9824
|
+
84, // 152: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
9825
|
+
86, // 153: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
9826
|
+
88, // 154: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
9827
|
+
92, // 155: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
9828
|
+
106, // 156: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
9829
|
+
108, // 157: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
9830
|
+
110, // 158: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
9831
|
+
32, // 159: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
|
|
9832
|
+
140, // 160: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
|
|
9833
|
+
114, // 161: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
9834
|
+
115, // 162: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
9835
|
+
117, // 163: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
9836
|
+
90, // 164: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
9837
|
+
96, // 165: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:output_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
|
|
9838
|
+
102, // 166: lansweeper.multitenant.v1.Multitenant.GetSites:output_type -> lansweeper.multitenant.v1.GetSitesResponse
|
|
9839
|
+
119, // 167: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:output_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
|
|
9840
|
+
121, // 168: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:output_type -> lansweeper.multitenant.v1.GetInstallationSettingsResponse
|
|
9841
|
+
123, // 169: lansweeper.multitenant.v1.Multitenant.CreateFlowBuilderBotAccount:output_type -> lansweeper.multitenant.v1.CreateFlowBuilderBotAccountResponse
|
|
9842
|
+
125, // 170: lansweeper.multitenant.v1.Multitenant.GetManualInstallation:output_type -> lansweeper.multitenant.v1.GetManualInstallationResponse
|
|
9843
|
+
118, // [118:171] is the sub-list for method output_type
|
|
9844
|
+
65, // [65:118] is the sub-list for method input_type
|
|
9719
9845
|
65, // [65:65] is the sub-list for extension type_name
|
|
9720
9846
|
65, // [65:65] is the sub-list for extension extendee
|
|
9721
9847
|
0, // [0:65] is the sub-list for field type_name
|
|
@@ -11156,7 +11282,7 @@ func file_multitenant_proto_init() {
|
|
|
11156
11282
|
}
|
|
11157
11283
|
}
|
|
11158
11284
|
file_multitenant_proto_msgTypes[119].Exporter = func(v any, i int) any {
|
|
11159
|
-
switch v := v.(*
|
|
11285
|
+
switch v := v.(*GetManualInstallationRequest); i {
|
|
11160
11286
|
case 0:
|
|
11161
11287
|
return &v.state
|
|
11162
11288
|
case 1:
|
|
@@ -11168,7 +11294,7 @@ func file_multitenant_proto_init() {
|
|
|
11168
11294
|
}
|
|
11169
11295
|
}
|
|
11170
11296
|
file_multitenant_proto_msgTypes[120].Exporter = func(v any, i int) any {
|
|
11171
|
-
switch v := v.(*
|
|
11297
|
+
switch v := v.(*GetManualInstallationResponse); i {
|
|
11172
11298
|
case 0:
|
|
11173
11299
|
return &v.state
|
|
11174
11300
|
case 1:
|
|
@@ -11180,7 +11306,7 @@ func file_multitenant_proto_init() {
|
|
|
11180
11306
|
}
|
|
11181
11307
|
}
|
|
11182
11308
|
file_multitenant_proto_msgTypes[121].Exporter = func(v any, i int) any {
|
|
11183
|
-
switch v := v.(*
|
|
11309
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
11184
11310
|
case 0:
|
|
11185
11311
|
return &v.state
|
|
11186
11312
|
case 1:
|
|
@@ -11192,7 +11318,7 @@ func file_multitenant_proto_init() {
|
|
|
11192
11318
|
}
|
|
11193
11319
|
}
|
|
11194
11320
|
file_multitenant_proto_msgTypes[122].Exporter = func(v any, i int) any {
|
|
11195
|
-
switch v := v.(*
|
|
11321
|
+
switch v := v.(*Install_InstallState); i {
|
|
11196
11322
|
case 0:
|
|
11197
11323
|
return &v.state
|
|
11198
11324
|
case 1:
|
|
@@ -11204,7 +11330,7 @@ func file_multitenant_proto_init() {
|
|
|
11204
11330
|
}
|
|
11205
11331
|
}
|
|
11206
11332
|
file_multitenant_proto_msgTypes[123].Exporter = func(v any, i int) any {
|
|
11207
|
-
switch v := v.(*
|
|
11333
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
11208
11334
|
case 0:
|
|
11209
11335
|
return &v.state
|
|
11210
11336
|
case 1:
|
|
@@ -11216,7 +11342,7 @@ func file_multitenant_proto_init() {
|
|
|
11216
11342
|
}
|
|
11217
11343
|
}
|
|
11218
11344
|
file_multitenant_proto_msgTypes[124].Exporter = func(v any, i int) any {
|
|
11219
|
-
switch v := v.(*
|
|
11345
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
11220
11346
|
case 0:
|
|
11221
11347
|
return &v.state
|
|
11222
11348
|
case 1:
|
|
@@ -11228,7 +11354,7 @@ func file_multitenant_proto_init() {
|
|
|
11228
11354
|
}
|
|
11229
11355
|
}
|
|
11230
11356
|
file_multitenant_proto_msgTypes[125].Exporter = func(v any, i int) any {
|
|
11231
|
-
switch v := v.(*
|
|
11357
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
11232
11358
|
case 0:
|
|
11233
11359
|
return &v.state
|
|
11234
11360
|
case 1:
|
|
@@ -11240,7 +11366,7 @@ func file_multitenant_proto_init() {
|
|
|
11240
11366
|
}
|
|
11241
11367
|
}
|
|
11242
11368
|
file_multitenant_proto_msgTypes[126].Exporter = func(v any, i int) any {
|
|
11243
|
-
switch v := v.(*
|
|
11369
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
11244
11370
|
case 0:
|
|
11245
11371
|
return &v.state
|
|
11246
11372
|
case 1:
|
|
@@ -11252,7 +11378,19 @@ func file_multitenant_proto_init() {
|
|
|
11252
11378
|
}
|
|
11253
11379
|
}
|
|
11254
11380
|
file_multitenant_proto_msgTypes[127].Exporter = func(v any, i int) any {
|
|
11255
|
-
switch v := v.(*
|
|
11381
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
11382
|
+
case 0:
|
|
11383
|
+
return &v.state
|
|
11384
|
+
case 1:
|
|
11385
|
+
return &v.sizeCache
|
|
11386
|
+
case 2:
|
|
11387
|
+
return &v.unknownFields
|
|
11388
|
+
default:
|
|
11389
|
+
return nil
|
|
11390
|
+
}
|
|
11391
|
+
}
|
|
11392
|
+
file_multitenant_proto_msgTypes[128].Exporter = func(v any, i int) any {
|
|
11393
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
11256
11394
|
case 0:
|
|
11257
11395
|
return &v.state
|
|
11258
11396
|
case 1:
|
|
@@ -11264,6 +11402,18 @@ func file_multitenant_proto_init() {
|
|
|
11264
11402
|
}
|
|
11265
11403
|
}
|
|
11266
11404
|
file_multitenant_proto_msgTypes[129].Exporter = func(v any, i int) any {
|
|
11405
|
+
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
11406
|
+
case 0:
|
|
11407
|
+
return &v.state
|
|
11408
|
+
case 1:
|
|
11409
|
+
return &v.sizeCache
|
|
11410
|
+
case 2:
|
|
11411
|
+
return &v.unknownFields
|
|
11412
|
+
default:
|
|
11413
|
+
return nil
|
|
11414
|
+
}
|
|
11415
|
+
}
|
|
11416
|
+
file_multitenant_proto_msgTypes[131].Exporter = func(v any, i int) any {
|
|
11267
11417
|
switch v := v.(*GetMsmpOrganizationListRequest_MsmpPaginationRequest); i {
|
|
11268
11418
|
case 0:
|
|
11269
11419
|
return &v.state
|
|
@@ -11275,7 +11425,7 @@ func file_multitenant_proto_init() {
|
|
|
11275
11425
|
return nil
|
|
11276
11426
|
}
|
|
11277
11427
|
}
|
|
11278
|
-
file_multitenant_proto_msgTypes[
|
|
11428
|
+
file_multitenant_proto_msgTypes[132].Exporter = func(v any, i int) any {
|
|
11279
11429
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpOrganization); i {
|
|
11280
11430
|
case 0:
|
|
11281
11431
|
return &v.state
|
|
@@ -11287,7 +11437,7 @@ func file_multitenant_proto_init() {
|
|
|
11287
11437
|
return nil
|
|
11288
11438
|
}
|
|
11289
11439
|
}
|
|
11290
|
-
file_multitenant_proto_msgTypes[
|
|
11440
|
+
file_multitenant_proto_msgTypes[133].Exporter = func(v any, i int) any {
|
|
11291
11441
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpPageInfo); i {
|
|
11292
11442
|
case 0:
|
|
11293
11443
|
return &v.state
|
|
@@ -11308,13 +11458,14 @@ func file_multitenant_proto_init() {
|
|
|
11308
11458
|
file_multitenant_proto_msgTypes[93].OneofWrappers = []any{}
|
|
11309
11459
|
file_multitenant_proto_msgTypes[95].OneofWrappers = []any{}
|
|
11310
11460
|
file_multitenant_proto_msgTypes[113].OneofWrappers = []any{}
|
|
11461
|
+
file_multitenant_proto_msgTypes[119].OneofWrappers = []any{}
|
|
11311
11462
|
type x struct{}
|
|
11312
11463
|
out := protoimpl.TypeBuilder{
|
|
11313
11464
|
File: protoimpl.DescBuilder{
|
|
11314
11465
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
11315
11466
|
RawDescriptor: file_multitenant_proto_rawDesc,
|
|
11316
11467
|
NumEnums: 5,
|
|
11317
|
-
NumMessages:
|
|
11468
|
+
NumMessages: 134,
|
|
11318
11469
|
NumExtensions: 0,
|
|
11319
11470
|
NumServices: 1,
|
|
11320
11471
|
},
|