@lansweeper/data-platform-outbound-grpc 0.3.32 → 0.3.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +18 -0
- package/gen-proto/outbound_pb.js +153 -0
- package/generated-go/outbound.pb.go +1752 -1705
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +3 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputerOrBuilder.class +0 -0
- 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/ActiveDirectoryUser$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +3 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.java +323 -138
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputerOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.java +286 -101
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.java +801 -616
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +538 -531
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.31-sources.jar → outbound-model-0.3.32-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.31.jar → outbound-model-0.3.32.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +3 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.31-sources.jar → outbound-service-0.3.32-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.31.jar → outbound-service-0.3.32.jar} +0 -0
|
@@ -16439,6 +16439,11 @@ export class ActiveDirectoryComputer extends jspb.Message {
|
|
|
16439
16439
|
getAdObject(): ActiveDirectoryObject | undefined;
|
|
16440
16440
|
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryComputer;
|
|
16441
16441
|
|
|
16442
|
+
hasAdDomain(): boolean;
|
|
16443
|
+
clearAdDomain(): void;
|
|
16444
|
+
getAdDomain(): ActiveDirectoryDomain | undefined;
|
|
16445
|
+
setAdDomain(value?: ActiveDirectoryDomain): ActiveDirectoryComputer;
|
|
16446
|
+
|
|
16442
16447
|
hasSamAccountName(): boolean;
|
|
16443
16448
|
clearSamAccountName(): void;
|
|
16444
16449
|
getSamAccountName(): string | undefined;
|
|
@@ -16522,6 +16527,7 @@ export class ActiveDirectoryComputer extends jspb.Message {
|
|
|
16522
16527
|
export namespace ActiveDirectoryComputer {
|
|
16523
16528
|
export type AsObject = {
|
|
16524
16529
|
adObject?: ActiveDirectoryObject.AsObject,
|
|
16530
|
+
adDomain?: ActiveDirectoryDomain.AsObject,
|
|
16525
16531
|
samAccountName?: string,
|
|
16526
16532
|
cn?: string,
|
|
16527
16533
|
ou?: string,
|
|
@@ -16581,6 +16587,11 @@ export class ActiveDirectoryUser extends jspb.Message {
|
|
|
16581
16587
|
getAdObject(): ActiveDirectoryObject | undefined;
|
|
16582
16588
|
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryUser;
|
|
16583
16589
|
|
|
16590
|
+
hasAdDomain(): boolean;
|
|
16591
|
+
clearAdDomain(): void;
|
|
16592
|
+
getAdDomain(): ActiveDirectoryDomain | undefined;
|
|
16593
|
+
setAdDomain(value?: ActiveDirectoryDomain): ActiveDirectoryUser;
|
|
16594
|
+
|
|
16584
16595
|
hasSamAccountName(): boolean;
|
|
16585
16596
|
clearSamAccountName(): void;
|
|
16586
16597
|
getSamAccountName(): string | undefined;
|
|
@@ -16880,6 +16891,7 @@ export class ActiveDirectoryUser extends jspb.Message {
|
|
|
16880
16891
|
export namespace ActiveDirectoryUser {
|
|
16881
16892
|
export type AsObject = {
|
|
16882
16893
|
adObject?: ActiveDirectoryObject.AsObject,
|
|
16894
|
+
adDomain?: ActiveDirectoryDomain.AsObject,
|
|
16883
16895
|
samAccountName?: string,
|
|
16884
16896
|
cn?: string,
|
|
16885
16897
|
ou?: string,
|
|
@@ -16947,6 +16959,11 @@ export class ActiveDirectoryGroup extends jspb.Message {
|
|
|
16947
16959
|
getAdObject(): ActiveDirectoryObject | undefined;
|
|
16948
16960
|
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryGroup;
|
|
16949
16961
|
|
|
16962
|
+
hasAdDomain(): boolean;
|
|
16963
|
+
clearAdDomain(): void;
|
|
16964
|
+
getAdDomain(): ActiveDirectoryDomain | undefined;
|
|
16965
|
+
setAdDomain(value?: ActiveDirectoryDomain): ActiveDirectoryGroup;
|
|
16966
|
+
|
|
16950
16967
|
hasSamAccountName(): boolean;
|
|
16951
16968
|
clearSamAccountName(): void;
|
|
16952
16969
|
getSamAccountName(): string | undefined;
|
|
@@ -17009,6 +17026,7 @@ export class ActiveDirectoryGroup extends jspb.Message {
|
|
|
17009
17026
|
export namespace ActiveDirectoryGroup {
|
|
17010
17027
|
export type AsObject = {
|
|
17011
17028
|
adObject?: ActiveDirectoryObject.AsObject,
|
|
17029
|
+
adDomain?: ActiveDirectoryDomain.AsObject,
|
|
17012
17030
|
samAccountName?: string,
|
|
17013
17031
|
cn?: string,
|
|
17014
17032
|
ou?: string,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -132752,6 +132752,7 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.prototype.toObject =
|
|
|
132752
132752
|
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.toObject = function(includeInstance, msg) {
|
|
132753
132753
|
var f, obj = {
|
|
132754
132754
|
adObject: (f = msg.getAdObject()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.toObject(includeInstance, f),
|
|
132755
|
+
adDomain: (f = msg.getAdDomain()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.toObject(includeInstance, f),
|
|
132755
132756
|
samAccountName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
132756
132757
|
cn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
132757
132758
|
ou: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
@@ -132807,6 +132808,11 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.deserializeBinaryFro
|
|
|
132807
132808
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.deserializeBinaryFromReader);
|
|
132808
132809
|
msg.setAdObject(value);
|
|
132809
132810
|
break;
|
|
132811
|
+
case 16:
|
|
132812
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain;
|
|
132813
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.deserializeBinaryFromReader);
|
|
132814
|
+
msg.setAdDomain(value);
|
|
132815
|
+
break;
|
|
132810
132816
|
case 2:
|
|
132811
132817
|
var value = /** @type {string} */ (reader.readString());
|
|
132812
132818
|
msg.setSamAccountName(value);
|
|
@@ -132900,6 +132906,14 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.serializeBinaryToWri
|
|
|
132900
132906
|
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.serializeBinaryToWriter
|
|
132901
132907
|
);
|
|
132902
132908
|
}
|
|
132909
|
+
f = message.getAdDomain();
|
|
132910
|
+
if (f != null) {
|
|
132911
|
+
writer.writeMessage(
|
|
132912
|
+
16,
|
|
132913
|
+
f,
|
|
132914
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.serializeBinaryToWriter
|
|
132915
|
+
);
|
|
132916
|
+
}
|
|
132903
132917
|
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
132904
132918
|
if (f != null) {
|
|
132905
132919
|
writer.writeString(
|
|
@@ -133038,6 +133052,43 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.prototype.hasAdObjec
|
|
|
133038
133052
|
};
|
|
133039
133053
|
|
|
133040
133054
|
|
|
133055
|
+
/**
|
|
133056
|
+
* optional ActiveDirectoryDomain ad_domain = 16;
|
|
133057
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain}
|
|
133058
|
+
*/
|
|
133059
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.prototype.getAdDomain = function() {
|
|
133060
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain} */ (
|
|
133061
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain, 16));
|
|
133062
|
+
};
|
|
133063
|
+
|
|
133064
|
+
|
|
133065
|
+
/**
|
|
133066
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain|undefined} value
|
|
133067
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer} returns this
|
|
133068
|
+
*/
|
|
133069
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.prototype.setAdDomain = function(value) {
|
|
133070
|
+
return jspb.Message.setWrapperField(this, 16, value);
|
|
133071
|
+
};
|
|
133072
|
+
|
|
133073
|
+
|
|
133074
|
+
/**
|
|
133075
|
+
* Clears the message field making it undefined.
|
|
133076
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer} returns this
|
|
133077
|
+
*/
|
|
133078
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.prototype.clearAdDomain = function() {
|
|
133079
|
+
return this.setAdDomain(undefined);
|
|
133080
|
+
};
|
|
133081
|
+
|
|
133082
|
+
|
|
133083
|
+
/**
|
|
133084
|
+
* Returns whether this field is set.
|
|
133085
|
+
* @return {boolean}
|
|
133086
|
+
*/
|
|
133087
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.prototype.hasAdDomain = function() {
|
|
133088
|
+
return jspb.Message.getField(this, 16) != null;
|
|
133089
|
+
};
|
|
133090
|
+
|
|
133091
|
+
|
|
133041
133092
|
/**
|
|
133042
133093
|
* optional string sam_account_name = 2;
|
|
133043
133094
|
* @return {string}
|
|
@@ -133829,6 +133880,7 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.toObject = fun
|
|
|
133829
133880
|
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.toObject = function(includeInstance, msg) {
|
|
133830
133881
|
var f, obj = {
|
|
133831
133882
|
adObject: (f = msg.getAdObject()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.toObject(includeInstance, f),
|
|
133883
|
+
adDomain: (f = msg.getAdDomain()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.toObject(includeInstance, f),
|
|
133832
133884
|
samAccountName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
133833
133885
|
cn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
133834
133886
|
ou: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
@@ -133927,6 +133979,11 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.deserializeBinaryFromRea
|
|
|
133927
133979
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.deserializeBinaryFromReader);
|
|
133928
133980
|
msg.setAdObject(value);
|
|
133929
133981
|
break;
|
|
133982
|
+
case 59:
|
|
133983
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain;
|
|
133984
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.deserializeBinaryFromReader);
|
|
133985
|
+
msg.setAdDomain(value);
|
|
133986
|
+
break;
|
|
133930
133987
|
case 2:
|
|
133931
133988
|
var value = /** @type {string} */ (reader.readString());
|
|
133932
133989
|
msg.setSamAccountName(value);
|
|
@@ -134199,6 +134256,14 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.serializeBinaryToWriter
|
|
|
134199
134256
|
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.serializeBinaryToWriter
|
|
134200
134257
|
);
|
|
134201
134258
|
}
|
|
134259
|
+
f = message.getAdDomain();
|
|
134260
|
+
if (f != null) {
|
|
134261
|
+
writer.writeMessage(
|
|
134262
|
+
59,
|
|
134263
|
+
f,
|
|
134264
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.serializeBinaryToWriter
|
|
134265
|
+
);
|
|
134266
|
+
}
|
|
134202
134267
|
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
134203
134268
|
if (f != null) {
|
|
134204
134269
|
writer.writeString(
|
|
@@ -134645,6 +134710,43 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.hasAdObject =
|
|
|
134645
134710
|
};
|
|
134646
134711
|
|
|
134647
134712
|
|
|
134713
|
+
/**
|
|
134714
|
+
* optional ActiveDirectoryDomain ad_domain = 59;
|
|
134715
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain}
|
|
134716
|
+
*/
|
|
134717
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.getAdDomain = function() {
|
|
134718
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain} */ (
|
|
134719
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain, 59));
|
|
134720
|
+
};
|
|
134721
|
+
|
|
134722
|
+
|
|
134723
|
+
/**
|
|
134724
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain|undefined} value
|
|
134725
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser} returns this
|
|
134726
|
+
*/
|
|
134727
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.setAdDomain = function(value) {
|
|
134728
|
+
return jspb.Message.setWrapperField(this, 59, value);
|
|
134729
|
+
};
|
|
134730
|
+
|
|
134731
|
+
|
|
134732
|
+
/**
|
|
134733
|
+
* Clears the message field making it undefined.
|
|
134734
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser} returns this
|
|
134735
|
+
*/
|
|
134736
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.clearAdDomain = function() {
|
|
134737
|
+
return this.setAdDomain(undefined);
|
|
134738
|
+
};
|
|
134739
|
+
|
|
134740
|
+
|
|
134741
|
+
/**
|
|
134742
|
+
* Returns whether this field is set.
|
|
134743
|
+
* @return {boolean}
|
|
134744
|
+
*/
|
|
134745
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.prototype.hasAdDomain = function() {
|
|
134746
|
+
return jspb.Message.getField(this, 59) != null;
|
|
134747
|
+
};
|
|
134748
|
+
|
|
134749
|
+
|
|
134648
134750
|
/**
|
|
134649
134751
|
* optional string sam_account_name = 2;
|
|
134650
134752
|
* @return {string}
|
|
@@ -136769,6 +136871,7 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.prototype.toObject = fu
|
|
|
136769
136871
|
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.toObject = function(includeInstance, msg) {
|
|
136770
136872
|
var f, obj = {
|
|
136771
136873
|
adObject: (f = msg.getAdObject()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.toObject(includeInstance, f),
|
|
136874
|
+
adDomain: (f = msg.getAdDomain()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.toObject(includeInstance, f),
|
|
136772
136875
|
samAccountName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
136773
136876
|
cn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
136774
136877
|
ou: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
@@ -136820,6 +136923,11 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.deserializeBinaryFromRe
|
|
|
136820
136923
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.deserializeBinaryFromReader);
|
|
136821
136924
|
msg.setAdObject(value);
|
|
136822
136925
|
break;
|
|
136926
|
+
case 13:
|
|
136927
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain;
|
|
136928
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.deserializeBinaryFromReader);
|
|
136929
|
+
msg.setAdDomain(value);
|
|
136930
|
+
break;
|
|
136823
136931
|
case 2:
|
|
136824
136932
|
var value = /** @type {string} */ (reader.readString());
|
|
136825
136933
|
msg.setSamAccountName(value);
|
|
@@ -136898,6 +137006,14 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.serializeBinaryToWriter
|
|
|
136898
137006
|
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.serializeBinaryToWriter
|
|
136899
137007
|
);
|
|
136900
137008
|
}
|
|
137009
|
+
f = message.getAdDomain();
|
|
137010
|
+
if (f != null) {
|
|
137011
|
+
writer.writeMessage(
|
|
137012
|
+
13,
|
|
137013
|
+
f,
|
|
137014
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.serializeBinaryToWriter
|
|
137015
|
+
);
|
|
137016
|
+
}
|
|
136901
137017
|
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
136902
137018
|
if (f != null) {
|
|
136903
137019
|
writer.writeString(
|
|
@@ -137009,6 +137125,43 @@ proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.prototype.hasAdObject =
|
|
|
137009
137125
|
};
|
|
137010
137126
|
|
|
137011
137127
|
|
|
137128
|
+
/**
|
|
137129
|
+
* optional ActiveDirectoryDomain ad_domain = 13;
|
|
137130
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain}
|
|
137131
|
+
*/
|
|
137132
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.prototype.getAdDomain = function() {
|
|
137133
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain} */ (
|
|
137134
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain, 13));
|
|
137135
|
+
};
|
|
137136
|
+
|
|
137137
|
+
|
|
137138
|
+
/**
|
|
137139
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain|undefined} value
|
|
137140
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup} returns this
|
|
137141
|
+
*/
|
|
137142
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.prototype.setAdDomain = function(value) {
|
|
137143
|
+
return jspb.Message.setWrapperField(this, 13, value);
|
|
137144
|
+
};
|
|
137145
|
+
|
|
137146
|
+
|
|
137147
|
+
/**
|
|
137148
|
+
* Clears the message field making it undefined.
|
|
137149
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup} returns this
|
|
137150
|
+
*/
|
|
137151
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.prototype.clearAdDomain = function() {
|
|
137152
|
+
return this.setAdDomain(undefined);
|
|
137153
|
+
};
|
|
137154
|
+
|
|
137155
|
+
|
|
137156
|
+
/**
|
|
137157
|
+
* Returns whether this field is set.
|
|
137158
|
+
* @return {boolean}
|
|
137159
|
+
*/
|
|
137160
|
+
proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.prototype.hasAdDomain = function() {
|
|
137161
|
+
return jspb.Message.getField(this, 13) != null;
|
|
137162
|
+
};
|
|
137163
|
+
|
|
137164
|
+
|
|
137012
137165
|
/**
|
|
137013
137166
|
* optional string sam_account_name = 2;
|
|
137014
137167
|
* @return {string}
|