Class RawDatabaseDetailsInfo
Contains detailed configuration and topology information for an Astra DB database.
public class RawDatabaseDetailsInfo
- Inheritance
-
RawDatabaseDetailsInfo
- Inherited Members
Properties
CapacityUnits
The number of capacity units allocated to the database.
[JsonPropertyName("capacityUnits")]
public int CapacityUnits { get; set; }
Property Value
CloudProvider
The cloud provider on which the database is deployed (e.g., AWS, GCP, AZURE).
[JsonPropertyName("cloudProvider")]
public string CloudProvider { get; set; }
Property Value
Datacenters
The list of datacenters associated with this database.
[JsonPropertyName("datacenters")]
public List<RawDatacenterInfo> Datacenters { get; set; }
Property Value
DbType
The database type (e.g., vector).
[JsonPropertyName("dbType")]
public string DbType { get; set; }
Property Value
Keyspace
The default keyspace for the database.
[JsonPropertyName("keyspace")]
public string Keyspace { get; set; }
Property Value
Keyspaces
All keyspaces present in the database.
[JsonPropertyName("keyspaces")]
public List<string> Keyspaces { get; set; }
Property Value
Name
The name of the database.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Region
The cloud region where the database is deployed.
[JsonPropertyName("region")]
public string Region { get; set; }
Property Value
Tier
The service tier of the database (e.g., serverless).
[JsonPropertyName("tier")]
public string Tier { get; set; }