@lansweeper/data-platform-outbound-grpc 0.8.0 → 0.8.2
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 +266 -1068
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +58 -0
- package/gen-proto/outbound_pb.js +467 -1
- package/generated-go/outbound.pb.go +11879 -11740
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +13 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Computer$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Computer$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Computer.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ComputerOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/WindowsComputerRegistryInfo$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/WindowsComputerRegistryInfo$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/WindowsComputerRegistryInfo.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/WindowsComputerRegistryInfoOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +13 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Computer.java +551 -108
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerOrBuilder.java +44 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3569 -3549
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/WindowsComputerRegistryInfo.java +1430 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/WindowsComputerRegistryInfoOrBuilder.java +122 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.7.0-sources.jar → outbound-model-0.8.1-sources.jar} +0 -0
- package/model/target/{outbound-model-0.7.0.jar → outbound-model-0.8.1.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +13 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.7.0-sources.jar → outbound-service-0.8.1-sources.jar} +0 -0
- package/service/target/{outbound-service-0.7.0.jar → outbound-service-0.8.1.jar} +0 -0
|
@@ -1531,6 +1531,10 @@ export class Computer extends jspb.Message {
|
|
|
1531
1531
|
getWindowsCodecList(): Array<ComputerWindowsCodec>;
|
|
1532
1532
|
setWindowsCodecList(value: Array<ComputerWindowsCodec>): Computer;
|
|
1533
1533
|
addWindowsCodec(value?: ComputerWindowsCodec, index?: number): ComputerWindowsCodec;
|
|
1534
|
+
clearWindowsRegistryInfoList(): void;
|
|
1535
|
+
getWindowsRegistryInfoList(): Array<WindowsComputerRegistryInfo>;
|
|
1536
|
+
setWindowsRegistryInfoList(value: Array<WindowsComputerRegistryInfo>): Computer;
|
|
1537
|
+
addWindowsRegistryInfo(value?: WindowsComputerRegistryInfo, index?: number): WindowsComputerRegistryInfo;
|
|
1534
1538
|
|
|
1535
1539
|
hasMacAccessibility(): boolean;
|
|
1536
1540
|
clearMacAccessibility(): void;
|
|
@@ -1674,6 +1678,7 @@ export namespace Computer {
|
|
|
1674
1678
|
windowsComappComponentList: Array<ComputerWindowsComApp.AsObject>,
|
|
1675
1679
|
windowsSatList: Array<ComputerWindowsSat.AsObject>,
|
|
1676
1680
|
windowsCodecList: Array<ComputerWindowsCodec.AsObject>,
|
|
1681
|
+
windowsRegistryInfoList: Array<WindowsComputerRegistryInfo.AsObject>,
|
|
1677
1682
|
macAccessibility?: ComputerMacAccessibility.AsObject,
|
|
1678
1683
|
macFrameworkList: Array<ComputerMacOsFramework.AsObject>,
|
|
1679
1684
|
macPreferencePaneList: Array<ComputerMacPreferencePane.AsObject>,
|
|
@@ -12075,6 +12080,59 @@ export namespace ComputerLinuxPcieCard {
|
|
|
12075
12080
|
}
|
|
12076
12081
|
}
|
|
12077
12082
|
|
|
12083
|
+
export class WindowsComputerRegistryInfo extends jspb.Message {
|
|
12084
|
+
|
|
12085
|
+
hasRootKey(): boolean;
|
|
12086
|
+
clearRootKey(): void;
|
|
12087
|
+
getRootKey(): string | undefined;
|
|
12088
|
+
setRootKey(value: string): WindowsComputerRegistryInfo;
|
|
12089
|
+
|
|
12090
|
+
hasKey(): boolean;
|
|
12091
|
+
clearKey(): void;
|
|
12092
|
+
getKey(): string | undefined;
|
|
12093
|
+
setKey(value: string): WindowsComputerRegistryInfo;
|
|
12094
|
+
|
|
12095
|
+
hasSubKey(): boolean;
|
|
12096
|
+
clearSubKey(): void;
|
|
12097
|
+
getSubKey(): string | undefined;
|
|
12098
|
+
setSubKey(value: string): WindowsComputerRegistryInfo;
|
|
12099
|
+
|
|
12100
|
+
hasValue(): boolean;
|
|
12101
|
+
clearValue(): void;
|
|
12102
|
+
getValue(): string | undefined;
|
|
12103
|
+
setValue(value: string): WindowsComputerRegistryInfo;
|
|
12104
|
+
|
|
12105
|
+
hasRegKey(): boolean;
|
|
12106
|
+
clearRegKey(): void;
|
|
12107
|
+
getRegKey(): string | undefined;
|
|
12108
|
+
setRegKey(value: string): WindowsComputerRegistryInfo;
|
|
12109
|
+
|
|
12110
|
+
hasLastChanged(): boolean;
|
|
12111
|
+
clearLastChanged(): void;
|
|
12112
|
+
getLastChanged(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
12113
|
+
setLastChanged(value?: google_protobuf_timestamp_pb.Timestamp): WindowsComputerRegistryInfo;
|
|
12114
|
+
|
|
12115
|
+
serializeBinary(): Uint8Array;
|
|
12116
|
+
toObject(includeInstance?: boolean): WindowsComputerRegistryInfo.AsObject;
|
|
12117
|
+
static toObject(includeInstance: boolean, msg: WindowsComputerRegistryInfo): WindowsComputerRegistryInfo.AsObject;
|
|
12118
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
12119
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
12120
|
+
static serializeBinaryToWriter(message: WindowsComputerRegistryInfo, writer: jspb.BinaryWriter): void;
|
|
12121
|
+
static deserializeBinary(bytes: Uint8Array): WindowsComputerRegistryInfo;
|
|
12122
|
+
static deserializeBinaryFromReader(message: WindowsComputerRegistryInfo, reader: jspb.BinaryReader): WindowsComputerRegistryInfo;
|
|
12123
|
+
}
|
|
12124
|
+
|
|
12125
|
+
export namespace WindowsComputerRegistryInfo {
|
|
12126
|
+
export type AsObject = {
|
|
12127
|
+
rootKey?: string,
|
|
12128
|
+
key?: string,
|
|
12129
|
+
subKey?: string,
|
|
12130
|
+
value?: string,
|
|
12131
|
+
regKey?: string,
|
|
12132
|
+
lastChanged?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
12133
|
+
}
|
|
12134
|
+
}
|
|
12135
|
+
|
|
12078
12136
|
export class ComputerWindowsCodec extends jspb.Message {
|
|
12079
12137
|
|
|
12080
12138
|
hasArchive(): boolean;
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -321,6 +321,7 @@ goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsBios', null, globa
|
|
|
321
321
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsCertificateEnhancedKeyUsage', null, global);
|
|
322
322
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsCertificateLocation', null, global);
|
|
323
323
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsComputerBattery', null, global);
|
|
324
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo', null, global);
|
|
324
325
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsComputerSystem', null, global);
|
|
325
326
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsHyperVChangeEvent', null, global);
|
|
326
327
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.WindowsHyperVChangeEvent.EventType', null, global);
|
|
@@ -3973,6 +3974,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
3973
3974
|
*/
|
|
3974
3975
|
proto.com.lansweeper.dp.outbound.v1.ComputerLinuxPcieCard.displayName = 'proto.com.lansweeper.dp.outbound.v1.ComputerLinuxPcieCard';
|
|
3975
3976
|
}
|
|
3977
|
+
/**
|
|
3978
|
+
* Generated by JsPbCodeGenerator.
|
|
3979
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
3980
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
3981
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
3982
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
3983
|
+
* valid.
|
|
3984
|
+
* @extends {jspb.Message}
|
|
3985
|
+
* @constructor
|
|
3986
|
+
*/
|
|
3987
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo = function(opt_data) {
|
|
3988
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
3989
|
+
};
|
|
3990
|
+
goog.inherits(proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo, jspb.Message);
|
|
3991
|
+
if (goog.DEBUG && !COMPILED) {
|
|
3992
|
+
/**
|
|
3993
|
+
* @public
|
|
3994
|
+
* @override
|
|
3995
|
+
*/
|
|
3996
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.displayName = 'proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo';
|
|
3997
|
+
}
|
|
3976
3998
|
/**
|
|
3977
3999
|
* Generated by JsPbCodeGenerator.
|
|
3978
4000
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -15491,7 +15513,7 @@ proto.com.lansweeper.dp.outbound.v1.WarrantyInfo.prototype.setIsReliable = funct
|
|
|
15491
15513
|
* @private {!Array<number>}
|
|
15492
15514
|
* @const
|
|
15493
15515
|
*/
|
|
15494
|
-
proto.com.lansweeper.dp.outbound.v1.Computer.repeatedFields_ = [3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,33,27,32,28,29,30,31,34,35,36,38,39,41,44,45,48,49,47,50,51,102,103,105,107,202,203,205,206,207,209,210,211,212,213,214,215,216,217,218,219,221,222,225,227,302,303,304,305];
|
|
15516
|
+
proto.com.lansweeper.dp.outbound.v1.Computer.repeatedFields_ = [3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,33,27,32,28,29,30,31,34,35,36,38,39,41,44,45,48,49,47,50,51,102,103,105,107,202,203,205,206,207,209,210,211,212,213,214,215,216,217,218,219,228,221,222,225,227,302,303,304,305];
|
|
15495
15517
|
|
|
15496
15518
|
|
|
15497
15519
|
|
|
@@ -15665,6 +15687,8 @@ proto.com.lansweeper.dp.outbound.v1.Computer.toObject = function(includeInstance
|
|
|
15665
15687
|
proto.com.lansweeper.dp.outbound.v1.ComputerWindowsSat.toObject, includeInstance),
|
|
15666
15688
|
windowsCodecList: jspb.Message.toObjectList(msg.getWindowsCodecList(),
|
|
15667
15689
|
proto.com.lansweeper.dp.outbound.v1.ComputerWindowsCodec.toObject, includeInstance),
|
|
15690
|
+
windowsRegistryInfoList: jspb.Message.toObjectList(msg.getWindowsRegistryInfoList(),
|
|
15691
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.toObject, includeInstance),
|
|
15668
15692
|
macAccessibility: (f = msg.getMacAccessibility()) && proto.com.lansweeper.dp.outbound.v1.ComputerMacAccessibility.toObject(includeInstance, f),
|
|
15669
15693
|
macFrameworkList: jspb.Message.toObjectList(msg.getMacFrameworkList(),
|
|
15670
15694
|
proto.com.lansweeper.dp.outbound.v1.ComputerMacOsFramework.toObject, includeInstance),
|
|
@@ -16111,6 +16135,11 @@ proto.com.lansweeper.dp.outbound.v1.Computer.deserializeBinaryFromReader = funct
|
|
|
16111
16135
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ComputerWindowsCodec.deserializeBinaryFromReader);
|
|
16112
16136
|
msg.addWindowsCodec(value);
|
|
16113
16137
|
break;
|
|
16138
|
+
case 228:
|
|
16139
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo;
|
|
16140
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.deserializeBinaryFromReader);
|
|
16141
|
+
msg.addWindowsRegistryInfo(value);
|
|
16142
|
+
break;
|
|
16114
16143
|
case 220:
|
|
16115
16144
|
var value = new proto.com.lansweeper.dp.outbound.v1.ComputerMacAccessibility;
|
|
16116
16145
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ComputerMacAccessibility.deserializeBinaryFromReader);
|
|
@@ -16824,6 +16853,14 @@ proto.com.lansweeper.dp.outbound.v1.Computer.serializeBinaryToWriter = function(
|
|
|
16824
16853
|
proto.com.lansweeper.dp.outbound.v1.ComputerWindowsCodec.serializeBinaryToWriter
|
|
16825
16854
|
);
|
|
16826
16855
|
}
|
|
16856
|
+
f = message.getWindowsRegistryInfoList();
|
|
16857
|
+
if (f.length > 0) {
|
|
16858
|
+
writer.writeRepeatedMessage(
|
|
16859
|
+
228,
|
|
16860
|
+
f,
|
|
16861
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.serializeBinaryToWriter
|
|
16862
|
+
);
|
|
16863
|
+
}
|
|
16827
16864
|
f = message.getMacAccessibility();
|
|
16828
16865
|
if (f != null) {
|
|
16829
16866
|
writer.writeMessage(
|
|
@@ -19872,6 +19909,44 @@ proto.com.lansweeper.dp.outbound.v1.Computer.prototype.clearWindowsCodecList = f
|
|
|
19872
19909
|
};
|
|
19873
19910
|
|
|
19874
19911
|
|
|
19912
|
+
/**
|
|
19913
|
+
* repeated WindowsComputerRegistryInfo windows_registry_info = 228;
|
|
19914
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo>}
|
|
19915
|
+
*/
|
|
19916
|
+
proto.com.lansweeper.dp.outbound.v1.Computer.prototype.getWindowsRegistryInfoList = function() {
|
|
19917
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo>} */ (
|
|
19918
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo, 228));
|
|
19919
|
+
};
|
|
19920
|
+
|
|
19921
|
+
|
|
19922
|
+
/**
|
|
19923
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo>} value
|
|
19924
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
|
|
19925
|
+
*/
|
|
19926
|
+
proto.com.lansweeper.dp.outbound.v1.Computer.prototype.setWindowsRegistryInfoList = function(value) {
|
|
19927
|
+
return jspb.Message.setRepeatedWrapperField(this, 228, value);
|
|
19928
|
+
};
|
|
19929
|
+
|
|
19930
|
+
|
|
19931
|
+
/**
|
|
19932
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo=} opt_value
|
|
19933
|
+
* @param {number=} opt_index
|
|
19934
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo}
|
|
19935
|
+
*/
|
|
19936
|
+
proto.com.lansweeper.dp.outbound.v1.Computer.prototype.addWindowsRegistryInfo = function(opt_value, opt_index) {
|
|
19937
|
+
return jspb.Message.addToRepeatedWrapperField(this, 228, opt_value, proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo, opt_index);
|
|
19938
|
+
};
|
|
19939
|
+
|
|
19940
|
+
|
|
19941
|
+
/**
|
|
19942
|
+
* Clears the list making it empty but non-null.
|
|
19943
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Computer} returns this
|
|
19944
|
+
*/
|
|
19945
|
+
proto.com.lansweeper.dp.outbound.v1.Computer.prototype.clearWindowsRegistryInfoList = function() {
|
|
19946
|
+
return this.setWindowsRegistryInfoList([]);
|
|
19947
|
+
};
|
|
19948
|
+
|
|
19949
|
+
|
|
19875
19950
|
/**
|
|
19876
19951
|
* optional ComputerMacAccessibility mac_accessibility = 220;
|
|
19877
19952
|
* @return {?proto.com.lansweeper.dp.outbound.v1.ComputerMacAccessibility}
|
|
@@ -99790,6 +99865,397 @@ proto.com.lansweeper.dp.outbound.v1.ComputerLinuxPcieCard.prototype.hasParent =
|
|
|
99790
99865
|
|
|
99791
99866
|
|
|
99792
99867
|
|
|
99868
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
99869
|
+
/**
|
|
99870
|
+
* Creates an object representation of this proto.
|
|
99871
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
99872
|
+
* Optional fields that are not set will be set to undefined.
|
|
99873
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
99874
|
+
* For the list of reserved names please see:
|
|
99875
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
99876
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
99877
|
+
* JSPB instance for transitional soy proto support:
|
|
99878
|
+
* http://goto/soy-param-migration
|
|
99879
|
+
* @return {!Object}
|
|
99880
|
+
*/
|
|
99881
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.toObject = function(opt_includeInstance) {
|
|
99882
|
+
return proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.toObject(opt_includeInstance, this);
|
|
99883
|
+
};
|
|
99884
|
+
|
|
99885
|
+
|
|
99886
|
+
/**
|
|
99887
|
+
* Static version of the {@see toObject} method.
|
|
99888
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
99889
|
+
* the JSPB instance for transitional soy proto support:
|
|
99890
|
+
* http://goto/soy-param-migration
|
|
99891
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} msg The msg instance to transform.
|
|
99892
|
+
* @return {!Object}
|
|
99893
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
99894
|
+
*/
|
|
99895
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.toObject = function(includeInstance, msg) {
|
|
99896
|
+
var f, obj = {
|
|
99897
|
+
rootKey: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
99898
|
+
key: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
99899
|
+
subKey: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
99900
|
+
value: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
99901
|
+
regKey: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
99902
|
+
lastChanged: (f = msg.getLastChanged()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
|
|
99903
|
+
};
|
|
99904
|
+
|
|
99905
|
+
if (includeInstance) {
|
|
99906
|
+
obj.$jspbMessageInstance = msg;
|
|
99907
|
+
}
|
|
99908
|
+
return obj;
|
|
99909
|
+
};
|
|
99910
|
+
}
|
|
99911
|
+
|
|
99912
|
+
|
|
99913
|
+
/**
|
|
99914
|
+
* Deserializes binary data (in protobuf wire format).
|
|
99915
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
99916
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo}
|
|
99917
|
+
*/
|
|
99918
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.deserializeBinary = function(bytes) {
|
|
99919
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
99920
|
+
var msg = new proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo;
|
|
99921
|
+
return proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.deserializeBinaryFromReader(msg, reader);
|
|
99922
|
+
};
|
|
99923
|
+
|
|
99924
|
+
|
|
99925
|
+
/**
|
|
99926
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
99927
|
+
* given reader into the given message object.
|
|
99928
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} msg The message object to deserialize into.
|
|
99929
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
99930
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo}
|
|
99931
|
+
*/
|
|
99932
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.deserializeBinaryFromReader = function(msg, reader) {
|
|
99933
|
+
while (reader.nextField()) {
|
|
99934
|
+
if (reader.isEndGroup()) {
|
|
99935
|
+
break;
|
|
99936
|
+
}
|
|
99937
|
+
var field = reader.getFieldNumber();
|
|
99938
|
+
switch (field) {
|
|
99939
|
+
case 1:
|
|
99940
|
+
var value = /** @type {string} */ (reader.readString());
|
|
99941
|
+
msg.setRootKey(value);
|
|
99942
|
+
break;
|
|
99943
|
+
case 2:
|
|
99944
|
+
var value = /** @type {string} */ (reader.readString());
|
|
99945
|
+
msg.setKey(value);
|
|
99946
|
+
break;
|
|
99947
|
+
case 3:
|
|
99948
|
+
var value = /** @type {string} */ (reader.readString());
|
|
99949
|
+
msg.setSubKey(value);
|
|
99950
|
+
break;
|
|
99951
|
+
case 4:
|
|
99952
|
+
var value = /** @type {string} */ (reader.readString());
|
|
99953
|
+
msg.setValue(value);
|
|
99954
|
+
break;
|
|
99955
|
+
case 5:
|
|
99956
|
+
var value = /** @type {string} */ (reader.readString());
|
|
99957
|
+
msg.setRegKey(value);
|
|
99958
|
+
break;
|
|
99959
|
+
case 6:
|
|
99960
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
99961
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
99962
|
+
msg.setLastChanged(value);
|
|
99963
|
+
break;
|
|
99964
|
+
default:
|
|
99965
|
+
reader.skipField();
|
|
99966
|
+
break;
|
|
99967
|
+
}
|
|
99968
|
+
}
|
|
99969
|
+
return msg;
|
|
99970
|
+
};
|
|
99971
|
+
|
|
99972
|
+
|
|
99973
|
+
/**
|
|
99974
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
99975
|
+
* @return {!Uint8Array}
|
|
99976
|
+
*/
|
|
99977
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.serializeBinary = function() {
|
|
99978
|
+
var writer = new jspb.BinaryWriter();
|
|
99979
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.serializeBinaryToWriter(this, writer);
|
|
99980
|
+
return writer.getResultBuffer();
|
|
99981
|
+
};
|
|
99982
|
+
|
|
99983
|
+
|
|
99984
|
+
/**
|
|
99985
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
99986
|
+
* format), writing to the given BinaryWriter.
|
|
99987
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} message
|
|
99988
|
+
* @param {!jspb.BinaryWriter} writer
|
|
99989
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
99990
|
+
*/
|
|
99991
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.serializeBinaryToWriter = function(message, writer) {
|
|
99992
|
+
var f = undefined;
|
|
99993
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
99994
|
+
if (f != null) {
|
|
99995
|
+
writer.writeString(
|
|
99996
|
+
1,
|
|
99997
|
+
f
|
|
99998
|
+
);
|
|
99999
|
+
}
|
|
100000
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
100001
|
+
if (f != null) {
|
|
100002
|
+
writer.writeString(
|
|
100003
|
+
2,
|
|
100004
|
+
f
|
|
100005
|
+
);
|
|
100006
|
+
}
|
|
100007
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
100008
|
+
if (f != null) {
|
|
100009
|
+
writer.writeString(
|
|
100010
|
+
3,
|
|
100011
|
+
f
|
|
100012
|
+
);
|
|
100013
|
+
}
|
|
100014
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
100015
|
+
if (f != null) {
|
|
100016
|
+
writer.writeString(
|
|
100017
|
+
4,
|
|
100018
|
+
f
|
|
100019
|
+
);
|
|
100020
|
+
}
|
|
100021
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
100022
|
+
if (f != null) {
|
|
100023
|
+
writer.writeString(
|
|
100024
|
+
5,
|
|
100025
|
+
f
|
|
100026
|
+
);
|
|
100027
|
+
}
|
|
100028
|
+
f = message.getLastChanged();
|
|
100029
|
+
if (f != null) {
|
|
100030
|
+
writer.writeMessage(
|
|
100031
|
+
6,
|
|
100032
|
+
f,
|
|
100033
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
100034
|
+
);
|
|
100035
|
+
}
|
|
100036
|
+
};
|
|
100037
|
+
|
|
100038
|
+
|
|
100039
|
+
/**
|
|
100040
|
+
* optional string root_key = 1;
|
|
100041
|
+
* @return {string}
|
|
100042
|
+
*/
|
|
100043
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.getRootKey = function() {
|
|
100044
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
100045
|
+
};
|
|
100046
|
+
|
|
100047
|
+
|
|
100048
|
+
/**
|
|
100049
|
+
* @param {string} value
|
|
100050
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100051
|
+
*/
|
|
100052
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.setRootKey = function(value) {
|
|
100053
|
+
return jspb.Message.setField(this, 1, value);
|
|
100054
|
+
};
|
|
100055
|
+
|
|
100056
|
+
|
|
100057
|
+
/**
|
|
100058
|
+
* Clears the field making it undefined.
|
|
100059
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100060
|
+
*/
|
|
100061
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.clearRootKey = function() {
|
|
100062
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
100063
|
+
};
|
|
100064
|
+
|
|
100065
|
+
|
|
100066
|
+
/**
|
|
100067
|
+
* Returns whether this field is set.
|
|
100068
|
+
* @return {boolean}
|
|
100069
|
+
*/
|
|
100070
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.hasRootKey = function() {
|
|
100071
|
+
return jspb.Message.getField(this, 1) != null;
|
|
100072
|
+
};
|
|
100073
|
+
|
|
100074
|
+
|
|
100075
|
+
/**
|
|
100076
|
+
* optional string key = 2;
|
|
100077
|
+
* @return {string}
|
|
100078
|
+
*/
|
|
100079
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.getKey = function() {
|
|
100080
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
100081
|
+
};
|
|
100082
|
+
|
|
100083
|
+
|
|
100084
|
+
/**
|
|
100085
|
+
* @param {string} value
|
|
100086
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100087
|
+
*/
|
|
100088
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.setKey = function(value) {
|
|
100089
|
+
return jspb.Message.setField(this, 2, value);
|
|
100090
|
+
};
|
|
100091
|
+
|
|
100092
|
+
|
|
100093
|
+
/**
|
|
100094
|
+
* Clears the field making it undefined.
|
|
100095
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100096
|
+
*/
|
|
100097
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.clearKey = function() {
|
|
100098
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
100099
|
+
};
|
|
100100
|
+
|
|
100101
|
+
|
|
100102
|
+
/**
|
|
100103
|
+
* Returns whether this field is set.
|
|
100104
|
+
* @return {boolean}
|
|
100105
|
+
*/
|
|
100106
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.hasKey = function() {
|
|
100107
|
+
return jspb.Message.getField(this, 2) != null;
|
|
100108
|
+
};
|
|
100109
|
+
|
|
100110
|
+
|
|
100111
|
+
/**
|
|
100112
|
+
* optional string sub_key = 3;
|
|
100113
|
+
* @return {string}
|
|
100114
|
+
*/
|
|
100115
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.getSubKey = function() {
|
|
100116
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
100117
|
+
};
|
|
100118
|
+
|
|
100119
|
+
|
|
100120
|
+
/**
|
|
100121
|
+
* @param {string} value
|
|
100122
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100123
|
+
*/
|
|
100124
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.setSubKey = function(value) {
|
|
100125
|
+
return jspb.Message.setField(this, 3, value);
|
|
100126
|
+
};
|
|
100127
|
+
|
|
100128
|
+
|
|
100129
|
+
/**
|
|
100130
|
+
* Clears the field making it undefined.
|
|
100131
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100132
|
+
*/
|
|
100133
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.clearSubKey = function() {
|
|
100134
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
100135
|
+
};
|
|
100136
|
+
|
|
100137
|
+
|
|
100138
|
+
/**
|
|
100139
|
+
* Returns whether this field is set.
|
|
100140
|
+
* @return {boolean}
|
|
100141
|
+
*/
|
|
100142
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.hasSubKey = function() {
|
|
100143
|
+
return jspb.Message.getField(this, 3) != null;
|
|
100144
|
+
};
|
|
100145
|
+
|
|
100146
|
+
|
|
100147
|
+
/**
|
|
100148
|
+
* optional string value = 4;
|
|
100149
|
+
* @return {string}
|
|
100150
|
+
*/
|
|
100151
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.getValue = function() {
|
|
100152
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
100153
|
+
};
|
|
100154
|
+
|
|
100155
|
+
|
|
100156
|
+
/**
|
|
100157
|
+
* @param {string} value
|
|
100158
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100159
|
+
*/
|
|
100160
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.setValue = function(value) {
|
|
100161
|
+
return jspb.Message.setField(this, 4, value);
|
|
100162
|
+
};
|
|
100163
|
+
|
|
100164
|
+
|
|
100165
|
+
/**
|
|
100166
|
+
* Clears the field making it undefined.
|
|
100167
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100168
|
+
*/
|
|
100169
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.clearValue = function() {
|
|
100170
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
100171
|
+
};
|
|
100172
|
+
|
|
100173
|
+
|
|
100174
|
+
/**
|
|
100175
|
+
* Returns whether this field is set.
|
|
100176
|
+
* @return {boolean}
|
|
100177
|
+
*/
|
|
100178
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.hasValue = function() {
|
|
100179
|
+
return jspb.Message.getField(this, 4) != null;
|
|
100180
|
+
};
|
|
100181
|
+
|
|
100182
|
+
|
|
100183
|
+
/**
|
|
100184
|
+
* optional string reg_key = 5;
|
|
100185
|
+
* @return {string}
|
|
100186
|
+
*/
|
|
100187
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.getRegKey = function() {
|
|
100188
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
100189
|
+
};
|
|
100190
|
+
|
|
100191
|
+
|
|
100192
|
+
/**
|
|
100193
|
+
* @param {string} value
|
|
100194
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100195
|
+
*/
|
|
100196
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.setRegKey = function(value) {
|
|
100197
|
+
return jspb.Message.setField(this, 5, value);
|
|
100198
|
+
};
|
|
100199
|
+
|
|
100200
|
+
|
|
100201
|
+
/**
|
|
100202
|
+
* Clears the field making it undefined.
|
|
100203
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100204
|
+
*/
|
|
100205
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.clearRegKey = function() {
|
|
100206
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
100207
|
+
};
|
|
100208
|
+
|
|
100209
|
+
|
|
100210
|
+
/**
|
|
100211
|
+
* Returns whether this field is set.
|
|
100212
|
+
* @return {boolean}
|
|
100213
|
+
*/
|
|
100214
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.hasRegKey = function() {
|
|
100215
|
+
return jspb.Message.getField(this, 5) != null;
|
|
100216
|
+
};
|
|
100217
|
+
|
|
100218
|
+
|
|
100219
|
+
/**
|
|
100220
|
+
* optional google.protobuf.Timestamp last_changed = 6;
|
|
100221
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
100222
|
+
*/
|
|
100223
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.getLastChanged = function() {
|
|
100224
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
100225
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
100226
|
+
};
|
|
100227
|
+
|
|
100228
|
+
|
|
100229
|
+
/**
|
|
100230
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
100231
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100232
|
+
*/
|
|
100233
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.setLastChanged = function(value) {
|
|
100234
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
100235
|
+
};
|
|
100236
|
+
|
|
100237
|
+
|
|
100238
|
+
/**
|
|
100239
|
+
* Clears the message field making it undefined.
|
|
100240
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo} returns this
|
|
100241
|
+
*/
|
|
100242
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.clearLastChanged = function() {
|
|
100243
|
+
return this.setLastChanged(undefined);
|
|
100244
|
+
};
|
|
100245
|
+
|
|
100246
|
+
|
|
100247
|
+
/**
|
|
100248
|
+
* Returns whether this field is set.
|
|
100249
|
+
* @return {boolean}
|
|
100250
|
+
*/
|
|
100251
|
+
proto.com.lansweeper.dp.outbound.v1.WindowsComputerRegistryInfo.prototype.hasLastChanged = function() {
|
|
100252
|
+
return jspb.Message.getField(this, 6) != null;
|
|
100253
|
+
};
|
|
100254
|
+
|
|
100255
|
+
|
|
100256
|
+
|
|
100257
|
+
|
|
100258
|
+
|
|
99793
100259
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
99794
100260
|
/**
|
|
99795
100261
|
* Creates an object representation of this proto.
|