@lansweeper/discovery-cloud-proto 0.0.19 → 0.0.21
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/gen-proto/discovery_cloud_pb.d.ts +40 -29
- package/gen-proto/discovery_cloud_pb.js +289 -185
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_cloud.proto +12 -7
|
@@ -853,16 +853,16 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
853
853
|
* @extends {jspb.Message}
|
|
854
854
|
* @constructor
|
|
855
855
|
*/
|
|
856
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
856
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData = function(opt_data) {
|
|
857
857
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
858
858
|
};
|
|
859
|
-
goog.inherits(proto.com.lansweeper.discovery.cloud.api.v1.
|
|
859
|
+
goog.inherits(proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData, jspb.Message);
|
|
860
860
|
if (goog.DEBUG && !COMPILED) {
|
|
861
861
|
/**
|
|
862
862
|
* @public
|
|
863
863
|
* @override
|
|
864
864
|
*/
|
|
865
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
865
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.displayName = 'proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData';
|
|
866
866
|
}
|
|
867
867
|
/**
|
|
868
868
|
* Generated by JsPbCodeGenerator.
|
|
@@ -874,16 +874,16 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
874
874
|
* @extends {jspb.Message}
|
|
875
875
|
* @constructor
|
|
876
876
|
*/
|
|
877
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
877
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl = function(opt_data) {
|
|
878
878
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
879
879
|
};
|
|
880
|
-
goog.inherits(proto.com.lansweeper.discovery.cloud.api.v1.
|
|
880
|
+
goog.inherits(proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl, jspb.Message);
|
|
881
881
|
if (goog.DEBUG && !COMPILED) {
|
|
882
882
|
/**
|
|
883
883
|
* @public
|
|
884
884
|
* @override
|
|
885
885
|
*/
|
|
886
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
886
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.displayName = 'proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl';
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* Generated by JsPbCodeGenerator.
|
|
@@ -11055,7 +11055,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
11055
11055
|
* @private {!Array<number>}
|
|
11056
11056
|
* @const
|
|
11057
11057
|
*/
|
|
11058
|
-
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.repeatedFields_ = [12,15];
|
|
11058
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.repeatedFields_ = [12,15,18];
|
|
11059
11059
|
|
|
11060
11060
|
|
|
11061
11061
|
|
|
@@ -11106,7 +11106,9 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.toObject = function(incl
|
|
|
11106
11106
|
publicCloudLinksList: jspb.Message.toObjectList(msg.getPublicCloudLinksList(),
|
|
11107
11107
|
proto.com.lansweeper.discovery.cloud.api.v1.PublicCloudLink.toObject, includeInstance),
|
|
11108
11108
|
cloudAssetId: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
11109
|
-
firstSeen: (f = msg.getFirstSeen()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
|
|
11109
|
+
firstSeen: (f = msg.getFirstSeen()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
11110
|
+
tagsList: jspb.Message.toObjectList(msg.getTagsList(),
|
|
11111
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag.toObject, includeInstance)
|
|
11110
11112
|
};
|
|
11111
11113
|
|
|
11112
11114
|
if (includeInstance) {
|
|
@@ -11215,6 +11217,11 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.deserializeBinaryFromRea
|
|
|
11215
11217
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
11216
11218
|
msg.setFirstSeen(value);
|
|
11217
11219
|
break;
|
|
11220
|
+
case 18:
|
|
11221
|
+
var value = new proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag;
|
|
11222
|
+
reader.readMessage(value,proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag.deserializeBinaryFromReader);
|
|
11223
|
+
msg.addTags(value);
|
|
11224
|
+
break;
|
|
11218
11225
|
default:
|
|
11219
11226
|
reader.skipField();
|
|
11220
11227
|
break;
|
|
@@ -11367,6 +11374,14 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.serializeBinaryToWriter
|
|
|
11367
11374
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
11368
11375
|
);
|
|
11369
11376
|
}
|
|
11377
|
+
f = message.getTagsList();
|
|
11378
|
+
if (f.length > 0) {
|
|
11379
|
+
writer.writeRepeatedMessage(
|
|
11380
|
+
18,
|
|
11381
|
+
f,
|
|
11382
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag.serializeBinaryToWriter
|
|
11383
|
+
);
|
|
11384
|
+
}
|
|
11370
11385
|
};
|
|
11371
11386
|
|
|
11372
11387
|
|
|
@@ -11808,6 +11823,44 @@ proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.hasFirstSeen =
|
|
|
11808
11823
|
};
|
|
11809
11824
|
|
|
11810
11825
|
|
|
11826
|
+
/**
|
|
11827
|
+
* repeated CloudockitTag tags = 18;
|
|
11828
|
+
* @return {!Array<!proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag>}
|
|
11829
|
+
*/
|
|
11830
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.getTagsList = function() {
|
|
11831
|
+
return /** @type{!Array<!proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag>} */ (
|
|
11832
|
+
jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag, 18));
|
|
11833
|
+
};
|
|
11834
|
+
|
|
11835
|
+
|
|
11836
|
+
/**
|
|
11837
|
+
* @param {!Array<!proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag>} value
|
|
11838
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity} returns this
|
|
11839
|
+
*/
|
|
11840
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.setTagsList = function(value) {
|
|
11841
|
+
return jspb.Message.setRepeatedWrapperField(this, 18, value);
|
|
11842
|
+
};
|
|
11843
|
+
|
|
11844
|
+
|
|
11845
|
+
/**
|
|
11846
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag=} opt_value
|
|
11847
|
+
* @param {number=} opt_index
|
|
11848
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag}
|
|
11849
|
+
*/
|
|
11850
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.addTags = function(opt_value, opt_index) {
|
|
11851
|
+
return jspb.Message.addToRepeatedWrapperField(this, 18, opt_value, proto.com.lansweeper.discovery.cloud.api.v1.CloudockitTag, opt_index);
|
|
11852
|
+
};
|
|
11853
|
+
|
|
11854
|
+
|
|
11855
|
+
/**
|
|
11856
|
+
* Clears the list making it empty but non-null.
|
|
11857
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity} returns this
|
|
11858
|
+
*/
|
|
11859
|
+
proto.com.lansweeper.discovery.cloud.api.v1.CloudEntity.prototype.clearTagsList = function() {
|
|
11860
|
+
return this.setTagsList([]);
|
|
11861
|
+
};
|
|
11862
|
+
|
|
11863
|
+
|
|
11811
11864
|
|
|
11812
11865
|
|
|
11813
11866
|
|
|
@@ -18653,8 +18706,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
18653
18706
|
* http://goto/soy-param-migration
|
|
18654
18707
|
* @return {!Object}
|
|
18655
18708
|
*/
|
|
18656
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18657
|
-
return proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18709
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.toObject = function(opt_includeInstance) {
|
|
18710
|
+
return proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.toObject(opt_includeInstance, this);
|
|
18658
18711
|
};
|
|
18659
18712
|
|
|
18660
18713
|
|
|
@@ -18663,16 +18716,14 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.toO
|
|
|
18663
18716
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
18664
18717
|
* the JSPB instance for transitional soy proto support:
|
|
18665
18718
|
* http://goto/soy-param-migration
|
|
18666
|
-
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18719
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} msg The msg instance to transform.
|
|
18667
18720
|
* @return {!Object}
|
|
18668
18721
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
18669
18722
|
*/
|
|
18670
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18723
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.toObject = function(includeInstance, msg) {
|
|
18671
18724
|
var f, obj = {
|
|
18672
|
-
|
|
18673
|
-
|
|
18674
|
-
entity: (f = msg.getEntity()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
18675
|
-
role: (f = msg.getRole()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
18725
|
+
mainPageSuffix: (f = msg.getMainPageSuffix()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
18726
|
+
notFoundPage: (f = msg.getNotFoundPage()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
18676
18727
|
};
|
|
18677
18728
|
|
|
18678
18729
|
if (includeInstance) {
|
|
@@ -18686,23 +18737,23 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.toObject = fu
|
|
|
18686
18737
|
/**
|
|
18687
18738
|
* Deserializes binary data (in protobuf wire format).
|
|
18688
18739
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
18689
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18740
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData}
|
|
18690
18741
|
*/
|
|
18691
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18742
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.deserializeBinary = function(bytes) {
|
|
18692
18743
|
var reader = new jspb.BinaryReader(bytes);
|
|
18693
|
-
var msg = new proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18694
|
-
return proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18744
|
+
var msg = new proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData;
|
|
18745
|
+
return proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.deserializeBinaryFromReader(msg, reader);
|
|
18695
18746
|
};
|
|
18696
18747
|
|
|
18697
18748
|
|
|
18698
18749
|
/**
|
|
18699
18750
|
* Deserializes binary data (in protobuf wire format) from the
|
|
18700
18751
|
* given reader into the given message object.
|
|
18701
|
-
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18752
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} msg The message object to deserialize into.
|
|
18702
18753
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
18703
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18754
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData}
|
|
18704
18755
|
*/
|
|
18705
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18756
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.deserializeBinaryFromReader = function(msg, reader) {
|
|
18706
18757
|
while (reader.nextField()) {
|
|
18707
18758
|
if (reader.isEndGroup()) {
|
|
18708
18759
|
break;
|
|
@@ -18712,22 +18763,12 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.deserializeBi
|
|
|
18712
18763
|
case 1:
|
|
18713
18764
|
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
18714
18765
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
18715
|
-
msg.
|
|
18766
|
+
msg.setMainPageSuffix(value);
|
|
18716
18767
|
break;
|
|
18717
18768
|
case 2:
|
|
18718
18769
|
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
18719
18770
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
18720
|
-
msg.
|
|
18721
|
-
break;
|
|
18722
|
-
case 3:
|
|
18723
|
-
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
18724
|
-
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
18725
|
-
msg.setEntity(value);
|
|
18726
|
-
break;
|
|
18727
|
-
case 4:
|
|
18728
|
-
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
18729
|
-
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
18730
|
-
msg.setRole(value);
|
|
18771
|
+
msg.setNotFoundPage(value);
|
|
18731
18772
|
break;
|
|
18732
18773
|
default:
|
|
18733
18774
|
reader.skipField();
|
|
@@ -18742,9 +18783,9 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.deserializeBi
|
|
|
18742
18783
|
* Serializes the message to binary data (in protobuf wire format).
|
|
18743
18784
|
* @return {!Uint8Array}
|
|
18744
18785
|
*/
|
|
18745
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18786
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.serializeBinary = function() {
|
|
18746
18787
|
var writer = new jspb.BinaryWriter();
|
|
18747
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18788
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.serializeBinaryToWriter(this, writer);
|
|
18748
18789
|
return writer.getResultBuffer();
|
|
18749
18790
|
};
|
|
18750
18791
|
|
|
@@ -18752,13 +18793,13 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.ser
|
|
|
18752
18793
|
/**
|
|
18753
18794
|
* Serializes the given message to binary data (in protobuf wire
|
|
18754
18795
|
* format), writing to the given BinaryWriter.
|
|
18755
|
-
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18796
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} message
|
|
18756
18797
|
* @param {!jspb.BinaryWriter} writer
|
|
18757
18798
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
18758
18799
|
*/
|
|
18759
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18800
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.serializeBinaryToWriter = function(message, writer) {
|
|
18760
18801
|
var f = undefined;
|
|
18761
|
-
f = message.
|
|
18802
|
+
f = message.getMainPageSuffix();
|
|
18762
18803
|
if (f != null) {
|
|
18763
18804
|
writer.writeMessage(
|
|
18764
18805
|
1,
|
|
@@ -18766,7 +18807,7 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.serializeBina
|
|
|
18766
18807
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
18767
18808
|
);
|
|
18768
18809
|
}
|
|
18769
|
-
f = message.
|
|
18810
|
+
f = message.getNotFoundPage();
|
|
18770
18811
|
if (f != null) {
|
|
18771
18812
|
writer.writeMessage(
|
|
18772
18813
|
2,
|
|
@@ -18774,30 +18815,14 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.serializeBina
|
|
|
18774
18815
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
18775
18816
|
);
|
|
18776
18817
|
}
|
|
18777
|
-
f = message.getEntity();
|
|
18778
|
-
if (f != null) {
|
|
18779
|
-
writer.writeMessage(
|
|
18780
|
-
3,
|
|
18781
|
-
f,
|
|
18782
|
-
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
18783
|
-
);
|
|
18784
|
-
}
|
|
18785
|
-
f = message.getRole();
|
|
18786
|
-
if (f != null) {
|
|
18787
|
-
writer.writeMessage(
|
|
18788
|
-
4,
|
|
18789
|
-
f,
|
|
18790
|
-
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
18791
|
-
);
|
|
18792
|
-
}
|
|
18793
18818
|
};
|
|
18794
18819
|
|
|
18795
18820
|
|
|
18796
18821
|
/**
|
|
18797
|
-
* optional google.protobuf.StringValue
|
|
18822
|
+
* optional google.protobuf.StringValue _main_page_suffix = 1;
|
|
18798
18823
|
* @return {?proto.google.protobuf.StringValue}
|
|
18799
18824
|
*/
|
|
18800
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18825
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.getMainPageSuffix = function() {
|
|
18801
18826
|
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
18802
18827
|
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 1));
|
|
18803
18828
|
};
|
|
@@ -18805,19 +18830,19 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.get
|
|
|
18805
18830
|
|
|
18806
18831
|
/**
|
|
18807
18832
|
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
18808
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18833
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} returns this
|
|
18809
18834
|
*/
|
|
18810
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18835
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.setMainPageSuffix = function(value) {
|
|
18811
18836
|
return jspb.Message.setWrapperField(this, 1, value);
|
|
18812
18837
|
};
|
|
18813
18838
|
|
|
18814
18839
|
|
|
18815
18840
|
/**
|
|
18816
18841
|
* Clears the message field making it undefined.
|
|
18817
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18842
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} returns this
|
|
18818
18843
|
*/
|
|
18819
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18820
|
-
return this.
|
|
18844
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.clearMainPageSuffix = function() {
|
|
18845
|
+
return this.setMainPageSuffix(undefined);
|
|
18821
18846
|
};
|
|
18822
18847
|
|
|
18823
18848
|
|
|
@@ -18825,16 +18850,16 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.cle
|
|
|
18825
18850
|
* Returns whether this field is set.
|
|
18826
18851
|
* @return {boolean}
|
|
18827
18852
|
*/
|
|
18828
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18853
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.hasMainPageSuffix = function() {
|
|
18829
18854
|
return jspb.Message.getField(this, 1) != null;
|
|
18830
18855
|
};
|
|
18831
18856
|
|
|
18832
18857
|
|
|
18833
18858
|
/**
|
|
18834
|
-
* optional google.protobuf.StringValue
|
|
18859
|
+
* optional google.protobuf.StringValue _not_found_page = 2;
|
|
18835
18860
|
* @return {?proto.google.protobuf.StringValue}
|
|
18836
18861
|
*/
|
|
18837
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18862
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.getNotFoundPage = function() {
|
|
18838
18863
|
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
18839
18864
|
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 2));
|
|
18840
18865
|
};
|
|
@@ -18842,19 +18867,19 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.get
|
|
|
18842
18867
|
|
|
18843
18868
|
/**
|
|
18844
18869
|
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
18845
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18870
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} returns this
|
|
18846
18871
|
*/
|
|
18847
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18872
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.setNotFoundPage = function(value) {
|
|
18848
18873
|
return jspb.Message.setWrapperField(this, 2, value);
|
|
18849
18874
|
};
|
|
18850
18875
|
|
|
18851
18876
|
|
|
18852
18877
|
/**
|
|
18853
18878
|
* Clears the message field making it undefined.
|
|
18854
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18879
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData} returns this
|
|
18855
18880
|
*/
|
|
18856
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18857
|
-
return this.
|
|
18881
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.clearNotFoundPage = function() {
|
|
18882
|
+
return this.setNotFoundPage(undefined);
|
|
18858
18883
|
};
|
|
18859
18884
|
|
|
18860
18885
|
|
|
@@ -18862,85 +18887,11 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.cle
|
|
|
18862
18887
|
* Returns whether this field is set.
|
|
18863
18888
|
* @return {boolean}
|
|
18864
18889
|
*/
|
|
18865
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18890
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.hasNotFoundPage = function() {
|
|
18866
18891
|
return jspb.Message.getField(this, 2) != null;
|
|
18867
18892
|
};
|
|
18868
18893
|
|
|
18869
18894
|
|
|
18870
|
-
/**
|
|
18871
|
-
* optional google.protobuf.StringValue _entity = 3;
|
|
18872
|
-
* @return {?proto.google.protobuf.StringValue}
|
|
18873
|
-
*/
|
|
18874
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.getEntity = function() {
|
|
18875
|
-
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
18876
|
-
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 3));
|
|
18877
|
-
};
|
|
18878
|
-
|
|
18879
|
-
|
|
18880
|
-
/**
|
|
18881
|
-
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
18882
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
18883
|
-
*/
|
|
18884
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.setEntity = function(value) {
|
|
18885
|
-
return jspb.Message.setWrapperField(this, 3, value);
|
|
18886
|
-
};
|
|
18887
|
-
|
|
18888
|
-
|
|
18889
|
-
/**
|
|
18890
|
-
* Clears the message field making it undefined.
|
|
18891
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
18892
|
-
*/
|
|
18893
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.clearEntity = function() {
|
|
18894
|
-
return this.setEntity(undefined);
|
|
18895
|
-
};
|
|
18896
|
-
|
|
18897
|
-
|
|
18898
|
-
/**
|
|
18899
|
-
* Returns whether this field is set.
|
|
18900
|
-
* @return {boolean}
|
|
18901
|
-
*/
|
|
18902
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.hasEntity = function() {
|
|
18903
|
-
return jspb.Message.getField(this, 3) != null;
|
|
18904
|
-
};
|
|
18905
|
-
|
|
18906
|
-
|
|
18907
|
-
/**
|
|
18908
|
-
* optional google.protobuf.StringValue _role = 4;
|
|
18909
|
-
* @return {?proto.google.protobuf.StringValue}
|
|
18910
|
-
*/
|
|
18911
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.getRole = function() {
|
|
18912
|
-
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
18913
|
-
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 4));
|
|
18914
|
-
};
|
|
18915
|
-
|
|
18916
|
-
|
|
18917
|
-
/**
|
|
18918
|
-
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
18919
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
18920
|
-
*/
|
|
18921
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.setRole = function(value) {
|
|
18922
|
-
return jspb.Message.setWrapperField(this, 4, value);
|
|
18923
|
-
};
|
|
18924
|
-
|
|
18925
|
-
|
|
18926
|
-
/**
|
|
18927
|
-
* Clears the message field making it undefined.
|
|
18928
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
18929
|
-
*/
|
|
18930
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.clearRole = function() {
|
|
18931
|
-
return this.setRole(undefined);
|
|
18932
|
-
};
|
|
18933
|
-
|
|
18934
|
-
|
|
18935
|
-
/**
|
|
18936
|
-
* Returns whether this field is set.
|
|
18937
|
-
* @return {boolean}
|
|
18938
|
-
*/
|
|
18939
|
-
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.hasRole = function() {
|
|
18940
|
-
return jspb.Message.getField(this, 4) != null;
|
|
18941
|
-
};
|
|
18942
|
-
|
|
18943
|
-
|
|
18944
18895
|
|
|
18945
18896
|
|
|
18946
18897
|
|
|
@@ -18957,8 +18908,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
18957
18908
|
* http://goto/soy-param-migration
|
|
18958
18909
|
* @return {!Object}
|
|
18959
18910
|
*/
|
|
18960
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18961
|
-
return proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18911
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.toObject = function(opt_includeInstance) {
|
|
18912
|
+
return proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.toObject(opt_includeInstance, this);
|
|
18962
18913
|
};
|
|
18963
18914
|
|
|
18964
18915
|
|
|
@@ -18967,14 +18918,16 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.toObj
|
|
|
18967
18918
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
18968
18919
|
* the JSPB instance for transitional soy proto support:
|
|
18969
18920
|
* http://goto/soy-param-migration
|
|
18970
|
-
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18921
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} msg The msg instance to transform.
|
|
18971
18922
|
* @return {!Object}
|
|
18972
18923
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
18973
18924
|
*/
|
|
18974
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18925
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.toObject = function(includeInstance, msg) {
|
|
18975
18926
|
var f, obj = {
|
|
18976
|
-
|
|
18977
|
-
|
|
18927
|
+
email: (f = msg.getEmail()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
18928
|
+
domain: (f = msg.getDomain()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
18929
|
+
entity: (f = msg.getEntity()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
18930
|
+
role: (f = msg.getRole()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
18978
18931
|
};
|
|
18979
18932
|
|
|
18980
18933
|
if (includeInstance) {
|
|
@@ -18988,23 +18941,23 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.toObject = func
|
|
|
18988
18941
|
/**
|
|
18989
18942
|
* Deserializes binary data (in protobuf wire format).
|
|
18990
18943
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
18991
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18944
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl}
|
|
18992
18945
|
*/
|
|
18993
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18946
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.deserializeBinary = function(bytes) {
|
|
18994
18947
|
var reader = new jspb.BinaryReader(bytes);
|
|
18995
|
-
var msg = new proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18996
|
-
return proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18948
|
+
var msg = new proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl;
|
|
18949
|
+
return proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.deserializeBinaryFromReader(msg, reader);
|
|
18997
18950
|
};
|
|
18998
18951
|
|
|
18999
18952
|
|
|
19000
18953
|
/**
|
|
19001
18954
|
* Deserializes binary data (in protobuf wire format) from the
|
|
19002
18955
|
* given reader into the given message object.
|
|
19003
|
-
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18956
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} msg The message object to deserialize into.
|
|
19004
18957
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
19005
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18958
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl}
|
|
19006
18959
|
*/
|
|
19007
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
18960
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.deserializeBinaryFromReader = function(msg, reader) {
|
|
19008
18961
|
while (reader.nextField()) {
|
|
19009
18962
|
if (reader.isEndGroup()) {
|
|
19010
18963
|
break;
|
|
@@ -19014,12 +18967,22 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.deserializeBina
|
|
|
19014
18967
|
case 1:
|
|
19015
18968
|
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
19016
18969
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
19017
|
-
msg.
|
|
18970
|
+
msg.setEmail(value);
|
|
19018
18971
|
break;
|
|
19019
18972
|
case 2:
|
|
19020
18973
|
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
19021
18974
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
19022
|
-
msg.
|
|
18975
|
+
msg.setDomain(value);
|
|
18976
|
+
break;
|
|
18977
|
+
case 3:
|
|
18978
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
18979
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
18980
|
+
msg.setEntity(value);
|
|
18981
|
+
break;
|
|
18982
|
+
case 4:
|
|
18983
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
18984
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
18985
|
+
msg.setRole(value);
|
|
19023
18986
|
break;
|
|
19024
18987
|
default:
|
|
19025
18988
|
reader.skipField();
|
|
@@ -19034,9 +18997,9 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.deserializeBina
|
|
|
19034
18997
|
* Serializes the message to binary data (in protobuf wire format).
|
|
19035
18998
|
* @return {!Uint8Array}
|
|
19036
18999
|
*/
|
|
19037
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19000
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.serializeBinary = function() {
|
|
19038
19001
|
var writer = new jspb.BinaryWriter();
|
|
19039
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19002
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.serializeBinaryToWriter(this, writer);
|
|
19040
19003
|
return writer.getResultBuffer();
|
|
19041
19004
|
};
|
|
19042
19005
|
|
|
@@ -19044,13 +19007,13 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.seria
|
|
|
19044
19007
|
/**
|
|
19045
19008
|
* Serializes the given message to binary data (in protobuf wire
|
|
19046
19009
|
* format), writing to the given BinaryWriter.
|
|
19047
|
-
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19010
|
+
* @param {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} message
|
|
19048
19011
|
* @param {!jspb.BinaryWriter} writer
|
|
19049
19012
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
19050
19013
|
*/
|
|
19051
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19014
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.serializeBinaryToWriter = function(message, writer) {
|
|
19052
19015
|
var f = undefined;
|
|
19053
|
-
f = message.
|
|
19016
|
+
f = message.getEmail();
|
|
19054
19017
|
if (f != null) {
|
|
19055
19018
|
writer.writeMessage(
|
|
19056
19019
|
1,
|
|
@@ -19058,7 +19021,7 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.serializeBinary
|
|
|
19058
19021
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
19059
19022
|
);
|
|
19060
19023
|
}
|
|
19061
|
-
f = message.
|
|
19024
|
+
f = message.getDomain();
|
|
19062
19025
|
if (f != null) {
|
|
19063
19026
|
writer.writeMessage(
|
|
19064
19027
|
2,
|
|
@@ -19066,14 +19029,30 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.serializeBinary
|
|
|
19066
19029
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
19067
19030
|
);
|
|
19068
19031
|
}
|
|
19032
|
+
f = message.getEntity();
|
|
19033
|
+
if (f != null) {
|
|
19034
|
+
writer.writeMessage(
|
|
19035
|
+
3,
|
|
19036
|
+
f,
|
|
19037
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
19038
|
+
);
|
|
19039
|
+
}
|
|
19040
|
+
f = message.getRole();
|
|
19041
|
+
if (f != null) {
|
|
19042
|
+
writer.writeMessage(
|
|
19043
|
+
4,
|
|
19044
|
+
f,
|
|
19045
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
19046
|
+
);
|
|
19047
|
+
}
|
|
19069
19048
|
};
|
|
19070
19049
|
|
|
19071
19050
|
|
|
19072
19051
|
/**
|
|
19073
|
-
* optional google.protobuf.StringValue
|
|
19052
|
+
* optional google.protobuf.StringValue _email = 1;
|
|
19074
19053
|
* @return {?proto.google.protobuf.StringValue}
|
|
19075
19054
|
*/
|
|
19076
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19055
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.getEmail = function() {
|
|
19077
19056
|
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
19078
19057
|
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 1));
|
|
19079
19058
|
};
|
|
@@ -19081,19 +19060,19 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.getMa
|
|
|
19081
19060
|
|
|
19082
19061
|
/**
|
|
19083
19062
|
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
19084
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19063
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19085
19064
|
*/
|
|
19086
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19065
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.setEmail = function(value) {
|
|
19087
19066
|
return jspb.Message.setWrapperField(this, 1, value);
|
|
19088
19067
|
};
|
|
19089
19068
|
|
|
19090
19069
|
|
|
19091
19070
|
/**
|
|
19092
19071
|
* Clears the message field making it undefined.
|
|
19093
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19072
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19094
19073
|
*/
|
|
19095
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19096
|
-
return this.
|
|
19074
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.clearEmail = function() {
|
|
19075
|
+
return this.setEmail(undefined);
|
|
19097
19076
|
};
|
|
19098
19077
|
|
|
19099
19078
|
|
|
@@ -19101,16 +19080,16 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.clear
|
|
|
19101
19080
|
* Returns whether this field is set.
|
|
19102
19081
|
* @return {boolean}
|
|
19103
19082
|
*/
|
|
19104
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19083
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.hasEmail = function() {
|
|
19105
19084
|
return jspb.Message.getField(this, 1) != null;
|
|
19106
19085
|
};
|
|
19107
19086
|
|
|
19108
19087
|
|
|
19109
19088
|
/**
|
|
19110
|
-
* optional google.protobuf.StringValue
|
|
19089
|
+
* optional google.protobuf.StringValue _domain = 2;
|
|
19111
19090
|
* @return {?proto.google.protobuf.StringValue}
|
|
19112
19091
|
*/
|
|
19113
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19092
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.getDomain = function() {
|
|
19114
19093
|
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
19115
19094
|
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 2));
|
|
19116
19095
|
};
|
|
@@ -19118,19 +19097,19 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.getNo
|
|
|
19118
19097
|
|
|
19119
19098
|
/**
|
|
19120
19099
|
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
19121
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19100
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19122
19101
|
*/
|
|
19123
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19102
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.setDomain = function(value) {
|
|
19124
19103
|
return jspb.Message.setWrapperField(this, 2, value);
|
|
19125
19104
|
};
|
|
19126
19105
|
|
|
19127
19106
|
|
|
19128
19107
|
/**
|
|
19129
19108
|
* Clears the message field making it undefined.
|
|
19130
|
-
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19109
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19131
19110
|
*/
|
|
19132
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19133
|
-
return this.
|
|
19111
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.clearDomain = function() {
|
|
19112
|
+
return this.setDomain(undefined);
|
|
19134
19113
|
};
|
|
19135
19114
|
|
|
19136
19115
|
|
|
@@ -19138,11 +19117,85 @@ proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketWebsiteData.prototype.clear
|
|
|
19138
19117
|
* Returns whether this field is set.
|
|
19139
19118
|
* @return {boolean}
|
|
19140
19119
|
*/
|
|
19141
|
-
proto.com.lansweeper.discovery.cloud.api.v1.
|
|
19120
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.hasDomain = function() {
|
|
19142
19121
|
return jspb.Message.getField(this, 2) != null;
|
|
19143
19122
|
};
|
|
19144
19123
|
|
|
19145
19124
|
|
|
19125
|
+
/**
|
|
19126
|
+
* optional google.protobuf.StringValue _entity = 3;
|
|
19127
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
19128
|
+
*/
|
|
19129
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.getEntity = function() {
|
|
19130
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
19131
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 3));
|
|
19132
|
+
};
|
|
19133
|
+
|
|
19134
|
+
|
|
19135
|
+
/**
|
|
19136
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
19137
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19138
|
+
*/
|
|
19139
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.setEntity = function(value) {
|
|
19140
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
19141
|
+
};
|
|
19142
|
+
|
|
19143
|
+
|
|
19144
|
+
/**
|
|
19145
|
+
* Clears the message field making it undefined.
|
|
19146
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19147
|
+
*/
|
|
19148
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.clearEntity = function() {
|
|
19149
|
+
return this.setEntity(undefined);
|
|
19150
|
+
};
|
|
19151
|
+
|
|
19152
|
+
|
|
19153
|
+
/**
|
|
19154
|
+
* Returns whether this field is set.
|
|
19155
|
+
* @return {boolean}
|
|
19156
|
+
*/
|
|
19157
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.hasEntity = function() {
|
|
19158
|
+
return jspb.Message.getField(this, 3) != null;
|
|
19159
|
+
};
|
|
19160
|
+
|
|
19161
|
+
|
|
19162
|
+
/**
|
|
19163
|
+
* optional google.protobuf.StringValue _role = 4;
|
|
19164
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
19165
|
+
*/
|
|
19166
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.getRole = function() {
|
|
19167
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
19168
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 4));
|
|
19169
|
+
};
|
|
19170
|
+
|
|
19171
|
+
|
|
19172
|
+
/**
|
|
19173
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
19174
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19175
|
+
*/
|
|
19176
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.setRole = function(value) {
|
|
19177
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
19178
|
+
};
|
|
19179
|
+
|
|
19180
|
+
|
|
19181
|
+
/**
|
|
19182
|
+
* Clears the message field making it undefined.
|
|
19183
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl} returns this
|
|
19184
|
+
*/
|
|
19185
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.clearRole = function() {
|
|
19186
|
+
return this.setRole(undefined);
|
|
19187
|
+
};
|
|
19188
|
+
|
|
19189
|
+
|
|
19190
|
+
/**
|
|
19191
|
+
* Returns whether this field is set.
|
|
19192
|
+
* @return {boolean}
|
|
19193
|
+
*/
|
|
19194
|
+
proto.com.lansweeper.discovery.cloud.api.v1.GCPBucketAccessControl.prototype.hasRole = function() {
|
|
19195
|
+
return jspb.Message.getField(this, 4) != null;
|
|
19196
|
+
};
|
|
19197
|
+
|
|
19198
|
+
|
|
19146
19199
|
|
|
19147
19200
|
|
|
19148
19201
|
|
|
@@ -100470,7 +100523,8 @@ proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.toObject = fun
|
|
|
100470
100523
|
proto.com.lansweeper.discovery.cloud.api.v1.CDKRule.toObject, includeInstance),
|
|
100471
100524
|
resourcesBillingList: jspb.Message.toObjectList(msg.getResourcesBillingList(),
|
|
100472
100525
|
proto.com.lansweeper.discovery.cloud.api.v1.ResourceBilling.toObject, includeInstance),
|
|
100473
|
-
aDKPrice: (f = msg.getADKPrice()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
100526
|
+
aDKPrice: (f = msg.getADKPrice()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
100527
|
+
architecture: (f = msg.getArchitecture()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
|
|
100474
100528
|
};
|
|
100475
100529
|
|
|
100476
100530
|
if (includeInstance) {
|
|
@@ -100737,6 +100791,11 @@ proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.deserializeBin
|
|
|
100737
100791
|
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
100738
100792
|
msg.setADKPrice(value);
|
|
100739
100793
|
break;
|
|
100794
|
+
case 47:
|
|
100795
|
+
var value = new google_protobuf_wrappers_pb.StringValue;
|
|
100796
|
+
reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
|
|
100797
|
+
msg.setArchitecture(value);
|
|
100798
|
+
break;
|
|
100740
100799
|
default:
|
|
100741
100800
|
reader.skipField();
|
|
100742
100801
|
break;
|
|
@@ -101134,6 +101193,14 @@ proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.serializeBinar
|
|
|
101134
101193
|
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
101135
101194
|
);
|
|
101136
101195
|
}
|
|
101196
|
+
f = message.getArchitecture();
|
|
101197
|
+
if (f != null) {
|
|
101198
|
+
writer.writeMessage(
|
|
101199
|
+
47,
|
|
101200
|
+
f,
|
|
101201
|
+
google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
|
|
101202
|
+
);
|
|
101203
|
+
}
|
|
101137
101204
|
};
|
|
101138
101205
|
|
|
101139
101206
|
|
|
@@ -102854,6 +102921,43 @@ proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.prototype.hasA
|
|
|
102854
102921
|
};
|
|
102855
102922
|
|
|
102856
102923
|
|
|
102924
|
+
/**
|
|
102925
|
+
* optional google.protobuf.StringValue _architecture = 47;
|
|
102926
|
+
* @return {?proto.google.protobuf.StringValue}
|
|
102927
|
+
*/
|
|
102928
|
+
proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.prototype.getArchitecture = function() {
|
|
102929
|
+
return /** @type{?proto.google.protobuf.StringValue} */ (
|
|
102930
|
+
jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 47));
|
|
102931
|
+
};
|
|
102932
|
+
|
|
102933
|
+
|
|
102934
|
+
/**
|
|
102935
|
+
* @param {?proto.google.protobuf.StringValue|undefined} value
|
|
102936
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute} returns this
|
|
102937
|
+
*/
|
|
102938
|
+
proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.prototype.setArchitecture = function(value) {
|
|
102939
|
+
return jspb.Message.setWrapperField(this, 47, value);
|
|
102940
|
+
};
|
|
102941
|
+
|
|
102942
|
+
|
|
102943
|
+
/**
|
|
102944
|
+
* Clears the message field making it undefined.
|
|
102945
|
+
* @return {!proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute} returns this
|
|
102946
|
+
*/
|
|
102947
|
+
proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.prototype.clearArchitecture = function() {
|
|
102948
|
+
return this.setArchitecture(undefined);
|
|
102949
|
+
};
|
|
102950
|
+
|
|
102951
|
+
|
|
102952
|
+
/**
|
|
102953
|
+
* Returns whether this field is set.
|
|
102954
|
+
* @return {boolean}
|
|
102955
|
+
*/
|
|
102956
|
+
proto.com.lansweeper.discovery.cloud.api.v1.AzureMicrosoftCompute.prototype.hasArchitecture = function() {
|
|
102957
|
+
return jspb.Message.getField(this, 47) != null;
|
|
102958
|
+
};
|
|
102959
|
+
|
|
102960
|
+
|
|
102857
102961
|
|
|
102858
102962
|
/**
|
|
102859
102963
|
* List of repeated fields within this message type.
|