@lansweeper/data-platform-outbound-grpc 0.1.26 → 0.1.27
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 +48 -11
- package/gen-proto/outbound_pb.js +479 -165
- package/generated-go/outbound.pb.go +1967 -1863
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +23 -12
|
@@ -314,6 +314,10 @@ export class Asset extends jspb.Message {
|
|
|
314
314
|
getTagList(): Array<Tag>;
|
|
315
315
|
setTagList(value: Array<Tag>): Asset;
|
|
316
316
|
addTag(value?: Tag, index?: number): Tag;
|
|
317
|
+
clearRelationList(): void;
|
|
318
|
+
getRelationList(): Array<Relation>;
|
|
319
|
+
setRelationList(value: Array<Relation>): Asset;
|
|
320
|
+
addRelation(value?: Relation, index?: number): Relation;
|
|
317
321
|
|
|
318
322
|
hasCore(): boolean;
|
|
319
323
|
clearCore(): void;
|
|
@@ -391,6 +395,7 @@ export namespace Asset {
|
|
|
391
395
|
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
392
396
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
393
397
|
tagList: Array<Tag.AsObject>,
|
|
398
|
+
relationList: Array<Relation.AsObject>,
|
|
394
399
|
core?: CoreFields.AsObject,
|
|
395
400
|
hw?: HardwareInfo.AsObject,
|
|
396
401
|
os?: OperatingSystemInfo.AsObject,
|
|
@@ -432,6 +437,49 @@ export namespace Tag {
|
|
|
432
437
|
}
|
|
433
438
|
}
|
|
434
439
|
|
|
440
|
+
export class Relation extends jspb.Message {
|
|
441
|
+
|
|
442
|
+
hasFrom(): boolean;
|
|
443
|
+
clearFrom(): void;
|
|
444
|
+
getFrom(): EntityPath | undefined;
|
|
445
|
+
setFrom(value?: EntityPath): Relation;
|
|
446
|
+
|
|
447
|
+
hasTo(): boolean;
|
|
448
|
+
clearTo(): void;
|
|
449
|
+
getTo(): EntityPath | undefined;
|
|
450
|
+
setTo(value?: EntityPath): Relation;
|
|
451
|
+
|
|
452
|
+
hasTime(): boolean;
|
|
453
|
+
clearTime(): void;
|
|
454
|
+
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
455
|
+
setTime(value?: google_protobuf_timestamp_pb.Timestamp): Relation;
|
|
456
|
+
getName(): string;
|
|
457
|
+
setName(value: string): Relation;
|
|
458
|
+
clearTagList(): void;
|
|
459
|
+
getTagList(): Array<Tag>;
|
|
460
|
+
setTagList(value: Array<Tag>): Relation;
|
|
461
|
+
addTag(value?: Tag, index?: number): Tag;
|
|
462
|
+
|
|
463
|
+
serializeBinary(): Uint8Array;
|
|
464
|
+
toObject(includeInstance?: boolean): Relation.AsObject;
|
|
465
|
+
static toObject(includeInstance: boolean, msg: Relation): Relation.AsObject;
|
|
466
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
467
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
468
|
+
static serializeBinaryToWriter(message: Relation, writer: jspb.BinaryWriter): void;
|
|
469
|
+
static deserializeBinary(bytes: Uint8Array): Relation;
|
|
470
|
+
static deserializeBinaryFromReader(message: Relation, reader: jspb.BinaryReader): Relation;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
export namespace Relation {
|
|
474
|
+
export type AsObject = {
|
|
475
|
+
from?: EntityPath.AsObject,
|
|
476
|
+
to?: EntityPath.AsObject,
|
|
477
|
+
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
478
|
+
name: string,
|
|
479
|
+
tagList: Array<Tag.AsObject>,
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
435
483
|
export class CloudEntity extends jspb.Message {
|
|
436
484
|
|
|
437
485
|
hasBody(): boolean;
|
|
@@ -456,15 +504,6 @@ export namespace CloudEntity {
|
|
|
456
504
|
}
|
|
457
505
|
|
|
458
506
|
export class OtModule extends jspb.Message {
|
|
459
|
-
|
|
460
|
-
hasParentId(): boolean;
|
|
461
|
-
clearParentId(): void;
|
|
462
|
-
getParentId(): EntityPath | undefined;
|
|
463
|
-
setParentId(value?: EntityPath): OtModule;
|
|
464
|
-
clearSubModuleIdList(): void;
|
|
465
|
-
getSubModuleIdList(): Array<EntityPath>;
|
|
466
|
-
setSubModuleIdList(value: Array<EntityPath>): OtModule;
|
|
467
|
-
addSubModuleId(value?: EntityPath, index?: number): EntityPath;
|
|
468
507
|
getRackNumber(): number;
|
|
469
508
|
setRackNumber(value: number): OtModule;
|
|
470
509
|
getRackName(): string;
|
|
@@ -504,8 +543,6 @@ export class OtModule extends jspb.Message {
|
|
|
504
543
|
|
|
505
544
|
export namespace OtModule {
|
|
506
545
|
export type AsObject = {
|
|
507
|
-
parentId?: EntityPath.AsObject,
|
|
508
|
-
subModuleIdList: Array<EntityPath.AsObject>,
|
|
509
546
|
rackNumber: number,
|
|
510
547
|
rackName: string,
|
|
511
548
|
rackSize: number,
|