Package com.google.cloud.aiplatform.v1
Interface SuggestTrialsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SuggestTrialsResponse,SuggestTrialsResponse.Builder
public interface SuggestTrialsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetEndTime()The time at which operation processing completed.com.google.protobuf.TimestampOrBuildergetEndTimeOrBuilder()The time at which operation processing completed.com.google.protobuf.TimestampgetStartTime()The time at which the operation was started.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()The time at which the operation was started.Study.StategetStudyState()The state of the Study.intgetStudyStateValue()The state of the Study.TrialgetTrials(int index)A list of Trials.intgetTrialsCount()A list of Trials.List<Trial>getTrialsList()A list of Trials.TrialOrBuildergetTrialsOrBuilder(int index)A list of Trials.List<? extends TrialOrBuilder>getTrialsOrBuilderList()A list of Trials.booleanhasEndTime()The time at which operation processing completed.booleanhasStartTime()The time at which the operation was started.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTrialsList
List<Trial> getTrialsList()
A list of Trials.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrials
Trial getTrials(int index)
A list of Trials.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrialsCount
int getTrialsCount()
A list of Trials.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrialsOrBuilderList
List<? extends TrialOrBuilder> getTrialsOrBuilderList()
A list of Trials.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrialsOrBuilder
TrialOrBuilder getTrialsOrBuilder(int index)
A list of Trials.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getStudyStateValue
int getStudyStateValue()
The state of the Study.
.google.cloud.aiplatform.v1.Study.State study_state = 2;- Returns:
- The enum numeric value on the wire for studyState.
-
getStudyState
Study.State getStudyState()
The state of the Study.
.google.cloud.aiplatform.v1.Study.State study_state = 2;- Returns:
- The studyState.
-
hasStartTime
boolean hasStartTime()
The time at which the operation was started.
.google.protobuf.Timestamp start_time = 3;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
The time at which the operation was started.
.google.protobuf.Timestamp start_time = 3;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
The time at which the operation was started.
.google.protobuf.Timestamp start_time = 3;
-
hasEndTime
boolean hasEndTime()
The time at which operation processing completed.
.google.protobuf.Timestamp end_time = 4;- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
The time at which operation processing completed.
.google.protobuf.Timestamp end_time = 4;- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
The time at which operation processing completed.
.google.protobuf.Timestamp end_time = 4;
-
-