@lansweeper/multitenant-api-grpc 0.3.5 → 0.3.7
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 +16 -0
- package/buf.yaml +22 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_pb.d.ts +6 -0
- package/gen-proto/multitenant_pb.js +61 -1
- package/generated-go/multitenant.pb.go +4270 -0
- package/generated-go/multitenant_grpc.pb.go +681 -0
- package/go.mod +3 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +6 -2
|
@@ -0,0 +1,4270 @@
|
|
|
1
|
+
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-go v1.28.0
|
|
4
|
+
// protoc v3.7.1
|
|
5
|
+
// source: packages/multitenant/grpc/proto/multitenant.proto
|
|
6
|
+
|
|
7
|
+
package generated_go
|
|
8
|
+
|
|
9
|
+
import (
|
|
10
|
+
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
11
|
+
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
12
|
+
reflect "reflect"
|
|
13
|
+
sync "sync"
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
const (
|
|
17
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
18
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
19
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
20
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
type SiteMode int32
|
|
24
|
+
|
|
25
|
+
const (
|
|
26
|
+
SiteMode_UNESPECIFIED SiteMode = 0
|
|
27
|
+
SiteMode_CLOUD_NATIVE SiteMode = 1
|
|
28
|
+
SiteMode_DEMO SiteMode = 2
|
|
29
|
+
SiteMode_HYBRID SiteMode = 3
|
|
30
|
+
SiteMode_DUAL SiteMode = 4
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
// Enum value maps for SiteMode.
|
|
34
|
+
var (
|
|
35
|
+
SiteMode_name = map[int32]string{
|
|
36
|
+
0: "UNESPECIFIED",
|
|
37
|
+
1: "CLOUD_NATIVE",
|
|
38
|
+
2: "DEMO",
|
|
39
|
+
3: "HYBRID",
|
|
40
|
+
4: "DUAL",
|
|
41
|
+
}
|
|
42
|
+
SiteMode_value = map[string]int32{
|
|
43
|
+
"UNESPECIFIED": 0,
|
|
44
|
+
"CLOUD_NATIVE": 1,
|
|
45
|
+
"DEMO": 2,
|
|
46
|
+
"HYBRID": 3,
|
|
47
|
+
"DUAL": 4,
|
|
48
|
+
}
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
func (x SiteMode) Enum() *SiteMode {
|
|
52
|
+
p := new(SiteMode)
|
|
53
|
+
*p = x
|
|
54
|
+
return p
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
func (x SiteMode) String() string {
|
|
58
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
func (SiteMode) Descriptor() protoreflect.EnumDescriptor {
|
|
62
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_enumTypes[0].Descriptor()
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
func (SiteMode) Type() protoreflect.EnumType {
|
|
66
|
+
return &file_packages_multitenant_grpc_proto_multitenant_proto_enumTypes[0]
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
func (x SiteMode) Number() protoreflect.EnumNumber {
|
|
70
|
+
return protoreflect.EnumNumber(x)
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Deprecated: Use SiteMode.Descriptor instead.
|
|
74
|
+
func (SiteMode) EnumDescriptor() ([]byte, []int) {
|
|
75
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{0}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
type InstallStateValue int32
|
|
79
|
+
|
|
80
|
+
const (
|
|
81
|
+
InstallStateValue_INSTALL_STATE_VALUE_UNESPECIFIED InstallStateValue = 0
|
|
82
|
+
InstallStateValue_INSTALL_STATE_VALUE_SYNC InstallStateValue = 1
|
|
83
|
+
InstallStateValue_INSTALL_STATE_VALUE_UNSYNC InstallStateValue = 2
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
// Enum value maps for InstallStateValue.
|
|
87
|
+
var (
|
|
88
|
+
InstallStateValue_name = map[int32]string{
|
|
89
|
+
0: "INSTALL_STATE_VALUE_UNESPECIFIED",
|
|
90
|
+
1: "INSTALL_STATE_VALUE_SYNC",
|
|
91
|
+
2: "INSTALL_STATE_VALUE_UNSYNC",
|
|
92
|
+
}
|
|
93
|
+
InstallStateValue_value = map[string]int32{
|
|
94
|
+
"INSTALL_STATE_VALUE_UNESPECIFIED": 0,
|
|
95
|
+
"INSTALL_STATE_VALUE_SYNC": 1,
|
|
96
|
+
"INSTALL_STATE_VALUE_UNSYNC": 2,
|
|
97
|
+
}
|
|
98
|
+
)
|
|
99
|
+
|
|
100
|
+
func (x InstallStateValue) Enum() *InstallStateValue {
|
|
101
|
+
p := new(InstallStateValue)
|
|
102
|
+
*p = x
|
|
103
|
+
return p
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
func (x InstallStateValue) String() string {
|
|
107
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
func (InstallStateValue) Descriptor() protoreflect.EnumDescriptor {
|
|
111
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_enumTypes[1].Descriptor()
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
func (InstallStateValue) Type() protoreflect.EnumType {
|
|
115
|
+
return &file_packages_multitenant_grpc_proto_multitenant_proto_enumTypes[1]
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
func (x InstallStateValue) Number() protoreflect.EnumNumber {
|
|
119
|
+
return protoreflect.EnumNumber(x)
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// Deprecated: Use InstallStateValue.Descriptor instead.
|
|
123
|
+
func (InstallStateValue) EnumDescriptor() ([]byte, []int) {
|
|
124
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{1}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
type PreviewAccount struct {
|
|
128
|
+
state protoimpl.MessageState
|
|
129
|
+
sizeCache protoimpl.SizeCache
|
|
130
|
+
unknownFields protoimpl.UnknownFields
|
|
131
|
+
|
|
132
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
133
|
+
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
134
|
+
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
|
|
135
|
+
Surname string `protobuf:"bytes,4,opt,name=surname,proto3" json:"surname,omitempty"`
|
|
136
|
+
Email string `protobuf:"bytes,5,opt,name=email,proto3" json:"email,omitempty"`
|
|
137
|
+
ImageUrl string `protobuf:"bytes,6,opt,name=image_url,json=imageUrl,proto3" json:"image_url,omitempty"`
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
func (x *PreviewAccount) Reset() {
|
|
141
|
+
*x = PreviewAccount{}
|
|
142
|
+
if protoimpl.UnsafeEnabled {
|
|
143
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[0]
|
|
144
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
145
|
+
ms.StoreMessageInfo(mi)
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
func (x *PreviewAccount) String() string {
|
|
150
|
+
return protoimpl.X.MessageStringOf(x)
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
func (*PreviewAccount) ProtoMessage() {}
|
|
154
|
+
|
|
155
|
+
func (x *PreviewAccount) ProtoReflect() protoreflect.Message {
|
|
156
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[0]
|
|
157
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
158
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
159
|
+
if ms.LoadMessageInfo() == nil {
|
|
160
|
+
ms.StoreMessageInfo(mi)
|
|
161
|
+
}
|
|
162
|
+
return ms
|
|
163
|
+
}
|
|
164
|
+
return mi.MessageOf(x)
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// Deprecated: Use PreviewAccount.ProtoReflect.Descriptor instead.
|
|
168
|
+
func (*PreviewAccount) Descriptor() ([]byte, []int) {
|
|
169
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{0}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
func (x *PreviewAccount) GetId() string {
|
|
173
|
+
if x != nil {
|
|
174
|
+
return x.Id
|
|
175
|
+
}
|
|
176
|
+
return ""
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
func (x *PreviewAccount) GetUsername() string {
|
|
180
|
+
if x != nil {
|
|
181
|
+
return x.Username
|
|
182
|
+
}
|
|
183
|
+
return ""
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
func (x *PreviewAccount) GetName() string {
|
|
187
|
+
if x != nil {
|
|
188
|
+
return x.Name
|
|
189
|
+
}
|
|
190
|
+
return ""
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
func (x *PreviewAccount) GetSurname() string {
|
|
194
|
+
if x != nil {
|
|
195
|
+
return x.Surname
|
|
196
|
+
}
|
|
197
|
+
return ""
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
func (x *PreviewAccount) GetEmail() string {
|
|
201
|
+
if x != nil {
|
|
202
|
+
return x.Email
|
|
203
|
+
}
|
|
204
|
+
return ""
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
func (x *PreviewAccount) GetImageUrl() string {
|
|
208
|
+
if x != nil {
|
|
209
|
+
return x.ImageUrl
|
|
210
|
+
}
|
|
211
|
+
return ""
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
type GetPreviewAccountByIdRequest struct {
|
|
215
|
+
state protoimpl.MessageState
|
|
216
|
+
sizeCache protoimpl.SizeCache
|
|
217
|
+
unknownFields protoimpl.UnknownFields
|
|
218
|
+
|
|
219
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
func (x *GetPreviewAccountByIdRequest) Reset() {
|
|
223
|
+
*x = GetPreviewAccountByIdRequest{}
|
|
224
|
+
if protoimpl.UnsafeEnabled {
|
|
225
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[1]
|
|
226
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
227
|
+
ms.StoreMessageInfo(mi)
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
func (x *GetPreviewAccountByIdRequest) String() string {
|
|
232
|
+
return protoimpl.X.MessageStringOf(x)
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
func (*GetPreviewAccountByIdRequest) ProtoMessage() {}
|
|
236
|
+
|
|
237
|
+
func (x *GetPreviewAccountByIdRequest) ProtoReflect() protoreflect.Message {
|
|
238
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[1]
|
|
239
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
240
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
241
|
+
if ms.LoadMessageInfo() == nil {
|
|
242
|
+
ms.StoreMessageInfo(mi)
|
|
243
|
+
}
|
|
244
|
+
return ms
|
|
245
|
+
}
|
|
246
|
+
return mi.MessageOf(x)
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
// Deprecated: Use GetPreviewAccountByIdRequest.ProtoReflect.Descriptor instead.
|
|
250
|
+
func (*GetPreviewAccountByIdRequest) Descriptor() ([]byte, []int) {
|
|
251
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{1}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
func (x *GetPreviewAccountByIdRequest) GetId() string {
|
|
255
|
+
if x != nil {
|
|
256
|
+
return x.Id
|
|
257
|
+
}
|
|
258
|
+
return ""
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
type GetPreviewAccountByIdResponse struct {
|
|
262
|
+
state protoimpl.MessageState
|
|
263
|
+
sizeCache protoimpl.SizeCache
|
|
264
|
+
unknownFields protoimpl.UnknownFields
|
|
265
|
+
|
|
266
|
+
Account *PreviewAccount `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
func (x *GetPreviewAccountByIdResponse) Reset() {
|
|
270
|
+
*x = GetPreviewAccountByIdResponse{}
|
|
271
|
+
if protoimpl.UnsafeEnabled {
|
|
272
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[2]
|
|
273
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
274
|
+
ms.StoreMessageInfo(mi)
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
func (x *GetPreviewAccountByIdResponse) String() string {
|
|
279
|
+
return protoimpl.X.MessageStringOf(x)
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
func (*GetPreviewAccountByIdResponse) ProtoMessage() {}
|
|
283
|
+
|
|
284
|
+
func (x *GetPreviewAccountByIdResponse) ProtoReflect() protoreflect.Message {
|
|
285
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[2]
|
|
286
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
287
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
288
|
+
if ms.LoadMessageInfo() == nil {
|
|
289
|
+
ms.StoreMessageInfo(mi)
|
|
290
|
+
}
|
|
291
|
+
return ms
|
|
292
|
+
}
|
|
293
|
+
return mi.MessageOf(x)
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// Deprecated: Use GetPreviewAccountByIdResponse.ProtoReflect.Descriptor instead.
|
|
297
|
+
func (*GetPreviewAccountByIdResponse) Descriptor() ([]byte, []int) {
|
|
298
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{2}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
func (x *GetPreviewAccountByIdResponse) GetAccount() *PreviewAccount {
|
|
302
|
+
if x != nil {
|
|
303
|
+
return x.Account
|
|
304
|
+
}
|
|
305
|
+
return nil
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
type PreviewSite struct {
|
|
309
|
+
state protoimpl.MessageState
|
|
310
|
+
sizeCache protoimpl.SizeCache
|
|
311
|
+
unknownFields protoimpl.UnknownFields
|
|
312
|
+
|
|
313
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
314
|
+
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
315
|
+
CompanyName string `protobuf:"bytes,3,opt,name=company_name,json=companyName,proto3" json:"company_name,omitempty"`
|
|
316
|
+
LogoUrl string `protobuf:"bytes,4,opt,name=logo_url,json=logoUrl,proto3" json:"logo_url,omitempty"`
|
|
317
|
+
Mode SiteMode `protobuf:"varint,5,opt,name=mode,proto3,enum=lansweeper.multitenant.v1.SiteMode" json:"mode,omitempty"`
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
func (x *PreviewSite) Reset() {
|
|
321
|
+
*x = PreviewSite{}
|
|
322
|
+
if protoimpl.UnsafeEnabled {
|
|
323
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[3]
|
|
324
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
325
|
+
ms.StoreMessageInfo(mi)
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
func (x *PreviewSite) String() string {
|
|
330
|
+
return protoimpl.X.MessageStringOf(x)
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
func (*PreviewSite) ProtoMessage() {}
|
|
334
|
+
|
|
335
|
+
func (x *PreviewSite) ProtoReflect() protoreflect.Message {
|
|
336
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[3]
|
|
337
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
338
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
339
|
+
if ms.LoadMessageInfo() == nil {
|
|
340
|
+
ms.StoreMessageInfo(mi)
|
|
341
|
+
}
|
|
342
|
+
return ms
|
|
343
|
+
}
|
|
344
|
+
return mi.MessageOf(x)
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// Deprecated: Use PreviewSite.ProtoReflect.Descriptor instead.
|
|
348
|
+
func (*PreviewSite) Descriptor() ([]byte, []int) {
|
|
349
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{3}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
func (x *PreviewSite) GetId() string {
|
|
353
|
+
if x != nil {
|
|
354
|
+
return x.Id
|
|
355
|
+
}
|
|
356
|
+
return ""
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
func (x *PreviewSite) GetName() string {
|
|
360
|
+
if x != nil {
|
|
361
|
+
return x.Name
|
|
362
|
+
}
|
|
363
|
+
return ""
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
func (x *PreviewSite) GetCompanyName() string {
|
|
367
|
+
if x != nil {
|
|
368
|
+
return x.CompanyName
|
|
369
|
+
}
|
|
370
|
+
return ""
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
func (x *PreviewSite) GetLogoUrl() string {
|
|
374
|
+
if x != nil {
|
|
375
|
+
return x.LogoUrl
|
|
376
|
+
}
|
|
377
|
+
return ""
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
func (x *PreviewSite) GetMode() SiteMode {
|
|
381
|
+
if x != nil {
|
|
382
|
+
return x.Mode
|
|
383
|
+
}
|
|
384
|
+
return SiteMode_UNESPECIFIED
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
type PatchSiteModeRequest struct {
|
|
388
|
+
state protoimpl.MessageState
|
|
389
|
+
sizeCache protoimpl.SizeCache
|
|
390
|
+
unknownFields protoimpl.UnknownFields
|
|
391
|
+
|
|
392
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
393
|
+
Mode SiteMode `protobuf:"varint,2,opt,name=mode,proto3,enum=lansweeper.multitenant.v1.SiteMode" json:"mode,omitempty"`
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
func (x *PatchSiteModeRequest) Reset() {
|
|
397
|
+
*x = PatchSiteModeRequest{}
|
|
398
|
+
if protoimpl.UnsafeEnabled {
|
|
399
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[4]
|
|
400
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
401
|
+
ms.StoreMessageInfo(mi)
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
func (x *PatchSiteModeRequest) String() string {
|
|
406
|
+
return protoimpl.X.MessageStringOf(x)
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
func (*PatchSiteModeRequest) ProtoMessage() {}
|
|
410
|
+
|
|
411
|
+
func (x *PatchSiteModeRequest) ProtoReflect() protoreflect.Message {
|
|
412
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[4]
|
|
413
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
414
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
415
|
+
if ms.LoadMessageInfo() == nil {
|
|
416
|
+
ms.StoreMessageInfo(mi)
|
|
417
|
+
}
|
|
418
|
+
return ms
|
|
419
|
+
}
|
|
420
|
+
return mi.MessageOf(x)
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
// Deprecated: Use PatchSiteModeRequest.ProtoReflect.Descriptor instead.
|
|
424
|
+
func (*PatchSiteModeRequest) Descriptor() ([]byte, []int) {
|
|
425
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{4}
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
func (x *PatchSiteModeRequest) GetId() string {
|
|
429
|
+
if x != nil {
|
|
430
|
+
return x.Id
|
|
431
|
+
}
|
|
432
|
+
return ""
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
func (x *PatchSiteModeRequest) GetMode() SiteMode {
|
|
436
|
+
if x != nil {
|
|
437
|
+
return x.Mode
|
|
438
|
+
}
|
|
439
|
+
return SiteMode_UNESPECIFIED
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
type PatchSiteModeResponse struct {
|
|
443
|
+
state protoimpl.MessageState
|
|
444
|
+
sizeCache protoimpl.SizeCache
|
|
445
|
+
unknownFields protoimpl.UnknownFields
|
|
446
|
+
|
|
447
|
+
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
func (x *PatchSiteModeResponse) Reset() {
|
|
451
|
+
*x = PatchSiteModeResponse{}
|
|
452
|
+
if protoimpl.UnsafeEnabled {
|
|
453
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[5]
|
|
454
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
455
|
+
ms.StoreMessageInfo(mi)
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
func (x *PatchSiteModeResponse) String() string {
|
|
460
|
+
return protoimpl.X.MessageStringOf(x)
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
func (*PatchSiteModeResponse) ProtoMessage() {}
|
|
464
|
+
|
|
465
|
+
func (x *PatchSiteModeResponse) ProtoReflect() protoreflect.Message {
|
|
466
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[5]
|
|
467
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
468
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
469
|
+
if ms.LoadMessageInfo() == nil {
|
|
470
|
+
ms.StoreMessageInfo(mi)
|
|
471
|
+
}
|
|
472
|
+
return ms
|
|
473
|
+
}
|
|
474
|
+
return mi.MessageOf(x)
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// Deprecated: Use PatchSiteModeResponse.ProtoReflect.Descriptor instead.
|
|
478
|
+
func (*PatchSiteModeResponse) Descriptor() ([]byte, []int) {
|
|
479
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{5}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
func (x *PatchSiteModeResponse) GetSuccess() bool {
|
|
483
|
+
if x != nil {
|
|
484
|
+
return x.Success
|
|
485
|
+
}
|
|
486
|
+
return false
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
type Profile struct {
|
|
490
|
+
state protoimpl.MessageState
|
|
491
|
+
sizeCache protoimpl.SizeCache
|
|
492
|
+
unknownFields protoimpl.UnknownFields
|
|
493
|
+
|
|
494
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
495
|
+
SiteId string `protobuf:"bytes,2,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
496
|
+
Site *PreviewSite `protobuf:"bytes,3,opt,name=site,proto3" json:"site,omitempty"`
|
|
497
|
+
IsOwner bool `protobuf:"varint,4,opt,name=is_owner,json=isOwner,proto3" json:"is_owner,omitempty"`
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
func (x *Profile) Reset() {
|
|
501
|
+
*x = Profile{}
|
|
502
|
+
if protoimpl.UnsafeEnabled {
|
|
503
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[6]
|
|
504
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
505
|
+
ms.StoreMessageInfo(mi)
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
func (x *Profile) String() string {
|
|
510
|
+
return protoimpl.X.MessageStringOf(x)
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
func (*Profile) ProtoMessage() {}
|
|
514
|
+
|
|
515
|
+
func (x *Profile) ProtoReflect() protoreflect.Message {
|
|
516
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[6]
|
|
517
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
518
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
519
|
+
if ms.LoadMessageInfo() == nil {
|
|
520
|
+
ms.StoreMessageInfo(mi)
|
|
521
|
+
}
|
|
522
|
+
return ms
|
|
523
|
+
}
|
|
524
|
+
return mi.MessageOf(x)
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
// Deprecated: Use Profile.ProtoReflect.Descriptor instead.
|
|
528
|
+
func (*Profile) Descriptor() ([]byte, []int) {
|
|
529
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{6}
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
func (x *Profile) GetId() string {
|
|
533
|
+
if x != nil {
|
|
534
|
+
return x.Id
|
|
535
|
+
}
|
|
536
|
+
return ""
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
func (x *Profile) GetSiteId() string {
|
|
540
|
+
if x != nil {
|
|
541
|
+
return x.SiteId
|
|
542
|
+
}
|
|
543
|
+
return ""
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
func (x *Profile) GetSite() *PreviewSite {
|
|
547
|
+
if x != nil {
|
|
548
|
+
return x.Site
|
|
549
|
+
}
|
|
550
|
+
return nil
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
func (x *Profile) GetIsOwner() bool {
|
|
554
|
+
if x != nil {
|
|
555
|
+
return x.IsOwner
|
|
556
|
+
}
|
|
557
|
+
return false
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
type ListProfilesByAccountIdRequest struct {
|
|
561
|
+
state protoimpl.MessageState
|
|
562
|
+
sizeCache protoimpl.SizeCache
|
|
563
|
+
unknownFields protoimpl.UnknownFields
|
|
564
|
+
|
|
565
|
+
AccountId string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
|
566
|
+
IncludeBlocks bool `protobuf:"varint,2,opt,name=include_blocks,json=includeBlocks,proto3" json:"include_blocks,omitempty"`
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
func (x *ListProfilesByAccountIdRequest) Reset() {
|
|
570
|
+
*x = ListProfilesByAccountIdRequest{}
|
|
571
|
+
if protoimpl.UnsafeEnabled {
|
|
572
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[7]
|
|
573
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
574
|
+
ms.StoreMessageInfo(mi)
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
func (x *ListProfilesByAccountIdRequest) String() string {
|
|
579
|
+
return protoimpl.X.MessageStringOf(x)
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
func (*ListProfilesByAccountIdRequest) ProtoMessage() {}
|
|
583
|
+
|
|
584
|
+
func (x *ListProfilesByAccountIdRequest) ProtoReflect() protoreflect.Message {
|
|
585
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[7]
|
|
586
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
587
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
588
|
+
if ms.LoadMessageInfo() == nil {
|
|
589
|
+
ms.StoreMessageInfo(mi)
|
|
590
|
+
}
|
|
591
|
+
return ms
|
|
592
|
+
}
|
|
593
|
+
return mi.MessageOf(x)
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
// Deprecated: Use ListProfilesByAccountIdRequest.ProtoReflect.Descriptor instead.
|
|
597
|
+
func (*ListProfilesByAccountIdRequest) Descriptor() ([]byte, []int) {
|
|
598
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{7}
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
func (x *ListProfilesByAccountIdRequest) GetAccountId() string {
|
|
602
|
+
if x != nil {
|
|
603
|
+
return x.AccountId
|
|
604
|
+
}
|
|
605
|
+
return ""
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
func (x *ListProfilesByAccountIdRequest) GetIncludeBlocks() bool {
|
|
609
|
+
if x != nil {
|
|
610
|
+
return x.IncludeBlocks
|
|
611
|
+
}
|
|
612
|
+
return false
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
type ListProfilesByAccountIdResponse struct {
|
|
616
|
+
state protoimpl.MessageState
|
|
617
|
+
sizeCache protoimpl.SizeCache
|
|
618
|
+
unknownFields protoimpl.UnknownFields
|
|
619
|
+
|
|
620
|
+
Profile []*Profile `protobuf:"bytes,1,rep,name=profile,proto3" json:"profile,omitempty"`
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
func (x *ListProfilesByAccountIdResponse) Reset() {
|
|
624
|
+
*x = ListProfilesByAccountIdResponse{}
|
|
625
|
+
if protoimpl.UnsafeEnabled {
|
|
626
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[8]
|
|
627
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
628
|
+
ms.StoreMessageInfo(mi)
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
func (x *ListProfilesByAccountIdResponse) String() string {
|
|
633
|
+
return protoimpl.X.MessageStringOf(x)
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
func (*ListProfilesByAccountIdResponse) ProtoMessage() {}
|
|
637
|
+
|
|
638
|
+
func (x *ListProfilesByAccountIdResponse) ProtoReflect() protoreflect.Message {
|
|
639
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[8]
|
|
640
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
641
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
642
|
+
if ms.LoadMessageInfo() == nil {
|
|
643
|
+
ms.StoreMessageInfo(mi)
|
|
644
|
+
}
|
|
645
|
+
return ms
|
|
646
|
+
}
|
|
647
|
+
return mi.MessageOf(x)
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
// Deprecated: Use ListProfilesByAccountIdResponse.ProtoReflect.Descriptor instead.
|
|
651
|
+
func (*ListProfilesByAccountIdResponse) Descriptor() ([]byte, []int) {
|
|
652
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{8}
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
func (x *ListProfilesByAccountIdResponse) GetProfile() []*Profile {
|
|
656
|
+
if x != nil {
|
|
657
|
+
return x.Profile
|
|
658
|
+
}
|
|
659
|
+
return nil
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
type ListAuthorizedLinkProfilesRequest struct {
|
|
663
|
+
state protoimpl.MessageState
|
|
664
|
+
sizeCache protoimpl.SizeCache
|
|
665
|
+
unknownFields protoimpl.UnknownFields
|
|
666
|
+
|
|
667
|
+
AccountId string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
|
668
|
+
// Deprecated: Do not use.
|
|
669
|
+
IncludeBlocks bool `protobuf:"varint,2,opt,name=include_blocks,json=includeBlocks,proto3" json:"include_blocks,omitempty"`
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
func (x *ListAuthorizedLinkProfilesRequest) Reset() {
|
|
673
|
+
*x = ListAuthorizedLinkProfilesRequest{}
|
|
674
|
+
if protoimpl.UnsafeEnabled {
|
|
675
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[9]
|
|
676
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
677
|
+
ms.StoreMessageInfo(mi)
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
func (x *ListAuthorizedLinkProfilesRequest) String() string {
|
|
682
|
+
return protoimpl.X.MessageStringOf(x)
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
func (*ListAuthorizedLinkProfilesRequest) ProtoMessage() {}
|
|
686
|
+
|
|
687
|
+
func (x *ListAuthorizedLinkProfilesRequest) ProtoReflect() protoreflect.Message {
|
|
688
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[9]
|
|
689
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
690
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
691
|
+
if ms.LoadMessageInfo() == nil {
|
|
692
|
+
ms.StoreMessageInfo(mi)
|
|
693
|
+
}
|
|
694
|
+
return ms
|
|
695
|
+
}
|
|
696
|
+
return mi.MessageOf(x)
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
// Deprecated: Use ListAuthorizedLinkProfilesRequest.ProtoReflect.Descriptor instead.
|
|
700
|
+
func (*ListAuthorizedLinkProfilesRequest) Descriptor() ([]byte, []int) {
|
|
701
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{9}
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
func (x *ListAuthorizedLinkProfilesRequest) GetAccountId() string {
|
|
705
|
+
if x != nil {
|
|
706
|
+
return x.AccountId
|
|
707
|
+
}
|
|
708
|
+
return ""
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
// Deprecated: Do not use.
|
|
712
|
+
func (x *ListAuthorizedLinkProfilesRequest) GetIncludeBlocks() bool {
|
|
713
|
+
if x != nil {
|
|
714
|
+
return x.IncludeBlocks
|
|
715
|
+
}
|
|
716
|
+
return false
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
type ListAuthorizedLinkProfilesResponse struct {
|
|
720
|
+
state protoimpl.MessageState
|
|
721
|
+
sizeCache protoimpl.SizeCache
|
|
722
|
+
unknownFields protoimpl.UnknownFields
|
|
723
|
+
|
|
724
|
+
Profile []*Profile `protobuf:"bytes,1,rep,name=profile,proto3" json:"profile,omitempty"`
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
func (x *ListAuthorizedLinkProfilesResponse) Reset() {
|
|
728
|
+
*x = ListAuthorizedLinkProfilesResponse{}
|
|
729
|
+
if protoimpl.UnsafeEnabled {
|
|
730
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[10]
|
|
731
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
732
|
+
ms.StoreMessageInfo(mi)
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
func (x *ListAuthorizedLinkProfilesResponse) String() string {
|
|
737
|
+
return protoimpl.X.MessageStringOf(x)
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
func (*ListAuthorizedLinkProfilesResponse) ProtoMessage() {}
|
|
741
|
+
|
|
742
|
+
func (x *ListAuthorizedLinkProfilesResponse) ProtoReflect() protoreflect.Message {
|
|
743
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[10]
|
|
744
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
745
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
746
|
+
if ms.LoadMessageInfo() == nil {
|
|
747
|
+
ms.StoreMessageInfo(mi)
|
|
748
|
+
}
|
|
749
|
+
return ms
|
|
750
|
+
}
|
|
751
|
+
return mi.MessageOf(x)
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
// Deprecated: Use ListAuthorizedLinkProfilesResponse.ProtoReflect.Descriptor instead.
|
|
755
|
+
func (*ListAuthorizedLinkProfilesResponse) Descriptor() ([]byte, []int) {
|
|
756
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{10}
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
func (x *ListAuthorizedLinkProfilesResponse) GetProfile() []*Profile {
|
|
760
|
+
if x != nil {
|
|
761
|
+
return x.Profile
|
|
762
|
+
}
|
|
763
|
+
return nil
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
type CheckAccessToSiteByAccountIdRequest struct {
|
|
767
|
+
state protoimpl.MessageState
|
|
768
|
+
sizeCache protoimpl.SizeCache
|
|
769
|
+
unknownFields protoimpl.UnknownFields
|
|
770
|
+
|
|
771
|
+
AccountId string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
|
772
|
+
SiteId string `protobuf:"bytes,2,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
773
|
+
OnlyOwner bool `protobuf:"varint,3,opt,name=only_owner,json=onlyOwner,proto3" json:"only_owner,omitempty"`
|
|
774
|
+
UserInfo *CheckAccessToSiteByAccountIdRequest_UserInfo `protobuf:"bytes,4,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
func (x *CheckAccessToSiteByAccountIdRequest) Reset() {
|
|
778
|
+
*x = CheckAccessToSiteByAccountIdRequest{}
|
|
779
|
+
if protoimpl.UnsafeEnabled {
|
|
780
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[11]
|
|
781
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
782
|
+
ms.StoreMessageInfo(mi)
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
func (x *CheckAccessToSiteByAccountIdRequest) String() string {
|
|
787
|
+
return protoimpl.X.MessageStringOf(x)
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
func (*CheckAccessToSiteByAccountIdRequest) ProtoMessage() {}
|
|
791
|
+
|
|
792
|
+
func (x *CheckAccessToSiteByAccountIdRequest) ProtoReflect() protoreflect.Message {
|
|
793
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[11]
|
|
794
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
795
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
796
|
+
if ms.LoadMessageInfo() == nil {
|
|
797
|
+
ms.StoreMessageInfo(mi)
|
|
798
|
+
}
|
|
799
|
+
return ms
|
|
800
|
+
}
|
|
801
|
+
return mi.MessageOf(x)
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
// Deprecated: Use CheckAccessToSiteByAccountIdRequest.ProtoReflect.Descriptor instead.
|
|
805
|
+
func (*CheckAccessToSiteByAccountIdRequest) Descriptor() ([]byte, []int) {
|
|
806
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{11}
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
func (x *CheckAccessToSiteByAccountIdRequest) GetAccountId() string {
|
|
810
|
+
if x != nil {
|
|
811
|
+
return x.AccountId
|
|
812
|
+
}
|
|
813
|
+
return ""
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
func (x *CheckAccessToSiteByAccountIdRequest) GetSiteId() string {
|
|
817
|
+
if x != nil {
|
|
818
|
+
return x.SiteId
|
|
819
|
+
}
|
|
820
|
+
return ""
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
func (x *CheckAccessToSiteByAccountIdRequest) GetOnlyOwner() bool {
|
|
824
|
+
if x != nil {
|
|
825
|
+
return x.OnlyOwner
|
|
826
|
+
}
|
|
827
|
+
return false
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
func (x *CheckAccessToSiteByAccountIdRequest) GetUserInfo() *CheckAccessToSiteByAccountIdRequest_UserInfo {
|
|
831
|
+
if x != nil {
|
|
832
|
+
return x.UserInfo
|
|
833
|
+
}
|
|
834
|
+
return nil
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
type CheckAccessToSiteByAccountIdResponse struct {
|
|
838
|
+
state protoimpl.MessageState
|
|
839
|
+
sizeCache protoimpl.SizeCache
|
|
840
|
+
unknownFields protoimpl.UnknownFields
|
|
841
|
+
|
|
842
|
+
Access bool `protobuf:"varint,1,opt,name=access,proto3" json:"access,omitempty"`
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
func (x *CheckAccessToSiteByAccountIdResponse) Reset() {
|
|
846
|
+
*x = CheckAccessToSiteByAccountIdResponse{}
|
|
847
|
+
if protoimpl.UnsafeEnabled {
|
|
848
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[12]
|
|
849
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
850
|
+
ms.StoreMessageInfo(mi)
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
func (x *CheckAccessToSiteByAccountIdResponse) String() string {
|
|
855
|
+
return protoimpl.X.MessageStringOf(x)
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
func (*CheckAccessToSiteByAccountIdResponse) ProtoMessage() {}
|
|
859
|
+
|
|
860
|
+
func (x *CheckAccessToSiteByAccountIdResponse) ProtoReflect() protoreflect.Message {
|
|
861
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[12]
|
|
862
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
863
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
864
|
+
if ms.LoadMessageInfo() == nil {
|
|
865
|
+
ms.StoreMessageInfo(mi)
|
|
866
|
+
}
|
|
867
|
+
return ms
|
|
868
|
+
}
|
|
869
|
+
return mi.MessageOf(x)
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// Deprecated: Use CheckAccessToSiteByAccountIdResponse.ProtoReflect.Descriptor instead.
|
|
873
|
+
func (*CheckAccessToSiteByAccountIdResponse) Descriptor() ([]byte, []int) {
|
|
874
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{12}
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
func (x *CheckAccessToSiteByAccountIdResponse) GetAccess() bool {
|
|
878
|
+
if x != nil {
|
|
879
|
+
return x.Access
|
|
880
|
+
}
|
|
881
|
+
return false
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
type Install struct {
|
|
885
|
+
state protoimpl.MessageState
|
|
886
|
+
sizeCache protoimpl.SizeCache
|
|
887
|
+
unknownFields protoimpl.UnknownFields
|
|
888
|
+
|
|
889
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
890
|
+
GlobalId string `protobuf:"bytes,8,opt,name=global_id,json=globalId,proto3" json:"global_id,omitempty"`
|
|
891
|
+
SiteId string `protobuf:"bytes,2,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
892
|
+
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
893
|
+
Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
|
|
894
|
+
Status string `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
|
|
895
|
+
Fqdn string `protobuf:"bytes,6,opt,name=fqdn,proto3" json:"fqdn,omitempty"`
|
|
896
|
+
CreatedById string `protobuf:"bytes,7,opt,name=created_by_id,json=createdById,proto3" json:"created_by_id,omitempty"`
|
|
897
|
+
State *Install_InstallState `protobuf:"bytes,9,opt,name=state,proto3" json:"state,omitempty"`
|
|
898
|
+
CreatedAt string `protobuf:"bytes,10,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
func (x *Install) Reset() {
|
|
902
|
+
*x = Install{}
|
|
903
|
+
if protoimpl.UnsafeEnabled {
|
|
904
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[13]
|
|
905
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
906
|
+
ms.StoreMessageInfo(mi)
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
func (x *Install) String() string {
|
|
911
|
+
return protoimpl.X.MessageStringOf(x)
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
func (*Install) ProtoMessage() {}
|
|
915
|
+
|
|
916
|
+
func (x *Install) ProtoReflect() protoreflect.Message {
|
|
917
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[13]
|
|
918
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
919
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
920
|
+
if ms.LoadMessageInfo() == nil {
|
|
921
|
+
ms.StoreMessageInfo(mi)
|
|
922
|
+
}
|
|
923
|
+
return ms
|
|
924
|
+
}
|
|
925
|
+
return mi.MessageOf(x)
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
// Deprecated: Use Install.ProtoReflect.Descriptor instead.
|
|
929
|
+
func (*Install) Descriptor() ([]byte, []int) {
|
|
930
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{13}
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
func (x *Install) GetId() string {
|
|
934
|
+
if x != nil {
|
|
935
|
+
return x.Id
|
|
936
|
+
}
|
|
937
|
+
return ""
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
func (x *Install) GetGlobalId() string {
|
|
941
|
+
if x != nil {
|
|
942
|
+
return x.GlobalId
|
|
943
|
+
}
|
|
944
|
+
return ""
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
func (x *Install) GetSiteId() string {
|
|
948
|
+
if x != nil {
|
|
949
|
+
return x.SiteId
|
|
950
|
+
}
|
|
951
|
+
return ""
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
func (x *Install) GetDisplayName() string {
|
|
955
|
+
if x != nil {
|
|
956
|
+
return x.DisplayName
|
|
957
|
+
}
|
|
958
|
+
return ""
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
func (x *Install) GetDescription() string {
|
|
962
|
+
if x != nil {
|
|
963
|
+
return x.Description
|
|
964
|
+
}
|
|
965
|
+
return ""
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
func (x *Install) GetStatus() string {
|
|
969
|
+
if x != nil {
|
|
970
|
+
return x.Status
|
|
971
|
+
}
|
|
972
|
+
return ""
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
func (x *Install) GetFqdn() string {
|
|
976
|
+
if x != nil {
|
|
977
|
+
return x.Fqdn
|
|
978
|
+
}
|
|
979
|
+
return ""
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
func (x *Install) GetCreatedById() string {
|
|
983
|
+
if x != nil {
|
|
984
|
+
return x.CreatedById
|
|
985
|
+
}
|
|
986
|
+
return ""
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
func (x *Install) GetState() *Install_InstallState {
|
|
990
|
+
if x != nil {
|
|
991
|
+
return x.State
|
|
992
|
+
}
|
|
993
|
+
return nil
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
func (x *Install) GetCreatedAt() string {
|
|
997
|
+
if x != nil {
|
|
998
|
+
return x.CreatedAt
|
|
999
|
+
}
|
|
1000
|
+
return ""
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
type InstallCredentials struct {
|
|
1004
|
+
state protoimpl.MessageState
|
|
1005
|
+
sizeCache protoimpl.SizeCache
|
|
1006
|
+
unknownFields protoimpl.UnknownFields
|
|
1007
|
+
|
|
1008
|
+
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
1009
|
+
ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
func (x *InstallCredentials) Reset() {
|
|
1013
|
+
*x = InstallCredentials{}
|
|
1014
|
+
if protoimpl.UnsafeEnabled {
|
|
1015
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[14]
|
|
1016
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1017
|
+
ms.StoreMessageInfo(mi)
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
func (x *InstallCredentials) String() string {
|
|
1022
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
func (*InstallCredentials) ProtoMessage() {}
|
|
1026
|
+
|
|
1027
|
+
func (x *InstallCredentials) ProtoReflect() protoreflect.Message {
|
|
1028
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[14]
|
|
1029
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1030
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1031
|
+
if ms.LoadMessageInfo() == nil {
|
|
1032
|
+
ms.StoreMessageInfo(mi)
|
|
1033
|
+
}
|
|
1034
|
+
return ms
|
|
1035
|
+
}
|
|
1036
|
+
return mi.MessageOf(x)
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
// Deprecated: Use InstallCredentials.ProtoReflect.Descriptor instead.
|
|
1040
|
+
func (*InstallCredentials) Descriptor() ([]byte, []int) {
|
|
1041
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{14}
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
func (x *InstallCredentials) GetClientId() string {
|
|
1045
|
+
if x != nil {
|
|
1046
|
+
return x.ClientId
|
|
1047
|
+
}
|
|
1048
|
+
return ""
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
func (x *InstallCredentials) GetClientSecret() string {
|
|
1052
|
+
if x != nil {
|
|
1053
|
+
return x.ClientSecret
|
|
1054
|
+
}
|
|
1055
|
+
return ""
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
type GetInstallsCountBySiteRequest struct {
|
|
1059
|
+
state protoimpl.MessageState
|
|
1060
|
+
sizeCache protoimpl.SizeCache
|
|
1061
|
+
unknownFields protoimpl.UnknownFields
|
|
1062
|
+
|
|
1063
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
func (x *GetInstallsCountBySiteRequest) Reset() {
|
|
1067
|
+
*x = GetInstallsCountBySiteRequest{}
|
|
1068
|
+
if protoimpl.UnsafeEnabled {
|
|
1069
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[15]
|
|
1070
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1071
|
+
ms.StoreMessageInfo(mi)
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
func (x *GetInstallsCountBySiteRequest) String() string {
|
|
1076
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
func (*GetInstallsCountBySiteRequest) ProtoMessage() {}
|
|
1080
|
+
|
|
1081
|
+
func (x *GetInstallsCountBySiteRequest) ProtoReflect() protoreflect.Message {
|
|
1082
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[15]
|
|
1083
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1084
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1085
|
+
if ms.LoadMessageInfo() == nil {
|
|
1086
|
+
ms.StoreMessageInfo(mi)
|
|
1087
|
+
}
|
|
1088
|
+
return ms
|
|
1089
|
+
}
|
|
1090
|
+
return mi.MessageOf(x)
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
// Deprecated: Use GetInstallsCountBySiteRequest.ProtoReflect.Descriptor instead.
|
|
1094
|
+
func (*GetInstallsCountBySiteRequest) Descriptor() ([]byte, []int) {
|
|
1095
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{15}
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
func (x *GetInstallsCountBySiteRequest) GetSiteId() string {
|
|
1099
|
+
if x != nil {
|
|
1100
|
+
return x.SiteId
|
|
1101
|
+
}
|
|
1102
|
+
return ""
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
type GetInstallsCountResponse struct {
|
|
1106
|
+
state protoimpl.MessageState
|
|
1107
|
+
sizeCache protoimpl.SizeCache
|
|
1108
|
+
unknownFields protoimpl.UnknownFields
|
|
1109
|
+
|
|
1110
|
+
Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
func (x *GetInstallsCountResponse) Reset() {
|
|
1114
|
+
*x = GetInstallsCountResponse{}
|
|
1115
|
+
if protoimpl.UnsafeEnabled {
|
|
1116
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[16]
|
|
1117
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1118
|
+
ms.StoreMessageInfo(mi)
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
func (x *GetInstallsCountResponse) String() string {
|
|
1123
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
func (*GetInstallsCountResponse) ProtoMessage() {}
|
|
1127
|
+
|
|
1128
|
+
func (x *GetInstallsCountResponse) ProtoReflect() protoreflect.Message {
|
|
1129
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[16]
|
|
1130
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1131
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1132
|
+
if ms.LoadMessageInfo() == nil {
|
|
1133
|
+
ms.StoreMessageInfo(mi)
|
|
1134
|
+
}
|
|
1135
|
+
return ms
|
|
1136
|
+
}
|
|
1137
|
+
return mi.MessageOf(x)
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
// Deprecated: Use GetInstallsCountResponse.ProtoReflect.Descriptor instead.
|
|
1141
|
+
func (*GetInstallsCountResponse) Descriptor() ([]byte, []int) {
|
|
1142
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{16}
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
func (x *GetInstallsCountResponse) GetCount() int64 {
|
|
1146
|
+
if x != nil {
|
|
1147
|
+
return x.Count
|
|
1148
|
+
}
|
|
1149
|
+
return 0
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
type GetInstallsBySiteRequest struct {
|
|
1153
|
+
state protoimpl.MessageState
|
|
1154
|
+
sizeCache protoimpl.SizeCache
|
|
1155
|
+
unknownFields protoimpl.UnknownFields
|
|
1156
|
+
|
|
1157
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
1158
|
+
Filter *GetInstallsBySiteRequest_Filter `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"`
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
func (x *GetInstallsBySiteRequest) Reset() {
|
|
1162
|
+
*x = GetInstallsBySiteRequest{}
|
|
1163
|
+
if protoimpl.UnsafeEnabled {
|
|
1164
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[17]
|
|
1165
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1166
|
+
ms.StoreMessageInfo(mi)
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
func (x *GetInstallsBySiteRequest) String() string {
|
|
1171
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
func (*GetInstallsBySiteRequest) ProtoMessage() {}
|
|
1175
|
+
|
|
1176
|
+
func (x *GetInstallsBySiteRequest) ProtoReflect() protoreflect.Message {
|
|
1177
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[17]
|
|
1178
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1179
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1180
|
+
if ms.LoadMessageInfo() == nil {
|
|
1181
|
+
ms.StoreMessageInfo(mi)
|
|
1182
|
+
}
|
|
1183
|
+
return ms
|
|
1184
|
+
}
|
|
1185
|
+
return mi.MessageOf(x)
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
// Deprecated: Use GetInstallsBySiteRequest.ProtoReflect.Descriptor instead.
|
|
1189
|
+
func (*GetInstallsBySiteRequest) Descriptor() ([]byte, []int) {
|
|
1190
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{17}
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
func (x *GetInstallsBySiteRequest) GetSiteId() string {
|
|
1194
|
+
if x != nil {
|
|
1195
|
+
return x.SiteId
|
|
1196
|
+
}
|
|
1197
|
+
return ""
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
func (x *GetInstallsBySiteRequest) GetFilter() *GetInstallsBySiteRequest_Filter {
|
|
1201
|
+
if x != nil {
|
|
1202
|
+
return x.Filter
|
|
1203
|
+
}
|
|
1204
|
+
return nil
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
type GetInstallsBySiteResponse struct {
|
|
1208
|
+
state protoimpl.MessageState
|
|
1209
|
+
sizeCache protoimpl.SizeCache
|
|
1210
|
+
unknownFields protoimpl.UnknownFields
|
|
1211
|
+
|
|
1212
|
+
Install []*Install `protobuf:"bytes,1,rep,name=install,proto3" json:"install,omitempty"`
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
func (x *GetInstallsBySiteResponse) Reset() {
|
|
1216
|
+
*x = GetInstallsBySiteResponse{}
|
|
1217
|
+
if protoimpl.UnsafeEnabled {
|
|
1218
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[18]
|
|
1219
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1220
|
+
ms.StoreMessageInfo(mi)
|
|
1221
|
+
}
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
func (x *GetInstallsBySiteResponse) String() string {
|
|
1225
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
func (*GetInstallsBySiteResponse) ProtoMessage() {}
|
|
1229
|
+
|
|
1230
|
+
func (x *GetInstallsBySiteResponse) ProtoReflect() protoreflect.Message {
|
|
1231
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[18]
|
|
1232
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1233
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1234
|
+
if ms.LoadMessageInfo() == nil {
|
|
1235
|
+
ms.StoreMessageInfo(mi)
|
|
1236
|
+
}
|
|
1237
|
+
return ms
|
|
1238
|
+
}
|
|
1239
|
+
return mi.MessageOf(x)
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
// Deprecated: Use GetInstallsBySiteResponse.ProtoReflect.Descriptor instead.
|
|
1243
|
+
func (*GetInstallsBySiteResponse) Descriptor() ([]byte, []int) {
|
|
1244
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{18}
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
func (x *GetInstallsBySiteResponse) GetInstall() []*Install {
|
|
1248
|
+
if x != nil {
|
|
1249
|
+
return x.Install
|
|
1250
|
+
}
|
|
1251
|
+
return nil
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
type GetInstallbyClientIdRequest struct {
|
|
1255
|
+
state protoimpl.MessageState
|
|
1256
|
+
sizeCache protoimpl.SizeCache
|
|
1257
|
+
unknownFields protoimpl.UnknownFields
|
|
1258
|
+
|
|
1259
|
+
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
func (x *GetInstallbyClientIdRequest) Reset() {
|
|
1263
|
+
*x = GetInstallbyClientIdRequest{}
|
|
1264
|
+
if protoimpl.UnsafeEnabled {
|
|
1265
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[19]
|
|
1266
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1267
|
+
ms.StoreMessageInfo(mi)
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
func (x *GetInstallbyClientIdRequest) String() string {
|
|
1272
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
func (*GetInstallbyClientIdRequest) ProtoMessage() {}
|
|
1276
|
+
|
|
1277
|
+
func (x *GetInstallbyClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
1278
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[19]
|
|
1279
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1280
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1281
|
+
if ms.LoadMessageInfo() == nil {
|
|
1282
|
+
ms.StoreMessageInfo(mi)
|
|
1283
|
+
}
|
|
1284
|
+
return ms
|
|
1285
|
+
}
|
|
1286
|
+
return mi.MessageOf(x)
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
// Deprecated: Use GetInstallbyClientIdRequest.ProtoReflect.Descriptor instead.
|
|
1290
|
+
func (*GetInstallbyClientIdRequest) Descriptor() ([]byte, []int) {
|
|
1291
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{19}
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
func (x *GetInstallbyClientIdRequest) GetClientId() string {
|
|
1295
|
+
if x != nil {
|
|
1296
|
+
return x.ClientId
|
|
1297
|
+
}
|
|
1298
|
+
return ""
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
type GetInstallbyClientIdResponse struct {
|
|
1302
|
+
state protoimpl.MessageState
|
|
1303
|
+
sizeCache protoimpl.SizeCache
|
|
1304
|
+
unknownFields protoimpl.UnknownFields
|
|
1305
|
+
|
|
1306
|
+
Install *Install `protobuf:"bytes,1,opt,name=install,proto3" json:"install,omitempty"`
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
func (x *GetInstallbyClientIdResponse) Reset() {
|
|
1310
|
+
*x = GetInstallbyClientIdResponse{}
|
|
1311
|
+
if protoimpl.UnsafeEnabled {
|
|
1312
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[20]
|
|
1313
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1314
|
+
ms.StoreMessageInfo(mi)
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
func (x *GetInstallbyClientIdResponse) String() string {
|
|
1319
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
func (*GetInstallbyClientIdResponse) ProtoMessage() {}
|
|
1323
|
+
|
|
1324
|
+
func (x *GetInstallbyClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
1325
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[20]
|
|
1326
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1327
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1328
|
+
if ms.LoadMessageInfo() == nil {
|
|
1329
|
+
ms.StoreMessageInfo(mi)
|
|
1330
|
+
}
|
|
1331
|
+
return ms
|
|
1332
|
+
}
|
|
1333
|
+
return mi.MessageOf(x)
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
// Deprecated: Use GetInstallbyClientIdResponse.ProtoReflect.Descriptor instead.
|
|
1337
|
+
func (*GetInstallbyClientIdResponse) Descriptor() ([]byte, []int) {
|
|
1338
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{20}
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
func (x *GetInstallbyClientIdResponse) GetInstall() *Install {
|
|
1342
|
+
if x != nil {
|
|
1343
|
+
return x.Install
|
|
1344
|
+
}
|
|
1345
|
+
return nil
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
type CreateInstallRequest struct {
|
|
1349
|
+
state protoimpl.MessageState
|
|
1350
|
+
sizeCache protoimpl.SizeCache
|
|
1351
|
+
unknownFields protoimpl.UnknownFields
|
|
1352
|
+
|
|
1353
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
1354
|
+
GlobalId string `protobuf:"bytes,9,opt,name=global_id,json=globalId,proto3" json:"global_id,omitempty"`
|
|
1355
|
+
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
1356
|
+
Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
|
|
1357
|
+
Status string `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
|
|
1358
|
+
Fqdn string `protobuf:"bytes,6,opt,name=fqdn,proto3" json:"fqdn,omitempty"`
|
|
1359
|
+
CreatedById string `protobuf:"bytes,7,opt,name=created_by_id,json=createdById,proto3" json:"created_by_id,omitempty"`
|
|
1360
|
+
CreateSqsQueue bool `protobuf:"varint,8,opt,name=create_sqs_queue,json=createSqsQueue,proto3" json:"create_sqs_queue,omitempty"`
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
func (x *CreateInstallRequest) Reset() {
|
|
1364
|
+
*x = CreateInstallRequest{}
|
|
1365
|
+
if protoimpl.UnsafeEnabled {
|
|
1366
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[21]
|
|
1367
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1368
|
+
ms.StoreMessageInfo(mi)
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
func (x *CreateInstallRequest) String() string {
|
|
1373
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
func (*CreateInstallRequest) ProtoMessage() {}
|
|
1377
|
+
|
|
1378
|
+
func (x *CreateInstallRequest) ProtoReflect() protoreflect.Message {
|
|
1379
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[21]
|
|
1380
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1381
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1382
|
+
if ms.LoadMessageInfo() == nil {
|
|
1383
|
+
ms.StoreMessageInfo(mi)
|
|
1384
|
+
}
|
|
1385
|
+
return ms
|
|
1386
|
+
}
|
|
1387
|
+
return mi.MessageOf(x)
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
// Deprecated: Use CreateInstallRequest.ProtoReflect.Descriptor instead.
|
|
1391
|
+
func (*CreateInstallRequest) Descriptor() ([]byte, []int) {
|
|
1392
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{21}
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
func (x *CreateInstallRequest) GetSiteId() string {
|
|
1396
|
+
if x != nil {
|
|
1397
|
+
return x.SiteId
|
|
1398
|
+
}
|
|
1399
|
+
return ""
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
func (x *CreateInstallRequest) GetGlobalId() string {
|
|
1403
|
+
if x != nil {
|
|
1404
|
+
return x.GlobalId
|
|
1405
|
+
}
|
|
1406
|
+
return ""
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
func (x *CreateInstallRequest) GetDisplayName() string {
|
|
1410
|
+
if x != nil {
|
|
1411
|
+
return x.DisplayName
|
|
1412
|
+
}
|
|
1413
|
+
return ""
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
func (x *CreateInstallRequest) GetDescription() string {
|
|
1417
|
+
if x != nil {
|
|
1418
|
+
return x.Description
|
|
1419
|
+
}
|
|
1420
|
+
return ""
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
func (x *CreateInstallRequest) GetStatus() string {
|
|
1424
|
+
if x != nil {
|
|
1425
|
+
return x.Status
|
|
1426
|
+
}
|
|
1427
|
+
return ""
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
func (x *CreateInstallRequest) GetFqdn() string {
|
|
1431
|
+
if x != nil {
|
|
1432
|
+
return x.Fqdn
|
|
1433
|
+
}
|
|
1434
|
+
return ""
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
func (x *CreateInstallRequest) GetCreatedById() string {
|
|
1438
|
+
if x != nil {
|
|
1439
|
+
return x.CreatedById
|
|
1440
|
+
}
|
|
1441
|
+
return ""
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
func (x *CreateInstallRequest) GetCreateSqsQueue() bool {
|
|
1445
|
+
if x != nil {
|
|
1446
|
+
return x.CreateSqsQueue
|
|
1447
|
+
}
|
|
1448
|
+
return false
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
type CreateInstallResponse struct {
|
|
1452
|
+
state protoimpl.MessageState
|
|
1453
|
+
sizeCache protoimpl.SizeCache
|
|
1454
|
+
unknownFields protoimpl.UnknownFields
|
|
1455
|
+
|
|
1456
|
+
Install *Install `protobuf:"bytes,1,opt,name=install,proto3" json:"install,omitempty"`
|
|
1457
|
+
Credentials *InstallCredentials `protobuf:"bytes,2,opt,name=credentials,proto3" json:"credentials,omitempty"`
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
func (x *CreateInstallResponse) Reset() {
|
|
1461
|
+
*x = CreateInstallResponse{}
|
|
1462
|
+
if protoimpl.UnsafeEnabled {
|
|
1463
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[22]
|
|
1464
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1465
|
+
ms.StoreMessageInfo(mi)
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
func (x *CreateInstallResponse) String() string {
|
|
1470
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
func (*CreateInstallResponse) ProtoMessage() {}
|
|
1474
|
+
|
|
1475
|
+
func (x *CreateInstallResponse) ProtoReflect() protoreflect.Message {
|
|
1476
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[22]
|
|
1477
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1478
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1479
|
+
if ms.LoadMessageInfo() == nil {
|
|
1480
|
+
ms.StoreMessageInfo(mi)
|
|
1481
|
+
}
|
|
1482
|
+
return ms
|
|
1483
|
+
}
|
|
1484
|
+
return mi.MessageOf(x)
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
// Deprecated: Use CreateInstallResponse.ProtoReflect.Descriptor instead.
|
|
1488
|
+
func (*CreateInstallResponse) Descriptor() ([]byte, []int) {
|
|
1489
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{22}
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
func (x *CreateInstallResponse) GetInstall() *Install {
|
|
1493
|
+
if x != nil {
|
|
1494
|
+
return x.Install
|
|
1495
|
+
}
|
|
1496
|
+
return nil
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
func (x *CreateInstallResponse) GetCredentials() *InstallCredentials {
|
|
1500
|
+
if x != nil {
|
|
1501
|
+
return x.Credentials
|
|
1502
|
+
}
|
|
1503
|
+
return nil
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
type UpdateInstallByClientIdRequest struct {
|
|
1507
|
+
state protoimpl.MessageState
|
|
1508
|
+
sizeCache protoimpl.SizeCache
|
|
1509
|
+
unknownFields protoimpl.UnknownFields
|
|
1510
|
+
|
|
1511
|
+
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
1512
|
+
DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
1513
|
+
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
|
|
1514
|
+
Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
|
|
1515
|
+
Fqdn string `protobuf:"bytes,5,opt,name=fqdn,proto3" json:"fqdn,omitempty"`
|
|
1516
|
+
SyncerSettings *UpdateInstallByClientIdRequest_SyncerSettings `protobuf:"bytes,6,opt,name=syncer_settings,json=syncerSettings,proto3" json:"syncer_settings,omitempty"`
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
func (x *UpdateInstallByClientIdRequest) Reset() {
|
|
1520
|
+
*x = UpdateInstallByClientIdRequest{}
|
|
1521
|
+
if protoimpl.UnsafeEnabled {
|
|
1522
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[23]
|
|
1523
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1524
|
+
ms.StoreMessageInfo(mi)
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
func (x *UpdateInstallByClientIdRequest) String() string {
|
|
1529
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
func (*UpdateInstallByClientIdRequest) ProtoMessage() {}
|
|
1533
|
+
|
|
1534
|
+
func (x *UpdateInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
1535
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[23]
|
|
1536
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1537
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1538
|
+
if ms.LoadMessageInfo() == nil {
|
|
1539
|
+
ms.StoreMessageInfo(mi)
|
|
1540
|
+
}
|
|
1541
|
+
return ms
|
|
1542
|
+
}
|
|
1543
|
+
return mi.MessageOf(x)
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
// Deprecated: Use UpdateInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
1547
|
+
func (*UpdateInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
1548
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{23}
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
func (x *UpdateInstallByClientIdRequest) GetClientId() string {
|
|
1552
|
+
if x != nil {
|
|
1553
|
+
return x.ClientId
|
|
1554
|
+
}
|
|
1555
|
+
return ""
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
func (x *UpdateInstallByClientIdRequest) GetDisplayName() string {
|
|
1559
|
+
if x != nil {
|
|
1560
|
+
return x.DisplayName
|
|
1561
|
+
}
|
|
1562
|
+
return ""
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
func (x *UpdateInstallByClientIdRequest) GetDescription() string {
|
|
1566
|
+
if x != nil {
|
|
1567
|
+
return x.Description
|
|
1568
|
+
}
|
|
1569
|
+
return ""
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
func (x *UpdateInstallByClientIdRequest) GetStatus() string {
|
|
1573
|
+
if x != nil {
|
|
1574
|
+
return x.Status
|
|
1575
|
+
}
|
|
1576
|
+
return ""
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
func (x *UpdateInstallByClientIdRequest) GetFqdn() string {
|
|
1580
|
+
if x != nil {
|
|
1581
|
+
return x.Fqdn
|
|
1582
|
+
}
|
|
1583
|
+
return ""
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
func (x *UpdateInstallByClientIdRequest) GetSyncerSettings() *UpdateInstallByClientIdRequest_SyncerSettings {
|
|
1587
|
+
if x != nil {
|
|
1588
|
+
return x.SyncerSettings
|
|
1589
|
+
}
|
|
1590
|
+
return nil
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
type UpdateInstallByClientIdResponse struct {
|
|
1594
|
+
state protoimpl.MessageState
|
|
1595
|
+
sizeCache protoimpl.SizeCache
|
|
1596
|
+
unknownFields protoimpl.UnknownFields
|
|
1597
|
+
|
|
1598
|
+
Install *Install `protobuf:"bytes,1,opt,name=install,proto3" json:"install,omitempty"`
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
func (x *UpdateInstallByClientIdResponse) Reset() {
|
|
1602
|
+
*x = UpdateInstallByClientIdResponse{}
|
|
1603
|
+
if protoimpl.UnsafeEnabled {
|
|
1604
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[24]
|
|
1605
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1606
|
+
ms.StoreMessageInfo(mi)
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
func (x *UpdateInstallByClientIdResponse) String() string {
|
|
1611
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
func (*UpdateInstallByClientIdResponse) ProtoMessage() {}
|
|
1615
|
+
|
|
1616
|
+
func (x *UpdateInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
1617
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[24]
|
|
1618
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1619
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1620
|
+
if ms.LoadMessageInfo() == nil {
|
|
1621
|
+
ms.StoreMessageInfo(mi)
|
|
1622
|
+
}
|
|
1623
|
+
return ms
|
|
1624
|
+
}
|
|
1625
|
+
return mi.MessageOf(x)
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
// Deprecated: Use UpdateInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
1629
|
+
func (*UpdateInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
1630
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{24}
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
func (x *UpdateInstallByClientIdResponse) GetInstall() *Install {
|
|
1634
|
+
if x != nil {
|
|
1635
|
+
return x.Install
|
|
1636
|
+
}
|
|
1637
|
+
return nil
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
type RotateInstallByClientIdRequest struct {
|
|
1641
|
+
state protoimpl.MessageState
|
|
1642
|
+
sizeCache protoimpl.SizeCache
|
|
1643
|
+
unknownFields protoimpl.UnknownFields
|
|
1644
|
+
|
|
1645
|
+
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
1646
|
+
TrackId string `protobuf:"bytes,2,opt,name=track_id,json=trackId,proto3" json:"track_id,omitempty"`
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
func (x *RotateInstallByClientIdRequest) Reset() {
|
|
1650
|
+
*x = RotateInstallByClientIdRequest{}
|
|
1651
|
+
if protoimpl.UnsafeEnabled {
|
|
1652
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[25]
|
|
1653
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1654
|
+
ms.StoreMessageInfo(mi)
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
func (x *RotateInstallByClientIdRequest) String() string {
|
|
1659
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
func (*RotateInstallByClientIdRequest) ProtoMessage() {}
|
|
1663
|
+
|
|
1664
|
+
func (x *RotateInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
1665
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[25]
|
|
1666
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1667
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1668
|
+
if ms.LoadMessageInfo() == nil {
|
|
1669
|
+
ms.StoreMessageInfo(mi)
|
|
1670
|
+
}
|
|
1671
|
+
return ms
|
|
1672
|
+
}
|
|
1673
|
+
return mi.MessageOf(x)
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
// Deprecated: Use RotateInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
1677
|
+
func (*RotateInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
1678
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{25}
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
func (x *RotateInstallByClientIdRequest) GetClientId() string {
|
|
1682
|
+
if x != nil {
|
|
1683
|
+
return x.ClientId
|
|
1684
|
+
}
|
|
1685
|
+
return ""
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
func (x *RotateInstallByClientIdRequest) GetTrackId() string {
|
|
1689
|
+
if x != nil {
|
|
1690
|
+
return x.TrackId
|
|
1691
|
+
}
|
|
1692
|
+
return ""
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
type RotateInstallByClientIdResponse struct {
|
|
1696
|
+
state protoimpl.MessageState
|
|
1697
|
+
sizeCache protoimpl.SizeCache
|
|
1698
|
+
unknownFields protoimpl.UnknownFields
|
|
1699
|
+
|
|
1700
|
+
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
|
|
1701
|
+
SiteId string `protobuf:"bytes,2,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
1702
|
+
OldInstallId string `protobuf:"bytes,3,opt,name=old_install_id,json=oldInstallId,proto3" json:"old_install_id,omitempty"`
|
|
1703
|
+
NewInstallId string `protobuf:"bytes,4,opt,name=new_install_id,json=newInstallId,proto3" json:"new_install_id,omitempty"`
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
func (x *RotateInstallByClientIdResponse) Reset() {
|
|
1707
|
+
*x = RotateInstallByClientIdResponse{}
|
|
1708
|
+
if protoimpl.UnsafeEnabled {
|
|
1709
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[26]
|
|
1710
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1711
|
+
ms.StoreMessageInfo(mi)
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
func (x *RotateInstallByClientIdResponse) String() string {
|
|
1716
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
func (*RotateInstallByClientIdResponse) ProtoMessage() {}
|
|
1720
|
+
|
|
1721
|
+
func (x *RotateInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
1722
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[26]
|
|
1723
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1724
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1725
|
+
if ms.LoadMessageInfo() == nil {
|
|
1726
|
+
ms.StoreMessageInfo(mi)
|
|
1727
|
+
}
|
|
1728
|
+
return ms
|
|
1729
|
+
}
|
|
1730
|
+
return mi.MessageOf(x)
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
// Deprecated: Use RotateInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
1734
|
+
func (*RotateInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
1735
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{26}
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
func (x *RotateInstallByClientIdResponse) GetSuccess() bool {
|
|
1739
|
+
if x != nil {
|
|
1740
|
+
return x.Success
|
|
1741
|
+
}
|
|
1742
|
+
return false
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
func (x *RotateInstallByClientIdResponse) GetSiteId() string {
|
|
1746
|
+
if x != nil {
|
|
1747
|
+
return x.SiteId
|
|
1748
|
+
}
|
|
1749
|
+
return ""
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
func (x *RotateInstallByClientIdResponse) GetOldInstallId() string {
|
|
1753
|
+
if x != nil {
|
|
1754
|
+
return x.OldInstallId
|
|
1755
|
+
}
|
|
1756
|
+
return ""
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
func (x *RotateInstallByClientIdResponse) GetNewInstallId() string {
|
|
1760
|
+
if x != nil {
|
|
1761
|
+
return x.NewInstallId
|
|
1762
|
+
}
|
|
1763
|
+
return ""
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
type UnlinkInstallByClientIdRequest struct {
|
|
1767
|
+
state protoimpl.MessageState
|
|
1768
|
+
sizeCache protoimpl.SizeCache
|
|
1769
|
+
unknownFields protoimpl.UnknownFields
|
|
1770
|
+
|
|
1771
|
+
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
1772
|
+
TrackId string `protobuf:"bytes,2,opt,name=track_id,json=trackId,proto3" json:"track_id,omitempty"`
|
|
1773
|
+
RemoveData bool `protobuf:"varint,3,opt,name=remove_data,json=removeData,proto3" json:"remove_data,omitempty"`
|
|
1774
|
+
FromOnprem bool `protobuf:"varint,4,opt,name=from_onprem,json=fromOnprem,proto3" json:"from_onprem,omitempty"`
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
func (x *UnlinkInstallByClientIdRequest) Reset() {
|
|
1778
|
+
*x = UnlinkInstallByClientIdRequest{}
|
|
1779
|
+
if protoimpl.UnsafeEnabled {
|
|
1780
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[27]
|
|
1781
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1782
|
+
ms.StoreMessageInfo(mi)
|
|
1783
|
+
}
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
func (x *UnlinkInstallByClientIdRequest) String() string {
|
|
1787
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
func (*UnlinkInstallByClientIdRequest) ProtoMessage() {}
|
|
1791
|
+
|
|
1792
|
+
func (x *UnlinkInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
1793
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[27]
|
|
1794
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1795
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1796
|
+
if ms.LoadMessageInfo() == nil {
|
|
1797
|
+
ms.StoreMessageInfo(mi)
|
|
1798
|
+
}
|
|
1799
|
+
return ms
|
|
1800
|
+
}
|
|
1801
|
+
return mi.MessageOf(x)
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
// Deprecated: Use UnlinkInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
1805
|
+
func (*UnlinkInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
1806
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{27}
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
func (x *UnlinkInstallByClientIdRequest) GetClientId() string {
|
|
1810
|
+
if x != nil {
|
|
1811
|
+
return x.ClientId
|
|
1812
|
+
}
|
|
1813
|
+
return ""
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
func (x *UnlinkInstallByClientIdRequest) GetTrackId() string {
|
|
1817
|
+
if x != nil {
|
|
1818
|
+
return x.TrackId
|
|
1819
|
+
}
|
|
1820
|
+
return ""
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
func (x *UnlinkInstallByClientIdRequest) GetRemoveData() bool {
|
|
1824
|
+
if x != nil {
|
|
1825
|
+
return x.RemoveData
|
|
1826
|
+
}
|
|
1827
|
+
return false
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
func (x *UnlinkInstallByClientIdRequest) GetFromOnprem() bool {
|
|
1831
|
+
if x != nil {
|
|
1832
|
+
return x.FromOnprem
|
|
1833
|
+
}
|
|
1834
|
+
return false
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
type UnlinkInstallByClientIdResponse struct {
|
|
1838
|
+
state protoimpl.MessageState
|
|
1839
|
+
sizeCache protoimpl.SizeCache
|
|
1840
|
+
unknownFields protoimpl.UnknownFields
|
|
1841
|
+
|
|
1842
|
+
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
func (x *UnlinkInstallByClientIdResponse) Reset() {
|
|
1846
|
+
*x = UnlinkInstallByClientIdResponse{}
|
|
1847
|
+
if protoimpl.UnsafeEnabled {
|
|
1848
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[28]
|
|
1849
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1850
|
+
ms.StoreMessageInfo(mi)
|
|
1851
|
+
}
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
func (x *UnlinkInstallByClientIdResponse) String() string {
|
|
1855
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
func (*UnlinkInstallByClientIdResponse) ProtoMessage() {}
|
|
1859
|
+
|
|
1860
|
+
func (x *UnlinkInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
1861
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[28]
|
|
1862
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1863
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1864
|
+
if ms.LoadMessageInfo() == nil {
|
|
1865
|
+
ms.StoreMessageInfo(mi)
|
|
1866
|
+
}
|
|
1867
|
+
return ms
|
|
1868
|
+
}
|
|
1869
|
+
return mi.MessageOf(x)
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
// Deprecated: Use UnlinkInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
1873
|
+
func (*UnlinkInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
1874
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{28}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
func (x *UnlinkInstallByClientIdResponse) GetSuccess() bool {
|
|
1878
|
+
if x != nil {
|
|
1879
|
+
return x.Success
|
|
1880
|
+
}
|
|
1881
|
+
return false
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
type RemoveInstallDataBySiteIdRequest struct {
|
|
1885
|
+
state protoimpl.MessageState
|
|
1886
|
+
sizeCache protoimpl.SizeCache
|
|
1887
|
+
unknownFields protoimpl.UnknownFields
|
|
1888
|
+
|
|
1889
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
1890
|
+
InstallIds []string `protobuf:"bytes,2,rep,name=install_ids,json=installIds,proto3" json:"install_ids,omitempty"`
|
|
1891
|
+
UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
func (x *RemoveInstallDataBySiteIdRequest) Reset() {
|
|
1895
|
+
*x = RemoveInstallDataBySiteIdRequest{}
|
|
1896
|
+
if protoimpl.UnsafeEnabled {
|
|
1897
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[29]
|
|
1898
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1899
|
+
ms.StoreMessageInfo(mi)
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
func (x *RemoveInstallDataBySiteIdRequest) String() string {
|
|
1904
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
func (*RemoveInstallDataBySiteIdRequest) ProtoMessage() {}
|
|
1908
|
+
|
|
1909
|
+
func (x *RemoveInstallDataBySiteIdRequest) ProtoReflect() protoreflect.Message {
|
|
1910
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[29]
|
|
1911
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1912
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1913
|
+
if ms.LoadMessageInfo() == nil {
|
|
1914
|
+
ms.StoreMessageInfo(mi)
|
|
1915
|
+
}
|
|
1916
|
+
return ms
|
|
1917
|
+
}
|
|
1918
|
+
return mi.MessageOf(x)
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
// Deprecated: Use RemoveInstallDataBySiteIdRequest.ProtoReflect.Descriptor instead.
|
|
1922
|
+
func (*RemoveInstallDataBySiteIdRequest) Descriptor() ([]byte, []int) {
|
|
1923
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{29}
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
func (x *RemoveInstallDataBySiteIdRequest) GetSiteId() string {
|
|
1927
|
+
if x != nil {
|
|
1928
|
+
return x.SiteId
|
|
1929
|
+
}
|
|
1930
|
+
return ""
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
func (x *RemoveInstallDataBySiteIdRequest) GetInstallIds() []string {
|
|
1934
|
+
if x != nil {
|
|
1935
|
+
return x.InstallIds
|
|
1936
|
+
}
|
|
1937
|
+
return nil
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
func (x *RemoveInstallDataBySiteIdRequest) GetUserId() string {
|
|
1941
|
+
if x != nil {
|
|
1942
|
+
return x.UserId
|
|
1943
|
+
}
|
|
1944
|
+
return ""
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
type RemoveInstallDataBySiteIdResponse struct {
|
|
1948
|
+
state protoimpl.MessageState
|
|
1949
|
+
sizeCache protoimpl.SizeCache
|
|
1950
|
+
unknownFields protoimpl.UnknownFields
|
|
1951
|
+
|
|
1952
|
+
Result []*RemoveInstallDataBySiteIdResponse_Result `protobuf:"bytes,1,rep,name=result,proto3" json:"result,omitempty"`
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
func (x *RemoveInstallDataBySiteIdResponse) Reset() {
|
|
1956
|
+
*x = RemoveInstallDataBySiteIdResponse{}
|
|
1957
|
+
if protoimpl.UnsafeEnabled {
|
|
1958
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[30]
|
|
1959
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1960
|
+
ms.StoreMessageInfo(mi)
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
func (x *RemoveInstallDataBySiteIdResponse) String() string {
|
|
1965
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
func (*RemoveInstallDataBySiteIdResponse) ProtoMessage() {}
|
|
1969
|
+
|
|
1970
|
+
func (x *RemoveInstallDataBySiteIdResponse) ProtoReflect() protoreflect.Message {
|
|
1971
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[30]
|
|
1972
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1973
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1974
|
+
if ms.LoadMessageInfo() == nil {
|
|
1975
|
+
ms.StoreMessageInfo(mi)
|
|
1976
|
+
}
|
|
1977
|
+
return ms
|
|
1978
|
+
}
|
|
1979
|
+
return mi.MessageOf(x)
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
// Deprecated: Use RemoveInstallDataBySiteIdResponse.ProtoReflect.Descriptor instead.
|
|
1983
|
+
func (*RemoveInstallDataBySiteIdResponse) Descriptor() ([]byte, []int) {
|
|
1984
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{30}
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
func (x *RemoveInstallDataBySiteIdResponse) GetResult() []*RemoveInstallDataBySiteIdResponse_Result {
|
|
1988
|
+
if x != nil {
|
|
1989
|
+
return x.Result
|
|
1990
|
+
}
|
|
1991
|
+
return nil
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
type GetDuplicatedInstallsByGlobalIdRequest struct {
|
|
1995
|
+
state protoimpl.MessageState
|
|
1996
|
+
sizeCache protoimpl.SizeCache
|
|
1997
|
+
unknownFields protoimpl.UnknownFields
|
|
1998
|
+
|
|
1999
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
2000
|
+
GlobalId string `protobuf:"bytes,2,opt,name=global_id,json=globalId,proto3" json:"global_id,omitempty"`
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
func (x *GetDuplicatedInstallsByGlobalIdRequest) Reset() {
|
|
2004
|
+
*x = GetDuplicatedInstallsByGlobalIdRequest{}
|
|
2005
|
+
if protoimpl.UnsafeEnabled {
|
|
2006
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[31]
|
|
2007
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2008
|
+
ms.StoreMessageInfo(mi)
|
|
2009
|
+
}
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
func (x *GetDuplicatedInstallsByGlobalIdRequest) String() string {
|
|
2013
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
func (*GetDuplicatedInstallsByGlobalIdRequest) ProtoMessage() {}
|
|
2017
|
+
|
|
2018
|
+
func (x *GetDuplicatedInstallsByGlobalIdRequest) ProtoReflect() protoreflect.Message {
|
|
2019
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[31]
|
|
2020
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2021
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2022
|
+
if ms.LoadMessageInfo() == nil {
|
|
2023
|
+
ms.StoreMessageInfo(mi)
|
|
2024
|
+
}
|
|
2025
|
+
return ms
|
|
2026
|
+
}
|
|
2027
|
+
return mi.MessageOf(x)
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
// Deprecated: Use GetDuplicatedInstallsByGlobalIdRequest.ProtoReflect.Descriptor instead.
|
|
2031
|
+
func (*GetDuplicatedInstallsByGlobalIdRequest) Descriptor() ([]byte, []int) {
|
|
2032
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{31}
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
func (x *GetDuplicatedInstallsByGlobalIdRequest) GetSiteId() string {
|
|
2036
|
+
if x != nil {
|
|
2037
|
+
return x.SiteId
|
|
2038
|
+
}
|
|
2039
|
+
return ""
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
func (x *GetDuplicatedInstallsByGlobalIdRequest) GetGlobalId() string {
|
|
2043
|
+
if x != nil {
|
|
2044
|
+
return x.GlobalId
|
|
2045
|
+
}
|
|
2046
|
+
return ""
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
type GetDuplicatedInstallsByGlobalIdResponse struct {
|
|
2050
|
+
state protoimpl.MessageState
|
|
2051
|
+
sizeCache protoimpl.SizeCache
|
|
2052
|
+
unknownFields protoimpl.UnknownFields
|
|
2053
|
+
|
|
2054
|
+
Install []*Install `protobuf:"bytes,1,rep,name=install,proto3" json:"install,omitempty"`
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
func (x *GetDuplicatedInstallsByGlobalIdResponse) Reset() {
|
|
2058
|
+
*x = GetDuplicatedInstallsByGlobalIdResponse{}
|
|
2059
|
+
if protoimpl.UnsafeEnabled {
|
|
2060
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[32]
|
|
2061
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2062
|
+
ms.StoreMessageInfo(mi)
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
func (x *GetDuplicatedInstallsByGlobalIdResponse) String() string {
|
|
2067
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
func (*GetDuplicatedInstallsByGlobalIdResponse) ProtoMessage() {}
|
|
2071
|
+
|
|
2072
|
+
func (x *GetDuplicatedInstallsByGlobalIdResponse) ProtoReflect() protoreflect.Message {
|
|
2073
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[32]
|
|
2074
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2075
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2076
|
+
if ms.LoadMessageInfo() == nil {
|
|
2077
|
+
ms.StoreMessageInfo(mi)
|
|
2078
|
+
}
|
|
2079
|
+
return ms
|
|
2080
|
+
}
|
|
2081
|
+
return mi.MessageOf(x)
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
// Deprecated: Use GetDuplicatedInstallsByGlobalIdResponse.ProtoReflect.Descriptor instead.
|
|
2085
|
+
func (*GetDuplicatedInstallsByGlobalIdResponse) Descriptor() ([]byte, []int) {
|
|
2086
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{32}
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
func (x *GetDuplicatedInstallsByGlobalIdResponse) GetInstall() []*Install {
|
|
2090
|
+
if x != nil {
|
|
2091
|
+
return x.Install
|
|
2092
|
+
}
|
|
2093
|
+
return nil
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
type GetUserPermissionsRequest struct {
|
|
2097
|
+
state protoimpl.MessageState
|
|
2098
|
+
sizeCache protoimpl.SizeCache
|
|
2099
|
+
unknownFields protoimpl.UnknownFields
|
|
2100
|
+
|
|
2101
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
2102
|
+
AccountId string `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
func (x *GetUserPermissionsRequest) Reset() {
|
|
2106
|
+
*x = GetUserPermissionsRequest{}
|
|
2107
|
+
if protoimpl.UnsafeEnabled {
|
|
2108
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[33]
|
|
2109
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2110
|
+
ms.StoreMessageInfo(mi)
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
func (x *GetUserPermissionsRequest) String() string {
|
|
2115
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
func (*GetUserPermissionsRequest) ProtoMessage() {}
|
|
2119
|
+
|
|
2120
|
+
func (x *GetUserPermissionsRequest) ProtoReflect() protoreflect.Message {
|
|
2121
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[33]
|
|
2122
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2123
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2124
|
+
if ms.LoadMessageInfo() == nil {
|
|
2125
|
+
ms.StoreMessageInfo(mi)
|
|
2126
|
+
}
|
|
2127
|
+
return ms
|
|
2128
|
+
}
|
|
2129
|
+
return mi.MessageOf(x)
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
// Deprecated: Use GetUserPermissionsRequest.ProtoReflect.Descriptor instead.
|
|
2133
|
+
func (*GetUserPermissionsRequest) Descriptor() ([]byte, []int) {
|
|
2134
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{33}
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
func (x *GetUserPermissionsRequest) GetSiteId() string {
|
|
2138
|
+
if x != nil {
|
|
2139
|
+
return x.SiteId
|
|
2140
|
+
}
|
|
2141
|
+
return ""
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
func (x *GetUserPermissionsRequest) GetAccountId() string {
|
|
2145
|
+
if x != nil {
|
|
2146
|
+
return x.AccountId
|
|
2147
|
+
}
|
|
2148
|
+
return ""
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
type GetUserPermissionsResponse struct {
|
|
2152
|
+
state protoimpl.MessageState
|
|
2153
|
+
sizeCache protoimpl.SizeCache
|
|
2154
|
+
unknownFields protoimpl.UnknownFields
|
|
2155
|
+
|
|
2156
|
+
Roles []*GetUserPermissionsResponse_Role `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
func (x *GetUserPermissionsResponse) Reset() {
|
|
2160
|
+
*x = GetUserPermissionsResponse{}
|
|
2161
|
+
if protoimpl.UnsafeEnabled {
|
|
2162
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[34]
|
|
2163
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2164
|
+
ms.StoreMessageInfo(mi)
|
|
2165
|
+
}
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
func (x *GetUserPermissionsResponse) String() string {
|
|
2169
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
func (*GetUserPermissionsResponse) ProtoMessage() {}
|
|
2173
|
+
|
|
2174
|
+
func (x *GetUserPermissionsResponse) ProtoReflect() protoreflect.Message {
|
|
2175
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[34]
|
|
2176
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2177
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2178
|
+
if ms.LoadMessageInfo() == nil {
|
|
2179
|
+
ms.StoreMessageInfo(mi)
|
|
2180
|
+
}
|
|
2181
|
+
return ms
|
|
2182
|
+
}
|
|
2183
|
+
return mi.MessageOf(x)
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
// Deprecated: Use GetUserPermissionsResponse.ProtoReflect.Descriptor instead.
|
|
2187
|
+
func (*GetUserPermissionsResponse) Descriptor() ([]byte, []int) {
|
|
2188
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{34}
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
func (x *GetUserPermissionsResponse) GetRoles() []*GetUserPermissionsResponse_Role {
|
|
2192
|
+
if x != nil {
|
|
2193
|
+
return x.Roles
|
|
2194
|
+
}
|
|
2195
|
+
return nil
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
type ValidateApplicationPersonalAccessTokenRequest struct {
|
|
2199
|
+
state protoimpl.MessageState
|
|
2200
|
+
sizeCache protoimpl.SizeCache
|
|
2201
|
+
unknownFields protoimpl.UnknownFields
|
|
2202
|
+
|
|
2203
|
+
PersonalAccessToken string `protobuf:"bytes,1,opt,name=personal_access_token,json=personalAccessToken,proto3" json:"personal_access_token,omitempty"`
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
func (x *ValidateApplicationPersonalAccessTokenRequest) Reset() {
|
|
2207
|
+
*x = ValidateApplicationPersonalAccessTokenRequest{}
|
|
2208
|
+
if protoimpl.UnsafeEnabled {
|
|
2209
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[35]
|
|
2210
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2211
|
+
ms.StoreMessageInfo(mi)
|
|
2212
|
+
}
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
func (x *ValidateApplicationPersonalAccessTokenRequest) String() string {
|
|
2216
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
func (*ValidateApplicationPersonalAccessTokenRequest) ProtoMessage() {}
|
|
2220
|
+
|
|
2221
|
+
func (x *ValidateApplicationPersonalAccessTokenRequest) ProtoReflect() protoreflect.Message {
|
|
2222
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[35]
|
|
2223
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2224
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2225
|
+
if ms.LoadMessageInfo() == nil {
|
|
2226
|
+
ms.StoreMessageInfo(mi)
|
|
2227
|
+
}
|
|
2228
|
+
return ms
|
|
2229
|
+
}
|
|
2230
|
+
return mi.MessageOf(x)
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2233
|
+
// Deprecated: Use ValidateApplicationPersonalAccessTokenRequest.ProtoReflect.Descriptor instead.
|
|
2234
|
+
func (*ValidateApplicationPersonalAccessTokenRequest) Descriptor() ([]byte, []int) {
|
|
2235
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{35}
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
func (x *ValidateApplicationPersonalAccessTokenRequest) GetPersonalAccessToken() string {
|
|
2239
|
+
if x != nil {
|
|
2240
|
+
return x.PersonalAccessToken
|
|
2241
|
+
}
|
|
2242
|
+
return ""
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
type ValidateApplicationPersonalAccessTokenResponse struct {
|
|
2246
|
+
state protoimpl.MessageState
|
|
2247
|
+
sizeCache protoimpl.SizeCache
|
|
2248
|
+
unknownFields protoimpl.UnknownFields
|
|
2249
|
+
|
|
2250
|
+
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
2251
|
+
ApplicationId string `protobuf:"bytes,2,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
func (x *ValidateApplicationPersonalAccessTokenResponse) Reset() {
|
|
2255
|
+
*x = ValidateApplicationPersonalAccessTokenResponse{}
|
|
2256
|
+
if protoimpl.UnsafeEnabled {
|
|
2257
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[36]
|
|
2258
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2259
|
+
ms.StoreMessageInfo(mi)
|
|
2260
|
+
}
|
|
2261
|
+
}
|
|
2262
|
+
|
|
2263
|
+
func (x *ValidateApplicationPersonalAccessTokenResponse) String() string {
|
|
2264
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
func (*ValidateApplicationPersonalAccessTokenResponse) ProtoMessage() {}
|
|
2268
|
+
|
|
2269
|
+
func (x *ValidateApplicationPersonalAccessTokenResponse) ProtoReflect() protoreflect.Message {
|
|
2270
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[36]
|
|
2271
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2272
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2273
|
+
if ms.LoadMessageInfo() == nil {
|
|
2274
|
+
ms.StoreMessageInfo(mi)
|
|
2275
|
+
}
|
|
2276
|
+
return ms
|
|
2277
|
+
}
|
|
2278
|
+
return mi.MessageOf(x)
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
// Deprecated: Use ValidateApplicationPersonalAccessTokenResponse.ProtoReflect.Descriptor instead.
|
|
2282
|
+
func (*ValidateApplicationPersonalAccessTokenResponse) Descriptor() ([]byte, []int) {
|
|
2283
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{36}
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
func (x *ValidateApplicationPersonalAccessTokenResponse) GetUserId() string {
|
|
2287
|
+
if x != nil {
|
|
2288
|
+
return x.UserId
|
|
2289
|
+
}
|
|
2290
|
+
return ""
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
func (x *ValidateApplicationPersonalAccessTokenResponse) GetApplicationId() string {
|
|
2294
|
+
if x != nil {
|
|
2295
|
+
return x.ApplicationId
|
|
2296
|
+
}
|
|
2297
|
+
return ""
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
type DisableWebhookEmailRequest struct {
|
|
2301
|
+
state protoimpl.MessageState
|
|
2302
|
+
sizeCache protoimpl.SizeCache
|
|
2303
|
+
unknownFields protoimpl.UnknownFields
|
|
2304
|
+
|
|
2305
|
+
ApplicationName string `protobuf:"bytes,1,opt,name=application_name,json=applicationName,proto3" json:"application_name,omitempty"`
|
|
2306
|
+
// Deprecated: Do not use.
|
|
2307
|
+
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
|
2308
|
+
Errors []*DisableWebhookEmailRequest_WebhookError `protobuf:"bytes,3,rep,name=errors,proto3" json:"errors,omitempty"`
|
|
2309
|
+
PayloadUrl string `protobuf:"bytes,4,opt,name=payload_url,json=payloadUrl,proto3" json:"payload_url,omitempty"`
|
|
2310
|
+
WebhookName string `protobuf:"bytes,5,opt,name=webhook_name,json=webhookName,proto3" json:"webhook_name,omitempty"`
|
|
2311
|
+
// Deprecated: Do not use.
|
|
2312
|
+
WebhookUrl string `protobuf:"bytes,6,opt,name=webhook_url,json=webhookUrl,proto3" json:"webhook_url,omitempty"`
|
|
2313
|
+
WebhookId string `protobuf:"bytes,7,opt,name=webhook_id,json=webhookId,proto3" json:"webhook_id,omitempty"`
|
|
2314
|
+
ApplicationId string `protobuf:"bytes,8,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2317
|
+
func (x *DisableWebhookEmailRequest) Reset() {
|
|
2318
|
+
*x = DisableWebhookEmailRequest{}
|
|
2319
|
+
if protoimpl.UnsafeEnabled {
|
|
2320
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[37]
|
|
2321
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2322
|
+
ms.StoreMessageInfo(mi)
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
func (x *DisableWebhookEmailRequest) String() string {
|
|
2327
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
func (*DisableWebhookEmailRequest) ProtoMessage() {}
|
|
2331
|
+
|
|
2332
|
+
func (x *DisableWebhookEmailRequest) ProtoReflect() protoreflect.Message {
|
|
2333
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[37]
|
|
2334
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2335
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2336
|
+
if ms.LoadMessageInfo() == nil {
|
|
2337
|
+
ms.StoreMessageInfo(mi)
|
|
2338
|
+
}
|
|
2339
|
+
return ms
|
|
2340
|
+
}
|
|
2341
|
+
return mi.MessageOf(x)
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
// Deprecated: Use DisableWebhookEmailRequest.ProtoReflect.Descriptor instead.
|
|
2345
|
+
func (*DisableWebhookEmailRequest) Descriptor() ([]byte, []int) {
|
|
2346
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{37}
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
func (x *DisableWebhookEmailRequest) GetApplicationName() string {
|
|
2350
|
+
if x != nil {
|
|
2351
|
+
return x.ApplicationName
|
|
2352
|
+
}
|
|
2353
|
+
return ""
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
// Deprecated: Do not use.
|
|
2357
|
+
func (x *DisableWebhookEmailRequest) GetEmail() string {
|
|
2358
|
+
if x != nil {
|
|
2359
|
+
return x.Email
|
|
2360
|
+
}
|
|
2361
|
+
return ""
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
func (x *DisableWebhookEmailRequest) GetErrors() []*DisableWebhookEmailRequest_WebhookError {
|
|
2365
|
+
if x != nil {
|
|
2366
|
+
return x.Errors
|
|
2367
|
+
}
|
|
2368
|
+
return nil
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
func (x *DisableWebhookEmailRequest) GetPayloadUrl() string {
|
|
2372
|
+
if x != nil {
|
|
2373
|
+
return x.PayloadUrl
|
|
2374
|
+
}
|
|
2375
|
+
return ""
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
func (x *DisableWebhookEmailRequest) GetWebhookName() string {
|
|
2379
|
+
if x != nil {
|
|
2380
|
+
return x.WebhookName
|
|
2381
|
+
}
|
|
2382
|
+
return ""
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
// Deprecated: Do not use.
|
|
2386
|
+
func (x *DisableWebhookEmailRequest) GetWebhookUrl() string {
|
|
2387
|
+
if x != nil {
|
|
2388
|
+
return x.WebhookUrl
|
|
2389
|
+
}
|
|
2390
|
+
return ""
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
func (x *DisableWebhookEmailRequest) GetWebhookId() string {
|
|
2394
|
+
if x != nil {
|
|
2395
|
+
return x.WebhookId
|
|
2396
|
+
}
|
|
2397
|
+
return ""
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
func (x *DisableWebhookEmailRequest) GetApplicationId() string {
|
|
2401
|
+
if x != nil {
|
|
2402
|
+
return x.ApplicationId
|
|
2403
|
+
}
|
|
2404
|
+
return ""
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
type DisableWebhookEmailResponse struct {
|
|
2408
|
+
state protoimpl.MessageState
|
|
2409
|
+
sizeCache protoimpl.SizeCache
|
|
2410
|
+
unknownFields protoimpl.UnknownFields
|
|
2411
|
+
|
|
2412
|
+
MailSent bool `protobuf:"varint,1,opt,name=mail_sent,json=mailSent,proto3" json:"mail_sent,omitempty"`
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
func (x *DisableWebhookEmailResponse) Reset() {
|
|
2416
|
+
*x = DisableWebhookEmailResponse{}
|
|
2417
|
+
if protoimpl.UnsafeEnabled {
|
|
2418
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[38]
|
|
2419
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2420
|
+
ms.StoreMessageInfo(mi)
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
func (x *DisableWebhookEmailResponse) String() string {
|
|
2425
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
func (*DisableWebhookEmailResponse) ProtoMessage() {}
|
|
2429
|
+
|
|
2430
|
+
func (x *DisableWebhookEmailResponse) ProtoReflect() protoreflect.Message {
|
|
2431
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[38]
|
|
2432
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2433
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2434
|
+
if ms.LoadMessageInfo() == nil {
|
|
2435
|
+
ms.StoreMessageInfo(mi)
|
|
2436
|
+
}
|
|
2437
|
+
return ms
|
|
2438
|
+
}
|
|
2439
|
+
return mi.MessageOf(x)
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
// Deprecated: Use DisableWebhookEmailResponse.ProtoReflect.Descriptor instead.
|
|
2443
|
+
func (*DisableWebhookEmailResponse) Descriptor() ([]byte, []int) {
|
|
2444
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{38}
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
func (x *DisableWebhookEmailResponse) GetMailSent() bool {
|
|
2448
|
+
if x != nil {
|
|
2449
|
+
return x.MailSent
|
|
2450
|
+
}
|
|
2451
|
+
return false
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
2455
|
+
state protoimpl.MessageState
|
|
2456
|
+
sizeCache protoimpl.SizeCache
|
|
2457
|
+
unknownFields protoimpl.UnknownFields
|
|
2458
|
+
|
|
2459
|
+
HasMfa bool `protobuf:"varint,1,opt,name=has_mfa,json=hasMfa,proto3" json:"has_mfa,omitempty"`
|
|
2460
|
+
IsSsoLogin bool `protobuf:"varint,2,opt,name=is_sso_login,json=isSsoLogin,proto3" json:"is_sso_login,omitempty"`
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
2464
|
+
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
2465
|
+
if protoimpl.UnsafeEnabled {
|
|
2466
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[39]
|
|
2467
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2468
|
+
ms.StoreMessageInfo(mi)
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
2473
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
2477
|
+
|
|
2478
|
+
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
2479
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[39]
|
|
2480
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2481
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2482
|
+
if ms.LoadMessageInfo() == nil {
|
|
2483
|
+
ms.StoreMessageInfo(mi)
|
|
2484
|
+
}
|
|
2485
|
+
return ms
|
|
2486
|
+
}
|
|
2487
|
+
return mi.MessageOf(x)
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
// Deprecated: Use CheckAccessToSiteByAccountIdRequest_UserInfo.ProtoReflect.Descriptor instead.
|
|
2491
|
+
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) Descriptor() ([]byte, []int) {
|
|
2492
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{11, 0}
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) GetHasMfa() bool {
|
|
2496
|
+
if x != nil {
|
|
2497
|
+
return x.HasMfa
|
|
2498
|
+
}
|
|
2499
|
+
return false
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) GetIsSsoLogin() bool {
|
|
2503
|
+
if x != nil {
|
|
2504
|
+
return x.IsSsoLogin
|
|
2505
|
+
}
|
|
2506
|
+
return false
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
type Install_InstallState struct {
|
|
2510
|
+
state protoimpl.MessageState
|
|
2511
|
+
sizeCache protoimpl.SizeCache
|
|
2512
|
+
unknownFields protoimpl.UnknownFields
|
|
2513
|
+
|
|
2514
|
+
Value InstallStateValue `protobuf:"varint,1,opt,name=value,proto3,enum=lansweeper.multitenant.v1.InstallStateValue" json:"value,omitempty"`
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
func (x *Install_InstallState) Reset() {
|
|
2518
|
+
*x = Install_InstallState{}
|
|
2519
|
+
if protoimpl.UnsafeEnabled {
|
|
2520
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[40]
|
|
2521
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2522
|
+
ms.StoreMessageInfo(mi)
|
|
2523
|
+
}
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
func (x *Install_InstallState) String() string {
|
|
2527
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2528
|
+
}
|
|
2529
|
+
|
|
2530
|
+
func (*Install_InstallState) ProtoMessage() {}
|
|
2531
|
+
|
|
2532
|
+
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
2533
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[40]
|
|
2534
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2535
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2536
|
+
if ms.LoadMessageInfo() == nil {
|
|
2537
|
+
ms.StoreMessageInfo(mi)
|
|
2538
|
+
}
|
|
2539
|
+
return ms
|
|
2540
|
+
}
|
|
2541
|
+
return mi.MessageOf(x)
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2544
|
+
// Deprecated: Use Install_InstallState.ProtoReflect.Descriptor instead.
|
|
2545
|
+
func (*Install_InstallState) Descriptor() ([]byte, []int) {
|
|
2546
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{13, 0}
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
func (x *Install_InstallState) GetValue() InstallStateValue {
|
|
2550
|
+
if x != nil {
|
|
2551
|
+
return x.Value
|
|
2552
|
+
}
|
|
2553
|
+
return InstallStateValue_INSTALL_STATE_VALUE_UNESPECIFIED
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
type GetInstallsBySiteRequest_Filter struct {
|
|
2557
|
+
state protoimpl.MessageState
|
|
2558
|
+
sizeCache protoimpl.SizeCache
|
|
2559
|
+
unknownFields protoimpl.UnknownFields
|
|
2560
|
+
|
|
2561
|
+
State InstallStateValue `protobuf:"varint,1,opt,name=state,proto3,enum=lansweeper.multitenant.v1.InstallStateValue" json:"state,omitempty"`
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
2565
|
+
*x = GetInstallsBySiteRequest_Filter{}
|
|
2566
|
+
if protoimpl.UnsafeEnabled {
|
|
2567
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[41]
|
|
2568
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2569
|
+
ms.StoreMessageInfo(mi)
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
2574
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
2578
|
+
|
|
2579
|
+
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
2580
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[41]
|
|
2581
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2582
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2583
|
+
if ms.LoadMessageInfo() == nil {
|
|
2584
|
+
ms.StoreMessageInfo(mi)
|
|
2585
|
+
}
|
|
2586
|
+
return ms
|
|
2587
|
+
}
|
|
2588
|
+
return mi.MessageOf(x)
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
// Deprecated: Use GetInstallsBySiteRequest_Filter.ProtoReflect.Descriptor instead.
|
|
2592
|
+
func (*GetInstallsBySiteRequest_Filter) Descriptor() ([]byte, []int) {
|
|
2593
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{17, 0}
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
func (x *GetInstallsBySiteRequest_Filter) GetState() InstallStateValue {
|
|
2597
|
+
if x != nil {
|
|
2598
|
+
return x.State
|
|
2599
|
+
}
|
|
2600
|
+
return InstallStateValue_INSTALL_STATE_VALUE_UNESPECIFIED
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
2604
|
+
state protoimpl.MessageState
|
|
2605
|
+
sizeCache protoimpl.SizeCache
|
|
2606
|
+
unknownFields protoimpl.UnknownFields
|
|
2607
|
+
|
|
2608
|
+
SendChangedDataTimeout string `protobuf:"bytes,1,opt,name=send_changed_data_timeout,json=sendChangedDataTimeout,proto3" json:"send_changed_data_timeout,omitempty"`
|
|
2609
|
+
SendFastChangingDataTimeout string `protobuf:"bytes,2,opt,name=send_fast_changing_data_timeout,json=sendFastChangingDataTimeout,proto3" json:"send_fast_changing_data_timeout,omitempty"`
|
|
2610
|
+
SendNonChangedDataTimeout string `protobuf:"bytes,3,opt,name=send_non_changed_data_timeout,json=sendNonChangedDataTimeout,proto3" json:"send_non_changed_data_timeout,omitempty"`
|
|
2611
|
+
SyncIntervalInSeconds string `protobuf:"bytes,4,opt,name=sync_interval_in_seconds,json=syncIntervalInSeconds,proto3" json:"sync_interval_in_seconds,omitempty"`
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
2615
|
+
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
2616
|
+
if protoimpl.UnsafeEnabled {
|
|
2617
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[42]
|
|
2618
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2619
|
+
ms.StoreMessageInfo(mi)
|
|
2620
|
+
}
|
|
2621
|
+
}
|
|
2622
|
+
|
|
2623
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
2624
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
2628
|
+
|
|
2629
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
2630
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[42]
|
|
2631
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2632
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2633
|
+
if ms.LoadMessageInfo() == nil {
|
|
2634
|
+
ms.StoreMessageInfo(mi)
|
|
2635
|
+
}
|
|
2636
|
+
return ms
|
|
2637
|
+
}
|
|
2638
|
+
return mi.MessageOf(x)
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
// Deprecated: Use UpdateInstallByClientIdRequest_SyncerSettings.ProtoReflect.Descriptor instead.
|
|
2642
|
+
func (*UpdateInstallByClientIdRequest_SyncerSettings) Descriptor() ([]byte, []int) {
|
|
2643
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{23, 0}
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) GetSendChangedDataTimeout() string {
|
|
2647
|
+
if x != nil {
|
|
2648
|
+
return x.SendChangedDataTimeout
|
|
2649
|
+
}
|
|
2650
|
+
return ""
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) GetSendFastChangingDataTimeout() string {
|
|
2654
|
+
if x != nil {
|
|
2655
|
+
return x.SendFastChangingDataTimeout
|
|
2656
|
+
}
|
|
2657
|
+
return ""
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) GetSendNonChangedDataTimeout() string {
|
|
2661
|
+
if x != nil {
|
|
2662
|
+
return x.SendNonChangedDataTimeout
|
|
2663
|
+
}
|
|
2664
|
+
return ""
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
func (x *UpdateInstallByClientIdRequest_SyncerSettings) GetSyncIntervalInSeconds() string {
|
|
2668
|
+
if x != nil {
|
|
2669
|
+
return x.SyncIntervalInSeconds
|
|
2670
|
+
}
|
|
2671
|
+
return ""
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
2675
|
+
state protoimpl.MessageState
|
|
2676
|
+
sizeCache protoimpl.SizeCache
|
|
2677
|
+
unknownFields protoimpl.UnknownFields
|
|
2678
|
+
|
|
2679
|
+
InstallId string `protobuf:"bytes,1,opt,name=install_id,json=installId,proto3" json:"install_id,omitempty"`
|
|
2680
|
+
Queued bool `protobuf:"varint,2,opt,name=queued,proto3" json:"queued,omitempty"`
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
2684
|
+
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
2685
|
+
if protoimpl.UnsafeEnabled {
|
|
2686
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[43]
|
|
2687
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2688
|
+
ms.StoreMessageInfo(mi)
|
|
2689
|
+
}
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
2693
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
2697
|
+
|
|
2698
|
+
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
2699
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[43]
|
|
2700
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2701
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2702
|
+
if ms.LoadMessageInfo() == nil {
|
|
2703
|
+
ms.StoreMessageInfo(mi)
|
|
2704
|
+
}
|
|
2705
|
+
return ms
|
|
2706
|
+
}
|
|
2707
|
+
return mi.MessageOf(x)
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
// Deprecated: Use RemoveInstallDataBySiteIdResponse_Result.ProtoReflect.Descriptor instead.
|
|
2711
|
+
func (*RemoveInstallDataBySiteIdResponse_Result) Descriptor() ([]byte, []int) {
|
|
2712
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{30, 0}
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2715
|
+
func (x *RemoveInstallDataBySiteIdResponse_Result) GetInstallId() string {
|
|
2716
|
+
if x != nil {
|
|
2717
|
+
return x.InstallId
|
|
2718
|
+
}
|
|
2719
|
+
return ""
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
func (x *RemoveInstallDataBySiteIdResponse_Result) GetQueued() bool {
|
|
2723
|
+
if x != nil {
|
|
2724
|
+
return x.Queued
|
|
2725
|
+
}
|
|
2726
|
+
return false
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
2730
|
+
state protoimpl.MessageState
|
|
2731
|
+
sizeCache protoimpl.SizeCache
|
|
2732
|
+
unknownFields protoimpl.UnknownFields
|
|
2733
|
+
|
|
2734
|
+
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
2735
|
+
DerivedPermissions []byte `protobuf:"bytes,2,opt,name=derived_permissions,json=derivedPermissions,proto3" json:"derived_permissions,omitempty"`
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
2739
|
+
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
2740
|
+
if protoimpl.UnsafeEnabled {
|
|
2741
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[44]
|
|
2742
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2743
|
+
ms.StoreMessageInfo(mi)
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
2748
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
2752
|
+
|
|
2753
|
+
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
2754
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[44]
|
|
2755
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2756
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2757
|
+
if ms.LoadMessageInfo() == nil {
|
|
2758
|
+
ms.StoreMessageInfo(mi)
|
|
2759
|
+
}
|
|
2760
|
+
return ms
|
|
2761
|
+
}
|
|
2762
|
+
return mi.MessageOf(x)
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2765
|
+
// Deprecated: Use GetUserPermissionsResponse_AuthorizationAction.ProtoReflect.Descriptor instead.
|
|
2766
|
+
func (*GetUserPermissionsResponse_AuthorizationAction) Descriptor() ([]byte, []int) {
|
|
2767
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{34, 0}
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
func (x *GetUserPermissionsResponse_AuthorizationAction) GetKey() string {
|
|
2771
|
+
if x != nil {
|
|
2772
|
+
return x.Key
|
|
2773
|
+
}
|
|
2774
|
+
return ""
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
func (x *GetUserPermissionsResponse_AuthorizationAction) GetDerivedPermissions() []byte {
|
|
2778
|
+
if x != nil {
|
|
2779
|
+
return x.DerivedPermissions
|
|
2780
|
+
}
|
|
2781
|
+
return nil
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
type GetUserPermissionsResponse_Scope struct {
|
|
2785
|
+
state protoimpl.MessageState
|
|
2786
|
+
sizeCache protoimpl.SizeCache
|
|
2787
|
+
unknownFields protoimpl.UnknownFields
|
|
2788
|
+
|
|
2789
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
2793
|
+
*x = GetUserPermissionsResponse_Scope{}
|
|
2794
|
+
if protoimpl.UnsafeEnabled {
|
|
2795
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[45]
|
|
2796
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2797
|
+
ms.StoreMessageInfo(mi)
|
|
2798
|
+
}
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
2802
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
2806
|
+
|
|
2807
|
+
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
2808
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[45]
|
|
2809
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2810
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2811
|
+
if ms.LoadMessageInfo() == nil {
|
|
2812
|
+
ms.StoreMessageInfo(mi)
|
|
2813
|
+
}
|
|
2814
|
+
return ms
|
|
2815
|
+
}
|
|
2816
|
+
return mi.MessageOf(x)
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2819
|
+
// Deprecated: Use GetUserPermissionsResponse_Scope.ProtoReflect.Descriptor instead.
|
|
2820
|
+
func (*GetUserPermissionsResponse_Scope) Descriptor() ([]byte, []int) {
|
|
2821
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{34, 1}
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
func (x *GetUserPermissionsResponse_Scope) GetId() string {
|
|
2825
|
+
if x != nil {
|
|
2826
|
+
return x.Id
|
|
2827
|
+
}
|
|
2828
|
+
return ""
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2831
|
+
type GetUserPermissionsResponse_Role struct {
|
|
2832
|
+
state protoimpl.MessageState
|
|
2833
|
+
sizeCache protoimpl.SizeCache
|
|
2834
|
+
unknownFields protoimpl.UnknownFields
|
|
2835
|
+
|
|
2836
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
2837
|
+
Actions []*GetUserPermissionsResponse_AuthorizationAction `protobuf:"bytes,2,rep,name=actions,proto3" json:"actions,omitempty"`
|
|
2838
|
+
Installations []*Install `protobuf:"bytes,3,rep,name=installations,proto3" json:"installations,omitempty"`
|
|
2839
|
+
Scopes []*GetUserPermissionsResponse_Scope `protobuf:"bytes,4,rep,name=scopes,proto3" json:"scopes,omitempty"`
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
2843
|
+
*x = GetUserPermissionsResponse_Role{}
|
|
2844
|
+
if protoimpl.UnsafeEnabled {
|
|
2845
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[46]
|
|
2846
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2847
|
+
ms.StoreMessageInfo(mi)
|
|
2848
|
+
}
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
func (x *GetUserPermissionsResponse_Role) String() string {
|
|
2852
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2853
|
+
}
|
|
2854
|
+
|
|
2855
|
+
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
2856
|
+
|
|
2857
|
+
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
2858
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[46]
|
|
2859
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2860
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2861
|
+
if ms.LoadMessageInfo() == nil {
|
|
2862
|
+
ms.StoreMessageInfo(mi)
|
|
2863
|
+
}
|
|
2864
|
+
return ms
|
|
2865
|
+
}
|
|
2866
|
+
return mi.MessageOf(x)
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
// Deprecated: Use GetUserPermissionsResponse_Role.ProtoReflect.Descriptor instead.
|
|
2870
|
+
func (*GetUserPermissionsResponse_Role) Descriptor() ([]byte, []int) {
|
|
2871
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{34, 2}
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
func (x *GetUserPermissionsResponse_Role) GetId() string {
|
|
2875
|
+
if x != nil {
|
|
2876
|
+
return x.Id
|
|
2877
|
+
}
|
|
2878
|
+
return ""
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
func (x *GetUserPermissionsResponse_Role) GetActions() []*GetUserPermissionsResponse_AuthorizationAction {
|
|
2882
|
+
if x != nil {
|
|
2883
|
+
return x.Actions
|
|
2884
|
+
}
|
|
2885
|
+
return nil
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
func (x *GetUserPermissionsResponse_Role) GetInstallations() []*Install {
|
|
2889
|
+
if x != nil {
|
|
2890
|
+
return x.Installations
|
|
2891
|
+
}
|
|
2892
|
+
return nil
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
func (x *GetUserPermissionsResponse_Role) GetScopes() []*GetUserPermissionsResponse_Scope {
|
|
2896
|
+
if x != nil {
|
|
2897
|
+
return x.Scopes
|
|
2898
|
+
}
|
|
2899
|
+
return nil
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
type DisableWebhookEmailRequest_WebhookError struct {
|
|
2903
|
+
state protoimpl.MessageState
|
|
2904
|
+
sizeCache protoimpl.SizeCache
|
|
2905
|
+
unknownFields protoimpl.UnknownFields
|
|
2906
|
+
|
|
2907
|
+
Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
|
|
2908
|
+
// Deprecated: Do not use.
|
|
2909
|
+
Messsage string `protobuf:"bytes,2,opt,name=messsage,proto3" json:"messsage,omitempty"`
|
|
2910
|
+
Timestamp string `protobuf:"bytes,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
2911
|
+
Message string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
2915
|
+
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
2916
|
+
if protoimpl.UnsafeEnabled {
|
|
2917
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[47]
|
|
2918
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2919
|
+
ms.StoreMessageInfo(mi)
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
2924
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
2928
|
+
|
|
2929
|
+
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
2930
|
+
mi := &file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[47]
|
|
2931
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
2932
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2933
|
+
if ms.LoadMessageInfo() == nil {
|
|
2934
|
+
ms.StoreMessageInfo(mi)
|
|
2935
|
+
}
|
|
2936
|
+
return ms
|
|
2937
|
+
}
|
|
2938
|
+
return mi.MessageOf(x)
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2941
|
+
// Deprecated: Use DisableWebhookEmailRequest_WebhookError.ProtoReflect.Descriptor instead.
|
|
2942
|
+
func (*DisableWebhookEmailRequest_WebhookError) Descriptor() ([]byte, []int) {
|
|
2943
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP(), []int{37, 0}
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
func (x *DisableWebhookEmailRequest_WebhookError) GetCode() string {
|
|
2947
|
+
if x != nil {
|
|
2948
|
+
return x.Code
|
|
2949
|
+
}
|
|
2950
|
+
return ""
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
// Deprecated: Do not use.
|
|
2954
|
+
func (x *DisableWebhookEmailRequest_WebhookError) GetMesssage() string {
|
|
2955
|
+
if x != nil {
|
|
2956
|
+
return x.Messsage
|
|
2957
|
+
}
|
|
2958
|
+
return ""
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
func (x *DisableWebhookEmailRequest_WebhookError) GetTimestamp() string {
|
|
2962
|
+
if x != nil {
|
|
2963
|
+
return x.Timestamp
|
|
2964
|
+
}
|
|
2965
|
+
return ""
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
func (x *DisableWebhookEmailRequest_WebhookError) GetMessage() string {
|
|
2969
|
+
if x != nil {
|
|
2970
|
+
return x.Message
|
|
2971
|
+
}
|
|
2972
|
+
return ""
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
var File_packages_multitenant_grpc_proto_multitenant_proto protoreflect.FileDescriptor
|
|
2976
|
+
|
|
2977
|
+
var file_packages_multitenant_grpc_proto_multitenant_proto_rawDesc = []byte{
|
|
2978
|
+
0x0a, 0x31, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
2979
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x70, 0x72, 0x6f, 0x74,
|
|
2980
|
+
0x6f, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x70, 0x72,
|
|
2981
|
+
0x6f, 0x74, 0x6f, 0x12, 0x19, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
2982
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x22, 0x9d,
|
|
2983
|
+
0x01, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
2984
|
+
0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
|
|
2985
|
+
0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
|
|
2986
|
+
0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a,
|
|
2987
|
+
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
|
|
2988
|
+
0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
|
|
2989
|
+
0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65,
|
|
2990
|
+
0x6d, 0x61, 0x69, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69,
|
|
2991
|
+
0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x06,
|
|
2992
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x2e,
|
|
2993
|
+
0x0a, 0x1c, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
2994
|
+
0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e,
|
|
2995
|
+
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x64,
|
|
2996
|
+
0x0a, 0x1d, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
2997
|
+
0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
2998
|
+
0x43, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
|
2999
|
+
0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
3000
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65,
|
|
3001
|
+
0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x07, 0x61, 0x63, 0x63,
|
|
3002
|
+
0x6f, 0x75, 0x6e, 0x74, 0x22, 0xa8, 0x01, 0x0a, 0x0b, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
3003
|
+
0x53, 0x69, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
3004
|
+
0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
3005
|
+
0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70,
|
|
3006
|
+
0x61, 0x6e, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
|
3007
|
+
0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6c,
|
|
3008
|
+
0x6f, 0x67, 0x6f, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c,
|
|
3009
|
+
0x6f, 0x67, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x37, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x05,
|
|
3010
|
+
0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3011
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
3012
|
+
0x2e, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x22,
|
|
3013
|
+
0x5f, 0x0a, 0x14, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65,
|
|
3014
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
3015
|
+
0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x37, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18,
|
|
3016
|
+
0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3017
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
3018
|
+
0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65,
|
|
3019
|
+
0x22, 0x31, 0x0a, 0x15, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64,
|
|
3020
|
+
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63,
|
|
3021
|
+
0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63,
|
|
3022
|
+
0x65, 0x73, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x07, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12,
|
|
3023
|
+
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
|
|
3024
|
+
0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
3025
|
+
0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3a, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65,
|
|
3026
|
+
0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3027
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
3028
|
+
0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x04,
|
|
3029
|
+
0x73, 0x69, 0x74, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72,
|
|
3030
|
+
0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x22,
|
|
3031
|
+
0x66, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42,
|
|
3032
|
+
0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
3033
|
+
0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18,
|
|
3034
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
3035
|
+
0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63,
|
|
3036
|
+
0x6b, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
|
|
3037
|
+
0x65, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x22, 0x5f, 0x0a, 0x1f, 0x4c, 0x69, 0x73, 0x74, 0x50,
|
|
3038
|
+
0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
3039
|
+
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x70, 0x72,
|
|
3040
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61,
|
|
3041
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
3042
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52,
|
|
3043
|
+
0x07, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x6d, 0x0a, 0x21, 0x4c, 0x69, 0x73, 0x74,
|
|
3044
|
+
0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72,
|
|
3045
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
|
|
3046
|
+
0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3047
|
+
0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x0e,
|
|
3048
|
+
0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x02,
|
|
3049
|
+
0x20, 0x01, 0x28, 0x08, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
|
|
3050
|
+
0x65, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x22, 0x62, 0x0a, 0x22, 0x4c, 0x69, 0x73, 0x74, 0x41,
|
|
3051
|
+
0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f,
|
|
3052
|
+
0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a,
|
|
3053
|
+
0x07, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22,
|
|
3054
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
3055
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
3056
|
+
0x6c, 0x65, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0xa9, 0x02, 0x0a, 0x23,
|
|
3057
|
+
0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74,
|
|
3058
|
+
0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
3059
|
+
0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69,
|
|
3060
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
3061
|
+
0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
|
3062
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f,
|
|
3063
|
+
0x6e, 0x6c, 0x79, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
3064
|
+
0x09, 0x6f, 0x6e, 0x6c, 0x79, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x64, 0x0a, 0x09, 0x75, 0x73,
|
|
3065
|
+
0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e,
|
|
3066
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
3067
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
|
3068
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
3069
|
+
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x73,
|
|
3070
|
+
0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
|
|
3071
|
+
0x1a, 0x45, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x0a, 0x07,
|
|
3072
|
+
0x68, 0x61, 0x73, 0x5f, 0x6d, 0x66, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x68,
|
|
3073
|
+
0x61, 0x73, 0x4d, 0x66, 0x61, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x73, 0x73, 0x6f, 0x5f,
|
|
3074
|
+
0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x53,
|
|
3075
|
+
0x73, 0x6f, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x22, 0x3e, 0x0a, 0x24, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
3076
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
3077
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
3078
|
+
0x16, 0x0a, 0x06, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
3079
|
+
0x06, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x9e, 0x03, 0x0a, 0x07, 0x49, 0x6e, 0x73, 0x74,
|
|
3080
|
+
0x61, 0x6c, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
3081
|
+
0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64,
|
|
3082
|
+
0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64,
|
|
3083
|
+
0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3084
|
+
0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73,
|
|
3085
|
+
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
3086
|
+
0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b,
|
|
3087
|
+
0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
3088
|
+
0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16,
|
|
3089
|
+
0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
3090
|
+
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x71, 0x64, 0x6e, 0x18, 0x06,
|
|
3091
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x71, 0x64, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x72,
|
|
3092
|
+
0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28,
|
|
3093
|
+
0x09, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x49, 0x64, 0x12, 0x45,
|
|
3094
|
+
0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e,
|
|
3095
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
3096
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
3097
|
+
0x6c, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05,
|
|
3098
|
+
0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
|
|
3099
|
+
0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74,
|
|
3100
|
+
0x65, 0x64, 0x41, 0x74, 0x1a, 0x52, 0x0a, 0x0c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53,
|
|
3101
|
+
0x74, 0x61, 0x74, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
|
|
3102
|
+
0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3103
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
3104
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75,
|
|
3105
|
+
0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x56, 0x0a, 0x12, 0x49, 0x6e, 0x73, 0x74,
|
|
3106
|
+
0x61, 0x6c, 0x6c, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x1b,
|
|
3107
|
+
0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3108
|
+
0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x63,
|
|
3109
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01,
|
|
3110
|
+
0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
|
|
3111
|
+
0x22, 0x38, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43,
|
|
3112
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
3113
|
+
0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
3114
|
+
0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x30, 0x0a, 0x18, 0x47, 0x65,
|
|
3115
|
+
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
|
3116
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
|
|
3117
|
+
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xd5, 0x01, 0x0a,
|
|
3118
|
+
0x18, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69,
|
|
3119
|
+
0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74,
|
|
3120
|
+
0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65,
|
|
3121
|
+
0x49, 0x64, 0x12, 0x52, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01,
|
|
3122
|
+
0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3123
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
3124
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
3125
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06,
|
|
3126
|
+
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x1a, 0x4c, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
|
|
3127
|
+
0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
|
|
3128
|
+
0x2c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
3129
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74,
|
|
3130
|
+
0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x73,
|
|
3131
|
+
0x74, 0x61, 0x74, 0x65, 0x22, 0x59, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
3132
|
+
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
3133
|
+
0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x03,
|
|
3134
|
+
0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3135
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49,
|
|
3136
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22,
|
|
3137
|
+
0x3a, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43,
|
|
3138
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
|
|
3139
|
+
0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3140
|
+
0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x5c, 0x0a, 0x1c, 0x47,
|
|
3141
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
3142
|
+
0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69,
|
|
3143
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c,
|
|
3144
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
3145
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
3146
|
+
0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22, 0x8b, 0x02, 0x0a, 0x14, 0x43, 0x72,
|
|
3147
|
+
0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
3148
|
+
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
3149
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x67,
|
|
3150
|
+
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
|
3151
|
+
0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70,
|
|
3152
|
+
0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
|
3153
|
+
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64,
|
|
3154
|
+
0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
|
3155
|
+
0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,
|
|
3156
|
+
0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
3157
|
+
0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x71, 0x64, 0x6e, 0x18, 0x06, 0x20,
|
|
3158
|
+
0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x71, 0x64, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x72, 0x65,
|
|
3159
|
+
0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
|
|
3160
|
+
0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x49, 0x64, 0x12, 0x28, 0x0a,
|
|
3161
|
+
0x10, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x71, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x75,
|
|
3162
|
+
0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
|
|
3163
|
+
0x71, 0x73, 0x51, 0x75, 0x65, 0x75, 0x65, 0x22, 0xa6, 0x01, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61,
|
|
3164
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
3165
|
+
0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01,
|
|
3166
|
+
0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3167
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49,
|
|
3168
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12,
|
|
3169
|
+
0x4f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x02,
|
|
3170
|
+
0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3171
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
3172
|
+
0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
|
3173
|
+
0x61, 0x6c, 0x73, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73,
|
|
3174
|
+
0x22, 0xb0, 0x04, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
3175
|
+
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
3176
|
+
0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
|
3177
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
3178
|
+
0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
3179
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e,
|
|
3180
|
+
0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
|
|
3181
|
+
0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
|
|
3182
|
+
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
|
|
3183
|
+
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a,
|
|
3184
|
+
0x04, 0x66, 0x71, 0x64, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x71, 0x64,
|
|
3185
|
+
0x6e, 0x12, 0x71, 0x0a, 0x0f, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x74, 0x74,
|
|
3186
|
+
0x69, 0x6e, 0x67, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3187
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
3188
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
3189
|
+
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
3190
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x79, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74,
|
|
3191
|
+
0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74,
|
|
3192
|
+
0x69, 0x6e, 0x67, 0x73, 0x1a, 0x8c, 0x02, 0x0a, 0x0e, 0x53, 0x79, 0x6e, 0x63, 0x65, 0x72, 0x53,
|
|
3193
|
+
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x39, 0x0a, 0x19, 0x73, 0x65, 0x6e, 0x64, 0x5f,
|
|
3194
|
+
0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6d,
|
|
3195
|
+
0x65, 0x6f, 0x75, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16, 0x73, 0x65, 0x6e, 0x64,
|
|
3196
|
+
0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f,
|
|
3197
|
+
0x75, 0x74, 0x12, 0x44, 0x0a, 0x1f, 0x73, 0x65, 0x6e, 0x64, 0x5f, 0x66, 0x61, 0x73, 0x74, 0x5f,
|
|
3198
|
+
0x63, 0x68, 0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x69,
|
|
3199
|
+
0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x1b, 0x73, 0x65, 0x6e,
|
|
3200
|
+
0x64, 0x46, 0x61, 0x73, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74,
|
|
3201
|
+
0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x40, 0x0a, 0x1d, 0x73, 0x65, 0x6e, 0x64,
|
|
3202
|
+
0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74,
|
|
3203
|
+
0x61, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
3204
|
+
0x19, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x44,
|
|
3205
|
+
0x61, 0x74, 0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x37, 0x0a, 0x18, 0x73, 0x79,
|
|
3206
|
+
0x6e, 0x63, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x5f, 0x73,
|
|
3207
|
+
0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x73, 0x79,
|
|
3208
|
+
0x6e, 0x63, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x49, 0x6e, 0x53, 0x65, 0x63, 0x6f,
|
|
3209
|
+
0x6e, 0x64, 0x73, 0x22, 0x5f, 0x0a, 0x1f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
3210
|
+
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
3211
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
3212
|
+
0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3213
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
3214
|
+
0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73,
|
|
3215
|
+
0x74, 0x61, 0x6c, 0x6c, 0x22, 0x58, 0x0a, 0x1e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e,
|
|
3216
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
3217
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
3218
|
+
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e,
|
|
3219
|
+
0x74, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18,
|
|
3220
|
+
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x49, 0x64, 0x22, 0xa0,
|
|
3221
|
+
0x01, 0x0a, 0x1f, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
3222
|
+
0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
3223
|
+
0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20,
|
|
3224
|
+
0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x17, 0x0a, 0x07,
|
|
3225
|
+
0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
3226
|
+
0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x6f, 0x6c, 0x64, 0x5f, 0x69, 0x6e, 0x73,
|
|
3227
|
+
0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f,
|
|
3228
|
+
0x6c, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x6e,
|
|
3229
|
+
0x65, 0x77, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20,
|
|
3230
|
+
0x01, 0x28, 0x09, 0x52, 0x0c, 0x6e, 0x65, 0x77, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49,
|
|
3231
|
+
0x64, 0x22, 0x9a, 0x01, 0x0a, 0x1e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74,
|
|
3232
|
+
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
3233
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69,
|
|
3234
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
3235
|
+
0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
|
3236
|
+
0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b,
|
|
3237
|
+
0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
3238
|
+
0x08, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1f, 0x0a,
|
|
3239
|
+
0x0b, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x6e, 0x70, 0x72, 0x65, 0x6d, 0x18, 0x04, 0x20, 0x01,
|
|
3240
|
+
0x28, 0x08, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x6e, 0x70, 0x72, 0x65, 0x6d, 0x22, 0x3b,
|
|
3241
|
+
0x0a, 0x1f, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
3242
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
3243
|
+
0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01,
|
|
3244
|
+
0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x75, 0x0a, 0x20, 0x52,
|
|
3245
|
+
0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61,
|
|
3246
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
3247
|
+
0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
3248
|
+
0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x73, 0x74,
|
|
3249
|
+
0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x69,
|
|
3250
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
|
|
3251
|
+
0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
|
|
3252
|
+
0x49, 0x64, 0x22, 0xc1, 0x01, 0x0a, 0x21, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73,
|
|
3253
|
+
0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
3254
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
|
|
3255
|
+
0x6c, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
3256
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
3257
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
3258
|
+
0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65,
|
|
3259
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72,
|
|
3260
|
+
0x65, 0x73, 0x75, 0x6c, 0x74, 0x1a, 0x3f, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
|
|
3261
|
+
0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
3262
|
+
0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x12, 0x16,
|
|
3263
|
+
0x0a, 0x06, 0x71, 0x75, 0x65, 0x75, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06,
|
|
3264
|
+
0x71, 0x75, 0x65, 0x75, 0x65, 0x64, 0x22, 0x5e, 0x0a, 0x26, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70,
|
|
3265
|
+
0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
3266
|
+
0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
3267
|
+
0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3268
|
+
0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x6c, 0x6f,
|
|
3269
|
+
0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x67, 0x6c,
|
|
3270
|
+
0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x27, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70,
|
|
3271
|
+
0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
3272
|
+
0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
3273
|
+
0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x03,
|
|
3274
|
+
0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3275
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49,
|
|
3276
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22,
|
|
3277
|
+
0x53, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73,
|
|
3278
|
+
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
|
|
3279
|
+
0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
3280
|
+
0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
3281
|
+
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
|
3282
|
+
0x6e, 0x74, 0x49, 0x64, 0x22, 0xfe, 0x03, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
|
|
3283
|
+
0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
3284
|
+
0x6e, 0x73, 0x65, 0x12, 0x50, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
|
|
3285
|
+
0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3286
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
3287
|
+
0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e,
|
|
3288
|
+
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x05,
|
|
3289
|
+
0x72, 0x6f, 0x6c, 0x65, 0x73, 0x1a, 0x58, 0x0a, 0x13, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
|
3290
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03,
|
|
3291
|
+
0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2f,
|
|
3292
|
+
0x0a, 0x13, 0x64, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73,
|
|
3293
|
+
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x12, 0x64, 0x65, 0x72,
|
|
3294
|
+
0x69, 0x76, 0x65, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a,
|
|
3295
|
+
0x17, 0x0a, 0x05, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
|
|
3296
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x1a, 0x9a, 0x02, 0x0a, 0x04, 0x52, 0x6f, 0x6c,
|
|
3297
|
+
0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
|
|
3298
|
+
0x64, 0x12, 0x63, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03,
|
|
3299
|
+
0x28, 0x0b, 0x32, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3300
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
3301
|
+
0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e,
|
|
3302
|
+
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
|
3303
|
+
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x61,
|
|
3304
|
+
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x48, 0x0a, 0x0d, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
3305
|
+
0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e,
|
|
3306
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
3307
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
3308
|
+
0x6c, 0x52, 0x0d, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
|
3309
|
+
0x12, 0x53, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
|
|
3310
|
+
0x32, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
3311
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
3312
|
+
0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52,
|
|
3313
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x52, 0x06, 0x73,
|
|
3314
|
+
0x63, 0x6f, 0x70, 0x65, 0x73, 0x22, 0x63, 0x0a, 0x2d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
|
|
3315
|
+
0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73,
|
|
3316
|
+
0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
|
|
3317
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x15, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
3318
|
+
0x61, 0x6c, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18,
|
|
3319
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41,
|
|
3320
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x70, 0x0a, 0x2e, 0x56, 0x61,
|
|
3321
|
+
0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
|
|
3322
|
+
0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54,
|
|
3323
|
+
0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17, 0x0a, 0x07,
|
|
3324
|
+
0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
|
|
3325
|
+
0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
3326
|
+
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61,
|
|
3327
|
+
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0xe8, 0x03, 0x0a,
|
|
3328
|
+
0x1a, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45,
|
|
3329
|
+
0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x61,
|
|
3330
|
+
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3331
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
3332
|
+
0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
|
|
3333
|
+
0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
|
|
3334
|
+
0x12, 0x5a, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
|
|
3335
|
+
0x32, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
3336
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73,
|
|
3337
|
+
0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c,
|
|
3338
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45,
|
|
3339
|
+
0x72, 0x72, 0x6f, 0x72, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 0x1f, 0x0a, 0x0b,
|
|
3340
|
+
0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
3341
|
+
0x09, 0x52, 0x0a, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a,
|
|
3342
|
+
0x0c, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20,
|
|
3343
|
+
0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x4e, 0x61, 0x6d, 0x65,
|
|
3344
|
+
0x12, 0x23, 0x0a, 0x0b, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x75, 0x72, 0x6c, 0x18,
|
|
3345
|
+
0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x68, 0x6f,
|
|
3346
|
+
0x6f, 0x6b, 0x55, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
|
|
3347
|
+
0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x65, 0x62, 0x68, 0x6f,
|
|
3348
|
+
0x6f, 0x6b, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
3349
|
+
0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x70,
|
|
3350
|
+
0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x1a, 0x7a, 0x0a, 0x0c, 0x57,
|
|
3351
|
+
0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x63,
|
|
3352
|
+
0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
|
|
3353
|
+
0x1e, 0x0a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3354
|
+
0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
|
|
3355
|
+
0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01,
|
|
3356
|
+
0x28, 0x09, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x18, 0x0a,
|
|
3357
|
+
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
|
|
3358
|
+
0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x44, 0x69, 0x73, 0x61, 0x62,
|
|
3359
|
+
0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65,
|
|
3360
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73,
|
|
3361
|
+
0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x53,
|
|
3362
|
+
0x65, 0x6e, 0x74, 0x2a, 0x4e, 0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12,
|
|
3363
|
+
0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
|
|
3364
|
+
0x00, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56,
|
|
3365
|
+
0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a,
|
|
3366
|
+
0x06, 0x48, 0x59, 0x42, 0x52, 0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41,
|
|
3367
|
+
0x4c, 0x10, 0x04, 0x2a, 0x77, 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74,
|
|
3368
|
+
0x61, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54,
|
|
3369
|
+
0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
3370
|
+
0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c,
|
|
3371
|
+
0x0a, 0x18, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f,
|
|
3372
|
+
0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a,
|
|
3373
|
+
0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41,
|
|
3374
|
+
0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x32, 0xd7, 0x13, 0x0a,
|
|
3375
|
+
0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a,
|
|
3376
|
+
0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69,
|
|
3377
|
+
0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e,
|
|
3378
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
3379
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
|
3380
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
3381
|
+
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e,
|
|
3382
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
3383
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
|
3384
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
3385
|
+
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
3386
|
+
0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41,
|
|
3387
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3388
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
3389
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
|
|
3390
|
+
0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
3391
|
+
0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3392
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
3393
|
+
0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
3394
|
+
0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
3395
|
+
0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
3396
|
+
0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61,
|
|
3397
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
3398
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66,
|
|
3399
|
+
0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
3400
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3401
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
3402
|
+
0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42,
|
|
3403
|
+
0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
3404
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74,
|
|
3405
|
+
0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
3406
|
+
0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3407
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
3408
|
+
0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69,
|
|
3409
|
+
0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
3410
|
+
0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
3411
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
3412
|
+
0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b,
|
|
3413
|
+
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
3414
|
+
0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d,
|
|
3415
|
+
0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3416
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
3417
|
+
0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
|
|
3418
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3419
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
3420
|
+
0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
3421
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61,
|
|
3422
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
3423
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
3424
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
3425
|
+
0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3426
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
3427
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
3428
|
+
0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80,
|
|
3429
|
+
0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
3430
|
+
0x53, 0x69, 0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3431
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
3432
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69,
|
|
3433
|
+
0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
3434
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
3435
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
3436
|
+
0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
3437
|
+
0x00, 0x12, 0x89, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
3438
|
+
0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c,
|
|
3439
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
3440
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
3441
|
+
0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52,
|
|
3442
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3443
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
3444
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f,
|
|
3445
|
+
0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01,
|
|
3446
|
+
0x0a, 0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c,
|
|
3447
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3448
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
3449
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43,
|
|
3450
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37,
|
|
3451
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
3452
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e,
|
|
3453
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
3454
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70,
|
|
3455
|
+
0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
3456
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3457
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
3458
|
+
0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
3459
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
3460
|
+
0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
3461
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
|
|
3462
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
3463
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92,
|
|
3464
|
+
0x01, 0x0a, 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
3465
|
+
0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3466
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
3467
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
3468
|
+
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
3469
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3470
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
3471
|
+
0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
3472
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
3473
|
+
0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
|
|
3474
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
|
|
3475
|
+
0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
3476
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69,
|
|
3477
|
+
0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
3478
|
+
0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3479
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
3480
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73,
|
|
3481
|
+
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
3482
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d,
|
|
3483
|
+
0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
|
|
3484
|
+
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3485
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
3486
|
+
0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
3487
|
+
0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
3488
|
+
0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3489
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
3490
|
+
0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74,
|
|
3491
|
+
0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
3492
|
+
0x65, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69,
|
|
3493
|
+
0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47,
|
|
3494
|
+
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3495
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
3496
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
|
|
3497
|
+
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61,
|
|
3498
|
+
0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3499
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
3500
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63,
|
|
3501
|
+
0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c,
|
|
3502
|
+
0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
3503
|
+
0x12, 0x83, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d,
|
|
3504
|
+
0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3505
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
3506
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69,
|
|
3507
|
+
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e,
|
|
3508
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
3509
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
|
|
3510
|
+
0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
3511
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64,
|
|
3512
|
+
0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65,
|
|
3513
|
+
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
|
|
3514
|
+
0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
3515
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61,
|
|
3516
|
+
0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
|
|
3517
|
+
0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54,
|
|
3518
|
+
0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61,
|
|
3519
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
3520
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
|
|
3521
|
+
0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
|
3522
|
+
0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65,
|
|
3523
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e,
|
|
3524
|
+
0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
|
|
3525
|
+
0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3526
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
3527
|
+
0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
|
|
3528
|
+
0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c,
|
|
3529
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
3530
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
|
|
3531
|
+
0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70,
|
|
3532
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65,
|
|
3533
|
+
0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
var (
|
|
3537
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_rawDescOnce sync.Once
|
|
3538
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_rawDescData = file_packages_multitenant_grpc_proto_multitenant_proto_rawDesc
|
|
3539
|
+
)
|
|
3540
|
+
|
|
3541
|
+
func file_packages_multitenant_grpc_proto_multitenant_proto_rawDescGZIP() []byte {
|
|
3542
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_rawDescOnce.Do(func() {
|
|
3543
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_rawDescData = protoimpl.X.CompressGZIP(file_packages_multitenant_grpc_proto_multitenant_proto_rawDescData)
|
|
3544
|
+
})
|
|
3545
|
+
return file_packages_multitenant_grpc_proto_multitenant_proto_rawDescData
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
var file_packages_multitenant_grpc_proto_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
3549
|
+
var file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 48)
|
|
3550
|
+
var file_packages_multitenant_grpc_proto_multitenant_proto_goTypes = []interface{}{
|
|
3551
|
+
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
3552
|
+
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
3553
|
+
(*PreviewAccount)(nil), // 2: lansweeper.multitenant.v1.PreviewAccount
|
|
3554
|
+
(*GetPreviewAccountByIdRequest)(nil), // 3: lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
3555
|
+
(*GetPreviewAccountByIdResponse)(nil), // 4: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
3556
|
+
(*PreviewSite)(nil), // 5: lansweeper.multitenant.v1.PreviewSite
|
|
3557
|
+
(*PatchSiteModeRequest)(nil), // 6: lansweeper.multitenant.v1.PatchSiteModeRequest
|
|
3558
|
+
(*PatchSiteModeResponse)(nil), // 7: lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
3559
|
+
(*Profile)(nil), // 8: lansweeper.multitenant.v1.Profile
|
|
3560
|
+
(*ListProfilesByAccountIdRequest)(nil), // 9: lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
|
|
3561
|
+
(*ListProfilesByAccountIdResponse)(nil), // 10: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
3562
|
+
(*ListAuthorizedLinkProfilesRequest)(nil), // 11: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
|
|
3563
|
+
(*ListAuthorizedLinkProfilesResponse)(nil), // 12: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
3564
|
+
(*CheckAccessToSiteByAccountIdRequest)(nil), // 13: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
3565
|
+
(*CheckAccessToSiteByAccountIdResponse)(nil), // 14: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
3566
|
+
(*Install)(nil), // 15: lansweeper.multitenant.v1.Install
|
|
3567
|
+
(*InstallCredentials)(nil), // 16: lansweeper.multitenant.v1.InstallCredentials
|
|
3568
|
+
(*GetInstallsCountBySiteRequest)(nil), // 17: lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
|
|
3569
|
+
(*GetInstallsCountResponse)(nil), // 18: lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
3570
|
+
(*GetInstallsBySiteRequest)(nil), // 19: lansweeper.multitenant.v1.GetInstallsBySiteRequest
|
|
3571
|
+
(*GetInstallsBySiteResponse)(nil), // 20: lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
3572
|
+
(*GetInstallbyClientIdRequest)(nil), // 21: lansweeper.multitenant.v1.GetInstallbyClientIdRequest
|
|
3573
|
+
(*GetInstallbyClientIdResponse)(nil), // 22: lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
3574
|
+
(*CreateInstallRequest)(nil), // 23: lansweeper.multitenant.v1.CreateInstallRequest
|
|
3575
|
+
(*CreateInstallResponse)(nil), // 24: lansweeper.multitenant.v1.CreateInstallResponse
|
|
3576
|
+
(*UpdateInstallByClientIdRequest)(nil), // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
|
|
3577
|
+
(*UpdateInstallByClientIdResponse)(nil), // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
3578
|
+
(*RotateInstallByClientIdRequest)(nil), // 27: lansweeper.multitenant.v1.RotateInstallByClientIdRequest
|
|
3579
|
+
(*RotateInstallByClientIdResponse)(nil), // 28: lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
3580
|
+
(*UnlinkInstallByClientIdRequest)(nil), // 29: lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
|
|
3581
|
+
(*UnlinkInstallByClientIdResponse)(nil), // 30: lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
3582
|
+
(*RemoveInstallDataBySiteIdRequest)(nil), // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
|
|
3583
|
+
(*RemoveInstallDataBySiteIdResponse)(nil), // 32: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
3584
|
+
(*GetDuplicatedInstallsByGlobalIdRequest)(nil), // 33: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
|
|
3585
|
+
(*GetDuplicatedInstallsByGlobalIdResponse)(nil), // 34: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
3586
|
+
(*GetUserPermissionsRequest)(nil), // 35: lansweeper.multitenant.v1.GetUserPermissionsRequest
|
|
3587
|
+
(*GetUserPermissionsResponse)(nil), // 36: lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
3588
|
+
(*ValidateApplicationPersonalAccessTokenRequest)(nil), // 37: lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
|
|
3589
|
+
(*ValidateApplicationPersonalAccessTokenResponse)(nil), // 38: lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
3590
|
+
(*DisableWebhookEmailRequest)(nil), // 39: lansweeper.multitenant.v1.DisableWebhookEmailRequest
|
|
3591
|
+
(*DisableWebhookEmailResponse)(nil), // 40: lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
3592
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 41: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
3593
|
+
(*Install_InstallState)(nil), // 42: lansweeper.multitenant.v1.Install.InstallState
|
|
3594
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 43: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
3595
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 44: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
3596
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 45: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
3597
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 46: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
3598
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 47: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
3599
|
+
(*GetUserPermissionsResponse_Role)(nil), // 48: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
3600
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 49: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
3601
|
+
}
|
|
3602
|
+
var file_packages_multitenant_grpc_proto_multitenant_proto_depIdxs = []int32{
|
|
3603
|
+
2, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
3604
|
+
0, // 1: lansweeper.multitenant.v1.PreviewSite.mode:type_name -> lansweeper.multitenant.v1.SiteMode
|
|
3605
|
+
0, // 2: lansweeper.multitenant.v1.PatchSiteModeRequest.mode:type_name -> lansweeper.multitenant.v1.SiteMode
|
|
3606
|
+
5, // 3: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
3607
|
+
8, // 4: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
3608
|
+
8, // 5: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
3609
|
+
41, // 6: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
3610
|
+
42, // 7: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
3611
|
+
43, // 8: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
3612
|
+
15, // 9: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
3613
|
+
15, // 10: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
3614
|
+
15, // 11: lansweeper.multitenant.v1.CreateInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
3615
|
+
16, // 12: lansweeper.multitenant.v1.CreateInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
3616
|
+
44, // 13: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
3617
|
+
15, // 14: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
3618
|
+
45, // 15: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
3619
|
+
15, // 16: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
3620
|
+
48, // 17: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
3621
|
+
49, // 18: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
3622
|
+
1, // 19: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
3623
|
+
1, // 20: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
3624
|
+
46, // 21: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
3625
|
+
15, // 22: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
3626
|
+
47, // 23: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
3627
|
+
13, // 24: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
3628
|
+
3, // 25: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
3629
|
+
9, // 26: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:input_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
|
|
3630
|
+
11, // 27: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:input_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
|
|
3631
|
+
6, // 28: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:input_type -> lansweeper.multitenant.v1.PatchSiteModeRequest
|
|
3632
|
+
23, // 29: lansweeper.multitenant.v1.Multitenant.CreateInstall:input_type -> lansweeper.multitenant.v1.CreateInstallRequest
|
|
3633
|
+
19, // 30: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:input_type -> lansweeper.multitenant.v1.GetInstallsBySiteRequest
|
|
3634
|
+
17, // 31: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:input_type -> lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
|
|
3635
|
+
21, // 32: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:input_type -> lansweeper.multitenant.v1.GetInstallbyClientIdRequest
|
|
3636
|
+
25, // 33: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:input_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
|
|
3637
|
+
27, // 34: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:input_type -> lansweeper.multitenant.v1.RotateInstallByClientIdRequest
|
|
3638
|
+
29, // 35: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:input_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
|
|
3639
|
+
31, // 36: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:input_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
|
|
3640
|
+
33, // 37: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:input_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
|
|
3641
|
+
35, // 38: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:input_type -> lansweeper.multitenant.v1.GetUserPermissionsRequest
|
|
3642
|
+
37, // 39: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:input_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
|
|
3643
|
+
39, // 40: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:input_type -> lansweeper.multitenant.v1.DisableWebhookEmailRequest
|
|
3644
|
+
14, // 41: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
3645
|
+
4, // 42: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
3646
|
+
10, // 43: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
3647
|
+
12, // 44: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
3648
|
+
7, // 45: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
3649
|
+
24, // 46: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
3650
|
+
20, // 47: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
3651
|
+
18, // 48: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
3652
|
+
22, // 49: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
3653
|
+
26, // 50: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
3654
|
+
28, // 51: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
3655
|
+
30, // 52: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
3656
|
+
32, // 53: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
3657
|
+
34, // 54: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
3658
|
+
36, // 55: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
3659
|
+
38, // 56: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
3660
|
+
40, // 57: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
3661
|
+
41, // [41:58] is the sub-list for method output_type
|
|
3662
|
+
24, // [24:41] is the sub-list for method input_type
|
|
3663
|
+
24, // [24:24] is the sub-list for extension type_name
|
|
3664
|
+
24, // [24:24] is the sub-list for extension extendee
|
|
3665
|
+
0, // [0:24] is the sub-list for field type_name
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
func init() { file_packages_multitenant_grpc_proto_multitenant_proto_init() }
|
|
3669
|
+
func file_packages_multitenant_grpc_proto_multitenant_proto_init() {
|
|
3670
|
+
if File_packages_multitenant_grpc_proto_multitenant_proto != nil {
|
|
3671
|
+
return
|
|
3672
|
+
}
|
|
3673
|
+
if !protoimpl.UnsafeEnabled {
|
|
3674
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
3675
|
+
switch v := v.(*PreviewAccount); i {
|
|
3676
|
+
case 0:
|
|
3677
|
+
return &v.state
|
|
3678
|
+
case 1:
|
|
3679
|
+
return &v.sizeCache
|
|
3680
|
+
case 2:
|
|
3681
|
+
return &v.unknownFields
|
|
3682
|
+
default:
|
|
3683
|
+
return nil
|
|
3684
|
+
}
|
|
3685
|
+
}
|
|
3686
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
3687
|
+
switch v := v.(*GetPreviewAccountByIdRequest); i {
|
|
3688
|
+
case 0:
|
|
3689
|
+
return &v.state
|
|
3690
|
+
case 1:
|
|
3691
|
+
return &v.sizeCache
|
|
3692
|
+
case 2:
|
|
3693
|
+
return &v.unknownFields
|
|
3694
|
+
default:
|
|
3695
|
+
return nil
|
|
3696
|
+
}
|
|
3697
|
+
}
|
|
3698
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
3699
|
+
switch v := v.(*GetPreviewAccountByIdResponse); i {
|
|
3700
|
+
case 0:
|
|
3701
|
+
return &v.state
|
|
3702
|
+
case 1:
|
|
3703
|
+
return &v.sizeCache
|
|
3704
|
+
case 2:
|
|
3705
|
+
return &v.unknownFields
|
|
3706
|
+
default:
|
|
3707
|
+
return nil
|
|
3708
|
+
}
|
|
3709
|
+
}
|
|
3710
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
3711
|
+
switch v := v.(*PreviewSite); i {
|
|
3712
|
+
case 0:
|
|
3713
|
+
return &v.state
|
|
3714
|
+
case 1:
|
|
3715
|
+
return &v.sizeCache
|
|
3716
|
+
case 2:
|
|
3717
|
+
return &v.unknownFields
|
|
3718
|
+
default:
|
|
3719
|
+
return nil
|
|
3720
|
+
}
|
|
3721
|
+
}
|
|
3722
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
3723
|
+
switch v := v.(*PatchSiteModeRequest); i {
|
|
3724
|
+
case 0:
|
|
3725
|
+
return &v.state
|
|
3726
|
+
case 1:
|
|
3727
|
+
return &v.sizeCache
|
|
3728
|
+
case 2:
|
|
3729
|
+
return &v.unknownFields
|
|
3730
|
+
default:
|
|
3731
|
+
return nil
|
|
3732
|
+
}
|
|
3733
|
+
}
|
|
3734
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
3735
|
+
switch v := v.(*PatchSiteModeResponse); i {
|
|
3736
|
+
case 0:
|
|
3737
|
+
return &v.state
|
|
3738
|
+
case 1:
|
|
3739
|
+
return &v.sizeCache
|
|
3740
|
+
case 2:
|
|
3741
|
+
return &v.unknownFields
|
|
3742
|
+
default:
|
|
3743
|
+
return nil
|
|
3744
|
+
}
|
|
3745
|
+
}
|
|
3746
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
3747
|
+
switch v := v.(*Profile); i {
|
|
3748
|
+
case 0:
|
|
3749
|
+
return &v.state
|
|
3750
|
+
case 1:
|
|
3751
|
+
return &v.sizeCache
|
|
3752
|
+
case 2:
|
|
3753
|
+
return &v.unknownFields
|
|
3754
|
+
default:
|
|
3755
|
+
return nil
|
|
3756
|
+
}
|
|
3757
|
+
}
|
|
3758
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
3759
|
+
switch v := v.(*ListProfilesByAccountIdRequest); i {
|
|
3760
|
+
case 0:
|
|
3761
|
+
return &v.state
|
|
3762
|
+
case 1:
|
|
3763
|
+
return &v.sizeCache
|
|
3764
|
+
case 2:
|
|
3765
|
+
return &v.unknownFields
|
|
3766
|
+
default:
|
|
3767
|
+
return nil
|
|
3768
|
+
}
|
|
3769
|
+
}
|
|
3770
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
3771
|
+
switch v := v.(*ListProfilesByAccountIdResponse); i {
|
|
3772
|
+
case 0:
|
|
3773
|
+
return &v.state
|
|
3774
|
+
case 1:
|
|
3775
|
+
return &v.sizeCache
|
|
3776
|
+
case 2:
|
|
3777
|
+
return &v.unknownFields
|
|
3778
|
+
default:
|
|
3779
|
+
return nil
|
|
3780
|
+
}
|
|
3781
|
+
}
|
|
3782
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
3783
|
+
switch v := v.(*ListAuthorizedLinkProfilesRequest); i {
|
|
3784
|
+
case 0:
|
|
3785
|
+
return &v.state
|
|
3786
|
+
case 1:
|
|
3787
|
+
return &v.sizeCache
|
|
3788
|
+
case 2:
|
|
3789
|
+
return &v.unknownFields
|
|
3790
|
+
default:
|
|
3791
|
+
return nil
|
|
3792
|
+
}
|
|
3793
|
+
}
|
|
3794
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
3795
|
+
switch v := v.(*ListAuthorizedLinkProfilesResponse); i {
|
|
3796
|
+
case 0:
|
|
3797
|
+
return &v.state
|
|
3798
|
+
case 1:
|
|
3799
|
+
return &v.sizeCache
|
|
3800
|
+
case 2:
|
|
3801
|
+
return &v.unknownFields
|
|
3802
|
+
default:
|
|
3803
|
+
return nil
|
|
3804
|
+
}
|
|
3805
|
+
}
|
|
3806
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
3807
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest); i {
|
|
3808
|
+
case 0:
|
|
3809
|
+
return &v.state
|
|
3810
|
+
case 1:
|
|
3811
|
+
return &v.sizeCache
|
|
3812
|
+
case 2:
|
|
3813
|
+
return &v.unknownFields
|
|
3814
|
+
default:
|
|
3815
|
+
return nil
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
|
3819
|
+
switch v := v.(*CheckAccessToSiteByAccountIdResponse); i {
|
|
3820
|
+
case 0:
|
|
3821
|
+
return &v.state
|
|
3822
|
+
case 1:
|
|
3823
|
+
return &v.sizeCache
|
|
3824
|
+
case 2:
|
|
3825
|
+
return &v.unknownFields
|
|
3826
|
+
default:
|
|
3827
|
+
return nil
|
|
3828
|
+
}
|
|
3829
|
+
}
|
|
3830
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
|
3831
|
+
switch v := v.(*Install); i {
|
|
3832
|
+
case 0:
|
|
3833
|
+
return &v.state
|
|
3834
|
+
case 1:
|
|
3835
|
+
return &v.sizeCache
|
|
3836
|
+
case 2:
|
|
3837
|
+
return &v.unknownFields
|
|
3838
|
+
default:
|
|
3839
|
+
return nil
|
|
3840
|
+
}
|
|
3841
|
+
}
|
|
3842
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
|
3843
|
+
switch v := v.(*InstallCredentials); i {
|
|
3844
|
+
case 0:
|
|
3845
|
+
return &v.state
|
|
3846
|
+
case 1:
|
|
3847
|
+
return &v.sizeCache
|
|
3848
|
+
case 2:
|
|
3849
|
+
return &v.unknownFields
|
|
3850
|
+
default:
|
|
3851
|
+
return nil
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
|
3855
|
+
switch v := v.(*GetInstallsCountBySiteRequest); i {
|
|
3856
|
+
case 0:
|
|
3857
|
+
return &v.state
|
|
3858
|
+
case 1:
|
|
3859
|
+
return &v.sizeCache
|
|
3860
|
+
case 2:
|
|
3861
|
+
return &v.unknownFields
|
|
3862
|
+
default:
|
|
3863
|
+
return nil
|
|
3864
|
+
}
|
|
3865
|
+
}
|
|
3866
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
|
3867
|
+
switch v := v.(*GetInstallsCountResponse); i {
|
|
3868
|
+
case 0:
|
|
3869
|
+
return &v.state
|
|
3870
|
+
case 1:
|
|
3871
|
+
return &v.sizeCache
|
|
3872
|
+
case 2:
|
|
3873
|
+
return &v.unknownFields
|
|
3874
|
+
default:
|
|
3875
|
+
return nil
|
|
3876
|
+
}
|
|
3877
|
+
}
|
|
3878
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
|
3879
|
+
switch v := v.(*GetInstallsBySiteRequest); i {
|
|
3880
|
+
case 0:
|
|
3881
|
+
return &v.state
|
|
3882
|
+
case 1:
|
|
3883
|
+
return &v.sizeCache
|
|
3884
|
+
case 2:
|
|
3885
|
+
return &v.unknownFields
|
|
3886
|
+
default:
|
|
3887
|
+
return nil
|
|
3888
|
+
}
|
|
3889
|
+
}
|
|
3890
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
|
3891
|
+
switch v := v.(*GetInstallsBySiteResponse); i {
|
|
3892
|
+
case 0:
|
|
3893
|
+
return &v.state
|
|
3894
|
+
case 1:
|
|
3895
|
+
return &v.sizeCache
|
|
3896
|
+
case 2:
|
|
3897
|
+
return &v.unknownFields
|
|
3898
|
+
default:
|
|
3899
|
+
return nil
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
|
3903
|
+
switch v := v.(*GetInstallbyClientIdRequest); i {
|
|
3904
|
+
case 0:
|
|
3905
|
+
return &v.state
|
|
3906
|
+
case 1:
|
|
3907
|
+
return &v.sizeCache
|
|
3908
|
+
case 2:
|
|
3909
|
+
return &v.unknownFields
|
|
3910
|
+
default:
|
|
3911
|
+
return nil
|
|
3912
|
+
}
|
|
3913
|
+
}
|
|
3914
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
|
3915
|
+
switch v := v.(*GetInstallbyClientIdResponse); i {
|
|
3916
|
+
case 0:
|
|
3917
|
+
return &v.state
|
|
3918
|
+
case 1:
|
|
3919
|
+
return &v.sizeCache
|
|
3920
|
+
case 2:
|
|
3921
|
+
return &v.unknownFields
|
|
3922
|
+
default:
|
|
3923
|
+
return nil
|
|
3924
|
+
}
|
|
3925
|
+
}
|
|
3926
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
3927
|
+
switch v := v.(*CreateInstallRequest); i {
|
|
3928
|
+
case 0:
|
|
3929
|
+
return &v.state
|
|
3930
|
+
case 1:
|
|
3931
|
+
return &v.sizeCache
|
|
3932
|
+
case 2:
|
|
3933
|
+
return &v.unknownFields
|
|
3934
|
+
default:
|
|
3935
|
+
return nil
|
|
3936
|
+
}
|
|
3937
|
+
}
|
|
3938
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
|
3939
|
+
switch v := v.(*CreateInstallResponse); i {
|
|
3940
|
+
case 0:
|
|
3941
|
+
return &v.state
|
|
3942
|
+
case 1:
|
|
3943
|
+
return &v.sizeCache
|
|
3944
|
+
case 2:
|
|
3945
|
+
return &v.unknownFields
|
|
3946
|
+
default:
|
|
3947
|
+
return nil
|
|
3948
|
+
}
|
|
3949
|
+
}
|
|
3950
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
3951
|
+
switch v := v.(*UpdateInstallByClientIdRequest); i {
|
|
3952
|
+
case 0:
|
|
3953
|
+
return &v.state
|
|
3954
|
+
case 1:
|
|
3955
|
+
return &v.sizeCache
|
|
3956
|
+
case 2:
|
|
3957
|
+
return &v.unknownFields
|
|
3958
|
+
default:
|
|
3959
|
+
return nil
|
|
3960
|
+
}
|
|
3961
|
+
}
|
|
3962
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
|
3963
|
+
switch v := v.(*UpdateInstallByClientIdResponse); i {
|
|
3964
|
+
case 0:
|
|
3965
|
+
return &v.state
|
|
3966
|
+
case 1:
|
|
3967
|
+
return &v.sizeCache
|
|
3968
|
+
case 2:
|
|
3969
|
+
return &v.unknownFields
|
|
3970
|
+
default:
|
|
3971
|
+
return nil
|
|
3972
|
+
}
|
|
3973
|
+
}
|
|
3974
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
|
3975
|
+
switch v := v.(*RotateInstallByClientIdRequest); i {
|
|
3976
|
+
case 0:
|
|
3977
|
+
return &v.state
|
|
3978
|
+
case 1:
|
|
3979
|
+
return &v.sizeCache
|
|
3980
|
+
case 2:
|
|
3981
|
+
return &v.unknownFields
|
|
3982
|
+
default:
|
|
3983
|
+
return nil
|
|
3984
|
+
}
|
|
3985
|
+
}
|
|
3986
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
|
3987
|
+
switch v := v.(*RotateInstallByClientIdResponse); i {
|
|
3988
|
+
case 0:
|
|
3989
|
+
return &v.state
|
|
3990
|
+
case 1:
|
|
3991
|
+
return &v.sizeCache
|
|
3992
|
+
case 2:
|
|
3993
|
+
return &v.unknownFields
|
|
3994
|
+
default:
|
|
3995
|
+
return nil
|
|
3996
|
+
}
|
|
3997
|
+
}
|
|
3998
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
|
3999
|
+
switch v := v.(*UnlinkInstallByClientIdRequest); i {
|
|
4000
|
+
case 0:
|
|
4001
|
+
return &v.state
|
|
4002
|
+
case 1:
|
|
4003
|
+
return &v.sizeCache
|
|
4004
|
+
case 2:
|
|
4005
|
+
return &v.unknownFields
|
|
4006
|
+
default:
|
|
4007
|
+
return nil
|
|
4008
|
+
}
|
|
4009
|
+
}
|
|
4010
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
|
4011
|
+
switch v := v.(*UnlinkInstallByClientIdResponse); i {
|
|
4012
|
+
case 0:
|
|
4013
|
+
return &v.state
|
|
4014
|
+
case 1:
|
|
4015
|
+
return &v.sizeCache
|
|
4016
|
+
case 2:
|
|
4017
|
+
return &v.unknownFields
|
|
4018
|
+
default:
|
|
4019
|
+
return nil
|
|
4020
|
+
}
|
|
4021
|
+
}
|
|
4022
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
|
4023
|
+
switch v := v.(*RemoveInstallDataBySiteIdRequest); i {
|
|
4024
|
+
case 0:
|
|
4025
|
+
return &v.state
|
|
4026
|
+
case 1:
|
|
4027
|
+
return &v.sizeCache
|
|
4028
|
+
case 2:
|
|
4029
|
+
return &v.unknownFields
|
|
4030
|
+
default:
|
|
4031
|
+
return nil
|
|
4032
|
+
}
|
|
4033
|
+
}
|
|
4034
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
|
|
4035
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse); i {
|
|
4036
|
+
case 0:
|
|
4037
|
+
return &v.state
|
|
4038
|
+
case 1:
|
|
4039
|
+
return &v.sizeCache
|
|
4040
|
+
case 2:
|
|
4041
|
+
return &v.unknownFields
|
|
4042
|
+
default:
|
|
4043
|
+
return nil
|
|
4044
|
+
}
|
|
4045
|
+
}
|
|
4046
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
|
|
4047
|
+
switch v := v.(*GetDuplicatedInstallsByGlobalIdRequest); i {
|
|
4048
|
+
case 0:
|
|
4049
|
+
return &v.state
|
|
4050
|
+
case 1:
|
|
4051
|
+
return &v.sizeCache
|
|
4052
|
+
case 2:
|
|
4053
|
+
return &v.unknownFields
|
|
4054
|
+
default:
|
|
4055
|
+
return nil
|
|
4056
|
+
}
|
|
4057
|
+
}
|
|
4058
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
|
|
4059
|
+
switch v := v.(*GetDuplicatedInstallsByGlobalIdResponse); i {
|
|
4060
|
+
case 0:
|
|
4061
|
+
return &v.state
|
|
4062
|
+
case 1:
|
|
4063
|
+
return &v.sizeCache
|
|
4064
|
+
case 2:
|
|
4065
|
+
return &v.unknownFields
|
|
4066
|
+
default:
|
|
4067
|
+
return nil
|
|
4068
|
+
}
|
|
4069
|
+
}
|
|
4070
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
|
|
4071
|
+
switch v := v.(*GetUserPermissionsRequest); i {
|
|
4072
|
+
case 0:
|
|
4073
|
+
return &v.state
|
|
4074
|
+
case 1:
|
|
4075
|
+
return &v.sizeCache
|
|
4076
|
+
case 2:
|
|
4077
|
+
return &v.unknownFields
|
|
4078
|
+
default:
|
|
4079
|
+
return nil
|
|
4080
|
+
}
|
|
4081
|
+
}
|
|
4082
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
|
|
4083
|
+
switch v := v.(*GetUserPermissionsResponse); i {
|
|
4084
|
+
case 0:
|
|
4085
|
+
return &v.state
|
|
4086
|
+
case 1:
|
|
4087
|
+
return &v.sizeCache
|
|
4088
|
+
case 2:
|
|
4089
|
+
return &v.unknownFields
|
|
4090
|
+
default:
|
|
4091
|
+
return nil
|
|
4092
|
+
}
|
|
4093
|
+
}
|
|
4094
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
|
|
4095
|
+
switch v := v.(*ValidateApplicationPersonalAccessTokenRequest); i {
|
|
4096
|
+
case 0:
|
|
4097
|
+
return &v.state
|
|
4098
|
+
case 1:
|
|
4099
|
+
return &v.sizeCache
|
|
4100
|
+
case 2:
|
|
4101
|
+
return &v.unknownFields
|
|
4102
|
+
default:
|
|
4103
|
+
return nil
|
|
4104
|
+
}
|
|
4105
|
+
}
|
|
4106
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
|
|
4107
|
+
switch v := v.(*ValidateApplicationPersonalAccessTokenResponse); i {
|
|
4108
|
+
case 0:
|
|
4109
|
+
return &v.state
|
|
4110
|
+
case 1:
|
|
4111
|
+
return &v.sizeCache
|
|
4112
|
+
case 2:
|
|
4113
|
+
return &v.unknownFields
|
|
4114
|
+
default:
|
|
4115
|
+
return nil
|
|
4116
|
+
}
|
|
4117
|
+
}
|
|
4118
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
|
|
4119
|
+
switch v := v.(*DisableWebhookEmailRequest); i {
|
|
4120
|
+
case 0:
|
|
4121
|
+
return &v.state
|
|
4122
|
+
case 1:
|
|
4123
|
+
return &v.sizeCache
|
|
4124
|
+
case 2:
|
|
4125
|
+
return &v.unknownFields
|
|
4126
|
+
default:
|
|
4127
|
+
return nil
|
|
4128
|
+
}
|
|
4129
|
+
}
|
|
4130
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
|
|
4131
|
+
switch v := v.(*DisableWebhookEmailResponse); i {
|
|
4132
|
+
case 0:
|
|
4133
|
+
return &v.state
|
|
4134
|
+
case 1:
|
|
4135
|
+
return &v.sizeCache
|
|
4136
|
+
case 2:
|
|
4137
|
+
return &v.unknownFields
|
|
4138
|
+
default:
|
|
4139
|
+
return nil
|
|
4140
|
+
}
|
|
4141
|
+
}
|
|
4142
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
|
|
4143
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
4144
|
+
case 0:
|
|
4145
|
+
return &v.state
|
|
4146
|
+
case 1:
|
|
4147
|
+
return &v.sizeCache
|
|
4148
|
+
case 2:
|
|
4149
|
+
return &v.unknownFields
|
|
4150
|
+
default:
|
|
4151
|
+
return nil
|
|
4152
|
+
}
|
|
4153
|
+
}
|
|
4154
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
|
|
4155
|
+
switch v := v.(*Install_InstallState); i {
|
|
4156
|
+
case 0:
|
|
4157
|
+
return &v.state
|
|
4158
|
+
case 1:
|
|
4159
|
+
return &v.sizeCache
|
|
4160
|
+
case 2:
|
|
4161
|
+
return &v.unknownFields
|
|
4162
|
+
default:
|
|
4163
|
+
return nil
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
|
|
4167
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
4168
|
+
case 0:
|
|
4169
|
+
return &v.state
|
|
4170
|
+
case 1:
|
|
4171
|
+
return &v.sizeCache
|
|
4172
|
+
case 2:
|
|
4173
|
+
return &v.unknownFields
|
|
4174
|
+
default:
|
|
4175
|
+
return nil
|
|
4176
|
+
}
|
|
4177
|
+
}
|
|
4178
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
|
|
4179
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
4180
|
+
case 0:
|
|
4181
|
+
return &v.state
|
|
4182
|
+
case 1:
|
|
4183
|
+
return &v.sizeCache
|
|
4184
|
+
case 2:
|
|
4185
|
+
return &v.unknownFields
|
|
4186
|
+
default:
|
|
4187
|
+
return nil
|
|
4188
|
+
}
|
|
4189
|
+
}
|
|
4190
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
|
|
4191
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
4192
|
+
case 0:
|
|
4193
|
+
return &v.state
|
|
4194
|
+
case 1:
|
|
4195
|
+
return &v.sizeCache
|
|
4196
|
+
case 2:
|
|
4197
|
+
return &v.unknownFields
|
|
4198
|
+
default:
|
|
4199
|
+
return nil
|
|
4200
|
+
}
|
|
4201
|
+
}
|
|
4202
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
|
|
4203
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
4204
|
+
case 0:
|
|
4205
|
+
return &v.state
|
|
4206
|
+
case 1:
|
|
4207
|
+
return &v.sizeCache
|
|
4208
|
+
case 2:
|
|
4209
|
+
return &v.unknownFields
|
|
4210
|
+
default:
|
|
4211
|
+
return nil
|
|
4212
|
+
}
|
|
4213
|
+
}
|
|
4214
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
|
|
4215
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
4216
|
+
case 0:
|
|
4217
|
+
return &v.state
|
|
4218
|
+
case 1:
|
|
4219
|
+
return &v.sizeCache
|
|
4220
|
+
case 2:
|
|
4221
|
+
return &v.unknownFields
|
|
4222
|
+
default:
|
|
4223
|
+
return nil
|
|
4224
|
+
}
|
|
4225
|
+
}
|
|
4226
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
|
|
4227
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
4228
|
+
case 0:
|
|
4229
|
+
return &v.state
|
|
4230
|
+
case 1:
|
|
4231
|
+
return &v.sizeCache
|
|
4232
|
+
case 2:
|
|
4233
|
+
return &v.unknownFields
|
|
4234
|
+
default:
|
|
4235
|
+
return nil
|
|
4236
|
+
}
|
|
4237
|
+
}
|
|
4238
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
|
|
4239
|
+
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
4240
|
+
case 0:
|
|
4241
|
+
return &v.state
|
|
4242
|
+
case 1:
|
|
4243
|
+
return &v.sizeCache
|
|
4244
|
+
case 2:
|
|
4245
|
+
return &v.unknownFields
|
|
4246
|
+
default:
|
|
4247
|
+
return nil
|
|
4248
|
+
}
|
|
4249
|
+
}
|
|
4250
|
+
}
|
|
4251
|
+
type x struct{}
|
|
4252
|
+
out := protoimpl.TypeBuilder{
|
|
4253
|
+
File: protoimpl.DescBuilder{
|
|
4254
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
4255
|
+
RawDescriptor: file_packages_multitenant_grpc_proto_multitenant_proto_rawDesc,
|
|
4256
|
+
NumEnums: 2,
|
|
4257
|
+
NumMessages: 48,
|
|
4258
|
+
NumExtensions: 0,
|
|
4259
|
+
NumServices: 1,
|
|
4260
|
+
},
|
|
4261
|
+
GoTypes: file_packages_multitenant_grpc_proto_multitenant_proto_goTypes,
|
|
4262
|
+
DependencyIndexes: file_packages_multitenant_grpc_proto_multitenant_proto_depIdxs,
|
|
4263
|
+
EnumInfos: file_packages_multitenant_grpc_proto_multitenant_proto_enumTypes,
|
|
4264
|
+
MessageInfos: file_packages_multitenant_grpc_proto_multitenant_proto_msgTypes,
|
|
4265
|
+
}.Build()
|
|
4266
|
+
File_packages_multitenant_grpc_proto_multitenant_proto = out.File
|
|
4267
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_rawDesc = nil
|
|
4268
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_goTypes = nil
|
|
4269
|
+
file_packages_multitenant_grpc_proto_multitenant_proto_depIdxs = nil
|
|
4270
|
+
}
|