UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd
upcloud.getManagedDatabaseRedisSessions
Explore with Pulumi AI
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:
Supporting Types
GetManagedDatabaseRedisSessionsSession
- Active
Channel intSubscriptions - Number of active channel subscriptions
- Active
Database string - Current database ID
- Active
Pattern intMatching Channel Subscriptions - Number of pattern matching subscriptions.
- Application
Name string - Name of the application that is connected to this service.
- Client
Addr string - 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 List<string>
- A set containing flags' descriptions.
- Flags
Raw string - Client connection flags in raw string format.
- Id string
- Process ID of this session.
- Multi
Exec intCommands - Number of commands in a MULTI/EXEC context.
- Output
Buffer int - Output buffer length.
- Output
Buffer intMemory - Output buffer memory usage.
- Output
List intLength - Output list length (replies are queued in this list when the buffer is full).
- Query string
- The last executed command.
- Query
Buffer int - Query buffer length (0 means no query pending).
- Query
Buffer intFree - Free space of the query buffer (0 means the buffer is full).
- Active
Channel intSubscriptions - Number of active channel subscriptions
- Active
Database string - Current database ID
- Active
Pattern intMatching Channel Subscriptions - Number of pattern matching subscriptions.
- Application
Name string - Name of the application that is connected to this service.
- Client
Addr string - 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 []string
- A set containing flags' descriptions.
- Flags
Raw string - Client connection flags in raw string format.
- Id string
- Process ID of this session.
- Multi
Exec intCommands - Number of commands in a MULTI/EXEC context.
- Output
Buffer int - Output buffer length.
- Output
Buffer intMemory - Output buffer memory usage.
- Output
List intLength - Output list length (replies are queued in this list when the buffer is full).
- Query string
- The last executed command.
- Query
Buffer int - Query buffer length (0 means no query pending).
- Query
Buffer intFree - Free space of the query buffer (0 means the buffer is full).
- active
Channel IntegerSubscriptions - Number of active channel subscriptions
- active
Database String - Current database ID
- active
Pattern IntegerMatching Channel Subscriptions - Number of pattern matching subscriptions.
- application
Name String - Name of the application that is connected to this service.
- client
Addr String - Number of pattern matching subscriptions.
- connection
Age Integer - Total duration of the connection in nanoseconds.
- connection
Idle Integer - Idle time of the connection in nanoseconds.
- flags List<String>
- A set containing flags' descriptions.
- flags
Raw String - Client connection flags in raw string format.
- id String
- Process ID of this session.
- multi
Exec IntegerCommands - Number of commands in a MULTI/EXEC context.
- output
Buffer Integer - Output buffer length.
- output
Buffer IntegerMemory - Output buffer memory usage.
- output
List IntegerLength - Output list length (replies are queued in this list when the buffer is full).
- query String
- The last executed command.
- query
Buffer Integer - Query buffer length (0 means no query pending).
- query
Buffer IntegerFree - Free space of the query buffer (0 means the buffer is full).
- active
Channel numberSubscriptions - Number of active channel subscriptions
- active
Database string - Current database ID
- active
Pattern numberMatching Channel Subscriptions - Number of pattern matching subscriptions.
- application
Name string - Name of the application that is connected to this service.
- client
Addr string - Number of pattern matching subscriptions.
- connection
Age number - Total duration of the connection in nanoseconds.
- connection
Idle number - Idle time of the connection in nanoseconds.
- flags string[]
- A set containing flags' descriptions.
- flags
Raw string - Client connection flags in raw string format.
- id string
- Process ID of this session.
- multi
Exec numberCommands - Number of commands in a MULTI/EXEC context.
- output
Buffer number - Output buffer length.
- output
Buffer numberMemory - Output buffer memory usage.
- output
List numberLength - Output list length (replies are queued in this list when the buffer is full).
- query string
- The last executed command.
- query
Buffer number - Query buffer length (0 means no query pending).
- query
Buffer numberFree - Free space of the query buffer (0 means the buffer is full).
- active_
channel_ intsubscriptions - Number of active channel subscriptions
- active_
database str - Current database ID
- active_
pattern_ intmatching_ channel_ subscriptions - 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_ intcommands - Number of commands in a MULTI/EXEC context.
- output_
buffer int - Output buffer length.
- output_
buffer_ intmemory - Output buffer memory usage.
- output_
list_ intlength - 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_ intfree - Free space of the query buffer (0 means the buffer is full).
- active
Channel NumberSubscriptions - Number of active channel subscriptions
- active
Database String - Current database ID
- active
Pattern NumberMatching Channel Subscriptions - Number of pattern matching subscriptions.
- application
Name String - Name of the application that is connected to this service.
- client
Addr String - Number of pattern matching subscriptions.
- connection
Age Number - Total duration of the connection in nanoseconds.
- connection
Idle Number - Idle time of the connection in nanoseconds.
- flags List<String>
- A set containing flags' descriptions.
- flags
Raw String - Client connection flags in raw string format.
- id String
- Process ID of this session.
- multi
Exec NumberCommands - Number of commands in a MULTI/EXEC context.
- output
Buffer Number - Output buffer length.
- output
Buffer NumberMemory - Output buffer memory usage.
- output
List NumberLength - Output list length (replies are queued in this list when the buffer is full).
- query String
- The last executed command.
- query
Buffer Number - Query buffer length (0 means no query pending).
- query
Buffer NumberFree - 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.