@lansweeper/data-platform-outbound-grpc 0.1.92 → 0.1.93
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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +361 -5
- package/gen-proto/outbound_pb.js +2866 -57
- package/generated-go/outbound.pb.go +9247 -8327
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +83 -1
|
@@ -508,6 +508,10 @@ export class Asset extends jspb.Message {
|
|
|
508
508
|
clearCloud(): void;
|
|
509
509
|
getCloud(): CloudEntity | undefined;
|
|
510
510
|
setCloud(value?: CloudEntity): Asset;
|
|
511
|
+
clearChangeLogList(): void;
|
|
512
|
+
getChangeLogList(): Array<AssetChangeEvent>;
|
|
513
|
+
setChangeLogList(value: Array<AssetChangeEvent>): Asset;
|
|
514
|
+
addChangeLog(value?: AssetChangeEvent, index?: number): AssetChangeEvent;
|
|
511
515
|
|
|
512
516
|
serializeBinary(): Uint8Array;
|
|
513
517
|
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
@@ -546,9 +550,54 @@ export namespace Asset {
|
|
|
546
550
|
computer?: Computer.AsObject,
|
|
547
551
|
otModule?: OtModule.AsObject,
|
|
548
552
|
cloud?: CloudEntity.AsObject,
|
|
553
|
+
changeLogList: Array<AssetChangeEvent.AsObject>,
|
|
549
554
|
}
|
|
550
555
|
}
|
|
551
556
|
|
|
557
|
+
export class AssetChangeEvent extends jspb.Message {
|
|
558
|
+
|
|
559
|
+
hasTimestamp(): boolean;
|
|
560
|
+
clearTimestamp(): void;
|
|
561
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
562
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): AssetChangeEvent;
|
|
563
|
+
|
|
564
|
+
hasSw(): boolean;
|
|
565
|
+
clearSw(): void;
|
|
566
|
+
getSw(): SoftwareChangeEvent | undefined;
|
|
567
|
+
setSw(value?: SoftwareChangeEvent): AssetChangeEvent;
|
|
568
|
+
|
|
569
|
+
hasOs(): boolean;
|
|
570
|
+
clearOs(): void;
|
|
571
|
+
getOs(): OperatingSystemChangeEvent | undefined;
|
|
572
|
+
setOs(value?: OperatingSystemChangeEvent): AssetChangeEvent;
|
|
573
|
+
|
|
574
|
+
getEventCase(): AssetChangeEvent.EventCase;
|
|
575
|
+
|
|
576
|
+
serializeBinary(): Uint8Array;
|
|
577
|
+
toObject(includeInstance?: boolean): AssetChangeEvent.AsObject;
|
|
578
|
+
static toObject(includeInstance: boolean, msg: AssetChangeEvent): AssetChangeEvent.AsObject;
|
|
579
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
580
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
581
|
+
static serializeBinaryToWriter(message: AssetChangeEvent, writer: jspb.BinaryWriter): void;
|
|
582
|
+
static deserializeBinary(bytes: Uint8Array): AssetChangeEvent;
|
|
583
|
+
static deserializeBinaryFromReader(message: AssetChangeEvent, reader: jspb.BinaryReader): AssetChangeEvent;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
export namespace AssetChangeEvent {
|
|
587
|
+
export type AsObject = {
|
|
588
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
589
|
+
sw?: SoftwareChangeEvent.AsObject,
|
|
590
|
+
os?: OperatingSystemChangeEvent.AsObject,
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
export enum EventCase {
|
|
594
|
+
EVENT_NOT_SET = 0,
|
|
595
|
+
SW = 2,
|
|
596
|
+
OS = 3,
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
}
|
|
600
|
+
|
|
552
601
|
export class Computer extends jspb.Message {
|
|
553
602
|
|
|
554
603
|
hasChassis(): boolean;
|
|
@@ -717,6 +766,11 @@ export class Computer extends jspb.Message {
|
|
|
717
766
|
setPageFileList(value: Array<ComputerWindowsPageFile>): Computer;
|
|
718
767
|
addPageFile(value?: ComputerWindowsPageFile, index?: number): ComputerWindowsPageFile;
|
|
719
768
|
|
|
769
|
+
hasComputerSystem(): boolean;
|
|
770
|
+
clearComputerSystem(): void;
|
|
771
|
+
getComputerSystem(): WindowsComputerSystem | undefined;
|
|
772
|
+
setComputerSystem(value?: WindowsComputerSystem): Computer;
|
|
773
|
+
|
|
720
774
|
hasSoftwareInventory(): boolean;
|
|
721
775
|
clearSoftwareInventory(): void;
|
|
722
776
|
getSoftwareInventory(): SoftwareInventory | undefined;
|
|
@@ -866,6 +920,7 @@ export namespace Computer {
|
|
|
866
920
|
osServiceList: Array<OperatingSystemService.AsObject>,
|
|
867
921
|
computerSystemProduct?: ComputerSystemProduct.AsObject,
|
|
868
922
|
pageFileList: Array<ComputerWindowsPageFile.AsObject>,
|
|
923
|
+
computerSystem?: WindowsComputerSystem.AsObject,
|
|
869
924
|
softwareInventory?: SoftwareInventory.AsObject,
|
|
870
925
|
antivirusList: Array<AntivirusSoftware.AsObject>,
|
|
871
926
|
autoRunCommandList: Array<AutoRunCommand.AsObject>,
|
|
@@ -3050,6 +3105,57 @@ export namespace WindowsOperatingSystemInfo {
|
|
|
3050
3105
|
}
|
|
3051
3106
|
}
|
|
3052
3107
|
|
|
3108
|
+
export class OperatingSystemChangeEvent extends jspb.Message {
|
|
3109
|
+
getEventType(): OperatingSystemChangeEvent.EventType;
|
|
3110
|
+
setEventType(value: OperatingSystemChangeEvent.EventType): OperatingSystemChangeEvent;
|
|
3111
|
+
|
|
3112
|
+
hasStart(): boolean;
|
|
3113
|
+
clearStart(): void;
|
|
3114
|
+
getStart(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3115
|
+
setStart(value?: google_protobuf_timestamp_pb.Timestamp): OperatingSystemChangeEvent;
|
|
3116
|
+
|
|
3117
|
+
hasEnd(): boolean;
|
|
3118
|
+
clearEnd(): void;
|
|
3119
|
+
getEnd(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3120
|
+
setEnd(value?: google_protobuf_timestamp_pb.Timestamp): OperatingSystemChangeEvent;
|
|
3121
|
+
|
|
3122
|
+
hasOs(): boolean;
|
|
3123
|
+
clearOs(): void;
|
|
3124
|
+
getOs(): OperatingSystem | undefined;
|
|
3125
|
+
setOs(value?: OperatingSystem): OperatingSystemChangeEvent;
|
|
3126
|
+
|
|
3127
|
+
hasPrevOs(): boolean;
|
|
3128
|
+
clearPrevOs(): void;
|
|
3129
|
+
getPrevOs(): OperatingSystem | undefined;
|
|
3130
|
+
setPrevOs(value?: OperatingSystem): OperatingSystemChangeEvent;
|
|
3131
|
+
|
|
3132
|
+
serializeBinary(): Uint8Array;
|
|
3133
|
+
toObject(includeInstance?: boolean): OperatingSystemChangeEvent.AsObject;
|
|
3134
|
+
static toObject(includeInstance: boolean, msg: OperatingSystemChangeEvent): OperatingSystemChangeEvent.AsObject;
|
|
3135
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3136
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3137
|
+
static serializeBinaryToWriter(message: OperatingSystemChangeEvent, writer: jspb.BinaryWriter): void;
|
|
3138
|
+
static deserializeBinary(bytes: Uint8Array): OperatingSystemChangeEvent;
|
|
3139
|
+
static deserializeBinaryFromReader(message: OperatingSystemChangeEvent, reader: jspb.BinaryReader): OperatingSystemChangeEvent;
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
export namespace OperatingSystemChangeEvent {
|
|
3143
|
+
export type AsObject = {
|
|
3144
|
+
eventType: OperatingSystemChangeEvent.EventType,
|
|
3145
|
+
start?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3146
|
+
end?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3147
|
+
os?: OperatingSystem.AsObject,
|
|
3148
|
+
prevOs?: OperatingSystem.AsObject,
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
export enum EventType {
|
|
3152
|
+
INSTALL = 0,
|
|
3153
|
+
UNINSTALL = 1,
|
|
3154
|
+
UPDATE = 2,
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3053
3159
|
export class OperatingSystemFeature extends jspb.Message {
|
|
3054
3160
|
getName(): string;
|
|
3055
3161
|
setName(value: string): OperatingSystemFeature;
|
|
@@ -6994,6 +7100,261 @@ export namespace ComputerSystemProduct {
|
|
|
6994
7100
|
}
|
|
6995
7101
|
}
|
|
6996
7102
|
|
|
7103
|
+
export class WindowsComputerSystem extends jspb.Message {
|
|
7104
|
+
|
|
7105
|
+
hasAdminPasswordStatus(): boolean;
|
|
7106
|
+
clearAdminPasswordStatus(): void;
|
|
7107
|
+
getAdminPasswordStatus(): MappedValue | undefined;
|
|
7108
|
+
setAdminPasswordStatus(value?: MappedValue): WindowsComputerSystem;
|
|
7109
|
+
|
|
7110
|
+
hasAutomaticResetBootOption(): boolean;
|
|
7111
|
+
clearAutomaticResetBootOption(): void;
|
|
7112
|
+
getAutomaticResetBootOption(): boolean | undefined;
|
|
7113
|
+
setAutomaticResetBootOption(value: boolean): WindowsComputerSystem;
|
|
7114
|
+
|
|
7115
|
+
hasAutomaticResetCapability(): boolean;
|
|
7116
|
+
clearAutomaticResetCapability(): void;
|
|
7117
|
+
getAutomaticResetCapability(): boolean | undefined;
|
|
7118
|
+
setAutomaticResetCapability(value: boolean): WindowsComputerSystem;
|
|
7119
|
+
|
|
7120
|
+
hasBootOptionOnLimit(): boolean;
|
|
7121
|
+
clearBootOptionOnLimit(): void;
|
|
7122
|
+
getBootOptionOnLimit(): MappedValue | undefined;
|
|
7123
|
+
setBootOptionOnLimit(value?: MappedValue): WindowsComputerSystem;
|
|
7124
|
+
|
|
7125
|
+
hasBootOptionOnWatchDog(): boolean;
|
|
7126
|
+
clearBootOptionOnWatchDog(): void;
|
|
7127
|
+
getBootOptionOnWatchDog(): MappedValue | undefined;
|
|
7128
|
+
setBootOptionOnWatchDog(value?: MappedValue): WindowsComputerSystem;
|
|
7129
|
+
|
|
7130
|
+
hasBootRomSupported(): boolean;
|
|
7131
|
+
clearBootRomSupported(): void;
|
|
7132
|
+
getBootRomSupported(): boolean | undefined;
|
|
7133
|
+
setBootRomSupported(value: boolean): WindowsComputerSystem;
|
|
7134
|
+
|
|
7135
|
+
hasBootUpState(): boolean;
|
|
7136
|
+
clearBootUpState(): void;
|
|
7137
|
+
getBootUpState(): string | undefined;
|
|
7138
|
+
setBootUpState(value: string): WindowsComputerSystem;
|
|
7139
|
+
|
|
7140
|
+
hasChassisBootUpState(): boolean;
|
|
7141
|
+
clearChassisBootUpState(): void;
|
|
7142
|
+
getChassisBootUpState(): MappedValue | undefined;
|
|
7143
|
+
setChassisBootUpState(value?: MappedValue): WindowsComputerSystem;
|
|
7144
|
+
|
|
7145
|
+
hasCurrentTimeZone(): boolean;
|
|
7146
|
+
clearCurrentTimeZone(): void;
|
|
7147
|
+
getCurrentTimeZone(): number | undefined;
|
|
7148
|
+
setCurrentTimeZone(value: number): WindowsComputerSystem;
|
|
7149
|
+
|
|
7150
|
+
hasDaylightInEffect(): boolean;
|
|
7151
|
+
clearDaylightInEffect(): void;
|
|
7152
|
+
getDaylightInEffect(): boolean | undefined;
|
|
7153
|
+
setDaylightInEffect(value: boolean): WindowsComputerSystem;
|
|
7154
|
+
|
|
7155
|
+
hasDescription(): boolean;
|
|
7156
|
+
clearDescription(): void;
|
|
7157
|
+
getDescription(): string | undefined;
|
|
7158
|
+
setDescription(value: string): WindowsComputerSystem;
|
|
7159
|
+
|
|
7160
|
+
hasDomain(): boolean;
|
|
7161
|
+
clearDomain(): void;
|
|
7162
|
+
getDomain(): string | undefined;
|
|
7163
|
+
setDomain(value: string): WindowsComputerSystem;
|
|
7164
|
+
|
|
7165
|
+
hasDomainRole(): boolean;
|
|
7166
|
+
clearDomainRole(): void;
|
|
7167
|
+
getDomainRole(): MappedValue | undefined;
|
|
7168
|
+
setDomainRole(value?: MappedValue): WindowsComputerSystem;
|
|
7169
|
+
|
|
7170
|
+
hasFrontPanelResetStatus(): boolean;
|
|
7171
|
+
clearFrontPanelResetStatus(): void;
|
|
7172
|
+
getFrontPanelResetStatus(): MappedValue | undefined;
|
|
7173
|
+
setFrontPanelResetStatus(value?: MappedValue): WindowsComputerSystem;
|
|
7174
|
+
|
|
7175
|
+
hasInfraredSupported(): boolean;
|
|
7176
|
+
clearInfraredSupported(): void;
|
|
7177
|
+
getInfraredSupported(): boolean | undefined;
|
|
7178
|
+
setInfraredSupported(value: boolean): WindowsComputerSystem;
|
|
7179
|
+
|
|
7180
|
+
hasKeyboardPasswordStatus(): boolean;
|
|
7181
|
+
clearKeyboardPasswordStatus(): void;
|
|
7182
|
+
getKeyboardPasswordStatus(): MappedValue | undefined;
|
|
7183
|
+
setKeyboardPasswordStatus(value?: MappedValue): WindowsComputerSystem;
|
|
7184
|
+
|
|
7185
|
+
hasManufacturer(): boolean;
|
|
7186
|
+
clearManufacturer(): void;
|
|
7187
|
+
getManufacturer(): string | undefined;
|
|
7188
|
+
setManufacturer(value: string): WindowsComputerSystem;
|
|
7189
|
+
|
|
7190
|
+
hasName(): boolean;
|
|
7191
|
+
clearName(): void;
|
|
7192
|
+
getName(): string | undefined;
|
|
7193
|
+
setName(value: string): WindowsComputerSystem;
|
|
7194
|
+
|
|
7195
|
+
hasModel(): boolean;
|
|
7196
|
+
clearModel(): void;
|
|
7197
|
+
getModel(): string | undefined;
|
|
7198
|
+
setModel(value: string): WindowsComputerSystem;
|
|
7199
|
+
|
|
7200
|
+
hasNetworkServerModeEnabled(): boolean;
|
|
7201
|
+
clearNetworkServerModeEnabled(): void;
|
|
7202
|
+
getNetworkServerModeEnabled(): boolean | undefined;
|
|
7203
|
+
setNetworkServerModeEnabled(value: boolean): WindowsComputerSystem;
|
|
7204
|
+
|
|
7205
|
+
hasNumberOfProcessors(): boolean;
|
|
7206
|
+
clearNumberOfProcessors(): void;
|
|
7207
|
+
getNumberOfProcessors(): number | undefined;
|
|
7208
|
+
setNumberOfProcessors(value: number): WindowsComputerSystem;
|
|
7209
|
+
|
|
7210
|
+
hasPauseAfterReset(): boolean;
|
|
7211
|
+
clearPauseAfterReset(): void;
|
|
7212
|
+
getPauseAfterReset(): number | undefined;
|
|
7213
|
+
setPauseAfterReset(value: number): WindowsComputerSystem;
|
|
7214
|
+
|
|
7215
|
+
hasPowerOnPasswordStatus(): boolean;
|
|
7216
|
+
clearPowerOnPasswordStatus(): void;
|
|
7217
|
+
getPowerOnPasswordStatus(): MappedValue | undefined;
|
|
7218
|
+
setPowerOnPasswordStatus(value?: MappedValue): WindowsComputerSystem;
|
|
7219
|
+
|
|
7220
|
+
hasPowerState(): boolean;
|
|
7221
|
+
clearPowerState(): void;
|
|
7222
|
+
getPowerState(): MappedValue | undefined;
|
|
7223
|
+
setPowerState(value?: MappedValue): WindowsComputerSystem;
|
|
7224
|
+
|
|
7225
|
+
hasPowerSupplyState(): boolean;
|
|
7226
|
+
clearPowerSupplyState(): void;
|
|
7227
|
+
getPowerSupplyState(): MappedValue | undefined;
|
|
7228
|
+
setPowerSupplyState(value?: MappedValue): WindowsComputerSystem;
|
|
7229
|
+
|
|
7230
|
+
hasPrimaryOwnerName(): boolean;
|
|
7231
|
+
clearPrimaryOwnerName(): void;
|
|
7232
|
+
getPrimaryOwnerName(): string | undefined;
|
|
7233
|
+
setPrimaryOwnerName(value: string): WindowsComputerSystem;
|
|
7234
|
+
|
|
7235
|
+
hasResetCapability(): boolean;
|
|
7236
|
+
clearResetCapability(): void;
|
|
7237
|
+
getResetCapability(): MappedValue | undefined;
|
|
7238
|
+
setResetCapability(value?: MappedValue): WindowsComputerSystem;
|
|
7239
|
+
|
|
7240
|
+
hasResetCount(): boolean;
|
|
7241
|
+
clearResetCount(): void;
|
|
7242
|
+
getResetCount(): number | undefined;
|
|
7243
|
+
setResetCount(value: number): WindowsComputerSystem;
|
|
7244
|
+
|
|
7245
|
+
hasResetLimit(): boolean;
|
|
7246
|
+
clearResetLimit(): void;
|
|
7247
|
+
getResetLimit(): number | undefined;
|
|
7248
|
+
setResetLimit(value: number): WindowsComputerSystem;
|
|
7249
|
+
clearRolesList(): void;
|
|
7250
|
+
getRolesList(): Array<string>;
|
|
7251
|
+
setRolesList(value: Array<string>): WindowsComputerSystem;
|
|
7252
|
+
addRoles(value: string, index?: number): string;
|
|
7253
|
+
|
|
7254
|
+
hasStatus(): boolean;
|
|
7255
|
+
clearStatus(): void;
|
|
7256
|
+
getStatus(): string | undefined;
|
|
7257
|
+
setStatus(value: string): WindowsComputerSystem;
|
|
7258
|
+
|
|
7259
|
+
hasSystemStartupDelay(): boolean;
|
|
7260
|
+
clearSystemStartupDelay(): void;
|
|
7261
|
+
getSystemStartupDelay(): number | undefined;
|
|
7262
|
+
setSystemStartupDelay(value: number): WindowsComputerSystem;
|
|
7263
|
+
clearSystemStartupOptionsList(): void;
|
|
7264
|
+
getSystemStartupOptionsList(): Array<string>;
|
|
7265
|
+
setSystemStartupOptionsList(value: Array<string>): WindowsComputerSystem;
|
|
7266
|
+
addSystemStartupOptions(value: string, index?: number): string;
|
|
7267
|
+
|
|
7268
|
+
hasSystemType(): boolean;
|
|
7269
|
+
clearSystemType(): void;
|
|
7270
|
+
getSystemType(): string | undefined;
|
|
7271
|
+
setSystemType(value: string): WindowsComputerSystem;
|
|
7272
|
+
|
|
7273
|
+
hasThermalState(): boolean;
|
|
7274
|
+
clearThermalState(): void;
|
|
7275
|
+
getThermalState(): MappedValue | undefined;
|
|
7276
|
+
setThermalState(value?: MappedValue): WindowsComputerSystem;
|
|
7277
|
+
|
|
7278
|
+
hasTotalPhysicalMemory(): boolean;
|
|
7279
|
+
clearTotalPhysicalMemory(): void;
|
|
7280
|
+
getTotalPhysicalMemory(): number | undefined;
|
|
7281
|
+
setTotalPhysicalMemory(value: number): WindowsComputerSystem;
|
|
7282
|
+
|
|
7283
|
+
hasWakeupType(): boolean;
|
|
7284
|
+
clearWakeupType(): void;
|
|
7285
|
+
getWakeupType(): MappedValue | undefined;
|
|
7286
|
+
setWakeupType(value?: MappedValue): WindowsComputerSystem;
|
|
7287
|
+
|
|
7288
|
+
hasEnableDaylightSavingsTime(): boolean;
|
|
7289
|
+
clearEnableDaylightSavingsTime(): void;
|
|
7290
|
+
getEnableDaylightSavingsTime(): boolean | undefined;
|
|
7291
|
+
setEnableDaylightSavingsTime(value: boolean): WindowsComputerSystem;
|
|
7292
|
+
|
|
7293
|
+
hasPartOfDomain(): boolean;
|
|
7294
|
+
clearPartOfDomain(): void;
|
|
7295
|
+
getPartOfDomain(): boolean | undefined;
|
|
7296
|
+
setPartOfDomain(value: boolean): WindowsComputerSystem;
|
|
7297
|
+
|
|
7298
|
+
hasNumberOfLogicalProcessors(): boolean;
|
|
7299
|
+
clearNumberOfLogicalProcessors(): void;
|
|
7300
|
+
getNumberOfLogicalProcessors(): number | undefined;
|
|
7301
|
+
setNumberOfLogicalProcessors(value: number): WindowsComputerSystem;
|
|
7302
|
+
|
|
7303
|
+
serializeBinary(): Uint8Array;
|
|
7304
|
+
toObject(includeInstance?: boolean): WindowsComputerSystem.AsObject;
|
|
7305
|
+
static toObject(includeInstance: boolean, msg: WindowsComputerSystem): WindowsComputerSystem.AsObject;
|
|
7306
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7307
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7308
|
+
static serializeBinaryToWriter(message: WindowsComputerSystem, writer: jspb.BinaryWriter): void;
|
|
7309
|
+
static deserializeBinary(bytes: Uint8Array): WindowsComputerSystem;
|
|
7310
|
+
static deserializeBinaryFromReader(message: WindowsComputerSystem, reader: jspb.BinaryReader): WindowsComputerSystem;
|
|
7311
|
+
}
|
|
7312
|
+
|
|
7313
|
+
export namespace WindowsComputerSystem {
|
|
7314
|
+
export type AsObject = {
|
|
7315
|
+
adminPasswordStatus?: MappedValue.AsObject,
|
|
7316
|
+
automaticResetBootOption?: boolean,
|
|
7317
|
+
automaticResetCapability?: boolean,
|
|
7318
|
+
bootOptionOnLimit?: MappedValue.AsObject,
|
|
7319
|
+
bootOptionOnWatchDog?: MappedValue.AsObject,
|
|
7320
|
+
bootRomSupported?: boolean,
|
|
7321
|
+
bootUpState?: string,
|
|
7322
|
+
chassisBootUpState?: MappedValue.AsObject,
|
|
7323
|
+
currentTimeZone?: number,
|
|
7324
|
+
daylightInEffect?: boolean,
|
|
7325
|
+
description?: string,
|
|
7326
|
+
domain?: string,
|
|
7327
|
+
domainRole?: MappedValue.AsObject,
|
|
7328
|
+
frontPanelResetStatus?: MappedValue.AsObject,
|
|
7329
|
+
infraredSupported?: boolean,
|
|
7330
|
+
keyboardPasswordStatus?: MappedValue.AsObject,
|
|
7331
|
+
manufacturer?: string,
|
|
7332
|
+
name?: string,
|
|
7333
|
+
model?: string,
|
|
7334
|
+
networkServerModeEnabled?: boolean,
|
|
7335
|
+
numberOfProcessors?: number,
|
|
7336
|
+
pauseAfterReset?: number,
|
|
7337
|
+
powerOnPasswordStatus?: MappedValue.AsObject,
|
|
7338
|
+
powerState?: MappedValue.AsObject,
|
|
7339
|
+
powerSupplyState?: MappedValue.AsObject,
|
|
7340
|
+
primaryOwnerName?: string,
|
|
7341
|
+
resetCapability?: MappedValue.AsObject,
|
|
7342
|
+
resetCount?: number,
|
|
7343
|
+
resetLimit?: number,
|
|
7344
|
+
rolesList: Array<string>,
|
|
7345
|
+
status?: string,
|
|
7346
|
+
systemStartupDelay?: number,
|
|
7347
|
+
systemStartupOptionsList: Array<string>,
|
|
7348
|
+
systemType?: string,
|
|
7349
|
+
thermalState?: MappedValue.AsObject,
|
|
7350
|
+
totalPhysicalMemory?: number,
|
|
7351
|
+
wakeupType?: MappedValue.AsObject,
|
|
7352
|
+
enableDaylightSavingsTime?: boolean,
|
|
7353
|
+
partOfDomain?: boolean,
|
|
7354
|
+
numberOfLogicalProcessors?: number,
|
|
7355
|
+
}
|
|
7356
|
+
}
|
|
7357
|
+
|
|
6997
7358
|
export class TrustedPlatformModule extends jspb.Message {
|
|
6998
7359
|
|
|
6999
7360
|
hasIsInitialValueActivated(): boolean;
|
|
@@ -9257,10 +9618,6 @@ export class SoftwareInventory extends jspb.Message {
|
|
|
9257
9618
|
getSoftwareList(): Array<Software>;
|
|
9258
9619
|
setSoftwareList(value: Array<Software>): SoftwareInventory;
|
|
9259
9620
|
addSoftware(value?: Software, index?: number): Software;
|
|
9260
|
-
clearEventLogList(): void;
|
|
9261
|
-
getEventLogList(): Array<SoftwareChangeEvent>;
|
|
9262
|
-
setEventLogList(value: Array<SoftwareChangeEvent>): SoftwareInventory;
|
|
9263
|
-
addEventLog(value?: SoftwareChangeEvent, index?: number): SoftwareChangeEvent;
|
|
9264
9621
|
|
|
9265
9622
|
serializeBinary(): Uint8Array;
|
|
9266
9623
|
toObject(includeInstance?: boolean): SoftwareInventory.AsObject;
|
|
@@ -9276,7 +9633,6 @@ export namespace SoftwareInventory {
|
|
|
9276
9633
|
export type AsObject = {
|
|
9277
9634
|
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9278
9635
|
softwareList: Array<Software.AsObject>,
|
|
9279
|
-
eventLogList: Array<SoftwareChangeEvent.AsObject>,
|
|
9280
9636
|
}
|
|
9281
9637
|
}
|
|
9282
9638
|
|