yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: yandex/cloud/iot/broker/v1/broker_data_service.proto
package yandex.cloud.api.iot.broker.v1;
public final class BrokerDataServiceOuterClass {
private BrokerDataServiceOuterClass() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface PublishBrokerDataRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:yandex.cloud.iot.broker.v1.PublishBrokerDataRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return The brokerId.
*/
java.lang.String getBrokerId();
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return The bytes for brokerId.
*/
com.google.protobuf.ByteString
getBrokerIdBytes();
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return The topic.
*/
java.lang.String getTopic();
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return The bytes for topic.
*/
com.google.protobuf.ByteString
getTopicBytes();
/**
*
* Content of the message
*
*
* bytes data = 3 [(.yandex.cloud.length) = "<=262144"];
* @return The data.
*/
com.google.protobuf.ByteString getData();
}
/**
* Protobuf type {@code yandex.cloud.iot.broker.v1.PublishBrokerDataRequest}
*/
public static final class PublishBrokerDataRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:yandex.cloud.iot.broker.v1.PublishBrokerDataRequest)
PublishBrokerDataRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use PublishBrokerDataRequest.newBuilder() to construct.
private PublishBrokerDataRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PublishBrokerDataRequest() {
brokerId_ = "";
topic_ = "";
data_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PublishBrokerDataRequest();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PublishBrokerDataRequest(
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: {
java.lang.String s = input.readStringRequireUtf8();
brokerId_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
topic_ = s;
break;
}
case 26: {
data_ = input.readBytes();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.class, yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.Builder.class);
}
public static final int BROKER_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object brokerId_;
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return The brokerId.
*/
@java.lang.Override
public java.lang.String getBrokerId() {
java.lang.Object ref = brokerId_;
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();
brokerId_ = s;
return s;
}
}
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return The bytes for brokerId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getBrokerIdBytes() {
java.lang.Object ref = brokerId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
brokerId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TOPIC_FIELD_NUMBER = 2;
private volatile java.lang.Object topic_;
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return The topic.
*/
@java.lang.Override
public java.lang.String getTopic() {
java.lang.Object ref = topic_;
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();
topic_ = s;
return s;
}
}
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return The bytes for topic.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTopicBytes() {
java.lang.Object ref = topic_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topic_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DATA_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString data_;
/**
*
* Content of the message
*
*
* bytes data = 3 [(.yandex.cloud.length) = "<=262144"];
* @return The data.
*/
@java.lang.Override
public com.google.protobuf.ByteString getData() {
return data_;
}
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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(brokerId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, brokerId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, topic_);
}
if (!data_.isEmpty()) {
output.writeBytes(3, data_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(brokerId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, brokerId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, topic_);
}
if (!data_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, data_);
}
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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest)) {
return super.equals(obj);
}
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest other = (yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest) obj;
if (!getBrokerId()
.equals(other.getBrokerId())) return false;
if (!getTopic()
.equals(other.getTopic())) return false;
if (!getData()
.equals(other.getData())) return false;
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) + BROKER_ID_FIELD_NUMBER;
hash = (53 * hash) + getBrokerId().hashCode();
hash = (37 * hash) + TOPIC_FIELD_NUMBER;
hash = (53 * hash) + getTopic().hashCode();
hash = (37 * hash) + DATA_FIELD_NUMBER;
hash = (53 * hash) + getData().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest 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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest 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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest 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(yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest 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;
}
/**
* Protobuf type {@code yandex.cloud.iot.broker.v1.PublishBrokerDataRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:yandex.cloud.iot.broker.v1.PublishBrokerDataRequest)
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.class, yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.Builder.class);
}
// Construct using yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.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();
brokerId_ = "";
topic_ = "";
data_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_descriptor;
}
@java.lang.Override
public yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest getDefaultInstanceForType() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.getDefaultInstance();
}
@java.lang.Override
public yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest build() {
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest buildPartial() {
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest result = new yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest(this);
result.brokerId_ = brokerId_;
result.topic_ = topic_;
result.data_ = data_;
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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest) {
return mergeFrom((yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest other) {
if (other == yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest.getDefaultInstance()) return this;
if (!other.getBrokerId().isEmpty()) {
brokerId_ = other.brokerId_;
onChanged();
}
if (!other.getTopic().isEmpty()) {
topic_ = other.topic_;
onChanged();
}
if (other.getData() != com.google.protobuf.ByteString.EMPTY) {
setData(other.getData());
}
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 {
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object brokerId_ = "";
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return The brokerId.
*/
public java.lang.String getBrokerId() {
java.lang.Object ref = brokerId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
brokerId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return The bytes for brokerId.
*/
public com.google.protobuf.ByteString
getBrokerIdBytes() {
java.lang.Object ref = brokerId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
brokerId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @param value The brokerId to set.
* @return This builder for chaining.
*/
public Builder setBrokerId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
brokerId_ = value;
onChanged();
return this;
}
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @return This builder for chaining.
*/
public Builder clearBrokerId() {
brokerId_ = getDefaultInstance().getBrokerId();
onChanged();
return this;
}
/**
*
* ID of broker publishing message
*
*
* string broker_id = 1 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=50"];
* @param value The bytes for brokerId to set.
* @return This builder for chaining.
*/
public Builder setBrokerIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
brokerId_ = value;
onChanged();
return this;
}
private java.lang.Object topic_ = "";
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return The topic.
*/
public java.lang.String getTopic() {
java.lang.Object ref = topic_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
topic_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return The bytes for topic.
*/
public com.google.protobuf.ByteString
getTopicBytes() {
java.lang.Object ref = topic_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topic_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @param value The topic to set.
* @return This builder for chaining.
*/
public Builder setTopic(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
topic_ = value;
onChanged();
return this;
}
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @return This builder for chaining.
*/
public Builder clearTopic() {
topic_ = getDefaultInstance().getTopic();
onChanged();
return this;
}
/**
*
* Topic where message should be published
*
*
* string topic = 2 [(.yandex.cloud.required) = true, (.yandex.cloud.length) = "<=1024"];
* @param value The bytes for topic to set.
* @return This builder for chaining.
*/
public Builder setTopicBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
topic_ = value;
onChanged();
return this;
}
private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* Content of the message
*
*
* bytes data = 3 [(.yandex.cloud.length) = "<=262144"];
* @return The data.
*/
@java.lang.Override
public com.google.protobuf.ByteString getData() {
return data_;
}
/**
*
* Content of the message
*
*
* bytes data = 3 [(.yandex.cloud.length) = "<=262144"];
* @param value The data to set.
* @return This builder for chaining.
*/
public Builder setData(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
data_ = value;
onChanged();
return this;
}
/**
*
* Content of the message
*
*
* bytes data = 3 [(.yandex.cloud.length) = "<=262144"];
* @return This builder for chaining.
*/
public Builder clearData() {
data_ = getDefaultInstance().getData();
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:yandex.cloud.iot.broker.v1.PublishBrokerDataRequest)
}
// @@protoc_insertion_point(class_scope:yandex.cloud.iot.broker.v1.PublishBrokerDataRequest)
private static final yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest();
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PublishBrokerDataRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PublishBrokerDataRequest(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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface PublishBrokerDataResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:yandex.cloud.iot.broker.v1.PublishBrokerDataResponse)
com.google.protobuf.MessageOrBuilder {
}
/**
* Protobuf type {@code yandex.cloud.iot.broker.v1.PublishBrokerDataResponse}
*/
public static final class PublishBrokerDataResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:yandex.cloud.iot.broker.v1.PublishBrokerDataResponse)
PublishBrokerDataResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use PublishBrokerDataResponse.newBuilder() to construct.
private PublishBrokerDataResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PublishBrokerDataResponse() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PublishBrokerDataResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PublishBrokerDataResponse(
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;
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.class, yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.Builder.class);
}
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 {
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse)) {
return super.equals(obj);
}
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse other = (yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse) obj;
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 = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse 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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse 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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse 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(yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse 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;
}
/**
* Protobuf type {@code yandex.cloud.iot.broker.v1.PublishBrokerDataResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:yandex.cloud.iot.broker.v1.PublishBrokerDataResponse)
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.class, yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.Builder.class);
}
// Construct using yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.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();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_descriptor;
}
@java.lang.Override
public yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse getDefaultInstanceForType() {
return yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.getDefaultInstance();
}
@java.lang.Override
public yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse build() {
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse buildPartial() {
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse result = new yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse(this);
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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse) {
return mergeFrom((yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse other) {
if (other == yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse.getDefaultInstance()) return this;
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 {
yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
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:yandex.cloud.iot.broker.v1.PublishBrokerDataResponse)
}
// @@protoc_insertion_point(class_scope:yandex.cloud.iot.broker.v1.PublishBrokerDataResponse)
private static final yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse();
}
public static yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PublishBrokerDataResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PublishBrokerDataResponse(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 yandex.cloud.api.iot.broker.v1.BrokerDataServiceOuterClass.PublishBrokerDataResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n4yandex/cloud/iot/broker/v1/broker_data" +
"_service.proto\022\032yandex.cloud.iot.broker." +
"v1\032\034google/api/annotations.proto\032\035yandex" +
"/cloud/validation.proto\"v\n\030PublishBroker" +
"DataRequest\022\037\n\tbroker_id\030\001 \001(\tB\014\350\3071\001\212\3101\004" +
"<=50\022\035\n\005topic\030\002 \001(\tB\016\350\3071\001\212\3101\006<=1024\022\032\n\004d" +
"ata\030\003 \001(\014B\014\212\3101\010<=262144\"\033\n\031PublishBroker" +
"DataResponse2\303\001\n\021BrokerDataService\022\255\001\n\007P" +
"ublish\0224.yandex.cloud.iot.broker.v1.Publ" +
"ishBrokerDataRequest\0325.yandex.cloud.iot." +
"broker.v1.PublishBrokerDataResponse\"5\202\323\344" +
"\223\002/\"*/iot-broker/v1/brokers/{broker_id}/" +
"publish:\001*Bg\n\036yandex.cloud.api.iot.broke" +
"r.v1ZEgithub.com/yandex-cloud/go-genprot" +
"o/yandex/cloud/iot/broker/v1;brokerb\006pro" +
"to3"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
com.google.api.AnnotationsProto.getDescriptor(),
yandex.cloud.api.Validation.getDescriptor(),
});
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataRequest_descriptor,
new java.lang.String[] { "BrokerId", "Topic", "Data", });
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_yandex_cloud_iot_broker_v1_PublishBrokerDataResponse_descriptor,
new java.lang.String[] { });
com.google.protobuf.ExtensionRegistry registry =
com.google.protobuf.ExtensionRegistry.newInstance();
registry.add(com.google.api.AnnotationsProto.http);
registry.add(yandex.cloud.api.Validation.length);
registry.add(yandex.cloud.api.Validation.required);
com.google.protobuf.Descriptors.FileDescriptor
.internalUpdateFileDescriptor(descriptor, registry);
com.google.api.AnnotationsProto.getDescriptor();
yandex.cloud.api.Validation.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy