@lansweeper/discovery-cloud-proto 0.0.25 → 0.0.26

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.
@@ -73,6 +73,8 @@ export class CloudEntity extends jspb.Message {
73
73
  setTenantId(value: string): CloudEntity;
74
74
  getTenantName(): string;
75
75
  setTenantName(value: string): CloudEntity;
76
+ getResourceGroup(): string;
77
+ setResourceGroup(value: string): CloudEntity;
76
78
 
77
79
  serializeBinary(): Uint8Array;
78
80
  toObject(includeInstance?: boolean): CloudEntity.AsObject;
@@ -107,6 +109,7 @@ export namespace CloudEntity {
107
109
  location: string,
108
110
  tenantId: string,
109
111
  tenantName: string,
112
+ resourceGroup: string,
110
113
  }
111
114
  }
112
115
 
@@ -11265,7 +11265,8 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.toObject = function(incl
11265
11265
  proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag.toObject, includeInstance),
11266
11266
  location: jspb.Message.getFieldWithDefault(msg, 19, ""),
11267
11267
  tenantId: jspb.Message.getFieldWithDefault(msg, 20, ""),
11268
- tenantName: jspb.Message.getFieldWithDefault(msg, 21, "")
11268
+ tenantName: jspb.Message.getFieldWithDefault(msg, 21, ""),
11269
+ resourceGroup: jspb.Message.getFieldWithDefault(msg, 22, "")
11269
11270
  };
11270
11271
 
11271
11272
  if (includeInstance) {
@@ -11391,6 +11392,10 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.deserializeBinaryFromRea
11391
11392
  var value = /** @type {string} */ (reader.readString());
11392
11393
  msg.setTenantName(value);
11393
11394
  break;
11395
+ case 22:
11396
+ var value = /** @type {string} */ (reader.readString());
11397
+ msg.setResourceGroup(value);
11398
+ break;
11394
11399
  default:
11395
11400
  reader.skipField();
11396
11401
  break;
@@ -11572,6 +11577,13 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.serializeBinaryToWriter
11572
11577
  f
11573
11578
  );
11574
11579
  }
11580
+ f = message.getResourceGroup();
11581
+ if (f.length > 0) {
11582
+ writer.writeString(
11583
+ 22,
11584
+ f
11585
+ );
11586
+ }
11575
11587
  };
11576
11588
 
11577
11589
 
@@ -12105,6 +12117,24 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.setTenantName
12105
12117
  };
12106
12118
 
12107
12119
 
12120
+ /**
12121
+ * optional string resource_group = 22;
12122
+ * @return {string}
12123
+ */
12124
+ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.getResourceGroup = function() {
12125
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
12126
+ };
12127
+
12128
+
12129
+ /**
12130
+ * @param {string} value
12131
+ * @return {!proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity} returns this
12132
+ */
12133
+ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.setResourceGroup = function(value) {
12134
+ return jspb.Message.setProto3StringField(this, 22, value);
12135
+ };
12136
+
12137
+
12108
12138
 
12109
12139
 
12110
12140