@lansweeper/data-platform-outbound-grpc 0.3.25 → 0.3.27
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +46 -0
- package/gen-proto/outbound_pb.js +393 -2
- package/generated-go/outbound.pb.go +10799 -10662
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +10 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +10 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntity.java +665 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +58 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3124 -3105
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java +950 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java +58 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.3.24-sources.jar → outbound-model-0.3.26-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.24.jar → outbound-model-0.3.26.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +10 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.24-sources.jar → outbound-service-0.3.26-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.24.jar → outbound-service-0.3.26.jar} +0 -0
|
@@ -1944,6 +1944,20 @@ export class CloudEntity extends jspb.Message {
|
|
|
1944
1944
|
getTenantName(): string | undefined;
|
|
1945
1945
|
setTenantName(value: string): CloudEntity;
|
|
1946
1946
|
|
|
1947
|
+
hasResourceGroup(): boolean;
|
|
1948
|
+
clearResourceGroup(): void;
|
|
1949
|
+
getResourceGroup(): string | undefined;
|
|
1950
|
+
setResourceGroup(value: string): CloudEntity;
|
|
1951
|
+
|
|
1952
|
+
hasCloudAssetId(): boolean;
|
|
1953
|
+
clearCloudAssetId(): void;
|
|
1954
|
+
getCloudAssetId(): string | undefined;
|
|
1955
|
+
setCloudAssetId(value: string): CloudEntity;
|
|
1956
|
+
clearPublicCloudLinksList(): void;
|
|
1957
|
+
getPublicCloudLinksList(): Array<PublicCloudLink>;
|
|
1958
|
+
setPublicCloudLinksList(value: Array<PublicCloudLink>): CloudEntity;
|
|
1959
|
+
addPublicCloudLinks(value?: PublicCloudLink, index?: number): PublicCloudLink;
|
|
1960
|
+
|
|
1947
1961
|
serializeBinary(): Uint8Array;
|
|
1948
1962
|
toObject(includeInstance?: boolean): CloudEntity.AsObject;
|
|
1949
1963
|
static toObject(includeInstance: boolean, msg: CloudEntity): CloudEntity.AsObject;
|
|
@@ -1966,6 +1980,38 @@ export namespace CloudEntity {
|
|
|
1966
1980
|
location?: string,
|
|
1967
1981
|
tenantId?: string,
|
|
1968
1982
|
tenantName?: string,
|
|
1983
|
+
resourceGroup?: string,
|
|
1984
|
+
cloudAssetId?: string,
|
|
1985
|
+
publicCloudLinksList: Array<PublicCloudLink.AsObject>,
|
|
1986
|
+
}
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
export class PublicCloudLink extends jspb.Message {
|
|
1990
|
+
getToPublicCloudAssetId(): string;
|
|
1991
|
+
setToPublicCloudAssetId(value: string): PublicCloudLink;
|
|
1992
|
+
getLinkType(): string;
|
|
1993
|
+
setLinkType(value: string): PublicCloudLink;
|
|
1994
|
+
getToPublicCloudAssetType(): string;
|
|
1995
|
+
setToPublicCloudAssetType(value: string): PublicCloudLink;
|
|
1996
|
+
getToPublicCloudAssetName(): string;
|
|
1997
|
+
setToPublicCloudAssetName(value: string): PublicCloudLink;
|
|
1998
|
+
|
|
1999
|
+
serializeBinary(): Uint8Array;
|
|
2000
|
+
toObject(includeInstance?: boolean): PublicCloudLink.AsObject;
|
|
2001
|
+
static toObject(includeInstance: boolean, msg: PublicCloudLink): PublicCloudLink.AsObject;
|
|
2002
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2003
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2004
|
+
static serializeBinaryToWriter(message: PublicCloudLink, writer: jspb.BinaryWriter): void;
|
|
2005
|
+
static deserializeBinary(bytes: Uint8Array): PublicCloudLink;
|
|
2006
|
+
static deserializeBinaryFromReader(message: PublicCloudLink, reader: jspb.BinaryReader): PublicCloudLink;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
export namespace PublicCloudLink {
|
|
2010
|
+
export type AsObject = {
|
|
2011
|
+
toPublicCloudAssetId: string,
|
|
2012
|
+
linkType: string,
|
|
2013
|
+
toPublicCloudAssetType: string,
|
|
2014
|
+
toPublicCloudAssetName: string,
|
|
1969
2015
|
}
|
|
1970
2016
|
}
|
|
1971
2017
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -218,6 +218,7 @@ goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.PortableBattery', null, g
|
|
|
218
218
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.Printer', null, global);
|
|
219
219
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.PrinterTonerInfo', null, global);
|
|
220
220
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.Processor', null, global);
|
|
221
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.PublicCloudLink', null, global);
|
|
221
222
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.RawSoftware', null, global);
|
|
222
223
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ReconRule', null, global);
|
|
223
224
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.ReconRuleId', null, global);
|
|
@@ -1000,6 +1001,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1000
1001
|
*/
|
|
1001
1002
|
proto.com.lansweeper.dp.outbound.v1.CloudEntity.displayName = 'proto.com.lansweeper.dp.outbound.v1.CloudEntity';
|
|
1002
1003
|
}
|
|
1004
|
+
/**
|
|
1005
|
+
* Generated by JsPbCodeGenerator.
|
|
1006
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1007
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1008
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1009
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1010
|
+
* valid.
|
|
1011
|
+
* @extends {jspb.Message}
|
|
1012
|
+
* @constructor
|
|
1013
|
+
*/
|
|
1014
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink = function(opt_data) {
|
|
1015
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
1016
|
+
};
|
|
1017
|
+
goog.inherits(proto.com.lansweeper.dp.outbound.v1.PublicCloudLink, jspb.Message);
|
|
1018
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1019
|
+
/**
|
|
1020
|
+
* @public
|
|
1021
|
+
* @override
|
|
1022
|
+
*/
|
|
1023
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.displayName = 'proto.com.lansweeper.dp.outbound.v1.PublicCloudLink';
|
|
1024
|
+
}
|
|
1003
1025
|
/**
|
|
1004
1026
|
* Generated by JsPbCodeGenerator.
|
|
1005
1027
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -21217,7 +21239,7 @@ proto.com.lansweeper.dp.outbound.v1.CorrelationInfo.prototype.hasCorrelationFiel
|
|
|
21217
21239
|
* @private {!Array<number>}
|
|
21218
21240
|
* @const
|
|
21219
21241
|
*/
|
|
21220
|
-
proto.com.lansweeper.dp.outbound.v1.CloudEntity.repeatedFields_ = [7];
|
|
21242
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.repeatedFields_ = [7,13];
|
|
21221
21243
|
|
|
21222
21244
|
|
|
21223
21245
|
|
|
@@ -21260,7 +21282,11 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.toObject = function(includeInsta
|
|
|
21260
21282
|
proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance),
|
|
21261
21283
|
location: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
21262
21284
|
tenantId: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
21263
|
-
tenantName: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
21285
|
+
tenantName: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
21286
|
+
resourceGroup: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
21287
|
+
cloudAssetId: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
21288
|
+
publicCloudLinksList: jspb.Message.toObjectList(msg.getPublicCloudLinksList(),
|
|
21289
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.toObject, includeInstance)
|
|
21264
21290
|
};
|
|
21265
21291
|
|
|
21266
21292
|
if (includeInstance) {
|
|
@@ -21339,6 +21365,19 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.deserializeBinaryFromReader = fu
|
|
|
21339
21365
|
var value = /** @type {string} */ (reader.readString());
|
|
21340
21366
|
msg.setTenantName(value);
|
|
21341
21367
|
break;
|
|
21368
|
+
case 11:
|
|
21369
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21370
|
+
msg.setResourceGroup(value);
|
|
21371
|
+
break;
|
|
21372
|
+
case 12:
|
|
21373
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21374
|
+
msg.setCloudAssetId(value);
|
|
21375
|
+
break;
|
|
21376
|
+
case 13:
|
|
21377
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.PublicCloudLink;
|
|
21378
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.deserializeBinaryFromReader);
|
|
21379
|
+
msg.addPublicCloudLinks(value);
|
|
21380
|
+
break;
|
|
21342
21381
|
default:
|
|
21343
21382
|
reader.skipField();
|
|
21344
21383
|
break;
|
|
@@ -21440,6 +21479,28 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.serializeBinaryToWriter = functi
|
|
|
21440
21479
|
f
|
|
21441
21480
|
);
|
|
21442
21481
|
}
|
|
21482
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
21483
|
+
if (f != null) {
|
|
21484
|
+
writer.writeString(
|
|
21485
|
+
11,
|
|
21486
|
+
f
|
|
21487
|
+
);
|
|
21488
|
+
}
|
|
21489
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
21490
|
+
if (f != null) {
|
|
21491
|
+
writer.writeString(
|
|
21492
|
+
12,
|
|
21493
|
+
f
|
|
21494
|
+
);
|
|
21495
|
+
}
|
|
21496
|
+
f = message.getPublicCloudLinksList();
|
|
21497
|
+
if (f.length > 0) {
|
|
21498
|
+
writer.writeRepeatedMessage(
|
|
21499
|
+
13,
|
|
21500
|
+
f,
|
|
21501
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.serializeBinaryToWriter
|
|
21502
|
+
);
|
|
21503
|
+
}
|
|
21443
21504
|
};
|
|
21444
21505
|
|
|
21445
21506
|
|
|
@@ -21734,6 +21795,336 @@ proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.hasTenantName = functi
|
|
|
21734
21795
|
};
|
|
21735
21796
|
|
|
21736
21797
|
|
|
21798
|
+
/**
|
|
21799
|
+
* optional string resource_group = 11;
|
|
21800
|
+
* @return {string}
|
|
21801
|
+
*/
|
|
21802
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getResourceGroup = function() {
|
|
21803
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
21804
|
+
};
|
|
21805
|
+
|
|
21806
|
+
|
|
21807
|
+
/**
|
|
21808
|
+
* @param {string} value
|
|
21809
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
21810
|
+
*/
|
|
21811
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setResourceGroup = function(value) {
|
|
21812
|
+
return jspb.Message.setField(this, 11, value);
|
|
21813
|
+
};
|
|
21814
|
+
|
|
21815
|
+
|
|
21816
|
+
/**
|
|
21817
|
+
* Clears the field making it undefined.
|
|
21818
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
21819
|
+
*/
|
|
21820
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.clearResourceGroup = function() {
|
|
21821
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
21822
|
+
};
|
|
21823
|
+
|
|
21824
|
+
|
|
21825
|
+
/**
|
|
21826
|
+
* Returns whether this field is set.
|
|
21827
|
+
* @return {boolean}
|
|
21828
|
+
*/
|
|
21829
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.hasResourceGroup = function() {
|
|
21830
|
+
return jspb.Message.getField(this, 11) != null;
|
|
21831
|
+
};
|
|
21832
|
+
|
|
21833
|
+
|
|
21834
|
+
/**
|
|
21835
|
+
* optional string cloud_asset_id = 12;
|
|
21836
|
+
* @return {string}
|
|
21837
|
+
*/
|
|
21838
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getCloudAssetId = function() {
|
|
21839
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
21840
|
+
};
|
|
21841
|
+
|
|
21842
|
+
|
|
21843
|
+
/**
|
|
21844
|
+
* @param {string} value
|
|
21845
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
21846
|
+
*/
|
|
21847
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setCloudAssetId = function(value) {
|
|
21848
|
+
return jspb.Message.setField(this, 12, value);
|
|
21849
|
+
};
|
|
21850
|
+
|
|
21851
|
+
|
|
21852
|
+
/**
|
|
21853
|
+
* Clears the field making it undefined.
|
|
21854
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
21855
|
+
*/
|
|
21856
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.clearCloudAssetId = function() {
|
|
21857
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
21858
|
+
};
|
|
21859
|
+
|
|
21860
|
+
|
|
21861
|
+
/**
|
|
21862
|
+
* Returns whether this field is set.
|
|
21863
|
+
* @return {boolean}
|
|
21864
|
+
*/
|
|
21865
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.hasCloudAssetId = function() {
|
|
21866
|
+
return jspb.Message.getField(this, 12) != null;
|
|
21867
|
+
};
|
|
21868
|
+
|
|
21869
|
+
|
|
21870
|
+
/**
|
|
21871
|
+
* repeated PublicCloudLink public_cloud_links = 13;
|
|
21872
|
+
* @return {!Array<!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink>}
|
|
21873
|
+
*/
|
|
21874
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.getPublicCloudLinksList = function() {
|
|
21875
|
+
return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink>} */ (
|
|
21876
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.PublicCloudLink, 13));
|
|
21877
|
+
};
|
|
21878
|
+
|
|
21879
|
+
|
|
21880
|
+
/**
|
|
21881
|
+
* @param {!Array<!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink>} value
|
|
21882
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
21883
|
+
*/
|
|
21884
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.setPublicCloudLinksList = function(value) {
|
|
21885
|
+
return jspb.Message.setRepeatedWrapperField(this, 13, value);
|
|
21886
|
+
};
|
|
21887
|
+
|
|
21888
|
+
|
|
21889
|
+
/**
|
|
21890
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink=} opt_value
|
|
21891
|
+
* @param {number=} opt_index
|
|
21892
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink}
|
|
21893
|
+
*/
|
|
21894
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.addPublicCloudLinks = function(opt_value, opt_index) {
|
|
21895
|
+
return jspb.Message.addToRepeatedWrapperField(this, 13, opt_value, proto.com.lansweeper.dp.outbound.v1.PublicCloudLink, opt_index);
|
|
21896
|
+
};
|
|
21897
|
+
|
|
21898
|
+
|
|
21899
|
+
/**
|
|
21900
|
+
* Clears the list making it empty but non-null.
|
|
21901
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CloudEntity} returns this
|
|
21902
|
+
*/
|
|
21903
|
+
proto.com.lansweeper.dp.outbound.v1.CloudEntity.prototype.clearPublicCloudLinksList = function() {
|
|
21904
|
+
return this.setPublicCloudLinksList([]);
|
|
21905
|
+
};
|
|
21906
|
+
|
|
21907
|
+
|
|
21908
|
+
|
|
21909
|
+
|
|
21910
|
+
|
|
21911
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
21912
|
+
/**
|
|
21913
|
+
* Creates an object representation of this proto.
|
|
21914
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
21915
|
+
* Optional fields that are not set will be set to undefined.
|
|
21916
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
21917
|
+
* For the list of reserved names please see:
|
|
21918
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
21919
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
21920
|
+
* JSPB instance for transitional soy proto support:
|
|
21921
|
+
* http://goto/soy-param-migration
|
|
21922
|
+
* @return {!Object}
|
|
21923
|
+
*/
|
|
21924
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.toObject = function(opt_includeInstance) {
|
|
21925
|
+
return proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.toObject(opt_includeInstance, this);
|
|
21926
|
+
};
|
|
21927
|
+
|
|
21928
|
+
|
|
21929
|
+
/**
|
|
21930
|
+
* Static version of the {@see toObject} method.
|
|
21931
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
21932
|
+
* the JSPB instance for transitional soy proto support:
|
|
21933
|
+
* http://goto/soy-param-migration
|
|
21934
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} msg The msg instance to transform.
|
|
21935
|
+
* @return {!Object}
|
|
21936
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
21937
|
+
*/
|
|
21938
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.toObject = function(includeInstance, msg) {
|
|
21939
|
+
var f, obj = {
|
|
21940
|
+
toPublicCloudAssetId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
21941
|
+
linkType: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
21942
|
+
toPublicCloudAssetType: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
21943
|
+
toPublicCloudAssetName: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
21944
|
+
};
|
|
21945
|
+
|
|
21946
|
+
if (includeInstance) {
|
|
21947
|
+
obj.$jspbMessageInstance = msg;
|
|
21948
|
+
}
|
|
21949
|
+
return obj;
|
|
21950
|
+
};
|
|
21951
|
+
}
|
|
21952
|
+
|
|
21953
|
+
|
|
21954
|
+
/**
|
|
21955
|
+
* Deserializes binary data (in protobuf wire format).
|
|
21956
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
21957
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink}
|
|
21958
|
+
*/
|
|
21959
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.deserializeBinary = function(bytes) {
|
|
21960
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
21961
|
+
var msg = new proto.com.lansweeper.dp.outbound.v1.PublicCloudLink;
|
|
21962
|
+
return proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.deserializeBinaryFromReader(msg, reader);
|
|
21963
|
+
};
|
|
21964
|
+
|
|
21965
|
+
|
|
21966
|
+
/**
|
|
21967
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
21968
|
+
* given reader into the given message object.
|
|
21969
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} msg The message object to deserialize into.
|
|
21970
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
21971
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink}
|
|
21972
|
+
*/
|
|
21973
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.deserializeBinaryFromReader = function(msg, reader) {
|
|
21974
|
+
while (reader.nextField()) {
|
|
21975
|
+
if (reader.isEndGroup()) {
|
|
21976
|
+
break;
|
|
21977
|
+
}
|
|
21978
|
+
var field = reader.getFieldNumber();
|
|
21979
|
+
switch (field) {
|
|
21980
|
+
case 1:
|
|
21981
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21982
|
+
msg.setToPublicCloudAssetId(value);
|
|
21983
|
+
break;
|
|
21984
|
+
case 2:
|
|
21985
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21986
|
+
msg.setLinkType(value);
|
|
21987
|
+
break;
|
|
21988
|
+
case 3:
|
|
21989
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21990
|
+
msg.setToPublicCloudAssetType(value);
|
|
21991
|
+
break;
|
|
21992
|
+
case 4:
|
|
21993
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21994
|
+
msg.setToPublicCloudAssetName(value);
|
|
21995
|
+
break;
|
|
21996
|
+
default:
|
|
21997
|
+
reader.skipField();
|
|
21998
|
+
break;
|
|
21999
|
+
}
|
|
22000
|
+
}
|
|
22001
|
+
return msg;
|
|
22002
|
+
};
|
|
22003
|
+
|
|
22004
|
+
|
|
22005
|
+
/**
|
|
22006
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
22007
|
+
* @return {!Uint8Array}
|
|
22008
|
+
*/
|
|
22009
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.serializeBinary = function() {
|
|
22010
|
+
var writer = new jspb.BinaryWriter();
|
|
22011
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.serializeBinaryToWriter(this, writer);
|
|
22012
|
+
return writer.getResultBuffer();
|
|
22013
|
+
};
|
|
22014
|
+
|
|
22015
|
+
|
|
22016
|
+
/**
|
|
22017
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
22018
|
+
* format), writing to the given BinaryWriter.
|
|
22019
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} message
|
|
22020
|
+
* @param {!jspb.BinaryWriter} writer
|
|
22021
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
22022
|
+
*/
|
|
22023
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.serializeBinaryToWriter = function(message, writer) {
|
|
22024
|
+
var f = undefined;
|
|
22025
|
+
f = message.getToPublicCloudAssetId();
|
|
22026
|
+
if (f.length > 0) {
|
|
22027
|
+
writer.writeString(
|
|
22028
|
+
1,
|
|
22029
|
+
f
|
|
22030
|
+
);
|
|
22031
|
+
}
|
|
22032
|
+
f = message.getLinkType();
|
|
22033
|
+
if (f.length > 0) {
|
|
22034
|
+
writer.writeString(
|
|
22035
|
+
2,
|
|
22036
|
+
f
|
|
22037
|
+
);
|
|
22038
|
+
}
|
|
22039
|
+
f = message.getToPublicCloudAssetType();
|
|
22040
|
+
if (f.length > 0) {
|
|
22041
|
+
writer.writeString(
|
|
22042
|
+
3,
|
|
22043
|
+
f
|
|
22044
|
+
);
|
|
22045
|
+
}
|
|
22046
|
+
f = message.getToPublicCloudAssetName();
|
|
22047
|
+
if (f.length > 0) {
|
|
22048
|
+
writer.writeString(
|
|
22049
|
+
4,
|
|
22050
|
+
f
|
|
22051
|
+
);
|
|
22052
|
+
}
|
|
22053
|
+
};
|
|
22054
|
+
|
|
22055
|
+
|
|
22056
|
+
/**
|
|
22057
|
+
* optional string to_public_cloud_asset_id = 1;
|
|
22058
|
+
* @return {string}
|
|
22059
|
+
*/
|
|
22060
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.getToPublicCloudAssetId = function() {
|
|
22061
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
22062
|
+
};
|
|
22063
|
+
|
|
22064
|
+
|
|
22065
|
+
/**
|
|
22066
|
+
* @param {string} value
|
|
22067
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} returns this
|
|
22068
|
+
*/
|
|
22069
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.setToPublicCloudAssetId = function(value) {
|
|
22070
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
22071
|
+
};
|
|
22072
|
+
|
|
22073
|
+
|
|
22074
|
+
/**
|
|
22075
|
+
* optional string link_type = 2;
|
|
22076
|
+
* @return {string}
|
|
22077
|
+
*/
|
|
22078
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.getLinkType = function() {
|
|
22079
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
22080
|
+
};
|
|
22081
|
+
|
|
22082
|
+
|
|
22083
|
+
/**
|
|
22084
|
+
* @param {string} value
|
|
22085
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} returns this
|
|
22086
|
+
*/
|
|
22087
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.setLinkType = function(value) {
|
|
22088
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
22089
|
+
};
|
|
22090
|
+
|
|
22091
|
+
|
|
22092
|
+
/**
|
|
22093
|
+
* optional string to_public_cloud_asset_type = 3;
|
|
22094
|
+
* @return {string}
|
|
22095
|
+
*/
|
|
22096
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.getToPublicCloudAssetType = function() {
|
|
22097
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
22098
|
+
};
|
|
22099
|
+
|
|
22100
|
+
|
|
22101
|
+
/**
|
|
22102
|
+
* @param {string} value
|
|
22103
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} returns this
|
|
22104
|
+
*/
|
|
22105
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.setToPublicCloudAssetType = function(value) {
|
|
22106
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
22107
|
+
};
|
|
22108
|
+
|
|
22109
|
+
|
|
22110
|
+
/**
|
|
22111
|
+
* optional string to_public_cloud_asset_name = 4;
|
|
22112
|
+
* @return {string}
|
|
22113
|
+
*/
|
|
22114
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.getToPublicCloudAssetName = function() {
|
|
22115
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
22116
|
+
};
|
|
22117
|
+
|
|
22118
|
+
|
|
22119
|
+
/**
|
|
22120
|
+
* @param {string} value
|
|
22121
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.PublicCloudLink} returns this
|
|
22122
|
+
*/
|
|
22123
|
+
proto.com.lansweeper.dp.outbound.v1.PublicCloudLink.prototype.setToPublicCloudAssetName = function(value) {
|
|
22124
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
22125
|
+
};
|
|
22126
|
+
|
|
22127
|
+
|
|
21737
22128
|
|
|
21738
22129
|
/**
|
|
21739
22130
|
* List of repeated fields within this message type.
|