Package com.google.cloud.clouddms.v1
Interface DescribeDatabaseEntitiesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DescribeDatabaseEntitiesResponse
,DescribeDatabaseEntitiesResponse.Builder
public interface DescribeDatabaseEntitiesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabaseEntity
getDatabaseEntities(int index)
The list of database entities for the conversion workspace.int
getDatabaseEntitiesCount()
The list of database entities for the conversion workspace.List<DatabaseEntity>
getDatabaseEntitiesList()
The list of database entities for the conversion workspace.DatabaseEntityOrBuilder
getDatabaseEntitiesOrBuilder(int index)
The list of database entities for the conversion workspace.List<? extends DatabaseEntityOrBuilder>
getDatabaseEntitiesOrBuilderList()
The list of database entities for the conversion workspace.String
getNextPageToken()
A token which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token which can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDatabaseEntitiesList
List<DatabaseEntity> getDatabaseEntitiesList()
The list of database entities for the conversion workspace.
repeated .google.cloud.clouddms.v1.DatabaseEntity database_entities = 1;
-
getDatabaseEntities
DatabaseEntity getDatabaseEntities(int index)
The list of database entities for the conversion workspace.
repeated .google.cloud.clouddms.v1.DatabaseEntity database_entities = 1;
-
getDatabaseEntitiesCount
int getDatabaseEntitiesCount()
The list of database entities for the conversion workspace.
repeated .google.cloud.clouddms.v1.DatabaseEntity database_entities = 1;
-
getDatabaseEntitiesOrBuilderList
List<? extends DatabaseEntityOrBuilder> getDatabaseEntitiesOrBuilderList()
The list of database entities for the conversion workspace.
repeated .google.cloud.clouddms.v1.DatabaseEntity database_entities = 1;
-
getDatabaseEntitiesOrBuilder
DatabaseEntityOrBuilder getDatabaseEntitiesOrBuilder(int index)
The list of database entities for the conversion workspace.
repeated .google.cloud.clouddms.v1.DatabaseEntity database_entities = 1;
-
getNextPageToken
String getNextPageToken()
A token which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-