mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-13 14:23:10 +00:00
406 lines
12 KiB
JavaScript
Vendored
406 lines
12 KiB
JavaScript
Vendored
/**
|
|
* @fileoverview
|
|
* @enhanceable
|
|
* @public
|
|
*/
|
|
// GENERATED CODE -- DO NOT EDIT!
|
|
|
|
var jspb = require('google-protobuf');
|
|
var goog = jspb;
|
|
var global = Function('return this')();
|
|
|
|
var google_protobuf_descriptor_pb = require('google-protobuf/google/protobuf/descriptor_pb.js');
|
|
goog.exportSymbol('google.api.routing', null, global);
|
|
goog.exportSymbol('proto.google.api.RoutingParameter', null, global);
|
|
goog.exportSymbol('proto.google.api.RoutingRule', 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.RoutingRule = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, proto.google.api.RoutingRule.repeatedFields_, null);
|
|
};
|
|
goog.inherits(proto.google.api.RoutingRule, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.google.api.RoutingRule.displayName = 'proto.google.api.RoutingRule';
|
|
}
|
|
/**
|
|
* List of repeated fields within this message type.
|
|
* @private {!Array<number>}
|
|
* @const
|
|
*/
|
|
proto.google.api.RoutingRule.repeatedFields_ = [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.RoutingRule.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.google.api.RoutingRule.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.RoutingRule} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.google.api.RoutingRule.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
routingParametersList: jspb.Message.toObjectList(msg.getRoutingParametersList(),
|
|
proto.google.api.RoutingParameter.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.RoutingRule}
|
|
*/
|
|
proto.google.api.RoutingRule.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.google.api.RoutingRule;
|
|
return proto.google.api.RoutingRule.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.google.api.RoutingRule} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.google.api.RoutingRule}
|
|
*/
|
|
proto.google.api.RoutingRule.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 2:
|
|
var value = new proto.google.api.RoutingParameter;
|
|
reader.readMessage(value,proto.google.api.RoutingParameter.deserializeBinaryFromReader);
|
|
msg.getRoutingParametersList().push(value);
|
|
msg.setRoutingParametersList(msg.getRoutingParametersList());
|
|
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.RoutingRule} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.google.api.RoutingRule.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.google.api.RoutingRule.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.RoutingRule.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getRoutingParametersList();
|
|
if (f.length > 0) {
|
|
writer.writeRepeatedMessage(
|
|
2,
|
|
f,
|
|
proto.google.api.RoutingParameter.serializeBinaryToWriter
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.google.api.RoutingRule} The clone.
|
|
*/
|
|
proto.google.api.RoutingRule.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.google.api.RoutingRule} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* repeated RoutingParameter routing_parameters = 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.RoutingParameter>}
|
|
*/
|
|
proto.google.api.RoutingRule.prototype.getRoutingParametersList = function() {
|
|
return /** @type{!Array.<!proto.google.api.RoutingParameter>} */ (
|
|
jspb.Message.getRepeatedWrapperField(this, proto.google.api.RoutingParameter, 2));
|
|
};
|
|
|
|
|
|
/** @param {Array.<!proto.google.api.RoutingParameter>} value */
|
|
proto.google.api.RoutingRule.prototype.setRoutingParametersList = function(value) {
|
|
jspb.Message.setRepeatedWrapperField(this, 2, value);
|
|
};
|
|
|
|
|
|
proto.google.api.RoutingRule.prototype.clearRoutingParametersList = function() {
|
|
this.setRoutingParametersList([]);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* 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.RoutingParameter = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.google.api.RoutingParameter, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.google.api.RoutingParameter.displayName = 'proto.google.api.RoutingParameter';
|
|
}
|
|
|
|
|
|
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.RoutingParameter.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.google.api.RoutingParameter.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.RoutingParameter} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.google.api.RoutingParameter.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
field: msg.getField(),
|
|
pathTemplate: msg.getPathTemplate()
|
|
};
|
|
|
|
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.RoutingParameter}
|
|
*/
|
|
proto.google.api.RoutingParameter.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.google.api.RoutingParameter;
|
|
return proto.google.api.RoutingParameter.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.google.api.RoutingParameter} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.google.api.RoutingParameter}
|
|
*/
|
|
proto.google.api.RoutingParameter.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setField(value);
|
|
break;
|
|
case 2:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setPathTemplate(value);
|
|
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.RoutingParameter} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.google.api.RoutingParameter.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.google.api.RoutingParameter.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.RoutingParameter.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getField();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getPathTemplate();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
2,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.google.api.RoutingParameter} The clone.
|
|
*/
|
|
proto.google.api.RoutingParameter.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.google.api.RoutingParameter} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string field = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.google.api.RoutingParameter.prototype.getField = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.google.api.RoutingParameter.prototype.setField = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string path_template = 2;
|
|
* @return {string}
|
|
*/
|
|
proto.google.api.RoutingParameter.prototype.getPathTemplate = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 2, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.google.api.RoutingParameter.prototype.setPathTemplate = function(value) {
|
|
jspb.Message.setField(this, 2, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* A tuple of {field number, class constructor} for the extension
|
|
* field named `routing`.
|
|
* @type {!jspb.ExtensionFieldInfo.<!proto.google.api.RoutingRule>}
|
|
*/
|
|
proto.google.api.routing = new jspb.ExtensionFieldInfo(
|
|
72295729,
|
|
{routing: 0},
|
|
proto.google.api.RoutingRule,
|
|
/** @type {?function((boolean|undefined),!jspb.Message=): !Object} */ (
|
|
proto.google.api.RoutingRule.toObject),
|
|
0);
|
|
|
|
google_protobuf_descriptor_pb.MethodOptions.extensionsBinary[72295729] = new jspb.ExtensionFieldBinaryInfo(
|
|
proto.google.api.routing,
|
|
jspb.BinaryReader.prototype.readMessage,
|
|
jspb.BinaryWriter.prototype.writeMessage,
|
|
proto.google.api.RoutingRule.serializeBinaryToWriter,
|
|
proto.google.api.RoutingRule.deserializeBinaryFromReader,
|
|
false);
|
|
// This registers the extension field with the extended class, so that
|
|
// toObject() will function correctly.
|
|
google_protobuf_descriptor_pb.MethodOptions.extensions[72295729] = proto.google.api.routing;
|
|
|
|
goog.object.extend(exports, proto.google.api);
|