@lansweeper/data-platform-outbound-grpc 0.3.5 → 0.3.7
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 +63 -5
- package/gen-proto/outbound_pb.js +480 -22
- package/generated-go/outbound.pb.go +10115 -9946
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +15 -1
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.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/Site$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder$UnlinkedInstallationsConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$UnlinkedInstallationsDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SiteOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +15 -1
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.java +149 -52
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.java +10 -6
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2948 -2909
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +900 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +106 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.java +794 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.java +40 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +6 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.3.4-sources.jar → outbound-model-0.3.6-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.4.jar → outbound-model-0.3.6.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +15 -1
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.4-sources.jar → outbound-service-0.3.6-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.4.jar → outbound-service-0.3.6.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -81,6 +81,19 @@ message Site {
|
|
|
81
81
|
optional bool needs_reconcile = 7;
|
|
82
82
|
optional bool raw_checkpoint_enabled = 8;
|
|
83
83
|
optional int64 reconciliation_refresh_frequency = 9;
|
|
84
|
+
optional int32 user_size = 10;
|
|
85
|
+
optional int32 group_size = 11;
|
|
86
|
+
optional google.protobuf.Timestamp deletion_request = 12;
|
|
87
|
+
optional google.protobuf.Timestamp deletion_time = 13;
|
|
88
|
+
map<string, UnlinkedInstallationMetadata> unlinked_installations = 14; // Unlinked installations, where the key is the installation id and the value is the metadata
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
Describes metadata relative to unlinked installations
|
|
93
|
+
*/
|
|
94
|
+
message UnlinkedInstallationMetadata {
|
|
95
|
+
optional google.protobuf.Timestamp deletion_request = 12;
|
|
96
|
+
optional google.protobuf.Timestamp deletion_time = 13;
|
|
84
97
|
}
|
|
85
98
|
|
|
86
99
|
message EntityFilter {
|
|
@@ -3547,7 +3560,8 @@ message ActiveDirectoryGroup {
|
|
|
3547
3560
|
optional string ou = 4;
|
|
3548
3561
|
optional string description = 5;
|
|
3549
3562
|
optional string comment = 6;
|
|
3550
|
-
|
|
3563
|
+
reserved 7;
|
|
3564
|
+
optional MappedValue type = 12;
|
|
3551
3565
|
optional string email = 8;
|
|
3552
3566
|
|
|
3553
3567
|
optional string managed_by_user_oid = 9;
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$Builder.class
CHANGED
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.class
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$1.class
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -81,6 +81,19 @@ message Site {
|
|
|
81
81
|
optional bool needs_reconcile = 7;
|
|
82
82
|
optional bool raw_checkpoint_enabled = 8;
|
|
83
83
|
optional int64 reconciliation_refresh_frequency = 9;
|
|
84
|
+
optional int32 user_size = 10;
|
|
85
|
+
optional int32 group_size = 11;
|
|
86
|
+
optional google.protobuf.Timestamp deletion_request = 12;
|
|
87
|
+
optional google.protobuf.Timestamp deletion_time = 13;
|
|
88
|
+
map<string, UnlinkedInstallationMetadata> unlinked_installations = 14; // Unlinked installations, where the key is the installation id and the value is the metadata
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
Describes metadata relative to unlinked installations
|
|
93
|
+
*/
|
|
94
|
+
message UnlinkedInstallationMetadata {
|
|
95
|
+
optional google.protobuf.Timestamp deletion_request = 12;
|
|
96
|
+
optional google.protobuf.Timestamp deletion_time = 13;
|
|
84
97
|
}
|
|
85
98
|
|
|
86
99
|
message EntityFilter {
|
|
@@ -3547,7 +3560,8 @@ message ActiveDirectoryGroup {
|
|
|
3547
3560
|
optional string ou = 4;
|
|
3548
3561
|
optional string description = 5;
|
|
3549
3562
|
optional string comment = 6;
|
|
3550
|
-
|
|
3563
|
+
reserved 7;
|
|
3564
|
+
optional MappedValue type = 12;
|
|
3551
3565
|
optional string email = 8;
|
|
3552
3566
|
|
|
3553
3567
|
optional string managed_by_user_oid = 9;
|
|
@@ -316,23 +316,30 @@ private static final long serialVersionUID = 0L;
|
|
|
316
316
|
}
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
public static final int
|
|
320
|
-
private
|
|
319
|
+
public static final int TYPE_FIELD_NUMBER = 12;
|
|
320
|
+
private com.lansweeper.dp.outbound.v1.MappedValue type_;
|
|
321
321
|
/**
|
|
322
|
-
* <code>optional
|
|
323
|
-
* @return Whether the
|
|
322
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
323
|
+
* @return Whether the type field is set.
|
|
324
324
|
*/
|
|
325
325
|
@java.lang.Override
|
|
326
|
-
public boolean
|
|
326
|
+
public boolean hasType() {
|
|
327
327
|
return ((bitField0_ & 0x00000040) != 0);
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* <code>optional
|
|
331
|
-
* @return The
|
|
330
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
331
|
+
* @return The type.
|
|
332
332
|
*/
|
|
333
333
|
@java.lang.Override
|
|
334
|
-
public
|
|
335
|
-
return
|
|
334
|
+
public com.lansweeper.dp.outbound.v1.MappedValue getType() {
|
|
335
|
+
return type_ == null ? com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance() : type_;
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
339
|
+
*/
|
|
340
|
+
@java.lang.Override
|
|
341
|
+
public com.lansweeper.dp.outbound.v1.MappedValueOrBuilder getTypeOrBuilder() {
|
|
342
|
+
return type_ == null ? com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance() : type_;
|
|
336
343
|
}
|
|
337
344
|
|
|
338
345
|
public static final int EMAIL_FIELD_NUMBER = 8;
|
|
@@ -545,9 +552,6 @@ private static final long serialVersionUID = 0L;
|
|
|
545
552
|
if (((bitField0_ & 0x00000020) != 0)) {
|
|
546
553
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, comment_);
|
|
547
554
|
}
|
|
548
|
-
if (((bitField0_ & 0x00000040) != 0)) {
|
|
549
|
-
output.writeInt32(7, groupType_);
|
|
550
|
-
}
|
|
551
555
|
if (((bitField0_ & 0x00000080) != 0)) {
|
|
552
556
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 8, email_);
|
|
553
557
|
}
|
|
@@ -560,6 +564,9 @@ private static final long serialVersionUID = 0L;
|
|
|
560
564
|
for (int i = 0; i < memberOfOid_.size(); i++) {
|
|
561
565
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 11, memberOfOid_.getRaw(i));
|
|
562
566
|
}
|
|
567
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
568
|
+
output.writeMessage(12, getType());
|
|
569
|
+
}
|
|
563
570
|
getUnknownFields().writeTo(output);
|
|
564
571
|
}
|
|
565
572
|
|
|
@@ -588,10 +595,6 @@ private static final long serialVersionUID = 0L;
|
|
|
588
595
|
if (((bitField0_ & 0x00000020) != 0)) {
|
|
589
596
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, comment_);
|
|
590
597
|
}
|
|
591
|
-
if (((bitField0_ & 0x00000040) != 0)) {
|
|
592
|
-
size += com.google.protobuf.CodedOutputStream
|
|
593
|
-
.computeInt32Size(7, groupType_);
|
|
594
|
-
}
|
|
595
598
|
if (((bitField0_ & 0x00000080) != 0)) {
|
|
596
599
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, email_);
|
|
597
600
|
}
|
|
@@ -609,6 +612,10 @@ private static final long serialVersionUID = 0L;
|
|
|
609
612
|
size += dataSize;
|
|
610
613
|
size += 1 * getMemberOfOidList().size();
|
|
611
614
|
}
|
|
615
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
616
|
+
size += com.google.protobuf.CodedOutputStream
|
|
617
|
+
.computeMessageSize(12, getType());
|
|
618
|
+
}
|
|
612
619
|
size += getUnknownFields().getSerializedSize();
|
|
613
620
|
memoizedSize = size;
|
|
614
621
|
return size;
|
|
@@ -654,10 +661,10 @@ private static final long serialVersionUID = 0L;
|
|
|
654
661
|
if (!getComment()
|
|
655
662
|
.equals(other.getComment())) return false;
|
|
656
663
|
}
|
|
657
|
-
if (
|
|
658
|
-
if (
|
|
659
|
-
if (
|
|
660
|
-
|
|
664
|
+
if (hasType() != other.hasType()) return false;
|
|
665
|
+
if (hasType()) {
|
|
666
|
+
if (!getType()
|
|
667
|
+
.equals(other.getType())) return false;
|
|
661
668
|
}
|
|
662
669
|
if (hasEmail() != other.hasEmail()) return false;
|
|
663
670
|
if (hasEmail()) {
|
|
@@ -711,9 +718,9 @@ private static final long serialVersionUID = 0L;
|
|
|
711
718
|
hash = (37 * hash) + COMMENT_FIELD_NUMBER;
|
|
712
719
|
hash = (53 * hash) + getComment().hashCode();
|
|
713
720
|
}
|
|
714
|
-
if (
|
|
715
|
-
hash = (37 * hash) +
|
|
716
|
-
hash = (53 * hash) +
|
|
721
|
+
if (hasType()) {
|
|
722
|
+
hash = (37 * hash) + TYPE_FIELD_NUMBER;
|
|
723
|
+
hash = (53 * hash) + getType().hashCode();
|
|
717
724
|
}
|
|
718
725
|
if (hasEmail()) {
|
|
719
726
|
hash = (37 * hash) + EMAIL_FIELD_NUMBER;
|
|
@@ -867,6 +874,7 @@ private static final long serialVersionUID = 0L;
|
|
|
867
874
|
if (com.google.protobuf.GeneratedMessageV3
|
|
868
875
|
.alwaysUseFieldBuilders) {
|
|
869
876
|
getAdObjectFieldBuilder();
|
|
877
|
+
getTypeFieldBuilder();
|
|
870
878
|
}
|
|
871
879
|
}
|
|
872
880
|
@java.lang.Override
|
|
@@ -883,7 +891,11 @@ private static final long serialVersionUID = 0L;
|
|
|
883
891
|
ou_ = "";
|
|
884
892
|
description_ = "";
|
|
885
893
|
comment_ = "";
|
|
886
|
-
|
|
894
|
+
type_ = null;
|
|
895
|
+
if (typeBuilder_ != null) {
|
|
896
|
+
typeBuilder_.dispose();
|
|
897
|
+
typeBuilder_ = null;
|
|
898
|
+
}
|
|
887
899
|
email_ = "";
|
|
888
900
|
managedByUserOid_ = "";
|
|
889
901
|
managedByGroupOid_ = "";
|
|
@@ -950,7 +962,9 @@ private static final long serialVersionUID = 0L;
|
|
|
950
962
|
to_bitField0_ |= 0x00000020;
|
|
951
963
|
}
|
|
952
964
|
if (((from_bitField0_ & 0x00000040) != 0)) {
|
|
953
|
-
result.
|
|
965
|
+
result.type_ = typeBuilder_ == null
|
|
966
|
+
? type_
|
|
967
|
+
: typeBuilder_.build();
|
|
954
968
|
to_bitField0_ |= 0x00000040;
|
|
955
969
|
}
|
|
956
970
|
if (((from_bitField0_ & 0x00000080) != 0)) {
|
|
@@ -1044,8 +1058,8 @@ private static final long serialVersionUID = 0L;
|
|
|
1044
1058
|
bitField0_ |= 0x00000020;
|
|
1045
1059
|
onChanged();
|
|
1046
1060
|
}
|
|
1047
|
-
if (other.
|
|
1048
|
-
|
|
1061
|
+
if (other.hasType()) {
|
|
1062
|
+
mergeType(other.getType());
|
|
1049
1063
|
}
|
|
1050
1064
|
if (other.hasEmail()) {
|
|
1051
1065
|
email_ = other.email_;
|
|
@@ -1130,11 +1144,6 @@ private static final long serialVersionUID = 0L;
|
|
|
1130
1144
|
bitField0_ |= 0x00000020;
|
|
1131
1145
|
break;
|
|
1132
1146
|
} // case 50
|
|
1133
|
-
case 56: {
|
|
1134
|
-
groupType_ = input.readInt32();
|
|
1135
|
-
bitField0_ |= 0x00000040;
|
|
1136
|
-
break;
|
|
1137
|
-
} // case 56
|
|
1138
1147
|
case 66: {
|
|
1139
1148
|
email_ = input.readStringRequireUtf8();
|
|
1140
1149
|
bitField0_ |= 0x00000080;
|
|
@@ -1156,6 +1165,13 @@ private static final long serialVersionUID = 0L;
|
|
|
1156
1165
|
memberOfOid_.add(s);
|
|
1157
1166
|
break;
|
|
1158
1167
|
} // case 90
|
|
1168
|
+
case 98: {
|
|
1169
|
+
input.readMessage(
|
|
1170
|
+
getTypeFieldBuilder().getBuilder(),
|
|
1171
|
+
extensionRegistry);
|
|
1172
|
+
bitField0_ |= 0x00000040;
|
|
1173
|
+
break;
|
|
1174
|
+
} // case 98
|
|
1159
1175
|
default: {
|
|
1160
1176
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
1161
1177
|
done = true; // was an endgroup tag
|
|
@@ -1689,45 +1705,126 @@ private static final long serialVersionUID = 0L;
|
|
|
1689
1705
|
return this;
|
|
1690
1706
|
}
|
|
1691
1707
|
|
|
1692
|
-
private
|
|
1708
|
+
private com.lansweeper.dp.outbound.v1.MappedValue type_;
|
|
1709
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
1710
|
+
com.lansweeper.dp.outbound.v1.MappedValue, com.lansweeper.dp.outbound.v1.MappedValue.Builder, com.lansweeper.dp.outbound.v1.MappedValueOrBuilder> typeBuilder_;
|
|
1693
1711
|
/**
|
|
1694
|
-
* <code>optional
|
|
1695
|
-
* @return Whether the
|
|
1712
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1713
|
+
* @return Whether the type field is set.
|
|
1696
1714
|
*/
|
|
1697
|
-
|
|
1698
|
-
public boolean hasGroupType() {
|
|
1715
|
+
public boolean hasType() {
|
|
1699
1716
|
return ((bitField0_ & 0x00000040) != 0);
|
|
1700
1717
|
}
|
|
1701
1718
|
/**
|
|
1702
|
-
* <code>optional
|
|
1703
|
-
* @return The
|
|
1719
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1720
|
+
* @return The type.
|
|
1704
1721
|
*/
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1722
|
+
public com.lansweeper.dp.outbound.v1.MappedValue getType() {
|
|
1723
|
+
if (typeBuilder_ == null) {
|
|
1724
|
+
return type_ == null ? com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance() : type_;
|
|
1725
|
+
} else {
|
|
1726
|
+
return typeBuilder_.getMessage();
|
|
1727
|
+
}
|
|
1708
1728
|
}
|
|
1709
1729
|
/**
|
|
1710
|
-
* <code>optional
|
|
1711
|
-
* @param value The groupType to set.
|
|
1712
|
-
* @return This builder for chaining.
|
|
1730
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1713
1731
|
*/
|
|
1714
|
-
public Builder
|
|
1715
|
-
|
|
1716
|
-
|
|
1732
|
+
public Builder setType(com.lansweeper.dp.outbound.v1.MappedValue value) {
|
|
1733
|
+
if (typeBuilder_ == null) {
|
|
1734
|
+
if (value == null) {
|
|
1735
|
+
throw new NullPointerException();
|
|
1736
|
+
}
|
|
1737
|
+
type_ = value;
|
|
1738
|
+
} else {
|
|
1739
|
+
typeBuilder_.setMessage(value);
|
|
1740
|
+
}
|
|
1717
1741
|
bitField0_ |= 0x00000040;
|
|
1718
1742
|
onChanged();
|
|
1719
1743
|
return this;
|
|
1720
1744
|
}
|
|
1721
1745
|
/**
|
|
1722
|
-
* <code>optional
|
|
1723
|
-
|
|
1746
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1747
|
+
*/
|
|
1748
|
+
public Builder setType(
|
|
1749
|
+
com.lansweeper.dp.outbound.v1.MappedValue.Builder builderForValue) {
|
|
1750
|
+
if (typeBuilder_ == null) {
|
|
1751
|
+
type_ = builderForValue.build();
|
|
1752
|
+
} else {
|
|
1753
|
+
typeBuilder_.setMessage(builderForValue.build());
|
|
1754
|
+
}
|
|
1755
|
+
bitField0_ |= 0x00000040;
|
|
1756
|
+
onChanged();
|
|
1757
|
+
return this;
|
|
1758
|
+
}
|
|
1759
|
+
/**
|
|
1760
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1761
|
+
*/
|
|
1762
|
+
public Builder mergeType(com.lansweeper.dp.outbound.v1.MappedValue value) {
|
|
1763
|
+
if (typeBuilder_ == null) {
|
|
1764
|
+
if (((bitField0_ & 0x00000040) != 0) &&
|
|
1765
|
+
type_ != null &&
|
|
1766
|
+
type_ != com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance()) {
|
|
1767
|
+
getTypeBuilder().mergeFrom(value);
|
|
1768
|
+
} else {
|
|
1769
|
+
type_ = value;
|
|
1770
|
+
}
|
|
1771
|
+
} else {
|
|
1772
|
+
typeBuilder_.mergeFrom(value);
|
|
1773
|
+
}
|
|
1774
|
+
if (type_ != null) {
|
|
1775
|
+
bitField0_ |= 0x00000040;
|
|
1776
|
+
onChanged();
|
|
1777
|
+
}
|
|
1778
|
+
return this;
|
|
1779
|
+
}
|
|
1780
|
+
/**
|
|
1781
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1724
1782
|
*/
|
|
1725
|
-
public Builder
|
|
1783
|
+
public Builder clearType() {
|
|
1726
1784
|
bitField0_ = (bitField0_ & ~0x00000040);
|
|
1727
|
-
|
|
1785
|
+
type_ = null;
|
|
1786
|
+
if (typeBuilder_ != null) {
|
|
1787
|
+
typeBuilder_.dispose();
|
|
1788
|
+
typeBuilder_ = null;
|
|
1789
|
+
}
|
|
1728
1790
|
onChanged();
|
|
1729
1791
|
return this;
|
|
1730
1792
|
}
|
|
1793
|
+
/**
|
|
1794
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1795
|
+
*/
|
|
1796
|
+
public com.lansweeper.dp.outbound.v1.MappedValue.Builder getTypeBuilder() {
|
|
1797
|
+
bitField0_ |= 0x00000040;
|
|
1798
|
+
onChanged();
|
|
1799
|
+
return getTypeFieldBuilder().getBuilder();
|
|
1800
|
+
}
|
|
1801
|
+
/**
|
|
1802
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1803
|
+
*/
|
|
1804
|
+
public com.lansweeper.dp.outbound.v1.MappedValueOrBuilder getTypeOrBuilder() {
|
|
1805
|
+
if (typeBuilder_ != null) {
|
|
1806
|
+
return typeBuilder_.getMessageOrBuilder();
|
|
1807
|
+
} else {
|
|
1808
|
+
return type_ == null ?
|
|
1809
|
+
com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance() : type_;
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
/**
|
|
1813
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
1814
|
+
*/
|
|
1815
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
1816
|
+
com.lansweeper.dp.outbound.v1.MappedValue, com.lansweeper.dp.outbound.v1.MappedValue.Builder, com.lansweeper.dp.outbound.v1.MappedValueOrBuilder>
|
|
1817
|
+
getTypeFieldBuilder() {
|
|
1818
|
+
if (typeBuilder_ == null) {
|
|
1819
|
+
typeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
1820
|
+
com.lansweeper.dp.outbound.v1.MappedValue, com.lansweeper.dp.outbound.v1.MappedValue.Builder, com.lansweeper.dp.outbound.v1.MappedValueOrBuilder>(
|
|
1821
|
+
getType(),
|
|
1822
|
+
getParentForChildren(),
|
|
1823
|
+
isClean());
|
|
1824
|
+
type_ = null;
|
|
1825
|
+
}
|
|
1826
|
+
return typeBuilder_;
|
|
1827
|
+
}
|
|
1731
1828
|
|
|
1732
1829
|
private java.lang.Object email_ = "";
|
|
1733
1830
|
/**
|
|
@@ -109,15 +109,19 @@ public interface ActiveDirectoryGroupOrBuilder extends
|
|
|
109
109
|
getCommentBytes();
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
|
-
* <code>optional
|
|
113
|
-
* @return Whether the
|
|
112
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
113
|
+
* @return Whether the type field is set.
|
|
114
114
|
*/
|
|
115
|
-
boolean
|
|
115
|
+
boolean hasType();
|
|
116
116
|
/**
|
|
117
|
-
* <code>optional
|
|
118
|
-
* @return The
|
|
117
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
118
|
+
* @return The type.
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
com.lansweeper.dp.outbound.v1.MappedValue getType();
|
|
121
|
+
/**
|
|
122
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.MappedValue type = 12;</code>
|
|
123
|
+
*/
|
|
124
|
+
com.lansweeper.dp.outbound.v1.MappedValueOrBuilder getTypeOrBuilder();
|
|
121
125
|
|
|
122
126
|
/**
|
|
123
127
|
* <code>optional string email = 8;</code>
|