@lansweeper/data-platform-outbound-grpc 0.1.138 → 0.1.140
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 +979 -0
- package/gen-proto/outbound_pb.js +8001 -4
- package/generated-go/outbound.pb.go +10449 -8215
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +233 -2
|
@@ -481,6 +481,16 @@ export class Entity extends jspb.Message {
|
|
|
481
481
|
getAsset(): Asset | undefined;
|
|
482
482
|
setAsset(value?: Asset): Entity;
|
|
483
483
|
|
|
484
|
+
hasUser(): boolean;
|
|
485
|
+
clearUser(): void;
|
|
486
|
+
getUser(): User | undefined;
|
|
487
|
+
setUser(value?: User): Entity;
|
|
488
|
+
|
|
489
|
+
hasGroup(): boolean;
|
|
490
|
+
clearGroup(): void;
|
|
491
|
+
getGroup(): Group | undefined;
|
|
492
|
+
setGroup(value?: Group): Entity;
|
|
493
|
+
|
|
484
494
|
getEntityCase(): Entity.EntityCase;
|
|
485
495
|
|
|
486
496
|
serializeBinary(): Uint8Array;
|
|
@@ -496,11 +506,15 @@ export class Entity extends jspb.Message {
|
|
|
496
506
|
export namespace Entity {
|
|
497
507
|
export type AsObject = {
|
|
498
508
|
asset?: Asset.AsObject,
|
|
509
|
+
user?: User.AsObject,
|
|
510
|
+
group?: Group.AsObject,
|
|
499
511
|
}
|
|
500
512
|
|
|
501
513
|
export enum EntityCase {
|
|
502
514
|
ENTITY_NOT_SET = 0,
|
|
503
515
|
ASSET = 1,
|
|
516
|
+
USER = 2,
|
|
517
|
+
GROUP = 3,
|
|
504
518
|
}
|
|
505
519
|
|
|
506
520
|
}
|
|
@@ -631,6 +645,11 @@ export class Asset extends jspb.Message {
|
|
|
631
645
|
getServerGroup(): ServerGroup | undefined;
|
|
632
646
|
setServerGroup(value?: ServerGroup): Asset;
|
|
633
647
|
|
|
648
|
+
hasAdComputer(): boolean;
|
|
649
|
+
clearAdComputer(): void;
|
|
650
|
+
getAdComputer(): ActiveDirectoryComputer | undefined;
|
|
651
|
+
setAdComputer(value?: ActiveDirectoryComputer): Asset;
|
|
652
|
+
|
|
634
653
|
hasPrinter(): boolean;
|
|
635
654
|
clearPrinter(): void;
|
|
636
655
|
getPrinter(): Printer | undefined;
|
|
@@ -693,6 +712,7 @@ export namespace Asset {
|
|
|
693
712
|
warrantyInfoList: Array<WarrantyInfo.AsObject>,
|
|
694
713
|
computer?: Computer.AsObject,
|
|
695
714
|
serverGroup?: ServerGroup.AsObject,
|
|
715
|
+
adComputer?: ActiveDirectoryComputer.AsObject,
|
|
696
716
|
printer?: Printer.AsObject,
|
|
697
717
|
ups?: Ups.AsObject,
|
|
698
718
|
otModule?: OtModule.AsObject,
|
|
@@ -9803,6 +9823,41 @@ export class ComputerConnectedUsbDeviceInfo extends jspb.Message {
|
|
|
9803
9823
|
getManufacturer(): string;
|
|
9804
9824
|
setManufacturer(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9805
9825
|
|
|
9826
|
+
hasPnpDeviceId(): boolean;
|
|
9827
|
+
clearPnpDeviceId(): void;
|
|
9828
|
+
getPnpDeviceId(): string | undefined;
|
|
9829
|
+
setPnpDeviceId(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9830
|
+
|
|
9831
|
+
hasPnpClass(): boolean;
|
|
9832
|
+
clearPnpClass(): void;
|
|
9833
|
+
getPnpClass(): string | undefined;
|
|
9834
|
+
setPnpClass(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9835
|
+
|
|
9836
|
+
hasStatus(): boolean;
|
|
9837
|
+
clearStatus(): void;
|
|
9838
|
+
getStatus(): string | undefined;
|
|
9839
|
+
setStatus(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9840
|
+
|
|
9841
|
+
hasService(): boolean;
|
|
9842
|
+
clearService(): void;
|
|
9843
|
+
getService(): string | undefined;
|
|
9844
|
+
setService(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9845
|
+
|
|
9846
|
+
hasCaption(): boolean;
|
|
9847
|
+
clearCaption(): void;
|
|
9848
|
+
getCaption(): string | undefined;
|
|
9849
|
+
setCaption(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9850
|
+
|
|
9851
|
+
hasDescription(): boolean;
|
|
9852
|
+
clearDescription(): void;
|
|
9853
|
+
getDescription(): string | undefined;
|
|
9854
|
+
setDescription(value: string): ComputerConnectedUsbDeviceInfo;
|
|
9855
|
+
|
|
9856
|
+
hasPresent(): boolean;
|
|
9857
|
+
clearPresent(): void;
|
|
9858
|
+
getPresent(): boolean | undefined;
|
|
9859
|
+
setPresent(value: boolean): ComputerConnectedUsbDeviceInfo;
|
|
9860
|
+
|
|
9806
9861
|
serializeBinary(): Uint8Array;
|
|
9807
9862
|
toObject(includeInstance?: boolean): ComputerConnectedUsbDeviceInfo.AsObject;
|
|
9808
9863
|
static toObject(includeInstance: boolean, msg: ComputerConnectedUsbDeviceInfo): ComputerConnectedUsbDeviceInfo.AsObject;
|
|
@@ -9818,6 +9873,13 @@ export namespace ComputerConnectedUsbDeviceInfo {
|
|
|
9818
9873
|
deviceKey: string,
|
|
9819
9874
|
deviceValue: string,
|
|
9820
9875
|
manufacturer: string,
|
|
9876
|
+
pnpDeviceId?: string,
|
|
9877
|
+
pnpClass?: string,
|
|
9878
|
+
status?: string,
|
|
9879
|
+
service?: string,
|
|
9880
|
+
caption?: string,
|
|
9881
|
+
description?: string,
|
|
9882
|
+
present?: boolean,
|
|
9821
9883
|
}
|
|
9822
9884
|
}
|
|
9823
9885
|
|
|
@@ -14328,6 +14390,923 @@ export namespace Ups {
|
|
|
14328
14390
|
}
|
|
14329
14391
|
}
|
|
14330
14392
|
|
|
14393
|
+
export class User extends jspb.Message {
|
|
14394
|
+
|
|
14395
|
+
hasId(): boolean;
|
|
14396
|
+
clearId(): void;
|
|
14397
|
+
getId(): EntityPath | undefined;
|
|
14398
|
+
setId(value?: EntityPath): User;
|
|
14399
|
+
|
|
14400
|
+
hasLastSynced(): boolean;
|
|
14401
|
+
clearLastSynced(): void;
|
|
14402
|
+
getLastSynced(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14403
|
+
setLastSynced(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
14404
|
+
|
|
14405
|
+
hasFirstSeen(): boolean;
|
|
14406
|
+
clearFirstSeen(): void;
|
|
14407
|
+
getFirstSeen(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14408
|
+
setFirstSeen(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
14409
|
+
|
|
14410
|
+
hasLastUpdated(): boolean;
|
|
14411
|
+
clearLastUpdated(): void;
|
|
14412
|
+
getLastUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14413
|
+
setLastUpdated(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
14414
|
+
|
|
14415
|
+
hasLastEnriched(): boolean;
|
|
14416
|
+
clearLastEnriched(): void;
|
|
14417
|
+
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14418
|
+
setLastEnriched(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
14419
|
+
|
|
14420
|
+
hasLastSyncedSourceAgent(): boolean;
|
|
14421
|
+
clearLastSyncedSourceAgent(): void;
|
|
14422
|
+
getLastSyncedSourceAgent(): string | undefined;
|
|
14423
|
+
setLastSyncedSourceAgent(value: string): User;
|
|
14424
|
+
|
|
14425
|
+
hasLastSyncedSourceName(): boolean;
|
|
14426
|
+
clearLastSyncedSourceName(): void;
|
|
14427
|
+
getLastSyncedSourceName(): string | undefined;
|
|
14428
|
+
setLastSyncedSourceName(value: string): User;
|
|
14429
|
+
clearSourceInfoList(): void;
|
|
14430
|
+
getSourceInfoList(): Array<SourceInfo>;
|
|
14431
|
+
setSourceInfoList(value: Array<SourceInfo>): User;
|
|
14432
|
+
addSourceInfo(value?: SourceInfo, index?: number): SourceInfo;
|
|
14433
|
+
clearUnlinkedSourceInfoList(): void;
|
|
14434
|
+
getUnlinkedSourceInfoList(): Array<SourceInfo>;
|
|
14435
|
+
setUnlinkedSourceInfoList(value: Array<SourceInfo>): User;
|
|
14436
|
+
addUnlinkedSourceInfo(value?: SourceInfo, index?: number): SourceInfo;
|
|
14437
|
+
|
|
14438
|
+
hasUniqueKey(): boolean;
|
|
14439
|
+
clearUniqueKey(): void;
|
|
14440
|
+
getUniqueKey(): string | undefined;
|
|
14441
|
+
setUniqueKey(value: string): User;
|
|
14442
|
+
clearScanErrorList(): void;
|
|
14443
|
+
getScanErrorList(): Array<ScanError>;
|
|
14444
|
+
setScanErrorList(value: Array<ScanError>): User;
|
|
14445
|
+
addScanError(value?: ScanError, index?: number): ScanError;
|
|
14446
|
+
|
|
14447
|
+
hasInternetIp(): boolean;
|
|
14448
|
+
clearInternetIp(): void;
|
|
14449
|
+
getInternetIp(): IpInfo | undefined;
|
|
14450
|
+
setInternetIp(value?: IpInfo): User;
|
|
14451
|
+
clearTagList(): void;
|
|
14452
|
+
getTagList(): Array<Tag>;
|
|
14453
|
+
setTagList(value: Array<Tag>): User;
|
|
14454
|
+
addTag(value?: Tag, index?: number): Tag;
|
|
14455
|
+
clearRelationList(): void;
|
|
14456
|
+
getRelationList(): Array<Relation>;
|
|
14457
|
+
setRelationList(value: Array<Relation>): User;
|
|
14458
|
+
addRelation(value?: Relation, index?: number): Relation;
|
|
14459
|
+
|
|
14460
|
+
hasCore(): boolean;
|
|
14461
|
+
clearCore(): void;
|
|
14462
|
+
getCore(): UserCoreFields | undefined;
|
|
14463
|
+
setCore(value?: UserCoreFields): User;
|
|
14464
|
+
|
|
14465
|
+
hasAdUser(): boolean;
|
|
14466
|
+
clearAdUser(): void;
|
|
14467
|
+
getAdUser(): ActiveDirectoryUser | undefined;
|
|
14468
|
+
setAdUser(value?: ActiveDirectoryUser): User;
|
|
14469
|
+
|
|
14470
|
+
serializeBinary(): Uint8Array;
|
|
14471
|
+
toObject(includeInstance?: boolean): User.AsObject;
|
|
14472
|
+
static toObject(includeInstance: boolean, msg: User): User.AsObject;
|
|
14473
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14474
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14475
|
+
static serializeBinaryToWriter(message: User, writer: jspb.BinaryWriter): void;
|
|
14476
|
+
static deserializeBinary(bytes: Uint8Array): User;
|
|
14477
|
+
static deserializeBinaryFromReader(message: User, reader: jspb.BinaryReader): User;
|
|
14478
|
+
}
|
|
14479
|
+
|
|
14480
|
+
export namespace User {
|
|
14481
|
+
export type AsObject = {
|
|
14482
|
+
id?: EntityPath.AsObject,
|
|
14483
|
+
lastSynced?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14484
|
+
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14485
|
+
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14486
|
+
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14487
|
+
lastSyncedSourceAgent?: string,
|
|
14488
|
+
lastSyncedSourceName?: string,
|
|
14489
|
+
sourceInfoList: Array<SourceInfo.AsObject>,
|
|
14490
|
+
unlinkedSourceInfoList: Array<SourceInfo.AsObject>,
|
|
14491
|
+
uniqueKey?: string,
|
|
14492
|
+
scanErrorList: Array<ScanError.AsObject>,
|
|
14493
|
+
internetIp?: IpInfo.AsObject,
|
|
14494
|
+
tagList: Array<Tag.AsObject>,
|
|
14495
|
+
relationList: Array<Relation.AsObject>,
|
|
14496
|
+
core?: UserCoreFields.AsObject,
|
|
14497
|
+
adUser?: ActiveDirectoryUser.AsObject,
|
|
14498
|
+
}
|
|
14499
|
+
}
|
|
14500
|
+
|
|
14501
|
+
export class UserCoreFields extends jspb.Message {
|
|
14502
|
+
|
|
14503
|
+
hasUserName(): boolean;
|
|
14504
|
+
clearUserName(): void;
|
|
14505
|
+
getUserName(): string | undefined;
|
|
14506
|
+
setUserName(value: string): UserCoreFields;
|
|
14507
|
+
|
|
14508
|
+
hasUpn(): boolean;
|
|
14509
|
+
clearUpn(): void;
|
|
14510
|
+
getUpn(): string | undefined;
|
|
14511
|
+
setUpn(value: string): UserCoreFields;
|
|
14512
|
+
|
|
14513
|
+
hasSid(): boolean;
|
|
14514
|
+
clearSid(): void;
|
|
14515
|
+
getSid(): string | undefined;
|
|
14516
|
+
setSid(value: string): UserCoreFields;
|
|
14517
|
+
|
|
14518
|
+
hasEmail(): boolean;
|
|
14519
|
+
clearEmail(): void;
|
|
14520
|
+
getEmail(): string | undefined;
|
|
14521
|
+
setEmail(value: string): UserCoreFields;
|
|
14522
|
+
|
|
14523
|
+
serializeBinary(): Uint8Array;
|
|
14524
|
+
toObject(includeInstance?: boolean): UserCoreFields.AsObject;
|
|
14525
|
+
static toObject(includeInstance: boolean, msg: UserCoreFields): UserCoreFields.AsObject;
|
|
14526
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14527
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14528
|
+
static serializeBinaryToWriter(message: UserCoreFields, writer: jspb.BinaryWriter): void;
|
|
14529
|
+
static deserializeBinary(bytes: Uint8Array): UserCoreFields;
|
|
14530
|
+
static deserializeBinaryFromReader(message: UserCoreFields, reader: jspb.BinaryReader): UserCoreFields;
|
|
14531
|
+
}
|
|
14532
|
+
|
|
14533
|
+
export namespace UserCoreFields {
|
|
14534
|
+
export type AsObject = {
|
|
14535
|
+
userName?: string,
|
|
14536
|
+
upn?: string,
|
|
14537
|
+
sid?: string,
|
|
14538
|
+
email?: string,
|
|
14539
|
+
}
|
|
14540
|
+
}
|
|
14541
|
+
|
|
14542
|
+
export class Group extends jspb.Message {
|
|
14543
|
+
|
|
14544
|
+
hasId(): boolean;
|
|
14545
|
+
clearId(): void;
|
|
14546
|
+
getId(): EntityPath | undefined;
|
|
14547
|
+
setId(value?: EntityPath): Group;
|
|
14548
|
+
|
|
14549
|
+
hasLastSynced(): boolean;
|
|
14550
|
+
clearLastSynced(): void;
|
|
14551
|
+
getLastSynced(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14552
|
+
setLastSynced(value?: google_protobuf_timestamp_pb.Timestamp): Group;
|
|
14553
|
+
|
|
14554
|
+
hasFirstSeen(): boolean;
|
|
14555
|
+
clearFirstSeen(): void;
|
|
14556
|
+
getFirstSeen(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14557
|
+
setFirstSeen(value?: google_protobuf_timestamp_pb.Timestamp): Group;
|
|
14558
|
+
|
|
14559
|
+
hasLastUpdated(): boolean;
|
|
14560
|
+
clearLastUpdated(): void;
|
|
14561
|
+
getLastUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14562
|
+
setLastUpdated(value?: google_protobuf_timestamp_pb.Timestamp): Group;
|
|
14563
|
+
|
|
14564
|
+
hasLastEnriched(): boolean;
|
|
14565
|
+
clearLastEnriched(): void;
|
|
14566
|
+
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14567
|
+
setLastEnriched(value?: google_protobuf_timestamp_pb.Timestamp): Group;
|
|
14568
|
+
|
|
14569
|
+
hasLastSyncedSourceAgent(): boolean;
|
|
14570
|
+
clearLastSyncedSourceAgent(): void;
|
|
14571
|
+
getLastSyncedSourceAgent(): string | undefined;
|
|
14572
|
+
setLastSyncedSourceAgent(value: string): Group;
|
|
14573
|
+
|
|
14574
|
+
hasLastSyncedSourceName(): boolean;
|
|
14575
|
+
clearLastSyncedSourceName(): void;
|
|
14576
|
+
getLastSyncedSourceName(): string | undefined;
|
|
14577
|
+
setLastSyncedSourceName(value: string): Group;
|
|
14578
|
+
clearSourceInfoList(): void;
|
|
14579
|
+
getSourceInfoList(): Array<SourceInfo>;
|
|
14580
|
+
setSourceInfoList(value: Array<SourceInfo>): Group;
|
|
14581
|
+
addSourceInfo(value?: SourceInfo, index?: number): SourceInfo;
|
|
14582
|
+
clearUnlinkedSourceInfoList(): void;
|
|
14583
|
+
getUnlinkedSourceInfoList(): Array<SourceInfo>;
|
|
14584
|
+
setUnlinkedSourceInfoList(value: Array<SourceInfo>): Group;
|
|
14585
|
+
addUnlinkedSourceInfo(value?: SourceInfo, index?: number): SourceInfo;
|
|
14586
|
+
|
|
14587
|
+
hasUniqueKey(): boolean;
|
|
14588
|
+
clearUniqueKey(): void;
|
|
14589
|
+
getUniqueKey(): string | undefined;
|
|
14590
|
+
setUniqueKey(value: string): Group;
|
|
14591
|
+
clearScanErrorList(): void;
|
|
14592
|
+
getScanErrorList(): Array<ScanError>;
|
|
14593
|
+
setScanErrorList(value: Array<ScanError>): Group;
|
|
14594
|
+
addScanError(value?: ScanError, index?: number): ScanError;
|
|
14595
|
+
|
|
14596
|
+
hasInternetIp(): boolean;
|
|
14597
|
+
clearInternetIp(): void;
|
|
14598
|
+
getInternetIp(): IpInfo | undefined;
|
|
14599
|
+
setInternetIp(value?: IpInfo): Group;
|
|
14600
|
+
clearTagList(): void;
|
|
14601
|
+
getTagList(): Array<Tag>;
|
|
14602
|
+
setTagList(value: Array<Tag>): Group;
|
|
14603
|
+
addTag(value?: Tag, index?: number): Tag;
|
|
14604
|
+
clearRelationList(): void;
|
|
14605
|
+
getRelationList(): Array<Relation>;
|
|
14606
|
+
setRelationList(value: Array<Relation>): Group;
|
|
14607
|
+
addRelation(value?: Relation, index?: number): Relation;
|
|
14608
|
+
|
|
14609
|
+
hasCore(): boolean;
|
|
14610
|
+
clearCore(): void;
|
|
14611
|
+
getCore(): GroupCoreFields | undefined;
|
|
14612
|
+
setCore(value?: GroupCoreFields): Group;
|
|
14613
|
+
|
|
14614
|
+
hasAdGroup(): boolean;
|
|
14615
|
+
clearAdGroup(): void;
|
|
14616
|
+
getAdGroup(): ActiveDirectoryGroup | undefined;
|
|
14617
|
+
setAdGroup(value?: ActiveDirectoryGroup): Group;
|
|
14618
|
+
|
|
14619
|
+
serializeBinary(): Uint8Array;
|
|
14620
|
+
toObject(includeInstance?: boolean): Group.AsObject;
|
|
14621
|
+
static toObject(includeInstance: boolean, msg: Group): Group.AsObject;
|
|
14622
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14623
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14624
|
+
static serializeBinaryToWriter(message: Group, writer: jspb.BinaryWriter): void;
|
|
14625
|
+
static deserializeBinary(bytes: Uint8Array): Group;
|
|
14626
|
+
static deserializeBinaryFromReader(message: Group, reader: jspb.BinaryReader): Group;
|
|
14627
|
+
}
|
|
14628
|
+
|
|
14629
|
+
export namespace Group {
|
|
14630
|
+
export type AsObject = {
|
|
14631
|
+
id?: EntityPath.AsObject,
|
|
14632
|
+
lastSynced?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14633
|
+
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14634
|
+
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14635
|
+
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14636
|
+
lastSyncedSourceAgent?: string,
|
|
14637
|
+
lastSyncedSourceName?: string,
|
|
14638
|
+
sourceInfoList: Array<SourceInfo.AsObject>,
|
|
14639
|
+
unlinkedSourceInfoList: Array<SourceInfo.AsObject>,
|
|
14640
|
+
uniqueKey?: string,
|
|
14641
|
+
scanErrorList: Array<ScanError.AsObject>,
|
|
14642
|
+
internetIp?: IpInfo.AsObject,
|
|
14643
|
+
tagList: Array<Tag.AsObject>,
|
|
14644
|
+
relationList: Array<Relation.AsObject>,
|
|
14645
|
+
core?: GroupCoreFields.AsObject,
|
|
14646
|
+
adGroup?: ActiveDirectoryGroup.AsObject,
|
|
14647
|
+
}
|
|
14648
|
+
}
|
|
14649
|
+
|
|
14650
|
+
export class GroupCoreFields extends jspb.Message {
|
|
14651
|
+
|
|
14652
|
+
serializeBinary(): Uint8Array;
|
|
14653
|
+
toObject(includeInstance?: boolean): GroupCoreFields.AsObject;
|
|
14654
|
+
static toObject(includeInstance: boolean, msg: GroupCoreFields): GroupCoreFields.AsObject;
|
|
14655
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14656
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14657
|
+
static serializeBinaryToWriter(message: GroupCoreFields, writer: jspb.BinaryWriter): void;
|
|
14658
|
+
static deserializeBinary(bytes: Uint8Array): GroupCoreFields;
|
|
14659
|
+
static deserializeBinaryFromReader(message: GroupCoreFields, reader: jspb.BinaryReader): GroupCoreFields;
|
|
14660
|
+
}
|
|
14661
|
+
|
|
14662
|
+
export namespace GroupCoreFields {
|
|
14663
|
+
export type AsObject = {
|
|
14664
|
+
}
|
|
14665
|
+
}
|
|
14666
|
+
|
|
14667
|
+
export class ActiveDirectoryObject extends jspb.Message {
|
|
14668
|
+
getDomainOid(): string;
|
|
14669
|
+
setDomainOid(value: string): ActiveDirectoryObject;
|
|
14670
|
+
getOid(): string;
|
|
14671
|
+
setOid(value: string): ActiveDirectoryObject;
|
|
14672
|
+
getSid(): string;
|
|
14673
|
+
setSid(value: string): ActiveDirectoryObject;
|
|
14674
|
+
getDistinguishedName(): string;
|
|
14675
|
+
setDistinguishedName(value: string): ActiveDirectoryObject;
|
|
14676
|
+
|
|
14677
|
+
hasDomainDns(): boolean;
|
|
14678
|
+
clearDomainDns(): void;
|
|
14679
|
+
getDomainDns(): string | undefined;
|
|
14680
|
+
setDomainDns(value: string): ActiveDirectoryObject;
|
|
14681
|
+
|
|
14682
|
+
hasName(): boolean;
|
|
14683
|
+
clearName(): void;
|
|
14684
|
+
getName(): string | undefined;
|
|
14685
|
+
setName(value: string): ActiveDirectoryObject;
|
|
14686
|
+
|
|
14687
|
+
hasObjectClass(): boolean;
|
|
14688
|
+
clearObjectClass(): void;
|
|
14689
|
+
getObjectClass(): string | undefined;
|
|
14690
|
+
setObjectClass(value: string): ActiveDirectoryObject;
|
|
14691
|
+
|
|
14692
|
+
hasCreationTime(): boolean;
|
|
14693
|
+
clearCreationTime(): void;
|
|
14694
|
+
getCreationTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14695
|
+
setCreationTime(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryObject;
|
|
14696
|
+
|
|
14697
|
+
hasLastChanged(): boolean;
|
|
14698
|
+
clearLastChanged(): void;
|
|
14699
|
+
getLastChanged(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14700
|
+
setLastChanged(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryObject;
|
|
14701
|
+
|
|
14702
|
+
serializeBinary(): Uint8Array;
|
|
14703
|
+
toObject(includeInstance?: boolean): ActiveDirectoryObject.AsObject;
|
|
14704
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectoryObject): ActiveDirectoryObject.AsObject;
|
|
14705
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14706
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14707
|
+
static serializeBinaryToWriter(message: ActiveDirectoryObject, writer: jspb.BinaryWriter): void;
|
|
14708
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectoryObject;
|
|
14709
|
+
static deserializeBinaryFromReader(message: ActiveDirectoryObject, reader: jspb.BinaryReader): ActiveDirectoryObject;
|
|
14710
|
+
}
|
|
14711
|
+
|
|
14712
|
+
export namespace ActiveDirectoryObject {
|
|
14713
|
+
export type AsObject = {
|
|
14714
|
+
domainOid: string,
|
|
14715
|
+
oid: string,
|
|
14716
|
+
sid: string,
|
|
14717
|
+
distinguishedName: string,
|
|
14718
|
+
domainDns?: string,
|
|
14719
|
+
name?: string,
|
|
14720
|
+
objectClass?: string,
|
|
14721
|
+
creationTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14722
|
+
lastChanged?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
14723
|
+
}
|
|
14724
|
+
}
|
|
14725
|
+
|
|
14726
|
+
export class ActiveDirectoryComputer extends jspb.Message {
|
|
14727
|
+
|
|
14728
|
+
hasAdObject(): boolean;
|
|
14729
|
+
clearAdObject(): void;
|
|
14730
|
+
getAdObject(): ActiveDirectoryObject | undefined;
|
|
14731
|
+
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryComputer;
|
|
14732
|
+
|
|
14733
|
+
hasSamAccountName(): boolean;
|
|
14734
|
+
clearSamAccountName(): void;
|
|
14735
|
+
getSamAccountName(): string | undefined;
|
|
14736
|
+
setSamAccountName(value: string): ActiveDirectoryComputer;
|
|
14737
|
+
|
|
14738
|
+
hasCn(): boolean;
|
|
14739
|
+
clearCn(): void;
|
|
14740
|
+
getCn(): string | undefined;
|
|
14741
|
+
setCn(value: string): ActiveDirectoryComputer;
|
|
14742
|
+
|
|
14743
|
+
hasOu(): boolean;
|
|
14744
|
+
clearOu(): void;
|
|
14745
|
+
getOu(): string | undefined;
|
|
14746
|
+
setOu(value: string): ActiveDirectoryComputer;
|
|
14747
|
+
|
|
14748
|
+
hasDescription(): boolean;
|
|
14749
|
+
clearDescription(): void;
|
|
14750
|
+
getDescription(): string | undefined;
|
|
14751
|
+
setDescription(value: string): ActiveDirectoryComputer;
|
|
14752
|
+
|
|
14753
|
+
hasComment(): boolean;
|
|
14754
|
+
clearComment(): void;
|
|
14755
|
+
getComment(): string | undefined;
|
|
14756
|
+
setComment(value: string): ActiveDirectoryComputer;
|
|
14757
|
+
|
|
14758
|
+
hasCompany(): boolean;
|
|
14759
|
+
clearCompany(): void;
|
|
14760
|
+
getCompany(): string | undefined;
|
|
14761
|
+
setCompany(value: string): ActiveDirectoryComputer;
|
|
14762
|
+
|
|
14763
|
+
hasLocation(): boolean;
|
|
14764
|
+
clearLocation(): void;
|
|
14765
|
+
getLocation(): string | undefined;
|
|
14766
|
+
setLocation(value: string): ActiveDirectoryComputer;
|
|
14767
|
+
|
|
14768
|
+
hasIpAddress(): boolean;
|
|
14769
|
+
clearIpAddress(): void;
|
|
14770
|
+
getIpAddress(): string | undefined;
|
|
14771
|
+
setIpAddress(value: string): ActiveDirectoryComputer;
|
|
14772
|
+
|
|
14773
|
+
hasEnabled(): boolean;
|
|
14774
|
+
clearEnabled(): void;
|
|
14775
|
+
getEnabled(): boolean | undefined;
|
|
14776
|
+
setEnabled(value: boolean): ActiveDirectoryComputer;
|
|
14777
|
+
|
|
14778
|
+
hasBitlockerRecoveryInfo(): boolean;
|
|
14779
|
+
clearBitlockerRecoveryInfo(): void;
|
|
14780
|
+
getBitlockerRecoveryInfo(): string | undefined;
|
|
14781
|
+
setBitlockerRecoveryInfo(value: string): ActiveDirectoryComputer;
|
|
14782
|
+
|
|
14783
|
+
hasOperatingSystem(): boolean;
|
|
14784
|
+
clearOperatingSystem(): void;
|
|
14785
|
+
getOperatingSystem(): string | undefined;
|
|
14786
|
+
setOperatingSystem(value: string): ActiveDirectoryComputer;
|
|
14787
|
+
|
|
14788
|
+
hasOperatingSystemVersion(): boolean;
|
|
14789
|
+
clearOperatingSystemVersion(): void;
|
|
14790
|
+
getOperatingSystemVersion(): string | undefined;
|
|
14791
|
+
setOperatingSystemVersion(value: string): ActiveDirectoryComputer;
|
|
14792
|
+
|
|
14793
|
+
hasManagedByUserOid(): boolean;
|
|
14794
|
+
clearManagedByUserOid(): void;
|
|
14795
|
+
getManagedByUserOid(): string | undefined;
|
|
14796
|
+
setManagedByUserOid(value: string): ActiveDirectoryComputer;
|
|
14797
|
+
|
|
14798
|
+
hasManagedByGroupOid(): boolean;
|
|
14799
|
+
clearManagedByGroupOid(): void;
|
|
14800
|
+
getManagedByGroupOid(): string | undefined;
|
|
14801
|
+
setManagedByGroupOid(value: string): ActiveDirectoryComputer;
|
|
14802
|
+
|
|
14803
|
+
serializeBinary(): Uint8Array;
|
|
14804
|
+
toObject(includeInstance?: boolean): ActiveDirectoryComputer.AsObject;
|
|
14805
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectoryComputer): ActiveDirectoryComputer.AsObject;
|
|
14806
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14807
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14808
|
+
static serializeBinaryToWriter(message: ActiveDirectoryComputer, writer: jspb.BinaryWriter): void;
|
|
14809
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectoryComputer;
|
|
14810
|
+
static deserializeBinaryFromReader(message: ActiveDirectoryComputer, reader: jspb.BinaryReader): ActiveDirectoryComputer;
|
|
14811
|
+
}
|
|
14812
|
+
|
|
14813
|
+
export namespace ActiveDirectoryComputer {
|
|
14814
|
+
export type AsObject = {
|
|
14815
|
+
adObject?: ActiveDirectoryObject.AsObject,
|
|
14816
|
+
samAccountName?: string,
|
|
14817
|
+
cn?: string,
|
|
14818
|
+
ou?: string,
|
|
14819
|
+
description?: string,
|
|
14820
|
+
comment?: string,
|
|
14821
|
+
company?: string,
|
|
14822
|
+
location?: string,
|
|
14823
|
+
ipAddress?: string,
|
|
14824
|
+
enabled?: boolean,
|
|
14825
|
+
bitlockerRecoveryInfo?: string,
|
|
14826
|
+
operatingSystem?: string,
|
|
14827
|
+
operatingSystemVersion?: string,
|
|
14828
|
+
managedByUserOid?: string,
|
|
14829
|
+
managedByGroupOid?: string,
|
|
14830
|
+
}
|
|
14831
|
+
}
|
|
14832
|
+
|
|
14833
|
+
export class ActiveDirectoryDomain extends jspb.Message {
|
|
14834
|
+
|
|
14835
|
+
hasAdObject(): boolean;
|
|
14836
|
+
clearAdObject(): void;
|
|
14837
|
+
getAdObject(): ActiveDirectoryObject | undefined;
|
|
14838
|
+
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryDomain;
|
|
14839
|
+
|
|
14840
|
+
hasMinimumPasswordAge(): boolean;
|
|
14841
|
+
clearMinimumPasswordAge(): void;
|
|
14842
|
+
getMinimumPasswordAge(): number | undefined;
|
|
14843
|
+
setMinimumPasswordAge(value: number): ActiveDirectoryDomain;
|
|
14844
|
+
|
|
14845
|
+
hasMaximumPasswordAge(): boolean;
|
|
14846
|
+
clearMaximumPasswordAge(): void;
|
|
14847
|
+
getMaximumPasswordAge(): number | undefined;
|
|
14848
|
+
setMaximumPasswordAge(value: number): ActiveDirectoryDomain;
|
|
14849
|
+
|
|
14850
|
+
serializeBinary(): Uint8Array;
|
|
14851
|
+
toObject(includeInstance?: boolean): ActiveDirectoryDomain.AsObject;
|
|
14852
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectoryDomain): ActiveDirectoryDomain.AsObject;
|
|
14853
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
14854
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
14855
|
+
static serializeBinaryToWriter(message: ActiveDirectoryDomain, writer: jspb.BinaryWriter): void;
|
|
14856
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectoryDomain;
|
|
14857
|
+
static deserializeBinaryFromReader(message: ActiveDirectoryDomain, reader: jspb.BinaryReader): ActiveDirectoryDomain;
|
|
14858
|
+
}
|
|
14859
|
+
|
|
14860
|
+
export namespace ActiveDirectoryDomain {
|
|
14861
|
+
export type AsObject = {
|
|
14862
|
+
adObject?: ActiveDirectoryObject.AsObject,
|
|
14863
|
+
minimumPasswordAge?: number,
|
|
14864
|
+
maximumPasswordAge?: number,
|
|
14865
|
+
}
|
|
14866
|
+
}
|
|
14867
|
+
|
|
14868
|
+
export class ActiveDirectoryUser extends jspb.Message {
|
|
14869
|
+
|
|
14870
|
+
hasAdObject(): boolean;
|
|
14871
|
+
clearAdObject(): void;
|
|
14872
|
+
getAdObject(): ActiveDirectoryObject | undefined;
|
|
14873
|
+
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryUser;
|
|
14874
|
+
|
|
14875
|
+
hasSamAccountName(): boolean;
|
|
14876
|
+
clearSamAccountName(): void;
|
|
14877
|
+
getSamAccountName(): string | undefined;
|
|
14878
|
+
setSamAccountName(value: string): ActiveDirectoryUser;
|
|
14879
|
+
|
|
14880
|
+
hasCn(): boolean;
|
|
14881
|
+
clearCn(): void;
|
|
14882
|
+
getCn(): string | undefined;
|
|
14883
|
+
setCn(value: string): ActiveDirectoryUser;
|
|
14884
|
+
|
|
14885
|
+
hasOu(): boolean;
|
|
14886
|
+
clearOu(): void;
|
|
14887
|
+
getOu(): string | undefined;
|
|
14888
|
+
setOu(value: string): ActiveDirectoryUser;
|
|
14889
|
+
|
|
14890
|
+
hasDescription(): boolean;
|
|
14891
|
+
clearDescription(): void;
|
|
14892
|
+
getDescription(): string | undefined;
|
|
14893
|
+
setDescription(value: string): ActiveDirectoryUser;
|
|
14894
|
+
|
|
14895
|
+
hasComment(): boolean;
|
|
14896
|
+
clearComment(): void;
|
|
14897
|
+
getComment(): string | undefined;
|
|
14898
|
+
setComment(value: string): ActiveDirectoryUser;
|
|
14899
|
+
|
|
14900
|
+
hasCompany(): boolean;
|
|
14901
|
+
clearCompany(): void;
|
|
14902
|
+
getCompany(): string | undefined;
|
|
14903
|
+
setCompany(value: string): ActiveDirectoryUser;
|
|
14904
|
+
|
|
14905
|
+
hasPrimaryGroupId(): boolean;
|
|
14906
|
+
clearPrimaryGroupId(): void;
|
|
14907
|
+
getPrimaryGroupId(): number | undefined;
|
|
14908
|
+
setPrimaryGroupId(value: number): ActiveDirectoryUser;
|
|
14909
|
+
|
|
14910
|
+
hasEnabled(): boolean;
|
|
14911
|
+
clearEnabled(): void;
|
|
14912
|
+
getEnabled(): boolean | undefined;
|
|
14913
|
+
setEnabled(value: boolean): ActiveDirectoryUser;
|
|
14914
|
+
|
|
14915
|
+
hasUserAccountControl(): boolean;
|
|
14916
|
+
clearUserAccountControl(): void;
|
|
14917
|
+
getUserAccountControl(): number | undefined;
|
|
14918
|
+
setUserAccountControl(value: number): ActiveDirectoryUser;
|
|
14919
|
+
|
|
14920
|
+
hasAccountExpires(): boolean;
|
|
14921
|
+
clearAccountExpires(): void;
|
|
14922
|
+
getAccountExpires(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14923
|
+
setAccountExpires(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14924
|
+
|
|
14925
|
+
hasLockoutTime(): boolean;
|
|
14926
|
+
clearLockoutTime(): void;
|
|
14927
|
+
getLockoutTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14928
|
+
setLockoutTime(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14929
|
+
|
|
14930
|
+
hasPasswordLastSet(): boolean;
|
|
14931
|
+
clearPasswordLastSet(): void;
|
|
14932
|
+
getPasswordLastSet(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14933
|
+
setPasswordLastSet(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14934
|
+
|
|
14935
|
+
hasLastLogon(): boolean;
|
|
14936
|
+
clearLastLogon(): void;
|
|
14937
|
+
getLastLogon(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14938
|
+
setLastLogon(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14939
|
+
|
|
14940
|
+
hasLockoutDate(): boolean;
|
|
14941
|
+
clearLockoutDate(): void;
|
|
14942
|
+
getLockoutDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14943
|
+
setLockoutDate(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14944
|
+
|
|
14945
|
+
hasCanUserChangePassword(): boolean;
|
|
14946
|
+
clearCanUserChangePassword(): void;
|
|
14947
|
+
getCanUserChangePassword(): boolean | undefined;
|
|
14948
|
+
setCanUserChangePassword(value: boolean): ActiveDirectoryUser;
|
|
14949
|
+
|
|
14950
|
+
hasPasswordExpirationDate(): boolean;
|
|
14951
|
+
clearPasswordExpirationDate(): void;
|
|
14952
|
+
getPasswordExpirationDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14953
|
+
setPasswordExpirationDate(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14954
|
+
|
|
14955
|
+
hasPasswordNeverExpires(): boolean;
|
|
14956
|
+
clearPasswordNeverExpires(): void;
|
|
14957
|
+
getPasswordNeverExpires(): boolean | undefined;
|
|
14958
|
+
setPasswordNeverExpires(value: boolean): ActiveDirectoryUser;
|
|
14959
|
+
|
|
14960
|
+
hasPasswordRequired(): boolean;
|
|
14961
|
+
clearPasswordRequired(): void;
|
|
14962
|
+
getPasswordRequired(): boolean | undefined;
|
|
14963
|
+
setPasswordRequired(value: boolean): ActiveDirectoryUser;
|
|
14964
|
+
|
|
14965
|
+
hasPasswordChangeableDate(): boolean;
|
|
14966
|
+
clearPasswordChangeableDate(): void;
|
|
14967
|
+
getPasswordChangeableDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
14968
|
+
setPasswordChangeableDate(value?: google_protobuf_timestamp_pb.Timestamp): ActiveDirectoryUser;
|
|
14969
|
+
|
|
14970
|
+
hasEmail(): boolean;
|
|
14971
|
+
clearEmail(): void;
|
|
14972
|
+
getEmail(): string | undefined;
|
|
14973
|
+
setEmail(value: string): ActiveDirectoryUser;
|
|
14974
|
+
|
|
14975
|
+
hasDisplayName(): boolean;
|
|
14976
|
+
clearDisplayName(): void;
|
|
14977
|
+
getDisplayName(): string | undefined;
|
|
14978
|
+
setDisplayName(value: string): ActiveDirectoryUser;
|
|
14979
|
+
|
|
14980
|
+
hasGivenName(): boolean;
|
|
14981
|
+
clearGivenName(): void;
|
|
14982
|
+
getGivenName(): string | undefined;
|
|
14983
|
+
setGivenName(value: string): ActiveDirectoryUser;
|
|
14984
|
+
|
|
14985
|
+
hasSurname(): boolean;
|
|
14986
|
+
clearSurname(): void;
|
|
14987
|
+
getSurname(): string | undefined;
|
|
14988
|
+
setSurname(value: string): ActiveDirectoryUser;
|
|
14989
|
+
|
|
14990
|
+
hasTelephone(): boolean;
|
|
14991
|
+
clearTelephone(): void;
|
|
14992
|
+
getTelephone(): string | undefined;
|
|
14993
|
+
setTelephone(value: string): ActiveDirectoryUser;
|
|
14994
|
+
|
|
14995
|
+
hasFacSimile(): boolean;
|
|
14996
|
+
clearFacSimile(): void;
|
|
14997
|
+
getFacSimile(): string | undefined;
|
|
14998
|
+
setFacSimile(value: string): ActiveDirectoryUser;
|
|
14999
|
+
|
|
15000
|
+
hasMobile(): boolean;
|
|
15001
|
+
clearMobile(): void;
|
|
15002
|
+
getMobile(): string | undefined;
|
|
15003
|
+
setMobile(value: string): ActiveDirectoryUser;
|
|
15004
|
+
|
|
15005
|
+
hasStreetAddress(): boolean;
|
|
15006
|
+
clearStreetAddress(): void;
|
|
15007
|
+
getStreetAddress(): string | undefined;
|
|
15008
|
+
setStreetAddress(value: string): ActiveDirectoryUser;
|
|
15009
|
+
|
|
15010
|
+
hasCity(): boolean;
|
|
15011
|
+
clearCity(): void;
|
|
15012
|
+
getCity(): string | undefined;
|
|
15013
|
+
setCity(value: string): ActiveDirectoryUser;
|
|
15014
|
+
|
|
15015
|
+
hasCountry(): boolean;
|
|
15016
|
+
clearCountry(): void;
|
|
15017
|
+
getCountry(): string | undefined;
|
|
15018
|
+
setCountry(value: string): ActiveDirectoryUser;
|
|
15019
|
+
|
|
15020
|
+
hasDepartment(): boolean;
|
|
15021
|
+
clearDepartment(): void;
|
|
15022
|
+
getDepartment(): string | undefined;
|
|
15023
|
+
setDepartment(value: string): ActiveDirectoryUser;
|
|
15024
|
+
|
|
15025
|
+
hasDeliveryOfficeName(): boolean;
|
|
15026
|
+
clearDeliveryOfficeName(): void;
|
|
15027
|
+
getDeliveryOfficeName(): string | undefined;
|
|
15028
|
+
setDeliveryOfficeName(value: string): ActiveDirectoryUser;
|
|
15029
|
+
|
|
15030
|
+
hasCountryAbbreviation(): boolean;
|
|
15031
|
+
clearCountryAbbreviation(): void;
|
|
15032
|
+
getCountryAbbreviation(): string | undefined;
|
|
15033
|
+
setCountryAbbreviation(value: string): ActiveDirectoryUser;
|
|
15034
|
+
|
|
15035
|
+
hasPostalCode(): boolean;
|
|
15036
|
+
clearPostalCode(): void;
|
|
15037
|
+
getPostalCode(): string | undefined;
|
|
15038
|
+
setPostalCode(value: string): ActiveDirectoryUser;
|
|
15039
|
+
|
|
15040
|
+
hasCountryCode(): boolean;
|
|
15041
|
+
clearCountryCode(): void;
|
|
15042
|
+
getCountryCode(): string | undefined;
|
|
15043
|
+
setCountryCode(value: string): ActiveDirectoryUser;
|
|
15044
|
+
|
|
15045
|
+
hasPrincipalName(): boolean;
|
|
15046
|
+
clearPrincipalName(): void;
|
|
15047
|
+
getPrincipalName(): string | undefined;
|
|
15048
|
+
setPrincipalName(value: string): ActiveDirectoryUser;
|
|
15049
|
+
|
|
15050
|
+
hasTitle(): boolean;
|
|
15051
|
+
clearTitle(): void;
|
|
15052
|
+
getTitle(): string | undefined;
|
|
15053
|
+
setTitle(value: string): ActiveDirectoryUser;
|
|
15054
|
+
|
|
15055
|
+
hasDivision(): boolean;
|
|
15056
|
+
clearDivision(): void;
|
|
15057
|
+
getDivision(): string | undefined;
|
|
15058
|
+
setDivision(value: string): ActiveDirectoryUser;
|
|
15059
|
+
|
|
15060
|
+
hasInfo(): boolean;
|
|
15061
|
+
clearInfo(): void;
|
|
15062
|
+
getInfo(): string | undefined;
|
|
15063
|
+
setInfo(value: string): ActiveDirectoryUser;
|
|
15064
|
+
|
|
15065
|
+
hasHomePhone(): boolean;
|
|
15066
|
+
clearHomePhone(): void;
|
|
15067
|
+
getHomePhone(): string | undefined;
|
|
15068
|
+
setHomePhone(value: string): ActiveDirectoryUser;
|
|
15069
|
+
|
|
15070
|
+
hasPager(): boolean;
|
|
15071
|
+
clearPager(): void;
|
|
15072
|
+
getPager(): string | undefined;
|
|
15073
|
+
setPager(value: string): ActiveDirectoryUser;
|
|
15074
|
+
|
|
15075
|
+
hasIpPhone(): boolean;
|
|
15076
|
+
clearIpPhone(): void;
|
|
15077
|
+
getIpPhone(): string | undefined;
|
|
15078
|
+
setIpPhone(value: string): ActiveDirectoryUser;
|
|
15079
|
+
|
|
15080
|
+
hasHomePage(): boolean;
|
|
15081
|
+
clearHomePage(): void;
|
|
15082
|
+
getHomePage(): string | undefined;
|
|
15083
|
+
setHomePage(value: string): ActiveDirectoryUser;
|
|
15084
|
+
|
|
15085
|
+
hasPostOfficeBox(): boolean;
|
|
15086
|
+
clearPostOfficeBox(): void;
|
|
15087
|
+
getPostOfficeBox(): string | undefined;
|
|
15088
|
+
setPostOfficeBox(value: string): ActiveDirectoryUser;
|
|
15089
|
+
|
|
15090
|
+
hasState(): boolean;
|
|
15091
|
+
clearState(): void;
|
|
15092
|
+
getState(): string | undefined;
|
|
15093
|
+
setState(value: string): ActiveDirectoryUser;
|
|
15094
|
+
|
|
15095
|
+
hasProfilePath(): boolean;
|
|
15096
|
+
clearProfilePath(): void;
|
|
15097
|
+
getProfilePath(): string | undefined;
|
|
15098
|
+
setProfilePath(value: string): ActiveDirectoryUser;
|
|
15099
|
+
|
|
15100
|
+
hasScriptPath(): boolean;
|
|
15101
|
+
clearScriptPath(): void;
|
|
15102
|
+
getScriptPath(): string | undefined;
|
|
15103
|
+
setScriptPath(value: string): ActiveDirectoryUser;
|
|
15104
|
+
|
|
15105
|
+
hasHomeDirectory(): boolean;
|
|
15106
|
+
clearHomeDirectory(): void;
|
|
15107
|
+
getHomeDirectory(): string | undefined;
|
|
15108
|
+
setHomeDirectory(value: string): ActiveDirectoryUser;
|
|
15109
|
+
|
|
15110
|
+
hasThumbnailPhoto(): boolean;
|
|
15111
|
+
clearThumbnailPhoto(): void;
|
|
15112
|
+
getThumbnailPhoto(): Uint8Array | string;
|
|
15113
|
+
getThumbnailPhoto_asU8(): Uint8Array;
|
|
15114
|
+
getThumbnailPhoto_asB64(): string;
|
|
15115
|
+
setThumbnailPhoto(value: Uint8Array | string): ActiveDirectoryUser;
|
|
15116
|
+
|
|
15117
|
+
hasEmployeeId(): boolean;
|
|
15118
|
+
clearEmployeeId(): void;
|
|
15119
|
+
getEmployeeId(): string | undefined;
|
|
15120
|
+
setEmployeeId(value: string): ActiveDirectoryUser;
|
|
15121
|
+
|
|
15122
|
+
hasEmployeeNumber(): boolean;
|
|
15123
|
+
clearEmployeeNumber(): void;
|
|
15124
|
+
getEmployeeNumber(): string | undefined;
|
|
15125
|
+
setEmployeeNumber(value: string): ActiveDirectoryUser;
|
|
15126
|
+
|
|
15127
|
+
hasEmployeeType(): boolean;
|
|
15128
|
+
clearEmployeeType(): void;
|
|
15129
|
+
getEmployeeType(): string | undefined;
|
|
15130
|
+
setEmployeeType(value: string): ActiveDirectoryUser;
|
|
15131
|
+
|
|
15132
|
+
hasInitials(): boolean;
|
|
15133
|
+
clearInitials(): void;
|
|
15134
|
+
getInitials(): string | undefined;
|
|
15135
|
+
setInitials(value: string): ActiveDirectoryUser;
|
|
15136
|
+
|
|
15137
|
+
hasMiddleName(): boolean;
|
|
15138
|
+
clearMiddleName(): void;
|
|
15139
|
+
getMiddleName(): string | undefined;
|
|
15140
|
+
setMiddleName(value: string): ActiveDirectoryUser;
|
|
15141
|
+
|
|
15142
|
+
hasPrimaryGroupOid(): boolean;
|
|
15143
|
+
clearPrimaryGroupOid(): void;
|
|
15144
|
+
getPrimaryGroupOid(): string | undefined;
|
|
15145
|
+
setPrimaryGroupOid(value: string): ActiveDirectoryUser;
|
|
15146
|
+
|
|
15147
|
+
hasManagerOid(): boolean;
|
|
15148
|
+
clearManagerOid(): void;
|
|
15149
|
+
getManagerOid(): string | undefined;
|
|
15150
|
+
setManagerOid(value: string): ActiveDirectoryUser;
|
|
15151
|
+
clearMemberOfOidList(): void;
|
|
15152
|
+
getMemberOfOidList(): Array<string>;
|
|
15153
|
+
setMemberOfOidList(value: Array<string>): ActiveDirectoryUser;
|
|
15154
|
+
addMemberOfOid(value: string, index?: number): string;
|
|
15155
|
+
|
|
15156
|
+
serializeBinary(): Uint8Array;
|
|
15157
|
+
toObject(includeInstance?: boolean): ActiveDirectoryUser.AsObject;
|
|
15158
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectoryUser): ActiveDirectoryUser.AsObject;
|
|
15159
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
15160
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
15161
|
+
static serializeBinaryToWriter(message: ActiveDirectoryUser, writer: jspb.BinaryWriter): void;
|
|
15162
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectoryUser;
|
|
15163
|
+
static deserializeBinaryFromReader(message: ActiveDirectoryUser, reader: jspb.BinaryReader): ActiveDirectoryUser;
|
|
15164
|
+
}
|
|
15165
|
+
|
|
15166
|
+
export namespace ActiveDirectoryUser {
|
|
15167
|
+
export type AsObject = {
|
|
15168
|
+
adObject?: ActiveDirectoryObject.AsObject,
|
|
15169
|
+
samAccountName?: string,
|
|
15170
|
+
cn?: string,
|
|
15171
|
+
ou?: string,
|
|
15172
|
+
description?: string,
|
|
15173
|
+
comment?: string,
|
|
15174
|
+
company?: string,
|
|
15175
|
+
primaryGroupId?: number,
|
|
15176
|
+
enabled?: boolean,
|
|
15177
|
+
userAccountControl?: number,
|
|
15178
|
+
accountExpires?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15179
|
+
lockoutTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15180
|
+
passwordLastSet?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15181
|
+
lastLogon?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15182
|
+
lockoutDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15183
|
+
canUserChangePassword?: boolean,
|
|
15184
|
+
passwordExpirationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15185
|
+
passwordNeverExpires?: boolean,
|
|
15186
|
+
passwordRequired?: boolean,
|
|
15187
|
+
passwordChangeableDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
15188
|
+
email?: string,
|
|
15189
|
+
displayName?: string,
|
|
15190
|
+
givenName?: string,
|
|
15191
|
+
surname?: string,
|
|
15192
|
+
telephone?: string,
|
|
15193
|
+
facSimile?: string,
|
|
15194
|
+
mobile?: string,
|
|
15195
|
+
streetAddress?: string,
|
|
15196
|
+
city?: string,
|
|
15197
|
+
country?: string,
|
|
15198
|
+
department?: string,
|
|
15199
|
+
deliveryOfficeName?: string,
|
|
15200
|
+
countryAbbreviation?: string,
|
|
15201
|
+
postalCode?: string,
|
|
15202
|
+
countryCode?: string,
|
|
15203
|
+
principalName?: string,
|
|
15204
|
+
title?: string,
|
|
15205
|
+
division?: string,
|
|
15206
|
+
info?: string,
|
|
15207
|
+
homePhone?: string,
|
|
15208
|
+
pager?: string,
|
|
15209
|
+
ipPhone?: string,
|
|
15210
|
+
homePage?: string,
|
|
15211
|
+
postOfficeBox?: string,
|
|
15212
|
+
state?: string,
|
|
15213
|
+
profilePath?: string,
|
|
15214
|
+
scriptPath?: string,
|
|
15215
|
+
homeDirectory?: string,
|
|
15216
|
+
thumbnailPhoto: Uint8Array | string,
|
|
15217
|
+
employeeId?: string,
|
|
15218
|
+
employeeNumber?: string,
|
|
15219
|
+
employeeType?: string,
|
|
15220
|
+
initials?: string,
|
|
15221
|
+
middleName?: string,
|
|
15222
|
+
primaryGroupOid?: string,
|
|
15223
|
+
managerOid?: string,
|
|
15224
|
+
memberOfOidList: Array<string>,
|
|
15225
|
+
}
|
|
15226
|
+
}
|
|
15227
|
+
|
|
15228
|
+
export class ActiveDirectoryGroup extends jspb.Message {
|
|
15229
|
+
|
|
15230
|
+
hasAdObject(): boolean;
|
|
15231
|
+
clearAdObject(): void;
|
|
15232
|
+
getAdObject(): ActiveDirectoryObject | undefined;
|
|
15233
|
+
setAdObject(value?: ActiveDirectoryObject): ActiveDirectoryGroup;
|
|
15234
|
+
|
|
15235
|
+
hasSamAccountName(): boolean;
|
|
15236
|
+
clearSamAccountName(): void;
|
|
15237
|
+
getSamAccountName(): string | undefined;
|
|
15238
|
+
setSamAccountName(value: string): ActiveDirectoryGroup;
|
|
15239
|
+
|
|
15240
|
+
hasCn(): boolean;
|
|
15241
|
+
clearCn(): void;
|
|
15242
|
+
getCn(): string | undefined;
|
|
15243
|
+
setCn(value: string): ActiveDirectoryGroup;
|
|
15244
|
+
|
|
15245
|
+
hasOu(): boolean;
|
|
15246
|
+
clearOu(): void;
|
|
15247
|
+
getOu(): string | undefined;
|
|
15248
|
+
setOu(value: string): ActiveDirectoryGroup;
|
|
15249
|
+
|
|
15250
|
+
hasDescription(): boolean;
|
|
15251
|
+
clearDescription(): void;
|
|
15252
|
+
getDescription(): string | undefined;
|
|
15253
|
+
setDescription(value: string): ActiveDirectoryGroup;
|
|
15254
|
+
|
|
15255
|
+
hasComment(): boolean;
|
|
15256
|
+
clearComment(): void;
|
|
15257
|
+
getComment(): string | undefined;
|
|
15258
|
+
setComment(value: string): ActiveDirectoryGroup;
|
|
15259
|
+
|
|
15260
|
+
hasGroupType(): boolean;
|
|
15261
|
+
clearGroupType(): void;
|
|
15262
|
+
getGroupType(): number | undefined;
|
|
15263
|
+
setGroupType(value: number): ActiveDirectoryGroup;
|
|
15264
|
+
|
|
15265
|
+
hasEmail(): boolean;
|
|
15266
|
+
clearEmail(): void;
|
|
15267
|
+
getEmail(): string | undefined;
|
|
15268
|
+
setEmail(value: string): ActiveDirectoryGroup;
|
|
15269
|
+
|
|
15270
|
+
hasManagedByUserOid(): boolean;
|
|
15271
|
+
clearManagedByUserOid(): void;
|
|
15272
|
+
getManagedByUserOid(): string | undefined;
|
|
15273
|
+
setManagedByUserOid(value: string): ActiveDirectoryGroup;
|
|
15274
|
+
|
|
15275
|
+
hasManagedByGroupOid(): boolean;
|
|
15276
|
+
clearManagedByGroupOid(): void;
|
|
15277
|
+
getManagedByGroupOid(): string | undefined;
|
|
15278
|
+
setManagedByGroupOid(value: string): ActiveDirectoryGroup;
|
|
15279
|
+
clearMemberOfOidList(): void;
|
|
15280
|
+
getMemberOfOidList(): Array<string>;
|
|
15281
|
+
setMemberOfOidList(value: Array<string>): ActiveDirectoryGroup;
|
|
15282
|
+
addMemberOfOid(value: string, index?: number): string;
|
|
15283
|
+
|
|
15284
|
+
serializeBinary(): Uint8Array;
|
|
15285
|
+
toObject(includeInstance?: boolean): ActiveDirectoryGroup.AsObject;
|
|
15286
|
+
static toObject(includeInstance: boolean, msg: ActiveDirectoryGroup): ActiveDirectoryGroup.AsObject;
|
|
15287
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
15288
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
15289
|
+
static serializeBinaryToWriter(message: ActiveDirectoryGroup, writer: jspb.BinaryWriter): void;
|
|
15290
|
+
static deserializeBinary(bytes: Uint8Array): ActiveDirectoryGroup;
|
|
15291
|
+
static deserializeBinaryFromReader(message: ActiveDirectoryGroup, reader: jspb.BinaryReader): ActiveDirectoryGroup;
|
|
15292
|
+
}
|
|
15293
|
+
|
|
15294
|
+
export namespace ActiveDirectoryGroup {
|
|
15295
|
+
export type AsObject = {
|
|
15296
|
+
adObject?: ActiveDirectoryObject.AsObject,
|
|
15297
|
+
samAccountName?: string,
|
|
15298
|
+
cn?: string,
|
|
15299
|
+
ou?: string,
|
|
15300
|
+
description?: string,
|
|
15301
|
+
comment?: string,
|
|
15302
|
+
groupType?: number,
|
|
15303
|
+
email?: string,
|
|
15304
|
+
managedByUserOid?: string,
|
|
15305
|
+
managedByGroupOid?: string,
|
|
15306
|
+
memberOfOidList: Array<string>,
|
|
15307
|
+
}
|
|
15308
|
+
}
|
|
15309
|
+
|
|
14331
15310
|
export class IpLocationConfig extends jspb.Message {
|
|
14332
15311
|
getName(): string;
|
|
14333
15312
|
setName(value: string): IpLocationConfig;
|