Class CreateDatabaseOptions
Options to use when creating a new database.
public class CreateDatabaseOptions : BlockingCommandOptions
- Inheritance
-
CreateDatabaseOptions
- Inherited Members
Properties
CapacityUnits
Capacity units for the database (defaults to 1).
public int CapacityUnits { get; set; }
Property Value
CloudProvider
Which cloud provider should host the database?
public CloudProviderType? CloudProvider { get; set; }
Property Value
DBType
Database type: "vector" (default) / "nonvector".
public string DBType { get; set; }
Property Value
Keyspace
Name of the initial keyspace (defaults to "default_keyspace")
public string Keyspace { get; set; }
Property Value
Name
Name of the database to be created.
public string Name { get; set; }
Property Value
PCUGroupId
PCU group ID to use for provisioning the database. Optional.
public string PCUGroupId { get; set; }
Property Value
Region
Database region.
public string Region { get; set; }
Property Value
Tier
Database tier (defaults to "serverless").
public string Tier { get; set; }