Interface DeleteJobRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getLegacyAppEngineCron()
      This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API.
      String getName()
      Required.
      com.google.protobuf.ByteString getNameBytes()
      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

      • getName

        String getName()
         Required. The job name. For example:
         `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
         
        string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Required. The job name. For example:
         `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
         
        string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The bytes for name.
      • getLegacyAppEngineCron

        boolean getLegacyAppEngineCron()
         This field is used to manage the legacy App Engine Cron jobs using the
         Cloud Scheduler API. If the field is set to true, the job in the __cron
         queue with the corresponding name will be deleted instead.
         
        bool legacy_app_engine_cron = 2;
        Returns:
        The legacyAppEngineCron.