@lansweeper/data-platform-outbound-grpc 0.16.2 → 0.16.3

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.
@@ -20217,6 +20217,10 @@ export class CitrixPool extends jspb.Message {
20217
20217
  getCitrixUserList(): Array<CitrixUser>;
20218
20218
  setCitrixUserList(value: Array<CitrixUser>): CitrixPool;
20219
20219
  addCitrixUser(value?: CitrixUser, index?: number): CitrixUser;
20220
+ clearHostAssetRefsList(): void;
20221
+ getHostAssetRefsList(): Array<string>;
20222
+ setHostAssetRefsList(value: Array<string>): CitrixPool;
20223
+ addHostAssetRefs(value: string, index?: number): string;
20220
20224
 
20221
20225
  serializeBinary(): Uint8Array;
20222
20226
  toObject(includeInstance?: boolean): CitrixPool.AsObject;
@@ -20256,6 +20260,7 @@ export namespace CitrixPool {
20256
20260
  physicalInterfacesList: Array<CitrixPhysicalInterface.AsObject>,
20257
20261
  virtualInterfacesList: Array<CitrixVirtualInterface.AsObject>,
20258
20262
  citrixUserList: Array<CitrixUser.AsObject>,
20263
+ hostAssetRefsList: Array<string>,
20259
20264
  }
20260
20265
  }
20261
20266
 
@@ -161811,7 +161811,7 @@ proto.com.lansweeper.dp.outbound.v1.Citrix.prototype.hasCitrixGuest = function()
161811
161811
  * @private {!Array<number>}
161812
161812
  * @const
161813
161813
  */
161814
- proto.com.lansweeper.dp.outbound.v1.CitrixPool.repeatedFields_ = [18,19,20,21,22,23,24,25,26];
161814
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.repeatedFields_ = [18,19,20,21,22,23,24,25,26,27];
161815
161815
 
161816
161816
 
161817
161817
 
@@ -161877,7 +161877,8 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.toObject = function(includeInstan
161877
161877
  virtualInterfacesList: jspb.Message.toObjectList(msg.getVirtualInterfacesList(),
161878
161878
  proto.com.lansweeper.dp.outbound.v1.CitrixVirtualInterface.toObject, includeInstance),
161879
161879
  citrixUserList: jspb.Message.toObjectList(msg.getCitrixUserList(),
161880
- proto.com.lansweeper.dp.outbound.v1.CitrixUser.toObject, includeInstance)
161880
+ proto.com.lansweeper.dp.outbound.v1.CitrixUser.toObject, includeInstance),
161881
+ hostAssetRefsList: (f = jspb.Message.getRepeatedField(msg, 27)) == null ? undefined : f
161881
161882
  };
161882
161883
 
161883
161884
  if (includeInstance) {
@@ -162026,6 +162027,10 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.deserializeBinaryFromReader = fun
162026
162027
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CitrixUser.deserializeBinaryFromReader);
162027
162028
  msg.addCitrixUser(value);
162028
162029
  break;
162030
+ case 27:
162031
+ var value = /** @type {string} */ (reader.readString());
162032
+ msg.addHostAssetRefs(value);
162033
+ break;
162029
162034
  default:
162030
162035
  reader.skipField();
162031
162036
  break;
@@ -162245,6 +162250,13 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.serializeBinaryToWriter = functio
162245
162250
  proto.com.lansweeper.dp.outbound.v1.CitrixUser.serializeBinaryToWriter
162246
162251
  );
162247
162252
  }
162253
+ f = message.getHostAssetRefsList();
162254
+ if (f.length > 0) {
162255
+ writer.writeRepeatedString(
162256
+ 27,
162257
+ f
162258
+ );
162259
+ }
162248
162260
  };
162249
162261
 
162250
162262
 
@@ -163201,6 +163213,43 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.clearCitrixUserList = f
163201
163213
  };
163202
163214
 
163203
163215
 
163216
+ /**
163217
+ * repeated string host_asset_refs = 27;
163218
+ * @return {!Array<string>}
163219
+ */
163220
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.getHostAssetRefsList = function() {
163221
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 27));
163222
+ };
163223
+
163224
+
163225
+ /**
163226
+ * @param {!Array<string>} value
163227
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixPool} returns this
163228
+ */
163229
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.setHostAssetRefsList = function(value) {
163230
+ return jspb.Message.setField(this, 27, value || []);
163231
+ };
163232
+
163233
+
163234
+ /**
163235
+ * @param {string} value
163236
+ * @param {number=} opt_index
163237
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixPool} returns this
163238
+ */
163239
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.addHostAssetRefs = function(value, opt_index) {
163240
+ return jspb.Message.addToRepeatedField(this, 27, value, opt_index);
163241
+ };
163242
+
163243
+
163244
+ /**
163245
+ * Clears the list making it empty but non-null.
163246
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixPool} returns this
163247
+ */
163248
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.clearHostAssetRefsList = function() {
163249
+ return this.setHostAssetRefsList([]);
163250
+ };
163251
+
163252
+
163204
163253
 
163205
163254
 
163206
163255