@lansweeper/data-platform-outbound-grpc 0.1.70 → 0.1.71
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 +6 -0
- package/gen-proto/outbound_pb.js +61 -1
- package/generated-go/outbound.pb.go +4148 -4127
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +2 -0
|
@@ -893,6 +893,10 @@ export class CloudEntity extends jspb.Message {
|
|
|
893
893
|
clearRegionId(): void;
|
|
894
894
|
getRegionId(): string | undefined;
|
|
895
895
|
setRegionId(value: string): CloudEntity;
|
|
896
|
+
getEnvironmentName(): string;
|
|
897
|
+
setEnvironmentName(value: string): CloudEntity;
|
|
898
|
+
getCategory(): string;
|
|
899
|
+
setCategory(value: string): CloudEntity;
|
|
896
900
|
|
|
897
901
|
serializeBinary(): Uint8Array;
|
|
898
902
|
toObject(includeInstance?: boolean): CloudEntity.AsObject;
|
|
@@ -910,6 +914,8 @@ export namespace CloudEntity {
|
|
|
910
914
|
environmentId: string,
|
|
911
915
|
cloudProvider: string,
|
|
912
916
|
regionId?: string,
|
|
917
|
+
environmentName: string,
|
|
918
|
+
category: string,
|
|
913
919
|
}
|
|
914
920
|
}
|
|
915
921
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -10271,7 +10271,9 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.toObject = function(includeInsta
|
|
|
10271
10271
|
body: (f = msg.getBody()) && google_protobuf_any_pb.Any.toObject(includeInstance, f),
|
|
10272
10272
|
environmentId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
10273
10273
|
cloudProvider: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
10274
|
-
regionId: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
10274
|
+
regionId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
10275
|
+
environmentName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
10276
|
+
category: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
10275
10277
|
};
|
|
10276
10278
|
|
|
10277
10279
|
if (includeInstance) {
|
|
@@ -10325,6 +10327,14 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.deserializeBinaryFromReader = fu
|
|
|
10325
10327
|
var value = /** @type {string} */ (reader.readString());
|
|
10326
10328
|
msg.setRegionId(value);
|
|
10327
10329
|
break;
|
|
10330
|
+
case 5:
|
|
10331
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10332
|
+
msg.setEnvironmentName(value);
|
|
10333
|
+
break;
|
|
10334
|
+
case 6:
|
|
10335
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10336
|
+
msg.setCategory(value);
|
|
10337
|
+
break;
|
|
10328
10338
|
default:
|
|
10329
10339
|
reader.skipField();
|
|
10330
10340
|
break;
|
|
@@ -10383,6 +10393,20 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.serializeBinaryToWriter = functi
|
|
|
10383
10393
|
f
|
|
10384
10394
|
);
|
|
10385
10395
|
}
|
|
10396
|
+
f = message.getEnvironmentName();
|
|
10397
|
+
if (f.length > 0) {
|
|
10398
|
+
writer.writeString(
|
|
10399
|
+
5,
|
|
10400
|
+
f
|
|
10401
|
+
);
|
|
10402
|
+
}
|
|
10403
|
+
f = message.getCategory();
|
|
10404
|
+
if (f.length > 0) {
|
|
10405
|
+
writer.writeString(
|
|
10406
|
+
6,
|
|
10407
|
+
f
|
|
10408
|
+
);
|
|
10409
|
+
}
|
|
10386
10410
|
};
|
|
10387
10411
|
|
|
10388
10412
|
|
|
@@ -10495,6 +10519,42 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.hasRegionId = function
|
|
|
10495
10519
|
};
|
|
10496
10520
|
|
|
10497
10521
|
|
|
10522
|
+
/**
|
|
10523
|
+
* optional string environment_name = 5;
|
|
10524
|
+
* @return {string}
|
|
10525
|
+
*/
|
|
10526
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getEnvironmentName = function() {
|
|
10527
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
10528
|
+
};
|
|
10529
|
+
|
|
10530
|
+
|
|
10531
|
+
/**
|
|
10532
|
+
* @param {string} value
|
|
10533
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
10534
|
+
*/
|
|
10535
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setEnvironmentName = function(value) {
|
|
10536
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
10537
|
+
};
|
|
10538
|
+
|
|
10539
|
+
|
|
10540
|
+
/**
|
|
10541
|
+
* optional string category = 6;
|
|
10542
|
+
* @return {string}
|
|
10543
|
+
*/
|
|
10544
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getCategory = function() {
|
|
10545
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
10546
|
+
};
|
|
10547
|
+
|
|
10548
|
+
|
|
10549
|
+
/**
|
|
10550
|
+
* @param {string} value
|
|
10551
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
10552
|
+
*/
|
|
10553
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setCategory = function(value) {
|
|
10554
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
10555
|
+
};
|
|
10556
|
+
|
|
10557
|
+
|
|
10498
10558
|
|
|
10499
10559
|
/**
|
|
10500
10560
|
* List of repeated fields within this message type.
|