Interface OperationMetadataV1OrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getBuildId()
      The Cloud Build ID of the function created or updated by an API call.
      com.google.protobuf.ByteString getBuildIdBytes()
      The Cloud Build ID of the function created or updated by an API call.
      String getBuildName()
      The Cloud Build Name of the function deployment.
      com.google.protobuf.ByteString getBuildNameBytes()
      The Cloud Build Name of the function deployment.
      com.google.protobuf.Any getRequest()
      The original request that started the operation.
      com.google.protobuf.AnyOrBuilder getRequestOrBuilder()
      The original request that started the operation.
      String getSourceToken()
      An identifier for Firebase function sources.
      com.google.protobuf.ByteString getSourceTokenBytes()
      An identifier for Firebase function sources.
      String getTarget()
      Target of the operation - for example `projects/project-1/locations/region-1/functions/function-1`
      com.google.protobuf.ByteString getTargetBytes()
      Target of the operation - for example `projects/project-1/locations/region-1/functions/function-1`
      OperationType getType()
      Type of operation.
      int getTypeValue()
      Type of operation.
      com.google.protobuf.Timestamp getUpdateTime()
      The last update timestamp of the operation.
      com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
      The last update timestamp of the operation.
      long getVersionId()
      Version id of the function created or updated by an API call.
      boolean hasRequest()
      The original request that started the operation.
      boolean hasUpdateTime()
      The last update timestamp of the operation.
      • 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

      • getTarget

        String getTarget()
         Target of the operation - for example
         `projects/project-1/locations/region-1/functions/function-1`
         
        string target = 1;
        Returns:
        The target.
      • getTargetBytes

        com.google.protobuf.ByteString getTargetBytes()
         Target of the operation - for example
         `projects/project-1/locations/region-1/functions/function-1`
         
        string target = 1;
        Returns:
        The bytes for target.
      • getTypeValue

        int getTypeValue()
         Type of operation.
         
        .google.cloud.functions.v1.OperationType type = 2;
        Returns:
        The enum numeric value on the wire for type.
      • getType

        OperationType getType()
         Type of operation.
         
        .google.cloud.functions.v1.OperationType type = 2;
        Returns:
        The type.
      • hasRequest

        boolean hasRequest()
         The original request that started the operation.
         
        .google.protobuf.Any request = 3;
        Returns:
        Whether the request field is set.
      • getRequest

        com.google.protobuf.Any getRequest()
         The original request that started the operation.
         
        .google.protobuf.Any request = 3;
        Returns:
        The request.
      • getRequestOrBuilder

        com.google.protobuf.AnyOrBuilder getRequestOrBuilder()
         The original request that started the operation.
         
        .google.protobuf.Any request = 3;
      • getVersionId

        long getVersionId()
         Version id of the function created or updated by an API call.
         This field is only populated for Create and Update operations.
         
        int64 version_id = 4;
        Returns:
        The versionId.
      • hasUpdateTime

        boolean hasUpdateTime()
         The last update timestamp of the operation.
         
        .google.protobuf.Timestamp update_time = 5;
        Returns:
        Whether the updateTime field is set.
      • getUpdateTime

        com.google.protobuf.Timestamp getUpdateTime()
         The last update timestamp of the operation.
         
        .google.protobuf.Timestamp update_time = 5;
        Returns:
        The updateTime.
      • getUpdateTimeOrBuilder

        com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
         The last update timestamp of the operation.
         
        .google.protobuf.Timestamp update_time = 5;
      • getBuildId

        String getBuildId()
         The Cloud Build ID of the function created or updated by an API call.
         This field is only populated for Create and Update operations.
         
        string build_id = 6;
        Returns:
        The buildId.
      • getBuildIdBytes

        com.google.protobuf.ByteString getBuildIdBytes()
         The Cloud Build ID of the function created or updated by an API call.
         This field is only populated for Create and Update operations.
         
        string build_id = 6;
        Returns:
        The bytes for buildId.
      • getSourceToken

        String getSourceToken()
         An identifier for Firebase function sources. Disclaimer: This field is only
         supported for Firebase function deployments.
         
        string source_token = 7;
        Returns:
        The sourceToken.
      • getSourceTokenBytes

        com.google.protobuf.ByteString getSourceTokenBytes()
         An identifier for Firebase function sources. Disclaimer: This field is only
         supported for Firebase function deployments.
         
        string source_token = 7;
        Returns:
        The bytes for sourceToken.
      • getBuildName

        String getBuildName()
         The Cloud Build Name of the function deployment.
         This field is only populated for Create and Update operations.
         `projects/<project-number>/locations/<region>/builds/<build-id>`.
         
        string build_name = 8;
        Returns:
        The buildName.
      • getBuildNameBytes

        com.google.protobuf.ByteString getBuildNameBytes()
         The Cloud Build Name of the function deployment.
         This field is only populated for Create and Update operations.
         `projects/<project-number>/locations/<region>/builds/<build-id>`.
         
        string build_name = 8;
        Returns:
        The bytes for buildName.