@lansweeper/discovery-sensor-proto 2.79.2 → 2.80.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1703,6 +1703,16 @@ export class SoftwareEntry extends jspb.Message {
1703
1703
  getApplicationId(): google_protobuf_wrappers_pb.StringValue | undefined;
1704
1704
  setApplicationId(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1705
1705
 
1706
+ hasRpmDataPoints(): boolean;
1707
+ clearRpmDataPoints(): void;
1708
+ getRpmDataPoints(): RhelBasedSoftwareDataPoints | undefined;
1709
+ setRpmDataPoints(value?: RhelBasedSoftwareDataPoints): SoftwareEntry;
1710
+
1711
+ hasDebianDataPoints(): boolean;
1712
+ clearDebianDataPoints(): void;
1713
+ getDebianDataPoints(): DebianBasedSoftwareDataPoints | undefined;
1714
+ setDebianDataPoints(value?: DebianBasedSoftwareDataPoints): SoftwareEntry;
1715
+
1706
1716
  serializeBinary(): Uint8Array;
1707
1717
  toObject(includeInstance?: boolean): SoftwareEntry.AsObject;
1708
1718
  static toObject(includeInstance: boolean, msg: SoftwareEntry): SoftwareEntry.AsObject;
@@ -1731,6 +1741,84 @@ export namespace SoftwareEntry {
1731
1741
  softwarePublisher?: google_protobuf_wrappers_pb.StringValue.AsObject,
1732
1742
  approved?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1733
1743
  applicationId?: google_protobuf_wrappers_pb.StringValue.AsObject,
1744
+ rpmDataPoints?: RhelBasedSoftwareDataPoints.AsObject,
1745
+ debianDataPoints?: DebianBasedSoftwareDataPoints.AsObject,
1746
+ }
1747
+ }
1748
+
1749
+ export class RhelBasedSoftwareDataPoints extends jspb.Message {
1750
+
1751
+ hasSourceRpm(): boolean;
1752
+ clearSourceRpm(): void;
1753
+ getSourceRpm(): google_protobuf_wrappers_pb.StringValue | undefined;
1754
+ setSourceRpm(value?: google_protobuf_wrappers_pb.StringValue): RhelBasedSoftwareDataPoints;
1755
+
1756
+ hasEpoch(): boolean;
1757
+ clearEpoch(): void;
1758
+ getEpoch(): google_protobuf_wrappers_pb.UInt32Value | undefined;
1759
+ setEpoch(value?: google_protobuf_wrappers_pb.UInt32Value): RhelBasedSoftwareDataPoints;
1760
+
1761
+ hasUiFromRepo(): boolean;
1762
+ clearUiFromRepo(): void;
1763
+ getUiFromRepo(): google_protobuf_wrappers_pb.StringValue | undefined;
1764
+ setUiFromRepo(value?: google_protobuf_wrappers_pb.StringValue): RhelBasedSoftwareDataPoints;
1765
+
1766
+ serializeBinary(): Uint8Array;
1767
+ toObject(includeInstance?: boolean): RhelBasedSoftwareDataPoints.AsObject;
1768
+ static toObject(includeInstance: boolean, msg: RhelBasedSoftwareDataPoints): RhelBasedSoftwareDataPoints.AsObject;
1769
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1770
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1771
+ static serializeBinaryToWriter(message: RhelBasedSoftwareDataPoints, writer: jspb.BinaryWriter): void;
1772
+ static deserializeBinary(bytes: Uint8Array): RhelBasedSoftwareDataPoints;
1773
+ static deserializeBinaryFromReader(message: RhelBasedSoftwareDataPoints, reader: jspb.BinaryReader): RhelBasedSoftwareDataPoints;
1774
+ }
1775
+
1776
+ export namespace RhelBasedSoftwareDataPoints {
1777
+ export type AsObject = {
1778
+ sourceRpm?: google_protobuf_wrappers_pb.StringValue.AsObject,
1779
+ epoch?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
1780
+ uiFromRepo?: google_protobuf_wrappers_pb.StringValue.AsObject,
1781
+ }
1782
+ }
1783
+
1784
+ export class DebianBasedSoftwareDataPoints extends jspb.Message {
1785
+
1786
+ hasDpkgStatusAbbrev(): boolean;
1787
+ clearDpkgStatusAbbrev(): void;
1788
+ getDpkgStatusAbbrev(): google_protobuf_wrappers_pb.StringValue | undefined;
1789
+ setDpkgStatusAbbrev(value?: google_protobuf_wrappers_pb.StringValue): DebianBasedSoftwareDataPoints;
1790
+
1791
+ hasBinaryPackageName(): boolean;
1792
+ clearBinaryPackageName(): void;
1793
+ getBinaryPackageName(): google_protobuf_wrappers_pb.StringValue | undefined;
1794
+ setBinaryPackageName(value?: google_protobuf_wrappers_pb.StringValue): DebianBasedSoftwareDataPoints;
1795
+
1796
+ hasSourcePackageName(): boolean;
1797
+ clearSourcePackageName(): void;
1798
+ getSourcePackageName(): google_protobuf_wrappers_pb.StringValue | undefined;
1799
+ setSourcePackageName(value?: google_protobuf_wrappers_pb.StringValue): DebianBasedSoftwareDataPoints;
1800
+
1801
+ hasSourceVersion(): boolean;
1802
+ clearSourceVersion(): void;
1803
+ getSourceVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
1804
+ setSourceVersion(value?: google_protobuf_wrappers_pb.StringValue): DebianBasedSoftwareDataPoints;
1805
+
1806
+ serializeBinary(): Uint8Array;
1807
+ toObject(includeInstance?: boolean): DebianBasedSoftwareDataPoints.AsObject;
1808
+ static toObject(includeInstance: boolean, msg: DebianBasedSoftwareDataPoints): DebianBasedSoftwareDataPoints.AsObject;
1809
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1810
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1811
+ static serializeBinaryToWriter(message: DebianBasedSoftwareDataPoints, writer: jspb.BinaryWriter): void;
1812
+ static deserializeBinary(bytes: Uint8Array): DebianBasedSoftwareDataPoints;
1813
+ static deserializeBinaryFromReader(message: DebianBasedSoftwareDataPoints, reader: jspb.BinaryReader): DebianBasedSoftwareDataPoints;
1814
+ }
1815
+
1816
+ export namespace DebianBasedSoftwareDataPoints {
1817
+ export type AsObject = {
1818
+ dpkgStatusAbbrev?: google_protobuf_wrappers_pb.StringValue.AsObject,
1819
+ binaryPackageName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1820
+ sourcePackageName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1821
+ sourceVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
1734
1822
  }
1735
1823
  }
1736
1824