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

yandex.cloud.api.logging.v1.LogResource Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: yandex/cloud/logging/v1/log_resource.proto

package yandex.cloud.api.logging.v1;

public final class LogResource {
  private LogResource() {}
  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 LogEntryResourceOrBuilder extends
      // @@protoc_insertion_point(interface_extends:yandex.cloud.logging.v1.LogEntryResource)
      com.google.protobuf.MessageOrBuilder {

    /**
     * 
     * Resource type, i.e., `serverless.function`
     * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return The type. */ java.lang.String getType(); /** *
     * Resource type, i.e., `serverless.function`
     * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return The bytes for type. */ com.google.protobuf.ByteString getTypeBytes(); /** *
     * Resource ID, i.e., ID of the function producing logs.
     * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return The id. */ java.lang.String getId(); /** *
     * Resource ID, i.e., ID of the function producing logs.
     * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return The bytes for id. */ com.google.protobuf.ByteString getIdBytes(); } /** *
   * Log entry resource specification.
   * May be used either by services and by user.
   * 
* * Protobuf type {@code yandex.cloud.logging.v1.LogEntryResource} */ public static final class LogEntryResource extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:yandex.cloud.logging.v1.LogEntryResource) LogEntryResourceOrBuilder { private static final long serialVersionUID = 0L; // Use LogEntryResource.newBuilder() to construct. private LogEntryResource(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private LogEntryResource() { type_ = ""; id_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new LogEntryResource(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private LogEntryResource( 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(); type_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); id_ = s; 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.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogEntryResource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogEntryResource_fieldAccessorTable .ensureFieldAccessorsInitialized( yandex.cloud.api.logging.v1.LogResource.LogEntryResource.class, yandex.cloud.api.logging.v1.LogResource.LogEntryResource.Builder.class); } public static final int TYPE_FIELD_NUMBER = 1; private volatile java.lang.Object type_; /** *
     * Resource type, i.e., `serverless.function`
     * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return The type. */ @java.lang.Override public java.lang.String getType() { java.lang.Object ref = type_; 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(); type_ = s; return s; } } /** *
     * Resource type, i.e., `serverless.function`
     * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return The bytes for type. */ @java.lang.Override public com.google.protobuf.ByteString getTypeBytes() { java.lang.Object ref = type_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); type_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ID_FIELD_NUMBER = 2; private volatile java.lang.Object id_; /** *
     * Resource ID, i.e., ID of the function producing logs.
     * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return The id. */ @java.lang.Override public java.lang.String getId() { java.lang.Object ref = id_; 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(); id_ = s; return s; } } /** *
     * Resource ID, i.e., ID of the function producing logs.
     * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return The bytes for id. */ @java.lang.Override public com.google.protobuf.ByteString getIdBytes() { java.lang.Object ref = id_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); id_ = 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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(type_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, id_); } 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(type_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, id_); } 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.logging.v1.LogResource.LogEntryResource)) { return super.equals(obj); } yandex.cloud.api.logging.v1.LogResource.LogEntryResource other = (yandex.cloud.api.logging.v1.LogResource.LogEntryResource) obj; if (!getType() .equals(other.getType())) return false; if (!getId() .equals(other.getId())) 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) + TYPE_FIELD_NUMBER; hash = (53 * hash) + getType().hashCode(); hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + getId().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource 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.logging.v1.LogResource.LogEntryResource parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource 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.logging.v1.LogResource.LogEntryResource parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource 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.logging.v1.LogResource.LogEntryResource parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource 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.logging.v1.LogResource.LogEntryResource parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource 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.logging.v1.LogResource.LogEntryResource 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; } /** *
     * Log entry resource specification.
     * May be used either by services and by user.
     * 
* * Protobuf type {@code yandex.cloud.logging.v1.LogEntryResource} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:yandex.cloud.logging.v1.LogEntryResource) yandex.cloud.api.logging.v1.LogResource.LogEntryResourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogEntryResource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogEntryResource_fieldAccessorTable .ensureFieldAccessorsInitialized( yandex.cloud.api.logging.v1.LogResource.LogEntryResource.class, yandex.cloud.api.logging.v1.LogResource.LogEntryResource.Builder.class); } // Construct using yandex.cloud.api.logging.v1.LogResource.LogEntryResource.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(); type_ = ""; id_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogEntryResource_descriptor; } @java.lang.Override public yandex.cloud.api.logging.v1.LogResource.LogEntryResource getDefaultInstanceForType() { return yandex.cloud.api.logging.v1.LogResource.LogEntryResource.getDefaultInstance(); } @java.lang.Override public yandex.cloud.api.logging.v1.LogResource.LogEntryResource build() { yandex.cloud.api.logging.v1.LogResource.LogEntryResource result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public yandex.cloud.api.logging.v1.LogResource.LogEntryResource buildPartial() { yandex.cloud.api.logging.v1.LogResource.LogEntryResource result = new yandex.cloud.api.logging.v1.LogResource.LogEntryResource(this); result.type_ = type_; result.id_ = id_; 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.logging.v1.LogResource.LogEntryResource) { return mergeFrom((yandex.cloud.api.logging.v1.LogResource.LogEntryResource)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(yandex.cloud.api.logging.v1.LogResource.LogEntryResource other) { if (other == yandex.cloud.api.logging.v1.LogResource.LogEntryResource.getDefaultInstance()) return this; if (!other.getType().isEmpty()) { type_ = other.type_; onChanged(); } if (!other.getId().isEmpty()) { id_ = other.id_; onChanged(); } 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.logging.v1.LogResource.LogEntryResource parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (yandex.cloud.api.logging.v1.LogResource.LogEntryResource) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object type_ = ""; /** *
       * Resource type, i.e., `serverless.function`
       * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return The type. */ public java.lang.String getType() { java.lang.Object ref = type_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); type_ = s; return s; } else { return (java.lang.String) ref; } } /** *
       * Resource type, i.e., `serverless.function`
       * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return The bytes for type. */ public com.google.protobuf.ByteString getTypeBytes() { java.lang.Object ref = type_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); type_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
       * Resource type, i.e., `serverless.function`
       * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @param value The type to set. * @return This builder for chaining. */ public Builder setType( java.lang.String value) { if (value == null) { throw new NullPointerException(); } type_ = value; onChanged(); return this; } /** *
       * Resource type, i.e., `serverless.function`
       * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @return This builder for chaining. */ public Builder clearType() { type_ = getDefaultInstance().getType(); onChanged(); return this; } /** *
       * Resource type, i.e., `serverless.function`
       * 
* * string type = 1 [(.yandex.cloud.pattern) = "([a-zA-Z][-a-zA-Z0-9_.]{0,63})?"]; * @param value The bytes for type to set. * @return This builder for chaining. */ public Builder setTypeBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); type_ = value; onChanged(); return this; } private java.lang.Object id_ = ""; /** *
       * Resource ID, i.e., ID of the function producing logs.
       * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return The id. */ public java.lang.String getId() { java.lang.Object ref = id_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); id_ = s; return s; } else { return (java.lang.String) ref; } } /** *
       * Resource ID, i.e., ID of the function producing logs.
       * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return The bytes for id. */ public com.google.protobuf.ByteString getIdBytes() { java.lang.Object ref = id_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); id_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
       * Resource ID, i.e., ID of the function producing logs.
       * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @param value The id to set. * @return This builder for chaining. */ public Builder setId( java.lang.String value) { if (value == null) { throw new NullPointerException(); } id_ = value; onChanged(); return this; } /** *
       * Resource ID, i.e., ID of the function producing logs.
       * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @return This builder for chaining. */ public Builder clearId() { id_ = getDefaultInstance().getId(); onChanged(); return this; } /** *
       * Resource ID, i.e., ID of the function producing logs.
       * 
* * string id = 2 [(.yandex.cloud.pattern) = "([a-zA-Z0-9][-a-zA-Z0-9_.]{0,63})?"]; * @param value The bytes for id to set. * @return This builder for chaining. */ public Builder setIdBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); id_ = 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:yandex.cloud.logging.v1.LogEntryResource) } // @@protoc_insertion_point(class_scope:yandex.cloud.logging.v1.LogEntryResource) private static final yandex.cloud.api.logging.v1.LogResource.LogEntryResource DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new yandex.cloud.api.logging.v1.LogResource.LogEntryResource(); } public static yandex.cloud.api.logging.v1.LogResource.LogEntryResource getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public LogEntryResource parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new LogEntryResource(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.logging.v1.LogResource.LogEntryResource getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public interface LogGroupResourceOrBuilder extends // @@protoc_insertion_point(interface_extends:yandex.cloud.logging.v1.LogGroupResource) com.google.protobuf.MessageOrBuilder { /** *
     * Resource type.
     * Collected from log entries inside log group.
     * 
* * string type = 1; * @return The type. */ java.lang.String getType(); /** *
     * Resource type.
     * Collected from log entries inside log group.
     * 
* * string type = 1; * @return The bytes for type. */ com.google.protobuf.ByteString getTypeBytes(); /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @return A list containing the ids. */ java.util.List getIdsList(); /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @return The count of ids. */ int getIdsCount(); /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @param index The index of the element to return. * @return The ids at the given index. */ java.lang.String getIds(int index); /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @param index The index of the value to return. * @return The bytes of the ids at the given index. */ com.google.protobuf.ByteString getIdsBytes(int index); } /** *
   * Log group resource.
   * 
* * Protobuf type {@code yandex.cloud.logging.v1.LogGroupResource} */ public static final class LogGroupResource extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:yandex.cloud.logging.v1.LogGroupResource) LogGroupResourceOrBuilder { private static final long serialVersionUID = 0L; // Use LogGroupResource.newBuilder() to construct. private LogGroupResource(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private LogGroupResource() { type_ = ""; ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new LogGroupResource(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private LogGroupResource( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; 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(); type_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000001) != 0)) { ids_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000001; } ids_.add(s); 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 { if (((mutable_bitField0_ & 0x00000001) != 0)) { ids_ = ids_.getUnmodifiableView(); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogGroupResource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogGroupResource_fieldAccessorTable .ensureFieldAccessorsInitialized( yandex.cloud.api.logging.v1.LogResource.LogGroupResource.class, yandex.cloud.api.logging.v1.LogResource.LogGroupResource.Builder.class); } public static final int TYPE_FIELD_NUMBER = 1; private volatile java.lang.Object type_; /** *
     * Resource type.
     * Collected from log entries inside log group.
     * 
* * string type = 1; * @return The type. */ @java.lang.Override public java.lang.String getType() { java.lang.Object ref = type_; 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(); type_ = s; return s; } } /** *
     * Resource type.
     * Collected from log entries inside log group.
     * 
* * string type = 1; * @return The bytes for type. */ @java.lang.Override public com.google.protobuf.ByteString getTypeBytes() { java.lang.Object ref = type_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); type_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int IDS_FIELD_NUMBER = 2; private com.google.protobuf.LazyStringList ids_; /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @return A list containing the ids. */ public com.google.protobuf.ProtocolStringList getIdsList() { return ids_; } /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @return The count of ids. */ public int getIdsCount() { return ids_.size(); } /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @param index The index of the element to return. * @return The ids at the given index. */ public java.lang.String getIds(int index) { return ids_.get(index); } /** *
     * List of resource IDs with the same resource type.
     * 
* * repeated string ids = 2; * @param index The index of the value to return. * @return The bytes of the ids at the given index. */ public com.google.protobuf.ByteString getIdsBytes(int index) { return ids_.getByteString(index); } 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(type_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_); } for (int i = 0; i < ids_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, ids_.getRaw(i)); } 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(type_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_); } { int dataSize = 0; for (int i = 0; i < ids_.size(); i++) { dataSize += computeStringSizeNoTag(ids_.getRaw(i)); } size += dataSize; size += 1 * getIdsList().size(); } 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.logging.v1.LogResource.LogGroupResource)) { return super.equals(obj); } yandex.cloud.api.logging.v1.LogResource.LogGroupResource other = (yandex.cloud.api.logging.v1.LogResource.LogGroupResource) obj; if (!getType() .equals(other.getType())) return false; if (!getIdsList() .equals(other.getIdsList())) 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) + TYPE_FIELD_NUMBER; hash = (53 * hash) + getType().hashCode(); if (getIdsCount() > 0) { hash = (37 * hash) + IDS_FIELD_NUMBER; hash = (53 * hash) + getIdsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource 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.logging.v1.LogResource.LogGroupResource parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource 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.logging.v1.LogResource.LogGroupResource parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource 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.logging.v1.LogResource.LogGroupResource parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource 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.logging.v1.LogResource.LogGroupResource parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource 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.logging.v1.LogResource.LogGroupResource 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; } /** *
     * Log group resource.
     * 
* * Protobuf type {@code yandex.cloud.logging.v1.LogGroupResource} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:yandex.cloud.logging.v1.LogGroupResource) yandex.cloud.api.logging.v1.LogResource.LogGroupResourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogGroupResource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogGroupResource_fieldAccessorTable .ensureFieldAccessorsInitialized( yandex.cloud.api.logging.v1.LogResource.LogGroupResource.class, yandex.cloud.api.logging.v1.LogResource.LogGroupResource.Builder.class); } // Construct using yandex.cloud.api.logging.v1.LogResource.LogGroupResource.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(); type_ = ""; ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return yandex.cloud.api.logging.v1.LogResource.internal_static_yandex_cloud_logging_v1_LogGroupResource_descriptor; } @java.lang.Override public yandex.cloud.api.logging.v1.LogResource.LogGroupResource getDefaultInstanceForType() { return yandex.cloud.api.logging.v1.LogResource.LogGroupResource.getDefaultInstance(); } @java.lang.Override public yandex.cloud.api.logging.v1.LogResource.LogGroupResource build() { yandex.cloud.api.logging.v1.LogResource.LogGroupResource result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public yandex.cloud.api.logging.v1.LogResource.LogGroupResource buildPartial() { yandex.cloud.api.logging.v1.LogResource.LogGroupResource result = new yandex.cloud.api.logging.v1.LogResource.LogGroupResource(this); int from_bitField0_ = bitField0_; result.type_ = type_; if (((bitField0_ & 0x00000001) != 0)) { ids_ = ids_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000001); } result.ids_ = ids_; 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.logging.v1.LogResource.LogGroupResource) { return mergeFrom((yandex.cloud.api.logging.v1.LogResource.LogGroupResource)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(yandex.cloud.api.logging.v1.LogResource.LogGroupResource other) { if (other == yandex.cloud.api.logging.v1.LogResource.LogGroupResource.getDefaultInstance()) return this; if (!other.getType().isEmpty()) { type_ = other.type_; onChanged(); } if (!other.ids_.isEmpty()) { if (ids_.isEmpty()) { ids_ = other.ids_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureIdsIsMutable(); ids_.addAll(other.ids_); } onChanged(); } 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.logging.v1.LogResource.LogGroupResource parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (yandex.cloud.api.logging.v1.LogResource.LogGroupResource) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object type_ = ""; /** *
       * Resource type.
       * Collected from log entries inside log group.
       * 
* * string type = 1; * @return The type. */ public java.lang.String getType() { java.lang.Object ref = type_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); type_ = s; return s; } else { return (java.lang.String) ref; } } /** *
       * Resource type.
       * Collected from log entries inside log group.
       * 
* * string type = 1; * @return The bytes for type. */ public com.google.protobuf.ByteString getTypeBytes() { java.lang.Object ref = type_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); type_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
       * Resource type.
       * Collected from log entries inside log group.
       * 
* * string type = 1; * @param value The type to set. * @return This builder for chaining. */ public Builder setType( java.lang.String value) { if (value == null) { throw new NullPointerException(); } type_ = value; onChanged(); return this; } /** *
       * Resource type.
       * Collected from log entries inside log group.
       * 
* * string type = 1; * @return This builder for chaining. */ public Builder clearType() { type_ = getDefaultInstance().getType(); onChanged(); return this; } /** *
       * Resource type.
       * Collected from log entries inside log group.
       * 
* * string type = 1; * @param value The bytes for type to set. * @return This builder for chaining. */ public Builder setTypeBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); type_ = value; onChanged(); return this; } private com.google.protobuf.LazyStringList ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureIdsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { ids_ = new com.google.protobuf.LazyStringArrayList(ids_); bitField0_ |= 0x00000001; } } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @return A list containing the ids. */ public com.google.protobuf.ProtocolStringList getIdsList() { return ids_.getUnmodifiableView(); } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @return The count of ids. */ public int getIdsCount() { return ids_.size(); } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @param index The index of the element to return. * @return The ids at the given index. */ public java.lang.String getIds(int index) { return ids_.get(index); } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @param index The index of the value to return. * @return The bytes of the ids at the given index. */ public com.google.protobuf.ByteString getIdsBytes(int index) { return ids_.getByteString(index); } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @param index The index to set the value at. * @param value The ids to set. * @return This builder for chaining. */ public Builder setIds( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureIdsIsMutable(); ids_.set(index, value); onChanged(); return this; } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @param value The ids to add. * @return This builder for chaining. */ public Builder addIds( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureIdsIsMutable(); ids_.add(value); onChanged(); return this; } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @param values The ids to add. * @return This builder for chaining. */ public Builder addAllIds( java.lang.Iterable values) { ensureIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, ids_); onChanged(); return this; } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @return This builder for chaining. */ public Builder clearIds() { ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
       * List of resource IDs with the same resource type.
       * 
* * repeated string ids = 2; * @param value The bytes of the ids to add. * @return This builder for chaining. */ public Builder addIdsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureIdsIsMutable(); ids_.add(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:yandex.cloud.logging.v1.LogGroupResource) } // @@protoc_insertion_point(class_scope:yandex.cloud.logging.v1.LogGroupResource) private static final yandex.cloud.api.logging.v1.LogResource.LogGroupResource DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new yandex.cloud.api.logging.v1.LogResource.LogGroupResource(); } public static yandex.cloud.api.logging.v1.LogResource.LogGroupResource getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public LogGroupResource parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new LogGroupResource(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.logging.v1.LogResource.LogGroupResource getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } private static final com.google.protobuf.Descriptors.Descriptor internal_static_yandex_cloud_logging_v1_LogEntryResource_descriptor; private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_yandex_cloud_logging_v1_LogEntryResource_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_yandex_cloud_logging_v1_LogGroupResource_descriptor; private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_yandex_cloud_logging_v1_LogGroupResource_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { return descriptor; } private static com.google.protobuf.Descriptors.FileDescriptor descriptor; static { java.lang.String[] descriptorData = { "\n*yandex/cloud/logging/v1/log_resource.p" + "roto\022\027yandex.cloud.logging.v1\032\035yandex/cl" + "oud/validation.proto\"y\n\020LogEntryResource" + "\0221\n\004type\030\001 \001(\tB#\362\3071\037([a-zA-Z][-a-zA-Z0-9" + "_.]{0,63})?\0222\n\002id\030\002 \001(\tB&\362\3071\"([a-zA-Z0-9" + "][-a-zA-Z0-9_.]{0,63})?\"-\n\020LogGroupResou" + "rce\022\014\n\004type\030\001 \001(\t\022\013\n\003ids\030\002 \003(\tBb\n\033yandex" + ".cloud.api.logging.v1ZCgithub.com/yandex" + "-cloud/go-genproto/yandex/cloud/logging/" + "v1;loggingb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { yandex.cloud.api.Validation.getDescriptor(), }); internal_static_yandex_cloud_logging_v1_LogEntryResource_descriptor = getDescriptor().getMessageTypes().get(0); internal_static_yandex_cloud_logging_v1_LogEntryResource_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_yandex_cloud_logging_v1_LogEntryResource_descriptor, new java.lang.String[] { "Type", "Id", }); internal_static_yandex_cloud_logging_v1_LogGroupResource_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_yandex_cloud_logging_v1_LogGroupResource_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_yandex_cloud_logging_v1_LogGroupResource_descriptor, new java.lang.String[] { "Type", "Ids", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(yandex.cloud.api.Validation.pattern); com.google.protobuf.Descriptors.FileDescriptor .internalUpdateFileDescriptor(descriptor, registry); yandex.cloud.api.Validation.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy