Interface ListDatabasesResponseOrBuilder (3.17.0)

public interface ListDatabasesResponseOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getDatabases(int index)

public abstract Database getDatabases(int index)

The databases in the project.

repeated .google.firestore.admin.v1.Database databases = 1;

Parameter
NameDescription
indexint
Returns
TypeDescription
Database

getDatabasesCount()

public abstract int getDatabasesCount()

The databases in the project.

repeated .google.firestore.admin.v1.Database databases = 1;

Returns
TypeDescription
int

getDatabasesList()

public abstract List<Database> getDatabasesList()

The databases in the project.

repeated .google.firestore.admin.v1.Database databases = 1;

Returns
TypeDescription
List<Database>

getDatabasesOrBuilder(int index)

public abstract DatabaseOrBuilder getDatabasesOrBuilder(int index)

The databases in the project.

repeated .google.firestore.admin.v1.Database databases = 1;

Parameter
NameDescription
indexint
Returns
TypeDescription
DatabaseOrBuilder

getDatabasesOrBuilderList()

public abstract List<? extends DatabaseOrBuilder> getDatabasesOrBuilderList()

The databases in the project.

repeated .google.firestore.admin.v1.Database databases = 1;

Returns
TypeDescription
List<? extends com.google.firestore.admin.v1.DatabaseOrBuilder>

getUnreachable(int index)

public abstract String getUnreachable(int index)

In the event that data about individual databases cannot be listed they will be recorded here.

An example entry might be: projects/some_project/locations/some_location This can happen if the Cloud Region that the Database resides in is currently unavailable. In this case we can't fetch all the details about the database. You may be able to get a more detailed error message (or possibly fetch the resource) by sending a 'Get' request for the resource or a 'List' request for the specific location.

repeated string unreachable = 3;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The unreachable at the given index.

getUnreachableBytes(int index)

public abstract ByteString getUnreachableBytes(int index)

In the event that data about individual databases cannot be listed they will be recorded here.

An example entry might be: projects/some_project/locations/some_location This can happen if the Cloud Region that the Database resides in is currently unavailable. In this case we can't fetch all the details about the database. You may be able to get a more detailed error message (or possibly fetch the resource) by sending a 'Get' request for the resource or a 'List' request for the specific location.

repeated string unreachable = 3;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the unreachable at the given index.

getUnreachableCount()

public abstract int getUnreachableCount()

In the event that data about individual databases cannot be listed they will be recorded here.

An example entry might be: projects/some_project/locations/some_location This can happen if the Cloud Region that the Database resides in is currently unavailable. In this case we can't fetch all the details about the database. You may be able to get a more detailed error message (or possibly fetch the resource) by sending a 'Get' request for the resource or a 'List' request for the specific location.

repeated string unreachable = 3;

Returns
TypeDescription
int

The count of unreachable.

getUnreachableList()

public abstract List<String> getUnreachableList()

In the event that data about individual databases cannot be listed they will be recorded here.

An example entry might be: projects/some_project/locations/some_location This can happen if the Cloud Region that the Database resides in is currently unavailable. In this case we can't fetch all the details about the database. You may be able to get a more detailed error message (or possibly fetch the resource) by sending a 'Get' request for the resource or a 'List' request for the specific location.

repeated string unreachable = 3;

Returns
TypeDescription
List<String>

A list containing the unreachable.