Class DatabaseConnectionPoolArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.DigitalOcean
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class DatabaseConnectionPoolArgs : ResourceArgs
Constructors
View SourceDatabaseConnectionPoolArgs()
Declaration
public DatabaseConnectionPoolArgs()
Properties
View SourceClusterId
The ID of the source database cluster. Note: This must be a PostgreSQL cluster.
Declaration
public Input<string> ClusterId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
DbName
The database for use with the connection pool.
Declaration
public Input<string> DbName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Mode
The PGBouncer transaction mode for the connection pool. The allowed values are session, transaction, and statement.
Declaration
public Input<string> Mode { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name for the database connection pool.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Size
The desired size of the PGBouncer connection pool.
Declaration
public Input<int> Size { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
User
The name of the database user for use with the connection pool.
Declaration
public Input<string> User { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |