io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of envoy-scala-control-plane_2.13 Show documentation
Show all versions of envoy-scala-control-plane_2.13 Show documentation
ScalaPB generated bindings for Envoy
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3
package io.envoyproxy.envoy.service.load_stats.v3
/** The management server sends envoy a LoadStatsResponse with all clusters it
* is interested in learning load stats about.
*
* @param clusters
* Clusters to report stats for.
* Not populated if *send_all_clusters* is true.
* @param sendAllClusters
* If true, the client should send all clusters it knows about.
* Only clients that advertise the "envoy.lrs.supports_send_all_clusters" capability in their
* :ref:`client_features<envoy_v3_api_field_config.core.v3.Node.client_features>` field will honor this field.
* @param loadReportingInterval
* The minimum interval of time to collect stats over. This is only a minimum for two reasons:
*
* 1. There may be some delay from when the timer fires until stats sampling occurs.
* 2. For clusters that were already feature in the previous *LoadStatsResponse*, any traffic
* that is observed in between the corresponding previous *LoadStatsRequest* and this
* *LoadStatsResponse* will also be accumulated and billed to the cluster. This avoids a period
* of inobservability that might otherwise exists between the messages. New clusters are not
* subject to this consideration.
* @param reportEndpointGranularity
* Set to *true* if the management server supports endpoint granularity
* report.
*/
@SerialVersionUID(0L)
final case class LoadStatsResponse(
clusters: _root_.scala.Seq[_root_.scala.Predef.String] = _root_.scala.Seq.empty,
sendAllClusters: _root_.scala.Boolean = false,
loadReportingInterval: _root_.scala.Option[com.google.protobuf.duration.Duration] = _root_.scala.None,
reportEndpointGranularity: _root_.scala.Boolean = false,
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[LoadStatsResponse] {
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
clusters.foreach { __item =>
val __value = __item
__size += _root_.com.google.protobuf.CodedOutputStream.computeStringSize(1, __value)
}
{
val __value = sendAllClusters
if (__value != false) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(4, __value)
}
};
if (loadReportingInterval.isDefined) {
val __value = loadReportingInterval.get
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
};
{
val __value = reportEndpointGranularity
if (__value != false) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(3, __value)
}
};
__size += unknownFields.serializedSize
__size
}
override def serializedSize: _root_.scala.Int = {
var __size = __serializedSizeMemoized
if (__size == 0) {
__size = __computeSerializedSize() + 1
__serializedSizeMemoized = __size
}
__size - 1
}
def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
clusters.foreach { __v =>
val __m = __v
_output__.writeString(1, __m)
};
loadReportingInterval.foreach { __v =>
val __m = __v
_output__.writeTag(2, 2)
_output__.writeUInt32NoTag(__m.serializedSize)
__m.writeTo(_output__)
};
{
val __v = reportEndpointGranularity
if (__v != false) {
_output__.writeBool(3, __v)
}
};
{
val __v = sendAllClusters
if (__v != false) {
_output__.writeBool(4, __v)
}
};
unknownFields.writeTo(_output__)
}
def clearClusters = copy(clusters = _root_.scala.Seq.empty)
def addClusters(__vs: _root_.scala.Predef.String *): LoadStatsResponse = addAllClusters(__vs)
def addAllClusters(__vs: Iterable[_root_.scala.Predef.String]): LoadStatsResponse = copy(clusters = clusters ++ __vs)
def withClusters(__v: _root_.scala.Seq[_root_.scala.Predef.String]): LoadStatsResponse = copy(clusters = __v)
def withSendAllClusters(__v: _root_.scala.Boolean): LoadStatsResponse = copy(sendAllClusters = __v)
def getLoadReportingInterval: com.google.protobuf.duration.Duration = loadReportingInterval.getOrElse(com.google.protobuf.duration.Duration.defaultInstance)
def clearLoadReportingInterval: LoadStatsResponse = copy(loadReportingInterval = _root_.scala.None)
def withLoadReportingInterval(__v: com.google.protobuf.duration.Duration): LoadStatsResponse = copy(loadReportingInterval = Option(__v))
def withReportEndpointGranularity(__v: _root_.scala.Boolean): LoadStatsResponse = copy(reportEndpointGranularity = __v)
def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
(__fieldNumber: @_root_.scala.unchecked) match {
case 1 => clusters
case 4 => {
val __t = sendAllClusters
if (__t != false) __t else null
}
case 2 => loadReportingInterval.orNull
case 3 => {
val __t = reportEndpointGranularity
if (__t != false) __t else null
}
}
}
def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
_root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
(__field.number: @_root_.scala.unchecked) match {
case 1 => _root_.scalapb.descriptors.PRepeated(clusters.iterator.map(_root_.scalapb.descriptors.PString(_)).toVector)
case 4 => _root_.scalapb.descriptors.PBoolean(sendAllClusters)
case 2 => loadReportingInterval.map(_.toPMessage).getOrElse(_root_.scalapb.descriptors.PEmpty)
case 3 => _root_.scalapb.descriptors.PBoolean(reportEndpointGranularity)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse.type = io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse
// @@protoc_insertion_point(GeneratedMessage[envoy.service.load_stats.v3.LoadStatsResponse])
}
object LoadStatsResponse extends scalapb.GeneratedMessageCompanion[io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse = {
val __clusters: _root_.scala.collection.immutable.VectorBuilder[_root_.scala.Predef.String] = new _root_.scala.collection.immutable.VectorBuilder[_root_.scala.Predef.String]
var __sendAllClusters: _root_.scala.Boolean = false
var __loadReportingInterval: _root_.scala.Option[com.google.protobuf.duration.Duration] = _root_.scala.None
var __reportEndpointGranularity: _root_.scala.Boolean = false
var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 10 =>
__clusters += _input__.readStringRequireUtf8()
case 32 =>
__sendAllClusters = _input__.readBool()
case 18 =>
__loadReportingInterval = Option(__loadReportingInterval.fold(_root_.scalapb.LiteParser.readMessage[com.google.protobuf.duration.Duration](_input__))(_root_.scalapb.LiteParser.readMessage(_input__, _)))
case 24 =>
__reportEndpointGranularity = _input__.readBool()
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse(
clusters = __clusters.result(),
sendAllClusters = __sendAllClusters,
loadReportingInterval = __loadReportingInterval,
reportEndpointGranularity = __reportEndpointGranularity,
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse] = _root_.scalapb.descriptors.Reads{
case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
_root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse(
clusters = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Seq[_root_.scala.Predef.String]]).getOrElse(_root_.scala.Seq.empty),
sendAllClusters = __fieldsMap.get(scalaDescriptor.findFieldByNumber(4).get).map(_.as[_root_.scala.Boolean]).getOrElse(false),
loadReportingInterval = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).flatMap(_.as[_root_.scala.Option[com.google.protobuf.duration.Duration]]),
reportEndpointGranularity = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).map(_.as[_root_.scala.Boolean]).getOrElse(false)
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = LrsProto.javaDescriptor.getMessageTypes().get(1)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = LrsProto.scalaDescriptor.messages(1)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
(__number: @_root_.scala.unchecked) match {
case 2 => __out = com.google.protobuf.duration.Duration
}
__out
}
lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] = Seq.empty
def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
lazy val defaultInstance = io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse(
clusters = _root_.scala.Seq.empty,
sendAllClusters = false,
loadReportingInterval = _root_.scala.None,
reportEndpointGranularity = false
)
implicit class LoadStatsResponseLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse](_l) {
def clusters: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[_root_.scala.Predef.String]] = field(_.clusters)((c_, f_) => c_.copy(clusters = f_))
def sendAllClusters: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.sendAllClusters)((c_, f_) => c_.copy(sendAllClusters = f_))
def loadReportingInterval: _root_.scalapb.lenses.Lens[UpperPB, com.google.protobuf.duration.Duration] = field(_.getLoadReportingInterval)((c_, f_) => c_.copy(loadReportingInterval = Option(f_)))
def optionalLoadReportingInterval: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Option[com.google.protobuf.duration.Duration]] = field(_.loadReportingInterval)((c_, f_) => c_.copy(loadReportingInterval = f_))
def reportEndpointGranularity: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.reportEndpointGranularity)((c_, f_) => c_.copy(reportEndpointGranularity = f_))
}
final val CLUSTERS_FIELD_NUMBER = 1
final val SEND_ALL_CLUSTERS_FIELD_NUMBER = 4
final val LOAD_REPORTING_INTERVAL_FIELD_NUMBER = 2
final val REPORT_ENDPOINT_GRANULARITY_FIELD_NUMBER = 3
def of(
clusters: _root_.scala.Seq[_root_.scala.Predef.String],
sendAllClusters: _root_.scala.Boolean,
loadReportingInterval: _root_.scala.Option[com.google.protobuf.duration.Duration],
reportEndpointGranularity: _root_.scala.Boolean
): _root_.io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse = _root_.io.envoyproxy.envoy.service.load_stats.v3.LoadStatsResponse(
clusters,
sendAllClusters,
loadReportingInterval,
reportEndpointGranularity
)
// @@protoc_insertion_point(GeneratedMessageCompanion[envoy.service.load_stats.v3.LoadStatsResponse])
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy