chirpstack/api/js/google/api/logging_pb.js
2022-04-06 21:18:32 +01:00

433 lines
14 KiB
JavaScript
Vendored

/**
* @fileoverview
* @enhanceable
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
goog.exportSymbol('proto.google.api.Logging', null, global);
goog.exportSymbol('proto.google.api.Logging.LoggingDestination', null, global);
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.google.api.Logging = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.google.api.Logging.repeatedFields_, null);
};
goog.inherits(proto.google.api.Logging, jspb.Message);
if (goog.DEBUG && !COMPILED) {
proto.google.api.Logging.displayName = 'proto.google.api.Logging';
}
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.google.api.Logging.repeatedFields_ = [1,2];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto suitable for use in Soy templates.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
* for transitional soy proto support: http://goto/soy-param-migration
* @return {!Object}
*/
proto.google.api.Logging.prototype.toObject = function(opt_includeInstance) {
return proto.google.api.Logging.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Whether to include the JSPB
* instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.google.api.Logging} msg The msg instance to transform.
* @return {!Object}
*/
proto.google.api.Logging.toObject = function(includeInstance, msg) {
var f, obj = {
producerDestinationsList: jspb.Message.toObjectList(msg.getProducerDestinationsList(),
proto.google.api.Logging.LoggingDestination.toObject, includeInstance),
consumerDestinationsList: jspb.Message.toObjectList(msg.getConsumerDestinationsList(),
proto.google.api.Logging.LoggingDestination.toObject, includeInstance)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.google.api.Logging}
*/
proto.google.api.Logging.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.google.api.Logging;
return proto.google.api.Logging.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.google.api.Logging} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.google.api.Logging}
*/
proto.google.api.Logging.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = new proto.google.api.Logging.LoggingDestination;
reader.readMessage(value,proto.google.api.Logging.LoggingDestination.deserializeBinaryFromReader);
msg.getProducerDestinationsList().push(value);
msg.setProducerDestinationsList(msg.getProducerDestinationsList());
break;
case 2:
var value = new proto.google.api.Logging.LoggingDestination;
reader.readMessage(value,proto.google.api.Logging.LoggingDestination.deserializeBinaryFromReader);
msg.getConsumerDestinationsList().push(value);
msg.setConsumerDestinationsList(msg.getConsumerDestinationsList());
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Class method variant: serializes the given message to binary data
* (in protobuf wire format), writing to the given BinaryWriter.
* @param {!proto.google.api.Logging} message
* @param {!jspb.BinaryWriter} writer
*/
proto.google.api.Logging.serializeBinaryToWriter = function(message, writer) {
message.serializeBinaryToWriter(writer);
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.google.api.Logging.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
this.serializeBinaryToWriter(writer);
return writer.getResultBuffer();
};
/**
* Serializes the message to binary data (in protobuf wire format),
* writing to the given BinaryWriter.
* @param {!jspb.BinaryWriter} writer
*/
proto.google.api.Logging.prototype.serializeBinaryToWriter = function (writer) {
var f = undefined;
f = this.getProducerDestinationsList();
if (f.length > 0) {
writer.writeRepeatedMessage(
1,
f,
proto.google.api.Logging.LoggingDestination.serializeBinaryToWriter
);
}
f = this.getConsumerDestinationsList();
if (f.length > 0) {
writer.writeRepeatedMessage(
2,
f,
proto.google.api.Logging.LoggingDestination.serializeBinaryToWriter
);
}
};
/**
* Creates a deep clone of this proto. No data is shared with the original.
* @return {!proto.google.api.Logging} The clone.
*/
proto.google.api.Logging.prototype.cloneMessage = function() {
return /** @type {!proto.google.api.Logging} */ (jspb.Message.cloneMessage(this));
};
/**
* repeated LoggingDestination producer_destinations = 1;
* If you change this array by adding, removing or replacing elements, or if you
* replace the array itself, then you must call the setter to update it.
* @return {!Array.<!proto.google.api.Logging.LoggingDestination>}
*/
proto.google.api.Logging.prototype.getProducerDestinationsList = function() {
return /** @type{!Array.<!proto.google.api.Logging.LoggingDestination>} */ (
jspb.Message.getRepeatedWrapperField(this, proto.google.api.Logging.LoggingDestination, 1));
};
/** @param {Array.<!proto.google.api.Logging.LoggingDestination>} value */
proto.google.api.Logging.prototype.setProducerDestinationsList = function(value) {
jspb.Message.setRepeatedWrapperField(this, 1, value);
};
proto.google.api.Logging.prototype.clearProducerDestinationsList = function() {
this.setProducerDestinationsList([]);
};
/**
* repeated LoggingDestination consumer_destinations = 2;
* If you change this array by adding, removing or replacing elements, or if you
* replace the array itself, then you must call the setter to update it.
* @return {!Array.<!proto.google.api.Logging.LoggingDestination>}
*/
proto.google.api.Logging.prototype.getConsumerDestinationsList = function() {
return /** @type{!Array.<!proto.google.api.Logging.LoggingDestination>} */ (
jspb.Message.getRepeatedWrapperField(this, proto.google.api.Logging.LoggingDestination, 2));
};
/** @param {Array.<!proto.google.api.Logging.LoggingDestination>} value */
proto.google.api.Logging.prototype.setConsumerDestinationsList = function(value) {
jspb.Message.setRepeatedWrapperField(this, 2, value);
};
proto.google.api.Logging.prototype.clearConsumerDestinationsList = function() {
this.setConsumerDestinationsList([]);
};
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.google.api.Logging.LoggingDestination = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.google.api.Logging.LoggingDestination.repeatedFields_, null);
};
goog.inherits(proto.google.api.Logging.LoggingDestination, jspb.Message);
if (goog.DEBUG && !COMPILED) {
proto.google.api.Logging.LoggingDestination.displayName = 'proto.google.api.Logging.LoggingDestination';
}
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.google.api.Logging.LoggingDestination.repeatedFields_ = [1];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto suitable for use in Soy templates.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
* for transitional soy proto support: http://goto/soy-param-migration
* @return {!Object}
*/
proto.google.api.Logging.LoggingDestination.prototype.toObject = function(opt_includeInstance) {
return proto.google.api.Logging.LoggingDestination.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Whether to include the JSPB
* instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.google.api.Logging.LoggingDestination} msg The msg instance to transform.
* @return {!Object}
*/
proto.google.api.Logging.LoggingDestination.toObject = function(includeInstance, msg) {
var f, obj = {
monitoredResource: msg.getMonitoredResource(),
logsList: jspb.Message.getField(msg, 1)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.google.api.Logging.LoggingDestination}
*/
proto.google.api.Logging.LoggingDestination.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.google.api.Logging.LoggingDestination;
return proto.google.api.Logging.LoggingDestination.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.google.api.Logging.LoggingDestination} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.google.api.Logging.LoggingDestination}
*/
proto.google.api.Logging.LoggingDestination.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setMonitoredResource(value);
break;
case 1:
var value = /** @type {string} */ (reader.readString());
msg.getLogsList().push(value);
msg.setLogsList(msg.getLogsList());
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Class method variant: serializes the given message to binary data
* (in protobuf wire format), writing to the given BinaryWriter.
* @param {!proto.google.api.Logging.LoggingDestination} message
* @param {!jspb.BinaryWriter} writer
*/
proto.google.api.Logging.LoggingDestination.serializeBinaryToWriter = function(message, writer) {
message.serializeBinaryToWriter(writer);
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.google.api.Logging.LoggingDestination.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
this.serializeBinaryToWriter(writer);
return writer.getResultBuffer();
};
/**
* Serializes the message to binary data (in protobuf wire format),
* writing to the given BinaryWriter.
* @param {!jspb.BinaryWriter} writer
*/
proto.google.api.Logging.LoggingDestination.prototype.serializeBinaryToWriter = function (writer) {
var f = undefined;
f = this.getMonitoredResource();
if (f.length > 0) {
writer.writeString(
3,
f
);
}
f = this.getLogsList();
if (f.length > 0) {
writer.writeRepeatedString(
1,
f
);
}
};
/**
* Creates a deep clone of this proto. No data is shared with the original.
* @return {!proto.google.api.Logging.LoggingDestination} The clone.
*/
proto.google.api.Logging.LoggingDestination.prototype.cloneMessage = function() {
return /** @type {!proto.google.api.Logging.LoggingDestination} */ (jspb.Message.cloneMessage(this));
};
/**
* optional string monitored_resource = 3;
* @return {string}
*/
proto.google.api.Logging.LoggingDestination.prototype.getMonitoredResource = function() {
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 3, ""));
};
/** @param {string} value */
proto.google.api.Logging.LoggingDestination.prototype.setMonitoredResource = function(value) {
jspb.Message.setField(this, 3, value);
};
/**
* repeated string logs = 1;
* If you change this array by adding, removing or replacing elements, or if you
* replace the array itself, then you must call the setter to update it.
* @return {!Array.<string>}
*/
proto.google.api.Logging.LoggingDestination.prototype.getLogsList = function() {
return /** @type {!Array.<string>} */ (jspb.Message.getField(this, 1));
};
/** @param {Array.<string>} value */
proto.google.api.Logging.LoggingDestination.prototype.setLogsList = function(value) {
jspb.Message.setField(this, 1, value || []);
};
proto.google.api.Logging.LoggingDestination.prototype.clearLogsList = function() {
jspb.Message.setField(this, 1, []);
};
goog.object.extend(exports, proto.google.api);