Package com.google.cloud.dataplex.v1
Interface ListEntitiesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListEntitiesResponse
,ListEntitiesResponse.Builder
public interface ListEntitiesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Entity
getEntities(int index)
Entities in the specified parent zone.int
getEntitiesCount()
Entities in the specified parent zone.List<Entity>
getEntitiesList()
Entities in the specified parent zone.EntityOrBuilder
getEntitiesOrBuilder(int index)
Entities in the specified parent zone.List<? extends EntityOrBuilder>
getEntitiesOrBuilderList()
Entities in the specified parent zone.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no remaining results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no remaining results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntitiesList
List<Entity> getEntitiesList()
Entities in the specified parent zone.
repeated .google.cloud.dataplex.v1.Entity entities = 1;
-
getEntities
Entity getEntities(int index)
Entities in the specified parent zone.
repeated .google.cloud.dataplex.v1.Entity entities = 1;
-
getEntitiesCount
int getEntitiesCount()
Entities in the specified parent zone.
repeated .google.cloud.dataplex.v1.Entity entities = 1;
-
getEntitiesOrBuilderList
List<? extends EntityOrBuilder> getEntitiesOrBuilderList()
Entities in the specified parent zone.
repeated .google.cloud.dataplex.v1.Entity entities = 1;
-
getEntitiesOrBuilder
EntityOrBuilder getEntitiesOrBuilder(int index)
Entities in the specified parent zone.
repeated .google.cloud.dataplex.v1.Entity entities = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no remaining 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 remaining results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-