@lansweeper/data-platform-outbound-grpc 0.1.23 → 0.1.25
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 +99 -9
- package/gen-proto/outbound_pb.js +878 -146
- package/generated-go/outbound.pb.go +1907 -1656
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +36 -13
|
@@ -310,14 +310,10 @@ export class Asset extends jspb.Message {
|
|
|
310
310
|
clearLastEnriched(): void;
|
|
311
311
|
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
312
312
|
setLastEnriched(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
313
|
-
clearSourceTagList(): void;
|
|
314
|
-
getSourceTagList(): Array<string>;
|
|
315
|
-
setSourceTagList(value: Array<string>): Asset;
|
|
316
|
-
addSourceTag(value: string, index?: number): string;
|
|
317
313
|
clearTagList(): void;
|
|
318
|
-
getTagList(): Array<
|
|
319
|
-
setTagList(value: Array<
|
|
320
|
-
addTag(value
|
|
314
|
+
getTagList(): Array<Tag>;
|
|
315
|
+
setTagList(value: Array<Tag>): Asset;
|
|
316
|
+
addTag(value?: Tag, index?: number): Tag;
|
|
321
317
|
|
|
322
318
|
hasCore(): boolean;
|
|
323
319
|
clearCore(): void;
|
|
@@ -356,6 +352,10 @@ export class Asset extends jspb.Message {
|
|
|
356
352
|
getProcessorList(): Array<Processor>;
|
|
357
353
|
setProcessorList(value: Array<Processor>): Asset;
|
|
358
354
|
addProcessor(value?: Processor, index?: number): Processor;
|
|
355
|
+
clearChassisList(): void;
|
|
356
|
+
getChassisList(): Array<Chassis>;
|
|
357
|
+
setChassisList(value: Array<Chassis>): Asset;
|
|
358
|
+
addChassis(value?: Chassis, index?: number): Chassis;
|
|
359
359
|
|
|
360
360
|
hasOtModule(): boolean;
|
|
361
361
|
clearOtModule(): void;
|
|
@@ -384,8 +384,7 @@ export namespace Asset {
|
|
|
384
384
|
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
385
385
|
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
386
386
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
387
|
-
|
|
388
|
-
tagList: Array<string>,
|
|
387
|
+
tagList: Array<Tag.AsObject>,
|
|
389
388
|
core?: CoreFields.AsObject,
|
|
390
389
|
hw?: HardwareInfo.AsObject,
|
|
391
390
|
os?: OperatingSystemInfo.AsObject,
|
|
@@ -394,11 +393,38 @@ export namespace Asset {
|
|
|
394
393
|
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
395
394
|
osPatchList: Array<OperatingSystemPatch.AsObject>,
|
|
396
395
|
processorList: Array<Processor.AsObject>,
|
|
396
|
+
chassisList: Array<Chassis.AsObject>,
|
|
397
397
|
otModule?: OtModule.AsObject,
|
|
398
398
|
cloud?: CloudEntity.AsObject,
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
401
|
|
|
402
|
+
export class Tag extends jspb.Message {
|
|
403
|
+
getKey(): string;
|
|
404
|
+
setKey(value: string): Tag;
|
|
405
|
+
|
|
406
|
+
hasValue(): boolean;
|
|
407
|
+
clearValue(): void;
|
|
408
|
+
getValue(): string | undefined;
|
|
409
|
+
setValue(value: string): Tag;
|
|
410
|
+
|
|
411
|
+
serializeBinary(): Uint8Array;
|
|
412
|
+
toObject(includeInstance?: boolean): Tag.AsObject;
|
|
413
|
+
static toObject(includeInstance: boolean, msg: Tag): Tag.AsObject;
|
|
414
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
415
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
416
|
+
static serializeBinaryToWriter(message: Tag, writer: jspb.BinaryWriter): void;
|
|
417
|
+
static deserializeBinary(bytes: Uint8Array): Tag;
|
|
418
|
+
static deserializeBinaryFromReader(message: Tag, reader: jspb.BinaryReader): Tag;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
export namespace Tag {
|
|
422
|
+
export type AsObject = {
|
|
423
|
+
key: string,
|
|
424
|
+
value?: string,
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
|
|
402
428
|
export class CloudEntity extends jspb.Message {
|
|
403
429
|
|
|
404
430
|
hasBody(): boolean;
|
|
@@ -1621,6 +1647,70 @@ export namespace Processor {
|
|
|
1621
1647
|
}
|
|
1622
1648
|
}
|
|
1623
1649
|
|
|
1650
|
+
export class Chassis extends jspb.Message {
|
|
1651
|
+
clearTypeList(): void;
|
|
1652
|
+
getTypeList(): Array<MappedValue>;
|
|
1653
|
+
setTypeList(value: Array<MappedValue>): Chassis;
|
|
1654
|
+
addType(value?: MappedValue, index?: number): MappedValue;
|
|
1655
|
+
|
|
1656
|
+
hasChassisLockPresent(): boolean;
|
|
1657
|
+
clearChassisLockPresent(): void;
|
|
1658
|
+
getChassisLockPresent(): boolean | undefined;
|
|
1659
|
+
setChassisLockPresent(value: boolean): Chassis;
|
|
1660
|
+
|
|
1661
|
+
hasChassisManufacturer(): boolean;
|
|
1662
|
+
clearChassisManufacturer(): void;
|
|
1663
|
+
getChassisManufacturer(): string | undefined;
|
|
1664
|
+
setChassisManufacturer(value: string): Chassis;
|
|
1665
|
+
|
|
1666
|
+
hasChassisSecurityStatus(): boolean;
|
|
1667
|
+
clearChassisSecurityStatus(): void;
|
|
1668
|
+
getChassisSecurityStatus(): MappedValue | undefined;
|
|
1669
|
+
setChassisSecurityStatus(value?: MappedValue): Chassis;
|
|
1670
|
+
|
|
1671
|
+
hasChassisSerialNumber(): boolean;
|
|
1672
|
+
clearChassisSerialNumber(): void;
|
|
1673
|
+
getChassisSerialNumber(): string | undefined;
|
|
1674
|
+
setChassisSerialNumber(value: string): Chassis;
|
|
1675
|
+
|
|
1676
|
+
hasChassisAssetTag(): boolean;
|
|
1677
|
+
clearChassisAssetTag(): void;
|
|
1678
|
+
getChassisAssetTag(): string | undefined;
|
|
1679
|
+
setChassisAssetTag(value: string): Chassis;
|
|
1680
|
+
|
|
1681
|
+
hasChassisVersion(): boolean;
|
|
1682
|
+
clearChassisVersion(): void;
|
|
1683
|
+
getChassisVersion(): string | undefined;
|
|
1684
|
+
setChassisVersion(value: string): Chassis;
|
|
1685
|
+
|
|
1686
|
+
hasChassisBootupState(): boolean;
|
|
1687
|
+
clearChassisBootupState(): void;
|
|
1688
|
+
getChassisBootupState(): MappedValue | undefined;
|
|
1689
|
+
setChassisBootupState(value?: MappedValue): Chassis;
|
|
1690
|
+
|
|
1691
|
+
serializeBinary(): Uint8Array;
|
|
1692
|
+
toObject(includeInstance?: boolean): Chassis.AsObject;
|
|
1693
|
+
static toObject(includeInstance: boolean, msg: Chassis): Chassis.AsObject;
|
|
1694
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1695
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1696
|
+
static serializeBinaryToWriter(message: Chassis, writer: jspb.BinaryWriter): void;
|
|
1697
|
+
static deserializeBinary(bytes: Uint8Array): Chassis;
|
|
1698
|
+
static deserializeBinaryFromReader(message: Chassis, reader: jspb.BinaryReader): Chassis;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
export namespace Chassis {
|
|
1702
|
+
export type AsObject = {
|
|
1703
|
+
typeList: Array<MappedValue.AsObject>,
|
|
1704
|
+
chassisLockPresent?: boolean,
|
|
1705
|
+
chassisManufacturer?: string,
|
|
1706
|
+
chassisSecurityStatus?: MappedValue.AsObject,
|
|
1707
|
+
chassisSerialNumber?: string,
|
|
1708
|
+
chassisAssetTag?: string,
|
|
1709
|
+
chassisVersion?: string,
|
|
1710
|
+
chassisBootupState?: MappedValue.AsObject,
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1624
1714
|
export class MappedValue extends jspb.Message {
|
|
1625
1715
|
getValue(): number;
|
|
1626
1716
|
setValue(value: number): MappedValue;
|