Aiven v6.18.0 published on Thursday, Jun 27, 2024 by Pulumi
aiven.getConnectionPool
Explore with Pulumi AI
The Connection Pool data source provides information about the existing Aiven Connection Pool.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const mytestpool = aiven.getConnectionPool({
project: myproject.project,
serviceName: mypg.serviceName,
poolName: "mypool",
});
import pulumi
import pulumi_aiven as aiven
mytestpool = aiven.get_connection_pool(project=myproject["project"],
service_name=mypg["serviceName"],
pool_name="mypool")
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.LookupConnectionPool(ctx, &aiven.LookupConnectionPoolArgs{
Project: myproject.Project,
ServiceName: mypg.ServiceName,
PoolName: "mypool",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var mytestpool = Aiven.GetConnectionPool.Invoke(new()
{
Project = myproject.Project,
ServiceName = mypg.ServiceName,
PoolName = "mypool",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.AivenFunctions;
import com.pulumi.aiven.inputs.GetConnectionPoolArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var mytestpool = AivenFunctions.getConnectionPool(GetConnectionPoolArgs.builder()
.project(myproject.project())
.serviceName(mypg.serviceName())
.poolName("mypool")
.build());
}
}
variables:
mytestpool:
fn::invoke:
Function: aiven:getConnectionPool
Arguments:
project: ${myproject.project}
serviceName: ${mypg.serviceName}
poolName: mypool
Using getConnectionPool
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getConnectionPool(args: GetConnectionPoolArgs, opts?: InvokeOptions): Promise<GetConnectionPoolResult>
function getConnectionPoolOutput(args: GetConnectionPoolOutputArgs, opts?: InvokeOptions): Output<GetConnectionPoolResult>
def get_connection_pool(pool_name: Optional[str] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetConnectionPoolResult
def get_connection_pool_output(pool_name: Optional[pulumi.Input[str]] = None,
project: Optional[pulumi.Input[str]] = None,
service_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetConnectionPoolResult]
func LookupConnectionPool(ctx *Context, args *LookupConnectionPoolArgs, opts ...InvokeOption) (*LookupConnectionPoolResult, error)
func LookupConnectionPoolOutput(ctx *Context, args *LookupConnectionPoolOutputArgs, opts ...InvokeOption) LookupConnectionPoolResultOutput
> Note: This function is named LookupConnectionPool
in the Go SDK.
public static class GetConnectionPool
{
public static Task<GetConnectionPoolResult> InvokeAsync(GetConnectionPoolArgs args, InvokeOptions? opts = null)
public static Output<GetConnectionPoolResult> Invoke(GetConnectionPoolInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetConnectionPoolResult> getConnectionPool(GetConnectionPoolArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aiven:index/getConnectionPool:getConnectionPool
arguments:
# arguments dictionary
The following arguments are supported:
- Pool
Name string - The name of the created pool. Changing this property forces recreation of the resource.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Pool
Name string - The name of the created pool. Changing this property forces recreation of the resource.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- pool
Name String - The name of the created pool. Changing this property forces recreation of the resource.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- pool
Name string - The name of the created pool. Changing this property forces recreation of the resource.
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- pool_
name str - The name of the created pool. Changing this property forces recreation of the resource.
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service_
name str - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- pool
Name String - The name of the created pool. Changing this property forces recreation of the resource.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
getConnectionPool Result
The following output properties are available:
- Connection
Uri string - The URI for connecting to the pool
- Database
Name string - The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pool
Mode string - The mode the pool operates in. The possible values are
session
,transaction
andstatement
. The default value istransaction
. - Pool
Name string - The name of the created pool. Changing this property forces recreation of the resource.
- Pool
Size int - The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is
10
. - Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Username string
- The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
- Connection
Uri string - The URI for connecting to the pool
- Database
Name string - The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pool
Mode string - The mode the pool operates in. The possible values are
session
,transaction
andstatement
. The default value istransaction
. - Pool
Name string - The name of the created pool. Changing this property forces recreation of the resource.
- Pool
Size int - The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is
10
. - Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Username string
- The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
- connection
Uri String - The URI for connecting to the pool
- database
Name String - The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- pool
Mode String - The mode the pool operates in. The possible values are
session
,transaction
andstatement
. The default value istransaction
. - pool
Name String - The name of the created pool. Changing this property forces recreation of the resource.
- pool
Size Integer - The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is
10
. - project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username String
- The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
- connection
Uri string - The URI for connecting to the pool
- database
Name string - The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- pool
Mode string - The mode the pool operates in. The possible values are
session
,transaction
andstatement
. The default value istransaction
. - pool
Name string - The name of the created pool. Changing this property forces recreation of the resource.
- pool
Size number - The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is
10
. - project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username string
- The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
- connection_
uri str - The URI for connecting to the pool
- database_
name str - The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- pool_
mode str - The mode the pool operates in. The possible values are
session
,transaction
andstatement
. The default value istransaction
. - pool_
name str - The name of the created pool. Changing this property forces recreation of the resource.
- pool_
size int - The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is
10
. - project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service_
name str - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username str
- The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
- connection
Uri String - The URI for connecting to the pool
- database
Name String - The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- pool
Mode String - The mode the pool operates in. The possible values are
session
,transaction
andstatement
. The default value istransaction
. - pool
Name String - The name of the created pool. Changing this property forces recreation of the resource.
- pool
Size Number - The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is
10
. - project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username String
- The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.