upcloud.ManagedDatabaseRedis
Explore with Pulumi AI
Redis is deprecated in favor of Valkey. Please use Valkey for new key value store instances.
This resource represents Redis managed database. See UpCloud Managed Databases product page for more details about the service.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as upcloud from "@upcloud/pulumi-upcloud";
// Minimal config
const example1 = new upcloud.ManagedDatabaseRedis("example_1", {
name: "redis-1",
title: "redis-1-example-2",
plan: "1x1xCPU-2GB",
zone: "fi-hel2",
});
// Service with custom properties
const example2 = new upcloud.ManagedDatabaseRedis("example_2", {
name: "redis-2",
title: "redis-2-example-2",
plan: "1x1xCPU-2GB",
zone: "fi-hel1",
properties: {
publicAccess: false,
},
});
import pulumi
import pulumi_upcloud as upcloud
# Minimal config
example1 = upcloud.ManagedDatabaseRedis("example_1",
name="redis-1",
title="redis-1-example-2",
plan="1x1xCPU-2GB",
zone="fi-hel2")
# Service with custom properties
example2 = upcloud.ManagedDatabaseRedis("example_2",
name="redis-2",
title="redis-2-example-2",
plan="1x1xCPU-2GB",
zone="fi-hel1",
properties={
"public_access": False,
})
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 {
// Minimal config
_, err := upcloud.NewManagedDatabaseRedis(ctx, "example_1", &upcloud.ManagedDatabaseRedisArgs{
Name: pulumi.String("redis-1"),
Title: pulumi.String("redis-1-example-2"),
Plan: pulumi.String("1x1xCPU-2GB"),
Zone: pulumi.String("fi-hel2"),
})
if err != nil {
return err
}
// Service with custom properties
_, err = upcloud.NewManagedDatabaseRedis(ctx, "example_2", &upcloud.ManagedDatabaseRedisArgs{
Name: pulumi.String("redis-2"),
Title: pulumi.String("redis-2-example-2"),
Plan: pulumi.String("1x1xCPU-2GB"),
Zone: pulumi.String("fi-hel1"),
Properties: &upcloud.ManagedDatabaseRedisPropertiesArgs{
PublicAccess: pulumi.Bool(false),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using UpCloud = UpCloud.Pulumi.UpCloud;
return await Deployment.RunAsync(() =>
{
// Minimal config
var example1 = new UpCloud.ManagedDatabaseRedis("example_1", new()
{
Name = "redis-1",
Title = "redis-1-example-2",
Plan = "1x1xCPU-2GB",
Zone = "fi-hel2",
});
// Service with custom properties
var example2 = new UpCloud.ManagedDatabaseRedis("example_2", new()
{
Name = "redis-2",
Title = "redis-2-example-2",
Plan = "1x1xCPU-2GB",
Zone = "fi-hel1",
Properties = new UpCloud.Inputs.ManagedDatabaseRedisPropertiesArgs
{
PublicAccess = false,
},
});
});
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.inputs.ManagedDatabaseRedisPropertiesArgs;
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) {
// Minimal config
var example1 = new ManagedDatabaseRedis("example1", ManagedDatabaseRedisArgs.builder()
.name("redis-1")
.title("redis-1-example-2")
.plan("1x1xCPU-2GB")
.zone("fi-hel2")
.build());
// Service with custom properties
var example2 = new ManagedDatabaseRedis("example2", ManagedDatabaseRedisArgs.builder()
.name("redis-2")
.title("redis-2-example-2")
.plan("1x1xCPU-2GB")
.zone("fi-hel1")
.properties(ManagedDatabaseRedisPropertiesArgs.builder()
.publicAccess(false)
.build())
.build());
}
}
resources:
# Minimal config
example1:
type: upcloud:ManagedDatabaseRedis
name: example_1
properties:
name: redis-1
title: redis-1-example-2
plan: 1x1xCPU-2GB
zone: fi-hel2
# Service with custom properties
example2:
type: upcloud:ManagedDatabaseRedis
name: example_2
properties:
name: redis-2
title: redis-2-example-2
plan: 1x1xCPU-2GB
zone: fi-hel1
properties:
publicAccess: false
Create ManagedDatabaseRedis Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedDatabaseRedis(name: string, args: ManagedDatabaseRedisArgs, opts?: CustomResourceOptions);
@overload
def ManagedDatabaseRedis(resource_name: str,
args: ManagedDatabaseRedisArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedDatabaseRedis(resource_name: str,
opts: Optional[ResourceOptions] = None,
plan: Optional[str] = None,
title: Optional[str] = None,
zone: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
name: Optional[str] = None,
networks: Optional[Sequence[ManagedDatabaseRedisNetworkArgs]] = None,
powered: Optional[bool] = None,
properties: Optional[ManagedDatabaseRedisPropertiesArgs] = None,
termination_protection: Optional[bool] = None)
func NewManagedDatabaseRedis(ctx *Context, name string, args ManagedDatabaseRedisArgs, opts ...ResourceOption) (*ManagedDatabaseRedis, error)
public ManagedDatabaseRedis(string name, ManagedDatabaseRedisArgs args, CustomResourceOptions? opts = null)
public ManagedDatabaseRedis(String name, ManagedDatabaseRedisArgs args)
public ManagedDatabaseRedis(String name, ManagedDatabaseRedisArgs args, CustomResourceOptions options)
type: upcloud:ManagedDatabaseRedis
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ManagedDatabaseRedisArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ManagedDatabaseRedisArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ManagedDatabaseRedisArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedDatabaseRedisArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedDatabaseRedisArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var managedDatabaseRedisResource = new UpCloud.ManagedDatabaseRedis("managedDatabaseRedisResource", new()
{
Plan = "string",
Title = "string",
Zone = "string",
Labels =
{
{ "string", "string" },
},
MaintenanceWindowDow = "string",
MaintenanceWindowTime = "string",
Name = "string",
Networks = new[]
{
new UpCloud.Inputs.ManagedDatabaseRedisNetworkArgs
{
Family = "string",
Name = "string",
Type = "string",
Uuid = "string",
},
},
Powered = false,
Properties = new UpCloud.Inputs.ManagedDatabaseRedisPropertiesArgs
{
AutomaticUtilityNetworkIpFilter = false,
BackupHour = 0,
BackupMinute = 0,
IpFilters = new[]
{
"string",
},
Migration = new UpCloud.Inputs.ManagedDatabaseRedisPropertiesMigrationArgs
{
Dbname = "string",
Host = "string",
IgnoreDbs = "string",
IgnoreRoles = "string",
Method = "string",
Password = "string",
Port = 0,
Ssl = false,
Username = "string",
},
PublicAccess = false,
RedisAclChannelsDefault = "string",
RedisIoThreads = 0,
RedisLfuDecayTime = 0,
RedisLfuLogFactor = 0,
RedisMaxmemoryPolicy = "string",
RedisNotifyKeyspaceEvents = "string",
RedisNumberOfDatabases = 0,
RedisPersistence = "string",
RedisPubsubClientOutputBufferLimit = 0,
RedisSsl = false,
RedisTimeout = 0,
RedisVersion = "string",
ServiceLog = false,
},
TerminationProtection = false,
});
example, err := upcloud.NewManagedDatabaseRedis(ctx, "managedDatabaseRedisResource", &upcloud.ManagedDatabaseRedisArgs{
Plan: pulumi.String("string"),
Title: pulumi.String("string"),
Zone: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaintenanceWindowDow: pulumi.String("string"),
MaintenanceWindowTime: pulumi.String("string"),
Name: pulumi.String("string"),
Networks: upcloud.ManagedDatabaseRedisNetworkArray{
&upcloud.ManagedDatabaseRedisNetworkArgs{
Family: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Uuid: pulumi.String("string"),
},
},
Powered: pulumi.Bool(false),
Properties: &upcloud.ManagedDatabaseRedisPropertiesArgs{
AutomaticUtilityNetworkIpFilter: pulumi.Bool(false),
BackupHour: pulumi.Int(0),
BackupMinute: pulumi.Int(0),
IpFilters: pulumi.StringArray{
pulumi.String("string"),
},
Migration: &upcloud.ManagedDatabaseRedisPropertiesMigrationArgs{
Dbname: pulumi.String("string"),
Host: pulumi.String("string"),
IgnoreDbs: pulumi.String("string"),
IgnoreRoles: pulumi.String("string"),
Method: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Int(0),
Ssl: pulumi.Bool(false),
Username: pulumi.String("string"),
},
PublicAccess: pulumi.Bool(false),
RedisAclChannelsDefault: pulumi.String("string"),
RedisIoThreads: pulumi.Int(0),
RedisLfuDecayTime: pulumi.Int(0),
RedisLfuLogFactor: pulumi.Int(0),
RedisMaxmemoryPolicy: pulumi.String("string"),
RedisNotifyKeyspaceEvents: pulumi.String("string"),
RedisNumberOfDatabases: pulumi.Int(0),
RedisPersistence: pulumi.String("string"),
RedisPubsubClientOutputBufferLimit: pulumi.Int(0),
RedisSsl: pulumi.Bool(false),
RedisTimeout: pulumi.Int(0),
RedisVersion: pulumi.String("string"),
ServiceLog: pulumi.Bool(false),
},
TerminationProtection: pulumi.Bool(false),
})
var managedDatabaseRedisResource = new ManagedDatabaseRedis("managedDatabaseRedisResource", ManagedDatabaseRedisArgs.builder()
.plan("string")
.title("string")
.zone("string")
.labels(Map.of("string", "string"))
.maintenanceWindowDow("string")
.maintenanceWindowTime("string")
.name("string")
.networks(ManagedDatabaseRedisNetworkArgs.builder()
.family("string")
.name("string")
.type("string")
.uuid("string")
.build())
.powered(false)
.properties(ManagedDatabaseRedisPropertiesArgs.builder()
.automaticUtilityNetworkIpFilter(false)
.backupHour(0)
.backupMinute(0)
.ipFilters("string")
.migration(ManagedDatabaseRedisPropertiesMigrationArgs.builder()
.dbname("string")
.host("string")
.ignoreDbs("string")
.ignoreRoles("string")
.method("string")
.password("string")
.port(0)
.ssl(false)
.username("string")
.build())
.publicAccess(false)
.redisAclChannelsDefault("string")
.redisIoThreads(0)
.redisLfuDecayTime(0)
.redisLfuLogFactor(0)
.redisMaxmemoryPolicy("string")
.redisNotifyKeyspaceEvents("string")
.redisNumberOfDatabases(0)
.redisPersistence("string")
.redisPubsubClientOutputBufferLimit(0)
.redisSsl(false)
.redisTimeout(0)
.redisVersion("string")
.serviceLog(false)
.build())
.terminationProtection(false)
.build());
managed_database_redis_resource = upcloud.ManagedDatabaseRedis("managedDatabaseRedisResource",
plan="string",
title="string",
zone="string",
labels={
"string": "string",
},
maintenance_window_dow="string",
maintenance_window_time="string",
name="string",
networks=[{
"family": "string",
"name": "string",
"type": "string",
"uuid": "string",
}],
powered=False,
properties={
"automatic_utility_network_ip_filter": False,
"backup_hour": 0,
"backup_minute": 0,
"ip_filters": ["string"],
"migration": {
"dbname": "string",
"host": "string",
"ignore_dbs": "string",
"ignore_roles": "string",
"method": "string",
"password": "string",
"port": 0,
"ssl": False,
"username": "string",
},
"public_access": False,
"redis_acl_channels_default": "string",
"redis_io_threads": 0,
"redis_lfu_decay_time": 0,
"redis_lfu_log_factor": 0,
"redis_maxmemory_policy": "string",
"redis_notify_keyspace_events": "string",
"redis_number_of_databases": 0,
"redis_persistence": "string",
"redis_pubsub_client_output_buffer_limit": 0,
"redis_ssl": False,
"redis_timeout": 0,
"redis_version": "string",
"service_log": False,
},
termination_protection=False)
const managedDatabaseRedisResource = new upcloud.ManagedDatabaseRedis("managedDatabaseRedisResource", {
plan: "string",
title: "string",
zone: "string",
labels: {
string: "string",
},
maintenanceWindowDow: "string",
maintenanceWindowTime: "string",
name: "string",
networks: [{
family: "string",
name: "string",
type: "string",
uuid: "string",
}],
powered: false,
properties: {
automaticUtilityNetworkIpFilter: false,
backupHour: 0,
backupMinute: 0,
ipFilters: ["string"],
migration: {
dbname: "string",
host: "string",
ignoreDbs: "string",
ignoreRoles: "string",
method: "string",
password: "string",
port: 0,
ssl: false,
username: "string",
},
publicAccess: false,
redisAclChannelsDefault: "string",
redisIoThreads: 0,
redisLfuDecayTime: 0,
redisLfuLogFactor: 0,
redisMaxmemoryPolicy: "string",
redisNotifyKeyspaceEvents: "string",
redisNumberOfDatabases: 0,
redisPersistence: "string",
redisPubsubClientOutputBufferLimit: 0,
redisSsl: false,
redisTimeout: 0,
redisVersion: "string",
serviceLog: false,
},
terminationProtection: false,
});
type: upcloud:ManagedDatabaseRedis
properties:
labels:
string: string
maintenanceWindowDow: string
maintenanceWindowTime: string
name: string
networks:
- family: string
name: string
type: string
uuid: string
plan: string
powered: false
properties:
automaticUtilityNetworkIpFilter: false
backupHour: 0
backupMinute: 0
ipFilters:
- string
migration:
dbname: string
host: string
ignoreDbs: string
ignoreRoles: string
method: string
password: string
port: 0
ssl: false
username: string
publicAccess: false
redisAclChannelsDefault: string
redisIoThreads: 0
redisLfuDecayTime: 0
redisLfuLogFactor: 0
redisMaxmemoryPolicy: string
redisNotifyKeyspaceEvents: string
redisNumberOfDatabases: 0
redisPersistence: string
redisPubsubClientOutputBufferLimit: 0
redisSsl: false
redisTimeout: 0
redisVersion: string
serviceLog: false
terminationProtection: false
title: string
zone: string
ManagedDatabaseRedis Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ManagedDatabaseRedis resource accepts the following input properties:
- Plan string
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - Title string
- Title of a managed database instance
- Zone string
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
. - Labels Dictionary<string, string>
- User defined key-value pairs to classify the managed database.
- Maintenance
Window stringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- Maintenance
Window stringTime - Maintenance window UTC time in hh:mm:ss format
- Name string
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- Networks
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Network> - Private networks attached to the managed database
- Powered bool
- The administrative power state of the service
- Properties
Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Properties - Database Engine properties for Redis
- Termination
Protection bool - If set to true, prevents the managed service from being powered off, or deleted.
- Plan string
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - Title string
- Title of a managed database instance
- Zone string
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
. - Labels map[string]string
- User defined key-value pairs to classify the managed database.
- Maintenance
Window stringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- Maintenance
Window stringTime - Maintenance window UTC time in hh:mm:ss format
- Name string
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- Networks
[]Managed
Database Redis Network Args - Private networks attached to the managed database
- Powered bool
- The administrative power state of the service
- Properties
Managed
Database Redis Properties Args - Database Engine properties for Redis
- Termination
Protection bool - If set to true, prevents the managed service from being powered off, or deleted.
- plan String
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - title String
- Title of a managed database instance
- zone String
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
. - labels Map<String,String>
- User defined key-value pairs to classify the managed database.
- maintenance
Window StringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance
Window StringTime - Maintenance window UTC time in hh:mm:ss format
- name String
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks
List<Managed
Database Redis Network> - Private networks attached to the managed database
- powered Boolean
- The administrative power state of the service
- properties
Managed
Database Redis Properties - Database Engine properties for Redis
- termination
Protection Boolean - If set to true, prevents the managed service from being powered off, or deleted.
- plan string
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - title string
- Title of a managed database instance
- zone string
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
. - labels {[key: string]: string}
- User defined key-value pairs to classify the managed database.
- maintenance
Window stringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance
Window stringTime - Maintenance window UTC time in hh:mm:ss format
- name string
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks
Managed
Database Redis Network[] - Private networks attached to the managed database
- powered boolean
- The administrative power state of the service
- properties
Managed
Database Redis Properties - Database Engine properties for Redis
- termination
Protection boolean - If set to true, prevents the managed service from being powered off, or deleted.
- plan str
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - title str
- Title of a managed database instance
- zone str
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
. - labels Mapping[str, str]
- User defined key-value pairs to classify the managed database.
- maintenance_
window_ strdow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance_
window_ strtime - Maintenance window UTC time in hh:mm:ss format
- name str
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks
Sequence[Managed
Database Redis Network Args] - Private networks attached to the managed database
- powered bool
- The administrative power state of the service
- properties
Managed
Database Redis Properties Args - Database Engine properties for Redis
- termination_
protection bool - If set to true, prevents the managed service from being powered off, or deleted.
- plan String
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - title String
- Title of a managed database instance
- zone String
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
. - labels Map<String>
- User defined key-value pairs to classify the managed database.
- maintenance
Window StringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance
Window StringTime - Maintenance window UTC time in hh:mm:ss format
- name String
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks List<Property Map>
- Private networks attached to the managed database
- powered Boolean
- The administrative power state of the service
- properties Property Map
- Database Engine properties for Redis
- termination
Protection Boolean - If set to true, prevents the managed service from being powered off, or deleted.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedDatabaseRedis resource produces the following output properties:
- Components
List<Up
Cloud. Pulumi. Up Cloud. Outputs. Managed Database Redis Component> - Service component information
- Id string
- The provider-assigned unique ID for this managed resource.
- Node
States List<UpCloud. Pulumi. Up Cloud. Outputs. Managed Database Redis Node State> - Information about nodes providing the managed service
- Primary
Database string - Primary database name
- Service
Host string - Hostname to the service instance
- Service
Password string - Primary username's password to the service instance
- Service
Port string - Port to the service instance
- Service
Uri string - URI to the service instance
- Service
Username string - Primary username to the service instance
- State string
- State of the service
- Type string
- Type of the service
- Components
[]Managed
Database Redis Component - Service component information
- Id string
- The provider-assigned unique ID for this managed resource.
- Node
States []ManagedDatabase Redis Node State - Information about nodes providing the managed service
- Primary
Database string - Primary database name
- Service
Host string - Hostname to the service instance
- Service
Password string - Primary username's password to the service instance
- Service
Port string - Port to the service instance
- Service
Uri string - URI to the service instance
- Service
Username string - Primary username to the service instance
- State string
- State of the service
- Type string
- Type of the service
- components
List<Managed
Database Redis Component> - Service component information
- id String
- The provider-assigned unique ID for this managed resource.
- node
States List<ManagedDatabase Redis Node State> - Information about nodes providing the managed service
- primary
Database String - Primary database name
- service
Host String - Hostname to the service instance
- service
Password String - Primary username's password to the service instance
- service
Port String - Port to the service instance
- service
Uri String - URI to the service instance
- service
Username String - Primary username to the service instance
- state String
- State of the service
- type String
- Type of the service
- components
Managed
Database Redis Component[] - Service component information
- id string
- The provider-assigned unique ID for this managed resource.
- node
States ManagedDatabase Redis Node State[] - Information about nodes providing the managed service
- primary
Database string - Primary database name
- service
Host string - Hostname to the service instance
- service
Password string - Primary username's password to the service instance
- service
Port string - Port to the service instance
- service
Uri string - URI to the service instance
- service
Username string - Primary username to the service instance
- state string
- State of the service
- type string
- Type of the service
- components
Sequence[Managed
Database Redis Component] - Service component information
- id str
- The provider-assigned unique ID for this managed resource.
- node_
states Sequence[ManagedDatabase Redis Node State] - Information about nodes providing the managed service
- primary_
database str - Primary database name
- service_
host str - Hostname to the service instance
- service_
password str - Primary username's password to the service instance
- service_
port str - Port to the service instance
- service_
uri str - URI to the service instance
- service_
username str - Primary username to the service instance
- state str
- State of the service
- type str
- Type of the service
- components List<Property Map>
- Service component information
- id String
- The provider-assigned unique ID for this managed resource.
- node
States List<Property Map> - Information about nodes providing the managed service
- primary
Database String - Primary database name
- service
Host String - Hostname to the service instance
- service
Password String - Primary username's password to the service instance
- service
Port String - Port to the service instance
- service
Uri String - URI to the service instance
- service
Username String - Primary username to the service instance
- state String
- State of the service
- type String
- Type of the service
Look up Existing ManagedDatabaseRedis Resource
Get an existing ManagedDatabaseRedis resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ManagedDatabaseRedisState, opts?: CustomResourceOptions): ManagedDatabaseRedis
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
components: Optional[Sequence[ManagedDatabaseRedisComponentArgs]] = None,
labels: Optional[Mapping[str, str]] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
name: Optional[str] = None,
networks: Optional[Sequence[ManagedDatabaseRedisNetworkArgs]] = None,
node_states: Optional[Sequence[ManagedDatabaseRedisNodeStateArgs]] = None,
plan: Optional[str] = None,
powered: Optional[bool] = None,
primary_database: Optional[str] = None,
properties: Optional[ManagedDatabaseRedisPropertiesArgs] = None,
service_host: Optional[str] = None,
service_password: Optional[str] = None,
service_port: Optional[str] = None,
service_uri: Optional[str] = None,
service_username: Optional[str] = None,
state: Optional[str] = None,
termination_protection: Optional[bool] = None,
title: Optional[str] = None,
type: Optional[str] = None,
zone: Optional[str] = None) -> ManagedDatabaseRedis
func GetManagedDatabaseRedis(ctx *Context, name string, id IDInput, state *ManagedDatabaseRedisState, opts ...ResourceOption) (*ManagedDatabaseRedis, error)
public static ManagedDatabaseRedis Get(string name, Input<string> id, ManagedDatabaseRedisState? state, CustomResourceOptions? opts = null)
public static ManagedDatabaseRedis get(String name, Output<String> id, ManagedDatabaseRedisState state, CustomResourceOptions options)
resources: _: type: upcloud:ManagedDatabaseRedis get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Components
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Component> - Service component information
- Labels Dictionary<string, string>
- User defined key-value pairs to classify the managed database.
- Maintenance
Window stringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- Maintenance
Window stringTime - Maintenance window UTC time in hh:mm:ss format
- Name string
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- Networks
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Network> - Private networks attached to the managed database
- Node
States List<UpCloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Node State> - Information about nodes providing the managed service
- Plan string
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - Powered bool
- The administrative power state of the service
- Primary
Database string - Primary database name
- Properties
Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Properties - Database Engine properties for Redis
- Service
Host string - Hostname to the service instance
- Service
Password string - Primary username's password to the service instance
- Service
Port string - Port to the service instance
- Service
Uri string - URI to the service instance
- Service
Username string - Primary username to the service instance
- State string
- State of the service
- Termination
Protection bool - If set to true, prevents the managed service from being powered off, or deleted.
- Title string
- Title of a managed database instance
- Type string
- Type of the service
- Zone string
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
.
- Components
[]Managed
Database Redis Component Args - Service component information
- Labels map[string]string
- User defined key-value pairs to classify the managed database.
- Maintenance
Window stringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- Maintenance
Window stringTime - Maintenance window UTC time in hh:mm:ss format
- Name string
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- Networks
[]Managed
Database Redis Network Args - Private networks attached to the managed database
- Node
States []ManagedDatabase Redis Node State Args - Information about nodes providing the managed service
- Plan string
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - Powered bool
- The administrative power state of the service
- Primary
Database string - Primary database name
- Properties
Managed
Database Redis Properties Args - Database Engine properties for Redis
- Service
Host string - Hostname to the service instance
- Service
Password string - Primary username's password to the service instance
- Service
Port string - Port to the service instance
- Service
Uri string - URI to the service instance
- Service
Username string - Primary username to the service instance
- State string
- State of the service
- Termination
Protection bool - If set to true, prevents the managed service from being powered off, or deleted.
- Title string
- Title of a managed database instance
- Type string
- Type of the service
- Zone string
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
.
- components
List<Managed
Database Redis Component> - Service component information
- labels Map<String,String>
- User defined key-value pairs to classify the managed database.
- maintenance
Window StringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance
Window StringTime - Maintenance window UTC time in hh:mm:ss format
- name String
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks
List<Managed
Database Redis Network> - Private networks attached to the managed database
- node
States List<ManagedDatabase Redis Node State> - Information about nodes providing the managed service
- plan String
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - powered Boolean
- The administrative power state of the service
- primary
Database String - Primary database name
- properties
Managed
Database Redis Properties - Database Engine properties for Redis
- service
Host String - Hostname to the service instance
- service
Password String - Primary username's password to the service instance
- service
Port String - Port to the service instance
- service
Uri String - URI to the service instance
- service
Username String - Primary username to the service instance
- state String
- State of the service
- termination
Protection Boolean - If set to true, prevents the managed service from being powered off, or deleted.
- title String
- Title of a managed database instance
- type String
- Type of the service
- zone String
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
.
- components
Managed
Database Redis Component[] - Service component information
- labels {[key: string]: string}
- User defined key-value pairs to classify the managed database.
- maintenance
Window stringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance
Window stringTime - Maintenance window UTC time in hh:mm:ss format
- name string
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks
Managed
Database Redis Network[] - Private networks attached to the managed database
- node
States ManagedDatabase Redis Node State[] - Information about nodes providing the managed service
- plan string
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - powered boolean
- The administrative power state of the service
- primary
Database string - Primary database name
- properties
Managed
Database Redis Properties - Database Engine properties for Redis
- service
Host string - Hostname to the service instance
- service
Password string - Primary username's password to the service instance
- service
Port string - Port to the service instance
- service
Uri string - URI to the service instance
- service
Username string - Primary username to the service instance
- state string
- State of the service
- termination
Protection boolean - If set to true, prevents the managed service from being powered off, or deleted.
- title string
- Title of a managed database instance
- type string
- Type of the service
- zone string
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
.
- components
Sequence[Managed
Database Redis Component Args] - Service component information
- labels Mapping[str, str]
- User defined key-value pairs to classify the managed database.
- maintenance_
window_ strdow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance_
window_ strtime - Maintenance window UTC time in hh:mm:ss format
- name str
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks
Sequence[Managed
Database Redis Network Args] - Private networks attached to the managed database
- node_
states Sequence[ManagedDatabase Redis Node State Args] - Information about nodes providing the managed service
- plan str
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - powered bool
- The administrative power state of the service
- primary_
database str - Primary database name
- properties
Managed
Database Redis Properties Args - Database Engine properties for Redis
- service_
host str - Hostname to the service instance
- service_
password str - Primary username's password to the service instance
- service_
port str - Port to the service instance
- service_
uri str - URI to the service instance
- service_
username str - Primary username to the service instance
- state str
- State of the service
- termination_
protection bool - If set to true, prevents the managed service from being powered off, or deleted.
- title str
- Title of a managed database instance
- type str
- Type of the service
- zone str
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
.
- components List<Property Map>
- Service component information
- labels Map<String>
- User defined key-value pairs to classify the managed database.
- maintenance
Window StringDow - Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
- maintenance
Window StringTime - Maintenance window UTC time in hh:mm:ss format
- name String
- Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account
- networks List<Property Map>
- Private networks attached to the managed database
- node
States List<Property Map> - Information about nodes providing the managed service
- plan String
- Service plan to use. This determines how much resources the instance will have. You can list available plans with
upctl database plans <type>
. - powered Boolean
- The administrative power state of the service
- primary
Database String - Primary database name
- properties Property Map
- Database Engine properties for Redis
- service
Host String - Hostname to the service instance
- service
Password String - Primary username's password to the service instance
- service
Port String - Port to the service instance
- service
Uri String - URI to the service instance
- service
Username String - Primary username to the service instance
- state String
- State of the service
- termination
Protection Boolean - If set to true, prevents the managed service from being powered off, or deleted.
- title String
- Title of a managed database instance
- type String
- Type of the service
- zone String
- Zone where the instance resides, e.g.
de-fra1
. You can list available zones withupctl zone list
.
Supporting Types
ManagedDatabaseRedisComponent, ManagedDatabaseRedisComponentArgs
ManagedDatabaseRedisNetwork, ManagedDatabaseRedisNetworkArgs
ManagedDatabaseRedisNodeState, ManagedDatabaseRedisNodeStateArgs
ManagedDatabaseRedisProperties, ManagedDatabaseRedisPropertiesArgs
- Automatic
Utility boolNetwork Ip Filter - Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
- Backup
Hour int - The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
- Backup
Minute int - The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
- Ip
Filters List<string> - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- Migration
Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Redis Properties Migration - Migrate data from existing server.
- Public
Access bool - Public Access. Allow access to the service from the public Internet.
- Redis
Acl stringChannels Default - Default ACL for pub/sub channels used when Redis user is created. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
- Redis
Io intThreads - Redis IO thread count. Set Redis IO thread count. Changing this will cause a restart of the Redis service.
- Redis
Lfu intDecay Time - LFU maxmemory-policy counter decay time in minutes.
- Redis
Lfu intLog Factor - Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies.
- Redis
Maxmemory stringPolicy - Redis maxmemory-policy.
- Redis
Notify stringKeyspace Events - Set notify-keyspace-events option.
- Redis
Number intOf Databases - Number of Redis databases. Set number of Redis databases. Changing this will cause a restart of the Redis service.
- Redis
Persistence string - Redis persistence. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
- Redis
Pubsub intClient Output Buffer Limit - Pub/sub client output buffer hard limit in MB. Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
- Redis
Ssl bool - Require SSL to access Redis.
- Redis
Timeout int - Redis idle connection timeout in seconds.
- Redis
Version string - Redis major version.
- Service
Log bool - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- Automatic
Utility boolNetwork Ip Filter - Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
- Backup
Hour int - The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
- Backup
Minute int - The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
- Ip
Filters []string - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- Migration
Managed
Database Redis Properties Migration - Migrate data from existing server.
- Public
Access bool - Public Access. Allow access to the service from the public Internet.
- Redis
Acl stringChannels Default - Default ACL for pub/sub channels used when Redis user is created. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
- Redis
Io intThreads - Redis IO thread count. Set Redis IO thread count. Changing this will cause a restart of the Redis service.
- Redis
Lfu intDecay Time - LFU maxmemory-policy counter decay time in minutes.
- Redis
Lfu intLog Factor - Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies.
- Redis
Maxmemory stringPolicy - Redis maxmemory-policy.
- Redis
Notify stringKeyspace Events - Set notify-keyspace-events option.
- Redis
Number intOf Databases - Number of Redis databases. Set number of Redis databases. Changing this will cause a restart of the Redis service.
- Redis
Persistence string - Redis persistence. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
- Redis
Pubsub intClient Output Buffer Limit - Pub/sub client output buffer hard limit in MB. Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
- Redis
Ssl bool - Require SSL to access Redis.
- Redis
Timeout int - Redis idle connection timeout in seconds.
- Redis
Version string - Redis major version.
- Service
Log bool - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- automatic
Utility BooleanNetwork Ip Filter - Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
- backup
Hour Integer - The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
- backup
Minute Integer - The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
- ip
Filters List<String> - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- migration
Managed
Database Redis Properties Migration - Migrate data from existing server.
- public
Access Boolean - Public Access. Allow access to the service from the public Internet.
- redis
Acl StringChannels Default - Default ACL for pub/sub channels used when Redis user is created. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
- redis
Io IntegerThreads - Redis IO thread count. Set Redis IO thread count. Changing this will cause a restart of the Redis service.
- redis
Lfu IntegerDecay Time - LFU maxmemory-policy counter decay time in minutes.
- redis
Lfu IntegerLog Factor - Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies.
- redis
Maxmemory StringPolicy - Redis maxmemory-policy.
- redis
Notify StringKeyspace Events - Set notify-keyspace-events option.
- redis
Number IntegerOf Databases - Number of Redis databases. Set number of Redis databases. Changing this will cause a restart of the Redis service.
- redis
Persistence String - Redis persistence. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
- redis
Pubsub IntegerClient Output Buffer Limit - Pub/sub client output buffer hard limit in MB. Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
- redis
Ssl Boolean - Require SSL to access Redis.
- redis
Timeout Integer - Redis idle connection timeout in seconds.
- redis
Version String - Redis major version.
- service
Log Boolean - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- automatic
Utility booleanNetwork Ip Filter - Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
- backup
Hour number - The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
- backup
Minute number - The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
- ip
Filters string[] - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- migration
Managed
Database Redis Properties Migration - Migrate data from existing server.
- public
Access boolean - Public Access. Allow access to the service from the public Internet.
- redis
Acl stringChannels Default - Default ACL for pub/sub channels used when Redis user is created. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
- redis
Io numberThreads - Redis IO thread count. Set Redis IO thread count. Changing this will cause a restart of the Redis service.
- redis
Lfu numberDecay Time - LFU maxmemory-policy counter decay time in minutes.
- redis
Lfu numberLog Factor - Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies.
- redis
Maxmemory stringPolicy - Redis maxmemory-policy.
- redis
Notify stringKeyspace Events - Set notify-keyspace-events option.
- redis
Number numberOf Databases - Number of Redis databases. Set number of Redis databases. Changing this will cause a restart of the Redis service.
- redis
Persistence string - Redis persistence. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
- redis
Pubsub numberClient Output Buffer Limit - Pub/sub client output buffer hard limit in MB. Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
- redis
Ssl boolean - Require SSL to access Redis.
- redis
Timeout number - Redis idle connection timeout in seconds.
- redis
Version string - Redis major version.
- service
Log boolean - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- automatic_
utility_ boolnetwork_ ip_ filter - Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
- backup_
hour int - The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
- backup_
minute int - The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
- ip_
filters Sequence[str] - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- migration
Managed
Database Redis Properties Migration - Migrate data from existing server.
- public_
access bool - Public Access. Allow access to the service from the public Internet.
- redis_
acl_ strchannels_ default - Default ACL for pub/sub channels used when Redis user is created. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
- redis_
io_ intthreads - Redis IO thread count. Set Redis IO thread count. Changing this will cause a restart of the Redis service.
- redis_
lfu_ intdecay_ time - LFU maxmemory-policy counter decay time in minutes.
- redis_
lfu_ intlog_ factor - Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies.
- redis_
maxmemory_ strpolicy - Redis maxmemory-policy.
- redis_
notify_ strkeyspace_ events - Set notify-keyspace-events option.
- redis_
number_ intof_ databases - Number of Redis databases. Set number of Redis databases. Changing this will cause a restart of the Redis service.
- redis_
persistence str - Redis persistence. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
- redis_
pubsub_ intclient_ output_ buffer_ limit - Pub/sub client output buffer hard limit in MB. Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
- redis_
ssl bool - Require SSL to access Redis.
- redis_
timeout int - Redis idle connection timeout in seconds.
- redis_
version str - Redis major version.
- service_
log bool - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- automatic
Utility BooleanNetwork Ip Filter - Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
- backup
Hour Number - The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
- backup
Minute Number - The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
- ip
Filters List<String> - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- migration Property Map
- Migrate data from existing server.
- public
Access Boolean - Public Access. Allow access to the service from the public Internet.
- redis
Acl StringChannels Default - Default ACL for pub/sub channels used when Redis user is created. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
- redis
Io NumberThreads - Redis IO thread count. Set Redis IO thread count. Changing this will cause a restart of the Redis service.
- redis
Lfu NumberDecay Time - LFU maxmemory-policy counter decay time in minutes.
- redis
Lfu NumberLog Factor - Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies.
- redis
Maxmemory StringPolicy - Redis maxmemory-policy.
- redis
Notify StringKeyspace Events - Set notify-keyspace-events option.
- redis
Number NumberOf Databases - Number of Redis databases. Set number of Redis databases. Changing this will cause a restart of the Redis service.
- redis
Persistence String - Redis persistence. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
- redis
Pubsub NumberClient Output Buffer Limit - Pub/sub client output buffer hard limit in MB. Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
- redis
Ssl Boolean - Require SSL to access Redis.
- redis
Timeout Number - Redis idle connection timeout in seconds.
- redis
Version String - Redis major version.
- service
Log Boolean - Service logging. Store logs for the service so that they are available in the HTTP API and console.
ManagedDatabaseRedisPropertiesMigration, ManagedDatabaseRedisPropertiesMigrationArgs
- Dbname string
- Database name for bootstrapping the initial connection.
- Host string
- Hostname or IP address of the server where to migrate data from.
- Ignore
Dbs string - Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
- Ignore
Roles string - Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
- Method string
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
- Password string
- Password for authentication with the server where to migrate data from.
- Port int
- Port number of the server where to migrate data from.
- Ssl bool
- The server where to migrate data from is secured with SSL.
- Username string
- User name for authentication with the server where to migrate data from.
- Dbname string
- Database name for bootstrapping the initial connection.
- Host string
- Hostname or IP address of the server where to migrate data from.
- Ignore
Dbs string - Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
- Ignore
Roles string - Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
- Method string
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
- Password string
- Password for authentication with the server where to migrate data from.
- Port int
- Port number of the server where to migrate data from.
- Ssl bool
- The server where to migrate data from is secured with SSL.
- Username string
- User name for authentication with the server where to migrate data from.
- dbname String
- Database name for bootstrapping the initial connection.
- host String
- Hostname or IP address of the server where to migrate data from.
- ignore
Dbs String - Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
- ignore
Roles String - Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
- method String
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
- password String
- Password for authentication with the server where to migrate data from.
- port Integer
- Port number of the server where to migrate data from.
- ssl Boolean
- The server where to migrate data from is secured with SSL.
- username String
- User name for authentication with the server where to migrate data from.
- dbname string
- Database name for bootstrapping the initial connection.
- host string
- Hostname or IP address of the server where to migrate data from.
- ignore
Dbs string - Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
- ignore
Roles string - Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
- method string
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
- password string
- Password for authentication with the server where to migrate data from.
- port number
- Port number of the server where to migrate data from.
- ssl boolean
- The server where to migrate data from is secured with SSL.
- username string
- User name for authentication with the server where to migrate data from.
- dbname str
- Database name for bootstrapping the initial connection.
- host str
- Hostname or IP address of the server where to migrate data from.
- ignore_
dbs str - Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
- ignore_
roles str - Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
- method str
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
- password str
- Password for authentication with the server where to migrate data from.
- port int
- Port number of the server where to migrate data from.
- ssl bool
- The server where to migrate data from is secured with SSL.
- username str
- User name for authentication with the server where to migrate data from.
- dbname String
- Database name for bootstrapping the initial connection.
- host String
- Hostname or IP address of the server where to migrate data from.
- ignore
Dbs String - Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
- ignore
Roles String - Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
- method String
- The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
- password String
- Password for authentication with the server where to migrate data from.
- port Number
- Port number of the server where to migrate data from.
- ssl Boolean
- The server where to migrate data from is secured with SSL.
- username String
- User name for authentication with the server where to migrate data from.
Package Details
- Repository
- upcloud UpCloudLtd/pulumi-upcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
upcloud
Terraform Provider.