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

com.google.storage.v2.GetBucketRequest Maven / Gradle / Ivy

There is a newer version: 2.47.0
Show newest version
/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/storage/v2/storage.proto

package com.google.storage.v2;

/**
 *
 *
 * 
 * Request message for GetBucket.
 * 
* * Protobuf type {@code google.storage.v2.GetBucketRequest} */ public final class GetBucketRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.storage.v2.GetBucketRequest) GetBucketRequestOrBuilder { private static final long serialVersionUID = 0L; // Use GetBucketRequest.newBuilder() to construct. private GetBucketRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private GetBucketRequest() { name_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new GetBucketRequest(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private GetBucketRequest( 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(); name_ = s; break; } case 16: { bitField0_ |= 0x00000001; ifMetagenerationMatch_ = input.readInt64(); break; } case 24: { bitField0_ |= 0x00000002; ifMetagenerationNotMatch_ = input.readInt64(); break; } case 42: { com.google.protobuf.FieldMask.Builder subBuilder = null; if (((bitField0_ & 0x00000004) != 0)) { subBuilder = readMask_.toBuilder(); } readMask_ = input.readMessage(com.google.protobuf.FieldMask.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(readMask_); readMask_ = subBuilder.buildPartial(); } bitField0_ |= 0x00000004; break; } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.storage.v2.StorageProto .internal_static_google_storage_v2_GetBucketRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.storage.v2.StorageProto .internal_static_google_storage_v2_GetBucketRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.storage.v2.GetBucketRequest.class, com.google.storage.v2.GetBucketRequest.Builder.class); } private int bitField0_; public static final int NAME_FIELD_NUMBER = 1; private volatile java.lang.Object name_; /** * * *
   * Required. Name of a bucket.
   * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; 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(); name_ = s; return s; } } /** * * *
   * Required. Name of a bucket.
   * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int IF_METAGENERATION_MATCH_FIELD_NUMBER = 2; private long ifMetagenerationMatch_; /** * * *
   * If set, and if the bucket's current metageneration does not match the
   * specified value, the request will return an error.
   * 
* * optional int64 if_metageneration_match = 2; * * @return Whether the ifMetagenerationMatch field is set. */ @java.lang.Override public boolean hasIfMetagenerationMatch() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * If set, and if the bucket's current metageneration does not match the
   * specified value, the request will return an error.
   * 
* * optional int64 if_metageneration_match = 2; * * @return The ifMetagenerationMatch. */ @java.lang.Override public long getIfMetagenerationMatch() { return ifMetagenerationMatch_; } public static final int IF_METAGENERATION_NOT_MATCH_FIELD_NUMBER = 3; private long ifMetagenerationNotMatch_; /** * * *
   * If set, and if the bucket's current metageneration matches the specified
   * value, the request will return an error.
   * 
* * optional int64 if_metageneration_not_match = 3; * * @return Whether the ifMetagenerationNotMatch field is set. */ @java.lang.Override public boolean hasIfMetagenerationNotMatch() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
   * If set, and if the bucket's current metageneration matches the specified
   * value, the request will return an error.
   * 
* * optional int64 if_metageneration_not_match = 3; * * @return The ifMetagenerationNotMatch. */ @java.lang.Override public long getIfMetagenerationNotMatch() { return ifMetagenerationNotMatch_; } public static final int READ_MASK_FIELD_NUMBER = 5; private com.google.protobuf.FieldMask readMask_; /** * * *
   * Mask specifying which fields to read.
   * A "*" field may be used to indicate all fields.
   * If no mask is specified, will default to all fields.
   * 
* * optional .google.protobuf.FieldMask read_mask = 5; * * @return Whether the readMask field is set. */ @java.lang.Override public boolean hasReadMask() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
   * Mask specifying which fields to read.
   * A "*" field may be used to indicate all fields.
   * If no mask is specified, will default to all fields.
   * 
* * optional .google.protobuf.FieldMask read_mask = 5; * * @return The readMask. */ @java.lang.Override public com.google.protobuf.FieldMask getReadMask() { return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_; } /** * * *
   * Mask specifying which fields to read.
   * A "*" field may be used to indicate all fields.
   * If no mask is specified, will default to all fields.
   * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ @java.lang.Override public com.google.protobuf.FieldMaskOrBuilder getReadMaskOrBuilder() { return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_; } 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(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeInt64(2, ifMetagenerationMatch_); } if (((bitField0_ & 0x00000002) != 0)) { output.writeInt64(3, ifMetagenerationNotMatch_); } if (((bitField0_ & 0x00000004) != 0)) { output.writeMessage(5, getReadMask()); } 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(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeInt64Size(2, ifMetagenerationMatch_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeInt64Size(3, ifMetagenerationNotMatch_); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getReadMask()); } 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 com.google.storage.v2.GetBucketRequest)) { return super.equals(obj); } com.google.storage.v2.GetBucketRequest other = (com.google.storage.v2.GetBucketRequest) obj; if (!getName().equals(other.getName())) return false; if (hasIfMetagenerationMatch() != other.hasIfMetagenerationMatch()) return false; if (hasIfMetagenerationMatch()) { if (getIfMetagenerationMatch() != other.getIfMetagenerationMatch()) return false; } if (hasIfMetagenerationNotMatch() != other.hasIfMetagenerationNotMatch()) return false; if (hasIfMetagenerationNotMatch()) { if (getIfMetagenerationNotMatch() != other.getIfMetagenerationNotMatch()) return false; } if (hasReadMask() != other.hasReadMask()) return false; if (hasReadMask()) { if (!getReadMask().equals(other.getReadMask())) 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) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); if (hasIfMetagenerationMatch()) { hash = (37 * hash) + IF_METAGENERATION_MATCH_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getIfMetagenerationMatch()); } if (hasIfMetagenerationNotMatch()) { hash = (37 * hash) + IF_METAGENERATION_NOT_MATCH_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getIfMetagenerationNotMatch()); } if (hasReadMask()) { hash = (37 * hash) + READ_MASK_FIELD_NUMBER; hash = (53 * hash) + getReadMask().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.storage.v2.GetBucketRequest parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.storage.v2.GetBucketRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.storage.v2.GetBucketRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.storage.v2.GetBucketRequest 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.storage.v2.GetBucketRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.storage.v2.GetBucketRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.storage.v2.GetBucketRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.storage.v2.GetBucketRequest 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 com.google.storage.v2.GetBucketRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.storage.v2.GetBucketRequest 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 com.google.storage.v2.GetBucketRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.storage.v2.GetBucketRequest 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(com.google.storage.v2.GetBucketRequest 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; } /** * * *
   * Request message for GetBucket.
   * 
* * Protobuf type {@code google.storage.v2.GetBucketRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.storage.v2.GetBucketRequest) com.google.storage.v2.GetBucketRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.storage.v2.StorageProto .internal_static_google_storage_v2_GetBucketRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.storage.v2.StorageProto .internal_static_google_storage_v2_GetBucketRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.storage.v2.GetBucketRequest.class, com.google.storage.v2.GetBucketRequest.Builder.class); } // Construct using com.google.storage.v2.GetBucketRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getReadMaskFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); name_ = ""; ifMetagenerationMatch_ = 0L; bitField0_ = (bitField0_ & ~0x00000001); ifMetagenerationNotMatch_ = 0L; bitField0_ = (bitField0_ & ~0x00000002); if (readMaskBuilder_ == null) { readMask_ = null; } else { readMaskBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000004); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.storage.v2.StorageProto .internal_static_google_storage_v2_GetBucketRequest_descriptor; } @java.lang.Override public com.google.storage.v2.GetBucketRequest getDefaultInstanceForType() { return com.google.storage.v2.GetBucketRequest.getDefaultInstance(); } @java.lang.Override public com.google.storage.v2.GetBucketRequest build() { com.google.storage.v2.GetBucketRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.storage.v2.GetBucketRequest buildPartial() { com.google.storage.v2.GetBucketRequest result = new com.google.storage.v2.GetBucketRequest(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; result.name_ = name_; if (((from_bitField0_ & 0x00000001) != 0)) { result.ifMetagenerationMatch_ = ifMetagenerationMatch_; to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.ifMetagenerationNotMatch_ = ifMetagenerationNotMatch_; to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000004) != 0)) { if (readMaskBuilder_ == null) { result.readMask_ = readMask_; } else { result.readMask_ = readMaskBuilder_.build(); } to_bitField0_ |= 0x00000004; } result.bitField0_ = to_bitField0_; 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 com.google.storage.v2.GetBucketRequest) { return mergeFrom((com.google.storage.v2.GetBucketRequest) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.storage.v2.GetBucketRequest other) { if (other == com.google.storage.v2.GetBucketRequest.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; onChanged(); } if (other.hasIfMetagenerationMatch()) { setIfMetagenerationMatch(other.getIfMetagenerationMatch()); } if (other.hasIfMetagenerationNotMatch()) { setIfMetagenerationNotMatch(other.getIfMetagenerationNotMatch()); } if (other.hasReadMask()) { mergeReadMask(other.getReadMask()); } 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 { com.google.storage.v2.GetBucketRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.storage.v2.GetBucketRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object name_ = ""; /** * * *
     * Required. Name of a bucket.
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. Name of a bucket.
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. Name of a bucket.
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @param value The name to set. * @return This builder for chaining. */ public Builder setName(java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; onChanged(); return this; } /** * * *
     * Required. Name of a bucket.
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); onChanged(); return this; } /** * * *
     * Required. Name of a bucket.
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; onChanged(); return this; } private long ifMetagenerationMatch_; /** * * *
     * If set, and if the bucket's current metageneration does not match the
     * specified value, the request will return an error.
     * 
* * optional int64 if_metageneration_match = 2; * * @return Whether the ifMetagenerationMatch field is set. */ @java.lang.Override public boolean hasIfMetagenerationMatch() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
     * If set, and if the bucket's current metageneration does not match the
     * specified value, the request will return an error.
     * 
* * optional int64 if_metageneration_match = 2; * * @return The ifMetagenerationMatch. */ @java.lang.Override public long getIfMetagenerationMatch() { return ifMetagenerationMatch_; } /** * * *
     * If set, and if the bucket's current metageneration does not match the
     * specified value, the request will return an error.
     * 
* * optional int64 if_metageneration_match = 2; * * @param value The ifMetagenerationMatch to set. * @return This builder for chaining. */ public Builder setIfMetagenerationMatch(long value) { bitField0_ |= 0x00000001; ifMetagenerationMatch_ = value; onChanged(); return this; } /** * * *
     * If set, and if the bucket's current metageneration does not match the
     * specified value, the request will return an error.
     * 
* * optional int64 if_metageneration_match = 2; * * @return This builder for chaining. */ public Builder clearIfMetagenerationMatch() { bitField0_ = (bitField0_ & ~0x00000001); ifMetagenerationMatch_ = 0L; onChanged(); return this; } private long ifMetagenerationNotMatch_; /** * * *
     * If set, and if the bucket's current metageneration matches the specified
     * value, the request will return an error.
     * 
* * optional int64 if_metageneration_not_match = 3; * * @return Whether the ifMetagenerationNotMatch field is set. */ @java.lang.Override public boolean hasIfMetagenerationNotMatch() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
     * If set, and if the bucket's current metageneration matches the specified
     * value, the request will return an error.
     * 
* * optional int64 if_metageneration_not_match = 3; * * @return The ifMetagenerationNotMatch. */ @java.lang.Override public long getIfMetagenerationNotMatch() { return ifMetagenerationNotMatch_; } /** * * *
     * If set, and if the bucket's current metageneration matches the specified
     * value, the request will return an error.
     * 
* * optional int64 if_metageneration_not_match = 3; * * @param value The ifMetagenerationNotMatch to set. * @return This builder for chaining. */ public Builder setIfMetagenerationNotMatch(long value) { bitField0_ |= 0x00000002; ifMetagenerationNotMatch_ = value; onChanged(); return this; } /** * * *
     * If set, and if the bucket's current metageneration matches the specified
     * value, the request will return an error.
     * 
* * optional int64 if_metageneration_not_match = 3; * * @return This builder for chaining. */ public Builder clearIfMetagenerationNotMatch() { bitField0_ = (bitField0_ & ~0x00000002); ifMetagenerationNotMatch_ = 0L; onChanged(); return this; } private com.google.protobuf.FieldMask readMask_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.FieldMask, com.google.protobuf.FieldMask.Builder, com.google.protobuf.FieldMaskOrBuilder> readMaskBuilder_; /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; * * @return Whether the readMask field is set. */ public boolean hasReadMask() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; * * @return The readMask. */ public com.google.protobuf.FieldMask getReadMask() { if (readMaskBuilder_ == null) { return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_; } else { return readMaskBuilder_.getMessage(); } } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ public Builder setReadMask(com.google.protobuf.FieldMask value) { if (readMaskBuilder_ == null) { if (value == null) { throw new NullPointerException(); } readMask_ = value; onChanged(); } else { readMaskBuilder_.setMessage(value); } bitField0_ |= 0x00000004; return this; } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ public Builder setReadMask(com.google.protobuf.FieldMask.Builder builderForValue) { if (readMaskBuilder_ == null) { readMask_ = builderForValue.build(); onChanged(); } else { readMaskBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; return this; } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ public Builder mergeReadMask(com.google.protobuf.FieldMask value) { if (readMaskBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && readMask_ != null && readMask_ != com.google.protobuf.FieldMask.getDefaultInstance()) { readMask_ = com.google.protobuf.FieldMask.newBuilder(readMask_).mergeFrom(value).buildPartial(); } else { readMask_ = value; } onChanged(); } else { readMaskBuilder_.mergeFrom(value); } bitField0_ |= 0x00000004; return this; } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ public Builder clearReadMask() { if (readMaskBuilder_ == null) { readMask_ = null; onChanged(); } else { readMaskBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000004); return this; } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ public com.google.protobuf.FieldMask.Builder getReadMaskBuilder() { bitField0_ |= 0x00000004; onChanged(); return getReadMaskFieldBuilder().getBuilder(); } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ public com.google.protobuf.FieldMaskOrBuilder getReadMaskOrBuilder() { if (readMaskBuilder_ != null) { return readMaskBuilder_.getMessageOrBuilder(); } else { return readMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : readMask_; } } /** * * *
     * Mask specifying which fields to read.
     * A "*" field may be used to indicate all fields.
     * If no mask is specified, will default to all fields.
     * 
* * optional .google.protobuf.FieldMask read_mask = 5; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.FieldMask, com.google.protobuf.FieldMask.Builder, com.google.protobuf.FieldMaskOrBuilder> getReadMaskFieldBuilder() { if (readMaskBuilder_ == null) { readMaskBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.FieldMask, com.google.protobuf.FieldMask.Builder, com.google.protobuf.FieldMaskOrBuilder>( getReadMask(), getParentForChildren(), isClean()); readMask_ = null; } return readMaskBuilder_; } @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:google.storage.v2.GetBucketRequest) } // @@protoc_insertion_point(class_scope:google.storage.v2.GetBucketRequest) private static final com.google.storage.v2.GetBucketRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.storage.v2.GetBucketRequest(); } public static com.google.storage.v2.GetBucketRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GetBucketRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new GetBucketRequest(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 com.google.storage.v2.GetBucketRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy