@lansweeper/data-platform-outbound-grpc 0.1.141 → 0.2.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/CHANGELOG.md +19 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +41 -0
- package/gen-proto/outbound_pb.js +362 -3
- package/generated-go/outbound.pb.go +7017 -6916
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +7 -4
|
@@ -1719,6 +1719,10 @@ export class CloudEntity extends jspb.Message {
|
|
|
1719
1719
|
setEnvironmentName(value: string): CloudEntity;
|
|
1720
1720
|
getCategory(): string;
|
|
1721
1721
|
setCategory(value: string): CloudEntity;
|
|
1722
|
+
clearCdkTagsList(): void;
|
|
1723
|
+
getCdkTagsList(): Array<Tag>;
|
|
1724
|
+
setCdkTagsList(value: Array<Tag>): CloudEntity;
|
|
1725
|
+
addCdkTags(value?: Tag, index?: number): Tag;
|
|
1722
1726
|
|
|
1723
1727
|
serializeBinary(): Uint8Array;
|
|
1724
1728
|
toObject(includeInstance?: boolean): CloudEntity.AsObject;
|
|
@@ -1738,6 +1742,7 @@ export namespace CloudEntity {
|
|
|
1738
1742
|
regionId?: string,
|
|
1739
1743
|
environmentName: string,
|
|
1740
1744
|
category: string,
|
|
1745
|
+
cdkTagsList: Array<Tag.AsObject>,
|
|
1741
1746
|
}
|
|
1742
1747
|
}
|
|
1743
1748
|
|
|
@@ -14468,6 +14473,16 @@ export class User extends jspb.Message {
|
|
|
14468
14473
|
setRelationList(value: Array<Relation>): User;
|
|
14469
14474
|
addRelation(value?: Relation, index?: number): Relation;
|
|
14470
14475
|
|
|
14476
|
+
hasCorrelationFields(): boolean;
|
|
14477
|
+
clearCorrelationFields(): void;
|
|
14478
|
+
getCorrelationFields(): CorrelationFields | undefined;
|
|
14479
|
+
setCorrelationFields(value?: CorrelationFields): User;
|
|
14480
|
+
|
|
14481
|
+
hasReconciliation(): boolean;
|
|
14482
|
+
clearReconciliation(): void;
|
|
14483
|
+
getReconciliation(): ReconciliationInfo | undefined;
|
|
14484
|
+
setReconciliation(value?: ReconciliationInfo): User;
|
|
14485
|
+
|
|
14471
14486
|
hasCore(): boolean;
|
|
14472
14487
|
clearCore(): void;
|
|
14473
14488
|
getCore(): UserCoreFields | undefined;
|
|
@@ -14504,6 +14519,8 @@ export namespace User {
|
|
|
14504
14519
|
internetIp?: IpInfo.AsObject,
|
|
14505
14520
|
tagList: Array<Tag.AsObject>,
|
|
14506
14521
|
relationList: Array<Relation.AsObject>,
|
|
14522
|
+
correlationFields?: CorrelationFields.AsObject,
|
|
14523
|
+
reconciliation?: ReconciliationInfo.AsObject,
|
|
14507
14524
|
core?: UserCoreFields.AsObject,
|
|
14508
14525
|
adUser?: ActiveDirectoryUser.AsObject,
|
|
14509
14526
|
}
|
|
@@ -14617,6 +14634,16 @@ export class Group extends jspb.Message {
|
|
|
14617
14634
|
setRelationList(value: Array<Relation>): Group;
|
|
14618
14635
|
addRelation(value?: Relation, index?: number): Relation;
|
|
14619
14636
|
|
|
14637
|
+
hasCorrelationFields(): boolean;
|
|
14638
|
+
clearCorrelationFields(): void;
|
|
14639
|
+
getCorrelationFields(): CorrelationFields | undefined;
|
|
14640
|
+
setCorrelationFields(value?: CorrelationFields): Group;
|
|
14641
|
+
|
|
14642
|
+
hasReconciliation(): boolean;
|
|
14643
|
+
clearReconciliation(): void;
|
|
14644
|
+
getReconciliation(): ReconciliationInfo | undefined;
|
|
14645
|
+
setReconciliation(value?: ReconciliationInfo): Group;
|
|
14646
|
+
|
|
14620
14647
|
hasCore(): boolean;
|
|
14621
14648
|
clearCore(): void;
|
|
14622
14649
|
getCore(): GroupCoreFields | undefined;
|
|
@@ -14653,6 +14680,8 @@ export namespace Group {
|
|
|
14653
14680
|
internetIp?: IpInfo.AsObject,
|
|
14654
14681
|
tagList: Array<Tag.AsObject>,
|
|
14655
14682
|
relationList: Array<Relation.AsObject>,
|
|
14683
|
+
correlationFields?: CorrelationFields.AsObject,
|
|
14684
|
+
reconciliation?: ReconciliationInfo.AsObject,
|
|
14656
14685
|
core?: GroupCoreFields.AsObject,
|
|
14657
14686
|
adGroup?: ActiveDirectoryGroup.AsObject,
|
|
14658
14687
|
}
|
|
@@ -14660,6 +14689,16 @@ export namespace Group {
|
|
|
14660
14689
|
|
|
14661
14690
|
export class GroupCoreFields extends jspb.Message {
|
|
14662
14691
|
|
|
14692
|
+
hasSid(): boolean;
|
|
14693
|
+
clearSid(): void;
|
|
14694
|
+
getSid(): string | undefined;
|
|
14695
|
+
setSid(value: string): GroupCoreFields;
|
|
14696
|
+
|
|
14697
|
+
hasName(): boolean;
|
|
14698
|
+
clearName(): void;
|
|
14699
|
+
getName(): string | undefined;
|
|
14700
|
+
setName(value: string): GroupCoreFields;
|
|
14701
|
+
|
|
14663
14702
|
serializeBinary(): Uint8Array;
|
|
14664
14703
|
toObject(includeInstance?: boolean): GroupCoreFields.AsObject;
|
|
14665
14704
|
static toObject(includeInstance: boolean, msg: GroupCoreFields): GroupCoreFields.AsObject;
|
|
@@ -14672,6 +14711,8 @@ export class GroupCoreFields extends jspb.Message {
|
|
|
14672
14711
|
|
|
14673
14712
|
export namespace GroupCoreFields {
|
|
14674
14713
|
export type AsObject = {
|
|
14714
|
+
sid?: string,
|
|
14715
|
+
name?: string,
|
|
14675
14716
|
}
|
|
14676
14717
|
}
|
|
14677
14718
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -882,7 +882,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
882
882
|
* @constructor
|
|
883
883
|
*/
|
|
884
884
|
proto.com.lansweeper.dp.outbound.v1.CloudEntity = function(opt_data) {
|
|
885
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
885
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.dp.outbound.v1.CloudEntity.repeatedFields_, null);
|
|
886
886
|
};
|
|
887
887
|
goog.inherits(proto.com.lansweeper.dp.outbound.v1.CloudEntity, jspb.Message);
|
|
888
888
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -18596,6 +18596,13 @@ proto.com.lansweeper.dp.outbound.v1.CorrelationInfo.prototype.hasCorrelationFiel
|
|
|
18596
18596
|
|
|
18597
18597
|
|
|
18598
18598
|
|
|
18599
|
+
/**
|
|
18600
|
+
* List of repeated fields within this message type.
|
|
18601
|
+
* @private {!Array<number>}
|
|
18602
|
+
* @const
|
|
18603
|
+
*/
|
|
18604
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.repeatedFields_ = [7];
|
|
18605
|
+
|
|
18599
18606
|
|
|
18600
18607
|
|
|
18601
18608
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -18632,7 +18639,9 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.toObject = function(includeInsta
|
|
|
18632
18639
|
cloudProvider: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
18633
18640
|
regionId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
18634
18641
|
environmentName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
18635
|
-
category: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
18642
|
+
category: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
18643
|
+
cdkTagsList: jspb.Message.toObjectList(msg.getCdkTagsList(),
|
|
18644
|
+
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance)
|
|
18636
18645
|
};
|
|
18637
18646
|
|
|
18638
18647
|
if (includeInstance) {
|
|
@@ -18694,6 +18703,11 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.deserializeBinaryFromReader = fu
|
|
|
18694
18703
|
var value = /** @type {string} */ (reader.readString());
|
|
18695
18704
|
msg.setCategory(value);
|
|
18696
18705
|
break;
|
|
18706
|
+
case 7:
|
|
18707
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.Tag;
|
|
18708
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Tag.deserializeBinaryFromReader);
|
|
18709
|
+
msg.addCdkTags(value);
|
|
18710
|
+
break;
|
|
18697
18711
|
default:
|
|
18698
18712
|
reader.skipField();
|
|
18699
18713
|
break;
|
|
@@ -18766,6 +18780,14 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.serializeBinaryToWriter = functi
|
|
|
18766
18780
|
f
|
|
18767
18781
|
);
|
|
18768
18782
|
}
|
|
18783
|
+
f = message.getCdkTagsList();
|
|
18784
|
+
if (f.length > 0) {
|
|
18785
|
+
writer.writeRepeatedMessage(
|
|
18786
|
+
7,
|
|
18787
|
+
f,
|
|
18788
|
+
proto.com.lansweeper.dp.outbound.v1.Tag.serializeBinaryToWriter
|
|
18789
|
+
);
|
|
18790
|
+
}
|
|
18769
18791
|
};
|
|
18770
18792
|
|
|
18771
18793
|
|
|
@@ -18914,6 +18936,44 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setCategory = function
|
|
|
18914
18936
|
};
|
|
18915
18937
|
|
|
18916
18938
|
|
|
18939
|
+
/**
|
|
18940
|
+
* repeated Tag cdk_tags = 7;
|
|
18941
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.Tag>}
|
|
18942
|
+
*/
|
|
18943
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getCdkTagsList = function() {
|
|
18944
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.Tag>} */ (
|
|
18945
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.Tag, 7));
|
|
18946
|
+
};
|
|
18947
|
+
|
|
18948
|
+
|
|
18949
|
+
/**
|
|
18950
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.Tag>} value
|
|
18951
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
18952
|
+
*/
|
|
18953
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setCdkTagsList = function(value) {
|
|
18954
|
+
return jspb.Message.setRepeatedWrapperField(this, 7, value);
|
|
18955
|
+
};
|
|
18956
|
+
|
|
18957
|
+
|
|
18958
|
+
/**
|
|
18959
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.Tag=} opt_value
|
|
18960
|
+
* @param {number=} opt_index
|
|
18961
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Tag}
|
|
18962
|
+
*/
|
|
18963
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.addCdkTags = function(opt_value, opt_index) {
|
|
18964
|
+
return jspb.Message.addToRepeatedWrapperField(this, 7, opt_value, proto.com.lansweeper.dp.outbound.v1.Tag, opt_index);
|
|
18965
|
+
};
|
|
18966
|
+
|
|
18967
|
+
|
|
18968
|
+
/**
|
|
18969
|
+
* Clears the list making it empty but non-null.
|
|
18970
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
18971
|
+
*/
|
|
18972
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.clearCdkTagsList = function() {
|
|
18973
|
+
return this.setCdkTagsList([]);
|
|
18974
|
+
};
|
|
18975
|
+
|
|
18976
|
+
|
|
18917
18977
|
|
|
18918
18978
|
/**
|
|
18919
18979
|
* List of repeated fields within this message type.
|
|
@@ -115424,6 +115484,8 @@ proto.com.lansweeper.dp.outbound.v1.User.toObject = function(includeInstance, ms
|
|
|
115424
115484
|
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance),
|
|
115425
115485
|
relationList: jspb.Message.toObjectList(msg.getRelationList(),
|
|
115426
115486
|
proto.com.lansweeper.dp.outbound.v1.Relation.toObject, includeInstance),
|
|
115487
|
+
correlationFields: (f = msg.getCorrelationFields()) && proto.com.lansweeper.dp.outbound.v1.CorrelationFields.toObject(includeInstance, f),
|
|
115488
|
+
reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
|
|
115427
115489
|
core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.UserCoreFields.toObject(includeInstance, f),
|
|
115428
115490
|
adUser: (f = msg.getAdUser()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.toObject(includeInstance, f)
|
|
115429
115491
|
};
|
|
@@ -115529,6 +115591,16 @@ proto.com.lansweeper.dp.outbound.v1.User.deserializeBinaryFromReader = function(
|
|
|
115529
115591
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Relation.deserializeBinaryFromReader);
|
|
115530
115592
|
msg.addRelation(value);
|
|
115531
115593
|
break;
|
|
115594
|
+
case 15:
|
|
115595
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CorrelationFields;
|
|
115596
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CorrelationFields.deserializeBinaryFromReader);
|
|
115597
|
+
msg.setCorrelationFields(value);
|
|
115598
|
+
break;
|
|
115599
|
+
case 16:
|
|
115600
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo;
|
|
115601
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader);
|
|
115602
|
+
msg.setReconciliation(value);
|
|
115603
|
+
break;
|
|
115532
115604
|
case 20:
|
|
115533
115605
|
var value = new proto.com.lansweeper.dp.outbound.v1.UserCoreFields;
|
|
115534
115606
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.UserCoreFields.deserializeBinaryFromReader);
|
|
@@ -115677,6 +115749,22 @@ proto.com.lansweeper.dp.outbound.v1.User.serializeBinaryToWriter = function(mess
|
|
|
115677
115749
|
proto.com.lansweeper.dp.outbound.v1.Relation.serializeBinaryToWriter
|
|
115678
115750
|
);
|
|
115679
115751
|
}
|
|
115752
|
+
f = message.getCorrelationFields();
|
|
115753
|
+
if (f != null) {
|
|
115754
|
+
writer.writeMessage(
|
|
115755
|
+
15,
|
|
115756
|
+
f,
|
|
115757
|
+
proto.com.lansweeper.dp.outbound.v1.CorrelationFields.serializeBinaryToWriter
|
|
115758
|
+
);
|
|
115759
|
+
}
|
|
115760
|
+
f = message.getReconciliation();
|
|
115761
|
+
if (f != null) {
|
|
115762
|
+
writer.writeMessage(
|
|
115763
|
+
16,
|
|
115764
|
+
f,
|
|
115765
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter
|
|
115766
|
+
);
|
|
115767
|
+
}
|
|
115680
115768
|
f = message.getCore();
|
|
115681
115769
|
if (f != null) {
|
|
115682
115770
|
writer.writeMessage(
|
|
@@ -116216,6 +116304,80 @@ proto.com.lansweeper.dp.outbound.v1.User.prototype.clearRelationList = function(
|
|
|
116216
116304
|
};
|
|
116217
116305
|
|
|
116218
116306
|
|
|
116307
|
+
/**
|
|
116308
|
+
* optional CorrelationFields correlation_fields = 15;
|
|
116309
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields}
|
|
116310
|
+
*/
|
|
116311
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.getCorrelationFields = function() {
|
|
116312
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CorrelationFields} */ (
|
|
116313
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CorrelationFields, 15));
|
|
116314
|
+
};
|
|
116315
|
+
|
|
116316
|
+
|
|
116317
|
+
/**
|
|
116318
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields|undefined} value
|
|
116319
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116320
|
+
*/
|
|
116321
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.setCorrelationFields = function(value) {
|
|
116322
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
116323
|
+
};
|
|
116324
|
+
|
|
116325
|
+
|
|
116326
|
+
/**
|
|
116327
|
+
* Clears the message field making it undefined.
|
|
116328
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116329
|
+
*/
|
|
116330
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.clearCorrelationFields = function() {
|
|
116331
|
+
return this.setCorrelationFields(undefined);
|
|
116332
|
+
};
|
|
116333
|
+
|
|
116334
|
+
|
|
116335
|
+
/**
|
|
116336
|
+
* Returns whether this field is set.
|
|
116337
|
+
* @return {boolean}
|
|
116338
|
+
*/
|
|
116339
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.hasCorrelationFields = function() {
|
|
116340
|
+
return jspb.Message.getField(this, 15) != null;
|
|
116341
|
+
};
|
|
116342
|
+
|
|
116343
|
+
|
|
116344
|
+
/**
|
|
116345
|
+
* optional ReconciliationInfo reconciliation = 16;
|
|
116346
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
116347
|
+
*/
|
|
116348
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.getReconciliation = function() {
|
|
116349
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} */ (
|
|
116350
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo, 16));
|
|
116351
|
+
};
|
|
116352
|
+
|
|
116353
|
+
|
|
116354
|
+
/**
|
|
116355
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo|undefined} value
|
|
116356
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116357
|
+
*/
|
|
116358
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.setReconciliation = function(value) {
|
|
116359
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
116360
|
+
};
|
|
116361
|
+
|
|
116362
|
+
|
|
116363
|
+
/**
|
|
116364
|
+
* Clears the message field making it undefined.
|
|
116365
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
|
|
116366
|
+
*/
|
|
116367
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.clearReconciliation = function() {
|
|
116368
|
+
return this.setReconciliation(undefined);
|
|
116369
|
+
};
|
|
116370
|
+
|
|
116371
|
+
|
|
116372
|
+
/**
|
|
116373
|
+
* Returns whether this field is set.
|
|
116374
|
+
* @return {boolean}
|
|
116375
|
+
*/
|
|
116376
|
+
proto.com.lansweeper.dp.outbound.v1.User.prototype.hasReconciliation = function() {
|
|
116377
|
+
return jspb.Message.getField(this, 16) != null;
|
|
116378
|
+
};
|
|
116379
|
+
|
|
116380
|
+
|
|
116219
116381
|
/**
|
|
116220
116382
|
* optional UserCoreFields core = 20;
|
|
116221
116383
|
* @return {?proto.com.lansweeper.dp.outbound.v1.UserCoreFields}
|
|
@@ -116640,6 +116802,8 @@ proto.com.lansweeper.dp.outbound.v1.Group.toObject = function(includeInstance, m
|
|
|
116640
116802
|
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance),
|
|
116641
116803
|
relationList: jspb.Message.toObjectList(msg.getRelationList(),
|
|
116642
116804
|
proto.com.lansweeper.dp.outbound.v1.Relation.toObject, includeInstance),
|
|
116805
|
+
correlationFields: (f = msg.getCorrelationFields()) && proto.com.lansweeper.dp.outbound.v1.CorrelationFields.toObject(includeInstance, f),
|
|
116806
|
+
reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
|
|
116643
116807
|
core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.toObject(includeInstance, f),
|
|
116644
116808
|
adGroup: (f = msg.getAdGroup()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.toObject(includeInstance, f)
|
|
116645
116809
|
};
|
|
@@ -116745,6 +116909,16 @@ proto.com.lansweeper.dp.outbound.v1.Group.deserializeBinaryFromReader = function
|
|
|
116745
116909
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Relation.deserializeBinaryFromReader);
|
|
116746
116910
|
msg.addRelation(value);
|
|
116747
116911
|
break;
|
|
116912
|
+
case 15:
|
|
116913
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.CorrelationFields;
|
|
116914
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CorrelationFields.deserializeBinaryFromReader);
|
|
116915
|
+
msg.setCorrelationFields(value);
|
|
116916
|
+
break;
|
|
116917
|
+
case 16:
|
|
116918
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo;
|
|
116919
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.deserializeBinaryFromReader);
|
|
116920
|
+
msg.setReconciliation(value);
|
|
116921
|
+
break;
|
|
116748
116922
|
case 20:
|
|
116749
116923
|
var value = new proto.com.lansweeper.dp.outbound.v1.GroupCoreFields;
|
|
116750
116924
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.deserializeBinaryFromReader);
|
|
@@ -116893,6 +117067,22 @@ proto.com.lansweeper.dp.outbound.v1.Group.serializeBinaryToWriter = function(mes
|
|
|
116893
117067
|
proto.com.lansweeper.dp.outbound.v1.Relation.serializeBinaryToWriter
|
|
116894
117068
|
);
|
|
116895
117069
|
}
|
|
117070
|
+
f = message.getCorrelationFields();
|
|
117071
|
+
if (f != null) {
|
|
117072
|
+
writer.writeMessage(
|
|
117073
|
+
15,
|
|
117074
|
+
f,
|
|
117075
|
+
proto.com.lansweeper.dp.outbound.v1.CorrelationFields.serializeBinaryToWriter
|
|
117076
|
+
);
|
|
117077
|
+
}
|
|
117078
|
+
f = message.getReconciliation();
|
|
117079
|
+
if (f != null) {
|
|
117080
|
+
writer.writeMessage(
|
|
117081
|
+
16,
|
|
117082
|
+
f,
|
|
117083
|
+
proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.serializeBinaryToWriter
|
|
117084
|
+
);
|
|
117085
|
+
}
|
|
116896
117086
|
f = message.getCore();
|
|
116897
117087
|
if (f != null) {
|
|
116898
117088
|
writer.writeMessage(
|
|
@@ -117432,6 +117622,80 @@ proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearRelationList = function
|
|
|
117432
117622
|
};
|
|
117433
117623
|
|
|
117434
117624
|
|
|
117625
|
+
/**
|
|
117626
|
+
* optional CorrelationFields correlation_fields = 15;
|
|
117627
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields}
|
|
117628
|
+
*/
|
|
117629
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.getCorrelationFields = function() {
|
|
117630
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.CorrelationFields} */ (
|
|
117631
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.CorrelationFields, 15));
|
|
117632
|
+
};
|
|
117633
|
+
|
|
117634
|
+
|
|
117635
|
+
/**
|
|
117636
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.CorrelationFields|undefined} value
|
|
117637
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117638
|
+
*/
|
|
117639
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.setCorrelationFields = function(value) {
|
|
117640
|
+
return jspb.Message.setWrapperField(this, 15, value);
|
|
117641
|
+
};
|
|
117642
|
+
|
|
117643
|
+
|
|
117644
|
+
/**
|
|
117645
|
+
* Clears the message field making it undefined.
|
|
117646
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117647
|
+
*/
|
|
117648
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearCorrelationFields = function() {
|
|
117649
|
+
return this.setCorrelationFields(undefined);
|
|
117650
|
+
};
|
|
117651
|
+
|
|
117652
|
+
|
|
117653
|
+
/**
|
|
117654
|
+
* Returns whether this field is set.
|
|
117655
|
+
* @return {boolean}
|
|
117656
|
+
*/
|
|
117657
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.hasCorrelationFields = function() {
|
|
117658
|
+
return jspb.Message.getField(this, 15) != null;
|
|
117659
|
+
};
|
|
117660
|
+
|
|
117661
|
+
|
|
117662
|
+
/**
|
|
117663
|
+
* optional ReconciliationInfo reconciliation = 16;
|
|
117664
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo}
|
|
117665
|
+
*/
|
|
117666
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.getReconciliation = function() {
|
|
117667
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo} */ (
|
|
117668
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo, 16));
|
|
117669
|
+
};
|
|
117670
|
+
|
|
117671
|
+
|
|
117672
|
+
/**
|
|
117673
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo|undefined} value
|
|
117674
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117675
|
+
*/
|
|
117676
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.setReconciliation = function(value) {
|
|
117677
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
117678
|
+
};
|
|
117679
|
+
|
|
117680
|
+
|
|
117681
|
+
/**
|
|
117682
|
+
* Clears the message field making it undefined.
|
|
117683
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
|
|
117684
|
+
*/
|
|
117685
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearReconciliation = function() {
|
|
117686
|
+
return this.setReconciliation(undefined);
|
|
117687
|
+
};
|
|
117688
|
+
|
|
117689
|
+
|
|
117690
|
+
/**
|
|
117691
|
+
* Returns whether this field is set.
|
|
117692
|
+
* @return {boolean}
|
|
117693
|
+
*/
|
|
117694
|
+
proto.com.lansweeper.dp.outbound.v1.Group.prototype.hasReconciliation = function() {
|
|
117695
|
+
return jspb.Message.getField(this, 16) != null;
|
|
117696
|
+
};
|
|
117697
|
+
|
|
117698
|
+
|
|
117435
117699
|
/**
|
|
117436
117700
|
* optional GroupCoreFields core = 20;
|
|
117437
117701
|
* @return {?proto.com.lansweeper.dp.outbound.v1.GroupCoreFields}
|
|
@@ -117538,7 +117802,8 @@ proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.toObject = functio
|
|
|
117538
117802
|
*/
|
|
117539
117803
|
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.toObject = function(includeInstance, msg) {
|
|
117540
117804
|
var f, obj = {
|
|
117541
|
-
|
|
117805
|
+
sid: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
117806
|
+
name: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
117542
117807
|
};
|
|
117543
117808
|
|
|
117544
117809
|
if (includeInstance) {
|
|
@@ -117575,6 +117840,14 @@ proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.deserializeBinaryFromReader
|
|
|
117575
117840
|
}
|
|
117576
117841
|
var field = reader.getFieldNumber();
|
|
117577
117842
|
switch (field) {
|
|
117843
|
+
case 1:
|
|
117844
|
+
var value = /** @type {string} */ (reader.readString());
|
|
117845
|
+
msg.setSid(value);
|
|
117846
|
+
break;
|
|
117847
|
+
case 2:
|
|
117848
|
+
var value = /** @type {string} */ (reader.readString());
|
|
117849
|
+
msg.setName(value);
|
|
117850
|
+
break;
|
|
117578
117851
|
default:
|
|
117579
117852
|
reader.skipField();
|
|
117580
117853
|
break;
|
|
@@ -117604,6 +117877,92 @@ proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.serializeBinary =
|
|
|
117604
117877
|
*/
|
|
117605
117878
|
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.serializeBinaryToWriter = function(message, writer) {
|
|
117606
117879
|
var f = undefined;
|
|
117880
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
117881
|
+
if (f != null) {
|
|
117882
|
+
writer.writeString(
|
|
117883
|
+
1,
|
|
117884
|
+
f
|
|
117885
|
+
);
|
|
117886
|
+
}
|
|
117887
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
117888
|
+
if (f != null) {
|
|
117889
|
+
writer.writeString(
|
|
117890
|
+
2,
|
|
117891
|
+
f
|
|
117892
|
+
);
|
|
117893
|
+
}
|
|
117894
|
+
};
|
|
117895
|
+
|
|
117896
|
+
|
|
117897
|
+
/**
|
|
117898
|
+
* optional string sid = 1;
|
|
117899
|
+
* @return {string}
|
|
117900
|
+
*/
|
|
117901
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.getSid = function() {
|
|
117902
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
117903
|
+
};
|
|
117904
|
+
|
|
117905
|
+
|
|
117906
|
+
/**
|
|
117907
|
+
* @param {string} value
|
|
117908
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117909
|
+
*/
|
|
117910
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.setSid = function(value) {
|
|
117911
|
+
return jspb.Message.setField(this, 1, value);
|
|
117912
|
+
};
|
|
117913
|
+
|
|
117914
|
+
|
|
117915
|
+
/**
|
|
117916
|
+
* Clears the field making it undefined.
|
|
117917
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117918
|
+
*/
|
|
117919
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.clearSid = function() {
|
|
117920
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
117921
|
+
};
|
|
117922
|
+
|
|
117923
|
+
|
|
117924
|
+
/**
|
|
117925
|
+
* Returns whether this field is set.
|
|
117926
|
+
* @return {boolean}
|
|
117927
|
+
*/
|
|
117928
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.hasSid = function() {
|
|
117929
|
+
return jspb.Message.getField(this, 1) != null;
|
|
117930
|
+
};
|
|
117931
|
+
|
|
117932
|
+
|
|
117933
|
+
/**
|
|
117934
|
+
* optional string name = 2;
|
|
117935
|
+
* @return {string}
|
|
117936
|
+
*/
|
|
117937
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.getName = function() {
|
|
117938
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
117939
|
+
};
|
|
117940
|
+
|
|
117941
|
+
|
|
117942
|
+
/**
|
|
117943
|
+
* @param {string} value
|
|
117944
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117945
|
+
*/
|
|
117946
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.setName = function(value) {
|
|
117947
|
+
return jspb.Message.setField(this, 2, value);
|
|
117948
|
+
};
|
|
117949
|
+
|
|
117950
|
+
|
|
117951
|
+
/**
|
|
117952
|
+
* Clears the field making it undefined.
|
|
117953
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.GroupCoreFields} returns this
|
|
117954
|
+
*/
|
|
117955
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.clearName = function() {
|
|
117956
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
117957
|
+
};
|
|
117958
|
+
|
|
117959
|
+
|
|
117960
|
+
/**
|
|
117961
|
+
* Returns whether this field is set.
|
|
117962
|
+
* @return {boolean}
|
|
117963
|
+
*/
|
|
117964
|
+
proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.prototype.hasName = function() {
|
|
117965
|
+
return jspb.Message.getField(this, 2) != null;
|
|
117607
117966
|
};
|
|
117608
117967
|
|
|
117609
117968
|
|