@lansweeper/discovery-cloud-proto 0.0.30 → 0.0.31
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.
|
@@ -76,6 +76,11 @@ export class CloudEntity extends jspb.Message {
|
|
|
76
76
|
getResourceGroup(): string;
|
|
77
77
|
setResourceGroup(value: string): CloudEntity;
|
|
78
78
|
|
|
79
|
+
hasResourceId(): boolean;
|
|
80
|
+
clearResourceId(): void;
|
|
81
|
+
getResourceId(): string | undefined;
|
|
82
|
+
setResourceId(value: string): CloudEntity;
|
|
83
|
+
|
|
79
84
|
serializeBinary(): Uint8Array;
|
|
80
85
|
toObject(includeInstance?: boolean): CloudEntity.AsObject;
|
|
81
86
|
static toObject(includeInstance: boolean, msg: CloudEntity): CloudEntity.AsObject;
|
|
@@ -110,6 +115,7 @@ export namespace CloudEntity {
|
|
|
110
115
|
tenantId: string,
|
|
111
116
|
tenantName: string,
|
|
112
117
|
resourceGroup: string,
|
|
118
|
+
resourceId?: string,
|
|
113
119
|
}
|
|
114
120
|
}
|
|
115
121
|
|
|
@@ -12850,7 +12850,8 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.toObject = function(incl
|
|
|
12850
12850
|
location: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
12851
12851
|
tenantId: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
12852
12852
|
tenantName: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
12853
|
-
resourceGroup: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
12853
|
+
resourceGroup: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
12854
|
+
resourceId: jspb.Message.getFieldWithDefault(msg, 23, "")
|
|
12854
12855
|
};
|
|
12855
12856
|
|
|
12856
12857
|
if (includeInstance) {
|
|
@@ -12980,6 +12981,10 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.deserializeBinaryFromRea
|
|
|
12980
12981
|
var value = /** @type {string} */ (reader.readString());
|
|
12981
12982
|
msg.setResourceGroup(value);
|
|
12982
12983
|
break;
|
|
12984
|
+
case 23:
|
|
12985
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12986
|
+
msg.setResourceId(value);
|
|
12987
|
+
break;
|
|
12983
12988
|
default:
|
|
12984
12989
|
reader.skipField();
|
|
12985
12990
|
break;
|
|
@@ -13168,6 +13173,13 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.serializeBinaryToWriter
|
|
|
13168
13173
|
f
|
|
13169
13174
|
);
|
|
13170
13175
|
}
|
|
13176
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 23));
|
|
13177
|
+
if (f != null) {
|
|
13178
|
+
writer.writeString(
|
|
13179
|
+
23,
|
|
13180
|
+
f
|
|
13181
|
+
);
|
|
13182
|
+
}
|
|
13171
13183
|
};
|
|
13172
13184
|
|
|
13173
13185
|
|
|
@@ -13719,6 +13731,42 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.setResourceGro
|
|
|
13719
13731
|
};
|
|
13720
13732
|
|
|
13721
13733
|
|
|
13734
|
+
/**
|
|
13735
|
+
* optional string resource_id = 23;
|
|
13736
|
+
* @return {string}
|
|
13737
|
+
*/
|
|
13738
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.getResourceId = function() {
|
|
13739
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 23, ""));
|
|
13740
|
+
};
|
|
13741
|
+
|
|
13742
|
+
|
|
13743
|
+
/**
|
|
13744
|
+
* @param {string} value
|
|
13745
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity} returns this
|
|
13746
|
+
*/
|
|
13747
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.setResourceId = function(value) {
|
|
13748
|
+
return jspb.Message.setField(this, 23, value);
|
|
13749
|
+
};
|
|
13750
|
+
|
|
13751
|
+
|
|
13752
|
+
/**
|
|
13753
|
+
* Clears the field making it undefined.
|
|
13754
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity} returns this
|
|
13755
|
+
*/
|
|
13756
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.clearResourceId = function() {
|
|
13757
|
+
return jspb.Message.setField(this, 23, undefined);
|
|
13758
|
+
};
|
|
13759
|
+
|
|
13760
|
+
|
|
13761
|
+
/**
|
|
13762
|
+
* Returns whether this field is set.
|
|
13763
|
+
* @return {boolean}
|
|
13764
|
+
*/
|
|
13765
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.hasResourceId = function() {
|
|
13766
|
+
return jspb.Message.getField(this, 23) != null;
|
|
13767
|
+
};
|
|
13768
|
+
|
|
13769
|
+
|
|
13722
13770
|
|
|
13723
13771
|
|
|
13724
13772
|
|