Interface PatchJobs.GcsObjectOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    PatchJobs.GcsObject, PatchJobs.GcsObject.Builder
    Enclosing class:
    PatchJobs

    public static interface PatchJobs.GcsObjectOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getBucket()
      Required.
      com.google.protobuf.ByteString getBucketBytes()
      Required.
      long getGenerationNumber()
      Required.
      String getObject()
      Required.
      com.google.protobuf.ByteString getObjectBytes()
      Required.
      • 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

      • getBucket

        String getBucket()
         Required. Bucket of the Google Cloud Storage object.
         
        string bucket = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bucket.
      • getBucketBytes

        com.google.protobuf.ByteString getBucketBytes()
         Required. Bucket of the Google Cloud Storage object.
         
        string bucket = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for bucket.
      • getObject

        String getObject()
         Required. Name of the Google Cloud Storage object.
         
        string object = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The object.
      • getObjectBytes

        com.google.protobuf.ByteString getObjectBytes()
         Required. Name of the Google Cloud Storage object.
         
        string object = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for object.
      • getGenerationNumber

        long getGenerationNumber()
         Required. Generation number of the Google Cloud Storage object. This is used to
         ensure that the ExecStep specified by this PatchJob does not change.
         
        int64 generation_number = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The generationNumber.