Class PipelineTaskDetail.Builder

java.lang.Object
com.google.protobuf.AbstractMessageLite.Builder
com.google.protobuf.AbstractMessage.Builder<BuilderT>
com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
com.google.cloud.aiplatform.v1.PipelineTaskDetail.Builder
All Implemented Interfaces:
PipelineTaskDetailOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
Enclosing class:
PipelineTaskDetail

public static final class PipelineTaskDetail.Builder extends com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder> implements PipelineTaskDetailOrBuilder
 The runtime detail of a task execution.
 
Protobuf type google.cloud.aiplatform.v1.PipelineTaskDetail
  • Method Details

    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetMapFieldReflection

      protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldReflection(int number)
      Overrides:
      internalGetMapFieldReflection in class com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
    • internalGetMutableMapFieldReflection

      protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection(int number)
      Overrides:
      internalGetMutableMapFieldReflection in class com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
    • clear

      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      clear in class com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
    • getDescriptorForType

      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
    • getDefaultInstanceForType

      public PipelineTaskDetail getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
    • build

      public PipelineTaskDetail build()
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
    • buildPartial

      public PipelineTaskDetail buildPartial()
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
    • mergeFrom

      public PipelineTaskDetail.Builder mergeFrom(com.google.protobuf.Message other)
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<PipelineTaskDetail.Builder>
    • mergeFrom

    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessage.Builder<PipelineTaskDetail.Builder>
    • mergeFrom

      public PipelineTaskDetail.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<PipelineTaskDetail.Builder>
      Throws:
      IOException
    • getTaskId

      public long getTaskId()
       Output only. The system generated ID of the task.
       
      int64 task_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getTaskId in interface PipelineTaskDetailOrBuilder
      Returns:
      The taskId.
    • setTaskId

      public PipelineTaskDetail.Builder setTaskId(long value)
       Output only. The system generated ID of the task.
       
      int64 task_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The taskId to set.
      Returns:
      This builder for chaining.
    • clearTaskId

      public PipelineTaskDetail.Builder clearTaskId()
       Output only. The system generated ID of the task.
       
      int64 task_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      This builder for chaining.
    • getParentTaskId

      public long getParentTaskId()
       Output only. The id of the parent task if the task is within a component
       scope. Empty if the task is at the root level.
       
      int64 parent_task_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getParentTaskId in interface PipelineTaskDetailOrBuilder
      Returns:
      The parentTaskId.
    • setParentTaskId

      public PipelineTaskDetail.Builder setParentTaskId(long value)
       Output only. The id of the parent task if the task is within a component
       scope. Empty if the task is at the root level.
       
      int64 parent_task_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The parentTaskId to set.
      Returns:
      This builder for chaining.
    • clearParentTaskId

      public PipelineTaskDetail.Builder clearParentTaskId()
       Output only. The id of the parent task if the task is within a component
       scope. Empty if the task is at the root level.
       
      int64 parent_task_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      This builder for chaining.
    • getTaskName

      public String getTaskName()
       Output only. The user specified name of the task that is defined in
       [pipeline_spec][google.cloud.aiplatform.v1.PipelineJob.pipeline_spec].
       
      string task_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getTaskName in interface PipelineTaskDetailOrBuilder
      Returns:
      The taskName.
    • getTaskNameBytes

      public com.google.protobuf.ByteString getTaskNameBytes()
       Output only. The user specified name of the task that is defined in
       [pipeline_spec][google.cloud.aiplatform.v1.PipelineJob.pipeline_spec].
       
      string task_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getTaskNameBytes in interface PipelineTaskDetailOrBuilder
      Returns:
      The bytes for taskName.
    • setTaskName

      public PipelineTaskDetail.Builder setTaskName(String value)
       Output only. The user specified name of the task that is defined in
       [pipeline_spec][google.cloud.aiplatform.v1.PipelineJob.pipeline_spec].
       
      string task_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The taskName to set.
      Returns:
      This builder for chaining.
    • clearTaskName

      public PipelineTaskDetail.Builder clearTaskName()
       Output only. The user specified name of the task that is defined in
       [pipeline_spec][google.cloud.aiplatform.v1.PipelineJob.pipeline_spec].
       
      string task_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      This builder for chaining.
    • setTaskNameBytes

      public PipelineTaskDetail.Builder setTaskNameBytes(com.google.protobuf.ByteString value)
       Output only. The user specified name of the task that is defined in
       [pipeline_spec][google.cloud.aiplatform.v1.PipelineJob.pipeline_spec].
       
      string task_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The bytes for taskName to set.
      Returns:
      This builder for chaining.
    • hasCreateTime

      public boolean hasCreateTime()
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      hasCreateTime in interface PipelineTaskDetailOrBuilder
      Returns:
      Whether the createTime field is set.
    • getCreateTime

      public com.google.protobuf.Timestamp getCreateTime()
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getCreateTime in interface PipelineTaskDetailOrBuilder
      Returns:
      The createTime.
    • setCreateTime

      public PipelineTaskDetail.Builder setCreateTime(com.google.protobuf.Timestamp value)
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setCreateTime

      public PipelineTaskDetail.Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForValue)
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • mergeCreateTime

      public PipelineTaskDetail.Builder mergeCreateTime(com.google.protobuf.Timestamp value)
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearCreateTime

      public PipelineTaskDetail.Builder clearCreateTime()
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getCreateTimeBuilder

      public com.google.protobuf.Timestamp.Builder getCreateTimeBuilder()
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getCreateTimeOrBuilder

      public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
       Output only. Task create time.
       
      .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getCreateTimeOrBuilder in interface PipelineTaskDetailOrBuilder
    • hasStartTime

      public boolean hasStartTime()
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      hasStartTime in interface PipelineTaskDetailOrBuilder
      Returns:
      Whether the startTime field is set.
    • getStartTime

      public com.google.protobuf.Timestamp getStartTime()
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getStartTime in interface PipelineTaskDetailOrBuilder
      Returns:
      The startTime.
    • setStartTime

      public PipelineTaskDetail.Builder setStartTime(com.google.protobuf.Timestamp value)
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setStartTime

      public PipelineTaskDetail.Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValue)
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • mergeStartTime

      public PipelineTaskDetail.Builder mergeStartTime(com.google.protobuf.Timestamp value)
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearStartTime

      public PipelineTaskDetail.Builder clearStartTime()
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getStartTimeBuilder

      public com.google.protobuf.Timestamp.Builder getStartTimeBuilder()
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getStartTimeOrBuilder

      public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
       Output only. Task start time.
       
      .google.protobuf.Timestamp start_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getStartTimeOrBuilder in interface PipelineTaskDetailOrBuilder
    • hasEndTime

      public boolean hasEndTime()
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      hasEndTime in interface PipelineTaskDetailOrBuilder
      Returns:
      Whether the endTime field is set.
    • getEndTime

      public com.google.protobuf.Timestamp getEndTime()
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getEndTime in interface PipelineTaskDetailOrBuilder
      Returns:
      The endTime.
    • setEndTime

      public PipelineTaskDetail.Builder setEndTime(com.google.protobuf.Timestamp value)
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setEndTime

      public PipelineTaskDetail.Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue)
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • mergeEndTime

      public PipelineTaskDetail.Builder mergeEndTime(com.google.protobuf.Timestamp value)
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearEndTime

      public PipelineTaskDetail.Builder clearEndTime()
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getEndTimeBuilder

      public com.google.protobuf.Timestamp.Builder getEndTimeBuilder()
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getEndTimeOrBuilder

      public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
       Output only. Task end time.
       
      .google.protobuf.Timestamp end_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getEndTimeOrBuilder in interface PipelineTaskDetailOrBuilder
    • hasExecutorDetail

      public boolean hasExecutorDetail()
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      hasExecutorDetail in interface PipelineTaskDetailOrBuilder
      Returns:
      Whether the executorDetail field is set.
    • getExecutorDetail

      public PipelineTaskExecutorDetail getExecutorDetail()
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getExecutorDetail in interface PipelineTaskDetailOrBuilder
      Returns:
      The executorDetail.
    • setExecutorDetail

      public PipelineTaskDetail.Builder setExecutorDetail(PipelineTaskExecutorDetail value)
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setExecutorDetail

      public PipelineTaskDetail.Builder setExecutorDetail(PipelineTaskExecutorDetail.Builder builderForValue)
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • mergeExecutorDetail

      public PipelineTaskDetail.Builder mergeExecutorDetail(PipelineTaskExecutorDetail value)
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearExecutorDetail

      public PipelineTaskDetail.Builder clearExecutorDetail()
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getExecutorDetailBuilder

      public PipelineTaskExecutorDetail.Builder getExecutorDetailBuilder()
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getExecutorDetailOrBuilder

      public PipelineTaskExecutorDetailOrBuilder getExecutorDetailOrBuilder()
       Output only. The detailed execution info.
       
      .google.cloud.aiplatform.v1.PipelineTaskExecutorDetail executor_detail = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getExecutorDetailOrBuilder in interface PipelineTaskDetailOrBuilder
    • getStateValue

      public int getStateValue()
       Output only. State of the task.
       
      .google.cloud.aiplatform.v1.PipelineTaskDetail.State state = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getStateValue in interface PipelineTaskDetailOrBuilder
      Returns:
      The enum numeric value on the wire for state.
    • setStateValue

      public PipelineTaskDetail.Builder setStateValue(int value)
       Output only. State of the task.
       
      .google.cloud.aiplatform.v1.PipelineTaskDetail.State state = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The enum numeric value on the wire for state to set.
      Returns:
      This builder for chaining.
    • getState

      public PipelineTaskDetail.State getState()
       Output only. State of the task.
       
      .google.cloud.aiplatform.v1.PipelineTaskDetail.State state = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getState in interface PipelineTaskDetailOrBuilder
      Returns:
      The state.
    • setState

       Output only. State of the task.
       
      .google.cloud.aiplatform.v1.PipelineTaskDetail.State state = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The state to set.
      Returns:
      This builder for chaining.
    • clearState

      public PipelineTaskDetail.Builder clearState()
       Output only. State of the task.
       
      .google.cloud.aiplatform.v1.PipelineTaskDetail.State state = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      This builder for chaining.
    • hasExecution

      public boolean hasExecution()
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      hasExecution in interface PipelineTaskDetailOrBuilder
      Returns:
      Whether the execution field is set.
    • getExecution

      public Execution getExecution()
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getExecution in interface PipelineTaskDetailOrBuilder
      Returns:
      The execution.
    • setExecution

      public PipelineTaskDetail.Builder setExecution(Execution value)
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setExecution

      public PipelineTaskDetail.Builder setExecution(Execution.Builder builderForValue)
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • mergeExecution

      public PipelineTaskDetail.Builder mergeExecution(Execution value)
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearExecution

      public PipelineTaskDetail.Builder clearExecution()
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getExecutionBuilder

      public Execution.Builder getExecutionBuilder()
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getExecutionOrBuilder

      public ExecutionOrBuilder getExecutionOrBuilder()
       Output only. The execution metadata of the task.
       
      .google.cloud.aiplatform.v1.Execution execution = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getExecutionOrBuilder in interface PipelineTaskDetailOrBuilder
    • hasError

      public boolean hasError()
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      hasError in interface PipelineTaskDetailOrBuilder
      Returns:
      Whether the error field is set.
    • getError

      public Status getError()
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getError in interface PipelineTaskDetailOrBuilder
      Returns:
      The error.
    • setError

      public PipelineTaskDetail.Builder setError(Status value)
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setError

      public PipelineTaskDetail.Builder setError(Status.Builder builderForValue)
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • mergeError

      public PipelineTaskDetail.Builder mergeError(Status value)
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearError

      public PipelineTaskDetail.Builder clearError()
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getErrorBuilder

      public Status.Builder getErrorBuilder()
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getErrorOrBuilder

      public StatusOrBuilder getErrorOrBuilder()
       Output only. The error that occurred during task execution.
       Only populated when the task's state is FAILED or CANCELLED.
       
      .google.rpc.Status error = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getErrorOrBuilder in interface PipelineTaskDetailOrBuilder
    • getPipelineTaskStatusList

      public List<PipelineTaskDetail.PipelineTaskStatus> getPipelineTaskStatusList()
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getPipelineTaskStatusList in interface PipelineTaskDetailOrBuilder
    • getPipelineTaskStatusCount

      public int getPipelineTaskStatusCount()
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getPipelineTaskStatusCount in interface PipelineTaskDetailOrBuilder
    • getPipelineTaskStatus

      public PipelineTaskDetail.PipelineTaskStatus getPipelineTaskStatus(int index)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getPipelineTaskStatus in interface PipelineTaskDetailOrBuilder
    • setPipelineTaskStatus

      public PipelineTaskDetail.Builder setPipelineTaskStatus(int index, PipelineTaskDetail.PipelineTaskStatus value)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • setPipelineTaskStatus

      public PipelineTaskDetail.Builder setPipelineTaskStatus(int index, PipelineTaskDetail.PipelineTaskStatus.Builder builderForValue)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addPipelineTaskStatus

       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addPipelineTaskStatus

      public PipelineTaskDetail.Builder addPipelineTaskStatus(int index, PipelineTaskDetail.PipelineTaskStatus value)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addPipelineTaskStatus

      public PipelineTaskDetail.Builder addPipelineTaskStatus(PipelineTaskDetail.PipelineTaskStatus.Builder builderForValue)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addPipelineTaskStatus

      public PipelineTaskDetail.Builder addPipelineTaskStatus(int index, PipelineTaskDetail.PipelineTaskStatus.Builder builderForValue)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addAllPipelineTaskStatus

      public PipelineTaskDetail.Builder addAllPipelineTaskStatus(Iterable<? extends PipelineTaskDetail.PipelineTaskStatus> values)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • clearPipelineTaskStatus

      public PipelineTaskDetail.Builder clearPipelineTaskStatus()
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • removePipelineTaskStatus

      public PipelineTaskDetail.Builder removePipelineTaskStatus(int index)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getPipelineTaskStatusBuilder

      public PipelineTaskDetail.PipelineTaskStatus.Builder getPipelineTaskStatusBuilder(int index)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getPipelineTaskStatusOrBuilder

      public PipelineTaskDetail.PipelineTaskStatusOrBuilder getPipelineTaskStatusOrBuilder(int index)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getPipelineTaskStatusOrBuilder in interface PipelineTaskDetailOrBuilder
    • getPipelineTaskStatusOrBuilderList

      public List<? extends PipelineTaskDetail.PipelineTaskStatusOrBuilder> getPipelineTaskStatusOrBuilderList()
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getPipelineTaskStatusOrBuilderList in interface PipelineTaskDetailOrBuilder
    • addPipelineTaskStatusBuilder

      public PipelineTaskDetail.PipelineTaskStatus.Builder addPipelineTaskStatusBuilder()
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • addPipelineTaskStatusBuilder

      public PipelineTaskDetail.PipelineTaskStatus.Builder addPipelineTaskStatusBuilder(int index)
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getPipelineTaskStatusBuilderList

      public List<PipelineTaskDetail.PipelineTaskStatus.Builder> getPipelineTaskStatusBuilderList()
       Output only. A list of task status. This field keeps a record of task
       status evolving over time.
       
      repeated .google.cloud.aiplatform.v1.PipelineTaskDetail.PipelineTaskStatus pipeline_task_status = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getInputsCount

      public int getInputsCount()
      Description copied from interface: PipelineTaskDetailOrBuilder
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getInputsCount in interface PipelineTaskDetailOrBuilder
    • containsInputs

      public boolean containsInputs(String key)
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      containsInputs in interface PipelineTaskDetailOrBuilder
    • getInputs

      Deprecated.
      Use getInputsMap() instead.
      Specified by:
      getInputs in interface PipelineTaskDetailOrBuilder
    • getInputsMap

      public Map<String,PipelineTaskDetail.ArtifactList> getInputsMap()
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getInputsMap in interface PipelineTaskDetailOrBuilder
    • getInputsOrDefault

      public PipelineTaskDetail.ArtifactList getInputsOrDefault(String key, PipelineTaskDetail.ArtifactList defaultValue)
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getInputsOrDefault in interface PipelineTaskDetailOrBuilder
    • getInputsOrThrow

      public PipelineTaskDetail.ArtifactList getInputsOrThrow(String key)
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getInputsOrThrow in interface PipelineTaskDetailOrBuilder
    • clearInputs

      public PipelineTaskDetail.Builder clearInputs()
    • removeInputs

      public PipelineTaskDetail.Builder removeInputs(String key)
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getMutableInputs

      Deprecated.
      Use alternate mutation accessors instead.
    • putInputs

       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • putAllInputs

       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • putInputsBuilderIfAbsent

      public PipelineTaskDetail.ArtifactList.Builder putInputsBuilderIfAbsent(String key)
       Output only. The runtime input artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> inputs = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getOutputsCount

      public int getOutputsCount()
      Description copied from interface: PipelineTaskDetailOrBuilder
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getOutputsCount in interface PipelineTaskDetailOrBuilder
    • containsOutputs

      public boolean containsOutputs(String key)
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      containsOutputs in interface PipelineTaskDetailOrBuilder
    • getOutputs

      Deprecated.
      Use getOutputsMap() instead.
      Specified by:
      getOutputs in interface PipelineTaskDetailOrBuilder
    • getOutputsMap

      public Map<String,PipelineTaskDetail.ArtifactList> getOutputsMap()
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getOutputsMap in interface PipelineTaskDetailOrBuilder
    • getOutputsOrDefault

      public PipelineTaskDetail.ArtifactList getOutputsOrDefault(String key, PipelineTaskDetail.ArtifactList defaultValue)
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getOutputsOrDefault in interface PipelineTaskDetailOrBuilder
    • getOutputsOrThrow

      public PipelineTaskDetail.ArtifactList getOutputsOrThrow(String key)
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getOutputsOrThrow in interface PipelineTaskDetailOrBuilder
    • clearOutputs

      public PipelineTaskDetail.Builder clearOutputs()
    • removeOutputs

      public PipelineTaskDetail.Builder removeOutputs(String key)
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getMutableOutputs

      Deprecated.
      Use alternate mutation accessors instead.
    • putOutputs

       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • putAllOutputs

       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • putOutputsBuilderIfAbsent

      public PipelineTaskDetail.ArtifactList.Builder putOutputsBuilderIfAbsent(String key)
       Output only. The runtime output artifacts of the task.
       
      map<string, .google.cloud.aiplatform.v1.PipelineTaskDetail.ArtifactList> outputs = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getTaskUniqueName

      public String getTaskUniqueName()
       Output only. The unique name of a task.
       This field is used by rerun pipeline job.
       Console UI and Vertex AI SDK will support triggering pipeline job reruns.
       The name is constructed by concatenating all the parent tasks name with
       the task name. For example, if a task named "child_task" has a parent task
       named "parent_task_1" and parent task 1 has a parent task named
       "parent_task_2", the task unique name will be
       "parent_task_2.parent_task_1.child_task".
       
      string task_unique_name = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getTaskUniqueName in interface PipelineTaskDetailOrBuilder
      Returns:
      The taskUniqueName.
    • getTaskUniqueNameBytes

      public com.google.protobuf.ByteString getTaskUniqueNameBytes()
       Output only. The unique name of a task.
       This field is used by rerun pipeline job.
       Console UI and Vertex AI SDK will support triggering pipeline job reruns.
       The name is constructed by concatenating all the parent tasks name with
       the task name. For example, if a task named "child_task" has a parent task
       named "parent_task_1" and parent task 1 has a parent task named
       "parent_task_2", the task unique name will be
       "parent_task_2.parent_task_1.child_task".
       
      string task_unique_name = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Specified by:
      getTaskUniqueNameBytes in interface PipelineTaskDetailOrBuilder
      Returns:
      The bytes for taskUniqueName.
    • setTaskUniqueName

      public PipelineTaskDetail.Builder setTaskUniqueName(String value)
       Output only. The unique name of a task.
       This field is used by rerun pipeline job.
       Console UI and Vertex AI SDK will support triggering pipeline job reruns.
       The name is constructed by concatenating all the parent tasks name with
       the task name. For example, if a task named "child_task" has a parent task
       named "parent_task_1" and parent task 1 has a parent task named
       "parent_task_2", the task unique name will be
       "parent_task_2.parent_task_1.child_task".
       
      string task_unique_name = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The taskUniqueName to set.
      Returns:
      This builder for chaining.
    • clearTaskUniqueName

      public PipelineTaskDetail.Builder clearTaskUniqueName()
       Output only. The unique name of a task.
       This field is used by rerun pipeline job.
       Console UI and Vertex AI SDK will support triggering pipeline job reruns.
       The name is constructed by concatenating all the parent tasks name with
       the task name. For example, if a task named "child_task" has a parent task
       named "parent_task_1" and parent task 1 has a parent task named
       "parent_task_2", the task unique name will be
       "parent_task_2.parent_task_1.child_task".
       
      string task_unique_name = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      This builder for chaining.
    • setTaskUniqueNameBytes

      public PipelineTaskDetail.Builder setTaskUniqueNameBytes(com.google.protobuf.ByteString value)
       Output only. The unique name of a task.
       This field is used by rerun pipeline job.
       Console UI and Vertex AI SDK will support triggering pipeline job reruns.
       The name is constructed by concatenating all the parent tasks name with
       the task name. For example, if a task named "child_task" has a parent task
       named "parent_task_1" and parent task 1 has a parent task named
       "parent_task_2", the task unique name will be
       "parent_task_2.parent_task_1.child_task".
       
      string task_unique_name = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Parameters:
      value - The bytes for taskUniqueName to set.
      Returns:
      This builder for chaining.