@lansweeper/data-platform-outbound-grpc 0.1.140 → 0.1.142
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +47 -0
- package/gen-proto/outbound_pb.js +422 -3
- package/generated-go/outbound.pb.go +7658 -7538
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +10 -5
|
@@ -1367,6 +1367,12 @@ export class SccmServer extends jspb.Message {
|
|
|
1367
1367
|
clearDomain(): void;
|
|
1368
1368
|
getDomain(): string | undefined;
|
|
1369
1369
|
setDomain(value: string): SccmServer;
|
|
1370
|
+
getServerId(): string;
|
|
1371
|
+
setServerId(value: string): SccmServer;
|
|
1372
|
+
clearSccmSiteList(): void;
|
|
1373
|
+
getSccmSiteList(): Array<SccmSite>;
|
|
1374
|
+
setSccmSiteList(value: Array<SccmSite>): SccmServer;
|
|
1375
|
+
addSccmSite(value?: SccmSite, index?: number): SccmSite;
|
|
1370
1376
|
|
|
1371
1377
|
serializeBinary(): Uint8Array;
|
|
1372
1378
|
toObject(includeInstance?: boolean): SccmServer.AsObject;
|
|
@@ -1383,10 +1389,14 @@ export namespace SccmServer {
|
|
|
1383
1389
|
server?: EntityPath.AsObject,
|
|
1384
1390
|
serverName?: string,
|
|
1385
1391
|
domain?: string,
|
|
1392
|
+
serverId: string,
|
|
1393
|
+
sccmSiteList: Array<SccmSite.AsObject>,
|
|
1386
1394
|
}
|
|
1387
1395
|
}
|
|
1388
1396
|
|
|
1389
1397
|
export class SccmSite extends jspb.Message {
|
|
1398
|
+
getSiteId(): string;
|
|
1399
|
+
setSiteId(value: string): SccmSite;
|
|
1390
1400
|
|
|
1391
1401
|
hasCode(): boolean;
|
|
1392
1402
|
clearCode(): void;
|
|
@@ -1425,6 +1435,7 @@ export class SccmSite extends jspb.Message {
|
|
|
1425
1435
|
|
|
1426
1436
|
export namespace SccmSite {
|
|
1427
1437
|
export type AsObject = {
|
|
1438
|
+
siteId: string,
|
|
1428
1439
|
code?: string,
|
|
1429
1440
|
name?: string,
|
|
1430
1441
|
version?: string,
|
|
@@ -14457,6 +14468,16 @@ export class User extends jspb.Message {
|
|
|
14457
14468
|
setRelationList(value: Array<Relation>): User;
|
|
14458
14469
|
addRelation(value?: Relation, index?: number): Relation;
|
|
14459
14470
|
|
|
14471
|
+
hasCorrelationFields(): boolean;
|
|
14472
|
+
clearCorrelationFields(): void;
|
|
14473
|
+
getCorrelationFields(): CorrelationFields | undefined;
|
|
14474
|
+
setCorrelationFields(value?: CorrelationFields): User;
|
|
14475
|
+
|
|
14476
|
+
hasReconciliation(): boolean;
|
|
14477
|
+
clearReconciliation(): void;
|
|
14478
|
+
getReconciliation(): ReconciliationInfo | undefined;
|
|
14479
|
+
setReconciliation(value?: ReconciliationInfo): User;
|
|
14480
|
+
|
|
14460
14481
|
hasCore(): boolean;
|
|
14461
14482
|
clearCore(): void;
|
|
14462
14483
|
getCore(): UserCoreFields | undefined;
|
|
@@ -14493,6 +14514,8 @@ export namespace User {
|
|
|
14493
14514
|
internetIp?: IpInfo.AsObject,
|
|
14494
14515
|
tagList: Array<Tag.AsObject>,
|
|
14495
14516
|
relationList: Array<Relation.AsObject>,
|
|
14517
|
+
correlationFields?: CorrelationFields.AsObject,
|
|
14518
|
+
reconciliation?: ReconciliationInfo.AsObject,
|
|
14496
14519
|
core?: UserCoreFields.AsObject,
|
|
14497
14520
|
adUser?: ActiveDirectoryUser.AsObject,
|
|
14498
14521
|
}
|
|
@@ -14606,6 +14629,16 @@ export class Group extends jspb.Message {
|
|
|
14606
14629
|
setRelationList(value: Array<Relation>): Group;
|
|
14607
14630
|
addRelation(value?: Relation, index?: number): Relation;
|
|
14608
14631
|
|
|
14632
|
+
hasCorrelationFields(): boolean;
|
|
14633
|
+
clearCorrelationFields(): void;
|
|
14634
|
+
getCorrelationFields(): CorrelationFields | undefined;
|
|
14635
|
+
setCorrelationFields(value?: CorrelationFields): Group;
|
|
14636
|
+
|
|
14637
|
+
hasReconciliation(): boolean;
|
|
14638
|
+
clearReconciliation(): void;
|
|
14639
|
+
getReconciliation(): ReconciliationInfo | undefined;
|
|
14640
|
+
setReconciliation(value?: ReconciliationInfo): Group;
|
|
14641
|
+
|
|
14609
14642
|
hasCore(): boolean;
|
|
14610
14643
|
clearCore(): void;
|
|
14611
14644
|
getCore(): GroupCoreFields | undefined;
|
|
@@ -14642,6 +14675,8 @@ export namespace Group {
|
|
|
14642
14675
|
internetIp?: IpInfo.AsObject,
|
|
14643
14676
|
tagList: Array<Tag.AsObject>,
|
|
14644
14677
|
relationList: Array<Relation.AsObject>,
|
|
14678
|
+
correlationFields?: CorrelationFields.AsObject,
|
|
14679
|
+
reconciliation?: ReconciliationInfo.AsObject,
|
|
14645
14680
|
core?: GroupCoreFields.AsObject,
|
|
14646
14681
|
adGroup?: ActiveDirectoryGroup.AsObject,
|
|
14647
14682
|
}
|
|
@@ -14649,6 +14684,16 @@ export namespace Group {
|
|
|
14649
14684
|
|
|
14650
14685
|
export class GroupCoreFields extends jspb.Message {
|
|
14651
14686
|
|
|
14687
|
+
hasSid(): boolean;
|
|
14688
|
+
clearSid(): void;
|
|
14689
|
+
getSid(): string | undefined;
|
|
14690
|
+
setSid(value: string): GroupCoreFields;
|
|
14691
|
+
|
|
14692
|
+
hasName(): boolean;
|
|
14693
|
+
clearName(): void;
|
|
14694
|
+
getName(): string | undefined;
|
|
14695
|
+
setName(value: string): GroupCoreFields;
|
|
14696
|
+
|
|
14652
14697
|
serializeBinary(): Uint8Array;
|
|
14653
14698
|
toObject(includeInstance?: boolean): GroupCoreFields.AsObject;
|
|
14654
14699
|
static toObject(includeInstance: boolean, msg: GroupCoreFields): GroupCoreFields.AsObject;
|
|
@@ -14661,6 +14706,8 @@ export class GroupCoreFields extends jspb.Message {
|
|
|
14661
14706
|
|
|
14662
14707
|
export namespace GroupCoreFields {
|
|
14663
14708
|
export type AsObject = {
|
|
14709
|
+
sid?: string,
|
|
14710
|
+
name?: string,
|
|
14664
14711
|
}
|
|
14665
14712
|
}
|
|
14666
14713
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -693,7 +693,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
693
693
|
* @constructor
|
|
694
694
|
*/
|
|
695
695
|
proto.com.lansweeper.dp.outbound.v1.SccmServer = function(opt_data) {
|
|
696
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
696
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.dp.outbound.v1.SccmServer.repeatedFields_, null);
|
|
697
697
|
};
|
|
698
698
|
goog.inherits(proto.com.lansweeper.dp.outbound.v1.SccmServer, jspb.Message);
|
|
699
699
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -16012,6 +16012,13 @@ proto.com.lansweeper.dp.outbound.v1.SccmInfo.prototype.hasCreationDate = functio
|
|
|
16012
16012
|
|
|
16013
16013
|
|
|
16014
16014
|
|
|
16015
|
+
/**
|
|
16016
|
+
* List of repeated fields within this message type.
|
|
16017
|
+
* @private {!Array<number>}
|
|
16018
|
+
* @const
|
|
16019
|
+
*/
|
|
16020
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.repeatedFields_ = [5];
|
|
16021
|
+
|
|
16015
16022
|
|
|
16016
16023
|
|
|
16017
16024
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -16045,7 +16052,10 @@ proto.com.lansweeper.dp.outbound.v1.SccmServer.toObject = function(includeInstan
|
|
|
16045
16052
|
var f, obj = {
|
|
16046
16053
|
server: (f = msg.getServer()) && proto.com.lansweeper.dp.outbound.v1.EntityPath.toObject(includeInstance, f),
|
|
16047
16054
|
serverName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
16048
|
-
domain: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
16055
|
+
domain: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
16056
|
+
serverId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
16057
|
+
sccmSiteList: jspb.Message.toObjectList(msg.getSccmSiteList(),
|
|
16058
|
+
proto.com.lansweeper.dp.outbound.v1.SccmSite.toObject, includeInstance)
|
|
16049
16059
|
};
|
|
16050
16060
|
|
|
16051
16061
|
if (includeInstance) {
|
|
@@ -16095,6 +16105,15 @@ proto.com.lansweeper.dp.outbound.v1.SccmServer.deserializeBinaryFromReader = fun
|
|
|
16095
16105
|
var value = /** @type {string} */ (reader.readString());
|
|
16096
16106
|
msg.setDomain(value);
|
|
16097
16107
|
break;
|
|
16108
|
+
case 4:
|
|
16109
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16110
|
+
msg.setServerId(value);
|
|
16111
|
+
break;
|
|
16112
|
+
case 5:
|
|
16113
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.SccmSite;
|
|
16114
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.SccmSite.deserializeBinaryFromReader);
|
|
16115
|
+
msg.addSccmSite(value);
|
|
16116
|
+
break;
|
|
16098
16117
|
default:
|
|
16099
16118
|
reader.skipField();
|
|
16100
16119
|
break;
|
|
@@ -16146,6 +16165,21 @@ proto.com.lansweeper.dp.outbound.v1.SccmServer.serializeBinaryToWriter = functio
|
|
|
16146
16165
|
f
|
|
16147
16166
|
);
|
|
16148
16167
|
}
|
|
16168
|
+
f = message.getServerId();
|
|
16169
|
+
if (f.length > 0) {
|
|
16170
|
+
writer.writeString(
|
|
16171
|
+
4,
|
|
16172
|
+
f
|
|
16173
|
+
);
|
|
16174
|
+
}
|
|
16175
|
+
f = message.getSccmSiteList();
|
|
16176
|
+
if (f.length > 0) {
|
|
16177
|
+
writer.writeRepeatedMessage(
|
|
16178
|
+
5,
|
|
16179
|
+
f,
|
|
16180
|
+
proto.com.lansweeper.dp.outbound.v1.SccmSite.serializeBinaryToWriter
|
|
16181
|
+
);
|
|
16182
|
+
}
|
|
16149
16183
|
};
|
|
16150
16184
|
|
|
16151
16185
|
|
|
@@ -16258,6 +16292,62 @@ proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.hasDomain = function()
|
|
|
16258
16292
|
};
|
|
16259
16293
|
|
|
16260
16294
|
|
|
16295
|
+
/**
|
|
16296
|
+
* optional string server_id = 4;
|
|
16297
|
+
* @return {string}
|
|
16298
|
+
*/
|
|
16299
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.getServerId = function() {
|
|
16300
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
16301
|
+
};
|
|
16302
|
+
|
|
16303
|
+
|
|
16304
|
+
/**
|
|
16305
|
+
* @param {string} value
|
|
16306
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SccmServer} returns this
|
|
16307
|
+
*/
|
|
16308
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.setServerId = function(value) {
|
|
16309
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
16310
|
+
};
|
|
16311
|
+
|
|
16312
|
+
|
|
16313
|
+
/**
|
|
16314
|
+
* repeated SccmSite sccm_site = 5;
|
|
16315
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.SccmSite>}
|
|
16316
|
+
*/
|
|
16317
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.getSccmSiteList = function() {
|
|
16318
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.SccmSite>} */ (
|
|
16319
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.SccmSite, 5));
|
|
16320
|
+
};
|
|
16321
|
+
|
|
16322
|
+
|
|
16323
|
+
/**
|
|
16324
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.SccmSite>} value
|
|
16325
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SccmServer} returns this
|
|
16326
|
+
*/
|
|
16327
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.setSccmSiteList = function(value) {
|
|
16328
|
+
return jspb.Message.setRepeatedWrapperField(this, 5, value);
|
|
16329
|
+
};
|
|
16330
|
+
|
|
16331
|
+
|
|
16332
|
+
/**
|
|
16333
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.SccmSite=} opt_value
|
|
16334
|
+
* @param {number=} opt_index
|
|
16335
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SccmSite}
|
|
16336
|
+
*/
|
|
16337
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.addSccmSite = function(opt_value, opt_index) {
|
|
16338
|
+
return jspb.Message.addToRepeatedWrapperField(this, 5, opt_value, proto.com.lansweeper.dp.outbound.v1.SccmSite, opt_index);
|
|
16339
|
+
};
|
|
16340
|
+
|
|
16341
|
+
|
|
16342
|
+
/**
|
|
16343
|
+
* Clears the list making it empty but non-null.
|
|
16344
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SccmServer} returns this
|
|
16345
|
+
*/
|
|
16346
|
+
proto.com.lansweeper.dp.outbound.v1.SccmServer.prototype.clearSccmSiteList = function() {
|
|
16347
|
+
return this.setSccmSiteList([]);
|
|
16348
|
+
};
|
|
16349
|
+
|
|
16350
|
+
|
|
16261
16351
|
|
|
16262
16352
|
|
|
16263
16353
|
|
|
@@ -16290,6 +16380,7 @@ proto.com.lansweeper.dp.outbound.v1.SccmSite.prototype.toObject = function(opt_i
|
|
|
16290
16380
|
*/
|
|
16291
16381
|
proto.com.lansweeper.dp.outbound.v1.SccmSite.toObject = function(includeInstance, msg) {
|
|
16292
16382
|
var f, obj = {
|
|
16383
|
+
siteId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
16293
16384
|
code: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
16294
16385
|
name: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
16295
16386
|
version: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
@@ -16331,6 +16422,10 @@ proto.com.lansweeper.dp.outbound.v1.SccmSite.deserializeBinaryFromReader = funct
|
|
|
16331
16422
|
}
|
|
16332
16423
|
var field = reader.getFieldNumber();
|
|
16333
16424
|
switch (field) {
|
|
16425
|
+
case 1:
|
|
16426
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16427
|
+
msg.setSiteId(value);
|
|
16428
|
+
break;
|
|
16334
16429
|
case 5:
|
|
16335
16430
|
var value = /** @type {string} */ (reader.readString());
|
|
16336
16431
|
msg.setCode(value);
|
|
@@ -16380,6 +16475,13 @@ proto.com.lansweeper.dp.outbound.v1.SccmSite.prototype.serializeBinary = functio
|
|
|
16380
16475
|
*/
|
|
16381
16476
|
proto.com.lansweeper.dp.outbound.v1.SccmSite.serializeBinaryToWriter = function(message, writer) {
|
|
16382
16477
|
var f = undefined;
|
|
16478
|
+
f = message.getSiteId();
|
|
16479
|
+
if (f.length > 0) {
|
|
16480
|
+
writer.writeString(
|
|
16481
|
+
1,
|
|
16482
|
+
f
|
|
16483
|
+
);
|
|
16484
|
+
}
|
|
16383
16485
|
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
16384
16486
|
if (f != null) {
|
|
16385
16487
|
writer.writeString(
|
|
@@ -16418,6 +16520,24 @@ proto.com.lansweeper.dp.outbound.v1.SccmSite.serializeBinaryToWriter = function(
|
|
|
16418
16520
|
};
|
|
16419
16521
|
|
|
16420
16522
|
|
|
16523
|
+
/**
|
|
16524
|
+
* optional string site_id = 1;
|
|
16525
|
+
* @return {string}
|
|
16526
|
+
*/
|
|
16527
|
+
proto.com.lansweeper.dp.outbound.v1.SccmSite.prototype.getSiteId = function() {
|
|
16528
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
16529
|
+
};
|
|
16530
|
+
|
|
16531
|
+
|
|
16532
|
+
/**
|
|
16533
|
+
* @param {string} value
|
|
16534
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.SccmSite} returns this
|
|
16535
|
+
*/
|
|
16536
|
+
proto.com.lansweeper.dp.outbound.v1.SccmSite.prototype.setSiteId = function(value) {
|
|
16537
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
16538
|
+
};
|
|
16539
|
+
|
|
16540
|
+
|
|
16421
16541
|
/**
|
|
16422
16542
|
* optional string code = 5;
|
|
16423
16543
|
* @return {string}
|
|
@@ -115304,6 +115424,8 @@ proto.com.lansweeper.dp.outbound.v1.User.toObject = function(includeInstance, ms
|
|
|
115304
115424
|
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance),
|
|
115305
115425
|
relationList: jspb.Message.toObjectList(msg.getRelationList(),
|
|
115306
115426
|
proto.com.lansweeper.dp.outbound.v1.Relation.toObject, includeInstance),
|
|
115427
|
+
correlationFields: (f = msg.getCorrelationFields()) && proto.com.lansweeper.dp.outbound.v1.CorrelationFields.toObject(includeInstance, f),
|
|
115428
|
+
reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
|
|
115307
115429
|
core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.UserCoreFields.toObject(includeInstance, f),
|
|
115308
115430
|
adUser: (f = msg.getAdUser()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.toObject(includeInstance, f)
|
|
115309
115431
|
};
|
|
@@ -115409,6 +115531,16 @@ proto.com.lansweeper.dp.outbound.v1.User.deserializeBinaryFromReader = function(
|
|
|
115409
115531
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Relation.deserializeBinaryFromReader);
|
|
115410
115532
|
msg.addRelation(value);
|
|
115411
115533
|
break;
|
|
115534
|
+
case 15:
|
|
115535
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CorrelationFields;
|
|
115536
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CorrelationFields.deserializeBinaryFromReader);
|
|
115537
|
+
msg.setCorrelationFields(value);
|
|
115538
|
+
break;
|
|
115539
|
+
case 16:
|
|
115540
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo;
|
|
115541
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader);
|
|
115542
|
+
msg.setReconciliation(value);
|
|
115543
|
+
break;
|
|
115412
115544
|
case 20:
|
|
115413
115545
|
var value = new proto.com.lansweeper.dp.outbound.v1.UserCoreFields;
|
|
115414
115546
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.UserCoreFields.deserializeBinaryFromReader);
|
|
@@ -115557,6 +115689,22 @@ proto.com.lansweeper.dp.outbound.v1.User.serializeBinaryToWriter = function(mess
|
|
|
115557
115689
|
proto.com.lansweeper.dp.outbound.v1.Relation.serializeBinaryToWriter
|
|
115558
115690
|
);
|
|
115559
115691
|
}
|
|
115692
|
+
f = message.getCorrelationFields();
|
|
115693
|
+
if (f != null) {
|
|
115694
|
+
writer.writeMessage(
|
|
115695
|
+
15,
|
|
115696
|
+
f,
|
|
115697
|
+
proto.com.lansweeper.dp.outbound.v1.CorrelationFields.serializeBinaryToWriter
|
|
115698
|
+
);
|
|
115699
|
+
}
|
|
115700
|
+
f = message.getReconciliation();
|
|
115701
|
+
if (f != null) {
|
|
115702
|
+
writer.writeMessage(
|
|
115703
|
+
16,
|
|
115704
|
+
f,
|
|
115705
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter
|
|
115706
|
+
);
|
|
115707
|
+
}
|
|
115560
115708
|
f = message.getCore();
|
|
115561
115709
|
if (f != null) {
|
|
115562
115710
|
writer.writeMessage(
|
|
@@ -116096,6 +116244,80 @@ proto.com.lansweeper.dp.outbound.v1.User.prototype.clearRelationList = function(
|
|
|
116096
116244
|
};
|
|
116097
116245
|
|
|
116098
116246
|
|
|
116247
|
+
/**
|
|
116248
|
+
* optional CorrelationFields correlation_fields = 15;
|
|
116249
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields}
|
|
116250
|
+
*/
|
|
116251
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.getCorrelationFields = function() {
|
|
116252
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CorrelationFields} */ (
|
|
116253
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CorrelationFields, 15));
|
|
116254
|
+
};
|
|
116255
|
+
|
|
116256
|
+
|
|
116257
|
+
/**
|
|
116258
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields|undefined} value
|
|
116259
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116260
|
+
*/
|
|
116261
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.setCorrelationFields = function(value) {
|
|
116262
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
116263
|
+
};
|
|
116264
|
+
|
|
116265
|
+
|
|
116266
|
+
/**
|
|
116267
|
+
* Clears the message field making it undefined.
|
|
116268
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116269
|
+
*/
|
|
116270
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.clearCorrelationFields = function() {
|
|
116271
|
+
return this.setCorrelationFields(undefined);
|
|
116272
|
+
};
|
|
116273
|
+
|
|
116274
|
+
|
|
116275
|
+
/**
|
|
116276
|
+
* Returns whether this field is set.
|
|
116277
|
+
* @return {boolean}
|
|
116278
|
+
*/
|
|
116279
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.hasCorrelationFields = function() {
|
|
116280
|
+
return jspb.Message.getField(this, 15) != null;
|
|
116281
|
+
};
|
|
116282
|
+
|
|
116283
|
+
|
|
116284
|
+
/**
|
|
116285
|
+
* optional ReconciliationInfo reconciliation = 16;
|
|
116286
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
116287
|
+
*/
|
|
116288
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.getReconciliation = function() {
|
|
116289
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} */ (
|
|
116290
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo, 16));
|
|
116291
|
+
};
|
|
116292
|
+
|
|
116293
|
+
|
|
116294
|
+
/**
|
|
116295
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo|undefined} value
|
|
116296
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116297
|
+
*/
|
|
116298
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.setReconciliation = function(value) {
|
|
116299
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
116300
|
+
};
|
|
116301
|
+
|
|
116302
|
+
|
|
116303
|
+
/**
|
|
116304
|
+
* Clears the message field making it undefined.
|
|
116305
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116306
|
+
*/
|
|
116307
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.clearReconciliation = function() {
|
|
116308
|
+
return this.setReconciliation(undefined);
|
|
116309
|
+
};
|
|
116310
|
+
|
|
116311
|
+
|
|
116312
|
+
/**
|
|
116313
|
+
* Returns whether this field is set.
|
|
116314
|
+
* @return {boolean}
|
|
116315
|
+
*/
|
|
116316
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.hasReconciliation = function() {
|
|
116317
|
+
return jspb.Message.getField(this, 16) != null;
|
|
116318
|
+
};
|
|
116319
|
+
|
|
116320
|
+
|
|
116099
116321
|
/**
|
|
116100
116322
|
* optional UserCoreFields core = 20;
|
|
116101
116323
|
* @return {?proto.com.lansweeper.dp.outbound.v1.UserCoreFields}
|
|
@@ -116520,6 +116742,8 @@ proto.com.lansweeper.dp.outbound.v1.Group.toObject = function(includeInstance, m
|
|
|
116520
116742
|
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance),
|
|
116521
116743
|
relationList: jspb.Message.toObjectList(msg.getRelationList(),
|
|
116522
116744
|
proto.com.lansweeper.dp.outbound.v1.Relation.toObject, includeInstance),
|
|
116745
|
+
correlationFields: (f = msg.getCorrelationFields()) && proto.com.lansweeper.dp.outbound.v1.CorrelationFields.toObject(includeInstance, f),
|
|
116746
|
+
reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
|
|
116523
116747
|
core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.toObject(includeInstance, f),
|
|
116524
116748
|
adGroup: (f = msg.getAdGroup()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.toObject(includeInstance, f)
|
|
116525
116749
|
};
|
|
@@ -116625,6 +116849,16 @@ proto.com.lansweeper.dp.outbound.v1.Group.deserializeBinaryFromReader = function
|
|
|
116625
116849
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Relation.deserializeBinaryFromReader);
|
|
116626
116850
|
msg.addRelation(value);
|
|
116627
116851
|
break;
|
|
116852
|
+
case 15:
|
|
116853
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CorrelationFields;
|
|
116854
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CorrelationFields.deserializeBinaryFromReader);
|
|
116855
|
+
msg.setCorrelationFields(value);
|
|
116856
|
+
break;
|
|
116857
|
+
case 16:
|
|
116858
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo;
|
|
116859
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader);
|
|
116860
|
+
msg.setReconciliation(value);
|
|
116861
|
+
break;
|
|
116628
116862
|
case 20:
|
|
116629
116863
|
var value = new proto.com.lansweeper.dp.outbound.v1.GroupCoreFields;
|
|
116630
116864
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.deserializeBinaryFromReader);
|
|
@@ -116773,6 +117007,22 @@ proto.com.lansweeper.dp.outbound.v1.Group.serializeBinaryToWriter = function(mes
|
|
|
116773
117007
|
proto.com.lansweeper.dp.outbound.v1.Relation.serializeBinaryToWriter
|
|
116774
117008
|
);
|
|
116775
117009
|
}
|
|
117010
|
+
f = message.getCorrelationFields();
|
|
117011
|
+
if (f != null) {
|
|
117012
|
+
writer.writeMessage(
|
|
117013
|
+
15,
|
|
117014
|
+
f,
|
|
117015
|
+
proto.com.lansweeper.dp.outbound.v1.CorrelationFields.serializeBinaryToWriter
|
|
117016
|
+
);
|
|
117017
|
+
}
|
|
117018
|
+
f = message.getReconciliation();
|
|
117019
|
+
if (f != null) {
|
|
117020
|
+
writer.writeMessage(
|
|
117021
|
+
16,
|
|
117022
|
+
f,
|
|
117023
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter
|
|
117024
|
+
);
|
|
117025
|
+
}
|
|
116776
117026
|
f = message.getCore();
|
|
116777
117027
|
if (f != null) {
|
|
116778
117028
|
writer.writeMessage(
|
|
@@ -117312,6 +117562,80 @@ proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearRelationList = function
|
|
|
117312
117562
|
};
|
|
117313
117563
|
|
|
117314
117564
|
|
|
117565
|
+
/**
|
|
117566
|
+
* optional CorrelationFields correlation_fields = 15;
|
|
117567
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields}
|
|
117568
|
+
*/
|
|
117569
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.getCorrelationFields = function() {
|
|
117570
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CorrelationFields} */ (
|
|
117571
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CorrelationFields, 15));
|
|
117572
|
+
};
|
|
117573
|
+
|
|
117574
|
+
|
|
117575
|
+
/**
|
|
117576
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields|undefined} value
|
|
117577
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117578
|
+
*/
|
|
117579
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.setCorrelationFields = function(value) {
|
|
117580
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
117581
|
+
};
|
|
117582
|
+
|
|
117583
|
+
|
|
117584
|
+
/**
|
|
117585
|
+
* Clears the message field making it undefined.
|
|
117586
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117587
|
+
*/
|
|
117588
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearCorrelationFields = function() {
|
|
117589
|
+
return this.setCorrelationFields(undefined);
|
|
117590
|
+
};
|
|
117591
|
+
|
|
117592
|
+
|
|
117593
|
+
/**
|
|
117594
|
+
* Returns whether this field is set.
|
|
117595
|
+
* @return {boolean}
|
|
117596
|
+
*/
|
|
117597
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.hasCorrelationFields = function() {
|
|
117598
|
+
return jspb.Message.getField(this, 15) != null;
|
|
117599
|
+
};
|
|
117600
|
+
|
|
117601
|
+
|
|
117602
|
+
/**
|
|
117603
|
+
* optional ReconciliationInfo reconciliation = 16;
|
|
117604
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
117605
|
+
*/
|
|
117606
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.getReconciliation = function() {
|
|
117607
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} */ (
|
|
117608
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo, 16));
|
|
117609
|
+
};
|
|
117610
|
+
|
|
117611
|
+
|
|
117612
|
+
/**
|
|
117613
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo|undefined} value
|
|
117614
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117615
|
+
*/
|
|
117616
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.setReconciliation = function(value) {
|
|
117617
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
117618
|
+
};
|
|
117619
|
+
|
|
117620
|
+
|
|
117621
|
+
/**
|
|
117622
|
+
* Clears the message field making it undefined.
|
|
117623
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117624
|
+
*/
|
|
117625
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearReconciliation = function() {
|
|
117626
|
+
return this.setReconciliation(undefined);
|
|
117627
|
+
};
|
|
117628
|
+
|
|
117629
|
+
|
|
117630
|
+
/**
|
|
117631
|
+
* Returns whether this field is set.
|
|
117632
|
+
* @return {boolean}
|
|
117633
|
+
*/
|
|
117634
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.hasReconciliation = function() {
|
|
117635
|
+
return jspb.Message.getField(this, 16) != null;
|
|
117636
|
+
};
|
|
117637
|
+
|
|
117638
|
+
|
|
117315
117639
|
/**
|
|
117316
117640
|
* optional GroupCoreFields core = 20;
|
|
117317
117641
|
* @return {?proto.com.lansweeper.dp.outbound.v1.GroupCoreFields}
|
|
@@ -117418,7 +117742,8 @@ proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.toObject = functio
|
|
|
117418
117742
|
*/
|
|
117419
117743
|
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.toObject = function(includeInstance, msg) {
|
|
117420
117744
|
var f, obj = {
|
|
117421
|
-
|
|
117745
|
+
sid: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
117746
|
+
name: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
117422
117747
|
};
|
|
117423
117748
|
|
|
117424
117749
|
if (includeInstance) {
|
|
@@ -117455,6 +117780,14 @@ proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.deserializeBinaryFromReader
|
|
|
117455
117780
|
}
|
|
117456
117781
|
var field = reader.getFieldNumber();
|
|
117457
117782
|
switch (field) {
|
|
117783
|
+
case 1:
|
|
117784
|
+
var value = /** @type {string} */ (reader.readString());
|
|
117785
|
+
msg.setSid(value);
|
|
117786
|
+
break;
|
|
117787
|
+
case 2:
|
|
117788
|
+
var value = /** @type {string} */ (reader.readString());
|
|
117789
|
+
msg.setName(value);
|
|
117790
|
+
break;
|
|
117458
117791
|
default:
|
|
117459
117792
|
reader.skipField();
|
|
117460
117793
|
break;
|
|
@@ -117484,6 +117817,92 @@ proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.serializeBinary =
|
|
|
117484
117817
|
*/
|
|
117485
117818
|
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.serializeBinaryToWriter = function(message, writer) {
|
|
117486
117819
|
var f = undefined;
|
|
117820
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
117821
|
+
if (f != null) {
|
|
117822
|
+
writer.writeString(
|
|
117823
|
+
1,
|
|
117824
|
+
f
|
|
117825
|
+
);
|
|
117826
|
+
}
|
|
117827
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
117828
|
+
if (f != null) {
|
|
117829
|
+
writer.writeString(
|
|
117830
|
+
2,
|
|
117831
|
+
f
|
|
117832
|
+
);
|
|
117833
|
+
}
|
|
117834
|
+
};
|
|
117835
|
+
|
|
117836
|
+
|
|
117837
|
+
/**
|
|
117838
|
+
* optional string sid = 1;
|
|
117839
|
+
* @return {string}
|
|
117840
|
+
*/
|
|
117841
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.getSid = function() {
|
|
117842
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
117843
|
+
};
|
|
117844
|
+
|
|
117845
|
+
|
|
117846
|
+
/**
|
|
117847
|
+
* @param {string} value
|
|
117848
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117849
|
+
*/
|
|
117850
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.setSid = function(value) {
|
|
117851
|
+
return jspb.Message.setField(this, 1, value);
|
|
117852
|
+
};
|
|
117853
|
+
|
|
117854
|
+
|
|
117855
|
+
/**
|
|
117856
|
+
* Clears the field making it undefined.
|
|
117857
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117858
|
+
*/
|
|
117859
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.clearSid = function() {
|
|
117860
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
117861
|
+
};
|
|
117862
|
+
|
|
117863
|
+
|
|
117864
|
+
/**
|
|
117865
|
+
* Returns whether this field is set.
|
|
117866
|
+
* @return {boolean}
|
|
117867
|
+
*/
|
|
117868
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.hasSid = function() {
|
|
117869
|
+
return jspb.Message.getField(this, 1) != null;
|
|
117870
|
+
};
|
|
117871
|
+
|
|
117872
|
+
|
|
117873
|
+
/**
|
|
117874
|
+
* optional string name = 2;
|
|
117875
|
+
* @return {string}
|
|
117876
|
+
*/
|
|
117877
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.getName = function() {
|
|
117878
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
117879
|
+
};
|
|
117880
|
+
|
|
117881
|
+
|
|
117882
|
+
/**
|
|
117883
|
+
* @param {string} value
|
|
117884
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117885
|
+
*/
|
|
117886
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.setName = function(value) {
|
|
117887
|
+
return jspb.Message.setField(this, 2, value);
|
|
117888
|
+
};
|
|
117889
|
+
|
|
117890
|
+
|
|
117891
|
+
/**
|
|
117892
|
+
* Clears the field making it undefined.
|
|
117893
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117894
|
+
*/
|
|
117895
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.clearName = function() {
|
|
117896
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
117897
|
+
};
|
|
117898
|
+
|
|
117899
|
+
|
|
117900
|
+
/**
|
|
117901
|
+
* Returns whether this field is set.
|
|
117902
|
+
* @return {boolean}
|
|
117903
|
+
*/
|
|
117904
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.hasName = function() {
|
|
117905
|
+
return jspb.Message.getField(this, 2) != null;
|
|
117487
117906
|
};
|
|
117488
117907
|
|
|
117489
117908
|
|