Package com.google.cloud.aiplatform.v1
Interface ListSchedulesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSchedulesResponse
,ListSchedulesResponse.Builder
public interface ListSchedulesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve the next page of results.Schedule
getSchedules(int index)
List of Schedules in the requested page.int
getSchedulesCount()
List of Schedules in the requested page.List<Schedule>
getSchedulesList()
List of Schedules in the requested page.ScheduleOrBuilder
getSchedulesOrBuilder(int index)
List of Schedules in the requested page.List<? extends ScheduleOrBuilder>
getSchedulesOrBuilderList()
List of Schedules in the requested page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSchedulesList
List<Schedule> getSchedulesList()
List of Schedules in the requested page.
repeated .google.cloud.aiplatform.v1.Schedule schedules = 1;
-
getSchedules
Schedule getSchedules(int index)
List of Schedules in the requested page.
repeated .google.cloud.aiplatform.v1.Schedule schedules = 1;
-
getSchedulesCount
int getSchedulesCount()
List of Schedules in the requested page.
repeated .google.cloud.aiplatform.v1.Schedule schedules = 1;
-
getSchedulesOrBuilderList
List<? extends ScheduleOrBuilder> getSchedulesOrBuilderList()
List of Schedules in the requested page.
repeated .google.cloud.aiplatform.v1.Schedule schedules = 1;
-
getSchedulesOrBuilder
ScheduleOrBuilder getSchedulesOrBuilder(int index)
List of Schedules in the requested page.
repeated .google.cloud.aiplatform.v1.Schedule schedules = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListSchedulesRequest.page_token][google.cloud.aiplatform.v1.ListSchedulesRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results. Pass to [ListSchedulesRequest.page_token][google.cloud.aiplatform.v1.ListSchedulesRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-