Interface CreatePipelineJobRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getParent()
      Required.
      com.google.protobuf.ByteString getParentBytes()
      Required.
      PipelineJob getPipelineJob()
      Required.
      String getPipelineJobId()
      The ID to use for the PipelineJob, which will become the final component of the PipelineJob name.
      com.google.protobuf.ByteString getPipelineJobIdBytes()
      The ID to use for the PipelineJob, which will become the final component of the PipelineJob name.
      PipelineJobOrBuilder getPipelineJobOrBuilder()
      Required.
      boolean hasPipelineJob()
      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

      • getParent

        String getParent()
         Required. The resource name of the Location to create the PipelineJob in.
         Format: `projects/{project}/locations/{location}`
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The parent.
      • getParentBytes

        com.google.protobuf.ByteString getParentBytes()
         Required. The resource name of the Location to create the PipelineJob in.
         Format: `projects/{project}/locations/{location}`
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The bytes for parent.
      • hasPipelineJob

        boolean hasPipelineJob()
         Required. The PipelineJob to create.
         
        .google.cloud.aiplatform.v1.PipelineJob pipeline_job = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the pipelineJob field is set.
      • getPipelineJob

        PipelineJob getPipelineJob()
         Required. The PipelineJob to create.
         
        .google.cloud.aiplatform.v1.PipelineJob pipeline_job = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The pipelineJob.
      • getPipelineJobOrBuilder

        PipelineJobOrBuilder getPipelineJobOrBuilder()
         Required. The PipelineJob to create.
         
        .google.cloud.aiplatform.v1.PipelineJob pipeline_job = 2 [(.google.api.field_behavior) = REQUIRED];
      • getPipelineJobId

        String getPipelineJobId()
         The ID to use for the PipelineJob, which will become the final component of
         the PipelineJob name. If not provided, an ID will be automatically
         generated.
        
         This value should be less than 128 characters, and valid characters
         are /[a-z][0-9]-/.
         
        string pipeline_job_id = 3;
        Returns:
        The pipelineJobId.
      • getPipelineJobIdBytes

        com.google.protobuf.ByteString getPipelineJobIdBytes()
         The ID to use for the PipelineJob, which will become the final component of
         the PipelineJob name. If not provided, an ID will be automatically
         generated.
        
         This value should be less than 128 characters, and valid characters
         are /[a-z][0-9]-/.
         
        string pipeline_job_id = 3;
        Returns:
        The bytes for pipelineJobId.