Interface ClusterOperationOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ClusterOperation, ClusterOperation.Builder

    public interface ClusterOperationOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getDone()
      Output only.
      String getError()
      Output only.
      com.google.protobuf.ByteString getErrorBytes()
      Output only.
      String getOperationId()
      Output only.
      com.google.protobuf.ByteString getOperationIdBytes()
      Output only.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getOperationId

        String getOperationId()
         Output only. The id of the cluster operation.
         
        string operation_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The operationId.
      • getOperationIdBytes

        com.google.protobuf.ByteString getOperationIdBytes()
         Output only. The id of the cluster operation.
         
        string operation_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The bytes for operationId.
      • getError

        String getError()
         Output only. Error, if operation failed.
         
        string error = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The error.
      • getErrorBytes

        com.google.protobuf.ByteString getErrorBytes()
         Output only. Error, if operation failed.
         
        string error = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The bytes for error.
      • getDone

        boolean getDone()
         Output only. Indicates the operation is done.
         
        bool done = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The done.