All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.envoyproxy.envoy.config.metrics.v3.StatsdSink Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/config/metrics/v3/stats.proto

package io.envoyproxy.envoy.config.metrics.v3;

/**
 * 
 * Stats configuration proto schema for built-in ``envoy.stat_sinks.statsd`` sink. This sink does not support
 * tagged metrics.
 * [#extension: envoy.stat_sinks.statsd]
 * 
* * Protobuf type {@code envoy.config.metrics.v3.StatsdSink} */ public final class StatsdSink extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.config.metrics.v3.StatsdSink) StatsdSinkOrBuilder { private static final long serialVersionUID = 0L; // Use StatsdSink.newBuilder() to construct. private StatsdSink(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private StatsdSink() { prefix_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new StatsdSink(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private StatsdSink( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { io.envoyproxy.envoy.config.core.v3.Address.Builder subBuilder = null; if (statsdSpecifierCase_ == 1) { subBuilder = ((io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_).toBuilder(); } statsdSpecifier_ = input.readMessage(io.envoyproxy.envoy.config.core.v3.Address.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_); statsdSpecifier_ = subBuilder.buildPartial(); } statsdSpecifierCase_ = 1; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); statsdSpecifierCase_ = 2; statsdSpecifier_ = s; break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); prefix_ = s; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.config.metrics.v3.StatsProto.internal_static_envoy_config_metrics_v3_StatsdSink_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.config.metrics.v3.StatsProto.internal_static_envoy_config_metrics_v3_StatsdSink_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.config.metrics.v3.StatsdSink.class, io.envoyproxy.envoy.config.metrics.v3.StatsdSink.Builder.class); } private int statsdSpecifierCase_ = 0; private java.lang.Object statsdSpecifier_; public enum StatsdSpecifierCase implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { ADDRESS(1), TCP_CLUSTER_NAME(2), STATSDSPECIFIER_NOT_SET(0); private final int value; private StatsdSpecifierCase(int value) { this.value = value; } /** * @param value The number of the enum to look for. * @return The enum associated with the given number. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static StatsdSpecifierCase valueOf(int value) { return forNumber(value); } public static StatsdSpecifierCase forNumber(int value) { switch (value) { case 1: return ADDRESS; case 2: return TCP_CLUSTER_NAME; case 0: return STATSDSPECIFIER_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public StatsdSpecifierCase getStatsdSpecifierCase() { return StatsdSpecifierCase.forNumber( statsdSpecifierCase_); } public static final int ADDRESS_FIELD_NUMBER = 1; /** *
   * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
   * compliant listener. If specified, statistics will be flushed to this
   * address.
   * 
* * .envoy.config.core.v3.Address address = 1; * @return Whether the address field is set. */ @java.lang.Override public boolean hasAddress() { return statsdSpecifierCase_ == 1; } /** *
   * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
   * compliant listener. If specified, statistics will be flushed to this
   * address.
   * 
* * .envoy.config.core.v3.Address address = 1; * @return The address. */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.Address getAddress() { if (statsdSpecifierCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_; } return io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance(); } /** *
   * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
   * compliant listener. If specified, statistics will be flushed to this
   * address.
   * 
* * .envoy.config.core.v3.Address address = 1; */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.AddressOrBuilder getAddressOrBuilder() { if (statsdSpecifierCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_; } return io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance(); } public static final int TCP_CLUSTER_NAME_FIELD_NUMBER = 2; /** *
   * The name of a cluster that is running a TCP `statsd
   * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
   * Envoy will connect to this cluster to flush statistics.
   * 
* * string tcp_cluster_name = 2; * @return Whether the tcpClusterName field is set. */ public boolean hasTcpClusterName() { return statsdSpecifierCase_ == 2; } /** *
   * The name of a cluster that is running a TCP `statsd
   * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
   * Envoy will connect to this cluster to flush statistics.
   * 
* * string tcp_cluster_name = 2; * @return The tcpClusterName. */ public java.lang.String getTcpClusterName() { java.lang.Object ref = ""; if (statsdSpecifierCase_ == 2) { ref = statsdSpecifier_; } if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (statsdSpecifierCase_ == 2) { statsdSpecifier_ = s; } return s; } } /** *
   * The name of a cluster that is running a TCP `statsd
   * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
   * Envoy will connect to this cluster to flush statistics.
   * 
* * string tcp_cluster_name = 2; * @return The bytes for tcpClusterName. */ public com.google.protobuf.ByteString getTcpClusterNameBytes() { java.lang.Object ref = ""; if (statsdSpecifierCase_ == 2) { ref = statsdSpecifier_; } if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); if (statsdSpecifierCase_ == 2) { statsdSpecifier_ = b; } return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PREFIX_FIELD_NUMBER = 3; private volatile java.lang.Object prefix_; /** *
   * Optional custom prefix for StatsdSink. If
   * specified, this will override the default prefix.
   * For example:
   * .. code-block:: json
   *   {
   *     "prefix" : "envoy-prod"
   *   }
   * will change emitted stats to
   * .. code-block:: cpp
   *   envoy-prod.test_counter:1|c
   *   envoy-prod.test_timer:5|ms
   * Note that the default prefix, "envoy", will be used if a prefix is not
   * specified.
   * Stats with default prefix:
   * .. code-block:: cpp
   *   envoy.test_counter:1|c
   *   envoy.test_timer:5|ms
   * 
* * string prefix = 3; * @return The prefix. */ @java.lang.Override public java.lang.String getPrefix() { java.lang.Object ref = prefix_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); prefix_ = s; return s; } } /** *
   * Optional custom prefix for StatsdSink. If
   * specified, this will override the default prefix.
   * For example:
   * .. code-block:: json
   *   {
   *     "prefix" : "envoy-prod"
   *   }
   * will change emitted stats to
   * .. code-block:: cpp
   *   envoy-prod.test_counter:1|c
   *   envoy-prod.test_timer:5|ms
   * Note that the default prefix, "envoy", will be used if a prefix is not
   * specified.
   * Stats with default prefix:
   * .. code-block:: cpp
   *   envoy.test_counter:1|c
   *   envoy.test_timer:5|ms
   * 
* * string prefix = 3; * @return The bytes for prefix. */ @java.lang.Override public com.google.protobuf.ByteString getPrefixBytes() { java.lang.Object ref = prefix_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); prefix_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (statsdSpecifierCase_ == 1) { output.writeMessage(1, (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_); } if (statsdSpecifierCase_ == 2) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, statsdSpecifier_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(prefix_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, prefix_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (statsdSpecifierCase_ == 1) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_); } if (statsdSpecifierCase_ == 2) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, statsdSpecifier_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(prefix_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, prefix_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.envoyproxy.envoy.config.metrics.v3.StatsdSink)) { return super.equals(obj); } io.envoyproxy.envoy.config.metrics.v3.StatsdSink other = (io.envoyproxy.envoy.config.metrics.v3.StatsdSink) obj; if (!getPrefix() .equals(other.getPrefix())) return false; if (!getStatsdSpecifierCase().equals(other.getStatsdSpecifierCase())) return false; switch (statsdSpecifierCase_) { case 1: if (!getAddress() .equals(other.getAddress())) return false; break; case 2: if (!getTcpClusterName() .equals(other.getTcpClusterName())) return false; break; case 0: default: } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + PREFIX_FIELD_NUMBER; hash = (53 * hash) + getPrefix().hashCode(); switch (statsdSpecifierCase_) { case 1: hash = (37 * hash) + ADDRESS_FIELD_NUMBER; hash = (53 * hash) + getAddress().hashCode(); break; case 2: hash = (37 * hash) + TCP_CLUSTER_NAME_FIELD_NUMBER; hash = (53 * hash) + getTcpClusterName().hashCode(); break; case 0: default: } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.envoyproxy.envoy.config.metrics.v3.StatsdSink prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Stats configuration proto schema for built-in ``envoy.stat_sinks.statsd`` sink. This sink does not support
   * tagged metrics.
   * [#extension: envoy.stat_sinks.statsd]
   * 
* * Protobuf type {@code envoy.config.metrics.v3.StatsdSink} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.config.metrics.v3.StatsdSink) io.envoyproxy.envoy.config.metrics.v3.StatsdSinkOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.config.metrics.v3.StatsProto.internal_static_envoy_config_metrics_v3_StatsdSink_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.config.metrics.v3.StatsProto.internal_static_envoy_config_metrics_v3_StatsdSink_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.config.metrics.v3.StatsdSink.class, io.envoyproxy.envoy.config.metrics.v3.StatsdSink.Builder.class); } // Construct using io.envoyproxy.envoy.config.metrics.v3.StatsdSink.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); prefix_ = ""; statsdSpecifierCase_ = 0; statsdSpecifier_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.config.metrics.v3.StatsProto.internal_static_envoy_config_metrics_v3_StatsdSink_descriptor; } @java.lang.Override public io.envoyproxy.envoy.config.metrics.v3.StatsdSink getDefaultInstanceForType() { return io.envoyproxy.envoy.config.metrics.v3.StatsdSink.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.config.metrics.v3.StatsdSink build() { io.envoyproxy.envoy.config.metrics.v3.StatsdSink result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.config.metrics.v3.StatsdSink buildPartial() { io.envoyproxy.envoy.config.metrics.v3.StatsdSink result = new io.envoyproxy.envoy.config.metrics.v3.StatsdSink(this); if (statsdSpecifierCase_ == 1) { if (addressBuilder_ == null) { result.statsdSpecifier_ = statsdSpecifier_; } else { result.statsdSpecifier_ = addressBuilder_.build(); } } if (statsdSpecifierCase_ == 2) { result.statsdSpecifier_ = statsdSpecifier_; } result.prefix_ = prefix_; result.statsdSpecifierCase_ = statsdSpecifierCase_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.envoyproxy.envoy.config.metrics.v3.StatsdSink) { return mergeFrom((io.envoyproxy.envoy.config.metrics.v3.StatsdSink)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.config.metrics.v3.StatsdSink other) { if (other == io.envoyproxy.envoy.config.metrics.v3.StatsdSink.getDefaultInstance()) return this; if (!other.getPrefix().isEmpty()) { prefix_ = other.prefix_; onChanged(); } switch (other.getStatsdSpecifierCase()) { case ADDRESS: { mergeAddress(other.getAddress()); break; } case TCP_CLUSTER_NAME: { statsdSpecifierCase_ = 2; statsdSpecifier_ = other.statsdSpecifier_; onChanged(); break; } case STATSDSPECIFIER_NOT_SET: { break; } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.envoyproxy.envoy.config.metrics.v3.StatsdSink parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.config.metrics.v3.StatsdSink) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int statsdSpecifierCase_ = 0; private java.lang.Object statsdSpecifier_; public StatsdSpecifierCase getStatsdSpecifierCase() { return StatsdSpecifierCase.forNumber( statsdSpecifierCase_); } public Builder clearStatsdSpecifier() { statsdSpecifierCase_ = 0; statsdSpecifier_ = null; onChanged(); return this; } private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.core.v3.Address, io.envoyproxy.envoy.config.core.v3.Address.Builder, io.envoyproxy.envoy.config.core.v3.AddressOrBuilder> addressBuilder_; /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; * @return Whether the address field is set. */ @java.lang.Override public boolean hasAddress() { return statsdSpecifierCase_ == 1; } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; * @return The address. */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.Address getAddress() { if (addressBuilder_ == null) { if (statsdSpecifierCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_; } return io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance(); } else { if (statsdSpecifierCase_ == 1) { return addressBuilder_.getMessage(); } return io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance(); } } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ public Builder setAddress(io.envoyproxy.envoy.config.core.v3.Address value) { if (addressBuilder_ == null) { if (value == null) { throw new NullPointerException(); } statsdSpecifier_ = value; onChanged(); } else { addressBuilder_.setMessage(value); } statsdSpecifierCase_ = 1; return this; } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ public Builder setAddress( io.envoyproxy.envoy.config.core.v3.Address.Builder builderForValue) { if (addressBuilder_ == null) { statsdSpecifier_ = builderForValue.build(); onChanged(); } else { addressBuilder_.setMessage(builderForValue.build()); } statsdSpecifierCase_ = 1; return this; } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ public Builder mergeAddress(io.envoyproxy.envoy.config.core.v3.Address value) { if (addressBuilder_ == null) { if (statsdSpecifierCase_ == 1 && statsdSpecifier_ != io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance()) { statsdSpecifier_ = io.envoyproxy.envoy.config.core.v3.Address.newBuilder((io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_) .mergeFrom(value).buildPartial(); } else { statsdSpecifier_ = value; } onChanged(); } else { if (statsdSpecifierCase_ == 1) { addressBuilder_.mergeFrom(value); } else { addressBuilder_.setMessage(value); } } statsdSpecifierCase_ = 1; return this; } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ public Builder clearAddress() { if (addressBuilder_ == null) { if (statsdSpecifierCase_ == 1) { statsdSpecifierCase_ = 0; statsdSpecifier_ = null; onChanged(); } } else { if (statsdSpecifierCase_ == 1) { statsdSpecifierCase_ = 0; statsdSpecifier_ = null; } addressBuilder_.clear(); } return this; } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ public io.envoyproxy.envoy.config.core.v3.Address.Builder getAddressBuilder() { return getAddressFieldBuilder().getBuilder(); } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.AddressOrBuilder getAddressOrBuilder() { if ((statsdSpecifierCase_ == 1) && (addressBuilder_ != null)) { return addressBuilder_.getMessageOrBuilder(); } else { if (statsdSpecifierCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_; } return io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance(); } } /** *
     * The UDP address of a running `statsd <https://github.com/etsy/statsd>`_
     * compliant listener. If specified, statistics will be flushed to this
     * address.
     * 
* * .envoy.config.core.v3.Address address = 1; */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.core.v3.Address, io.envoyproxy.envoy.config.core.v3.Address.Builder, io.envoyproxy.envoy.config.core.v3.AddressOrBuilder> getAddressFieldBuilder() { if (addressBuilder_ == null) { if (!(statsdSpecifierCase_ == 1)) { statsdSpecifier_ = io.envoyproxy.envoy.config.core.v3.Address.getDefaultInstance(); } addressBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.core.v3.Address, io.envoyproxy.envoy.config.core.v3.Address.Builder, io.envoyproxy.envoy.config.core.v3.AddressOrBuilder>( (io.envoyproxy.envoy.config.core.v3.Address) statsdSpecifier_, getParentForChildren(), isClean()); statsdSpecifier_ = null; } statsdSpecifierCase_ = 1; onChanged();; return addressBuilder_; } /** *
     * The name of a cluster that is running a TCP `statsd
     * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
     * Envoy will connect to this cluster to flush statistics.
     * 
* * string tcp_cluster_name = 2; * @return Whether the tcpClusterName field is set. */ @java.lang.Override public boolean hasTcpClusterName() { return statsdSpecifierCase_ == 2; } /** *
     * The name of a cluster that is running a TCP `statsd
     * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
     * Envoy will connect to this cluster to flush statistics.
     * 
* * string tcp_cluster_name = 2; * @return The tcpClusterName. */ @java.lang.Override public java.lang.String getTcpClusterName() { java.lang.Object ref = ""; if (statsdSpecifierCase_ == 2) { ref = statsdSpecifier_; } if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (statsdSpecifierCase_ == 2) { statsdSpecifier_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * The name of a cluster that is running a TCP `statsd
     * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
     * Envoy will connect to this cluster to flush statistics.
     * 
* * string tcp_cluster_name = 2; * @return The bytes for tcpClusterName. */ @java.lang.Override public com.google.protobuf.ByteString getTcpClusterNameBytes() { java.lang.Object ref = ""; if (statsdSpecifierCase_ == 2) { ref = statsdSpecifier_; } if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); if (statsdSpecifierCase_ == 2) { statsdSpecifier_ = b; } return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The name of a cluster that is running a TCP `statsd
     * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
     * Envoy will connect to this cluster to flush statistics.
     * 
* * string tcp_cluster_name = 2; * @param value The tcpClusterName to set. * @return This builder for chaining. */ public Builder setTcpClusterName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } statsdSpecifierCase_ = 2; statsdSpecifier_ = value; onChanged(); return this; } /** *
     * The name of a cluster that is running a TCP `statsd
     * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
     * Envoy will connect to this cluster to flush statistics.
     * 
* * string tcp_cluster_name = 2; * @return This builder for chaining. */ public Builder clearTcpClusterName() { if (statsdSpecifierCase_ == 2) { statsdSpecifierCase_ = 0; statsdSpecifier_ = null; onChanged(); } return this; } /** *
     * The name of a cluster that is running a TCP `statsd
     * <https://github.com/etsy/statsd>`_ compliant listener. If specified,
     * Envoy will connect to this cluster to flush statistics.
     * 
* * string tcp_cluster_name = 2; * @param value The bytes for tcpClusterName to set. * @return This builder for chaining. */ public Builder setTcpClusterNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); statsdSpecifierCase_ = 2; statsdSpecifier_ = value; onChanged(); return this; } private java.lang.Object prefix_ = ""; /** *
     * Optional custom prefix for StatsdSink. If
     * specified, this will override the default prefix.
     * For example:
     * .. code-block:: json
     *   {
     *     "prefix" : "envoy-prod"
     *   }
     * will change emitted stats to
     * .. code-block:: cpp
     *   envoy-prod.test_counter:1|c
     *   envoy-prod.test_timer:5|ms
     * Note that the default prefix, "envoy", will be used if a prefix is not
     * specified.
     * Stats with default prefix:
     * .. code-block:: cpp
     *   envoy.test_counter:1|c
     *   envoy.test_timer:5|ms
     * 
* * string prefix = 3; * @return The prefix. */ public java.lang.String getPrefix() { java.lang.Object ref = prefix_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); prefix_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Optional custom prefix for StatsdSink. If
     * specified, this will override the default prefix.
     * For example:
     * .. code-block:: json
     *   {
     *     "prefix" : "envoy-prod"
     *   }
     * will change emitted stats to
     * .. code-block:: cpp
     *   envoy-prod.test_counter:1|c
     *   envoy-prod.test_timer:5|ms
     * Note that the default prefix, "envoy", will be used if a prefix is not
     * specified.
     * Stats with default prefix:
     * .. code-block:: cpp
     *   envoy.test_counter:1|c
     *   envoy.test_timer:5|ms
     * 
* * string prefix = 3; * @return The bytes for prefix. */ public com.google.protobuf.ByteString getPrefixBytes() { java.lang.Object ref = prefix_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); prefix_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Optional custom prefix for StatsdSink. If
     * specified, this will override the default prefix.
     * For example:
     * .. code-block:: json
     *   {
     *     "prefix" : "envoy-prod"
     *   }
     * will change emitted stats to
     * .. code-block:: cpp
     *   envoy-prod.test_counter:1|c
     *   envoy-prod.test_timer:5|ms
     * Note that the default prefix, "envoy", will be used if a prefix is not
     * specified.
     * Stats with default prefix:
     * .. code-block:: cpp
     *   envoy.test_counter:1|c
     *   envoy.test_timer:5|ms
     * 
* * string prefix = 3; * @param value The prefix to set. * @return This builder for chaining. */ public Builder setPrefix( java.lang.String value) { if (value == null) { throw new NullPointerException(); } prefix_ = value; onChanged(); return this; } /** *
     * Optional custom prefix for StatsdSink. If
     * specified, this will override the default prefix.
     * For example:
     * .. code-block:: json
     *   {
     *     "prefix" : "envoy-prod"
     *   }
     * will change emitted stats to
     * .. code-block:: cpp
     *   envoy-prod.test_counter:1|c
     *   envoy-prod.test_timer:5|ms
     * Note that the default prefix, "envoy", will be used if a prefix is not
     * specified.
     * Stats with default prefix:
     * .. code-block:: cpp
     *   envoy.test_counter:1|c
     *   envoy.test_timer:5|ms
     * 
* * string prefix = 3; * @return This builder for chaining. */ public Builder clearPrefix() { prefix_ = getDefaultInstance().getPrefix(); onChanged(); return this; } /** *
     * Optional custom prefix for StatsdSink. If
     * specified, this will override the default prefix.
     * For example:
     * .. code-block:: json
     *   {
     *     "prefix" : "envoy-prod"
     *   }
     * will change emitted stats to
     * .. code-block:: cpp
     *   envoy-prod.test_counter:1|c
     *   envoy-prod.test_timer:5|ms
     * Note that the default prefix, "envoy", will be used if a prefix is not
     * specified.
     * Stats with default prefix:
     * .. code-block:: cpp
     *   envoy.test_counter:1|c
     *   envoy.test_timer:5|ms
     * 
* * string prefix = 3; * @param value The bytes for prefix to set. * @return This builder for chaining. */ public Builder setPrefixBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); prefix_ = value; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:envoy.config.metrics.v3.StatsdSink) } // @@protoc_insertion_point(class_scope:envoy.config.metrics.v3.StatsdSink) private static final io.envoyproxy.envoy.config.metrics.v3.StatsdSink DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.config.metrics.v3.StatsdSink(); } public static io.envoyproxy.envoy.config.metrics.v3.StatsdSink getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public StatsdSink parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new StatsdSink(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.envoyproxy.envoy.config.metrics.v3.StatsdSink getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy