1. Packages
  2. UpCloud
  3. API Docs
  4. getManagedDatabaseRedisSessions
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

upcloud.getManagedDatabaseRedisSessions

Explore with Pulumi AI

upcloud logo
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

    Redis is deprecated in favor of Valkey. Please use Valkey for new key value store instances.

    Current sessions of a Redis managed database

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as upcloud from "@pulumi/upcloud";
    import * as upcloud from "@upcloud/pulumi-upcloud";
    
    // Use data source to gather a list of the active sessions for a Managed Redis Database
    // Create a Managed Redis resource
    const exampleManagedDatabaseRedis = new upcloud.ManagedDatabaseRedis("example", {
        name: "example",
        title: "example",
        plan: "1x1xCPU-2GB",
        zone: "fi-hel2",
    });
    // Read the active sessions of the newly created service
    const example = upcloud.getManagedDatabaseRedisSessionsOutput({
        service: exampleManagedDatabaseRedis.id,
    });
    
    import pulumi
    import pulumi_upcloud as upcloud
    
    # Use data source to gather a list of the active sessions for a Managed Redis Database
    # Create a Managed Redis resource
    example_managed_database_redis = upcloud.ManagedDatabaseRedis("example",
        name="example",
        title="example",
        plan="1x1xCPU-2GB",
        zone="fi-hel2")
    # Read the active sessions of the newly created service
    example = upcloud.get_managed_database_redis_sessions_output(service=example_managed_database_redis.id)
    
    package main
    
    import (
    	"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Use data source to gather a list of the active sessions for a Managed Redis Database
    		// Create a Managed Redis resource
    		exampleManagedDatabaseRedis, err := upcloud.NewManagedDatabaseRedis(ctx, "example", &upcloud.ManagedDatabaseRedisArgs{
    			Name:  pulumi.String("example"),
    			Title: pulumi.String("example"),
    			Plan:  pulumi.String("1x1xCPU-2GB"),
    			Zone:  pulumi.String("fi-hel2"),
    		})
    		if err != nil {
    			return err
    		}
    		// Read the active sessions of the newly created service
    		_ = upcloud.GetManagedDatabaseRedisSessionsOutput(ctx, upcloud.GetManagedDatabaseRedisSessionsOutputArgs{
    			Service: exampleManagedDatabaseRedis.ID(),
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using UpCloud = Pulumi.UpCloud;
    using UpCloud = UpCloud.Pulumi.UpCloud;
    
    return await Deployment.RunAsync(() => 
    {
        // Use data source to gather a list of the active sessions for a Managed Redis Database
        // Create a Managed Redis resource
        var exampleManagedDatabaseRedis = new UpCloud.ManagedDatabaseRedis("example", new()
        {
            Name = "example",
            Title = "example",
            Plan = "1x1xCPU-2GB",
            Zone = "fi-hel2",
        });
    
        // Read the active sessions of the newly created service
        var example = UpCloud.GetManagedDatabaseRedisSessions.Invoke(new()
        {
            Service = exampleManagedDatabaseRedis.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.upcloud.ManagedDatabaseRedis;
    import com.pulumi.upcloud.ManagedDatabaseRedisArgs;
    import com.pulumi.upcloud.UpcloudFunctions;
    import com.pulumi.upcloud.inputs.GetManagedDatabaseRedisSessionsArgs;
    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) {
            // Use data source to gather a list of the active sessions for a Managed Redis Database
            // Create a Managed Redis resource
            var exampleManagedDatabaseRedis = new ManagedDatabaseRedis("exampleManagedDatabaseRedis", ManagedDatabaseRedisArgs.builder()
                .name("example")
                .title("example")
                .plan("1x1xCPU-2GB")
                .zone("fi-hel2")
                .build());
    
            // Read the active sessions of the newly created service
            final var example = UpcloudFunctions.getManagedDatabaseRedisSessions(GetManagedDatabaseRedisSessionsArgs.builder()
                .service(exampleManagedDatabaseRedis.id())
                .build());
    
        }
    }
    
    resources:
      # Use data source to gather a list of the active sessions for a Managed Redis Database
    
      # Create a Managed Redis resource
      exampleManagedDatabaseRedis:
        type: upcloud:ManagedDatabaseRedis
        name: example
        properties:
          name: example
          title: example
          plan: 1x1xCPU-2GB
          zone: fi-hel2
    variables:
      # Read the active sessions of the newly created service
      example:
        fn::invoke:
          function: upcloud:getManagedDatabaseRedisSessions
          arguments:
            service: ${exampleManagedDatabaseRedis.id}
    

    Using getManagedDatabaseRedisSessions

    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 getManagedDatabaseRedisSessions(args: GetManagedDatabaseRedisSessionsArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseRedisSessionsResult>
    function getManagedDatabaseRedisSessionsOutput(args: GetManagedDatabaseRedisSessionsOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseRedisSessionsResult>
    def get_managed_database_redis_sessions(limit: Optional[int] = None,
                                            offset: Optional[int] = None,
                                            order: Optional[str] = None,
                                            service: Optional[str] = None,
                                            sessions: Optional[Sequence[GetManagedDatabaseRedisSessionsSession]] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseRedisSessionsResult
    def get_managed_database_redis_sessions_output(limit: Optional[pulumi.Input[int]] = None,
                                            offset: Optional[pulumi.Input[int]] = None,
                                            order: Optional[pulumi.Input[str]] = None,
                                            service: Optional[pulumi.Input[str]] = None,
                                            sessions: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedDatabaseRedisSessionsSessionArgs]]]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseRedisSessionsResult]
    func GetManagedDatabaseRedisSessions(ctx *Context, args *GetManagedDatabaseRedisSessionsArgs, opts ...InvokeOption) (*GetManagedDatabaseRedisSessionsResult, error)
    func GetManagedDatabaseRedisSessionsOutput(ctx *Context, args *GetManagedDatabaseRedisSessionsOutputArgs, opts ...InvokeOption) GetManagedDatabaseRedisSessionsResultOutput

    > Note: This function is named GetManagedDatabaseRedisSessions in the Go SDK.

    public static class GetManagedDatabaseRedisSessions 
    {
        public static Task<GetManagedDatabaseRedisSessionsResult> InvokeAsync(GetManagedDatabaseRedisSessionsArgs args, InvokeOptions? opts = null)
        public static Output<GetManagedDatabaseRedisSessionsResult> Invoke(GetManagedDatabaseRedisSessionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagedDatabaseRedisSessionsResult> getManagedDatabaseRedisSessions(GetManagedDatabaseRedisSessionsArgs args, InvokeOptions options)
    public static Output<GetManagedDatabaseRedisSessionsResult> getManagedDatabaseRedisSessions(GetManagedDatabaseRedisSessionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: upcloud:index/getManagedDatabaseRedisSessions:getManagedDatabaseRedisSessions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getManagedDatabaseRedisSessions Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Service string
    Sessions List<UpCloud.Pulumi.UpCloud.Outputs.GetManagedDatabaseRedisSessionsSession>
    Limit int
    Offset int
    Order string
    Id string
    The provider-assigned unique ID for this managed resource.
    Service string
    Sessions []GetManagedDatabaseRedisSessionsSession
    Limit int
    Offset int
    Order string
    id String
    The provider-assigned unique ID for this managed resource.
    service String
    sessions List<GetManagedDatabaseRedisSessionsSession>
    limit Integer
    offset Integer
    order String
    id string
    The provider-assigned unique ID for this managed resource.
    service string
    sessions GetManagedDatabaseRedisSessionsSession[]
    limit number
    offset number
    order string
    id str
    The provider-assigned unique ID for this managed resource.
    service str
    sessions Sequence[GetManagedDatabaseRedisSessionsSession]
    limit int
    offset int
    order str
    id String
    The provider-assigned unique ID for this managed resource.
    service String
    sessions List<Property Map>
    limit Number
    offset Number
    order String

    Supporting Types

    GetManagedDatabaseRedisSessionsSession

    ActiveChannelSubscriptions int
    Number of active channel subscriptions
    ActiveDatabase string
    Current database ID
    ActivePatternMatchingChannelSubscriptions int
    Number of pattern matching subscriptions.
    ApplicationName string
    Name of the application that is connected to this service.
    ClientAddr string
    Number of pattern matching subscriptions.
    ConnectionAge int
    Total duration of the connection in nanoseconds.
    ConnectionIdle int
    Idle time of the connection in nanoseconds.
    Flags List<string>
    A set containing flags' descriptions.
    FlagsRaw string
    Client connection flags in raw string format.
    Id string
    Process ID of this session.
    MultiExecCommands int
    Number of commands in a MULTI/EXEC context.
    OutputBuffer int
    Output buffer length.
    OutputBufferMemory int
    Output buffer memory usage.
    OutputListLength int
    Output list length (replies are queued in this list when the buffer is full).
    Query string
    The last executed command.
    QueryBuffer int
    Query buffer length (0 means no query pending).
    QueryBufferFree int
    Free space of the query buffer (0 means the buffer is full).
    ActiveChannelSubscriptions int
    Number of active channel subscriptions
    ActiveDatabase string
    Current database ID
    ActivePatternMatchingChannelSubscriptions int
    Number of pattern matching subscriptions.
    ApplicationName string
    Name of the application that is connected to this service.
    ClientAddr string
    Number of pattern matching subscriptions.
    ConnectionAge int
    Total duration of the connection in nanoseconds.
    ConnectionIdle int
    Idle time of the connection in nanoseconds.
    Flags []string
    A set containing flags' descriptions.
    FlagsRaw string
    Client connection flags in raw string format.
    Id string
    Process ID of this session.
    MultiExecCommands int
    Number of commands in a MULTI/EXEC context.
    OutputBuffer int
    Output buffer length.
    OutputBufferMemory int
    Output buffer memory usage.
    OutputListLength int
    Output list length (replies are queued in this list when the buffer is full).
    Query string
    The last executed command.
    QueryBuffer int
    Query buffer length (0 means no query pending).
    QueryBufferFree int
    Free space of the query buffer (0 means the buffer is full).
    activeChannelSubscriptions Integer
    Number of active channel subscriptions
    activeDatabase String
    Current database ID
    activePatternMatchingChannelSubscriptions Integer
    Number of pattern matching subscriptions.
    applicationName String
    Name of the application that is connected to this service.
    clientAddr String
    Number of pattern matching subscriptions.
    connectionAge Integer
    Total duration of the connection in nanoseconds.
    connectionIdle Integer
    Idle time of the connection in nanoseconds.
    flags List<String>
    A set containing flags' descriptions.
    flagsRaw String
    Client connection flags in raw string format.
    id String
    Process ID of this session.
    multiExecCommands Integer
    Number of commands in a MULTI/EXEC context.
    outputBuffer Integer
    Output buffer length.
    outputBufferMemory Integer
    Output buffer memory usage.
    outputListLength Integer
    Output list length (replies are queued in this list when the buffer is full).
    query String
    The last executed command.
    queryBuffer Integer
    Query buffer length (0 means no query pending).
    queryBufferFree Integer
    Free space of the query buffer (0 means the buffer is full).
    activeChannelSubscriptions number
    Number of active channel subscriptions
    activeDatabase string
    Current database ID
    activePatternMatchingChannelSubscriptions number
    Number of pattern matching subscriptions.
    applicationName string
    Name of the application that is connected to this service.
    clientAddr string
    Number of pattern matching subscriptions.
    connectionAge number
    Total duration of the connection in nanoseconds.
    connectionIdle number
    Idle time of the connection in nanoseconds.
    flags string[]
    A set containing flags' descriptions.
    flagsRaw string
    Client connection flags in raw string format.
    id string
    Process ID of this session.
    multiExecCommands number
    Number of commands in a MULTI/EXEC context.
    outputBuffer number
    Output buffer length.
    outputBufferMemory number
    Output buffer memory usage.
    outputListLength number
    Output list length (replies are queued in this list when the buffer is full).
    query string
    The last executed command.
    queryBuffer number
    Query buffer length (0 means no query pending).
    queryBufferFree number
    Free space of the query buffer (0 means the buffer is full).
    active_channel_subscriptions int
    Number of active channel subscriptions
    active_database str
    Current database ID
    active_pattern_matching_channel_subscriptions int
    Number of pattern matching subscriptions.
    application_name str
    Name of the application that is connected to this service.
    client_addr str
    Number of pattern matching subscriptions.
    connection_age int
    Total duration of the connection in nanoseconds.
    connection_idle int
    Idle time of the connection in nanoseconds.
    flags Sequence[str]
    A set containing flags' descriptions.
    flags_raw str
    Client connection flags in raw string format.
    id str
    Process ID of this session.
    multi_exec_commands int
    Number of commands in a MULTI/EXEC context.
    output_buffer int
    Output buffer length.
    output_buffer_memory int
    Output buffer memory usage.
    output_list_length int
    Output list length (replies are queued in this list when the buffer is full).
    query str
    The last executed command.
    query_buffer int
    Query buffer length (0 means no query pending).
    query_buffer_free int
    Free space of the query buffer (0 means the buffer is full).
    activeChannelSubscriptions Number
    Number of active channel subscriptions
    activeDatabase String
    Current database ID
    activePatternMatchingChannelSubscriptions Number
    Number of pattern matching subscriptions.
    applicationName String
    Name of the application that is connected to this service.
    clientAddr String
    Number of pattern matching subscriptions.
    connectionAge Number
    Total duration of the connection in nanoseconds.
    connectionIdle Number
    Idle time of the connection in nanoseconds.
    flags List<String>
    A set containing flags' descriptions.
    flagsRaw String
    Client connection flags in raw string format.
    id String
    Process ID of this session.
    multiExecCommands Number
    Number of commands in a MULTI/EXEC context.
    outputBuffer Number
    Output buffer length.
    outputBufferMemory Number
    Output buffer memory usage.
    outputListLength Number
    Output list length (replies are queued in this list when the buffer is full).
    query String
    The last executed command.
    queryBuffer Number
    Query buffer length (0 means no query pending).
    queryBufferFree Number
    Free space of the query buffer (0 means the buffer is full).

    Package Details

    Repository
    upcloud UpCloudLtd/pulumi-upcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the upcloud Terraform Provider.
    upcloud logo
    UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd