com.google.storage.v2.StartResumableWriteRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-storage-v2 Show documentation
Show all versions of proto-google-cloud-storage-v2 Show documentation
PROTO library for proto-google-cloud-storage-v2
/*
* Copyright 2024 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
// Protobuf Java Version: 3.25.2
package com.google.storage.v2;
/**
*
*
*
* Request message StartResumableWrite.
*
*
* Protobuf type {@code google.storage.v2.StartResumableWriteRequest}
*/
public final class StartResumableWriteRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.storage.v2.StartResumableWriteRequest)
StartResumableWriteRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use StartResumableWriteRequest.newBuilder() to construct.
private StartResumableWriteRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StartResumableWriteRequest() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new StartResumableWriteRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.storage.v2.StorageProto
.internal_static_google_storage_v2_StartResumableWriteRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.storage.v2.StorageProto
.internal_static_google_storage_v2_StartResumableWriteRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.storage.v2.StartResumableWriteRequest.class,
com.google.storage.v2.StartResumableWriteRequest.Builder.class);
}
private int bitField0_;
public static final int WRITE_OBJECT_SPEC_FIELD_NUMBER = 1;
private com.google.storage.v2.WriteObjectSpec writeObjectSpec_;
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the writeObjectSpec field is set.
*/
@java.lang.Override
public boolean hasWriteObjectSpec() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The writeObjectSpec.
*/
@java.lang.Override
public com.google.storage.v2.WriteObjectSpec getWriteObjectSpec() {
return writeObjectSpec_ == null
? com.google.storage.v2.WriteObjectSpec.getDefaultInstance()
: writeObjectSpec_;
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
@java.lang.Override
public com.google.storage.v2.WriteObjectSpecOrBuilder getWriteObjectSpecOrBuilder() {
return writeObjectSpec_ == null
? com.google.storage.v2.WriteObjectSpec.getDefaultInstance()
: writeObjectSpec_;
}
public static final int COMMON_OBJECT_REQUEST_PARAMS_FIELD_NUMBER = 3;
private com.google.storage.v2.CommonObjectRequestParams commonObjectRequestParams_;
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*
* @return Whether the commonObjectRequestParams field is set.
*/
@java.lang.Override
public boolean hasCommonObjectRequestParams() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*
* @return The commonObjectRequestParams.
*/
@java.lang.Override
public com.google.storage.v2.CommonObjectRequestParams getCommonObjectRequestParams() {
return commonObjectRequestParams_ == null
? com.google.storage.v2.CommonObjectRequestParams.getDefaultInstance()
: commonObjectRequestParams_;
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
@java.lang.Override
public com.google.storage.v2.CommonObjectRequestParamsOrBuilder
getCommonObjectRequestParamsOrBuilder() {
return commonObjectRequestParams_ == null
? com.google.storage.v2.CommonObjectRequestParams.getDefaultInstance()
: commonObjectRequestParams_;
}
public static final int OBJECT_CHECKSUMS_FIELD_NUMBER = 5;
private com.google.storage.v2.ObjectChecksums objectChecksums_;
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*
* @return Whether the objectChecksums field is set.
*/
@java.lang.Override
public boolean hasObjectChecksums() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*
* @return The objectChecksums.
*/
@java.lang.Override
public com.google.storage.v2.ObjectChecksums getObjectChecksums() {
return objectChecksums_ == null
? com.google.storage.v2.ObjectChecksums.getDefaultInstance()
: objectChecksums_;
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
@java.lang.Override
public com.google.storage.v2.ObjectChecksumsOrBuilder getObjectChecksumsOrBuilder() {
return objectChecksums_ == null
? com.google.storage.v2.ObjectChecksums.getDefaultInstance()
: objectChecksums_;
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getWriteObjectSpec());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(3, getCommonObjectRequestParams());
}
if (((bitField0_ & 0x00000004) != 0)) {
output.writeMessage(5, getObjectChecksums());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getWriteObjectSpec());
}
if (((bitField0_ & 0x00000002) != 0)) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
3, getCommonObjectRequestParams());
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getObjectChecksums());
}
size += getUnknownFields().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.StartResumableWriteRequest)) {
return super.equals(obj);
}
com.google.storage.v2.StartResumableWriteRequest other =
(com.google.storage.v2.StartResumableWriteRequest) obj;
if (hasWriteObjectSpec() != other.hasWriteObjectSpec()) return false;
if (hasWriteObjectSpec()) {
if (!getWriteObjectSpec().equals(other.getWriteObjectSpec())) return false;
}
if (hasCommonObjectRequestParams() != other.hasCommonObjectRequestParams()) return false;
if (hasCommonObjectRequestParams()) {
if (!getCommonObjectRequestParams().equals(other.getCommonObjectRequestParams()))
return false;
}
if (hasObjectChecksums() != other.hasObjectChecksums()) return false;
if (hasObjectChecksums()) {
if (!getObjectChecksums().equals(other.getObjectChecksums())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasWriteObjectSpec()) {
hash = (37 * hash) + WRITE_OBJECT_SPEC_FIELD_NUMBER;
hash = (53 * hash) + getWriteObjectSpec().hashCode();
}
if (hasCommonObjectRequestParams()) {
hash = (37 * hash) + COMMON_OBJECT_REQUEST_PARAMS_FIELD_NUMBER;
hash = (53 * hash) + getCommonObjectRequestParams().hashCode();
}
if (hasObjectChecksums()) {
hash = (37 * hash) + OBJECT_CHECKSUMS_FIELD_NUMBER;
hash = (53 * hash) + getObjectChecksums().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.storage.v2.StartResumableWriteRequest parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.storage.v2.StartResumableWriteRequest 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.StartResumableWriteRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.storage.v2.StartResumableWriteRequest 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.StartResumableWriteRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.storage.v2.StartResumableWriteRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.storage.v2.StartResumableWriteRequest parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.storage.v2.StartResumableWriteRequest 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.StartResumableWriteRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.storage.v2.StartResumableWriteRequest 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.StartResumableWriteRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.storage.v2.StartResumableWriteRequest 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.StartResumableWriteRequest 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 StartResumableWrite.
*
*
* Protobuf type {@code google.storage.v2.StartResumableWriteRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.storage.v2.StartResumableWriteRequest)
com.google.storage.v2.StartResumableWriteRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.storage.v2.StorageProto
.internal_static_google_storage_v2_StartResumableWriteRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.storage.v2.StorageProto
.internal_static_google_storage_v2_StartResumableWriteRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.storage.v2.StartResumableWriteRequest.class,
com.google.storage.v2.StartResumableWriteRequest.Builder.class);
}
// Construct using com.google.storage.v2.StartResumableWriteRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getWriteObjectSpecFieldBuilder();
getCommonObjectRequestParamsFieldBuilder();
getObjectChecksumsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
writeObjectSpec_ = null;
if (writeObjectSpecBuilder_ != null) {
writeObjectSpecBuilder_.dispose();
writeObjectSpecBuilder_ = null;
}
commonObjectRequestParams_ = null;
if (commonObjectRequestParamsBuilder_ != null) {
commonObjectRequestParamsBuilder_.dispose();
commonObjectRequestParamsBuilder_ = null;
}
objectChecksums_ = null;
if (objectChecksumsBuilder_ != null) {
objectChecksumsBuilder_.dispose();
objectChecksumsBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.storage.v2.StorageProto
.internal_static_google_storage_v2_StartResumableWriteRequest_descriptor;
}
@java.lang.Override
public com.google.storage.v2.StartResumableWriteRequest getDefaultInstanceForType() {
return com.google.storage.v2.StartResumableWriteRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.storage.v2.StartResumableWriteRequest build() {
com.google.storage.v2.StartResumableWriteRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.storage.v2.StartResumableWriteRequest buildPartial() {
com.google.storage.v2.StartResumableWriteRequest result =
new com.google.storage.v2.StartResumableWriteRequest(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.storage.v2.StartResumableWriteRequest result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.writeObjectSpec_ =
writeObjectSpecBuilder_ == null ? writeObjectSpec_ : writeObjectSpecBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.commonObjectRequestParams_ =
commonObjectRequestParamsBuilder_ == null
? commonObjectRequestParams_
: commonObjectRequestParamsBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.objectChecksums_ =
objectChecksumsBuilder_ == null ? objectChecksums_ : objectChecksumsBuilder_.build();
to_bitField0_ |= 0x00000004;
}
result.bitField0_ |= to_bitField0_;
}
@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.StartResumableWriteRequest) {
return mergeFrom((com.google.storage.v2.StartResumableWriteRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.storage.v2.StartResumableWriteRequest other) {
if (other == com.google.storage.v2.StartResumableWriteRequest.getDefaultInstance())
return this;
if (other.hasWriteObjectSpec()) {
mergeWriteObjectSpec(other.getWriteObjectSpec());
}
if (other.hasCommonObjectRequestParams()) {
mergeCommonObjectRequestParams(other.getCommonObjectRequestParams());
}
if (other.hasObjectChecksums()) {
mergeObjectChecksums(other.getObjectChecksums());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getWriteObjectSpecFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 26:
{
input.readMessage(
getCommonObjectRequestParamsFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 26
case 42:
{
input.readMessage(getObjectChecksumsFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 42
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.storage.v2.WriteObjectSpec writeObjectSpec_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.WriteObjectSpec,
com.google.storage.v2.WriteObjectSpec.Builder,
com.google.storage.v2.WriteObjectSpecOrBuilder>
writeObjectSpecBuilder_;
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the writeObjectSpec field is set.
*/
public boolean hasWriteObjectSpec() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The writeObjectSpec.
*/
public com.google.storage.v2.WriteObjectSpec getWriteObjectSpec() {
if (writeObjectSpecBuilder_ == null) {
return writeObjectSpec_ == null
? com.google.storage.v2.WriteObjectSpec.getDefaultInstance()
: writeObjectSpec_;
} else {
return writeObjectSpecBuilder_.getMessage();
}
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder setWriteObjectSpec(com.google.storage.v2.WriteObjectSpec value) {
if (writeObjectSpecBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
writeObjectSpec_ = value;
} else {
writeObjectSpecBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder setWriteObjectSpec(
com.google.storage.v2.WriteObjectSpec.Builder builderForValue) {
if (writeObjectSpecBuilder_ == null) {
writeObjectSpec_ = builderForValue.build();
} else {
writeObjectSpecBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder mergeWriteObjectSpec(com.google.storage.v2.WriteObjectSpec value) {
if (writeObjectSpecBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& writeObjectSpec_ != null
&& writeObjectSpec_ != com.google.storage.v2.WriteObjectSpec.getDefaultInstance()) {
getWriteObjectSpecBuilder().mergeFrom(value);
} else {
writeObjectSpec_ = value;
}
} else {
writeObjectSpecBuilder_.mergeFrom(value);
}
if (writeObjectSpec_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public Builder clearWriteObjectSpec() {
bitField0_ = (bitField0_ & ~0x00000001);
writeObjectSpec_ = null;
if (writeObjectSpecBuilder_ != null) {
writeObjectSpecBuilder_.dispose();
writeObjectSpecBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public com.google.storage.v2.WriteObjectSpec.Builder getWriteObjectSpecBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getWriteObjectSpecFieldBuilder().getBuilder();
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
public com.google.storage.v2.WriteObjectSpecOrBuilder getWriteObjectSpecOrBuilder() {
if (writeObjectSpecBuilder_ != null) {
return writeObjectSpecBuilder_.getMessageOrBuilder();
} else {
return writeObjectSpec_ == null
? com.google.storage.v2.WriteObjectSpec.getDefaultInstance()
: writeObjectSpec_;
}
}
/**
*
*
*
* Required. The destination bucket, object, and metadata, as well as any
* preconditions.
*
*
*
* .google.storage.v2.WriteObjectSpec write_object_spec = 1 [(.google.api.field_behavior) = REQUIRED];
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.WriteObjectSpec,
com.google.storage.v2.WriteObjectSpec.Builder,
com.google.storage.v2.WriteObjectSpecOrBuilder>
getWriteObjectSpecFieldBuilder() {
if (writeObjectSpecBuilder_ == null) {
writeObjectSpecBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.WriteObjectSpec,
com.google.storage.v2.WriteObjectSpec.Builder,
com.google.storage.v2.WriteObjectSpecOrBuilder>(
getWriteObjectSpec(), getParentForChildren(), isClean());
writeObjectSpec_ = null;
}
return writeObjectSpecBuilder_;
}
private com.google.storage.v2.CommonObjectRequestParams commonObjectRequestParams_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.CommonObjectRequestParams,
com.google.storage.v2.CommonObjectRequestParams.Builder,
com.google.storage.v2.CommonObjectRequestParamsOrBuilder>
commonObjectRequestParamsBuilder_;
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*
* @return Whether the commonObjectRequestParams field is set.
*/
public boolean hasCommonObjectRequestParams() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*
* @return The commonObjectRequestParams.
*/
public com.google.storage.v2.CommonObjectRequestParams getCommonObjectRequestParams() {
if (commonObjectRequestParamsBuilder_ == null) {
return commonObjectRequestParams_ == null
? com.google.storage.v2.CommonObjectRequestParams.getDefaultInstance()
: commonObjectRequestParams_;
} else {
return commonObjectRequestParamsBuilder_.getMessage();
}
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
public Builder setCommonObjectRequestParams(
com.google.storage.v2.CommonObjectRequestParams value) {
if (commonObjectRequestParamsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
commonObjectRequestParams_ = value;
} else {
commonObjectRequestParamsBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
public Builder setCommonObjectRequestParams(
com.google.storage.v2.CommonObjectRequestParams.Builder builderForValue) {
if (commonObjectRequestParamsBuilder_ == null) {
commonObjectRequestParams_ = builderForValue.build();
} else {
commonObjectRequestParamsBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
public Builder mergeCommonObjectRequestParams(
com.google.storage.v2.CommonObjectRequestParams value) {
if (commonObjectRequestParamsBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& commonObjectRequestParams_ != null
&& commonObjectRequestParams_
!= com.google.storage.v2.CommonObjectRequestParams.getDefaultInstance()) {
getCommonObjectRequestParamsBuilder().mergeFrom(value);
} else {
commonObjectRequestParams_ = value;
}
} else {
commonObjectRequestParamsBuilder_.mergeFrom(value);
}
if (commonObjectRequestParams_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
public Builder clearCommonObjectRequestParams() {
bitField0_ = (bitField0_ & ~0x00000002);
commonObjectRequestParams_ = null;
if (commonObjectRequestParamsBuilder_ != null) {
commonObjectRequestParamsBuilder_.dispose();
commonObjectRequestParamsBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
public com.google.storage.v2.CommonObjectRequestParams.Builder
getCommonObjectRequestParamsBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getCommonObjectRequestParamsFieldBuilder().getBuilder();
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
public com.google.storage.v2.CommonObjectRequestParamsOrBuilder
getCommonObjectRequestParamsOrBuilder() {
if (commonObjectRequestParamsBuilder_ != null) {
return commonObjectRequestParamsBuilder_.getMessageOrBuilder();
} else {
return commonObjectRequestParams_ == null
? com.google.storage.v2.CommonObjectRequestParams.getDefaultInstance()
: commonObjectRequestParams_;
}
}
/**
*
*
*
* A set of parameters common to Storage API requests concerning an object.
*
*
* .google.storage.v2.CommonObjectRequestParams common_object_request_params = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.CommonObjectRequestParams,
com.google.storage.v2.CommonObjectRequestParams.Builder,
com.google.storage.v2.CommonObjectRequestParamsOrBuilder>
getCommonObjectRequestParamsFieldBuilder() {
if (commonObjectRequestParamsBuilder_ == null) {
commonObjectRequestParamsBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.CommonObjectRequestParams,
com.google.storage.v2.CommonObjectRequestParams.Builder,
com.google.storage.v2.CommonObjectRequestParamsOrBuilder>(
getCommonObjectRequestParams(), getParentForChildren(), isClean());
commonObjectRequestParams_ = null;
}
return commonObjectRequestParamsBuilder_;
}
private com.google.storage.v2.ObjectChecksums objectChecksums_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.ObjectChecksums,
com.google.storage.v2.ObjectChecksums.Builder,
com.google.storage.v2.ObjectChecksumsOrBuilder>
objectChecksumsBuilder_;
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*
* @return Whether the objectChecksums field is set.
*/
public boolean hasObjectChecksums() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*
* @return The objectChecksums.
*/
public com.google.storage.v2.ObjectChecksums getObjectChecksums() {
if (objectChecksumsBuilder_ == null) {
return objectChecksums_ == null
? com.google.storage.v2.ObjectChecksums.getDefaultInstance()
: objectChecksums_;
} else {
return objectChecksumsBuilder_.getMessage();
}
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
public Builder setObjectChecksums(com.google.storage.v2.ObjectChecksums value) {
if (objectChecksumsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
objectChecksums_ = value;
} else {
objectChecksumsBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
public Builder setObjectChecksums(
com.google.storage.v2.ObjectChecksums.Builder builderForValue) {
if (objectChecksumsBuilder_ == null) {
objectChecksums_ = builderForValue.build();
} else {
objectChecksumsBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
public Builder mergeObjectChecksums(com.google.storage.v2.ObjectChecksums value) {
if (objectChecksumsBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& objectChecksums_ != null
&& objectChecksums_ != com.google.storage.v2.ObjectChecksums.getDefaultInstance()) {
getObjectChecksumsBuilder().mergeFrom(value);
} else {
objectChecksums_ = value;
}
} else {
objectChecksumsBuilder_.mergeFrom(value);
}
if (objectChecksums_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
public Builder clearObjectChecksums() {
bitField0_ = (bitField0_ & ~0x00000004);
objectChecksums_ = null;
if (objectChecksumsBuilder_ != null) {
objectChecksumsBuilder_.dispose();
objectChecksumsBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
public com.google.storage.v2.ObjectChecksums.Builder getObjectChecksumsBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getObjectChecksumsFieldBuilder().getBuilder();
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
public com.google.storage.v2.ObjectChecksumsOrBuilder getObjectChecksumsOrBuilder() {
if (objectChecksumsBuilder_ != null) {
return objectChecksumsBuilder_.getMessageOrBuilder();
} else {
return objectChecksums_ == null
? com.google.storage.v2.ObjectChecksums.getDefaultInstance()
: objectChecksums_;
}
}
/**
*
*
*
* The checksums of the complete object. This will be used to validate the
* uploaded object. For each upload, object_checksums can be provided with
* either StartResumableWriteRequest or the WriteObjectRequest with
* finish_write set to `true`.
*
*
* .google.storage.v2.ObjectChecksums object_checksums = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.ObjectChecksums,
com.google.storage.v2.ObjectChecksums.Builder,
com.google.storage.v2.ObjectChecksumsOrBuilder>
getObjectChecksumsFieldBuilder() {
if (objectChecksumsBuilder_ == null) {
objectChecksumsBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.storage.v2.ObjectChecksums,
com.google.storage.v2.ObjectChecksums.Builder,
com.google.storage.v2.ObjectChecksumsOrBuilder>(
getObjectChecksums(), getParentForChildren(), isClean());
objectChecksums_ = null;
}
return objectChecksumsBuilder_;
}
@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.StartResumableWriteRequest)
}
// @@protoc_insertion_point(class_scope:google.storage.v2.StartResumableWriteRequest)
private static final com.google.storage.v2.StartResumableWriteRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.storage.v2.StartResumableWriteRequest();
}
public static com.google.storage.v2.StartResumableWriteRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StartResumableWriteRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
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.StartResumableWriteRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy