@lansweeper/data-platform-outbound-grpc 0.16.0 → 0.16.1

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.
@@ -2928,6 +2928,11 @@ export class CloudEntity extends jspb.Message {
2928
2928
  getScannerType(): CloudEntity.ScannerType | undefined;
2929
2929
  setScannerType(value: CloudEntity.ScannerType): CloudEntity;
2930
2930
 
2931
+ hasCloudAssetType(): boolean;
2932
+ clearCloudAssetType(): void;
2933
+ getCloudAssetType(): string | undefined;
2934
+ setCloudAssetType(value: string): CloudEntity;
2935
+
2931
2936
  serializeBinary(): Uint8Array;
2932
2937
  toObject(includeInstance?: boolean): CloudEntity.AsObject;
2933
2938
  static toObject(includeInstance: boolean, msg: CloudEntity): CloudEntity.AsObject;
@@ -2955,6 +2960,7 @@ export namespace CloudEntity {
2955
2960
  publicCloudLinksList: Array<PublicCloudLink.AsObject>,
2956
2961
  resourceId?: string,
2957
2962
  scannerType?: CloudEntity.ScannerType,
2963
+ cloudAssetType?: string,
2958
2964
  }
2959
2965
 
2960
2966
  export enum ScannerType {
@@ -29768,7 +29768,8 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.toObject = function(includeInsta
29768
29768
  publicCloudLinksList: jspb.Message.toObjectList(msg.getPublicCloudLinksList(),
29769
29769
  proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.toObject, includeInstance),
29770
29770
  resourceId: jspb.Message.getFieldWithDefault(msg, 15, ""),
29771
- scannerType: jspb.Message.getFieldWithDefault(msg, 16, 0)
29771
+ scannerType: jspb.Message.getFieldWithDefault(msg, 16, 0),
29772
+ cloudAssetType: jspb.Message.getFieldWithDefault(msg, 17, "")
29772
29773
  };
29773
29774
 
29774
29775
  if (includeInstance) {
@@ -29868,6 +29869,10 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.deserializeBinaryFromReader = fu
29868
29869
  var value = /** @type {!proto.com.lansweeper.dp.outbound.v1.CloudEntity.ScannerType} */ (reader.readEnum());
29869
29870
  msg.setScannerType(value);
29870
29871
  break;
29872
+ case 17:
29873
+ var value = /** @type {string} */ (reader.readString());
29874
+ msg.setCloudAssetType(value);
29875
+ break;
29871
29876
  default:
29872
29877
  reader.skipField();
29873
29878
  break;
@@ -30005,6 +30010,13 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.serializeBinaryToWriter = functi
30005
30010
  f
30006
30011
  );
30007
30012
  }
30013
+ f = /** @type {string} */ (jspb.Message.getField(message, 17));
30014
+ if (f != null) {
30015
+ writer.writeString(
30016
+ 17,
30017
+ f
30018
+ );
30019
+ }
30008
30020
  };
30009
30021
 
30010
30022
 
@@ -30492,6 +30504,42 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.hasScannerType = funct
30492
30504
  };
30493
30505
 
30494
30506
 
30507
+ /**
30508
+ * optional string cloud_asset_type = 17;
30509
+ * @return {string}
30510
+ */
30511
+ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getCloudAssetType = function() {
30512
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
30513
+ };
30514
+
30515
+
30516
+ /**
30517
+ * @param {string} value
30518
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
30519
+ */
30520
+ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setCloudAssetType = function(value) {
30521
+ return jspb.Message.setField(this, 17, value);
30522
+ };
30523
+
30524
+
30525
+ /**
30526
+ * Clears the field making it undefined.
30527
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
30528
+ */
30529
+ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.clearCloudAssetType = function() {
30530
+ return jspb.Message.setField(this, 17, undefined);
30531
+ };
30532
+
30533
+
30534
+ /**
30535
+ * Returns whether this field is set.
30536
+ * @return {boolean}
30537
+ */
30538
+ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.hasCloudAssetType = function() {
30539
+ return jspb.Message.getField(this, 17) != null;
30540
+ };
30541
+
30542
+
30495
30543
 
30496
30544
 
30497
30545