Package com.google.cloud.dataplex.v1
Interface ListTasksResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTasksResponse
,ListTasksResponse.Builder
public interface ListTasksResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.Task
getTasks(int index)
Tasks under the given parent lake.int
getTasksCount()
Tasks under the given parent lake.List<Task>
getTasksList()
Tasks under the given parent lake.TaskOrBuilder
getTasksOrBuilder(int index)
Tasks under the given parent lake.List<? extends TaskOrBuilder>
getTasksOrBuilderList()
Tasks under the given parent lake.String
getUnreachableLocations(int index)
Locations that could not be reached.com.google.protobuf.ByteString
getUnreachableLocationsBytes(int index)
Locations that could not be reached.int
getUnreachableLocationsCount()
Locations that could not be reached.List<String>
getUnreachableLocationsList()
Locations that could not be reached.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTasksList
List<Task> getTasksList()
Tasks under the given parent lake.
repeated .google.cloud.dataplex.v1.Task tasks = 1;
-
getTasks
Task getTasks(int index)
Tasks under the given parent lake.
repeated .google.cloud.dataplex.v1.Task tasks = 1;
-
getTasksCount
int getTasksCount()
Tasks under the given parent lake.
repeated .google.cloud.dataplex.v1.Task tasks = 1;
-
getTasksOrBuilderList
List<? extends TaskOrBuilder> getTasksOrBuilderList()
Tasks under the given parent lake.
repeated .google.cloud.dataplex.v1.Task tasks = 1;
-
getTasksOrBuilder
TaskOrBuilder getTasksOrBuilder(int index)
Tasks under the given parent lake.
repeated .google.cloud.dataplex.v1.Task tasks = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableLocationsList
List<String> getUnreachableLocationsList()
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Returns:
- A list containing the unreachableLocations.
-
getUnreachableLocationsCount
int getUnreachableLocationsCount()
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Returns:
- The count of unreachableLocations.
-
getUnreachableLocations
String getUnreachableLocations(int index)
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachableLocations at the given index.
-
getUnreachableLocationsBytes
com.google.protobuf.ByteString getUnreachableLocationsBytes(int index)
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachableLocations at the given index.
-
-