Show / Hide Table of Contents

Class DatabaseConnectionPoolState

Inheritance
System.Object
InputArgs
ResourceArgs
DatabaseConnectionPoolState
Inherited Members
ResourceArgs.Empty
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 DatabaseConnectionPoolState : ResourceArgs

Constructors

View Source

DatabaseConnectionPoolState()

Declaration
public DatabaseConnectionPoolState()

Properties

View Source

ClusterId

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>
View Source

DbName

The database for use with the connection pool.

Declaration
public Input<string> DbName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Host

The hostname used to connect to the database connection pool.

Declaration
public Input<string> Host { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

Name

The name for the database connection pool.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Password

Password for the connection pool's user.

Declaration
public Input<string> Password { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Port

Network port that the database connection pool is listening on.

Declaration
public Input<int> Port { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

PrivateHost

Same as host, but only accessible from resources within the account and in the same region.

Declaration
public Input<string> PrivateHost { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PrivateUri

Same as uri, but only accessible from resources within the account and in the same region.

Declaration
public Input<string> PrivateUri { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Size

The desired size of the PGBouncer connection pool.

Declaration
public Input<int> Size { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Uri

The full URI for connecting to the database connection pool.

Declaration
public Input<string> Uri { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.