@lansweeper/scanningconfig-grpc 0.3.0 → 0.3.1
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/.ignorecompat +0 -0
- package/CHANGELOG.md +13 -0
- package/Lansweeper.ScanningConfig.GRPC.csproj +4 -3
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json +2 -2
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/bin/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/scanningconfig_grpc_pb.d.ts +1 -0
- package/gen-proto/scanningconfig_grpc_pb.js +1 -0
- package/gen-proto/scanningconfig_pb.d.ts +103 -93
- package/gen-proto/scanningconfig_pb.js +545 -396
- package/generated-go/scanningconfig.pb.go +540 -511
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/dfe805b7589f203f_scanningconfig.protodep +2 -1
- package/obj/Debug/net6.0/proto/Scanningconfig.cs +1030 -1165
- package/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.dgspec.json +1 -1
- package/obj/project.assets.json +1 -1
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/scanningconfig.proto +33 -31
|
@@ -9,6 +9,7 @@ package generated_go
|
|
|
9
9
|
import (
|
|
10
10
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
11
11
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
12
|
+
wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
|
|
12
13
|
reflect "reflect"
|
|
13
14
|
sync "sync"
|
|
14
15
|
)
|
|
@@ -1883,7 +1884,7 @@ type MaintenanceSettings struct {
|
|
|
1883
1884
|
sizeCache protoimpl.SizeCache
|
|
1884
1885
|
unknownFields protoimpl.UnknownFields
|
|
1885
1886
|
|
|
1886
|
-
MaintenanceWindow *
|
|
1887
|
+
MaintenanceWindow *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=maintenance_window,json=maintenanceWindow,proto3" json:"maintenance_window,omitempty"` // cron expression
|
|
1887
1888
|
RetentionPolicy *RetentionPolicySettings `protobuf:"bytes,2,opt,name=retention_policy,json=retentionPolicy,proto3,oneof" json:"retention_policy,omitempty"`
|
|
1888
1889
|
}
|
|
1889
1890
|
|
|
@@ -1919,11 +1920,11 @@ func (*MaintenanceSettings) Descriptor() ([]byte, []int) {
|
|
|
1919
1920
|
return file_scanningconfig_proto_rawDescGZIP(), []int{20}
|
|
1920
1921
|
}
|
|
1921
1922
|
|
|
1922
|
-
func (x *MaintenanceSettings) GetMaintenanceWindow()
|
|
1923
|
-
if x != nil
|
|
1924
|
-
return
|
|
1923
|
+
func (x *MaintenanceSettings) GetMaintenanceWindow() *wrapperspb.StringValue {
|
|
1924
|
+
if x != nil {
|
|
1925
|
+
return x.MaintenanceWindow
|
|
1925
1926
|
}
|
|
1926
|
-
return
|
|
1927
|
+
return nil
|
|
1927
1928
|
}
|
|
1928
1929
|
|
|
1929
1930
|
func (x *MaintenanceSettings) GetRetentionPolicy() *RetentionPolicySettings {
|
|
@@ -1938,8 +1939,8 @@ type RetentionPolicySettings struct {
|
|
|
1938
1939
|
sizeCache protoimpl.SizeCache
|
|
1939
1940
|
unknownFields protoimpl.UnknownFields
|
|
1940
1941
|
|
|
1941
|
-
SyncedDataRetentionDays *
|
|
1942
|
-
UnsyncedDataRetentionDays *
|
|
1942
|
+
SyncedDataRetentionDays *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=synced_data_retention_days,json=syncedDataRetentionDays,proto3" json:"synced_data_retention_days,omitempty"` // default 30 days
|
|
1943
|
+
UnsyncedDataRetentionDays *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=unsynced_data_retention_days,json=unsyncedDataRetentionDays,proto3" json:"unsynced_data_retention_days,omitempty"` // default 365 days
|
|
1943
1944
|
}
|
|
1944
1945
|
|
|
1945
1946
|
func (x *RetentionPolicySettings) Reset() {
|
|
@@ -1974,18 +1975,18 @@ func (*RetentionPolicySettings) Descriptor() ([]byte, []int) {
|
|
|
1974
1975
|
return file_scanningconfig_proto_rawDescGZIP(), []int{21}
|
|
1975
1976
|
}
|
|
1976
1977
|
|
|
1977
|
-
func (x *RetentionPolicySettings) GetSyncedDataRetentionDays()
|
|
1978
|
-
if x != nil
|
|
1979
|
-
return
|
|
1978
|
+
func (x *RetentionPolicySettings) GetSyncedDataRetentionDays() *wrapperspb.Int32Value {
|
|
1979
|
+
if x != nil {
|
|
1980
|
+
return x.SyncedDataRetentionDays
|
|
1980
1981
|
}
|
|
1981
|
-
return
|
|
1982
|
+
return nil
|
|
1982
1983
|
}
|
|
1983
1984
|
|
|
1984
|
-
func (x *RetentionPolicySettings) GetUnsyncedDataRetentionDays()
|
|
1985
|
-
if x != nil
|
|
1986
|
-
return
|
|
1985
|
+
func (x *RetentionPolicySettings) GetUnsyncedDataRetentionDays() *wrapperspb.Int32Value {
|
|
1986
|
+
if x != nil {
|
|
1987
|
+
return x.UnsyncedDataRetentionDays
|
|
1987
1988
|
}
|
|
1988
|
-
return
|
|
1989
|
+
return nil
|
|
1989
1990
|
}
|
|
1990
1991
|
|
|
1991
1992
|
type NotificationSettings struct {
|
|
@@ -1993,9 +1994,9 @@ type NotificationSettings struct {
|
|
|
1993
1994
|
sizeCache protoimpl.SizeCache
|
|
1994
1995
|
unknownFields protoimpl.UnknownFields
|
|
1995
1996
|
|
|
1996
|
-
SmartPollingEnabled *
|
|
1997
|
-
DefaultPollingIntervalSeconds *
|
|
1998
|
-
SmartPollingIntervals map[int32]int32
|
|
1997
|
+
SmartPollingEnabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=smart_polling_enabled,json=smartPollingEnabled,proto3" json:"smart_polling_enabled,omitempty"`
|
|
1998
|
+
DefaultPollingIntervalSeconds *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=default_polling_interval_seconds,json=defaultPollingIntervalSeconds,proto3" json:"default_polling_interval_seconds,omitempty"` // will only be used if smart polling is disabled, default 60 seconds.
|
|
1999
|
+
SmartPollingIntervals map[int32]int32 `protobuf:"bytes,3,rep,name=smart_polling_intervals,json=smartPollingIntervals,proto3" json:"smart_polling_intervals,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // key is the polling zero based frequency, value is the polling interval in seconds. Will only be used if smart polling is enabled. I.e: [(0, 15), (1, 60), (2, 120)] = 15 seconds for the high frequency polling, 60 seconds for the normal frequency polling, 120 seconds for the low frequency polling
|
|
1999
2000
|
}
|
|
2000
2001
|
|
|
2001
2002
|
func (x *NotificationSettings) Reset() {
|
|
@@ -2030,18 +2031,18 @@ func (*NotificationSettings) Descriptor() ([]byte, []int) {
|
|
|
2030
2031
|
return file_scanningconfig_proto_rawDescGZIP(), []int{22}
|
|
2031
2032
|
}
|
|
2032
2033
|
|
|
2033
|
-
func (x *NotificationSettings) GetSmartPollingEnabled()
|
|
2034
|
-
if x != nil
|
|
2035
|
-
return
|
|
2034
|
+
func (x *NotificationSettings) GetSmartPollingEnabled() *wrapperspb.BoolValue {
|
|
2035
|
+
if x != nil {
|
|
2036
|
+
return x.SmartPollingEnabled
|
|
2036
2037
|
}
|
|
2037
|
-
return
|
|
2038
|
+
return nil
|
|
2038
2039
|
}
|
|
2039
2040
|
|
|
2040
|
-
func (x *NotificationSettings) GetDefaultPollingIntervalSeconds()
|
|
2041
|
-
if x != nil
|
|
2042
|
-
return
|
|
2041
|
+
func (x *NotificationSettings) GetDefaultPollingIntervalSeconds() *wrapperspb.Int32Value {
|
|
2042
|
+
if x != nil {
|
|
2043
|
+
return x.DefaultPollingIntervalSeconds
|
|
2043
2044
|
}
|
|
2044
|
-
return
|
|
2045
|
+
return nil
|
|
2045
2046
|
}
|
|
2046
2047
|
|
|
2047
2048
|
func (x *NotificationSettings) GetSmartPollingIntervals() map[int32]int32 {
|
|
@@ -2056,7 +2057,7 @@ type FeatureFlagSettings struct {
|
|
|
2056
2057
|
sizeCache protoimpl.SizeCache
|
|
2057
2058
|
unknownFields protoimpl.UnknownFields
|
|
2058
2059
|
|
|
2059
|
-
PollingIntervalMinutes *
|
|
2060
|
+
PollingIntervalMinutes *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=polling_interval_minutes,json=pollingIntervalMinutes,proto3" json:"polling_interval_minutes,omitempty"` // default 15 minutes
|
|
2060
2061
|
}
|
|
2061
2062
|
|
|
2062
2063
|
func (x *FeatureFlagSettings) Reset() {
|
|
@@ -2091,11 +2092,11 @@ func (*FeatureFlagSettings) Descriptor() ([]byte, []int) {
|
|
|
2091
2092
|
return file_scanningconfig_proto_rawDescGZIP(), []int{23}
|
|
2092
2093
|
}
|
|
2093
2094
|
|
|
2094
|
-
func (x *FeatureFlagSettings) GetPollingIntervalMinutes()
|
|
2095
|
-
if x != nil
|
|
2096
|
-
return
|
|
2095
|
+
func (x *FeatureFlagSettings) GetPollingIntervalMinutes() *wrapperspb.Int32Value {
|
|
2096
|
+
if x != nil {
|
|
2097
|
+
return x.PollingIntervalMinutes
|
|
2097
2098
|
}
|
|
2098
|
-
return
|
|
2099
|
+
return nil
|
|
2099
2100
|
}
|
|
2100
2101
|
|
|
2101
2102
|
type ScanConfigurationSettings struct {
|
|
@@ -2103,7 +2104,7 @@ type ScanConfigurationSettings struct {
|
|
|
2103
2104
|
sizeCache protoimpl.SizeCache
|
|
2104
2105
|
unknownFields protoimpl.UnknownFields
|
|
2105
2106
|
|
|
2106
|
-
PollingIntervalMinutes *
|
|
2107
|
+
PollingIntervalMinutes *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=polling_interval_minutes,json=pollingIntervalMinutes,proto3" json:"polling_interval_minutes,omitempty"` // default 240 minutes (4 hours)
|
|
2107
2108
|
}
|
|
2108
2109
|
|
|
2109
2110
|
func (x *ScanConfigurationSettings) Reset() {
|
|
@@ -2138,11 +2139,11 @@ func (*ScanConfigurationSettings) Descriptor() ([]byte, []int) {
|
|
|
2138
2139
|
return file_scanningconfig_proto_rawDescGZIP(), []int{24}
|
|
2139
2140
|
}
|
|
2140
2141
|
|
|
2141
|
-
func (x *ScanConfigurationSettings) GetPollingIntervalMinutes()
|
|
2142
|
-
if x != nil
|
|
2143
|
-
return
|
|
2142
|
+
func (x *ScanConfigurationSettings) GetPollingIntervalMinutes() *wrapperspb.Int32Value {
|
|
2143
|
+
if x != nil {
|
|
2144
|
+
return x.PollingIntervalMinutes
|
|
2144
2145
|
}
|
|
2145
|
-
return
|
|
2146
|
+
return nil
|
|
2146
2147
|
}
|
|
2147
2148
|
|
|
2148
2149
|
type ImportSettings struct {
|
|
@@ -2150,9 +2151,9 @@ type ImportSettings struct {
|
|
|
2150
2151
|
sizeCache protoimpl.SizeCache
|
|
2151
2152
|
unknownFields protoimpl.UnknownFields
|
|
2152
2153
|
|
|
2153
|
-
Enabled
|
|
2154
|
-
PollingIntervalSeconds *
|
|
2155
|
-
Folder *
|
|
2154
|
+
Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
2155
|
+
PollingIntervalSeconds *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=polling_interval_seconds,json=pollingIntervalSeconds,proto3" json:"polling_interval_seconds,omitempty"`
|
|
2156
|
+
Folder *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=folder,proto3" json:"folder,omitempty"`
|
|
2156
2157
|
}
|
|
2157
2158
|
|
|
2158
2159
|
func (x *ImportSettings) Reset() {
|
|
@@ -2187,25 +2188,25 @@ func (*ImportSettings) Descriptor() ([]byte, []int) {
|
|
|
2187
2188
|
return file_scanningconfig_proto_rawDescGZIP(), []int{25}
|
|
2188
2189
|
}
|
|
2189
2190
|
|
|
2190
|
-
func (x *ImportSettings) GetEnabled()
|
|
2191
|
+
func (x *ImportSettings) GetEnabled() *wrapperspb.BoolValue {
|
|
2191
2192
|
if x != nil {
|
|
2192
2193
|
return x.Enabled
|
|
2193
2194
|
}
|
|
2194
|
-
return
|
|
2195
|
+
return nil
|
|
2195
2196
|
}
|
|
2196
2197
|
|
|
2197
|
-
func (x *ImportSettings) GetPollingIntervalSeconds()
|
|
2198
|
-
if x != nil
|
|
2199
|
-
return
|
|
2198
|
+
func (x *ImportSettings) GetPollingIntervalSeconds() *wrapperspb.Int32Value {
|
|
2199
|
+
if x != nil {
|
|
2200
|
+
return x.PollingIntervalSeconds
|
|
2200
2201
|
}
|
|
2201
|
-
return
|
|
2202
|
+
return nil
|
|
2202
2203
|
}
|
|
2203
2204
|
|
|
2204
|
-
func (x *ImportSettings) GetFolder()
|
|
2205
|
-
if x != nil
|
|
2206
|
-
return
|
|
2205
|
+
func (x *ImportSettings) GetFolder() *wrapperspb.StringValue {
|
|
2206
|
+
if x != nil {
|
|
2207
|
+
return x.Folder
|
|
2207
2208
|
}
|
|
2208
|
-
return
|
|
2209
|
+
return nil
|
|
2209
2210
|
}
|
|
2210
2211
|
|
|
2211
2212
|
type NetworkConfigurationSettings struct {
|
|
@@ -2292,7 +2293,7 @@ type ParallelismSettings struct {
|
|
|
2292
2293
|
sizeCache protoimpl.SizeCache
|
|
2293
2294
|
unknownFields protoimpl.UnknownFields
|
|
2294
2295
|
|
|
2295
|
-
MaxParallelism *
|
|
2296
|
+
MaxParallelism *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=max_parallelism,json=maxParallelism,proto3" json:"max_parallelism,omitempty"` // default 100
|
|
2296
2297
|
}
|
|
2297
2298
|
|
|
2298
2299
|
func (x *ParallelismSettings) Reset() {
|
|
@@ -2327,11 +2328,11 @@ func (*ParallelismSettings) Descriptor() ([]byte, []int) {
|
|
|
2327
2328
|
return file_scanningconfig_proto_rawDescGZIP(), []int{27}
|
|
2328
2329
|
}
|
|
2329
2330
|
|
|
2330
|
-
func (x *ParallelismSettings) GetMaxParallelism()
|
|
2331
|
-
if x != nil
|
|
2332
|
-
return
|
|
2331
|
+
func (x *ParallelismSettings) GetMaxParallelism() *wrapperspb.Int32Value {
|
|
2332
|
+
if x != nil {
|
|
2333
|
+
return x.MaxParallelism
|
|
2333
2334
|
}
|
|
2334
|
-
return
|
|
2335
|
+
return nil
|
|
2335
2336
|
}
|
|
2336
2337
|
|
|
2337
2338
|
type ExclusionSettings struct {
|
|
@@ -2394,8 +2395,8 @@ type NetworkVisibilitySettings struct {
|
|
|
2394
2395
|
sizeCache protoimpl.SizeCache
|
|
2395
2396
|
unknownFields protoimpl.UnknownFields
|
|
2396
2397
|
|
|
2397
|
-
Enabled
|
|
2398
|
-
ActiveCdrEnabled *
|
|
2398
|
+
Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
2399
|
+
ActiveCdrEnabled *wrapperspb.BoolValue `protobuf:"bytes,2,opt,name=active_cdr_enabled,json=activeCdrEnabled,proto3" json:"active_cdr_enabled,omitempty"`
|
|
2399
2400
|
}
|
|
2400
2401
|
|
|
2401
2402
|
func (x *NetworkVisibilitySettings) Reset() {
|
|
@@ -2430,18 +2431,18 @@ func (*NetworkVisibilitySettings) Descriptor() ([]byte, []int) {
|
|
|
2430
2431
|
return file_scanningconfig_proto_rawDescGZIP(), []int{29}
|
|
2431
2432
|
}
|
|
2432
2433
|
|
|
2433
|
-
func (x *NetworkVisibilitySettings) GetEnabled()
|
|
2434
|
+
func (x *NetworkVisibilitySettings) GetEnabled() *wrapperspb.BoolValue {
|
|
2434
2435
|
if x != nil {
|
|
2435
2436
|
return x.Enabled
|
|
2436
2437
|
}
|
|
2437
|
-
return
|
|
2438
|
+
return nil
|
|
2438
2439
|
}
|
|
2439
2440
|
|
|
2440
|
-
func (x *NetworkVisibilitySettings) GetActiveCdrEnabled()
|
|
2441
|
-
if x != nil
|
|
2442
|
-
return
|
|
2441
|
+
func (x *NetworkVisibilitySettings) GetActiveCdrEnabled() *wrapperspb.BoolValue {
|
|
2442
|
+
if x != nil {
|
|
2443
|
+
return x.ActiveCdrEnabled
|
|
2443
2444
|
}
|
|
2444
|
-
return
|
|
2445
|
+
return nil
|
|
2445
2446
|
}
|
|
2446
2447
|
|
|
2447
2448
|
type PingBehaviorSettings struct {
|
|
@@ -2487,7 +2488,7 @@ type ProtocolConfigurationSettings struct {
|
|
|
2487
2488
|
sizeCache protoimpl.SizeCache
|
|
2488
2489
|
unknownFields protoimpl.UnknownFields
|
|
2489
2490
|
|
|
2490
|
-
AllEnabled *
|
|
2491
|
+
AllEnabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=all_enabled,json=allEnabled,proto3" json:"all_enabled,omitempty"`
|
|
2491
2492
|
Protocols map[string]*ProtocolDetailSettings `protobuf:"bytes,2,rep,name=protocols,proto3" json:"protocols,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
2492
2493
|
}
|
|
2493
2494
|
|
|
@@ -2523,11 +2524,11 @@ func (*ProtocolConfigurationSettings) Descriptor() ([]byte, []int) {
|
|
|
2523
2524
|
return file_scanningconfig_proto_rawDescGZIP(), []int{31}
|
|
2524
2525
|
}
|
|
2525
2526
|
|
|
2526
|
-
func (x *ProtocolConfigurationSettings) GetAllEnabled()
|
|
2527
|
-
if x != nil
|
|
2528
|
-
return
|
|
2527
|
+
func (x *ProtocolConfigurationSettings) GetAllEnabled() *wrapperspb.BoolValue {
|
|
2528
|
+
if x != nil {
|
|
2529
|
+
return x.AllEnabled
|
|
2529
2530
|
}
|
|
2530
|
-
return
|
|
2531
|
+
return nil
|
|
2531
2532
|
}
|
|
2532
2533
|
|
|
2533
2534
|
func (x *ProtocolConfigurationSettings) GetProtocols() map[string]*ProtocolDetailSettings {
|
|
@@ -2542,9 +2543,9 @@ type ProtocolDetailSettings struct {
|
|
|
2542
2543
|
sizeCache protoimpl.SizeCache
|
|
2543
2544
|
unknownFields protoimpl.UnknownFields
|
|
2544
2545
|
|
|
2545
|
-
Enabled
|
|
2546
|
-
Port *
|
|
2547
|
-
AdditionalData map[string]string
|
|
2546
|
+
Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
2547
|
+
Port *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=port,proto3" json:"port,omitempty"`
|
|
2548
|
+
AdditionalData map[string]string `protobuf:"bytes,3,rep,name=additional_data,json=additionalData,proto3" json:"additional_data,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // additional data for a specific for the protocol
|
|
2548
2549
|
}
|
|
2549
2550
|
|
|
2550
2551
|
func (x *ProtocolDetailSettings) Reset() {
|
|
@@ -2579,18 +2580,18 @@ func (*ProtocolDetailSettings) Descriptor() ([]byte, []int) {
|
|
|
2579
2580
|
return file_scanningconfig_proto_rawDescGZIP(), []int{32}
|
|
2580
2581
|
}
|
|
2581
2582
|
|
|
2582
|
-
func (x *ProtocolDetailSettings) GetEnabled()
|
|
2583
|
+
func (x *ProtocolDetailSettings) GetEnabled() *wrapperspb.BoolValue {
|
|
2583
2584
|
if x != nil {
|
|
2584
2585
|
return x.Enabled
|
|
2585
2586
|
}
|
|
2586
|
-
return
|
|
2587
|
+
return nil
|
|
2587
2588
|
}
|
|
2588
2589
|
|
|
2589
|
-
func (x *ProtocolDetailSettings) GetPort()
|
|
2590
|
-
if x != nil
|
|
2591
|
-
return
|
|
2590
|
+
func (x *ProtocolDetailSettings) GetPort() *wrapperspb.Int32Value {
|
|
2591
|
+
if x != nil {
|
|
2592
|
+
return x.Port
|
|
2592
2593
|
}
|
|
2593
|
-
return
|
|
2594
|
+
return nil
|
|
2594
2595
|
}
|
|
2595
2596
|
|
|
2596
2597
|
func (x *ProtocolDetailSettings) GetAdditionalData() map[string]string {
|
|
@@ -2707,8 +2708,8 @@ type TrafficLogSettings struct {
|
|
|
2707
2708
|
sizeCache protoimpl.SizeCache
|
|
2708
2709
|
unknownFields protoimpl.UnknownFields
|
|
2709
2710
|
|
|
2710
|
-
Enabled *
|
|
2711
|
-
Path *
|
|
2711
|
+
Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
2712
|
+
Path *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
|
|
2712
2713
|
}
|
|
2713
2714
|
|
|
2714
2715
|
func (x *TrafficLogSettings) Reset() {
|
|
@@ -2743,18 +2744,18 @@ func (*TrafficLogSettings) Descriptor() ([]byte, []int) {
|
|
|
2743
2744
|
return file_scanningconfig_proto_rawDescGZIP(), []int{35}
|
|
2744
2745
|
}
|
|
2745
2746
|
|
|
2746
|
-
func (x *TrafficLogSettings) GetEnabled()
|
|
2747
|
-
if x != nil
|
|
2748
|
-
return
|
|
2747
|
+
func (x *TrafficLogSettings) GetEnabled() *wrapperspb.BoolValue {
|
|
2748
|
+
if x != nil {
|
|
2749
|
+
return x.Enabled
|
|
2749
2750
|
}
|
|
2750
|
-
return
|
|
2751
|
+
return nil
|
|
2751
2752
|
}
|
|
2752
2753
|
|
|
2753
|
-
func (x *TrafficLogSettings) GetPath()
|
|
2754
|
-
if x != nil
|
|
2755
|
-
return
|
|
2754
|
+
func (x *TrafficLogSettings) GetPath() *wrapperspb.StringValue {
|
|
2755
|
+
if x != nil {
|
|
2756
|
+
return x.Path
|
|
2756
2757
|
}
|
|
2757
|
-
return
|
|
2758
|
+
return nil
|
|
2758
2759
|
}
|
|
2759
2760
|
|
|
2760
2761
|
type UpdateSettings struct {
|
|
@@ -2762,7 +2763,7 @@ type UpdateSettings struct {
|
|
|
2762
2763
|
sizeCache protoimpl.SizeCache
|
|
2763
2764
|
unknownFields protoimpl.UnknownFields
|
|
2764
2765
|
|
|
2765
|
-
UpdateOnAvailability *
|
|
2766
|
+
UpdateOnAvailability *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=update_on_availability,json=updateOnAvailability,proto3" json:"update_on_availability,omitempty"` // default false
|
|
2766
2767
|
UpdateWindow *UpdateWindowSettings `protobuf:"bytes,2,opt,name=update_window,json=updateWindow,proto3,oneof" json:"update_window,omitempty"`
|
|
2767
2768
|
Download *DownloadSettings `protobuf:"bytes,3,opt,name=download,proto3,oneof" json:"download,omitempty"`
|
|
2768
2769
|
Backup *BackupSettings `protobuf:"bytes,4,opt,name=backup,proto3,oneof" json:"backup,omitempty"`
|
|
@@ -2801,11 +2802,11 @@ func (*UpdateSettings) Descriptor() ([]byte, []int) {
|
|
|
2801
2802
|
return file_scanningconfig_proto_rawDescGZIP(), []int{36}
|
|
2802
2803
|
}
|
|
2803
2804
|
|
|
2804
|
-
func (x *UpdateSettings) GetUpdateOnAvailability()
|
|
2805
|
-
if x != nil
|
|
2806
|
-
return
|
|
2805
|
+
func (x *UpdateSettings) GetUpdateOnAvailability() *wrapperspb.BoolValue {
|
|
2806
|
+
if x != nil {
|
|
2807
|
+
return x.UpdateOnAvailability
|
|
2807
2808
|
}
|
|
2808
|
-
return
|
|
2809
|
+
return nil
|
|
2809
2810
|
}
|
|
2810
2811
|
|
|
2811
2812
|
func (x *UpdateSettings) GetUpdateWindow() *UpdateWindowSettings {
|
|
@@ -2841,8 +2842,8 @@ type UpdateWindowSettings struct {
|
|
|
2841
2842
|
sizeCache protoimpl.SizeCache
|
|
2842
2843
|
unknownFields protoimpl.UnknownFields
|
|
2843
2844
|
|
|
2844
|
-
Enabled *
|
|
2845
|
-
UpdateWindow *
|
|
2845
|
+
Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
2846
|
+
UpdateWindow *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=update_window,json=updateWindow,proto3" json:"update_window,omitempty"` // cron expression
|
|
2846
2847
|
}
|
|
2847
2848
|
|
|
2848
2849
|
func (x *UpdateWindowSettings) Reset() {
|
|
@@ -2877,18 +2878,18 @@ func (*UpdateWindowSettings) Descriptor() ([]byte, []int) {
|
|
|
2877
2878
|
return file_scanningconfig_proto_rawDescGZIP(), []int{37}
|
|
2878
2879
|
}
|
|
2879
2880
|
|
|
2880
|
-
func (x *UpdateWindowSettings) GetEnabled()
|
|
2881
|
-
if x != nil
|
|
2882
|
-
return
|
|
2881
|
+
func (x *UpdateWindowSettings) GetEnabled() *wrapperspb.BoolValue {
|
|
2882
|
+
if x != nil {
|
|
2883
|
+
return x.Enabled
|
|
2883
2884
|
}
|
|
2884
|
-
return
|
|
2885
|
+
return nil
|
|
2885
2886
|
}
|
|
2886
2887
|
|
|
2887
|
-
func (x *UpdateWindowSettings) GetUpdateWindow()
|
|
2888
|
-
if x != nil
|
|
2889
|
-
return
|
|
2888
|
+
func (x *UpdateWindowSettings) GetUpdateWindow() *wrapperspb.StringValue {
|
|
2889
|
+
if x != nil {
|
|
2890
|
+
return x.UpdateWindow
|
|
2890
2891
|
}
|
|
2891
|
-
return
|
|
2892
|
+
return nil
|
|
2892
2893
|
}
|
|
2893
2894
|
|
|
2894
2895
|
type BackupSettings struct {
|
|
@@ -2896,7 +2897,7 @@ type BackupSettings struct {
|
|
|
2896
2897
|
sizeCache protoimpl.SizeCache
|
|
2897
2898
|
unknownFields protoimpl.UnknownFields
|
|
2898
2899
|
|
|
2899
|
-
BackupFolder *
|
|
2900
|
+
BackupFolder *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=backup_folder,json=backupFolder,proto3" json:"backup_folder,omitempty"`
|
|
2900
2901
|
}
|
|
2901
2902
|
|
|
2902
2903
|
func (x *BackupSettings) Reset() {
|
|
@@ -2931,11 +2932,11 @@ func (*BackupSettings) Descriptor() ([]byte, []int) {
|
|
|
2931
2932
|
return file_scanningconfig_proto_rawDescGZIP(), []int{38}
|
|
2932
2933
|
}
|
|
2933
2934
|
|
|
2934
|
-
func (x *BackupSettings) GetBackupFolder()
|
|
2935
|
-
if x != nil
|
|
2936
|
-
return
|
|
2935
|
+
func (x *BackupSettings) GetBackupFolder() *wrapperspb.StringValue {
|
|
2936
|
+
if x != nil {
|
|
2937
|
+
return x.BackupFolder
|
|
2937
2938
|
}
|
|
2938
|
-
return
|
|
2939
|
+
return nil
|
|
2939
2940
|
}
|
|
2940
2941
|
|
|
2941
2942
|
type DownloadSettings struct {
|
|
@@ -2943,11 +2944,11 @@ type DownloadSettings struct {
|
|
|
2943
2944
|
sizeCache protoimpl.SizeCache
|
|
2944
2945
|
unknownFields protoimpl.UnknownFields
|
|
2945
2946
|
|
|
2946
|
-
DownloadOnAvailability *
|
|
2947
|
-
DownloadWindow *
|
|
2948
|
-
DownloadFolder *
|
|
2949
|
-
DownloadTimeoutSeconds *
|
|
2950
|
-
ThrottleRateKbPerSecond *
|
|
2947
|
+
DownloadOnAvailability *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=download_on_availability,json=downloadOnAvailability,proto3" json:"download_on_availability,omitempty"` // default true
|
|
2948
|
+
DownloadWindow *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=download_window,json=downloadWindow,proto3" json:"download_window,omitempty"` // cron expression
|
|
2949
|
+
DownloadFolder *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=download_folder,json=downloadFolder,proto3" json:"download_folder,omitempty"`
|
|
2950
|
+
DownloadTimeoutSeconds *wrapperspb.Int32Value `protobuf:"bytes,4,opt,name=download_timeout_seconds,json=downloadTimeoutSeconds,proto3" json:"download_timeout_seconds,omitempty"`
|
|
2951
|
+
ThrottleRateKbPerSecond *wrapperspb.Int32Value `protobuf:"bytes,5,opt,name=throttle_rate_kb_per_second,json=throttleRateKbPerSecond,proto3" json:"throttle_rate_kb_per_second,omitempty"`
|
|
2951
2952
|
}
|
|
2952
2953
|
|
|
2953
2954
|
func (x *DownloadSettings) Reset() {
|
|
@@ -2982,39 +2983,39 @@ func (*DownloadSettings) Descriptor() ([]byte, []int) {
|
|
|
2982
2983
|
return file_scanningconfig_proto_rawDescGZIP(), []int{39}
|
|
2983
2984
|
}
|
|
2984
2985
|
|
|
2985
|
-
func (x *DownloadSettings) GetDownloadOnAvailability()
|
|
2986
|
-
if x != nil
|
|
2987
|
-
return
|
|
2986
|
+
func (x *DownloadSettings) GetDownloadOnAvailability() *wrapperspb.BoolValue {
|
|
2987
|
+
if x != nil {
|
|
2988
|
+
return x.DownloadOnAvailability
|
|
2988
2989
|
}
|
|
2989
|
-
return
|
|
2990
|
+
return nil
|
|
2990
2991
|
}
|
|
2991
2992
|
|
|
2992
|
-
func (x *DownloadSettings) GetDownloadWindow()
|
|
2993
|
-
if x != nil
|
|
2994
|
-
return
|
|
2993
|
+
func (x *DownloadSettings) GetDownloadWindow() *wrapperspb.StringValue {
|
|
2994
|
+
if x != nil {
|
|
2995
|
+
return x.DownloadWindow
|
|
2995
2996
|
}
|
|
2996
|
-
return
|
|
2997
|
+
return nil
|
|
2997
2998
|
}
|
|
2998
2999
|
|
|
2999
|
-
func (x *DownloadSettings) GetDownloadFolder()
|
|
3000
|
-
if x != nil
|
|
3001
|
-
return
|
|
3000
|
+
func (x *DownloadSettings) GetDownloadFolder() *wrapperspb.StringValue {
|
|
3001
|
+
if x != nil {
|
|
3002
|
+
return x.DownloadFolder
|
|
3002
3003
|
}
|
|
3003
|
-
return
|
|
3004
|
+
return nil
|
|
3004
3005
|
}
|
|
3005
3006
|
|
|
3006
|
-
func (x *DownloadSettings) GetDownloadTimeoutSeconds()
|
|
3007
|
-
if x != nil
|
|
3008
|
-
return
|
|
3007
|
+
func (x *DownloadSettings) GetDownloadTimeoutSeconds() *wrapperspb.Int32Value {
|
|
3008
|
+
if x != nil {
|
|
3009
|
+
return x.DownloadTimeoutSeconds
|
|
3009
3010
|
}
|
|
3010
|
-
return
|
|
3011
|
+
return nil
|
|
3011
3012
|
}
|
|
3012
3013
|
|
|
3013
|
-
func (x *DownloadSettings) GetThrottleRateKbPerSecond()
|
|
3014
|
-
if x != nil
|
|
3015
|
-
return
|
|
3014
|
+
func (x *DownloadSettings) GetThrottleRateKbPerSecond() *wrapperspb.Int32Value {
|
|
3015
|
+
if x != nil {
|
|
3016
|
+
return x.ThrottleRateKbPerSecond
|
|
3016
3017
|
}
|
|
3017
|
-
return
|
|
3018
|
+
return nil
|
|
3018
3019
|
}
|
|
3019
3020
|
|
|
3020
3021
|
type PrerequisiteSettings struct {
|
|
@@ -3022,8 +3023,8 @@ type PrerequisiteSettings struct {
|
|
|
3022
3023
|
sizeCache protoimpl.SizeCache
|
|
3023
3024
|
unknownFields protoimpl.UnknownFields
|
|
3024
3025
|
|
|
3025
|
-
RequiredFreeDiskSpaceBytes *
|
|
3026
|
-
RequiredFreeDiskSpacePercentage *
|
|
3026
|
+
RequiredFreeDiskSpaceBytes *wrapperspb.Int64Value `protobuf:"bytes,1,opt,name=required_free_disk_space_bytes,json=requiredFreeDiskSpaceBytes,proto3" json:"required_free_disk_space_bytes,omitempty"`
|
|
3027
|
+
RequiredFreeDiskSpacePercentage *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=required_free_disk_space_percentage,json=requiredFreeDiskSpacePercentage,proto3" json:"required_free_disk_space_percentage,omitempty"`
|
|
3027
3028
|
}
|
|
3028
3029
|
|
|
3029
3030
|
func (x *PrerequisiteSettings) Reset() {
|
|
@@ -3058,18 +3059,18 @@ func (*PrerequisiteSettings) Descriptor() ([]byte, []int) {
|
|
|
3058
3059
|
return file_scanningconfig_proto_rawDescGZIP(), []int{40}
|
|
3059
3060
|
}
|
|
3060
3061
|
|
|
3061
|
-
func (x *PrerequisiteSettings) GetRequiredFreeDiskSpaceBytes()
|
|
3062
|
-
if x != nil
|
|
3063
|
-
return
|
|
3062
|
+
func (x *PrerequisiteSettings) GetRequiredFreeDiskSpaceBytes() *wrapperspb.Int64Value {
|
|
3063
|
+
if x != nil {
|
|
3064
|
+
return x.RequiredFreeDiskSpaceBytes
|
|
3064
3065
|
}
|
|
3065
|
-
return
|
|
3066
|
+
return nil
|
|
3066
3067
|
}
|
|
3067
3068
|
|
|
3068
|
-
func (x *PrerequisiteSettings) GetRequiredFreeDiskSpacePercentage()
|
|
3069
|
-
if x != nil
|
|
3070
|
-
return
|
|
3069
|
+
func (x *PrerequisiteSettings) GetRequiredFreeDiskSpacePercentage() *wrapperspb.Int32Value {
|
|
3070
|
+
if x != nil {
|
|
3071
|
+
return x.RequiredFreeDiskSpacePercentage
|
|
3071
3072
|
}
|
|
3072
|
-
return
|
|
3073
|
+
return nil
|
|
3073
3074
|
}
|
|
3074
3075
|
|
|
3075
3076
|
type LogSettings struct {
|
|
@@ -3077,10 +3078,10 @@ type LogSettings struct {
|
|
|
3077
3078
|
sizeCache protoimpl.SizeCache
|
|
3078
3079
|
unknownFields protoimpl.UnknownFields
|
|
3079
3080
|
|
|
3080
|
-
Level *LogSettings_LogLevel
|
|
3081
|
-
FileSizeLimitBytes *
|
|
3082
|
-
RetainedFileCountLimit *
|
|
3083
|
-
Overrides map[string]string
|
|
3081
|
+
Level *LogSettings_LogLevel `protobuf:"varint,1,opt,name=level,proto3,enum=lansweeper.scanningconfig.v1.LogSettings_LogLevel,oneof" json:"level,omitempty"` // default INFORMATION
|
|
3082
|
+
FileSizeLimitBytes *wrapperspb.Int64Value `protobuf:"bytes,2,opt,name=file_size_limit_bytes,json=fileSizeLimitBytes,proto3" json:"file_size_limit_bytes,omitempty"` // default 52428800 bytes (50MB)
|
|
3083
|
+
RetainedFileCountLimit *wrapperspb.Int32Value `protobuf:"bytes,3,opt,name=retained_file_count_limit,json=retainedFileCountLimit,proto3" json:"retained_file_count_limit,omitempty"` // default 5
|
|
3084
|
+
Overrides map[string]string `protobuf:"bytes,4,rep,name=overrides,proto3" json:"overrides,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
3084
3085
|
}
|
|
3085
3086
|
|
|
3086
3087
|
func (x *LogSettings) Reset() {
|
|
@@ -3122,18 +3123,18 @@ func (x *LogSettings) GetLevel() LogSettings_LogLevel {
|
|
|
3122
3123
|
return LogSettings_VERBOSE
|
|
3123
3124
|
}
|
|
3124
3125
|
|
|
3125
|
-
func (x *LogSettings) GetFileSizeLimitBytes()
|
|
3126
|
-
if x != nil
|
|
3127
|
-
return
|
|
3126
|
+
func (x *LogSettings) GetFileSizeLimitBytes() *wrapperspb.Int64Value {
|
|
3127
|
+
if x != nil {
|
|
3128
|
+
return x.FileSizeLimitBytes
|
|
3128
3129
|
}
|
|
3129
|
-
return
|
|
3130
|
+
return nil
|
|
3130
3131
|
}
|
|
3131
3132
|
|
|
3132
|
-
func (x *LogSettings) GetRetainedFileCountLimit()
|
|
3133
|
-
if x != nil
|
|
3134
|
-
return
|
|
3133
|
+
func (x *LogSettings) GetRetainedFileCountLimit() *wrapperspb.Int32Value {
|
|
3134
|
+
if x != nil {
|
|
3135
|
+
return x.RetainedFileCountLimit
|
|
3135
3136
|
}
|
|
3136
|
-
return
|
|
3137
|
+
return nil
|
|
3137
3138
|
}
|
|
3138
3139
|
|
|
3139
3140
|
func (x *LogSettings) GetOverrides() map[string]string {
|
|
@@ -3149,7 +3150,9 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
3149
3150
|
0x0a, 0x14, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
3150
3151
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3151
3152
|
0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
|
|
3152
|
-
0x67, 0x2e, 0x76, 0x31,
|
|
3153
|
+
0x67, 0x2e, 0x76, 0x31, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
|
|
3154
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70,
|
|
3155
|
+
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x58, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
3153
3156
|
0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63,
|
|
3154
3157
|
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x6f, 0x75, 0x72,
|
|
3155
3158
|
0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x6f, 0x75,
|
|
@@ -3455,186 +3458,191 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
3455
3458
|
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x66, 0x65, 0x61, 0x74,
|
|
3456
3459
|
0x75, 0x72, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x63,
|
|
3457
3460
|
0x61, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
3458
|
-
0x42, 0x09, 0x0a, 0x07, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x22,
|
|
3461
|
+
0x42, 0x09, 0x0a, 0x07, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x22, 0xde, 0x01, 0x0a, 0x13,
|
|
3459
3462
|
0x4d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
3460
|
-
0x6e, 0x67, 0x73, 0x12,
|
|
3461
|
-
0x63, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3463
|
+
0x6e, 0x67, 0x73, 0x12, 0x4b, 0x0a, 0x12, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
3464
|
+
0x63, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3465
|
+
0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
|
|
3466
|
+
0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x11, 0x6d,
|
|
3467
|
+
0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77,
|
|
3468
|
+
0x12, 0x65, 0x0a, 0x10, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f,
|
|
3469
|
+
0x6c, 0x69, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3470
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
3471
|
+
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74,
|
|
3472
|
+
0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
|
|
3473
|
+
0x73, 0x48, 0x00, 0x52, 0x0f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f,
|
|
3474
|
+
0x6c, 0x69, 0x63, 0x79, 0x88, 0x01, 0x01, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x74, 0x65,
|
|
3475
|
+
0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0xd1, 0x01, 0x0a,
|
|
3476
|
+
0x17, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
|
|
3477
|
+
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x58, 0x0a, 0x1a, 0x73, 0x79, 0x6e, 0x63,
|
|
3478
|
+
0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
|
|
3479
|
+
0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67,
|
|
3480
|
+
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49,
|
|
3481
|
+
0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x17, 0x73, 0x79, 0x6e, 0x63, 0x65,
|
|
3482
|
+
0x64, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
|
|
3483
|
+
0x79, 0x73, 0x12, 0x5c, 0x0a, 0x1c, 0x75, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x64,
|
|
3484
|
+
0x61, 0x74, 0x61, 0x5f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
|
|
3485
|
+
0x79, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
|
|
3486
|
+
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32,
|
|
3487
|
+
0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x19, 0x75, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x44,
|
|
3488
|
+
0x61, 0x74, 0x61, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x79, 0x73,
|
|
3489
|
+
0x22, 0x9e, 0x03, 0x0a, 0x14, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
|
|
3490
|
+
0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x4e, 0x0a, 0x15, 0x73, 0x6d, 0x61,
|
|
3491
|
+
0x72, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c,
|
|
3492
|
+
0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
|
|
3493
|
+
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56,
|
|
3494
|
+
0x61, 0x6c, 0x75, 0x65, 0x52, 0x13, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69,
|
|
3495
|
+
0x6e, 0x67, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x64, 0x0a, 0x20, 0x64, 0x65, 0x66,
|
|
3496
|
+
0x61, 0x75, 0x6c, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74,
|
|
3497
|
+
0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20,
|
|
3498
|
+
0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3499
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65,
|
|
3500
|
+
0x52, 0x1d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
|
|
3501
|
+
0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12,
|
|
3502
|
+
0x85, 0x01, 0x0a, 0x17, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
|
|
3503
|
+
0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
|
|
3504
|
+
0x0b, 0x32, 0x4d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73,
|
|
3466
3505
|
0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31,
|
|
3467
|
-
0x2e,
|
|
3468
|
-
|
|
3469
|
-
0x6e,
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
0x0a,
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3506
|
+
0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74,
|
|
3507
|
+
0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69,
|
|
3508
|
+
0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
|
3509
|
+
0x52, 0x15, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e,
|
|
3510
|
+
0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x1a, 0x48, 0x0a, 0x1a, 0x53, 0x6d, 0x61, 0x72, 0x74,
|
|
3511
|
+
0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73,
|
|
3512
|
+
0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
|
|
3513
|
+
0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
|
3514
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
|
|
3515
|
+
0x01, 0x22, 0x6c, 0x0a, 0x13, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x46, 0x6c, 0x61, 0x67,
|
|
3516
|
+
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x55, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x6c,
|
|
3517
|
+
0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e,
|
|
3518
|
+
0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f,
|
|
3519
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74,
|
|
3520
|
+
0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x16, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
|
|
3521
|
+
0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x22,
|
|
3522
|
+
0x72, 0x0a, 0x19, 0x53, 0x63, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,
|
|
3523
|
+
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x55, 0x0a, 0x18,
|
|
3524
|
+
0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c,
|
|
3525
|
+
0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
|
|
3526
|
+
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
3527
|
+
0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x16, 0x70, 0x6f, 0x6c,
|
|
3528
|
+
0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x4d, 0x69, 0x6e, 0x75,
|
|
3529
|
+
0x74, 0x65, 0x73, 0x22, 0xd3, 0x01, 0x0a, 0x0e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x53, 0x65,
|
|
3530
|
+
0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
3531
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
|
3532
|
+
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61,
|
|
3533
|
+
0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x55, 0x0a, 0x18,
|
|
3534
|
+
0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c,
|
|
3535
|
+
0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
|
|
3536
|
+
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
3537
|
+
0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x16, 0x70, 0x6f, 0x6c,
|
|
3538
|
+
0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x6f,
|
|
3539
|
+
0x6e, 0x64, 0x73, 0x12, 0x34, 0x0a, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20,
|
|
3540
|
+
0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3541
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75,
|
|
3542
|
+
0x65, 0x52, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x22, 0xf5, 0x04, 0x0a, 0x1c, 0x4e, 0x65,
|
|
3543
|
+
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
|
|
3544
|
+
0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x58, 0x0a, 0x0b, 0x70, 0x61,
|
|
3545
|
+
0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3546
|
+
0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
3547
|
+
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50,
|
|
3548
|
+
0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
|
|
3549
|
+
0x67, 0x73, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73,
|
|
3550
|
+
0x6d, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x12, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f,
|
|
3551
|
+
0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
|
|
3552
|
+
0x32, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
|
|
3500
3553
|
0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
3501
|
-
0x4e,
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
0x6e,
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
0x6e,
|
|
3514
|
-
|
|
3515
|
-
0x74,
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
|
|
3520
|
-
0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74,
|
|
3521
|
-
0x65, 0x73, 0x22, 0x77, 0x0a, 0x19, 0x53, 0x63, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
3522
|
-
0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
|
|
3523
|
-
0x3d, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
|
|
3524
|
-
0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3525
|
-
0x05, 0x48, 0x00, 0x52, 0x16, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65,
|
|
3526
|
-
0x72, 0x76, 0x61, 0x6c, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x1b,
|
|
3527
|
-
0x0a, 0x19, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
|
|
3528
|
-
0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x0e,
|
|
3529
|
-
0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18,
|
|
3530
|
-
0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
3531
|
-
0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x3d, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x6c,
|
|
3532
|
-
0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63,
|
|
3533
|
-
0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x16, 0x70, 0x6f,
|
|
3534
|
-
0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x53, 0x65, 0x63,
|
|
3535
|
-
0x6f, 0x6e, 0x64, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65,
|
|
3536
|
-
0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65,
|
|
3537
|
-
0x72, 0x88, 0x01, 0x01, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
|
|
3538
|
-
0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
|
|
3539
|
-
0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x22, 0xf5, 0x04, 0x0a,
|
|
3540
|
-
0x1c, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
|
|
3541
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x58, 0x0a,
|
|
3542
|
-
0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x01, 0x20, 0x01,
|
|
3543
|
-
0x28, 0x0b, 0x32, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3544
|
-
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
3545
|
-
0x31, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x53, 0x65, 0x74,
|
|
3546
|
-
0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65,
|
|
3547
|
-
0x6c, 0x69, 0x73, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x12, 0x6e, 0x65, 0x74, 0x77, 0x6f,
|
|
3548
|
-
0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20,
|
|
3549
|
-
0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3550
|
-
0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
|
|
3551
|
-
0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69,
|
|
3552
|
-
0x6c, 0x69, 0x74, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x11,
|
|
3553
|
-
0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
3554
|
-
0x79, 0x88, 0x01, 0x01, 0x12, 0x5c, 0x0a, 0x0d, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x62, 0x65, 0x68,
|
|
3555
|
-
0x61, 0x76, 0x69, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c, 0x61,
|
|
3556
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
|
|
3557
|
-
0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x42,
|
|
3558
|
-
0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48,
|
|
3559
|
-
0x02, 0x52, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x88,
|
|
3560
|
-
0x01, 0x01, 0x12, 0x77, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x63,
|
|
3561
|
-
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
|
|
3562
|
-
0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3563
|
-
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
3564
|
-
0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
3565
|
-
0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48,
|
|
3566
|
-
0x03, 0x52, 0x15, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
3567
|
-
0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x0a, 0x65,
|
|
3568
|
-
0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3569
|
-
0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
3570
|
-
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x45,
|
|
3571
|
-
0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
|
|
3572
|
-
0x48, 0x04, 0x52, 0x0a, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01,
|
|
3573
|
-
0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73,
|
|
3574
|
-
0x6d, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x76, 0x69,
|
|
3575
|
-
0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x69, 0x6e,
|
|
3576
|
-
0x67, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x70,
|
|
3577
|
-
0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
|
|
3578
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73,
|
|
3579
|
-
0x69, 0x6f, 0x6e, 0x73, 0x22, 0x57, 0x0a, 0x13, 0x50, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c,
|
|
3580
|
-
0x69, 0x73, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x2c, 0x0a, 0x0f, 0x6d,
|
|
3581
|
-
0x61, 0x78, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x01,
|
|
3582
|
-
0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x61, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6c,
|
|
3583
|
-
0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x88, 0x01, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6d, 0x61,
|
|
3584
|
-
0x78, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x22, 0x6f, 0x0a,
|
|
3585
|
-
0x11, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
|
|
3586
|
-
0x67, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x74,
|
|
3587
|
-
0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x65, 0x78,
|
|
3588
|
-
0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x2f, 0x0a,
|
|
3589
|
-
0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
|
|
3590
|
-
0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c,
|
|
3591
|
-
0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22, 0x7f,
|
|
3592
|
-
0x0a, 0x19, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
|
|
3593
|
-
0x69, 0x74, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65,
|
|
3594
|
-
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e,
|
|
3595
|
-
0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x31, 0x0a, 0x12, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f,
|
|
3596
|
-
0x63, 0x64, 0x72, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3597
|
-
0x08, 0x48, 0x00, 0x52, 0x10, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x64, 0x72, 0x45, 0x6e,
|
|
3598
|
-
0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x63, 0x74,
|
|
3599
|
-
0x69, 0x76, 0x65, 0x5f, 0x63, 0x64, 0x72, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22,
|
|
3600
|
-
0x16, 0x0a, 0x14, 0x50, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x53,
|
|
3601
|
-
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0xb3, 0x02, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x74,
|
|
3602
|
-
0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
|
|
3603
|
-
0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x24, 0x0a, 0x0b, 0x61, 0x6c, 0x6c,
|
|
3604
|
-
0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00,
|
|
3605
|
-
0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
3606
|
-
0x68, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03,
|
|
3607
|
-
0x28, 0x0b, 0x32, 0x4a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3608
|
-
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
3609
|
-
0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
3610
|
-
0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e,
|
|
3611
|
-
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09,
|
|
3612
|
-
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x1a, 0x72, 0x0a, 0x0e, 0x50, 0x72, 0x6f,
|
|
3613
|
-
0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
|
|
3614
|
-
0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4a, 0x0a,
|
|
3615
|
-
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x6c,
|
|
3554
|
+
0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
3555
|
+
0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x11, 0x6e, 0x65, 0x74,
|
|
3556
|
+
0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x88, 0x01,
|
|
3557
|
+
0x01, 0x12, 0x5c, 0x0a, 0x0d, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69,
|
|
3558
|
+
0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
3559
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
|
|
3560
|
+
0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61,
|
|
3561
|
+
0x76, 0x69, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x02, 0x52, 0x0c,
|
|
3562
|
+
0x70, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12,
|
|
3563
|
+
0x77, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
|
|
3564
|
+
0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3565
|
+
0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
3566
|
+
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50,
|
|
3567
|
+
0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,
|
|
3568
|
+
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x03, 0x52, 0x15,
|
|
3569
|
+
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
|
|
3570
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x0a, 0x65, 0x78, 0x63, 0x6c,
|
|
3571
|
+
0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c,
|
|
3616
3572
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
|
|
3617
|
-
0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
0x0c, 0x5f,
|
|
3621
|
-
0x0a,
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3573
|
+
0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x78, 0x63, 0x6c,
|
|
3574
|
+
0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x04, 0x52,
|
|
3575
|
+
0x0a, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x42, 0x0e,
|
|
3576
|
+
0x0a, 0x0c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x42, 0x15,
|
|
3577
|
+
0x0a, 0x13, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62,
|
|
3578
|
+
0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x62,
|
|
3579
|
+
0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x70, 0x72, 0x6f, 0x74,
|
|
3580
|
+
0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
|
|
3581
|
+
0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e,
|
|
3582
|
+
0x73, 0x22, 0x5b, 0x0a, 0x13, 0x50, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d,
|
|
3583
|
+
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x44, 0x0a, 0x0f, 0x6d, 0x61, 0x78, 0x5f,
|
|
3584
|
+
0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3585
|
+
0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
3586
|
+
0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e,
|
|
3587
|
+
0x6d, 0x61, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x22, 0x6f,
|
|
3588
|
+
0x0a, 0x11, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
3589
|
+
0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f,
|
|
3590
|
+
0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x65,
|
|
3591
|
+
0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x2f,
|
|
3592
|
+
0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
|
|
3593
|
+
0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63,
|
|
3594
|
+
0x6c, 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22,
|
|
3595
|
+
0x9b, 0x01, 0x0a, 0x19, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62,
|
|
3596
|
+
0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x34, 0x0a,
|
|
3597
|
+
0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
|
|
3598
|
+
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
3599
|
+
0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62,
|
|
3600
|
+
0x6c, 0x65, 0x64, 0x12, 0x48, 0x0a, 0x12, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x64,
|
|
3601
|
+
0x72, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3602
|
+
0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
|
|
3603
|
+
0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x61, 0x63, 0x74,
|
|
3604
|
+
0x69, 0x76, 0x65, 0x43, 0x64, 0x72, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x16, 0x0a,
|
|
3605
|
+
0x14, 0x50, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x53, 0x65, 0x74,
|
|
3606
|
+
0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0xba, 0x02, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63,
|
|
3607
|
+
0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
|
|
3608
|
+
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x5f, 0x65,
|
|
3609
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
|
|
3610
|
+
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42,
|
|
3611
|
+
0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x45, 0x6e, 0x61,
|
|
3612
|
+
0x62, 0x6c, 0x65, 0x64, 0x12, 0x68, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c,
|
|
3613
|
+
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3614
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e,
|
|
3615
|
+
0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43,
|
|
3616
|
+
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74,
|
|
3617
|
+
0x69, 0x6e, 0x67, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x45, 0x6e,
|
|
3618
|
+
0x74, 0x72, 0x79, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x1a, 0x72,
|
|
3619
|
+
0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
|
3620
|
+
0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
|
|
3621
|
+
0x65, 0x79, 0x12, 0x4a, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3622
|
+
0x0b, 0x32, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73,
|
|
3623
|
+
0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31,
|
|
3624
|
+
0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53,
|
|
3625
|
+
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
|
|
3626
|
+
0x38, 0x01, 0x22, 0xb5, 0x02, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x44,
|
|
3627
|
+
0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x34, 0x0a,
|
|
3628
|
+
0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
|
|
3629
|
+
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
3630
|
+
0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62,
|
|
3631
|
+
0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3632
|
+
0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
3633
|
+
0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04,
|
|
3634
|
+
0x70, 0x6f, 0x72, 0x74, 0x12, 0x71, 0x0a, 0x0f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
|
|
3635
|
+
0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x48, 0x2e,
|
|
3636
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
|
|
3637
|
+
0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
|
|
3638
|
+
0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
3639
|
+
0x6e, 0x67, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x61,
|
|
3640
|
+
0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f,
|
|
3641
|
+
0x6e, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x41, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x69, 0x74,
|
|
3642
|
+
0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
|
|
3643
|
+
0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
|
|
3644
|
+
0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
3645
|
+
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa2, 0x01, 0x0a, 0x10, 0x49,
|
|
3638
3646
|
0x74, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
|
|
3639
3647
|
0x74, 0x0a, 0x15, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
|
|
3640
3648
|
0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a,
|
|
@@ -3662,151 +3670,151 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
3662
3670
|
0x4c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6e,
|
|
3663
3671
|
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,
|
|
3664
3672
|
0x74, 0x69, 0x6f, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63,
|
|
3665
|
-
0x5f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x22,
|
|
3666
|
-
0x66, 0x69, 0x63, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
|
|
3667
|
-
0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
0x6e,
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x0d, 0x70, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73,
|
|
3693
|
-
0x69, 0x74, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3673
|
+
0x5f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x22, 0x7c, 0x0a, 0x12, 0x54, 0x72, 0x61, 0x66,
|
|
3674
|
+
0x66, 0x69, 0x63, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x34,
|
|
3675
|
+
0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3676
|
+
0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
|
|
3677
|
+
0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61,
|
|
3678
|
+
0x62, 0x6c, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01,
|
|
3679
|
+
0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
3680
|
+
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65,
|
|
3681
|
+
0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0xf7, 0x03, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
|
3682
|
+
0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x50, 0x0a, 0x16, 0x75, 0x70, 0x64,
|
|
3683
|
+
0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c,
|
|
3684
|
+
0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
|
|
3685
|
+
0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c,
|
|
3686
|
+
0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x14, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x41,
|
|
3687
|
+
0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x5c, 0x0a, 0x0d, 0x75,
|
|
3688
|
+
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01,
|
|
3689
|
+
0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3690
|
+
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
3691
|
+
0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x65,
|
|
3692
|
+
0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
3693
|
+
0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x08, 0x64, 0x6f, 0x77,
|
|
3694
|
+
0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x6c, 0x61,
|
|
3695
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
|
|
3696
|
+
0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x77, 0x6e, 0x6c,
|
|
3697
|
+
0x6f, 0x61, 0x64, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x08, 0x64,
|
|
3698
|
+
0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x06, 0x62, 0x61,
|
|
3699
|
+
0x63, 0x6b, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3694
3700
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
3695
|
-
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
0x77,
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
0x6f,
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
0x64,
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3701
|
+
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
|
|
3702
|
+
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x02, 0x52, 0x06, 0x62, 0x61, 0x63, 0x6b,
|
|
3703
|
+
0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x0d, 0x70, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75,
|
|
3704
|
+
0x69, 0x73, 0x69, 0x74, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c,
|
|
3705
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
|
|
3706
|
+
0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x72,
|
|
3707
|
+
0x65, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
|
|
3708
|
+
0x48, 0x03, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x65,
|
|
3709
|
+
0x73, 0x88, 0x01, 0x01, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
|
|
3710
|
+
0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x6c,
|
|
3711
|
+
0x6f, 0x61, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x42, 0x10,
|
|
3712
|
+
0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x65, 0x73,
|
|
3713
|
+
0x22, 0x8f, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f,
|
|
3714
|
+
0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x65, 0x6e, 0x61,
|
|
3715
|
+
0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
3716
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f,
|
|
3717
|
+
0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12,
|
|
3718
|
+
0x41, 0x0a, 0x0d, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
|
|
3719
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
|
|
3720
|
+
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56,
|
|
3721
|
+
0x61, 0x6c, 0x75, 0x65, 0x52, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64,
|
|
3722
|
+
0x6f, 0x77, 0x22, 0x53, 0x0a, 0x0e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74,
|
|
3723
|
+
0x69, 0x6e, 0x67, 0x73, 0x12, 0x41, 0x0a, 0x0d, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x5f, 0x66,
|
|
3724
|
+
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f,
|
|
3725
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74,
|
|
3726
|
+
0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x75,
|
|
3727
|
+
0x70, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x22, 0xa8, 0x03, 0x0a, 0x10, 0x44, 0x6f, 0x77, 0x6e,
|
|
3728
|
+
0x6c, 0x6f, 0x61, 0x64, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x54, 0x0a, 0x18,
|
|
3729
|
+
0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x5f, 0x61, 0x76, 0x61, 0x69,
|
|
3730
|
+
0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
|
|
3731
|
+
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
3732
|
+
0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x16, 0x64, 0x6f, 0x77, 0x6e,
|
|
3733
|
+
0x6c, 0x6f, 0x61, 0x64, 0x4f, 0x6e, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69,
|
|
3734
|
+
0x74, 0x79, 0x12, 0x45, 0x0a, 0x0f, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x77,
|
|
3735
|
+
0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f,
|
|
3736
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74,
|
|
3737
|
+
0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e, 0x64, 0x6f, 0x77, 0x6e, 0x6c,
|
|
3738
|
+
0x6f, 0x61, 0x64, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x12, 0x45, 0x0a, 0x0f, 0x64, 0x6f, 0x77,
|
|
3739
|
+
0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
|
|
3740
|
+
0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
3741
|
+
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65,
|
|
3742
|
+
0x52, 0x0e, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
|
|
3743
|
+
0x12, 0x55, 0x0a, 0x18, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x74, 0x69, 0x6d,
|
|
3744
|
+
0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01,
|
|
3745
|
+
0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
3746
|
+
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
|
|
3747
|
+
0x16, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74,
|
|
3748
|
+
0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x59, 0x0a, 0x1b, 0x74, 0x68, 0x72, 0x6f, 0x74,
|
|
3749
|
+
0x74, 0x6c, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6b, 0x62, 0x5f, 0x70, 0x65, 0x72, 0x5f,
|
|
3750
|
+
0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67,
|
|
3751
|
+
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49,
|
|
3752
|
+
0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x17, 0x74, 0x68, 0x72, 0x6f, 0x74,
|
|
3753
|
+
0x74, 0x6c, 0x65, 0x52, 0x61, 0x74, 0x65, 0x4b, 0x62, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f,
|
|
3754
|
+
0x6e, 0x64, 0x22, 0xe2, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73,
|
|
3755
|
+
0x69, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x5f, 0x0a, 0x1e, 0x72,
|
|
3756
|
+
0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x5f, 0x64, 0x69, 0x73,
|
|
3757
|
+
0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20,
|
|
3758
|
+
0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3759
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65,
|
|
3760
|
+
0x52, 0x1a, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x72, 0x65, 0x65, 0x44, 0x69,
|
|
3761
|
+
0x73, 0x6b, 0x53, 0x70, 0x61, 0x63, 0x65, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x23,
|
|
3750
3762
|
0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x5f, 0x64, 0x69,
|
|
3751
3763
|
0x73, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
|
|
3752
|
-
0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
0x65,
|
|
3758
|
-
|
|
3759
|
-
0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x84, 0x04, 0x0a, 0x0b, 0x4c,
|
|
3760
|
-
0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x4d, 0x0a, 0x05, 0x6c, 0x65,
|
|
3761
|
-
0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
3762
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
|
|
3763
|
-
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74,
|
|
3764
|
-
0x69, 0x6e, 0x67, 0x73, 0x2e, 0x4c, 0x6f, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x48, 0x00, 0x52,
|
|
3765
|
-
0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x15, 0x66, 0x69, 0x6c,
|
|
3766
|
-
0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x62, 0x79, 0x74,
|
|
3767
|
-
0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x12, 0x66, 0x69, 0x6c, 0x65,
|
|
3768
|
-
0x53, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x88, 0x01,
|
|
3769
|
-
0x01, 0x12, 0x3e, 0x0a, 0x19, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x66, 0x69,
|
|
3770
|
-
0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03,
|
|
3771
|
-
0x20, 0x01, 0x28, 0x05, 0x48, 0x02, 0x52, 0x16, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64,
|
|
3772
|
-
0x46, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01,
|
|
3773
|
-
0x01, 0x12, 0x56, 0x0a, 0x09, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x18, 0x04,
|
|
3774
|
-
0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3775
|
-
0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
3776
|
-
0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e,
|
|
3777
|
-
0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09,
|
|
3778
|
-
0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0x3c, 0x0a, 0x0e, 0x4f, 0x76, 0x65,
|
|
3779
|
-
0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
|
|
3780
|
-
0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
|
|
3781
|
-
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
|
|
3782
|
-
0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x56, 0x0a, 0x08, 0x4c, 0x6f, 0x67, 0x4c, 0x65,
|
|
3783
|
-
0x76, 0x65, 0x6c, 0x12, 0x0b, 0x0a, 0x07, 0x56, 0x45, 0x52, 0x42, 0x4f, 0x53, 0x45, 0x10, 0x00,
|
|
3784
|
-
0x12, 0x09, 0x0a, 0x05, 0x44, 0x45, 0x42, 0x55, 0x47, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x49,
|
|
3785
|
-
0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07,
|
|
3786
|
-
0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52,
|
|
3787
|
-
0x4f, 0x52, 0x10, 0x04, 0x12, 0x09, 0x0a, 0x05, 0x46, 0x41, 0x54, 0x41, 0x4c, 0x10, 0x05, 0x42,
|
|
3788
|
-
0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x66, 0x69,
|
|
3789
|
-
0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x62, 0x79,
|
|
3790
|
-
0x74, 0x65, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64,
|
|
3791
|
-
0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6d, 0x69,
|
|
3792
|
-
0x74, 0x2a, 0x3b, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
3793
|
-
0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x49, 0x50, 0x5f, 0x53, 0x43,
|
|
3794
|
-
0x41, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x41, 0x4e,
|
|
3795
|
-
0x47, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x4f, 0x53, 0x54, 0x10, 0x02, 0x32, 0xb8,
|
|
3796
|
-
0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
3797
|
-
0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74,
|
|
3798
|
-
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79,
|
|
3799
|
-
0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3800
|
-
0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
|
|
3801
|
-
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
|
|
3802
|
-
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52,
|
|
3803
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3764
|
+
0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
|
|
3765
|
+
0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33,
|
|
3766
|
+
0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x1f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
|
|
3767
|
+
0x46, 0x72, 0x65, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x70, 0x61, 0x63, 0x65, 0x50, 0x65, 0x72,
|
|
3768
|
+
0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0xfc, 0x03, 0x0a, 0x0b, 0x4c, 0x6f, 0x67, 0x53,
|
|
3769
|
+
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x4d, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c,
|
|
3770
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3804
3771
|
0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
|
|
3805
|
-
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3772
|
+
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
|
|
3773
|
+
0x73, 0x2e, 0x4c, 0x6f, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x48, 0x00, 0x52, 0x05, 0x6c, 0x65,
|
|
3774
|
+
0x76, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x4e, 0x0a, 0x15, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73,
|
|
3775
|
+
0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18,
|
|
3776
|
+
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
|
|
3777
|
+
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
|
|
3778
|
+
0x75, 0x65, 0x52, 0x12, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69,
|
|
3779
|
+
0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x56, 0x0a, 0x19, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e,
|
|
3780
|
+
0x65, 0x64, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69,
|
|
3781
|
+
0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
|
|
3782
|
+
0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33,
|
|
3783
|
+
0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x16, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64,
|
|
3784
|
+
0x46, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x56,
|
|
3785
|
+
0x0a, 0x09, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
|
|
3786
|
+
0x0b, 0x32, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73,
|
|
3787
|
+
0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31,
|
|
3788
|
+
0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x4f, 0x76, 0x65,
|
|
3789
|
+
0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x6f, 0x76, 0x65,
|
|
3790
|
+
0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0x3c, 0x0a, 0x0e, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69,
|
|
3791
|
+
0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
|
|
3792
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
|
|
3793
|
+
0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
|
3794
|
+
0x3a, 0x02, 0x38, 0x01, 0x22, 0x56, 0x0a, 0x08, 0x4c, 0x6f, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c,
|
|
3795
|
+
0x12, 0x0b, 0x0a, 0x07, 0x56, 0x45, 0x52, 0x42, 0x4f, 0x53, 0x45, 0x10, 0x00, 0x12, 0x09, 0x0a,
|
|
3796
|
+
0x05, 0x44, 0x45, 0x42, 0x55, 0x47, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x49, 0x4e, 0x46, 0x4f,
|
|
3797
|
+
0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x41, 0x52,
|
|
3798
|
+
0x4e, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10,
|
|
3799
|
+
0x04, 0x12, 0x09, 0x0a, 0x05, 0x46, 0x41, 0x54, 0x41, 0x4c, 0x10, 0x05, 0x42, 0x08, 0x0a, 0x06,
|
|
3800
|
+
0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2a, 0x3b, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e,
|
|
3801
|
+
0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f,
|
|
3802
|
+
0x49, 0x50, 0x5f, 0x53, 0x43, 0x41, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x09,
|
|
3803
|
+
0x0a, 0x05, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x4f, 0x53,
|
|
3804
|
+
0x54, 0x10, 0x02, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
3805
|
+
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e, 0x01,
|
|
3806
|
+
0x0a, 0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
|
|
3807
|
+
0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c, 0x61,
|
|
3808
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
|
|
3809
|
+
0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f,
|
|
3810
|
+
0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f,
|
|
3811
|
+
0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61,
|
|
3812
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
|
|
3813
|
+
0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f,
|
|
3814
|
+
0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f,
|
|
3815
|
+
0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10,
|
|
3816
|
+
0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f,
|
|
3817
|
+
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
3810
3818
|
}
|
|
3811
3819
|
|
|
3812
3820
|
var (
|
|
@@ -3879,6 +3887,10 @@ var file_scanningconfig_proto_goTypes = []any{
|
|
|
3879
3887
|
nil, // 52: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.ProtocolsEntry
|
|
3880
3888
|
nil, // 53: lansweeper.scanningconfig.v1.ProtocolDetailSettings.AdditionalDataEntry
|
|
3881
3889
|
nil, // 54: lansweeper.scanningconfig.v1.LogSettings.OverridesEntry
|
|
3890
|
+
(*wrapperspb.StringValue)(nil), // 55: google.protobuf.StringValue
|
|
3891
|
+
(*wrapperspb.Int32Value)(nil), // 56: google.protobuf.Int32Value
|
|
3892
|
+
(*wrapperspb.BoolValue)(nil), // 57: google.protobuf.BoolValue
|
|
3893
|
+
(*wrapperspb.Int64Value)(nil), // 58: google.protobuf.Int64Value
|
|
3882
3894
|
}
|
|
3883
3895
|
var file_scanningconfig_proto_depIdxs = []int32{
|
|
3884
3896
|
11, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
|
|
@@ -3917,32 +3929,63 @@ var file_scanningconfig_proto_depIdxs = []int32{
|
|
|
3917
3929
|
32, // 33: lansweeper.scanningconfig.v1.HubSettings.feature_flags:type_name -> lansweeper.scanningconfig.v1.FeatureFlagSettings
|
|
3918
3930
|
33, // 34: lansweeper.scanningconfig.v1.HubSettings.scan_configuration:type_name -> lansweeper.scanningconfig.v1.ScanConfigurationSettings
|
|
3919
3931
|
34, // 35: lansweeper.scanningconfig.v1.HubSettings.import:type_name -> lansweeper.scanningconfig.v1.ImportSettings
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3932
|
+
55, // 36: lansweeper.scanningconfig.v1.MaintenanceSettings.maintenance_window:type_name -> google.protobuf.StringValue
|
|
3933
|
+
30, // 37: lansweeper.scanningconfig.v1.MaintenanceSettings.retention_policy:type_name -> lansweeper.scanningconfig.v1.RetentionPolicySettings
|
|
3934
|
+
56, // 38: lansweeper.scanningconfig.v1.RetentionPolicySettings.synced_data_retention_days:type_name -> google.protobuf.Int32Value
|
|
3935
|
+
56, // 39: lansweeper.scanningconfig.v1.RetentionPolicySettings.unsynced_data_retention_days:type_name -> google.protobuf.Int32Value
|
|
3936
|
+
57, // 40: lansweeper.scanningconfig.v1.NotificationSettings.smart_polling_enabled:type_name -> google.protobuf.BoolValue
|
|
3937
|
+
56, // 41: lansweeper.scanningconfig.v1.NotificationSettings.default_polling_interval_seconds:type_name -> google.protobuf.Int32Value
|
|
3938
|
+
51, // 42: lansweeper.scanningconfig.v1.NotificationSettings.smart_polling_intervals:type_name -> lansweeper.scanningconfig.v1.NotificationSettings.SmartPollingIntervalsEntry
|
|
3939
|
+
56, // 43: lansweeper.scanningconfig.v1.FeatureFlagSettings.polling_interval_minutes:type_name -> google.protobuf.Int32Value
|
|
3940
|
+
56, // 44: lansweeper.scanningconfig.v1.ScanConfigurationSettings.polling_interval_minutes:type_name -> google.protobuf.Int32Value
|
|
3941
|
+
57, // 45: lansweeper.scanningconfig.v1.ImportSettings.enabled:type_name -> google.protobuf.BoolValue
|
|
3942
|
+
56, // 46: lansweeper.scanningconfig.v1.ImportSettings.polling_interval_seconds:type_name -> google.protobuf.Int32Value
|
|
3943
|
+
55, // 47: lansweeper.scanningconfig.v1.ImportSettings.folder:type_name -> google.protobuf.StringValue
|
|
3944
|
+
36, // 48: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.parallelism:type_name -> lansweeper.scanningconfig.v1.ParallelismSettings
|
|
3945
|
+
38, // 49: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.network_visibility:type_name -> lansweeper.scanningconfig.v1.NetworkVisibilitySettings
|
|
3946
|
+
39, // 50: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.ping_behavior:type_name -> lansweeper.scanningconfig.v1.PingBehaviorSettings
|
|
3947
|
+
40, // 51: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.protocol_configuration:type_name -> lansweeper.scanningconfig.v1.ProtocolConfigurationSettings
|
|
3948
|
+
37, // 52: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.exclusions:type_name -> lansweeper.scanningconfig.v1.ExclusionSettings
|
|
3949
|
+
56, // 53: lansweeper.scanningconfig.v1.ParallelismSettings.max_parallelism:type_name -> google.protobuf.Int32Value
|
|
3950
|
+
57, // 54: lansweeper.scanningconfig.v1.NetworkVisibilitySettings.enabled:type_name -> google.protobuf.BoolValue
|
|
3951
|
+
57, // 55: lansweeper.scanningconfig.v1.NetworkVisibilitySettings.active_cdr_enabled:type_name -> google.protobuf.BoolValue
|
|
3952
|
+
57, // 56: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.all_enabled:type_name -> google.protobuf.BoolValue
|
|
3953
|
+
52, // 57: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.protocols:type_name -> lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.ProtocolsEntry
|
|
3954
|
+
57, // 58: lansweeper.scanningconfig.v1.ProtocolDetailSettings.enabled:type_name -> google.protobuf.BoolValue
|
|
3955
|
+
56, // 59: lansweeper.scanningconfig.v1.ProtocolDetailSettings.port:type_name -> google.protobuf.Int32Value
|
|
3956
|
+
53, // 60: lansweeper.scanningconfig.v1.ProtocolDetailSettings.additional_data:type_name -> lansweeper.scanningconfig.v1.ProtocolDetailSettings.AdditionalDataEntry
|
|
3957
|
+
35, // 61: lansweeper.scanningconfig.v1.ItSensorSettings.network_configuration:type_name -> lansweeper.scanningconfig.v1.NetworkConfigurationSettings
|
|
3958
|
+
35, // 62: lansweeper.scanningconfig.v1.OtSensorSettings.network_configuration:type_name -> lansweeper.scanningconfig.v1.NetworkConfigurationSettings
|
|
3959
|
+
44, // 63: lansweeper.scanningconfig.v1.OtSensorSettings.traffic_logging:type_name -> lansweeper.scanningconfig.v1.TrafficLogSettings
|
|
3960
|
+
57, // 64: lansweeper.scanningconfig.v1.TrafficLogSettings.enabled:type_name -> google.protobuf.BoolValue
|
|
3961
|
+
55, // 65: lansweeper.scanningconfig.v1.TrafficLogSettings.path:type_name -> google.protobuf.StringValue
|
|
3962
|
+
57, // 66: lansweeper.scanningconfig.v1.UpdateSettings.update_on_availability:type_name -> google.protobuf.BoolValue
|
|
3963
|
+
46, // 67: lansweeper.scanningconfig.v1.UpdateSettings.update_window:type_name -> lansweeper.scanningconfig.v1.UpdateWindowSettings
|
|
3964
|
+
48, // 68: lansweeper.scanningconfig.v1.UpdateSettings.download:type_name -> lansweeper.scanningconfig.v1.DownloadSettings
|
|
3965
|
+
47, // 69: lansweeper.scanningconfig.v1.UpdateSettings.backup:type_name -> lansweeper.scanningconfig.v1.BackupSettings
|
|
3966
|
+
49, // 70: lansweeper.scanningconfig.v1.UpdateSettings.prerequisites:type_name -> lansweeper.scanningconfig.v1.PrerequisiteSettings
|
|
3967
|
+
57, // 71: lansweeper.scanningconfig.v1.UpdateWindowSettings.enabled:type_name -> google.protobuf.BoolValue
|
|
3968
|
+
55, // 72: lansweeper.scanningconfig.v1.UpdateWindowSettings.update_window:type_name -> google.protobuf.StringValue
|
|
3969
|
+
55, // 73: lansweeper.scanningconfig.v1.BackupSettings.backup_folder:type_name -> google.protobuf.StringValue
|
|
3970
|
+
57, // 74: lansweeper.scanningconfig.v1.DownloadSettings.download_on_availability:type_name -> google.protobuf.BoolValue
|
|
3971
|
+
55, // 75: lansweeper.scanningconfig.v1.DownloadSettings.download_window:type_name -> google.protobuf.StringValue
|
|
3972
|
+
55, // 76: lansweeper.scanningconfig.v1.DownloadSettings.download_folder:type_name -> google.protobuf.StringValue
|
|
3973
|
+
56, // 77: lansweeper.scanningconfig.v1.DownloadSettings.download_timeout_seconds:type_name -> google.protobuf.Int32Value
|
|
3974
|
+
56, // 78: lansweeper.scanningconfig.v1.DownloadSettings.throttle_rate_kb_per_second:type_name -> google.protobuf.Int32Value
|
|
3975
|
+
58, // 79: lansweeper.scanningconfig.v1.PrerequisiteSettings.required_free_disk_space_bytes:type_name -> google.protobuf.Int64Value
|
|
3976
|
+
56, // 80: lansweeper.scanningconfig.v1.PrerequisiteSettings.required_free_disk_space_percentage:type_name -> google.protobuf.Int32Value
|
|
3977
|
+
8, // 81: lansweeper.scanningconfig.v1.LogSettings.level:type_name -> lansweeper.scanningconfig.v1.LogSettings.LogLevel
|
|
3978
|
+
58, // 82: lansweeper.scanningconfig.v1.LogSettings.file_size_limit_bytes:type_name -> google.protobuf.Int64Value
|
|
3979
|
+
56, // 83: lansweeper.scanningconfig.v1.LogSettings.retained_file_count_limit:type_name -> google.protobuf.Int32Value
|
|
3980
|
+
54, // 84: lansweeper.scanningconfig.v1.LogSettings.overrides:type_name -> lansweeper.scanningconfig.v1.LogSettings.OverridesEntry
|
|
3981
|
+
41, // 85: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.ProtocolsEntry.value:type_name -> lansweeper.scanningconfig.v1.ProtocolDetailSettings
|
|
3982
|
+
9, // 86: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
|
|
3983
|
+
10, // 87: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
|
|
3984
|
+
87, // [87:88] is the sub-list for method output_type
|
|
3985
|
+
86, // [86:87] is the sub-list for method input_type
|
|
3986
|
+
86, // [86:86] is the sub-list for extension type_name
|
|
3987
|
+
86, // [86:86] is the sub-list for extension extendee
|
|
3988
|
+
0, // [0:86] is the sub-list for field type_name
|
|
3946
3989
|
}
|
|
3947
3990
|
|
|
3948
3991
|
func init() { file_scanningconfig_proto_init() }
|
|
@@ -4473,24 +4516,10 @@ func file_scanningconfig_proto_init() {
|
|
|
4473
4516
|
file_scanningconfig_proto_msgTypes[18].OneofWrappers = []any{}
|
|
4474
4517
|
file_scanningconfig_proto_msgTypes[19].OneofWrappers = []any{}
|
|
4475
4518
|
file_scanningconfig_proto_msgTypes[20].OneofWrappers = []any{}
|
|
4476
|
-
file_scanningconfig_proto_msgTypes[21].OneofWrappers = []any{}
|
|
4477
|
-
file_scanningconfig_proto_msgTypes[22].OneofWrappers = []any{}
|
|
4478
|
-
file_scanningconfig_proto_msgTypes[23].OneofWrappers = []any{}
|
|
4479
|
-
file_scanningconfig_proto_msgTypes[24].OneofWrappers = []any{}
|
|
4480
|
-
file_scanningconfig_proto_msgTypes[25].OneofWrappers = []any{}
|
|
4481
4519
|
file_scanningconfig_proto_msgTypes[26].OneofWrappers = []any{}
|
|
4482
|
-
file_scanningconfig_proto_msgTypes[27].OneofWrappers = []any{}
|
|
4483
|
-
file_scanningconfig_proto_msgTypes[29].OneofWrappers = []any{}
|
|
4484
|
-
file_scanningconfig_proto_msgTypes[31].OneofWrappers = []any{}
|
|
4485
|
-
file_scanningconfig_proto_msgTypes[32].OneofWrappers = []any{}
|
|
4486
4520
|
file_scanningconfig_proto_msgTypes[33].OneofWrappers = []any{}
|
|
4487
4521
|
file_scanningconfig_proto_msgTypes[34].OneofWrappers = []any{}
|
|
4488
|
-
file_scanningconfig_proto_msgTypes[35].OneofWrappers = []any{}
|
|
4489
4522
|
file_scanningconfig_proto_msgTypes[36].OneofWrappers = []any{}
|
|
4490
|
-
file_scanningconfig_proto_msgTypes[37].OneofWrappers = []any{}
|
|
4491
|
-
file_scanningconfig_proto_msgTypes[38].OneofWrappers = []any{}
|
|
4492
|
-
file_scanningconfig_proto_msgTypes[39].OneofWrappers = []any{}
|
|
4493
|
-
file_scanningconfig_proto_msgTypes[40].OneofWrappers = []any{}
|
|
4494
4523
|
file_scanningconfig_proto_msgTypes[41].OneofWrappers = []any{}
|
|
4495
4524
|
type x struct{}
|
|
4496
4525
|
out := protoimpl.TypeBuilder{
|