@lansweeper/discovery-sensor-proto 2.56.0 → 2.57.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.
|
@@ -4345,6 +4345,21 @@ export class ThunderboltController extends jspb.Message {
|
|
|
4345
4345
|
setPortsList(value: Array<ThunderboltPort>): ThunderboltController;
|
|
4346
4346
|
addPorts(value?: ThunderboltPort, index?: number): ThunderboltPort;
|
|
4347
4347
|
|
|
4348
|
+
hasDeviceId(): boolean;
|
|
4349
|
+
clearDeviceId(): void;
|
|
4350
|
+
getDeviceId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4351
|
+
setDeviceId(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltController;
|
|
4352
|
+
|
|
4353
|
+
hasDeviceRevision(): boolean;
|
|
4354
|
+
clearDeviceRevision(): void;
|
|
4355
|
+
getDeviceRevision(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4356
|
+
setDeviceRevision(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltController;
|
|
4357
|
+
|
|
4358
|
+
hasVendorId(): boolean;
|
|
4359
|
+
clearVendorId(): void;
|
|
4360
|
+
getVendorId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4361
|
+
setVendorId(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltController;
|
|
4362
|
+
|
|
4348
4363
|
serializeBinary(): Uint8Array;
|
|
4349
4364
|
toObject(includeInstance?: boolean): ThunderboltController.AsObject;
|
|
4350
4365
|
static toObject(includeInstance: boolean, msg: ThunderboltController): ThunderboltController.AsObject;
|
|
@@ -4365,6 +4380,9 @@ export namespace ThunderboltController {
|
|
|
4365
4380
|
switchVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4366
4381
|
vendorName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4367
4382
|
portsList: Array<ThunderboltPort.AsObject>,
|
|
4383
|
+
deviceId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4384
|
+
deviceRevision?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4385
|
+
vendorId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4368
4386
|
}
|
|
4369
4387
|
}
|
|
4370
4388
|
|
|
@@ -4395,6 +4413,21 @@ export class ThunderboltPort extends jspb.Message {
|
|
|
4395
4413
|
getReceptacleStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4396
4414
|
setReceptacleStatus(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltPort;
|
|
4397
4415
|
|
|
4416
|
+
hasCableFirmwareVersion(): boolean;
|
|
4417
|
+
clearCableFirmwareVersion(): void;
|
|
4418
|
+
getCableFirmwareVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4419
|
+
setCableFirmwareVersion(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltPort;
|
|
4420
|
+
|
|
4421
|
+
hasCableSerialNumber(): boolean;
|
|
4422
|
+
clearCableSerialNumber(): void;
|
|
4423
|
+
getCableSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4424
|
+
setCableSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltPort;
|
|
4425
|
+
|
|
4426
|
+
hasLinkControllerFirmwareVersion(): boolean;
|
|
4427
|
+
clearLinkControllerFirmwareVersion(): void;
|
|
4428
|
+
getLinkControllerFirmwareVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4429
|
+
setLinkControllerFirmwareVersion(value?: google_protobuf_wrappers_pb.StringValue): ThunderboltPort;
|
|
4430
|
+
|
|
4398
4431
|
serializeBinary(): Uint8Array;
|
|
4399
4432
|
toObject(includeInstance?: boolean): ThunderboltPort.AsObject;
|
|
4400
4433
|
static toObject(includeInstance: boolean, msg: ThunderboltPort): ThunderboltPort.AsObject;
|
|
@@ -4412,6 +4445,9 @@ export namespace ThunderboltPort {
|
|
|
4412
4445
|
linkStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4413
4446
|
receptacleId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4414
4447
|
receptacleStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4448
|
+
cableFirmwareVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4449
|
+
cableSerialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4450
|
+
linkControllerFirmwareVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4415
4451
|
}
|
|
4416
4452
|
}
|
|
4417
4453
|
|
|
@@ -5453,3 +5489,87 @@ export namespace RegionalRecoveryOsSettings {
|
|
|
5453
5489
|
bootLocale?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5454
5490
|
}
|
|
5455
5491
|
}
|
|
5492
|
+
|
|
5493
|
+
export class MacStartupItems extends jspb.Message {
|
|
5494
|
+
clearEntriesList(): void;
|
|
5495
|
+
getEntriesList(): Array<StartupItem>;
|
|
5496
|
+
setEntriesList(value: Array<StartupItem>): MacStartupItems;
|
|
5497
|
+
addEntries(value?: StartupItem, index?: number): StartupItem;
|
|
5498
|
+
|
|
5499
|
+
serializeBinary(): Uint8Array;
|
|
5500
|
+
toObject(includeInstance?: boolean): MacStartupItems.AsObject;
|
|
5501
|
+
static toObject(includeInstance: boolean, msg: MacStartupItems): MacStartupItems.AsObject;
|
|
5502
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5503
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5504
|
+
static serializeBinaryToWriter(message: MacStartupItems, writer: jspb.BinaryWriter): void;
|
|
5505
|
+
static deserializeBinary(bytes: Uint8Array): MacStartupItems;
|
|
5506
|
+
static deserializeBinaryFromReader(message: MacStartupItems, reader: jspb.BinaryReader): MacStartupItems;
|
|
5507
|
+
}
|
|
5508
|
+
|
|
5509
|
+
export namespace MacStartupItems {
|
|
5510
|
+
export type AsObject = {
|
|
5511
|
+
entriesList: Array<StartupItem.AsObject>,
|
|
5512
|
+
}
|
|
5513
|
+
}
|
|
5514
|
+
|
|
5515
|
+
export class StartupItem extends jspb.Message {
|
|
5516
|
+
|
|
5517
|
+
hasName(): boolean;
|
|
5518
|
+
clearName(): void;
|
|
5519
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5520
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): StartupItem;
|
|
5521
|
+
|
|
5522
|
+
hasDescription(): boolean;
|
|
5523
|
+
clearDescription(): void;
|
|
5524
|
+
getDescription(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5525
|
+
setDescription(value?: google_protobuf_wrappers_pb.StringValue): StartupItem;
|
|
5526
|
+
|
|
5527
|
+
hasEnabled(): boolean;
|
|
5528
|
+
clearEnabled(): void;
|
|
5529
|
+
getEnabled(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5530
|
+
setEnabled(value?: google_protobuf_wrappers_pb.StringValue): StartupItem;
|
|
5531
|
+
|
|
5532
|
+
hasLocation(): boolean;
|
|
5533
|
+
clearLocation(): void;
|
|
5534
|
+
getLocation(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5535
|
+
setLocation(value?: google_protobuf_wrappers_pb.StringValue): StartupItem;
|
|
5536
|
+
|
|
5537
|
+
hasOrderPreference(): boolean;
|
|
5538
|
+
clearOrderPreference(): void;
|
|
5539
|
+
getOrderPreference(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5540
|
+
setOrderPreference(value?: google_protobuf_wrappers_pb.StringValue): StartupItem;
|
|
5541
|
+
clearProvidesList(): void;
|
|
5542
|
+
getProvidesList(): Array<string>;
|
|
5543
|
+
setProvidesList(value: Array<string>): StartupItem;
|
|
5544
|
+
addProvides(value: string, index?: number): string;
|
|
5545
|
+
clearRequiresList(): void;
|
|
5546
|
+
getRequiresList(): Array<string>;
|
|
5547
|
+
setRequiresList(value: Array<string>): StartupItem;
|
|
5548
|
+
addRequires(value: string, index?: number): string;
|
|
5549
|
+
clearUsesList(): void;
|
|
5550
|
+
getUsesList(): Array<string>;
|
|
5551
|
+
setUsesList(value: Array<string>): StartupItem;
|
|
5552
|
+
addUses(value: string, index?: number): string;
|
|
5553
|
+
|
|
5554
|
+
serializeBinary(): Uint8Array;
|
|
5555
|
+
toObject(includeInstance?: boolean): StartupItem.AsObject;
|
|
5556
|
+
static toObject(includeInstance: boolean, msg: StartupItem): StartupItem.AsObject;
|
|
5557
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5558
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5559
|
+
static serializeBinaryToWriter(message: StartupItem, writer: jspb.BinaryWriter): void;
|
|
5560
|
+
static deserializeBinary(bytes: Uint8Array): StartupItem;
|
|
5561
|
+
static deserializeBinaryFromReader(message: StartupItem, reader: jspb.BinaryReader): StartupItem;
|
|
5562
|
+
}
|
|
5563
|
+
|
|
5564
|
+
export namespace StartupItem {
|
|
5565
|
+
export type AsObject = {
|
|
5566
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5567
|
+
description?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5568
|
+
enabled?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5569
|
+
location?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5570
|
+
orderPreference?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5571
|
+
providesList: Array<string>,
|
|
5572
|
+
requiresList: Array<string>,
|
|
5573
|
+
usesList: Array<string>,
|
|
5574
|
+
}
|
|
5575
|
+
}
|