Show / Hide Table of Contents

Class GoogleFirestoreAdminV1ListDatabasesResponse

The list of databases for a project.

Inheritance
object
GoogleFirestoreAdminV1ListDatabasesResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Firestore.v1.Data
Assembly: Google.Apis.Firestore.v1.dll
Syntax
public class GoogleFirestoreAdminV1ListDatabasesResponse : IDirectResponseSchema

Properties

Databases

The databases in the project.

Declaration
[JsonProperty("databases")]
public virtual IList<GoogleFirestoreAdminV1Database> Databases { get; set; }
Property Value
Type Description
IList<GoogleFirestoreAdminV1Database>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Unreachable

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.

Declaration
[JsonProperty("unreachable")]
public virtual IList<string> Unreachable { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX