@lansweeper/discovery-hub-proto 2.21.0 → 2.23.0
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/gen-proto/discovery_create_action_grpc_pb.js +1 -0
- package/gen-proto/discovery_create_action_pb.d.ts +146 -0
- package/gen-proto/discovery_create_action_pb.js +1129 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/index.d.ts +1 -0
- package/gen-proto/index.js +3 -1
- package/package.json +2 -2
- package/proto/discovery_create_action.proto +34 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GENERATED CODE -- NO SERVICES IN PROTO
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
// package: com.lansweeper.discovery.create.action.v1
|
|
2
|
+
// file: discovery_create_action.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
8
|
+
|
|
9
|
+
export class CreateAction extends jspb.Message {
|
|
10
|
+
getSensorId(): string;
|
|
11
|
+
setSensorId(value: string): CreateAction;
|
|
12
|
+
clearIpRangesList(): void;
|
|
13
|
+
getIpRangesList(): Array<string>;
|
|
14
|
+
setIpRangesList(value: Array<string>): CreateAction;
|
|
15
|
+
addIpRanges(value: string, index?: number): string;
|
|
16
|
+
|
|
17
|
+
hasActiveDirectory(): boolean;
|
|
18
|
+
clearActiveDirectory(): void;
|
|
19
|
+
getActiveDirectory(): ActiveDirectory | undefined;
|
|
20
|
+
setActiveDirectory(value?: ActiveDirectory): CreateAction;
|
|
21
|
+
|
|
22
|
+
serializeBinary(): Uint8Array;
|
|
23
|
+
toObject(includeInstance?: boolean): CreateAction.AsObject;
|
|
24
|
+
static toObject(includeInstance: boolean, msg: CreateAction): CreateAction.AsObject;
|
|
25
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
26
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
27
|
+
static serializeBinaryToWriter(message: CreateAction, writer: jspb.BinaryWriter): void;
|
|
28
|
+
static deserializeBinary(bytes: Uint8Array): CreateAction;
|
|
29
|
+
static deserializeBinaryFromReader(message: CreateAction, reader: jspb.BinaryReader): CreateAction;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export namespace CreateAction {
|
|
33
|
+
export type AsObject = {
|
|
34
|
+
sensorId: string,
|
|
35
|
+
ipRangesList: Array<string>,
|
|
36
|
+
activeDirectory?: ActiveDirectory.AsObject,
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export class ActiveDirectory extends jspb.Message {
|
|
41
|
+
|
|
42
|
+
hasActiveDirectoryData(): boolean;
|
|
43
|
+
clearActiveDirectoryData(): void;
|
|
44
|
+
getActiveDirectoryData(): ActiveDirectoryData | undefined;
|
|
45
|
+
setActiveDirectoryData(value?: ActiveDirectoryData): ActiveDirectory;
|
|
46
|
+
|
|
47
|
+
hasCreateActionMetadata(): boolean;
|
|
48
|
+
clearCreateActionMetadata(): void;
|
|
49
|
+
getCreateActionMetadata(): Metadata | undefined;
|
|
50
|
+
setCreateActionMetadata(value?: Metadata): ActiveDirectory;
|
|
51
|
+
|
|
52
|
+
serializeBinary(): Uint8Array;
|
|
53
|
+
toObject(includeInstance?: boolean): ActiveDirectory.AsObject;
|
|
54
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectory): ActiveDirectory.AsObject;
|
|
55
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
56
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
57
|
+
static serializeBinaryToWriter(message: ActiveDirectory, writer: jspb.BinaryWriter): void;
|
|
58
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectory;
|
|
59
|
+
static deserializeBinaryFromReader(message: ActiveDirectory, reader: jspb.BinaryReader): ActiveDirectory;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export namespace ActiveDirectory {
|
|
63
|
+
export type AsObject = {
|
|
64
|
+
activeDirectoryData?: ActiveDirectoryData.AsObject,
|
|
65
|
+
createActionMetadata?: Metadata.AsObject,
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export class ActiveDirectoryData extends jspb.Message {
|
|
70
|
+
|
|
71
|
+
hasType(): boolean;
|
|
72
|
+
clearType(): void;
|
|
73
|
+
getType(): string | undefined;
|
|
74
|
+
setType(value: string): ActiveDirectoryData;
|
|
75
|
+
getDomain(): string;
|
|
76
|
+
setDomain(value: string): ActiveDirectoryData;
|
|
77
|
+
|
|
78
|
+
hasComputerScan(): boolean;
|
|
79
|
+
clearComputerScan(): void;
|
|
80
|
+
getComputerScan(): boolean | undefined;
|
|
81
|
+
setComputerScan(value: boolean): ActiveDirectoryData;
|
|
82
|
+
|
|
83
|
+
hasUserGroupScan(): boolean;
|
|
84
|
+
clearUserGroupScan(): void;
|
|
85
|
+
getUserGroupScan(): boolean | undefined;
|
|
86
|
+
setUserGroupScan(value: boolean): ActiveDirectoryData;
|
|
87
|
+
|
|
88
|
+
hasAdsiPath(): boolean;
|
|
89
|
+
clearAdsiPath(): void;
|
|
90
|
+
getAdsiPath(): string | undefined;
|
|
91
|
+
setAdsiPath(value: string): ActiveDirectoryData;
|
|
92
|
+
|
|
93
|
+
hasLdapType(): boolean;
|
|
94
|
+
clearLdapType(): void;
|
|
95
|
+
getLdapType(): string | undefined;
|
|
96
|
+
setLdapType(value: string): ActiveDirectoryData;
|
|
97
|
+
|
|
98
|
+
hasPort(): boolean;
|
|
99
|
+
clearPort(): void;
|
|
100
|
+
getPort(): number | undefined;
|
|
101
|
+
setPort(value: number): ActiveDirectoryData;
|
|
102
|
+
|
|
103
|
+
serializeBinary(): Uint8Array;
|
|
104
|
+
toObject(includeInstance?: boolean): ActiveDirectoryData.AsObject;
|
|
105
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectoryData): ActiveDirectoryData.AsObject;
|
|
106
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
107
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
108
|
+
static serializeBinaryToWriter(message: ActiveDirectoryData, writer: jspb.BinaryWriter): void;
|
|
109
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectoryData;
|
|
110
|
+
static deserializeBinaryFromReader(message: ActiveDirectoryData, reader: jspb.BinaryReader): ActiveDirectoryData;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export namespace ActiveDirectoryData {
|
|
114
|
+
export type AsObject = {
|
|
115
|
+
type?: string,
|
|
116
|
+
domain: string,
|
|
117
|
+
computerScan?: boolean,
|
|
118
|
+
userGroupScan?: boolean,
|
|
119
|
+
adsiPath?: string,
|
|
120
|
+
ldapType?: string,
|
|
121
|
+
port?: number,
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export class Metadata extends jspb.Message {
|
|
126
|
+
getClientKey(): string;
|
|
127
|
+
setClientKey(value: string): Metadata;
|
|
128
|
+
getInstallKey(): string;
|
|
129
|
+
setInstallKey(value: string): Metadata;
|
|
130
|
+
|
|
131
|
+
serializeBinary(): Uint8Array;
|
|
132
|
+
toObject(includeInstance?: boolean): Metadata.AsObject;
|
|
133
|
+
static toObject(includeInstance: boolean, msg: Metadata): Metadata.AsObject;
|
|
134
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
135
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
136
|
+
static serializeBinaryToWriter(message: Metadata, writer: jspb.BinaryWriter): void;
|
|
137
|
+
static deserializeBinary(bytes: Uint8Array): Metadata;
|
|
138
|
+
static deserializeBinaryFromReader(message: Metadata, reader: jspb.BinaryReader): Metadata;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export namespace Metadata {
|
|
142
|
+
export type AsObject = {
|
|
143
|
+
clientKey: string,
|
|
144
|
+
installKey: string,
|
|
145
|
+
}
|
|
146
|
+
}
|