@lansweeper/data-platform-outbound-grpc 0.1.137 → 0.1.138

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.
@@ -23959,16 +23959,15 @@ func (x *SiteKey) GetSiteId() string {
23959
23959
  return ""
23960
23960
  }
23961
23961
 
23962
+ //*
23963
+ // Configuration of rules for reconciliation.
23964
+ // Wraps a list of ReconRule, site specific.
23962
23965
  type ReconRuleSet struct {
23963
23966
  state protoimpl.MessageState
23964
23967
  sizeCache protoimpl.SizeCache
23965
23968
  unknownFields protoimpl.UnknownFields
23966
23969
 
23967
- Id ReconRuleId `protobuf:"varint,1,opt,name=id,proto3,enum=com.lansweeper.dp.outbound.v1.ReconRuleId" json:"id,omitempty"` // ID of the rule
23968
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Short name
23969
- Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // Description
23970
- Priority int32 `protobuf:"varint,4,opt,name=priority,proto3" json:"priority,omitempty"` // Rule priority (0-100). Every rule has a default.
23971
- Enabled bool `protobuf:"varint,5,opt,name=enabled,proto3" json:"enabled,omitempty"` // Whether the rule is enabled or not for the site.
23970
+ ReconRules []*ReconRule `protobuf:"bytes,1,rep,name=recon_rules,json=reconRules,proto3" json:"recon_rules,omitempty"`
23972
23971
  }
23973
23972
 
23974
23973
  func (x *ReconRuleSet) Reset() {
@@ -24003,35 +24002,88 @@ func (*ReconRuleSet) Descriptor() ([]byte, []int) {
24003
24002
  return file_outbound_proto_rawDescGZIP(), []int{198}
24004
24003
  }
24005
24004
 
24006
- func (x *ReconRuleSet) GetId() ReconRuleId {
24005
+ func (x *ReconRuleSet) GetReconRules() []*ReconRule {
24006
+ if x != nil {
24007
+ return x.ReconRules
24008
+ }
24009
+ return nil
24010
+ }
24011
+
24012
+ //*
24013
+ // Configuration of a single reconciliation rule.
24014
+ type ReconRule struct {
24015
+ state protoimpl.MessageState
24016
+ sizeCache protoimpl.SizeCache
24017
+ unknownFields protoimpl.UnknownFields
24018
+
24019
+ Id ReconRuleId `protobuf:"varint,1,opt,name=id,proto3,enum=com.lansweeper.dp.outbound.v1.ReconRuleId" json:"id,omitempty"` // ID of the rule
24020
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Short name
24021
+ Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // Description
24022
+ Priority int32 `protobuf:"varint,4,opt,name=priority,proto3" json:"priority,omitempty"` // Rule priority (0-100). Every rule has a default.
24023
+ Enabled bool `protobuf:"varint,5,opt,name=enabled,proto3" json:"enabled,omitempty"` // Whether the rule is enabled or not for the site.
24024
+ }
24025
+
24026
+ func (x *ReconRule) Reset() {
24027
+ *x = ReconRule{}
24028
+ if protoimpl.UnsafeEnabled {
24029
+ mi := &file_outbound_proto_msgTypes[199]
24030
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24031
+ ms.StoreMessageInfo(mi)
24032
+ }
24033
+ }
24034
+
24035
+ func (x *ReconRule) String() string {
24036
+ return protoimpl.X.MessageStringOf(x)
24037
+ }
24038
+
24039
+ func (*ReconRule) ProtoMessage() {}
24040
+
24041
+ func (x *ReconRule) ProtoReflect() protoreflect.Message {
24042
+ mi := &file_outbound_proto_msgTypes[199]
24043
+ if protoimpl.UnsafeEnabled && x != nil {
24044
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24045
+ if ms.LoadMessageInfo() == nil {
24046
+ ms.StoreMessageInfo(mi)
24047
+ }
24048
+ return ms
24049
+ }
24050
+ return mi.MessageOf(x)
24051
+ }
24052
+
24053
+ // Deprecated: Use ReconRule.ProtoReflect.Descriptor instead.
24054
+ func (*ReconRule) Descriptor() ([]byte, []int) {
24055
+ return file_outbound_proto_rawDescGZIP(), []int{199}
24056
+ }
24057
+
24058
+ func (x *ReconRule) GetId() ReconRuleId {
24007
24059
  if x != nil {
24008
24060
  return x.Id
24009
24061
  }
24010
24062
  return ReconRuleId_RECONCILE_BY_MAC
24011
24063
  }
24012
24064
 
24013
- func (x *ReconRuleSet) GetName() string {
24065
+ func (x *ReconRule) GetName() string {
24014
24066
  if x != nil {
24015
24067
  return x.Name
24016
24068
  }
24017
24069
  return ""
24018
24070
  }
24019
24071
 
24020
- func (x *ReconRuleSet) GetDescription() string {
24072
+ func (x *ReconRule) GetDescription() string {
24021
24073
  if x != nil {
24022
24074
  return x.Description
24023
24075
  }
24024
24076
  return ""
24025
24077
  }
24026
24078
 
24027
- func (x *ReconRuleSet) GetPriority() int32 {
24079
+ func (x *ReconRule) GetPriority() int32 {
24028
24080
  if x != nil {
24029
24081
  return x.Priority
24030
24082
  }
24031
24083
  return 0
24032
24084
  }
24033
24085
 
24034
- func (x *ReconRuleSet) GetEnabled() bool {
24086
+ func (x *ReconRule) GetEnabled() bool {
24035
24087
  if x != nil {
24036
24088
  return x.Enabled
24037
24089
  }
@@ -24053,7 +24105,7 @@ type InternetExplorer_ActiveX struct {
24053
24105
  func (x *InternetExplorer_ActiveX) Reset() {
24054
24106
  *x = InternetExplorer_ActiveX{}
24055
24107
  if protoimpl.UnsafeEnabled {
24056
- mi := &file_outbound_proto_msgTypes[199]
24108
+ mi := &file_outbound_proto_msgTypes[200]
24057
24109
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24058
24110
  ms.StoreMessageInfo(mi)
24059
24111
  }
@@ -24066,7 +24118,7 @@ func (x *InternetExplorer_ActiveX) String() string {
24066
24118
  func (*InternetExplorer_ActiveX) ProtoMessage() {}
24067
24119
 
24068
24120
  func (x *InternetExplorer_ActiveX) ProtoReflect() protoreflect.Message {
24069
- mi := &file_outbound_proto_msgTypes[199]
24121
+ mi := &file_outbound_proto_msgTypes[200]
24070
24122
  if protoimpl.UnsafeEnabled && x != nil {
24071
24123
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24072
24124
  if ms.LoadMessageInfo() == nil {
@@ -24130,7 +24182,7 @@ type InternetExplorer_Extension struct {
24130
24182
  func (x *InternetExplorer_Extension) Reset() {
24131
24183
  *x = InternetExplorer_Extension{}
24132
24184
  if protoimpl.UnsafeEnabled {
24133
- mi := &file_outbound_proto_msgTypes[200]
24185
+ mi := &file_outbound_proto_msgTypes[201]
24134
24186
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24135
24187
  ms.StoreMessageInfo(mi)
24136
24188
  }
@@ -24143,7 +24195,7 @@ func (x *InternetExplorer_Extension) String() string {
24143
24195
  func (*InternetExplorer_Extension) ProtoMessage() {}
24144
24196
 
24145
24197
  func (x *InternetExplorer_Extension) ProtoReflect() protoreflect.Message {
24146
- mi := &file_outbound_proto_msgTypes[200]
24198
+ mi := &file_outbound_proto_msgTypes[201]
24147
24199
  if protoimpl.UnsafeEnabled && x != nil {
24148
24200
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24149
24201
  if ms.LoadMessageInfo() == nil {
@@ -24234,7 +24286,7 @@ type InternetExplorer_BrowserObject struct {
24234
24286
  func (x *InternetExplorer_BrowserObject) Reset() {
24235
24287
  *x = InternetExplorer_BrowserObject{}
24236
24288
  if protoimpl.UnsafeEnabled {
24237
- mi := &file_outbound_proto_msgTypes[201]
24289
+ mi := &file_outbound_proto_msgTypes[202]
24238
24290
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24239
24291
  ms.StoreMessageInfo(mi)
24240
24292
  }
@@ -24247,7 +24299,7 @@ func (x *InternetExplorer_BrowserObject) String() string {
24247
24299
  func (*InternetExplorer_BrowserObject) ProtoMessage() {}
24248
24300
 
24249
24301
  func (x *InternetExplorer_BrowserObject) ProtoReflect() protoreflect.Message {
24250
- mi := &file_outbound_proto_msgTypes[201]
24302
+ mi := &file_outbound_proto_msgTypes[202]
24251
24303
  if protoimpl.UnsafeEnabled && x != nil {
24252
24304
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24253
24305
  if ms.LoadMessageInfo() == nil {
@@ -24282,7 +24334,7 @@ type InternetExplorer_BarInfo struct {
24282
24334
  func (x *InternetExplorer_BarInfo) Reset() {
24283
24335
  *x = InternetExplorer_BarInfo{}
24284
24336
  if protoimpl.UnsafeEnabled {
24285
- mi := &file_outbound_proto_msgTypes[202]
24337
+ mi := &file_outbound_proto_msgTypes[203]
24286
24338
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24287
24339
  ms.StoreMessageInfo(mi)
24288
24340
  }
@@ -24295,7 +24347,7 @@ func (x *InternetExplorer_BarInfo) String() string {
24295
24347
  func (*InternetExplorer_BarInfo) ProtoMessage() {}
24296
24348
 
24297
24349
  func (x *InternetExplorer_BarInfo) ProtoReflect() protoreflect.Message {
24298
- mi := &file_outbound_proto_msgTypes[202]
24350
+ mi := &file_outbound_proto_msgTypes[203]
24299
24351
  if protoimpl.UnsafeEnabled && x != nil {
24300
24352
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
24301
24353
  if ms.LoadMessageInfo() == nil {
@@ -32043,123 +32095,129 @@ var file_outbound_proto_rawDesc = []byte{
32043
32095
  0x18, 0x0a, 0x16, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75,
32044
32096
  0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x22, 0x22, 0x0a, 0x07, 0x53, 0x69, 0x74,
32045
32097
  0x65, 0x4b, 0x65, 0x79, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18,
32046
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0xb6, 0x01,
32047
- 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x12, 0x3a,
32048
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x6d,
32049
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
32050
- 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e,
32051
- 0x52, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
32052
- 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20,
32053
- 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
32054
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
32055
- 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01,
32056
- 0x28, 0x05, 0x52, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07,
32057
- 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65,
32058
- 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x2a, 0x61, 0x0a, 0x0b, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x52,
32059
- 0x75, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x10, 0x52, 0x45, 0x43, 0x4f, 0x4e, 0x43, 0x49,
32060
- 0x4c, 0x45, 0x5f, 0x42, 0x59, 0x5f, 0x4d, 0x41, 0x43, 0x10, 0x00, 0x12, 0x22, 0x0a, 0x1e, 0x52,
32061
- 0x45, 0x43, 0x4f, 0x4e, 0x43, 0x49, 0x4c, 0x45, 0x5f, 0x42, 0x59, 0x5f, 0x4d, 0x41, 0x4b, 0x45,
32062
- 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x4c, 0x5f, 0x53, 0x45, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12,
32063
- 0x18, 0x0a, 0x14, 0x52, 0x45, 0x43, 0x4f, 0x4e, 0x43, 0x49, 0x4c, 0x45, 0x5f, 0x42, 0x59, 0x5f,
32064
- 0x4e, 0x45, 0x54, 0x42, 0x49, 0x4f, 0x53, 0x10, 0x02, 0x32, 0xa4, 0x05, 0x0a, 0x17, 0x44, 0x61,
32065
- 0x74, 0x61, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x53, 0x65,
32066
- 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69,
32067
- 0x74, 0x79, 0x12, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32098
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x59, 0x0a,
32099
+ 0x0c, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x12, 0x49, 0x0a,
32100
+ 0x0b, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
32101
+ 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32068
32102
  0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
32069
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75,
32070
- 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
32071
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
32072
- 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73,
32073
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x45,
32074
- 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
32075
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
32076
- 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69,
32077
- 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
32078
- 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
32079
- 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e,
32080
- 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
32081
- 0x12, 0x7c, 0x0a, 0x0d, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75,
32082
- 0x70, 0x12, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
32103
+ 0x76, 0x31, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x0a, 0x72, 0x65,
32104
+ 0x63, 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0xb3, 0x01, 0x0a, 0x09, 0x52, 0x65, 0x63,
32105
+ 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x3a, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
32106
+ 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32107
+ 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
32108
+ 0x76, 0x31, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x52, 0x02,
32109
+ 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
32110
+ 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
32111
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73,
32112
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, 0x6f,
32113
+ 0x72, 0x69, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x72, 0x69, 0x6f,
32114
+ 0x72, 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18,
32115
+ 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x2a, 0x61,
32116
+ 0x0a, 0x0b, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a,
32117
+ 0x10, 0x52, 0x45, 0x43, 0x4f, 0x4e, 0x43, 0x49, 0x4c, 0x45, 0x5f, 0x42, 0x59, 0x5f, 0x4d, 0x41,
32118
+ 0x43, 0x10, 0x00, 0x12, 0x22, 0x0a, 0x1e, 0x52, 0x45, 0x43, 0x4f, 0x4e, 0x43, 0x49, 0x4c, 0x45,
32119
+ 0x5f, 0x42, 0x59, 0x5f, 0x4d, 0x41, 0x4b, 0x45, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x4c, 0x5f, 0x53,
32120
+ 0x45, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x52, 0x45, 0x43, 0x4f, 0x4e,
32121
+ 0x43, 0x49, 0x4c, 0x45, 0x5f, 0x42, 0x59, 0x5f, 0x4e, 0x45, 0x54, 0x42, 0x49, 0x4f, 0x53, 0x10,
32122
+ 0x02, 0x32, 0xa4, 0x05, 0x0a, 0x17, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x75,
32123
+ 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x70, 0x0a,
32124
+ 0x09, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2f, 0x2e, 0x63, 0x6f, 0x6d,
32125
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
32126
+ 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e,
32127
+ 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x63, 0x6f,
32128
+ 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
32129
+ 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45,
32130
+ 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
32131
+ 0x77, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12,
32132
+ 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
32133
+ 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
32134
+ 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
32135
+ 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
32083
32136
  0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
32084
- 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x52,
32085
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
32086
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
32087
- 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f,
32088
- 0x6f, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8e,
32089
- 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
32090
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x39, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
32137
+ 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70,
32138
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x7c, 0x0a, 0x0d, 0x43, 0x61, 0x74, 0x61,
32139
+ 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x12, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
32140
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
32141
+ 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f,
32142
+ 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34,
32143
+ 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
32144
+ 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43,
32145
+ 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70,
32146
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8e, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x49, 0x70,
32147
+ 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x39,
32148
+ 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
32149
+ 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47,
32150
+ 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66,
32151
+ 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
32152
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
32153
+ 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x70, 0x4c,
32154
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73,
32155
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8e, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x49,
32156
+ 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12,
32157
+ 0x39, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
32158
+ 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
32159
+ 0x53, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e,
32160
+ 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x6f, 0x6d,
32161
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
32162
+ 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x49, 0x70,
32163
+ 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65,
32164
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x32, 0xdc, 0x06, 0x0a, 0x19, 0x44, 0x61, 0x74,
32165
+ 0x61, 0x43, 0x6f, 0x72, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x65, 0x53,
32166
+ 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5c, 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
32167
+ 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
32091
32168
  0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
32092
- 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61,
32093
- 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
32094
- 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
32169
+ 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x1a, 0x25, 0x2e,
32170
+ 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64,
32171
+ 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e,
32172
+ 0x74, 0x69, 0x74, 0x79, 0x12, 0x5c, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74,
32173
+ 0x12, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
32174
+ 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
32175
+ 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68, 0x1a, 0x25, 0x2e, 0x63, 0x6f,
32176
+ 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
32177
+ 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69,
32178
+ 0x74, 0x79, 0x12, 0x5b, 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65,
32179
+ 0x74, 0x12, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
32095
32180
  0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
32096
- 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43,
32097
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
32098
- 0x8e, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
32099
- 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x39, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
32100
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
32101
- 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63,
32102
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
32103
- 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32104
- 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
32105
- 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x49, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
32106
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
32107
- 0x32, 0xdc, 0x06, 0x0a, 0x19, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x65, 0x42, 0x61, 0x63,
32108
- 0x6b, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5c,
32109
- 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x25,
32181
+ 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
32182
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
32183
+ 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12,
32184
+ 0x5f, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x29,
32110
32185
  0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
32111
32186
  0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45,
32112
- 0x6e, 0x74, 0x69, 0x74, 0x79, 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
32113
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
32114
- 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x5c, 0x0a, 0x08,
32115
- 0x47, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
32116
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
32117
- 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50,
32118
- 0x61, 0x74, 0x68, 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
32119
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
32120
- 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x5b, 0x0a, 0x0b, 0x55, 0x70,
32121
- 0x64, 0x61, 0x74, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
32187
+ 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68, 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
32122
32188
  0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
32123
32189
  0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
32124
- 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
32125
- 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
32126
- 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x5f, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74,
32127
- 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
32128
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
32129
- 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74,
32130
- 0x68, 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
32131
- 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
32132
- 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x62, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74,
32133
- 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
32134
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
32135
- 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x46, 0x69, 0x6c,
32136
- 0x74, 0x65, 0x72, 0x1a, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
32137
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
32138
- 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x30, 0x01, 0x12, 0x56, 0x0a, 0x0a,
32139
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x12, 0x23, 0x2e, 0x63, 0x6f, 0x6d,
32140
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
32141
- 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x1a,
32142
- 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
32143
- 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
32144
- 0x53, 0x69, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x12,
32145
- 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
32146
- 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
32147
- 0x53, 0x69, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
32190
+ 0x12, 0x62, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x2b,
32191
+ 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
32192
+ 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45,
32193
+ 0x6e, 0x74, 0x69, 0x74, 0x79, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x1a, 0x25, 0x2e, 0x63, 0x6f,
32194
+ 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
32195
+ 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69,
32196
+ 0x74, 0x79, 0x30, 0x01, 0x12, 0x56, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x69,
32197
+ 0x74, 0x65, 0x12, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32198
+ 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
32199
+ 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x1a, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
32148
32200
  0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
32149
- 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x0a,
32150
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x12, 0x23, 0x2e, 0x63, 0x6f, 0x6d,
32151
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
32152
- 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x1a,
32201
+ 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x07,
32202
+ 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
32203
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
32204
+ 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x1a,
32153
32205
  0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
32154
32206
  0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
32155
- 0x53, 0x69, 0x74, 0x65, 0x12, 0x59, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x69,
32156
- 0x74, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32207
+ 0x53, 0x69, 0x74, 0x65, 0x12, 0x56, 0x0a, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69,
32208
+ 0x74, 0x65, 0x12, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32157
32209
  0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
32158
- 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x6f, 0x6d,
32210
+ 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x1a, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
32211
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
32212
+ 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x12, 0x59, 0x0a, 0x0a,
32213
+ 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x6f, 0x6d,
32159
32214
  0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
32160
- 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x42,
32161
- 0x12, 0x50, 0x01, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64,
32162
- 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
32215
+ 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4b,
32216
+ 0x65, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
32217
+ 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
32218
+ 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x42, 0x12, 0x50, 0x01, 0x5a, 0x0e, 0x2e, 0x2f, 0x67,
32219
+ 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f,
32220
+ 0x74, 0x6f, 0x33,
32163
32221
  }
32164
32222
 
32165
32223
  var (
@@ -32175,7 +32233,7 @@ func file_outbound_proto_rawDescGZIP() []byte {
32175
32233
  }
32176
32234
 
32177
32235
  var file_outbound_proto_enumTypes = make([]protoimpl.EnumInfo, 13)
32178
- var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo, 203)
32236
+ var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo, 204)
32179
32237
  var file_outbound_proto_goTypes = []interface{}{
32180
32238
  (ReconRuleId)(0), // 0: com.lansweeper.dp.outbound.v1.ReconRuleId
32181
32239
  (EntityFilter_EntryState)(0), // 1: com.lansweeper.dp.outbound.v1.EntityFilter.EntryState
@@ -32389,16 +32447,17 @@ var file_outbound_proto_goTypes = []interface{}{
32389
32447
  (*IpLocationConfig)(nil), // 209: com.lansweeper.dp.outbound.v1.IpLocationConfig
32390
32448
  (*SiteKey)(nil), // 210: com.lansweeper.dp.outbound.v1.SiteKey
32391
32449
  (*ReconRuleSet)(nil), // 211: com.lansweeper.dp.outbound.v1.ReconRuleSet
32392
- (*InternetExplorer_ActiveX)(nil), // 212: com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX
32393
- (*InternetExplorer_Extension)(nil), // 213: com.lansweeper.dp.outbound.v1.InternetExplorer.Extension
32394
- (*InternetExplorer_BrowserObject)(nil), // 214: com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject
32395
- (*InternetExplorer_BarInfo)(nil), // 215: com.lansweeper.dp.outbound.v1.InternetExplorer.BarInfo
32396
- (*timestamppb.Timestamp)(nil), // 216: google.protobuf.Timestamp
32397
- (*anypb.Any)(nil), // 217: google.protobuf.Any
32450
+ (*ReconRule)(nil), // 212: com.lansweeper.dp.outbound.v1.ReconRule
32451
+ (*InternetExplorer_ActiveX)(nil), // 213: com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX
32452
+ (*InternetExplorer_Extension)(nil), // 214: com.lansweeper.dp.outbound.v1.InternetExplorer.Extension
32453
+ (*InternetExplorer_BrowserObject)(nil), // 215: com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject
32454
+ (*InternetExplorer_BarInfo)(nil), // 216: com.lansweeper.dp.outbound.v1.InternetExplorer.BarInfo
32455
+ (*timestamppb.Timestamp)(nil), // 217: google.protobuf.Timestamp
32456
+ (*anypb.Any)(nil), // 218: google.protobuf.Any
32398
32457
  }
32399
32458
  var file_outbound_proto_depIdxs = []int32{
32400
32459
  210, // 0: com.lansweeper.dp.outbound.v1.Site.key:type_name -> com.lansweeper.dp.outbound.v1.SiteKey
32401
- 216, // 1: com.lansweeper.dp.outbound.v1.Site.last_update:type_name -> google.protobuf.Timestamp
32460
+ 217, // 1: com.lansweeper.dp.outbound.v1.Site.last_update:type_name -> google.protobuf.Timestamp
32402
32461
  211, // 2: com.lansweeper.dp.outbound.v1.Site.recon_rule_set:type_name -> com.lansweeper.dp.outbound.v1.ReconRuleSet
32403
32462
  209, // 3: com.lansweeper.dp.outbound.v1.Site.ip_location_configs:type_name -> com.lansweeper.dp.outbound.v1.IpLocationConfig
32404
32463
  1, // 4: com.lansweeper.dp.outbound.v1.EntityFilter.entry_state:type_name -> com.lansweeper.dp.outbound.v1.EntityFilter.EntryState
@@ -32418,10 +32477,10 @@ var file_outbound_proto_depIdxs = []int32{
32418
32477
  209, // 18: com.lansweeper.dp.outbound.v1.SetIpLocationConfigRequest.config:type_name -> com.lansweeper.dp.outbound.v1.IpLocationConfig
32419
32478
  27, // 19: com.lansweeper.dp.outbound.v1.Entity.asset:type_name -> com.lansweeper.dp.outbound.v1.Asset
32420
32479
  25, // 20: com.lansweeper.dp.outbound.v1.Asset.id:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
32421
- 216, // 21: com.lansweeper.dp.outbound.v1.Asset.last_synced:type_name -> google.protobuf.Timestamp
32422
- 216, // 22: com.lansweeper.dp.outbound.v1.Asset.first_seen:type_name -> google.protobuf.Timestamp
32423
- 216, // 23: com.lansweeper.dp.outbound.v1.Asset.last_updated:type_name -> google.protobuf.Timestamp
32424
- 216, // 24: com.lansweeper.dp.outbound.v1.Asset.last_enriched:type_name -> google.protobuf.Timestamp
32480
+ 217, // 21: com.lansweeper.dp.outbound.v1.Asset.last_synced:type_name -> google.protobuf.Timestamp
32481
+ 217, // 22: com.lansweeper.dp.outbound.v1.Asset.first_seen:type_name -> google.protobuf.Timestamp
32482
+ 217, // 23: com.lansweeper.dp.outbound.v1.Asset.last_updated:type_name -> google.protobuf.Timestamp
32483
+ 217, // 24: com.lansweeper.dp.outbound.v1.Asset.last_enriched:type_name -> google.protobuf.Timestamp
32425
32484
  49, // 25: com.lansweeper.dp.outbound.v1.Asset.source_info:type_name -> com.lansweeper.dp.outbound.v1.SourceInfo
32426
32485
  49, // 26: com.lansweeper.dp.outbound.v1.Asset.unlinked_source_info:type_name -> com.lansweeper.dp.outbound.v1.SourceInfo
32427
32486
  50, // 27: com.lansweeper.dp.outbound.v1.Asset.scan_error:type_name -> com.lansweeper.dp.outbound.v1.ScanError
@@ -32445,14 +32504,14 @@ var file_outbound_proto_depIdxs = []int32{
32445
32504
  43, // 45: com.lansweeper.dp.outbound.v1.Asset.ot_module:type_name -> com.lansweeper.dp.outbound.v1.OtModule
32446
32505
  42, // 46: com.lansweeper.dp.outbound.v1.Asset.cloud:type_name -> com.lansweeper.dp.outbound.v1.CloudEntity
32447
32506
  28, // 47: com.lansweeper.dp.outbound.v1.Asset.change_log:type_name -> com.lansweeper.dp.outbound.v1.AssetChangeEvent
32448
- 216, // 48: com.lansweeper.dp.outbound.v1.AssetChangeEvent.timestamp:type_name -> google.protobuf.Timestamp
32507
+ 217, // 48: com.lansweeper.dp.outbound.v1.AssetChangeEvent.timestamp:type_name -> google.protobuf.Timestamp
32449
32508
  199, // 49: com.lansweeper.dp.outbound.v1.AssetChangeEvent.sw:type_name -> com.lansweeper.dp.outbound.v1.SoftwareChangeEvent
32450
32509
  70, // 50: com.lansweeper.dp.outbound.v1.AssetChangeEvent.os:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent
32451
32510
  62, // 51: com.lansweeper.dp.outbound.v1.AssetChangeEvent.sql_server:type_name -> com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent
32452
- 216, // 52: com.lansweeper.dp.outbound.v1.WarrantyInfo.timestamp:type_name -> google.protobuf.Timestamp
32453
- 216, // 53: com.lansweeper.dp.outbound.v1.WarrantyInfo.start_date:type_name -> google.protobuf.Timestamp
32454
- 216, // 54: com.lansweeper.dp.outbound.v1.WarrantyInfo.end_date:type_name -> google.protobuf.Timestamp
32455
- 216, // 55: com.lansweeper.dp.outbound.v1.WarrantyInfo.ship_date:type_name -> google.protobuf.Timestamp
32511
+ 217, // 52: com.lansweeper.dp.outbound.v1.WarrantyInfo.timestamp:type_name -> google.protobuf.Timestamp
32512
+ 217, // 53: com.lansweeper.dp.outbound.v1.WarrantyInfo.start_date:type_name -> google.protobuf.Timestamp
32513
+ 217, // 54: com.lansweeper.dp.outbound.v1.WarrantyInfo.end_date:type_name -> google.protobuf.Timestamp
32514
+ 217, // 55: com.lansweeper.dp.outbound.v1.WarrantyInfo.ship_date:type_name -> google.protobuf.Timestamp
32456
32515
  83, // 56: com.lansweeper.dp.outbound.v1.Computer.chassis:type_name -> com.lansweeper.dp.outbound.v1.Chassis
32457
32516
  127, // 57: com.lansweeper.dp.outbound.v1.Computer.motherboard:type_name -> com.lansweeper.dp.outbound.v1.Motherboard
32458
32517
  82, // 58: com.lansweeper.dp.outbound.v1.Computer.processor:type_name -> com.lansweeper.dp.outbound.v1.Processor
@@ -32537,20 +32596,20 @@ var file_outbound_proto_depIdxs = []int32{
32537
32596
  54, // 137: com.lansweeper.dp.outbound.v1.Computer.user_group:type_name -> com.lansweeper.dp.outbound.v1.UserGroup
32538
32597
  55, // 138: com.lansweeper.dp.outbound.v1.Computer.user_in_group:type_name -> com.lansweeper.dp.outbound.v1.UserInGroup
32539
32598
  32, // 139: com.lansweeper.dp.outbound.v1.ServerGroup.sccm_info:type_name -> com.lansweeper.dp.outbound.v1.SccmInfo
32540
- 216, // 140: com.lansweeper.dp.outbound.v1.SccmInfo.timestamp:type_name -> google.protobuf.Timestamp
32599
+ 217, // 140: com.lansweeper.dp.outbound.v1.SccmInfo.timestamp:type_name -> google.protobuf.Timestamp
32541
32600
  33, // 141: com.lansweeper.dp.outbound.v1.SccmInfo.sccm_server:type_name -> com.lansweeper.dp.outbound.v1.SccmServer
32542
32601
  34, // 142: com.lansweeper.dp.outbound.v1.SccmInfo.sccm_site:type_name -> com.lansweeper.dp.outbound.v1.SccmSite
32543
32602
  35, // 143: com.lansweeper.dp.outbound.v1.SccmInfo.sccm_client:type_name -> com.lansweeper.dp.outbound.v1.SccmClient
32544
- 216, // 144: com.lansweeper.dp.outbound.v1.SccmInfo.creation_date:type_name -> google.protobuf.Timestamp
32603
+ 217, // 144: com.lansweeper.dp.outbound.v1.SccmInfo.creation_date:type_name -> google.protobuf.Timestamp
32545
32604
  25, // 145: com.lansweeper.dp.outbound.v1.SccmServer.server:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
32546
32605
  186, // 146: com.lansweeper.dp.outbound.v1.SccmClient.client_edition:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32547
32606
  25, // 147: com.lansweeper.dp.outbound.v1.Relation.from:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
32548
32607
  25, // 148: com.lansweeper.dp.outbound.v1.Relation.to:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
32549
- 216, // 149: com.lansweeper.dp.outbound.v1.Relation.start:type_name -> google.protobuf.Timestamp
32550
- 216, // 150: com.lansweeper.dp.outbound.v1.Relation.end:type_name -> google.protobuf.Timestamp
32608
+ 217, // 149: com.lansweeper.dp.outbound.v1.Relation.start:type_name -> google.protobuf.Timestamp
32609
+ 217, // 150: com.lansweeper.dp.outbound.v1.Relation.end:type_name -> google.protobuf.Timestamp
32551
32610
  36, // 151: com.lansweeper.dp.outbound.v1.Relation.tag:type_name -> com.lansweeper.dp.outbound.v1.Tag
32552
32611
  39, // 152: com.lansweeper.dp.outbound.v1.CorrelationFields.field:type_name -> com.lansweeper.dp.outbound.v1.CorrField
32553
- 216, // 153: com.lansweeper.dp.outbound.v1.ReconciliationInfo.correlation_time:type_name -> google.protobuf.Timestamp
32612
+ 217, // 153: com.lansweeper.dp.outbound.v1.ReconciliationInfo.correlation_time:type_name -> google.protobuf.Timestamp
32554
32613
  3, // 154: com.lansweeper.dp.outbound.v1.ReconciliationInfo.state:type_name -> com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState
32555
32614
  4, // 155: com.lansweeper.dp.outbound.v1.ReconciliationInfo.master_type:type_name -> com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType
32556
32615
  41, // 156: com.lansweeper.dp.outbound.v1.ReconciliationInfo.master_asset:type_name -> com.lansweeper.dp.outbound.v1.CorrelationInfo
@@ -32559,24 +32618,24 @@ var file_outbound_proto_depIdxs = []int32{
32559
32618
  41, // 159: com.lansweeper.dp.outbound.v1.ReconciliationInfo.unlinked_alias_asset:type_name -> com.lansweeper.dp.outbound.v1.CorrelationInfo
32560
32619
  25, // 160: com.lansweeper.dp.outbound.v1.CorrelationInfo.entity:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
32561
32620
  38, // 161: com.lansweeper.dp.outbound.v1.CorrelationInfo.correlation_fields:type_name -> com.lansweeper.dp.outbound.v1.CorrelationFields
32562
- 217, // 162: com.lansweeper.dp.outbound.v1.CloudEntity.body:type_name -> google.protobuf.Any
32621
+ 218, // 162: com.lansweeper.dp.outbound.v1.CloudEntity.body:type_name -> google.protobuf.Any
32563
32622
  44, // 163: com.lansweeper.dp.outbound.v1.OtModule.bus_config:type_name -> com.lansweeper.dp.outbound.v1.OtBusConfig
32564
32623
  45, // 164: com.lansweeper.dp.outbound.v1.OtModule.ext_info:type_name -> com.lansweeper.dp.outbound.v1.OtModuleExtInfo
32565
32624
  46, // 165: com.lansweeper.dp.outbound.v1.OtModule.scan_info:type_name -> com.lansweeper.dp.outbound.v1.OtScanInfo
32566
32625
  47, // 166: com.lansweeper.dp.outbound.v1.OtModule.fw_history:type_name -> com.lansweeper.dp.outbound.v1.OtFirmwareHistory
32567
- 216, // 167: com.lansweeper.dp.outbound.v1.OtScanInfo.last_tried:type_name -> google.protobuf.Timestamp
32568
- 216, // 168: com.lansweeper.dp.outbound.v1.OtScanInfo.last_scan:type_name -> google.protobuf.Timestamp
32569
- 216, // 169: com.lansweeper.dp.outbound.v1.OtFirmwareHistory.from:type_name -> google.protobuf.Timestamp
32570
- 216, // 170: com.lansweeper.dp.outbound.v1.OtFirmwareHistory.until:type_name -> google.protobuf.Timestamp
32571
- 216, // 171: com.lansweeper.dp.outbound.v1.SourceInfo.last_synced:type_name -> google.protobuf.Timestamp
32572
- 216, // 172: com.lansweeper.dp.outbound.v1.ScanError.timestamp:type_name -> google.protobuf.Timestamp
32626
+ 217, // 167: com.lansweeper.dp.outbound.v1.OtScanInfo.last_tried:type_name -> google.protobuf.Timestamp
32627
+ 217, // 168: com.lansweeper.dp.outbound.v1.OtScanInfo.last_scan:type_name -> google.protobuf.Timestamp
32628
+ 217, // 169: com.lansweeper.dp.outbound.v1.OtFirmwareHistory.from:type_name -> google.protobuf.Timestamp
32629
+ 217, // 170: com.lansweeper.dp.outbound.v1.OtFirmwareHistory.until:type_name -> google.protobuf.Timestamp
32630
+ 217, // 171: com.lansweeper.dp.outbound.v1.SourceInfo.last_synced:type_name -> google.protobuf.Timestamp
32631
+ 217, // 172: com.lansweeper.dp.outbound.v1.ScanError.timestamp:type_name -> google.protobuf.Timestamp
32573
32632
  48, // 173: com.lansweeper.dp.outbound.v1.CoreFields.type:type_name -> com.lansweeper.dp.outbound.v1.AssetType
32574
32633
  186, // 174: com.lansweeper.dp.outbound.v1.UserAccount.account_type:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32575
32634
  186, // 175: com.lansweeper.dp.outbound.v1.UserAccount.sid_type:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32576
- 212, // 176: com.lansweeper.dp.outbound.v1.InternetExplorer.active_x:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX
32577
- 214, // 177: com.lansweeper.dp.outbound.v1.InternetExplorer.bar:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject
32578
- 214, // 178: com.lansweeper.dp.outbound.v1.InternetExplorer.browser_object:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject
32579
- 213, // 179: com.lansweeper.dp.outbound.v1.InternetExplorer.extension:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.Extension
32635
+ 213, // 176: com.lansweeper.dp.outbound.v1.InternetExplorer.active_x:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX
32636
+ 215, // 177: com.lansweeper.dp.outbound.v1.InternetExplorer.bar:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject
32637
+ 215, // 178: com.lansweeper.dp.outbound.v1.InternetExplorer.browser_object:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject
32638
+ 214, // 179: com.lansweeper.dp.outbound.v1.InternetExplorer.extension:type_name -> com.lansweeper.dp.outbound.v1.InternetExplorer.Extension
32580
32639
  5, // 180: com.lansweeper.dp.outbound.v1.WindowsSqlServer.sql_authentication_mode:type_name -> com.lansweeper.dp.outbound.v1.WindowsSqlServer.SqlAuthenticationMode
32581
32640
  58, // 181: com.lansweeper.dp.outbound.v1.WindowsSqlServer.databases:type_name -> com.lansweeper.dp.outbound.v1.SqlServerDatabase
32582
32641
  59, // 182: com.lansweeper.dp.outbound.v1.WindowsSqlServer.services:type_name -> com.lansweeper.dp.outbound.v1.SqlServerService
@@ -32586,8 +32645,8 @@ var file_outbound_proto_depIdxs = []int32{
32586
32645
  7, // 186: com.lansweeper.dp.outbound.v1.SqlServerService.startup_type:type_name -> com.lansweeper.dp.outbound.v1.SqlServerService.ServiceStartupType
32587
32646
  61, // 187: com.lansweeper.dp.outbound.v1.SqlServerCluster.cluster_nodes:type_name -> com.lansweeper.dp.outbound.v1.SqlServerClusterNode
32588
32647
  8, // 188: com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.event_type:type_name -> com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.EventType
32589
- 216, // 189: com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.start:type_name -> google.protobuf.Timestamp
32590
- 216, // 190: com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.end:type_name -> google.protobuf.Timestamp
32648
+ 217, // 189: com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.start:type_name -> google.protobuf.Timestamp
32649
+ 217, // 190: com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.end:type_name -> google.protobuf.Timestamp
32591
32650
  57, // 191: com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.windows_sql_server:type_name -> com.lansweeper.dp.outbound.v1.WindowsSqlServer
32592
32651
  64, // 192: com.lansweeper.dp.outbound.v1.HardwareInfo.spec:type_name -> com.lansweeper.dp.outbound.v1.SpecHardwareInfo
32593
32652
  201, // 193: com.lansweeper.dp.outbound.v1.HardwareInfo.catalog_brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
@@ -32596,29 +32655,29 @@ var file_outbound_proto_depIdxs = []int32{
32596
32655
  69, // 196: com.lansweeper.dp.outbound.v1.OperatingSystem.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo
32597
32656
  66, // 197: com.lansweeper.dp.outbound.v1.OperatingSystem.mac:type_name -> com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo
32598
32657
  67, // 198: com.lansweeper.dp.outbound.v1.OperatingSystem.linux:type_name -> com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo
32599
- 216, // 199: com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo.install_date:type_name -> google.protobuf.Timestamp
32658
+ 217, // 199: com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo.install_date:type_name -> google.protobuf.Timestamp
32600
32659
  186, // 200: com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo.os_language:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32601
32660
  186, // 201: com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo.os_product_suite:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32602
32661
  186, // 202: com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo.os_type:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32603
32662
  186, // 203: com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo.product_type:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32604
32663
  9, // 204: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.event_type:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.EventType
32605
- 216, // 205: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.start:type_name -> google.protobuf.Timestamp
32606
- 216, // 206: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.end:type_name -> google.protobuf.Timestamp
32664
+ 217, // 205: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.start:type_name -> google.protobuf.Timestamp
32665
+ 217, // 206: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.end:type_name -> google.protobuf.Timestamp
32607
32666
  65, // 207: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.os:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystem
32608
32667
  65, // 208: com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.prev_os:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystem
32609
- 216, // 209: com.lansweeper.dp.outbound.v1.OperatingSystemPatch.install_date:type_name -> google.protobuf.Timestamp
32610
- 216, // 210: com.lansweeper.dp.outbound.v1.NetworkInterfaces.timestamp:type_name -> google.protobuf.Timestamp
32668
+ 217, // 209: com.lansweeper.dp.outbound.v1.OperatingSystemPatch.install_date:type_name -> google.protobuf.Timestamp
32669
+ 217, // 210: com.lansweeper.dp.outbound.v1.NetworkInterfaces.timestamp:type_name -> google.protobuf.Timestamp
32611
32670
  74, // 211: com.lansweeper.dp.outbound.v1.NetworkInterfaces.interface:type_name -> com.lansweeper.dp.outbound.v1.NetworkInterface
32612
32671
  75, // 212: com.lansweeper.dp.outbound.v1.NetworkInterface.ip:type_name -> com.lansweeper.dp.outbound.v1.NetIpAddress
32613
32672
  186, // 213: com.lansweeper.dp.outbound.v1.NetworkInterface.admin_status:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32614
32673
  186, // 214: com.lansweeper.dp.outbound.v1.NetworkInterface.oper_status:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32615
- 216, // 215: com.lansweeper.dp.outbound.v1.PortScan.timestamp:type_name -> google.protobuf.Timestamp
32674
+ 217, // 215: com.lansweeper.dp.outbound.v1.PortScan.timestamp:type_name -> google.protobuf.Timestamp
32616
32675
  78, // 216: com.lansweeper.dp.outbound.v1.PortScan.scanned_port:type_name -> com.lansweeper.dp.outbound.v1.ScannedPort
32617
32676
  80, // 217: com.lansweeper.dp.outbound.v1.ScannedPort.http_server:type_name -> com.lansweeper.dp.outbound.v1.HttpServerInfo
32618
- 216, // 218: com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics.last_run:type_name -> google.protobuf.Timestamp
32677
+ 217, // 218: com.lansweeper.dp.outbound.v1.ComputerMacDiagnostics.last_run:type_name -> google.protobuf.Timestamp
32619
32678
  81, // 219: com.lansweeper.dp.outbound.v1.HttpServerInfo.certificates:type_name -> com.lansweeper.dp.outbound.v1.HttpCertificate
32620
- 216, // 220: com.lansweeper.dp.outbound.v1.HttpCertificate.effective_date:type_name -> google.protobuf.Timestamp
32621
- 216, // 221: com.lansweeper.dp.outbound.v1.HttpCertificate.expiration_date:type_name -> google.protobuf.Timestamp
32679
+ 217, // 220: com.lansweeper.dp.outbound.v1.HttpCertificate.effective_date:type_name -> google.protobuf.Timestamp
32680
+ 217, // 221: com.lansweeper.dp.outbound.v1.HttpCertificate.expiration_date:type_name -> google.protobuf.Timestamp
32622
32681
  10, // 222: com.lansweeper.dp.outbound.v1.HttpCertificate.errors:type_name -> com.lansweeper.dp.outbound.v1.HttpCertificate.SslPolicyErrors
32623
32682
  186, // 223: com.lansweeper.dp.outbound.v1.Processor.architecture:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32624
32683
  186, // 224: com.lansweeper.dp.outbound.v1.Processor.family:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
@@ -32656,9 +32715,9 @@ var file_outbound_proto_depIdxs = []int32{
32656
32715
  185, // 256: com.lansweeper.dp.outbound.v1.Driver.mac_ppds:type_name -> com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem
32657
32716
  185, // 257: com.lansweeper.dp.outbound.v1.Driver.mac_printers:type_name -> com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem
32658
32717
  185, // 258: com.lansweeper.dp.outbound.v1.Driver.mac_system_library_extensions:type_name -> com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem
32659
- 216, // 259: com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver.driver_date:type_name -> google.protobuf.Timestamp
32718
+ 217, // 259: com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver.driver_date:type_name -> google.protobuf.Timestamp
32660
32719
  106, // 260: com.lansweeper.dp.outbound.v1.MacOsKernelExtension.dependency_errors:type_name -> com.lansweeper.dp.outbound.v1.KernelExtensionErrorType
32661
- 216, // 261: com.lansweeper.dp.outbound.v1.MacOsKernelExtension.last_modified:type_name -> google.protobuf.Timestamp
32720
+ 217, // 261: com.lansweeper.dp.outbound.v1.MacOsKernelExtension.last_modified:type_name -> google.protobuf.Timestamp
32662
32721
  106, // 262: com.lansweeper.dp.outbound.v1.MacOsKernelExtension.validity_errors:type_name -> com.lansweeper.dp.outbound.v1.KernelExtensionErrorType
32663
32722
  107, // 263: com.lansweeper.dp.outbound.v1.KernelExtensionErrorType.errors:type_name -> com.lansweeper.dp.outbound.v1.KernelExtensionError
32664
32723
  74, // 264: com.lansweeper.dp.outbound.v1.ComputerMacNetworkLocation.location_services:type_name -> com.lansweeper.dp.outbound.v1.NetworkInterface
@@ -32672,12 +32731,12 @@ var file_outbound_proto_depIdxs = []int32{
32672
32731
  186, // 272: com.lansweeper.dp.outbound.v1.GraphicsCard.video_architecture:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32673
32732
  120, // 273: com.lansweeper.dp.outbound.v1.Bios.win:type_name -> com.lansweeper.dp.outbound.v1.WindowsBios
32674
32733
  121, // 274: com.lansweeper.dp.outbound.v1.Bios.linux:type_name -> com.lansweeper.dp.outbound.v1.LinuxBios
32675
- 216, // 275: com.lansweeper.dp.outbound.v1.Bios.release_date:type_name -> google.protobuf.Timestamp
32734
+ 217, // 275: com.lansweeper.dp.outbound.v1.Bios.release_date:type_name -> google.protobuf.Timestamp
32676
32735
  186, // 276: com.lansweeper.dp.outbound.v1.WindowsBios.bios_characteristics:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32677
- 216, // 277: com.lansweeper.dp.outbound.v1.WindowsBios.release_date:type_name -> google.protobuf.Timestamp
32736
+ 217, // 277: com.lansweeper.dp.outbound.v1.WindowsBios.release_date:type_name -> google.protobuf.Timestamp
32678
32737
  186, // 278: com.lansweeper.dp.outbound.v1.WindowsBios.software_element_state:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32679
32738
  186, // 279: com.lansweeper.dp.outbound.v1.WindowsBios.target_operating_system:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32680
- 216, // 280: com.lansweeper.dp.outbound.v1.LinuxBios.release_date:type_name -> google.protobuf.Timestamp
32739
+ 217, // 280: com.lansweeper.dp.outbound.v1.LinuxBios.release_date:type_name -> google.protobuf.Timestamp
32681
32740
  123, // 281: com.lansweeper.dp.outbound.v1.ComputerBattery.win_battery:type_name -> com.lansweeper.dp.outbound.v1.WindowsComputerBattery
32682
32741
  124, // 282: com.lansweeper.dp.outbound.v1.ComputerBattery.win_portable:type_name -> com.lansweeper.dp.outbound.v1.WindowsPortableBattery
32683
32742
  125, // 283: com.lansweeper.dp.outbound.v1.ComputerBattery.mac_battery:type_name -> com.lansweeper.dp.outbound.v1.MacComputerBattery
@@ -32733,105 +32792,106 @@ var file_outbound_proto_depIdxs = []int32{
32733
32792
  148, // 333: com.lansweeper.dp.outbound.v1.ComputerLinuxBasicInfo.command_information:type_name -> com.lansweeper.dp.outbound.v1.LinuxCommandInformation
32734
32793
  186, // 334: com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive.availability:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32735
32794
  186, // 335: com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive.capabilities:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32736
- 216, // 336: com.lansweeper.dp.outbound.v1.ComputerWindowsCodec.install_date:type_name -> google.protobuf.Timestamp
32795
+ 217, // 336: com.lansweeper.dp.outbound.v1.ComputerWindowsCodec.install_date:type_name -> google.protobuf.Timestamp
32737
32796
  160, // 337: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.enhanced_key_usage:type_name -> com.lansweeper.dp.outbound.v1.WindowsCertificateEnhancedKeyUsage
32738
32797
  11, // 338: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.key_usage:type_name -> com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.KeyUsageType
32739
- 216, // 339: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.expiration_date:type_name -> google.protobuf.Timestamp
32740
- 216, // 340: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.start_date:type_name -> google.protobuf.Timestamp
32798
+ 217, // 339: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.expiration_date:type_name -> google.protobuf.Timestamp
32799
+ 217, // 340: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.start_date:type_name -> google.protobuf.Timestamp
32741
32800
  161, // 341: com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.location:type_name -> com.lansweeper.dp.outbound.v1.WindowsCertificateLocation
32742
32801
  164, // 342: com.lansweeper.dp.outbound.v1.ComputerMacRegionalSettings.user_settings:type_name -> com.lansweeper.dp.outbound.v1.MacRegionalUserSettings
32743
32802
  165, // 343: com.lansweeper.dp.outbound.v1.ComputerMacRegionalSettings.system_settings:type_name -> com.lansweeper.dp.outbound.v1.MacRegionalSystemSettings
32744
32803
  166, // 344: com.lansweeper.dp.outbound.v1.ComputerMacRegionalSettings.recovery_os_settings:type_name -> com.lansweeper.dp.outbound.v1.MacRegionalRecoveryOsSettings
32745
32804
  168, // 345: com.lansweeper.dp.outbound.v1.ComputerWindowsPageFile.single:type_name -> com.lansweeper.dp.outbound.v1.WindowsSinglePageFile
32746
32805
  170, // 346: com.lansweeper.dp.outbound.v1.ComputerWindowsPageFile.combined:type_name -> com.lansweeper.dp.outbound.v1.WindowsPageFileCombinedData
32747
- 216, // 347: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.creation_date:type_name -> google.protobuf.Timestamp
32748
- 216, // 348: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.install_date:type_name -> google.protobuf.Timestamp
32749
- 216, // 349: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.last_accessed:type_name -> google.protobuf.Timestamp
32750
- 216, // 350: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.last_modified:type_name -> google.protobuf.Timestamp
32806
+ 217, // 347: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.creation_date:type_name -> google.protobuf.Timestamp
32807
+ 217, // 348: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.install_date:type_name -> google.protobuf.Timestamp
32808
+ 217, // 349: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.last_accessed:type_name -> google.protobuf.Timestamp
32809
+ 217, // 350: com.lansweeper.dp.outbound.v1.WindowsSinglePageFile.last_modified:type_name -> google.protobuf.Timestamp
32751
32810
  172, // 351: com.lansweeper.dp.outbound.v1.WindowsPageFileCombinedData.page_file_usages:type_name -> com.lansweeper.dp.outbound.v1.WindowsPageFileUsage
32752
32811
  171, // 352: com.lansweeper.dp.outbound.v1.WindowsPageFileCombinedData.page_file_settings:type_name -> com.lansweeper.dp.outbound.v1.WindowsPageFileSetting
32753
- 216, // 353: com.lansweeper.dp.outbound.v1.WindowsPageFileUsage.install_date:type_name -> google.protobuf.Timestamp
32812
+ 217, // 353: com.lansweeper.dp.outbound.v1.WindowsPageFileUsage.install_date:type_name -> google.protobuf.Timestamp
32754
32813
  186, // 354: com.lansweeper.dp.outbound.v1.ComputerWindowsDesktopMonitor.availability:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32755
32814
  186, // 355: com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController.protocol_supported:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32756
32815
  186, // 356: com.lansweeper.dp.outbound.v1.PortableBattery.chemistry:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32757
- 216, // 357: com.lansweeper.dp.outbound.v1.ComputerMacOsFramework.last_modified:type_name -> google.protobuf.Timestamp
32758
- 216, // 358: com.lansweeper.dp.outbound.v1.MonitorInventory.timestamp:type_name -> google.protobuf.Timestamp
32816
+ 217, // 357: com.lansweeper.dp.outbound.v1.ComputerMacOsFramework.last_modified:type_name -> google.protobuf.Timestamp
32817
+ 217, // 358: com.lansweeper.dp.outbound.v1.MonitorInventory.timestamp:type_name -> google.protobuf.Timestamp
32759
32818
  188, // 359: com.lansweeper.dp.outbound.v1.MonitorInventory.monitor:type_name -> com.lansweeper.dp.outbound.v1.Monitor
32760
- 216, // 360: com.lansweeper.dp.outbound.v1.Monitor.manufacturer_date:type_name -> google.protobuf.Timestamp
32819
+ 217, // 360: com.lansweeper.dp.outbound.v1.Monitor.manufacturer_date:type_name -> google.protobuf.Timestamp
32761
32820
  189, // 361: com.lansweeper.dp.outbound.v1.Monitor.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsMonitorInfo
32762
32821
  201, // 362: com.lansweeper.dp.outbound.v1.Monitor.catalog_brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
32763
32822
  205, // 363: com.lansweeper.dp.outbound.v1.Monitor.catalog_monitor:type_name -> com.lansweeper.dp.outbound.v1.CatalogMonitor
32764
- 216, // 364: com.lansweeper.dp.outbound.v1.WindowsMonitorInfo.manufacturer_date:type_name -> google.protobuf.Timestamp
32823
+ 217, // 364: com.lansweeper.dp.outbound.v1.WindowsMonitorInfo.manufacturer_date:type_name -> google.protobuf.Timestamp
32765
32824
  191, // 365: com.lansweeper.dp.outbound.v1.ComputerMacWifiController.airport_interfaces:type_name -> com.lansweeper.dp.outbound.v1.WiFiInterface
32766
32825
  193, // 366: com.lansweeper.dp.outbound.v1.ComputerMacWifiController.software_information:type_name -> com.lansweeper.dp.outbound.v1.WiFiSoftware
32767
32826
  192, // 367: com.lansweeper.dp.outbound.v1.WiFiInterface.current_network:type_name -> com.lansweeper.dp.outbound.v1.WiFiNetwork
32768
32827
  192, // 368: com.lansweeper.dp.outbound.v1.WiFiInterface.other_local_networks:type_name -> com.lansweeper.dp.outbound.v1.WiFiNetwork
32769
32828
  197, // 369: com.lansweeper.dp.outbound.v1.AntivirusSoftware.software:type_name -> com.lansweeper.dp.outbound.v1.Software
32770
- 216, // 370: com.lansweeper.dp.outbound.v1.SoftwareInventory.timestamp:type_name -> google.protobuf.Timestamp
32829
+ 217, // 370: com.lansweeper.dp.outbound.v1.SoftwareInventory.timestamp:type_name -> google.protobuf.Timestamp
32771
32830
  197, // 371: com.lansweeper.dp.outbound.v1.SoftwareInventory.software:type_name -> com.lansweeper.dp.outbound.v1.Software
32772
32831
  198, // 372: com.lansweeper.dp.outbound.v1.Software.raw:type_name -> com.lansweeper.dp.outbound.v1.RawSoftware
32773
32832
  201, // 373: com.lansweeper.dp.outbound.v1.Software.catalog_brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
32774
32833
  204, // 374: com.lansweeper.dp.outbound.v1.Software.catalog_software:type_name -> com.lansweeper.dp.outbound.v1.CatalogSoftware
32775
32834
  204, // 375: com.lansweeper.dp.outbound.v1.Software.catalog_parent:type_name -> com.lansweeper.dp.outbound.v1.CatalogSoftware
32776
- 216, // 376: com.lansweeper.dp.outbound.v1.RawSoftware.install_date:type_name -> google.protobuf.Timestamp
32835
+ 217, // 376: com.lansweeper.dp.outbound.v1.RawSoftware.install_date:type_name -> google.protobuf.Timestamp
32777
32836
  12, // 377: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.event_type:type_name -> com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.EventType
32778
- 216, // 378: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.start:type_name -> google.protobuf.Timestamp
32779
- 216, // 379: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.end:type_name -> google.protobuf.Timestamp
32837
+ 217, // 378: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.start:type_name -> google.protobuf.Timestamp
32838
+ 217, // 379: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.end:type_name -> google.protobuf.Timestamp
32780
32839
  197, // 380: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.software:type_name -> com.lansweeper.dp.outbound.v1.Software
32781
32840
  197, // 381: com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.prev_software:type_name -> com.lansweeper.dp.outbound.v1.Software
32782
- 216, // 382: com.lansweeper.dp.outbound.v1.ComputerMacInstallHistory.install_date:type_name -> google.protobuf.Timestamp
32783
- 216, // 383: com.lansweeper.dp.outbound.v1.CatalogBrand.last_update_time:type_name -> google.protobuf.Timestamp
32784
- 216, // 384: com.lansweeper.dp.outbound.v1.CatalogModel.release_date:type_name -> google.protobuf.Timestamp
32785
- 216, // 385: com.lansweeper.dp.outbound.v1.CatalogModel.disc_date:type_name -> google.protobuf.Timestamp
32786
- 216, // 386: com.lansweeper.dp.outbound.v1.CatalogModel.eos_date:type_name -> google.protobuf.Timestamp
32787
- 216, // 387: com.lansweeper.dp.outbound.v1.CatalogModel.last_update_time:type_name -> google.protobuf.Timestamp
32788
- 216, // 388: com.lansweeper.dp.outbound.v1.CatalogOs.release_date:type_name -> google.protobuf.Timestamp
32789
- 216, // 389: com.lansweeper.dp.outbound.v1.CatalogOs.eol_date:type_name -> google.protobuf.Timestamp
32790
- 216, // 390: com.lansweeper.dp.outbound.v1.CatalogOs.eos_date:type_name -> google.protobuf.Timestamp
32791
- 216, // 391: com.lansweeper.dp.outbound.v1.CatalogOs.eosx_date:type_name -> google.protobuf.Timestamp
32792
- 216, // 392: com.lansweeper.dp.outbound.v1.CatalogOs.last_update_time:type_name -> google.protobuf.Timestamp
32793
- 216, // 393: com.lansweeper.dp.outbound.v1.CatalogSoftware.release_date:type_name -> google.protobuf.Timestamp
32794
- 216, // 394: com.lansweeper.dp.outbound.v1.CatalogSoftware.eol_date:type_name -> google.protobuf.Timestamp
32795
- 216, // 395: com.lansweeper.dp.outbound.v1.CatalogSoftware.eos_date:type_name -> google.protobuf.Timestamp
32796
- 216, // 396: com.lansweeper.dp.outbound.v1.CatalogSoftware.eosx_date:type_name -> google.protobuf.Timestamp
32797
- 216, // 397: com.lansweeper.dp.outbound.v1.CatalogSoftware.last_update_time:type_name -> google.protobuf.Timestamp
32798
- 216, // 398: com.lansweeper.dp.outbound.v1.CatalogMonitor.last_update_time:type_name -> google.protobuf.Timestamp
32841
+ 217, // 382: com.lansweeper.dp.outbound.v1.ComputerMacInstallHistory.install_date:type_name -> google.protobuf.Timestamp
32842
+ 217, // 383: com.lansweeper.dp.outbound.v1.CatalogBrand.last_update_time:type_name -> google.protobuf.Timestamp
32843
+ 217, // 384: com.lansweeper.dp.outbound.v1.CatalogModel.release_date:type_name -> google.protobuf.Timestamp
32844
+ 217, // 385: com.lansweeper.dp.outbound.v1.CatalogModel.disc_date:type_name -> google.protobuf.Timestamp
32845
+ 217, // 386: com.lansweeper.dp.outbound.v1.CatalogModel.eos_date:type_name -> google.protobuf.Timestamp
32846
+ 217, // 387: com.lansweeper.dp.outbound.v1.CatalogModel.last_update_time:type_name -> google.protobuf.Timestamp
32847
+ 217, // 388: com.lansweeper.dp.outbound.v1.CatalogOs.release_date:type_name -> google.protobuf.Timestamp
32848
+ 217, // 389: com.lansweeper.dp.outbound.v1.CatalogOs.eol_date:type_name -> google.protobuf.Timestamp
32849
+ 217, // 390: com.lansweeper.dp.outbound.v1.CatalogOs.eos_date:type_name -> google.protobuf.Timestamp
32850
+ 217, // 391: com.lansweeper.dp.outbound.v1.CatalogOs.eosx_date:type_name -> google.protobuf.Timestamp
32851
+ 217, // 392: com.lansweeper.dp.outbound.v1.CatalogOs.last_update_time:type_name -> google.protobuf.Timestamp
32852
+ 217, // 393: com.lansweeper.dp.outbound.v1.CatalogSoftware.release_date:type_name -> google.protobuf.Timestamp
32853
+ 217, // 394: com.lansweeper.dp.outbound.v1.CatalogSoftware.eol_date:type_name -> google.protobuf.Timestamp
32854
+ 217, // 395: com.lansweeper.dp.outbound.v1.CatalogSoftware.eos_date:type_name -> google.protobuf.Timestamp
32855
+ 217, // 396: com.lansweeper.dp.outbound.v1.CatalogSoftware.eosx_date:type_name -> google.protobuf.Timestamp
32856
+ 217, // 397: com.lansweeper.dp.outbound.v1.CatalogSoftware.last_update_time:type_name -> google.protobuf.Timestamp
32857
+ 217, // 398: com.lansweeper.dp.outbound.v1.CatalogMonitor.last_update_time:type_name -> google.protobuf.Timestamp
32799
32858
  207, // 399: com.lansweeper.dp.outbound.v1.Printer.toner:type_name -> com.lansweeper.dp.outbound.v1.PrinterTonerInfo
32800
32859
  186, // 400: com.lansweeper.dp.outbound.v1.PrinterTonerInfo.color_number:type_name -> com.lansweeper.dp.outbound.v1.MappedValue
32801
- 0, // 401: com.lansweeper.dp.outbound.v1.ReconRuleSet.id:type_name -> com.lansweeper.dp.outbound.v1.ReconRuleId
32802
- 15, // 402: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:input_type -> com.lansweeper.dp.outbound.v1.GetEntityRequest
32803
- 17, // 403: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:input_type -> com.lansweeper.dp.outbound.v1.ListEntityRequest
32804
- 19, // 404: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:input_type -> com.lansweeper.dp.outbound.v1.CatalogLookupRequest
32805
- 21, // 405: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetIpLocationConfig:input_type -> com.lansweeper.dp.outbound.v1.GetIpLocationConfigRequest
32806
- 23, // 406: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.SetIpLocationConfig:input_type -> com.lansweeper.dp.outbound.v1.SetIpLocationConfigRequest
32807
- 26, // 407: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateEntity:input_type -> com.lansweeper.dp.outbound.v1.Entity
32808
- 25, // 408: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetAsset:input_type -> com.lansweeper.dp.outbound.v1.EntityPath
32809
- 26, // 409: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateAsset:input_type -> com.lansweeper.dp.outbound.v1.Entity
32810
- 25, // 410: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteAsset:input_type -> com.lansweeper.dp.outbound.v1.EntityPath
32811
- 14, // 411: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.ListAssets:input_type -> com.lansweeper.dp.outbound.v1.EntityFilter
32812
- 13, // 412: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateSite:input_type -> com.lansweeper.dp.outbound.v1.Site
32813
- 210, // 413: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetSite:input_type -> com.lansweeper.dp.outbound.v1.SiteKey
32814
- 13, // 414: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateSite:input_type -> com.lansweeper.dp.outbound.v1.Site
32815
- 210, // 415: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteSite:input_type -> com.lansweeper.dp.outbound.v1.SiteKey
32816
- 16, // 416: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:output_type -> com.lansweeper.dp.outbound.v1.GetEntityResponse
32817
- 18, // 417: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:output_type -> com.lansweeper.dp.outbound.v1.ListEntityResponse
32818
- 20, // 418: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:output_type -> com.lansweeper.dp.outbound.v1.CatalogLookupResponse
32819
- 22, // 419: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetIpLocationConfig:output_type -> com.lansweeper.dp.outbound.v1.GetIpLocationConfigResponse
32820
- 24, // 420: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.SetIpLocationConfig:output_type -> com.lansweeper.dp.outbound.v1.SetIpLocationConfigResponse
32821
- 26, // 421: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateEntity:output_type -> com.lansweeper.dp.outbound.v1.Entity
32822
- 26, // 422: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetAsset:output_type -> com.lansweeper.dp.outbound.v1.Entity
32823
- 26, // 423: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateAsset:output_type -> com.lansweeper.dp.outbound.v1.Entity
32824
- 26, // 424: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteAsset:output_type -> com.lansweeper.dp.outbound.v1.Entity
32825
- 26, // 425: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.ListAssets:output_type -> com.lansweeper.dp.outbound.v1.Entity
32826
- 13, // 426: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32827
- 13, // 427: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32828
- 13, // 428: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32829
- 13, // 429: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32830
- 416, // [416:430] is the sub-list for method output_type
32831
- 402, // [402:416] is the sub-list for method input_type
32832
- 402, // [402:402] is the sub-list for extension type_name
32833
- 402, // [402:402] is the sub-list for extension extendee
32834
- 0, // [0:402] is the sub-list for field type_name
32860
+ 212, // 401: com.lansweeper.dp.outbound.v1.ReconRuleSet.recon_rules:type_name -> com.lansweeper.dp.outbound.v1.ReconRule
32861
+ 0, // 402: com.lansweeper.dp.outbound.v1.ReconRule.id:type_name -> com.lansweeper.dp.outbound.v1.ReconRuleId
32862
+ 15, // 403: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:input_type -> com.lansweeper.dp.outbound.v1.GetEntityRequest
32863
+ 17, // 404: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:input_type -> com.lansweeper.dp.outbound.v1.ListEntityRequest
32864
+ 19, // 405: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:input_type -> com.lansweeper.dp.outbound.v1.CatalogLookupRequest
32865
+ 21, // 406: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetIpLocationConfig:input_type -> com.lansweeper.dp.outbound.v1.GetIpLocationConfigRequest
32866
+ 23, // 407: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.SetIpLocationConfig:input_type -> com.lansweeper.dp.outbound.v1.SetIpLocationConfigRequest
32867
+ 26, // 408: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateEntity:input_type -> com.lansweeper.dp.outbound.v1.Entity
32868
+ 25, // 409: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetAsset:input_type -> com.lansweeper.dp.outbound.v1.EntityPath
32869
+ 26, // 410: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateAsset:input_type -> com.lansweeper.dp.outbound.v1.Entity
32870
+ 25, // 411: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteAsset:input_type -> com.lansweeper.dp.outbound.v1.EntityPath
32871
+ 14, // 412: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.ListAssets:input_type -> com.lansweeper.dp.outbound.v1.EntityFilter
32872
+ 13, // 413: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateSite:input_type -> com.lansweeper.dp.outbound.v1.Site
32873
+ 210, // 414: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetSite:input_type -> com.lansweeper.dp.outbound.v1.SiteKey
32874
+ 13, // 415: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateSite:input_type -> com.lansweeper.dp.outbound.v1.Site
32875
+ 210, // 416: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteSite:input_type -> com.lansweeper.dp.outbound.v1.SiteKey
32876
+ 16, // 417: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:output_type -> com.lansweeper.dp.outbound.v1.GetEntityResponse
32877
+ 18, // 418: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:output_type -> com.lansweeper.dp.outbound.v1.ListEntityResponse
32878
+ 20, // 419: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:output_type -> com.lansweeper.dp.outbound.v1.CatalogLookupResponse
32879
+ 22, // 420: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetIpLocationConfig:output_type -> com.lansweeper.dp.outbound.v1.GetIpLocationConfigResponse
32880
+ 24, // 421: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.SetIpLocationConfig:output_type -> com.lansweeper.dp.outbound.v1.SetIpLocationConfigResponse
32881
+ 26, // 422: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateEntity:output_type -> com.lansweeper.dp.outbound.v1.Entity
32882
+ 26, // 423: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetAsset:output_type -> com.lansweeper.dp.outbound.v1.Entity
32883
+ 26, // 424: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateAsset:output_type -> com.lansweeper.dp.outbound.v1.Entity
32884
+ 26, // 425: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteAsset:output_type -> com.lansweeper.dp.outbound.v1.Entity
32885
+ 26, // 426: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.ListAssets:output_type -> com.lansweeper.dp.outbound.v1.Entity
32886
+ 13, // 427: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.CreateSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32887
+ 13, // 428: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.GetSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32888
+ 13, // 429: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.UpdateSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32889
+ 13, // 430: com.lansweeper.dp.outbound.v1.DataCoreBackofficeService.DeleteSite:output_type -> com.lansweeper.dp.outbound.v1.Site
32890
+ 417, // [417:431] is the sub-list for method output_type
32891
+ 403, // [403:417] is the sub-list for method input_type
32892
+ 403, // [403:403] is the sub-list for extension type_name
32893
+ 403, // [403:403] is the sub-list for extension extendee
32894
+ 0, // [0:403] is the sub-list for field type_name
32835
32895
  }
32836
32896
 
32837
32897
  func init() { file_outbound_proto_init() }
@@ -35229,7 +35289,7 @@ func file_outbound_proto_init() {
35229
35289
  }
35230
35290
  }
35231
35291
  file_outbound_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} {
35232
- switch v := v.(*InternetExplorer_ActiveX); i {
35292
+ switch v := v.(*ReconRule); i {
35233
35293
  case 0:
35234
35294
  return &v.state
35235
35295
  case 1:
@@ -35241,7 +35301,7 @@ func file_outbound_proto_init() {
35241
35301
  }
35242
35302
  }
35243
35303
  file_outbound_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} {
35244
- switch v := v.(*InternetExplorer_Extension); i {
35304
+ switch v := v.(*InternetExplorer_ActiveX); i {
35245
35305
  case 0:
35246
35306
  return &v.state
35247
35307
  case 1:
@@ -35253,7 +35313,7 @@ func file_outbound_proto_init() {
35253
35313
  }
35254
35314
  }
35255
35315
  file_outbound_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} {
35256
- switch v := v.(*InternetExplorer_BrowserObject); i {
35316
+ switch v := v.(*InternetExplorer_Extension); i {
35257
35317
  case 0:
35258
35318
  return &v.state
35259
35319
  case 1:
@@ -35265,6 +35325,18 @@ func file_outbound_proto_init() {
35265
35325
  }
35266
35326
  }
35267
35327
  file_outbound_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} {
35328
+ switch v := v.(*InternetExplorer_BrowserObject); i {
35329
+ case 0:
35330
+ return &v.state
35331
+ case 1:
35332
+ return &v.sizeCache
35333
+ case 2:
35334
+ return &v.unknownFields
35335
+ default:
35336
+ return nil
35337
+ }
35338
+ }
35339
+ file_outbound_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} {
35268
35340
  switch v := v.(*InternetExplorer_BarInfo); i {
35269
35341
  case 0:
35270
35342
  return &v.state
@@ -35493,15 +35565,15 @@ func file_outbound_proto_init() {
35493
35565
  file_outbound_proto_msgTypes[194].OneofWrappers = []interface{}{}
35494
35566
  file_outbound_proto_msgTypes[195].OneofWrappers = []interface{}{}
35495
35567
  file_outbound_proto_msgTypes[196].OneofWrappers = []interface{}{}
35496
- file_outbound_proto_msgTypes[199].OneofWrappers = []interface{}{}
35497
35568
  file_outbound_proto_msgTypes[200].OneofWrappers = []interface{}{}
35569
+ file_outbound_proto_msgTypes[201].OneofWrappers = []interface{}{}
35498
35570
  type x struct{}
35499
35571
  out := protoimpl.TypeBuilder{
35500
35572
  File: protoimpl.DescBuilder{
35501
35573
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
35502
35574
  RawDescriptor: file_outbound_proto_rawDesc,
35503
35575
  NumEnums: 13,
35504
- NumMessages: 203,
35576
+ NumMessages: 204,
35505
35577
  NumExtensions: 0,
35506
35578
  NumServices: 2,
35507
35579
  },