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

com.google.logging.v2.ListSinksResponse Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/logging/v2/logging_config.proto

package com.google.logging.v2;

/**
 * Protobuf type {@code google.logging.v2.ListSinksResponse}
 *
 * 
 * Result returned from `ListSinks`.
 * 
*/ public final class ListSinksResponse extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:google.logging.v2.ListSinksResponse) ListSinksResponseOrBuilder { // Use ListSinksResponse.newBuilder() to construct. private ListSinksResponse(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private ListSinksResponse() { sinks_ = java.util.Collections.emptyList(); nextPageToken_ = ""; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } private ListSinksResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) { this(); int mutable_bitField0_ = 0; try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!input.skipField(tag)) { done = true; } break; } case 10: { if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { sinks_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } sinks_.add(input.readMessage(com.google.logging.v2.LogSink.parser(), extensionRegistry)); break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); nextPageToken_ = s; break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw new RuntimeException(e.setUnfinishedMessage(this)); } catch (java.io.IOException e) { throw new RuntimeException( new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this)); } finally { if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { sinks_ = java.util.Collections.unmodifiableList(sinks_); } makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.logging.v2.LoggingConfig.internal_static_google_logging_v2_ListSinksResponse_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.logging.v2.LoggingConfig.internal_static_google_logging_v2_ListSinksResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.logging.v2.ListSinksResponse.class, com.google.logging.v2.ListSinksResponse.Builder.class); } private int bitField0_; public static final int SINKS_FIELD_NUMBER = 1; private java.util.List sinks_; /** * repeated .google.logging.v2.LogSink sinks = 1; * *
   * A list of sinks.
   * 
*/ public java.util.List getSinksList() { return sinks_; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
   * A list of sinks.
   * 
*/ public java.util.List getSinksOrBuilderList() { return sinks_; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
   * A list of sinks.
   * 
*/ public int getSinksCount() { return sinks_.size(); } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
   * A list of sinks.
   * 
*/ public com.google.logging.v2.LogSink getSinks(int index) { return sinks_.get(index); } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
   * A list of sinks.
   * 
*/ public com.google.logging.v2.LogSinkOrBuilder getSinksOrBuilder( int index) { return sinks_.get(index); } public static final int NEXT_PAGE_TOKEN_FIELD_NUMBER = 2; private volatile java.lang.Object nextPageToken_; /** * optional string next_page_token = 2; * *
   * If there are more results than were returned, then `nextPageToken` is
   * given a value in the response.  To get the next batch of results, call this
   * method again using the value of `nextPageToken` as `pageToken`.
   * 
*/ public java.lang.String getNextPageToken() { java.lang.Object ref = nextPageToken_; 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(); nextPageToken_ = s; return s; } } /** * optional string next_page_token = 2; * *
   * If there are more results than were returned, then `nextPageToken` is
   * given a value in the response.  To get the next batch of results, call this
   * method again using the value of `nextPageToken` as `pageToken`.
   * 
*/ public com.google.protobuf.ByteString getNextPageTokenBytes() { java.lang.Object ref = nextPageToken_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); nextPageToken_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < sinks_.size(); i++) { output.writeMessage(1, sinks_.get(i)); } if (!getNextPageTokenBytes().isEmpty()) { com.google.protobuf.GeneratedMessage.writeString(output, 2, nextPageToken_); } } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < sinks_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, sinks_.get(i)); } if (!getNextPageTokenBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessage.computeStringSize(2, nextPageToken_); } memoizedSize = size; return size; } private static final long serialVersionUID = 0L; public static com.google.logging.v2.ListSinksResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.logging.v2.ListSinksResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.logging.v2.ListSinksResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.logging.v2.ListSinksResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.logging.v2.ListSinksResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } public static com.google.logging.v2.ListSinksResponse parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } public static com.google.logging.v2.ListSinksResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } public static com.google.logging.v2.ListSinksResponse parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseDelimitedFrom(input, extensionRegistry); } public static com.google.logging.v2.ListSinksResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } public static com.google.logging.v2.ListSinksResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.logging.v2.ListSinksResponse prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code google.logging.v2.ListSinksResponse} * *
   * Result returned from `ListSinks`.
   * 
*/ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:google.logging.v2.ListSinksResponse) com.google.logging.v2.ListSinksResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.logging.v2.LoggingConfig.internal_static_google_logging_v2_ListSinksResponse_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.logging.v2.LoggingConfig.internal_static_google_logging_v2_ListSinksResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.logging.v2.ListSinksResponse.class, com.google.logging.v2.ListSinksResponse.Builder.class); } // Construct using com.google.logging.v2.ListSinksResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { getSinksFieldBuilder(); } } public Builder clear() { super.clear(); if (sinksBuilder_ == null) { sinks_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { sinksBuilder_.clear(); } nextPageToken_ = ""; return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.logging.v2.LoggingConfig.internal_static_google_logging_v2_ListSinksResponse_descriptor; } public com.google.logging.v2.ListSinksResponse getDefaultInstanceForType() { return com.google.logging.v2.ListSinksResponse.getDefaultInstance(); } public com.google.logging.v2.ListSinksResponse build() { com.google.logging.v2.ListSinksResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.logging.v2.ListSinksResponse buildPartial() { com.google.logging.v2.ListSinksResponse result = new com.google.logging.v2.ListSinksResponse(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (sinksBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001)) { sinks_ = java.util.Collections.unmodifiableList(sinks_); bitField0_ = (bitField0_ & ~0x00000001); } result.sinks_ = sinks_; } else { result.sinks_ = sinksBuilder_.build(); } result.nextPageToken_ = nextPageToken_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.logging.v2.ListSinksResponse) { return mergeFrom((com.google.logging.v2.ListSinksResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.logging.v2.ListSinksResponse other) { if (other == com.google.logging.v2.ListSinksResponse.getDefaultInstance()) return this; if (sinksBuilder_ == null) { if (!other.sinks_.isEmpty()) { if (sinks_.isEmpty()) { sinks_ = other.sinks_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureSinksIsMutable(); sinks_.addAll(other.sinks_); } onChanged(); } } else { if (!other.sinks_.isEmpty()) { if (sinksBuilder_.isEmpty()) { sinksBuilder_.dispose(); sinksBuilder_ = null; sinks_ = other.sinks_; bitField0_ = (bitField0_ & ~0x00000001); sinksBuilder_ = com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? getSinksFieldBuilder() : null; } else { sinksBuilder_.addAllMessages(other.sinks_); } } } if (!other.getNextPageToken().isEmpty()) { nextPageToken_ = other.nextPageToken_; onChanged(); } onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.logging.v2.ListSinksResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.logging.v2.ListSinksResponse) e.getUnfinishedMessage(); throw e; } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List sinks_ = java.util.Collections.emptyList(); private void ensureSinksIsMutable() { if (!((bitField0_ & 0x00000001) == 0x00000001)) { sinks_ = new java.util.ArrayList(sinks_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilder< com.google.logging.v2.LogSink, com.google.logging.v2.LogSink.Builder, com.google.logging.v2.LogSinkOrBuilder> sinksBuilder_; /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public java.util.List getSinksList() { if (sinksBuilder_ == null) { return java.util.Collections.unmodifiableList(sinks_); } else { return sinksBuilder_.getMessageList(); } } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public int getSinksCount() { if (sinksBuilder_ == null) { return sinks_.size(); } else { return sinksBuilder_.getCount(); } } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public com.google.logging.v2.LogSink getSinks(int index) { if (sinksBuilder_ == null) { return sinks_.get(index); } else { return sinksBuilder_.getMessage(index); } } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder setSinks( int index, com.google.logging.v2.LogSink value) { if (sinksBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSinksIsMutable(); sinks_.set(index, value); onChanged(); } else { sinksBuilder_.setMessage(index, value); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder setSinks( int index, com.google.logging.v2.LogSink.Builder builderForValue) { if (sinksBuilder_ == null) { ensureSinksIsMutable(); sinks_.set(index, builderForValue.build()); onChanged(); } else { sinksBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder addSinks(com.google.logging.v2.LogSink value) { if (sinksBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSinksIsMutable(); sinks_.add(value); onChanged(); } else { sinksBuilder_.addMessage(value); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder addSinks( int index, com.google.logging.v2.LogSink value) { if (sinksBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSinksIsMutable(); sinks_.add(index, value); onChanged(); } else { sinksBuilder_.addMessage(index, value); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder addSinks( com.google.logging.v2.LogSink.Builder builderForValue) { if (sinksBuilder_ == null) { ensureSinksIsMutable(); sinks_.add(builderForValue.build()); onChanged(); } else { sinksBuilder_.addMessage(builderForValue.build()); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder addSinks( int index, com.google.logging.v2.LogSink.Builder builderForValue) { if (sinksBuilder_ == null) { ensureSinksIsMutable(); sinks_.add(index, builderForValue.build()); onChanged(); } else { sinksBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder addAllSinks( java.lang.Iterable values) { if (sinksBuilder_ == null) { ensureSinksIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, sinks_); onChanged(); } else { sinksBuilder_.addAllMessages(values); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder clearSinks() { if (sinksBuilder_ == null) { sinks_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { sinksBuilder_.clear(); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public Builder removeSinks(int index) { if (sinksBuilder_ == null) { ensureSinksIsMutable(); sinks_.remove(index); onChanged(); } else { sinksBuilder_.remove(index); } return this; } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public com.google.logging.v2.LogSink.Builder getSinksBuilder( int index) { return getSinksFieldBuilder().getBuilder(index); } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public com.google.logging.v2.LogSinkOrBuilder getSinksOrBuilder( int index) { if (sinksBuilder_ == null) { return sinks_.get(index); } else { return sinksBuilder_.getMessageOrBuilder(index); } } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public java.util.List getSinksOrBuilderList() { if (sinksBuilder_ != null) { return sinksBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(sinks_); } } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public com.google.logging.v2.LogSink.Builder addSinksBuilder() { return getSinksFieldBuilder().addBuilder( com.google.logging.v2.LogSink.getDefaultInstance()); } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public com.google.logging.v2.LogSink.Builder addSinksBuilder( int index) { return getSinksFieldBuilder().addBuilder( index, com.google.logging.v2.LogSink.getDefaultInstance()); } /** * repeated .google.logging.v2.LogSink sinks = 1; * *
     * A list of sinks.
     * 
*/ public java.util.List getSinksBuilderList() { return getSinksFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilder< com.google.logging.v2.LogSink, com.google.logging.v2.LogSink.Builder, com.google.logging.v2.LogSinkOrBuilder> getSinksFieldBuilder() { if (sinksBuilder_ == null) { sinksBuilder_ = new com.google.protobuf.RepeatedFieldBuilder< com.google.logging.v2.LogSink, com.google.logging.v2.LogSink.Builder, com.google.logging.v2.LogSinkOrBuilder>( sinks_, ((bitField0_ & 0x00000001) == 0x00000001), getParentForChildren(), isClean()); sinks_ = null; } return sinksBuilder_; } private java.lang.Object nextPageToken_ = ""; /** * optional string next_page_token = 2; * *
     * If there are more results than were returned, then `nextPageToken` is
     * given a value in the response.  To get the next batch of results, call this
     * method again using the value of `nextPageToken` as `pageToken`.
     * 
*/ public java.lang.String getNextPageToken() { java.lang.Object ref = nextPageToken_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); nextPageToken_ = s; return s; } else { return (java.lang.String) ref; } } /** * optional string next_page_token = 2; * *
     * If there are more results than were returned, then `nextPageToken` is
     * given a value in the response.  To get the next batch of results, call this
     * method again using the value of `nextPageToken` as `pageToken`.
     * 
*/ public com.google.protobuf.ByteString getNextPageTokenBytes() { java.lang.Object ref = nextPageToken_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); nextPageToken_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * optional string next_page_token = 2; * *
     * If there are more results than were returned, then `nextPageToken` is
     * given a value in the response.  To get the next batch of results, call this
     * method again using the value of `nextPageToken` as `pageToken`.
     * 
*/ public Builder setNextPageToken( java.lang.String value) { if (value == null) { throw new NullPointerException(); } nextPageToken_ = value; onChanged(); return this; } /** * optional string next_page_token = 2; * *
     * If there are more results than were returned, then `nextPageToken` is
     * given a value in the response.  To get the next batch of results, call this
     * method again using the value of `nextPageToken` as `pageToken`.
     * 
*/ public Builder clearNextPageToken() { nextPageToken_ = getDefaultInstance().getNextPageToken(); onChanged(); return this; } /** * optional string next_page_token = 2; * *
     * If there are more results than were returned, then `nextPageToken` is
     * given a value in the response.  To get the next batch of results, call this
     * method again using the value of `nextPageToken` as `pageToken`.
     * 
*/ public Builder setNextPageTokenBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); nextPageToken_ = value; onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; } // @@protoc_insertion_point(builder_scope:google.logging.v2.ListSinksResponse) } // @@protoc_insertion_point(class_scope:google.logging.v2.ListSinksResponse) private static final com.google.logging.v2.ListSinksResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.logging.v2.ListSinksResponse(); } public static com.google.logging.v2.ListSinksResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public ListSinksResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { try { return new ListSinksResponse(input, extensionRegistry); } catch (RuntimeException e) { if (e.getCause() instanceof com.google.protobuf.InvalidProtocolBufferException) { throw (com.google.protobuf.InvalidProtocolBufferException) e.getCause(); } throw e; } } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public com.google.logging.v2.ListSinksResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy