Interface UpdateJobRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAllowMissing()
      If set to true, and if the Job does not exist, it will create a new one.
      Job getJob()
      Required.
      JobOrBuilder getJobOrBuilder()
      Required.
      boolean getValidateOnly()
      Indicates that the request should be validated and default values populated, without persisting the request or updating any resources.
      boolean hasJob()
      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

      • hasJob

        boolean hasJob()
         Required. The Job to be updated.
         
        .google.cloud.run.v2.Job job = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the job field is set.
      • getJob

        Job getJob()
         Required. The Job to be updated.
         
        .google.cloud.run.v2.Job job = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The job.
      • getJobOrBuilder

        JobOrBuilder getJobOrBuilder()
         Required. The Job to be updated.
         
        .google.cloud.run.v2.Job job = 1 [(.google.api.field_behavior) = REQUIRED];
      • getValidateOnly

        boolean getValidateOnly()
         Indicates that the request should be validated and default values
         populated, without persisting the request or updating any resources.
         
        bool validate_only = 3;
        Returns:
        The validateOnly.
      • getAllowMissing

        boolean getAllowMissing()
         If set to true, and if the Job does not exist, it will create a new
         one. Caller must have both create and update permissions for this call if
         this is set to true.
         
        bool allow_missing = 4;
        Returns:
        The allowMissing.