@lansweeper/data-platform-outbound-grpc 0.1.128 → 0.1.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +99 -0
- package/gen-proto/outbound_pb.js +787 -0
- package/generated-go/outbound.pb.go +7573 -7322
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +17 -0
|
@@ -1123,6 +1123,11 @@ export class Computer extends jspb.Message {
|
|
|
1123
1123
|
setMacInstallHistoryList(value: Array<ComputerMacInstallHistory>): Computer;
|
|
1124
1124
|
addMacInstallHistory(value?: ComputerMacInstallHistory, index?: number): ComputerMacInstallHistory;
|
|
1125
1125
|
|
|
1126
|
+
hasLinuxBasicInfo(): boolean;
|
|
1127
|
+
clearLinuxBasicInfo(): void;
|
|
1128
|
+
getLinuxBasicInfo(): ComputerLinuxBasicInfo | undefined;
|
|
1129
|
+
setLinuxBasicInfo(value?: ComputerLinuxBasicInfo): Computer;
|
|
1130
|
+
|
|
1126
1131
|
hasLastUser(): boolean;
|
|
1127
1132
|
clearLastUser(): void;
|
|
1128
1133
|
getLastUser(): LastUser | undefined;
|
|
@@ -1229,6 +1234,7 @@ export namespace Computer {
|
|
|
1229
1234
|
macPreferencePaneList: Array<ComputerMacPreferencePane.AsObject>,
|
|
1230
1235
|
macRegionalSettings?: ComputerMacRegionalSettings.AsObject,
|
|
1231
1236
|
macInstallHistoryList: Array<ComputerMacInstallHistory.AsObject>,
|
|
1237
|
+
linuxBasicInfo?: ComputerLinuxBasicInfo.AsObject,
|
|
1232
1238
|
lastUser?: LastUser.AsObject,
|
|
1233
1239
|
userList: Array<UserAccount.AsObject>,
|
|
1234
1240
|
userGroupList: Array<UserGroup.AsObject>,
|
|
@@ -9456,6 +9462,99 @@ export namespace ThunderboltPort {
|
|
|
9456
9462
|
}
|
|
9457
9463
|
}
|
|
9458
9464
|
|
|
9465
|
+
export class ComputerLinuxBasicInfo extends jspb.Message {
|
|
9466
|
+
|
|
9467
|
+
hasIsDmidecodeAvailable(): boolean;
|
|
9468
|
+
clearIsDmidecodeAvailable(): void;
|
|
9469
|
+
getIsDmidecodeAvailable(): boolean | undefined;
|
|
9470
|
+
setIsDmidecodeAvailable(value: boolean): ComputerLinuxBasicInfo;
|
|
9471
|
+
|
|
9472
|
+
hasIsSudoAvailable(): boolean;
|
|
9473
|
+
clearIsSudoAvailable(): void;
|
|
9474
|
+
getIsSudoAvailable(): boolean | undefined;
|
|
9475
|
+
setIsSudoAvailable(value: boolean): ComputerLinuxBasicInfo;
|
|
9476
|
+
|
|
9477
|
+
hasDmiDecodePath(): boolean;
|
|
9478
|
+
clearDmiDecodePath(): void;
|
|
9479
|
+
getDmiDecodePath(): string | undefined;
|
|
9480
|
+
setDmiDecodePath(value: string): ComputerLinuxBasicInfo;
|
|
9481
|
+
|
|
9482
|
+
hasIsHalAvailable(): boolean;
|
|
9483
|
+
clearIsHalAvailable(): void;
|
|
9484
|
+
getIsHalAvailable(): boolean | undefined;
|
|
9485
|
+
setIsHalAvailable(value: boolean): ComputerLinuxBasicInfo;
|
|
9486
|
+
|
|
9487
|
+
hasIsTtyRequired(): boolean;
|
|
9488
|
+
clearIsTtyRequired(): void;
|
|
9489
|
+
getIsTtyRequired(): boolean | undefined;
|
|
9490
|
+
setIsTtyRequired(value: boolean): ComputerLinuxBasicInfo;
|
|
9491
|
+
clearCommandInformationList(): void;
|
|
9492
|
+
getCommandInformationList(): Array<LinuxCommandInformation>;
|
|
9493
|
+
setCommandInformationList(value: Array<LinuxCommandInformation>): ComputerLinuxBasicInfo;
|
|
9494
|
+
addCommandInformation(value?: LinuxCommandInformation, index?: number): LinuxCommandInformation;
|
|
9495
|
+
|
|
9496
|
+
serializeBinary(): Uint8Array;
|
|
9497
|
+
toObject(includeInstance?: boolean): ComputerLinuxBasicInfo.AsObject;
|
|
9498
|
+
static toObject(includeInstance: boolean, msg: ComputerLinuxBasicInfo): ComputerLinuxBasicInfo.AsObject;
|
|
9499
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9500
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9501
|
+
static serializeBinaryToWriter(message: ComputerLinuxBasicInfo, writer: jspb.BinaryWriter): void;
|
|
9502
|
+
static deserializeBinary(bytes: Uint8Array): ComputerLinuxBasicInfo;
|
|
9503
|
+
static deserializeBinaryFromReader(message: ComputerLinuxBasicInfo, reader: jspb.BinaryReader): ComputerLinuxBasicInfo;
|
|
9504
|
+
}
|
|
9505
|
+
|
|
9506
|
+
export namespace ComputerLinuxBasicInfo {
|
|
9507
|
+
export type AsObject = {
|
|
9508
|
+
isDmidecodeAvailable?: boolean,
|
|
9509
|
+
isSudoAvailable?: boolean,
|
|
9510
|
+
dmiDecodePath?: string,
|
|
9511
|
+
isHalAvailable?: boolean,
|
|
9512
|
+
isTtyRequired?: boolean,
|
|
9513
|
+
commandInformationList: Array<LinuxCommandInformation.AsObject>,
|
|
9514
|
+
}
|
|
9515
|
+
}
|
|
9516
|
+
|
|
9517
|
+
export class LinuxCommandInformation extends jspb.Message {
|
|
9518
|
+
|
|
9519
|
+
hasCommand(): boolean;
|
|
9520
|
+
clearCommand(): void;
|
|
9521
|
+
getCommand(): string | undefined;
|
|
9522
|
+
setCommand(value: string): LinuxCommandInformation;
|
|
9523
|
+
|
|
9524
|
+
hasIsCommandAvailable(): boolean;
|
|
9525
|
+
clearIsCommandAvailable(): void;
|
|
9526
|
+
getIsCommandAvailable(): boolean | undefined;
|
|
9527
|
+
setIsCommandAvailable(value: boolean): LinuxCommandInformation;
|
|
9528
|
+
|
|
9529
|
+
hasIsSudoAvailable(): boolean;
|
|
9530
|
+
clearIsSudoAvailable(): void;
|
|
9531
|
+
getIsSudoAvailable(): boolean | undefined;
|
|
9532
|
+
setIsSudoAvailable(value: boolean): LinuxCommandInformation;
|
|
9533
|
+
|
|
9534
|
+
hasCommandPath(): boolean;
|
|
9535
|
+
clearCommandPath(): void;
|
|
9536
|
+
getCommandPath(): string | undefined;
|
|
9537
|
+
setCommandPath(value: string): LinuxCommandInformation;
|
|
9538
|
+
|
|
9539
|
+
serializeBinary(): Uint8Array;
|
|
9540
|
+
toObject(includeInstance?: boolean): LinuxCommandInformation.AsObject;
|
|
9541
|
+
static toObject(includeInstance: boolean, msg: LinuxCommandInformation): LinuxCommandInformation.AsObject;
|
|
9542
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9543
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9544
|
+
static serializeBinaryToWriter(message: LinuxCommandInformation, writer: jspb.BinaryWriter): void;
|
|
9545
|
+
static deserializeBinary(bytes: Uint8Array): LinuxCommandInformation;
|
|
9546
|
+
static deserializeBinaryFromReader(message: LinuxCommandInformation, reader: jspb.BinaryReader): LinuxCommandInformation;
|
|
9547
|
+
}
|
|
9548
|
+
|
|
9549
|
+
export namespace LinuxCommandInformation {
|
|
9550
|
+
export type AsObject = {
|
|
9551
|
+
command?: string,
|
|
9552
|
+
isCommandAvailable?: boolean,
|
|
9553
|
+
isSudoAvailable?: boolean,
|
|
9554
|
+
commandPath?: string,
|
|
9555
|
+
}
|
|
9556
|
+
}
|
|
9557
|
+
|
|
9459
9558
|
export class ComputerConnectedUsbDeviceInfo extends jspb.Message {
|
|
9460
9559
|
getDeviceKey(): string;
|
|
9461
9560
|
setDeviceKey(value: string): ComputerConnectedUsbDeviceInfo;
|