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

com.google.longrunning.Operation Maven / Gradle / Ivy

There is a newer version: 3.2.3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/longrunning/operations.proto

package com.google.longrunning;

/**
 * 
 * This resource represents a long-running operation that is the result of a
 * network API call.
 * 
* * Protobuf type {@code google.longrunning.Operation} */ public final class Operation extends com.google.proto4pingcap.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.longrunning.Operation) OperationOrBuilder { // Use Operation.newBuilder() to construct. private Operation(com.google.proto4pingcap.GeneratedMessageV3.Builder builder) { super(builder); } private Operation() { name_ = ""; done_ = false; } @java.lang.Override public final com.google.proto4pingcap.UnknownFieldSet getUnknownFields() { return com.google.proto4pingcap.UnknownFieldSet.getDefaultInstance(); } private Operation( com.google.proto4pingcap.CodedInputStream input, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws com.google.proto4pingcap.InvalidProtocolBufferException { 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: { java.lang.String s = input.readStringRequireUtf8(); name_ = s; break; } case 18: { com.google.proto4pingcap.Any.Builder subBuilder = null; if (metadata_ != null) { subBuilder = metadata_.toBuilder(); } metadata_ = input.readMessage(com.google.proto4pingcap.Any.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(metadata_); metadata_ = subBuilder.buildPartial(); } break; } case 24: { done_ = input.readBool(); break; } case 34: { com.google.rpc.Status.Builder subBuilder = null; if (resultCase_ == 4) { subBuilder = ((com.google.rpc.Status) result_).toBuilder(); } result_ = input.readMessage(com.google.rpc.Status.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((com.google.rpc.Status) result_); result_ = subBuilder.buildPartial(); } resultCase_ = 4; break; } case 42: { com.google.proto4pingcap.Any.Builder subBuilder = null; if (resultCase_ == 5) { subBuilder = ((com.google.proto4pingcap.Any) result_).toBuilder(); } result_ = input.readMessage(com.google.proto4pingcap.Any.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((com.google.proto4pingcap.Any) result_); result_ = subBuilder.buildPartial(); } resultCase_ = 5; break; } } } } catch (com.google.proto4pingcap.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.proto4pingcap.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { makeExtensionsImmutable(); } } public static final com.google.proto4pingcap.Descriptors.Descriptor getDescriptor() { return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_descriptor; } protected com.google.proto4pingcap.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.longrunning.Operation.class, com.google.longrunning.Operation.Builder.class); } private int resultCase_ = 0; private java.lang.Object result_; public enum ResultCase implements com.google.proto4pingcap.Internal.EnumLite { ERROR(4), RESPONSE(5), RESULT_NOT_SET(0); private final int value; private ResultCase(int value) { this.value = value; } /** * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static ResultCase valueOf(int value) { return forNumber(value); } public static ResultCase forNumber(int value) { switch (value) { case 4: return ERROR; case 5: return RESPONSE; case 0: return RESULT_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public ResultCase getResultCase() { return ResultCase.forNumber( resultCase_); } public static final int NAME_FIELD_NUMBER = 1; private volatile java.lang.Object name_; /** *
   * The server-assigned name, which is only unique within the same service that
   * originally returns it. If you use the default HTTP mapping, the
   * `name` should have the format of `operations/some/unique/name`.
   * 
* * string name = 1; */ public java.lang.String getName() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.proto4pingcap.ByteString bs = (com.google.proto4pingcap.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } } /** *
   * The server-assigned name, which is only unique within the same service that
   * originally returns it. If you use the default HTTP mapping, the
   * `name` should have the format of `operations/some/unique/name`.
   * 
* * string name = 1; */ public com.google.proto4pingcap.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.proto4pingcap.ByteString b = com.google.proto4pingcap.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.proto4pingcap.ByteString) ref; } } public static final int METADATA_FIELD_NUMBER = 2; private com.google.proto4pingcap.Any metadata_; /** *
   * Service-specific metadata associated with the operation.  It typically
   * contains progress information and common metadata such as create time.
   * Some services might not provide such metadata.  Any method that returns a
   * long-running operation should document the metadata type, if any.
   * 
* * .google.protobuf.Any metadata = 2; */ public boolean hasMetadata() { return metadata_ != null; } /** *
   * Service-specific metadata associated with the operation.  It typically
   * contains progress information and common metadata such as create time.
   * Some services might not provide such metadata.  Any method that returns a
   * long-running operation should document the metadata type, if any.
   * 
* * .google.protobuf.Any metadata = 2; */ public com.google.proto4pingcap.Any getMetadata() { return metadata_ == null ? com.google.proto4pingcap.Any.getDefaultInstance() : metadata_; } /** *
   * Service-specific metadata associated with the operation.  It typically
   * contains progress information and common metadata such as create time.
   * Some services might not provide such metadata.  Any method that returns a
   * long-running operation should document the metadata type, if any.
   * 
* * .google.protobuf.Any metadata = 2; */ public com.google.proto4pingcap.AnyOrBuilder getMetadataOrBuilder() { return getMetadata(); } public static final int DONE_FIELD_NUMBER = 3; private boolean done_; /** *
   * If the value is `false`, it means the operation is still in progress.
   * If true, the operation is completed, and either `error` or `response` is
   * available.
   * 
* * bool done = 3; */ public boolean getDone() { return done_; } public static final int ERROR_FIELD_NUMBER = 4; /** *
   * The error result of the operation in case of failure or cancellation.
   * 
* * .google.rpc.Status error = 4; */ public com.google.rpc.Status getError() { if (resultCase_ == 4) { return (com.google.rpc.Status) result_; } return com.google.rpc.Status.getDefaultInstance(); } /** *
   * The error result of the operation in case of failure or cancellation.
   * 
* * .google.rpc.Status error = 4; */ public com.google.rpc.StatusOrBuilder getErrorOrBuilder() { if (resultCase_ == 4) { return (com.google.rpc.Status) result_; } return com.google.rpc.Status.getDefaultInstance(); } public static final int RESPONSE_FIELD_NUMBER = 5; /** *
   * The normal response of the operation in case of success.  If the original
   * method returns no data on success, such as `Delete`, the response is
   * `google.protobuf.Empty`.  If the original method is standard
   * `Get`/`Create`/`Update`, the response should be the resource.  For other
   * methods, the response should have the type `XxxResponse`, where `Xxx`
   * is the original method name.  For example, if the original method name
   * is `TakeSnapshot()`, the inferred response type is
   * `TakeSnapshotResponse`.
   * 
* * .google.protobuf.Any response = 5; */ public com.google.proto4pingcap.Any getResponse() { if (resultCase_ == 5) { return (com.google.proto4pingcap.Any) result_; } return com.google.proto4pingcap.Any.getDefaultInstance(); } /** *
   * The normal response of the operation in case of success.  If the original
   * method returns no data on success, such as `Delete`, the response is
   * `google.protobuf.Empty`.  If the original method is standard
   * `Get`/`Create`/`Update`, the response should be the resource.  For other
   * methods, the response should have the type `XxxResponse`, where `Xxx`
   * is the original method name.  For example, if the original method name
   * is `TakeSnapshot()`, the inferred response type is
   * `TakeSnapshotResponse`.
   * 
* * .google.protobuf.Any response = 5; */ public com.google.proto4pingcap.AnyOrBuilder getResponseOrBuilder() { if (resultCase_ == 5) { return (com.google.proto4pingcap.Any) result_; } return com.google.proto4pingcap.Any.getDefaultInstance(); } 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.proto4pingcap.CodedOutputStream output) throws java.io.IOException { if (!getNameBytes().isEmpty()) { com.google.proto4pingcap.GeneratedMessageV3.writeString(output, 1, name_); } if (metadata_ != null) { output.writeMessage(2, getMetadata()); } if (done_ != false) { output.writeBool(3, done_); } if (resultCase_ == 4) { output.writeMessage(4, (com.google.rpc.Status) result_); } if (resultCase_ == 5) { output.writeMessage(5, (com.google.proto4pingcap.Any) result_); } } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getNameBytes().isEmpty()) { size += com.google.proto4pingcap.GeneratedMessageV3.computeStringSize(1, name_); } if (metadata_ != null) { size += com.google.proto4pingcap.CodedOutputStream .computeMessageSize(2, getMetadata()); } if (done_ != false) { size += com.google.proto4pingcap.CodedOutputStream .computeBoolSize(3, done_); } if (resultCase_ == 4) { size += com.google.proto4pingcap.CodedOutputStream .computeMessageSize(4, (com.google.rpc.Status) result_); } if (resultCase_ == 5) { size += com.google.proto4pingcap.CodedOutputStream .computeMessageSize(5, (com.google.proto4pingcap.Any) result_); } memoizedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.longrunning.Operation)) { return super.equals(obj); } com.google.longrunning.Operation other = (com.google.longrunning.Operation) obj; boolean result = true; result = result && getName() .equals(other.getName()); result = result && (hasMetadata() == other.hasMetadata()); if (hasMetadata()) { result = result && getMetadata() .equals(other.getMetadata()); } result = result && (getDone() == other.getDone()); result = result && getResultCase().equals( other.getResultCase()); if (!result) return false; switch (resultCase_) { case 4: result = result && getError() .equals(other.getError()); break; case 5: result = result && getResponse() .equals(other.getResponse()); break; case 0: default: } return result; } @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 (hasMetadata()) { hash = (37 * hash) + METADATA_FIELD_NUMBER; hash = (53 * hash) + getMetadata().hashCode(); } hash = (37 * hash) + DONE_FIELD_NUMBER; hash = (53 * hash) + com.google.proto4pingcap.Internal.hashBoolean( getDone()); switch (resultCase_) { case 4: hash = (37 * hash) + ERROR_FIELD_NUMBER; hash = (53 * hash) + getError().hashCode(); break; case 5: hash = (37 * hash) + RESPONSE_FIELD_NUMBER; hash = (53 * hash) + getResponse().hashCode(); break; case 0: default: } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.longrunning.Operation parseFrom( com.google.proto4pingcap.ByteString data) throws com.google.proto4pingcap.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.longrunning.Operation parseFrom( com.google.proto4pingcap.ByteString data, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws com.google.proto4pingcap.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.longrunning.Operation parseFrom(byte[] data) throws com.google.proto4pingcap.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.longrunning.Operation parseFrom( byte[] data, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws com.google.proto4pingcap.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.longrunning.Operation parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.proto4pingcap.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.longrunning.Operation parseFrom( java.io.InputStream input, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.proto4pingcap.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.longrunning.Operation parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.proto4pingcap.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.longrunning.Operation parseDelimitedFrom( java.io.InputStream input, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.proto4pingcap.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.longrunning.Operation parseFrom( com.google.proto4pingcap.CodedInputStream input) throws java.io.IOException { return com.google.proto4pingcap.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.longrunning.Operation parseFrom( com.google.proto4pingcap.CodedInputStream input, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.proto4pingcap.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.longrunning.Operation 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.proto4pingcap.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * This resource represents a long-running operation that is the result of a
   * network API call.
   * 
* * Protobuf type {@code google.longrunning.Operation} */ public static final class Builder extends com.google.proto4pingcap.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.longrunning.Operation) com.google.longrunning.OperationOrBuilder { public static final com.google.proto4pingcap.Descriptors.Descriptor getDescriptor() { return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_descriptor; } protected com.google.proto4pingcap.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.longrunning.Operation.class, com.google.longrunning.Operation.Builder.class); } // Construct using com.google.longrunning.Operation.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.proto4pingcap.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.proto4pingcap.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } public Builder clear() { super.clear(); name_ = ""; if (metadataBuilder_ == null) { metadata_ = null; } else { metadata_ = null; metadataBuilder_ = null; } done_ = false; resultCase_ = 0; result_ = null; return this; } public com.google.proto4pingcap.Descriptors.Descriptor getDescriptorForType() { return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_descriptor; } public com.google.longrunning.Operation getDefaultInstanceForType() { return com.google.longrunning.Operation.getDefaultInstance(); } public com.google.longrunning.Operation build() { com.google.longrunning.Operation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.longrunning.Operation buildPartial() { com.google.longrunning.Operation result = new com.google.longrunning.Operation(this); result.name_ = name_; if (metadataBuilder_ == null) { result.metadata_ = metadata_; } else { result.metadata_ = metadataBuilder_.build(); } result.done_ = done_; if (resultCase_ == 4) { if (errorBuilder_ == null) { result.result_ = result_; } else { result.result_ = errorBuilder_.build(); } } if (resultCase_ == 5) { if (responseBuilder_ == null) { result.result_ = result_; } else { result.result_ = responseBuilder_.build(); } } result.resultCase_ = resultCase_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.proto4pingcap.Descriptors.FieldDescriptor field, Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.proto4pingcap.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.proto4pingcap.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.proto4pingcap.Descriptors.FieldDescriptor field, int index, Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.proto4pingcap.Descriptors.FieldDescriptor field, Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.proto4pingcap.Message other) { if (other instanceof com.google.longrunning.Operation) { return mergeFrom((com.google.longrunning.Operation)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.longrunning.Operation other) { if (other == com.google.longrunning.Operation.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; onChanged(); } if (other.hasMetadata()) { mergeMetadata(other.getMetadata()); } if (other.getDone() != false) { setDone(other.getDone()); } switch (other.getResultCase()) { case ERROR: { mergeError(other.getError()); break; } case RESPONSE: { mergeResponse(other.getResponse()); break; } case RESULT_NOT_SET: { break; } } onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.proto4pingcap.CodedInputStream input, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.longrunning.Operation parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.proto4pingcap.InvalidProtocolBufferException e) { parsedMessage = (com.google.longrunning.Operation) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int resultCase_ = 0; private java.lang.Object result_; public ResultCase getResultCase() { return ResultCase.forNumber( resultCase_); } public Builder clearResult() { resultCase_ = 0; result_ = null; onChanged(); return this; } private java.lang.Object name_ = ""; /** *
     * The server-assigned name, which is only unique within the same service that
     * originally returns it. If you use the default HTTP mapping, the
     * `name` should have the format of `operations/some/unique/name`.
     * 
* * string name = 1; */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.proto4pingcap.ByteString bs = (com.google.proto4pingcap.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The server-assigned name, which is only unique within the same service that
     * originally returns it. If you use the default HTTP mapping, the
     * `name` should have the format of `operations/some/unique/name`.
     * 
* * string name = 1; */ public com.google.proto4pingcap.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.proto4pingcap.ByteString b = com.google.proto4pingcap.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.proto4pingcap.ByteString) ref; } } /** *
     * The server-assigned name, which is only unique within the same service that
     * originally returns it. If you use the default HTTP mapping, the
     * `name` should have the format of `operations/some/unique/name`.
     * 
* * string name = 1; */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; onChanged(); return this; } /** *
     * The server-assigned name, which is only unique within the same service that
     * originally returns it. If you use the default HTTP mapping, the
     * `name` should have the format of `operations/some/unique/name`.
     * 
* * string name = 1; */ public Builder clearName() { name_ = getDefaultInstance().getName(); onChanged(); return this; } /** *
     * The server-assigned name, which is only unique within the same service that
     * originally returns it. If you use the default HTTP mapping, the
     * `name` should have the format of `operations/some/unique/name`.
     * 
* * string name = 1; */ public Builder setNameBytes( com.google.proto4pingcap.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; onChanged(); return this; } private com.google.proto4pingcap.Any metadata_ = null; private com.google.proto4pingcap.SingleFieldBuilderV3< com.google.proto4pingcap.Any, com.google.proto4pingcap.Any.Builder, com.google.proto4pingcap.AnyOrBuilder> metadataBuilder_; /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public boolean hasMetadata() { return metadataBuilder_ != null || metadata_ != null; } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public com.google.proto4pingcap.Any getMetadata() { if (metadataBuilder_ == null) { return metadata_ == null ? com.google.proto4pingcap.Any.getDefaultInstance() : metadata_; } else { return metadataBuilder_.getMessage(); } } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public Builder setMetadata(com.google.proto4pingcap.Any value) { if (metadataBuilder_ == null) { if (value == null) { throw new NullPointerException(); } metadata_ = value; onChanged(); } else { metadataBuilder_.setMessage(value); } return this; } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public Builder setMetadata( com.google.proto4pingcap.Any.Builder builderForValue) { if (metadataBuilder_ == null) { metadata_ = builderForValue.build(); onChanged(); } else { metadataBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public Builder mergeMetadata(com.google.proto4pingcap.Any value) { if (metadataBuilder_ == null) { if (metadata_ != null) { metadata_ = com.google.proto4pingcap.Any.newBuilder(metadata_).mergeFrom(value).buildPartial(); } else { metadata_ = value; } onChanged(); } else { metadataBuilder_.mergeFrom(value); } return this; } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public Builder clearMetadata() { if (metadataBuilder_ == null) { metadata_ = null; onChanged(); } else { metadata_ = null; metadataBuilder_ = null; } return this; } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public com.google.proto4pingcap.Any.Builder getMetadataBuilder() { onChanged(); return getMetadataFieldBuilder().getBuilder(); } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ public com.google.proto4pingcap.AnyOrBuilder getMetadataOrBuilder() { if (metadataBuilder_ != null) { return metadataBuilder_.getMessageOrBuilder(); } else { return metadata_ == null ? com.google.proto4pingcap.Any.getDefaultInstance() : metadata_; } } /** *
     * Service-specific metadata associated with the operation.  It typically
     * contains progress information and common metadata such as create time.
     * Some services might not provide such metadata.  Any method that returns a
     * long-running operation should document the metadata type, if any.
     * 
* * .google.protobuf.Any metadata = 2; */ private com.google.proto4pingcap.SingleFieldBuilderV3< com.google.proto4pingcap.Any, com.google.proto4pingcap.Any.Builder, com.google.proto4pingcap.AnyOrBuilder> getMetadataFieldBuilder() { if (metadataBuilder_ == null) { metadataBuilder_ = new com.google.proto4pingcap.SingleFieldBuilderV3< com.google.proto4pingcap.Any, com.google.proto4pingcap.Any.Builder, com.google.proto4pingcap.AnyOrBuilder>( getMetadata(), getParentForChildren(), isClean()); metadata_ = null; } return metadataBuilder_; } private boolean done_ ; /** *
     * If the value is `false`, it means the operation is still in progress.
     * If true, the operation is completed, and either `error` or `response` is
     * available.
     * 
* * bool done = 3; */ public boolean getDone() { return done_; } /** *
     * If the value is `false`, it means the operation is still in progress.
     * If true, the operation is completed, and either `error` or `response` is
     * available.
     * 
* * bool done = 3; */ public Builder setDone(boolean value) { done_ = value; onChanged(); return this; } /** *
     * If the value is `false`, it means the operation is still in progress.
     * If true, the operation is completed, and either `error` or `response` is
     * available.
     * 
* * bool done = 3; */ public Builder clearDone() { done_ = false; onChanged(); return this; } private com.google.proto4pingcap.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> errorBuilder_; /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public com.google.rpc.Status getError() { if (errorBuilder_ == null) { if (resultCase_ == 4) { return (com.google.rpc.Status) result_; } return com.google.rpc.Status.getDefaultInstance(); } else { if (resultCase_ == 4) { return errorBuilder_.getMessage(); } return com.google.rpc.Status.getDefaultInstance(); } } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public Builder setError(com.google.rpc.Status value) { if (errorBuilder_ == null) { if (value == null) { throw new NullPointerException(); } result_ = value; onChanged(); } else { errorBuilder_.setMessage(value); } resultCase_ = 4; return this; } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public Builder setError( com.google.rpc.Status.Builder builderForValue) { if (errorBuilder_ == null) { result_ = builderForValue.build(); onChanged(); } else { errorBuilder_.setMessage(builderForValue.build()); } resultCase_ = 4; return this; } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public Builder mergeError(com.google.rpc.Status value) { if (errorBuilder_ == null) { if (resultCase_ == 4 && result_ != com.google.rpc.Status.getDefaultInstance()) { result_ = com.google.rpc.Status.newBuilder((com.google.rpc.Status) result_) .mergeFrom(value).buildPartial(); } else { result_ = value; } onChanged(); } else { if (resultCase_ == 4) { errorBuilder_.mergeFrom(value); } errorBuilder_.setMessage(value); } resultCase_ = 4; return this; } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public Builder clearError() { if (errorBuilder_ == null) { if (resultCase_ == 4) { resultCase_ = 0; result_ = null; onChanged(); } } else { if (resultCase_ == 4) { resultCase_ = 0; result_ = null; } errorBuilder_.clear(); } return this; } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public com.google.rpc.Status.Builder getErrorBuilder() { return getErrorFieldBuilder().getBuilder(); } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ public com.google.rpc.StatusOrBuilder getErrorOrBuilder() { if ((resultCase_ == 4) && (errorBuilder_ != null)) { return errorBuilder_.getMessageOrBuilder(); } else { if (resultCase_ == 4) { return (com.google.rpc.Status) result_; } return com.google.rpc.Status.getDefaultInstance(); } } /** *
     * The error result of the operation in case of failure or cancellation.
     * 
* * .google.rpc.Status error = 4; */ private com.google.proto4pingcap.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> getErrorFieldBuilder() { if (errorBuilder_ == null) { if (!(resultCase_ == 4)) { result_ = com.google.rpc.Status.getDefaultInstance(); } errorBuilder_ = new com.google.proto4pingcap.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>( (com.google.rpc.Status) result_, getParentForChildren(), isClean()); result_ = null; } resultCase_ = 4; onChanged();; return errorBuilder_; } private com.google.proto4pingcap.SingleFieldBuilderV3< com.google.proto4pingcap.Any, com.google.proto4pingcap.Any.Builder, com.google.proto4pingcap.AnyOrBuilder> responseBuilder_; /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public com.google.proto4pingcap.Any getResponse() { if (responseBuilder_ == null) { if (resultCase_ == 5) { return (com.google.proto4pingcap.Any) result_; } return com.google.proto4pingcap.Any.getDefaultInstance(); } else { if (resultCase_ == 5) { return responseBuilder_.getMessage(); } return com.google.proto4pingcap.Any.getDefaultInstance(); } } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public Builder setResponse(com.google.proto4pingcap.Any value) { if (responseBuilder_ == null) { if (value == null) { throw new NullPointerException(); } result_ = value; onChanged(); } else { responseBuilder_.setMessage(value); } resultCase_ = 5; return this; } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public Builder setResponse( com.google.proto4pingcap.Any.Builder builderForValue) { if (responseBuilder_ == null) { result_ = builderForValue.build(); onChanged(); } else { responseBuilder_.setMessage(builderForValue.build()); } resultCase_ = 5; return this; } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public Builder mergeResponse(com.google.proto4pingcap.Any value) { if (responseBuilder_ == null) { if (resultCase_ == 5 && result_ != com.google.proto4pingcap.Any.getDefaultInstance()) { result_ = com.google.proto4pingcap.Any.newBuilder((com.google.proto4pingcap.Any) result_) .mergeFrom(value).buildPartial(); } else { result_ = value; } onChanged(); } else { if (resultCase_ == 5) { responseBuilder_.mergeFrom(value); } responseBuilder_.setMessage(value); } resultCase_ = 5; return this; } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public Builder clearResponse() { if (responseBuilder_ == null) { if (resultCase_ == 5) { resultCase_ = 0; result_ = null; onChanged(); } } else { if (resultCase_ == 5) { resultCase_ = 0; result_ = null; } responseBuilder_.clear(); } return this; } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public com.google.proto4pingcap.Any.Builder getResponseBuilder() { return getResponseFieldBuilder().getBuilder(); } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ public com.google.proto4pingcap.AnyOrBuilder getResponseOrBuilder() { if ((resultCase_ == 5) && (responseBuilder_ != null)) { return responseBuilder_.getMessageOrBuilder(); } else { if (resultCase_ == 5) { return (com.google.proto4pingcap.Any) result_; } return com.google.proto4pingcap.Any.getDefaultInstance(); } } /** *
     * The normal response of the operation in case of success.  If the original
     * method returns no data on success, such as `Delete`, the response is
     * `google.protobuf.Empty`.  If the original method is standard
     * `Get`/`Create`/`Update`, the response should be the resource.  For other
     * methods, the response should have the type `XxxResponse`, where `Xxx`
     * is the original method name.  For example, if the original method name
     * is `TakeSnapshot()`, the inferred response type is
     * `TakeSnapshotResponse`.
     * 
* * .google.protobuf.Any response = 5; */ private com.google.proto4pingcap.SingleFieldBuilderV3< com.google.proto4pingcap.Any, com.google.proto4pingcap.Any.Builder, com.google.proto4pingcap.AnyOrBuilder> getResponseFieldBuilder() { if (responseBuilder_ == null) { if (!(resultCase_ == 5)) { result_ = com.google.proto4pingcap.Any.getDefaultInstance(); } responseBuilder_ = new com.google.proto4pingcap.SingleFieldBuilderV3< com.google.proto4pingcap.Any, com.google.proto4pingcap.Any.Builder, com.google.proto4pingcap.AnyOrBuilder>( (com.google.proto4pingcap.Any) result_, getParentForChildren(), isClean()); result_ = null; } resultCase_ = 5; onChanged();; return responseBuilder_; } public final Builder setUnknownFields( final com.google.proto4pingcap.UnknownFieldSet unknownFields) { return this; } public final Builder mergeUnknownFields( final com.google.proto4pingcap.UnknownFieldSet unknownFields) { return this; } // @@protoc_insertion_point(builder_scope:google.longrunning.Operation) } // @@protoc_insertion_point(class_scope:google.longrunning.Operation) private static final com.google.longrunning.Operation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.longrunning.Operation(); } public static com.google.longrunning.Operation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.proto4pingcap.Parser PARSER = new com.google.proto4pingcap.AbstractParser() { public Operation parsePartialFrom( com.google.proto4pingcap.CodedInputStream input, com.google.proto4pingcap.ExtensionRegistryLite extensionRegistry) throws com.google.proto4pingcap.InvalidProtocolBufferException { return new Operation(input, extensionRegistry); } }; public static com.google.proto4pingcap.Parser parser() { return PARSER; } @java.lang.Override public com.google.proto4pingcap.Parser getParserForType() { return PARSER; } public com.google.longrunning.Operation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy