Package com.google.cloud.aiplatform.v1
Interface PipelineTaskExecutorDetail.CustomJobDetailOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PipelineTaskExecutorDetail.CustomJobDetail
,PipelineTaskExecutorDetail.CustomJobDetail.Builder
- Enclosing class:
- PipelineTaskExecutorDetail
public static interface PipelineTaskExecutorDetail.CustomJobDetailOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFailedJobs(int index)
Output only.com.google.protobuf.ByteString
getFailedJobsBytes(int index)
Output only.int
getFailedJobsCount()
Output only.List<String>
getFailedJobsList()
Output only.String
getJob()
Output only.com.google.protobuf.ByteString
getJobBytes()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getJob
String getJob()
Output only. The name of the [CustomJob][google.cloud.aiplatform.v1.CustomJob].
string job = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
- Returns:
- The job.
-
getJobBytes
com.google.protobuf.ByteString getJobBytes()
Output only. The name of the [CustomJob][google.cloud.aiplatform.v1.CustomJob].
string job = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for job.
-
getFailedJobsList
List<String> getFailedJobsList()
Output only. The names of the previously failed [CustomJob][google.cloud.aiplatform.v1.CustomJob]. The list includes the all attempts in chronological order.
repeated string failed_jobs = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the failedJobs.
-
getFailedJobsCount
int getFailedJobsCount()
Output only. The names of the previously failed [CustomJob][google.cloud.aiplatform.v1.CustomJob]. The list includes the all attempts in chronological order.
repeated string failed_jobs = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of failedJobs.
-
getFailedJobs
String getFailedJobs(int index)
Output only. The names of the previously failed [CustomJob][google.cloud.aiplatform.v1.CustomJob]. The list includes the all attempts in chronological order.
repeated string failed_jobs = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The failedJobs at the given index.
-
getFailedJobsBytes
com.google.protobuf.ByteString getFailedJobsBytes(int index)
Output only. The names of the previously failed [CustomJob][google.cloud.aiplatform.v1.CustomJob]. The list includes the all attempts in chronological order.
repeated string failed_jobs = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the failedJobs at the given index.
-
-