@lansweeper/data-platform-outbound-grpc 0.1.27 → 0.1.28

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.
@@ -367,6 +367,11 @@ export class Asset extends jspb.Message {
367
367
  getMemory(): Memory | undefined;
368
368
  setMemory(value?: Memory): Asset;
369
369
 
370
+ hasMotherboard(): boolean;
371
+ clearMotherboard(): void;
372
+ getMotherboard(): Motherboard | undefined;
373
+ setMotherboard(value?: Motherboard): Asset;
374
+
370
375
  hasOtModule(): boolean;
371
376
  clearOtModule(): void;
372
377
  getOtModule(): OtModule | undefined;
@@ -406,6 +411,7 @@ export namespace Asset {
406
411
  processorList: Array<Processor.AsObject>,
407
412
  chassis?: Chassis.AsObject,
408
413
  memory?: Memory.AsObject,
414
+ motherboard?: Motherboard.AsObject,
409
415
  otModule?: OtModule.AsObject,
410
416
  cloud?: CloudEntity.AsObject,
411
417
  }
@@ -1756,6 +1762,125 @@ export namespace Chassis {
1756
1762
  }
1757
1763
  }
1758
1764
 
1765
+ export class Motherboard extends jspb.Message {
1766
+ getName(): string;
1767
+ setName(value: string): Motherboard;
1768
+ clearConfigOptionsList(): void;
1769
+ getConfigOptionsList(): Array<string>;
1770
+ setConfigOptionsList(value: Array<string>): Motherboard;
1771
+ addConfigOptions(value: string, index?: number): string;
1772
+
1773
+ hasIsHostingBoard(): boolean;
1774
+ clearIsHostingBoard(): void;
1775
+ getIsHostingBoard(): boolean | undefined;
1776
+ setIsHostingBoard(value: boolean): Motherboard;
1777
+
1778
+ hasIsPoweredOn(): boolean;
1779
+ clearIsPoweredOn(): void;
1780
+ getIsPoweredOn(): boolean | undefined;
1781
+ setIsPoweredOn(value: boolean): Motherboard;
1782
+
1783
+ hasLocation(): boolean;
1784
+ clearLocation(): void;
1785
+ getLocation(): string | undefined;
1786
+ setLocation(value: string): Motherboard;
1787
+
1788
+ hasManufacturer(): boolean;
1789
+ clearManufacturer(): void;
1790
+ getManufacturer(): string | undefined;
1791
+ setManufacturer(value: string): Motherboard;
1792
+
1793
+ hasSerialNumber(): boolean;
1794
+ clearSerialNumber(): void;
1795
+ getSerialNumber(): string | undefined;
1796
+ setSerialNumber(value: string): Motherboard;
1797
+
1798
+ hasTag(): boolean;
1799
+ clearTag(): void;
1800
+ getTag(): string | undefined;
1801
+ setTag(value: string): Motherboard;
1802
+
1803
+ hasType(): boolean;
1804
+ clearType(): void;
1805
+ getType(): string | undefined;
1806
+ setType(value: string): Motherboard;
1807
+
1808
+ hasVersion(): boolean;
1809
+ clearVersion(): void;
1810
+ getVersion(): string | undefined;
1811
+ setVersion(value: string): Motherboard;
1812
+ clearDeviceList(): void;
1813
+ getDeviceList(): Array<MotherboardDevice>;
1814
+ setDeviceList(value: Array<MotherboardDevice>): Motherboard;
1815
+ addDevice(value?: MotherboardDevice, index?: number): MotherboardDevice;
1816
+
1817
+ serializeBinary(): Uint8Array;
1818
+ toObject(includeInstance?: boolean): Motherboard.AsObject;
1819
+ static toObject(includeInstance: boolean, msg: Motherboard): Motherboard.AsObject;
1820
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1821
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1822
+ static serializeBinaryToWriter(message: Motherboard, writer: jspb.BinaryWriter): void;
1823
+ static deserializeBinary(bytes: Uint8Array): Motherboard;
1824
+ static deserializeBinaryFromReader(message: Motherboard, reader: jspb.BinaryReader): Motherboard;
1825
+ }
1826
+
1827
+ export namespace Motherboard {
1828
+ export type AsObject = {
1829
+ name: string,
1830
+ configOptionsList: Array<string>,
1831
+ isHostingBoard?: boolean,
1832
+ isPoweredOn?: boolean,
1833
+ location?: string,
1834
+ manufacturer?: string,
1835
+ serialNumber?: string,
1836
+ tag?: string,
1837
+ type?: string,
1838
+ version?: string,
1839
+ deviceList: Array<MotherboardDevice.AsObject>,
1840
+ }
1841
+ }
1842
+
1843
+ export class MotherboardDevice extends jspb.Message {
1844
+
1845
+ hasDescription(): boolean;
1846
+ clearDescription(): void;
1847
+ getDescription(): string | undefined;
1848
+ setDescription(value: string): MotherboardDevice;
1849
+
1850
+ hasEnabled(): boolean;
1851
+ clearEnabled(): void;
1852
+ getEnabled(): boolean | undefined;
1853
+ setEnabled(value: boolean): MotherboardDevice;
1854
+
1855
+ hasTag(): boolean;
1856
+ clearTag(): void;
1857
+ getTag(): string | undefined;
1858
+ setTag(value: string): MotherboardDevice;
1859
+
1860
+ hasType(): boolean;
1861
+ clearType(): void;
1862
+ getType(): MappedValue | undefined;
1863
+ setType(value?: MappedValue): MotherboardDevice;
1864
+
1865
+ serializeBinary(): Uint8Array;
1866
+ toObject(includeInstance?: boolean): MotherboardDevice.AsObject;
1867
+ static toObject(includeInstance: boolean, msg: MotherboardDevice): MotherboardDevice.AsObject;
1868
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1869
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1870
+ static serializeBinaryToWriter(message: MotherboardDevice, writer: jspb.BinaryWriter): void;
1871
+ static deserializeBinary(bytes: Uint8Array): MotherboardDevice;
1872
+ static deserializeBinaryFromReader(message: MotherboardDevice, reader: jspb.BinaryReader): MotherboardDevice;
1873
+ }
1874
+
1875
+ export namespace MotherboardDevice {
1876
+ export type AsObject = {
1877
+ description?: string,
1878
+ enabled?: boolean,
1879
+ tag?: string,
1880
+ type?: MappedValue.AsObject,
1881
+ }
1882
+ }
1883
+
1759
1884
  export class Memory extends jspb.Message {
1760
1885
  getInstalledSize(): number;
1761
1886
  setInstalledSize(value: number): Memory;