upcloud.ManagedDatabaseMysql
Explore with Pulumi AI
This resource represents MySQL 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.ManagedDatabaseMysql("example_1", {
name: "mysql-1",
title: "mysql-1-example-1",
plan: "1x1xCPU-2GB-25GB",
zone: "fi-hel1",
});
// Shutdown instance after creation
const example2 = new upcloud.ManagedDatabaseMysql("example_2", {
name: "mysql-2",
title: "mysql-2-example-2",
plan: "1x1xCPU-2GB-25GB",
zone: "fi-hel1",
powered: false,
});
// Service with custom properties
// Note that this basically sets strict mode off which is not normally recommended
const example3 = new upcloud.ManagedDatabaseMysql("example_3", {
name: "mysql-3",
title: "mysql-3-example-3",
plan: "1x1xCPU-2GB-25GB",
zone: "fi-hel1",
properties: {
sqlMode: "NO_ENGINE_SUBSTITUTION",
waitTimeout: 300,
sortBufferSize: 4000000,
maxAllowedPacket: 16000000,
adminUsername: "admin",
adminPassword: "<ADMIN_PASSWORD>",
},
});
import pulumi
import pulumi_upcloud as upcloud
# Minimal config
example1 = upcloud.ManagedDatabaseMysql("example_1",
name="mysql-1",
title="mysql-1-example-1",
plan="1x1xCPU-2GB-25GB",
zone="fi-hel1")
# Shutdown instance after creation
example2 = upcloud.ManagedDatabaseMysql("example_2",
name="mysql-2",
title="mysql-2-example-2",
plan="1x1xCPU-2GB-25GB",
zone="fi-hel1",
powered=False)
# Service with custom properties
# Note that this basically sets strict mode off which is not normally recommended
example3 = upcloud.ManagedDatabaseMysql("example_3",
name="mysql-3",
title="mysql-3-example-3",
plan="1x1xCPU-2GB-25GB",
zone="fi-hel1",
properties={
"sql_mode": "NO_ENGINE_SUBSTITUTION",
"wait_timeout": 300,
"sort_buffer_size": 4000000,
"max_allowed_packet": 16000000,
"admin_username": "admin",
"admin_password": "<ADMIN_PASSWORD>",
})
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.NewManagedDatabaseMysql(ctx, "example_1", &upcloud.ManagedDatabaseMysqlArgs{
Name: pulumi.String("mysql-1"),
Title: pulumi.String("mysql-1-example-1"),
Plan: pulumi.String("1x1xCPU-2GB-25GB"),
Zone: pulumi.String("fi-hel1"),
})
if err != nil {
return err
}
// Shutdown instance after creation
_, err = upcloud.NewManagedDatabaseMysql(ctx, "example_2", &upcloud.ManagedDatabaseMysqlArgs{
Name: pulumi.String("mysql-2"),
Title: pulumi.String("mysql-2-example-2"),
Plan: pulumi.String("1x1xCPU-2GB-25GB"),
Zone: pulumi.String("fi-hel1"),
Powered: pulumi.Bool(false),
})
if err != nil {
return err
}
// Service with custom properties
// Note that this basically sets strict mode off which is not normally recommended
_, err = upcloud.NewManagedDatabaseMysql(ctx, "example_3", &upcloud.ManagedDatabaseMysqlArgs{
Name: pulumi.String("mysql-3"),
Title: pulumi.String("mysql-3-example-3"),
Plan: pulumi.String("1x1xCPU-2GB-25GB"),
Zone: pulumi.String("fi-hel1"),
Properties: &upcloud.ManagedDatabaseMysqlPropertiesArgs{
SqlMode: pulumi.String("NO_ENGINE_SUBSTITUTION"),
WaitTimeout: pulumi.Int(300),
SortBufferSize: pulumi.Int(4000000),
MaxAllowedPacket: pulumi.Int(16000000),
AdminUsername: pulumi.String("admin"),
AdminPassword: pulumi.String("<ADMIN_PASSWORD>"),
},
})
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.ManagedDatabaseMysql("example_1", new()
{
Name = "mysql-1",
Title = "mysql-1-example-1",
Plan = "1x1xCPU-2GB-25GB",
Zone = "fi-hel1",
});
// Shutdown instance after creation
var example2 = new UpCloud.ManagedDatabaseMysql("example_2", new()
{
Name = "mysql-2",
Title = "mysql-2-example-2",
Plan = "1x1xCPU-2GB-25GB",
Zone = "fi-hel1",
Powered = false,
});
// Service with custom properties
// Note that this basically sets strict mode off which is not normally recommended
var example3 = new UpCloud.ManagedDatabaseMysql("example_3", new()
{
Name = "mysql-3",
Title = "mysql-3-example-3",
Plan = "1x1xCPU-2GB-25GB",
Zone = "fi-hel1",
Properties = new UpCloud.Inputs.ManagedDatabaseMysqlPropertiesArgs
{
SqlMode = "NO_ENGINE_SUBSTITUTION",
WaitTimeout = 300,
SortBufferSize = 4000000,
MaxAllowedPacket = 16000000,
AdminUsername = "admin",
AdminPassword = "<ADMIN_PASSWORD>",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.upcloud.ManagedDatabaseMysql;
import com.pulumi.upcloud.ManagedDatabaseMysqlArgs;
import com.pulumi.upcloud.inputs.ManagedDatabaseMysqlPropertiesArgs;
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 ManagedDatabaseMysql("example1", ManagedDatabaseMysqlArgs.builder()
.name("mysql-1")
.title("mysql-1-example-1")
.plan("1x1xCPU-2GB-25GB")
.zone("fi-hel1")
.build());
// Shutdown instance after creation
var example2 = new ManagedDatabaseMysql("example2", ManagedDatabaseMysqlArgs.builder()
.name("mysql-2")
.title("mysql-2-example-2")
.plan("1x1xCPU-2GB-25GB")
.zone("fi-hel1")
.powered(false)
.build());
// Service with custom properties
// Note that this basically sets strict mode off which is not normally recommended
var example3 = new ManagedDatabaseMysql("example3", ManagedDatabaseMysqlArgs.builder()
.name("mysql-3")
.title("mysql-3-example-3")
.plan("1x1xCPU-2GB-25GB")
.zone("fi-hel1")
.properties(ManagedDatabaseMysqlPropertiesArgs.builder()
.sqlMode("NO_ENGINE_SUBSTITUTION")
.waitTimeout(300)
.sortBufferSize(4000000)
.maxAllowedPacket(16000000)
.adminUsername("admin")
.adminPassword("<ADMIN_PASSWORD>")
.build())
.build());
}
}
resources:
# Minimal config
example1:
type: upcloud:ManagedDatabaseMysql
name: example_1
properties:
name: mysql-1
title: mysql-1-example-1
plan: 1x1xCPU-2GB-25GB
zone: fi-hel1
# Shutdown instance after creation
example2:
type: upcloud:ManagedDatabaseMysql
name: example_2
properties:
name: mysql-2
title: mysql-2-example-2
plan: 1x1xCPU-2GB-25GB
zone: fi-hel1
powered: false
# Service with custom properties
# Note that this basically sets strict mode off which is not normally recommended
example3:
type: upcloud:ManagedDatabaseMysql
name: example_3
properties:
name: mysql-3
title: mysql-3-example-3
plan: 1x1xCPU-2GB-25GB
zone: fi-hel1
properties:
sqlMode: NO_ENGINE_SUBSTITUTION
waitTimeout: 300
sortBufferSize: 4e+06
maxAllowedPacket: 1.6e+07
adminUsername: admin
adminPassword: <ADMIN_PASSWORD>
Create ManagedDatabaseMysql Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedDatabaseMysql(name: string, args: ManagedDatabaseMysqlArgs, opts?: CustomResourceOptions);
@overload
def ManagedDatabaseMysql(resource_name: str,
args: ManagedDatabaseMysqlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedDatabaseMysql(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[ManagedDatabaseMysqlNetworkArgs]] = None,
powered: Optional[bool] = None,
properties: Optional[ManagedDatabaseMysqlPropertiesArgs] = None,
termination_protection: Optional[bool] = None)
func NewManagedDatabaseMysql(ctx *Context, name string, args ManagedDatabaseMysqlArgs, opts ...ResourceOption) (*ManagedDatabaseMysql, error)
public ManagedDatabaseMysql(string name, ManagedDatabaseMysqlArgs args, CustomResourceOptions? opts = null)
public ManagedDatabaseMysql(String name, ManagedDatabaseMysqlArgs args)
public ManagedDatabaseMysql(String name, ManagedDatabaseMysqlArgs args, CustomResourceOptions options)
type: upcloud:ManagedDatabaseMysql
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 ManagedDatabaseMysqlArgs
- 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 ManagedDatabaseMysqlArgs
- 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 ManagedDatabaseMysqlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedDatabaseMysqlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedDatabaseMysqlArgs
- 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 managedDatabaseMysqlResource = new UpCloud.ManagedDatabaseMysql("managedDatabaseMysqlResource", new()
{
Plan = "string",
Title = "string",
Zone = "string",
Labels =
{
{ "string", "string" },
},
MaintenanceWindowDow = "string",
MaintenanceWindowTime = "string",
Name = "string",
Networks = new[]
{
new UpCloud.Inputs.ManagedDatabaseMysqlNetworkArgs
{
Family = "string",
Name = "string",
Type = "string",
Uuid = "string",
},
},
Powered = false,
Properties = new UpCloud.Inputs.ManagedDatabaseMysqlPropertiesArgs
{
AdminPassword = "string",
AdminUsername = "string",
AutomaticUtilityNetworkIpFilter = false,
BackupHour = 0,
BackupMinute = 0,
BinlogRetentionPeriod = 0,
ConnectTimeout = 0,
DefaultTimeZone = "string",
GroupConcatMaxLen = 0,
InformationSchemaStatsExpiry = 0,
InnodbChangeBufferMaxSize = 0,
InnodbFlushNeighbors = 0,
InnodbFtMinTokenSize = 0,
InnodbFtServerStopwordTable = "string",
InnodbLockWaitTimeout = 0,
InnodbLogBufferSize = 0,
InnodbOnlineAlterLogMaxSize = 0,
InnodbPrintAllDeadlocks = false,
InnodbReadIoThreads = 0,
InnodbRollbackOnTimeout = false,
InnodbThreadConcurrency = 0,
InnodbWriteIoThreads = 0,
InteractiveTimeout = 0,
InternalTmpMemStorageEngine = "string",
IpFilters = new[]
{
"string",
},
LogOutput = "string",
LongQueryTime = 0,
MaxAllowedPacket = 0,
MaxHeapTableSize = 0,
Migration = new UpCloud.Inputs.ManagedDatabaseMysqlPropertiesMigrationArgs
{
Dbname = "string",
Host = "string",
IgnoreDbs = "string",
IgnoreRoles = "string",
Method = "string",
Password = "string",
Port = 0,
Ssl = false,
Username = "string",
},
NetBufferLength = 0,
NetReadTimeout = 0,
NetWriteTimeout = 0,
PublicAccess = false,
ServiceLog = false,
SlowQueryLog = false,
SortBufferSize = 0,
SqlMode = "string",
SqlRequirePrimaryKey = false,
TmpTableSize = 0,
Version = "string",
WaitTimeout = 0,
},
TerminationProtection = false,
});
example, err := upcloud.NewManagedDatabaseMysql(ctx, "managedDatabaseMysqlResource", &upcloud.ManagedDatabaseMysqlArgs{
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.ManagedDatabaseMysqlNetworkArray{
&upcloud.ManagedDatabaseMysqlNetworkArgs{
Family: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Uuid: pulumi.String("string"),
},
},
Powered: pulumi.Bool(false),
Properties: &upcloud.ManagedDatabaseMysqlPropertiesArgs{
AdminPassword: pulumi.String("string"),
AdminUsername: pulumi.String("string"),
AutomaticUtilityNetworkIpFilter: pulumi.Bool(false),
BackupHour: pulumi.Int(0),
BackupMinute: pulumi.Int(0),
BinlogRetentionPeriod: pulumi.Int(0),
ConnectTimeout: pulumi.Int(0),
DefaultTimeZone: pulumi.String("string"),
GroupConcatMaxLen: pulumi.Int(0),
InformationSchemaStatsExpiry: pulumi.Int(0),
InnodbChangeBufferMaxSize: pulumi.Int(0),
InnodbFlushNeighbors: pulumi.Int(0),
InnodbFtMinTokenSize: pulumi.Int(0),
InnodbFtServerStopwordTable: pulumi.String("string"),
InnodbLockWaitTimeout: pulumi.Int(0),
InnodbLogBufferSize: pulumi.Int(0),
InnodbOnlineAlterLogMaxSize: pulumi.Int(0),
InnodbPrintAllDeadlocks: pulumi.Bool(false),
InnodbReadIoThreads: pulumi.Int(0),
InnodbRollbackOnTimeout: pulumi.Bool(false),
InnodbThreadConcurrency: pulumi.Int(0),
InnodbWriteIoThreads: pulumi.Int(0),
InteractiveTimeout: pulumi.Int(0),
InternalTmpMemStorageEngine: pulumi.String("string"),
IpFilters: pulumi.StringArray{
pulumi.String("string"),
},
LogOutput: pulumi.String("string"),
LongQueryTime: pulumi.Float64(0),
MaxAllowedPacket: pulumi.Int(0),
MaxHeapTableSize: pulumi.Int(0),
Migration: &upcloud.ManagedDatabaseMysqlPropertiesMigrationArgs{
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"),
},
NetBufferLength: pulumi.Int(0),
NetReadTimeout: pulumi.Int(0),
NetWriteTimeout: pulumi.Int(0),
PublicAccess: pulumi.Bool(false),
ServiceLog: pulumi.Bool(false),
SlowQueryLog: pulumi.Bool(false),
SortBufferSize: pulumi.Int(0),
SqlMode: pulumi.String("string"),
SqlRequirePrimaryKey: pulumi.Bool(false),
TmpTableSize: pulumi.Int(0),
Version: pulumi.String("string"),
WaitTimeout: pulumi.Int(0),
},
TerminationProtection: pulumi.Bool(false),
})
var managedDatabaseMysqlResource = new ManagedDatabaseMysql("managedDatabaseMysqlResource", ManagedDatabaseMysqlArgs.builder()
.plan("string")
.title("string")
.zone("string")
.labels(Map.of("string", "string"))
.maintenanceWindowDow("string")
.maintenanceWindowTime("string")
.name("string")
.networks(ManagedDatabaseMysqlNetworkArgs.builder()
.family("string")
.name("string")
.type("string")
.uuid("string")
.build())
.powered(false)
.properties(ManagedDatabaseMysqlPropertiesArgs.builder()
.adminPassword("string")
.adminUsername("string")
.automaticUtilityNetworkIpFilter(false)
.backupHour(0)
.backupMinute(0)
.binlogRetentionPeriod(0)
.connectTimeout(0)
.defaultTimeZone("string")
.groupConcatMaxLen(0)
.informationSchemaStatsExpiry(0)
.innodbChangeBufferMaxSize(0)
.innodbFlushNeighbors(0)
.innodbFtMinTokenSize(0)
.innodbFtServerStopwordTable("string")
.innodbLockWaitTimeout(0)
.innodbLogBufferSize(0)
.innodbOnlineAlterLogMaxSize(0)
.innodbPrintAllDeadlocks(false)
.innodbReadIoThreads(0)
.innodbRollbackOnTimeout(false)
.innodbThreadConcurrency(0)
.innodbWriteIoThreads(0)
.interactiveTimeout(0)
.internalTmpMemStorageEngine("string")
.ipFilters("string")
.logOutput("string")
.longQueryTime(0)
.maxAllowedPacket(0)
.maxHeapTableSize(0)
.migration(ManagedDatabaseMysqlPropertiesMigrationArgs.builder()
.dbname("string")
.host("string")
.ignoreDbs("string")
.ignoreRoles("string")
.method("string")
.password("string")
.port(0)
.ssl(false)
.username("string")
.build())
.netBufferLength(0)
.netReadTimeout(0)
.netWriteTimeout(0)
.publicAccess(false)
.serviceLog(false)
.slowQueryLog(false)
.sortBufferSize(0)
.sqlMode("string")
.sqlRequirePrimaryKey(false)
.tmpTableSize(0)
.version("string")
.waitTimeout(0)
.build())
.terminationProtection(false)
.build());
managed_database_mysql_resource = upcloud.ManagedDatabaseMysql("managedDatabaseMysqlResource",
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={
"admin_password": "string",
"admin_username": "string",
"automatic_utility_network_ip_filter": False,
"backup_hour": 0,
"backup_minute": 0,
"binlog_retention_period": 0,
"connect_timeout": 0,
"default_time_zone": "string",
"group_concat_max_len": 0,
"information_schema_stats_expiry": 0,
"innodb_change_buffer_max_size": 0,
"innodb_flush_neighbors": 0,
"innodb_ft_min_token_size": 0,
"innodb_ft_server_stopword_table": "string",
"innodb_lock_wait_timeout": 0,
"innodb_log_buffer_size": 0,
"innodb_online_alter_log_max_size": 0,
"innodb_print_all_deadlocks": False,
"innodb_read_io_threads": 0,
"innodb_rollback_on_timeout": False,
"innodb_thread_concurrency": 0,
"innodb_write_io_threads": 0,
"interactive_timeout": 0,
"internal_tmp_mem_storage_engine": "string",
"ip_filters": ["string"],
"log_output": "string",
"long_query_time": 0,
"max_allowed_packet": 0,
"max_heap_table_size": 0,
"migration": {
"dbname": "string",
"host": "string",
"ignore_dbs": "string",
"ignore_roles": "string",
"method": "string",
"password": "string",
"port": 0,
"ssl": False,
"username": "string",
},
"net_buffer_length": 0,
"net_read_timeout": 0,
"net_write_timeout": 0,
"public_access": False,
"service_log": False,
"slow_query_log": False,
"sort_buffer_size": 0,
"sql_mode": "string",
"sql_require_primary_key": False,
"tmp_table_size": 0,
"version": "string",
"wait_timeout": 0,
},
termination_protection=False)
const managedDatabaseMysqlResource = new upcloud.ManagedDatabaseMysql("managedDatabaseMysqlResource", {
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: {
adminPassword: "string",
adminUsername: "string",
automaticUtilityNetworkIpFilter: false,
backupHour: 0,
backupMinute: 0,
binlogRetentionPeriod: 0,
connectTimeout: 0,
defaultTimeZone: "string",
groupConcatMaxLen: 0,
informationSchemaStatsExpiry: 0,
innodbChangeBufferMaxSize: 0,
innodbFlushNeighbors: 0,
innodbFtMinTokenSize: 0,
innodbFtServerStopwordTable: "string",
innodbLockWaitTimeout: 0,
innodbLogBufferSize: 0,
innodbOnlineAlterLogMaxSize: 0,
innodbPrintAllDeadlocks: false,
innodbReadIoThreads: 0,
innodbRollbackOnTimeout: false,
innodbThreadConcurrency: 0,
innodbWriteIoThreads: 0,
interactiveTimeout: 0,
internalTmpMemStorageEngine: "string",
ipFilters: ["string"],
logOutput: "string",
longQueryTime: 0,
maxAllowedPacket: 0,
maxHeapTableSize: 0,
migration: {
dbname: "string",
host: "string",
ignoreDbs: "string",
ignoreRoles: "string",
method: "string",
password: "string",
port: 0,
ssl: false,
username: "string",
},
netBufferLength: 0,
netReadTimeout: 0,
netWriteTimeout: 0,
publicAccess: false,
serviceLog: false,
slowQueryLog: false,
sortBufferSize: 0,
sqlMode: "string",
sqlRequirePrimaryKey: false,
tmpTableSize: 0,
version: "string",
waitTimeout: 0,
},
terminationProtection: false,
});
type: upcloud:ManagedDatabaseMysql
properties:
labels:
string: string
maintenanceWindowDow: string
maintenanceWindowTime: string
name: string
networks:
- family: string
name: string
type: string
uuid: string
plan: string
powered: false
properties:
adminPassword: string
adminUsername: string
automaticUtilityNetworkIpFilter: false
backupHour: 0
backupMinute: 0
binlogRetentionPeriod: 0
connectTimeout: 0
defaultTimeZone: string
groupConcatMaxLen: 0
informationSchemaStatsExpiry: 0
innodbChangeBufferMaxSize: 0
innodbFlushNeighbors: 0
innodbFtMinTokenSize: 0
innodbFtServerStopwordTable: string
innodbLockWaitTimeout: 0
innodbLogBufferSize: 0
innodbOnlineAlterLogMaxSize: 0
innodbPrintAllDeadlocks: false
innodbReadIoThreads: 0
innodbRollbackOnTimeout: false
innodbThreadConcurrency: 0
innodbWriteIoThreads: 0
interactiveTimeout: 0
internalTmpMemStorageEngine: string
ipFilters:
- string
logOutput: string
longQueryTime: 0
maxAllowedPacket: 0
maxHeapTableSize: 0
migration:
dbname: string
host: string
ignoreDbs: string
ignoreRoles: string
method: string
password: string
port: 0
ssl: false
username: string
netBufferLength: 0
netReadTimeout: 0
netWriteTimeout: 0
publicAccess: false
serviceLog: false
slowQueryLog: false
sortBufferSize: 0
sqlMode: string
sqlRequirePrimaryKey: false
tmpTableSize: 0
version: string
waitTimeout: 0
terminationProtection: false
title: string
zone: string
ManagedDatabaseMysql 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 ManagedDatabaseMysql 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 Mysql 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 Mysql Properties - Database Engine properties for MySQL
- 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 Mysql Network Args - Private networks attached to the managed database
- Powered bool
- The administrative power state of the service
- Properties
Managed
Database Mysql Properties Args - Database Engine properties for MySQL
- 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 Mysql Network> - Private networks attached to the managed database
- powered Boolean
- The administrative power state of the service
- properties
Managed
Database Mysql Properties - Database Engine properties for MySQL
- 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 Mysql Network[] - Private networks attached to the managed database
- powered boolean
- The administrative power state of the service
- properties
Managed
Database Mysql Properties - Database Engine properties for MySQL
- 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 Mysql Network Args] - Private networks attached to the managed database
- powered bool
- The administrative power state of the service
- properties
Managed
Database Mysql Properties Args - Database Engine properties for MySQL
- 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 MySQL
- 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 ManagedDatabaseMysql resource produces the following output properties:
- Components
List<Up
Cloud. Pulumi. Up Cloud. Outputs. Managed Database Mysql 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 Mysql 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 Mysql Component - Service component information
- Id string
- The provider-assigned unique ID for this managed resource.
- Node
States []ManagedDatabase Mysql 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 Mysql Component> - Service component information
- id String
- The provider-assigned unique ID for this managed resource.
- node
States List<ManagedDatabase Mysql 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 Mysql Component[] - Service component information
- id string
- The provider-assigned unique ID for this managed resource.
- node
States ManagedDatabase Mysql 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 Mysql Component] - Service component information
- id str
- The provider-assigned unique ID for this managed resource.
- node_
states Sequence[ManagedDatabase Mysql 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 ManagedDatabaseMysql Resource
Get an existing ManagedDatabaseMysql 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?: ManagedDatabaseMysqlState, opts?: CustomResourceOptions): ManagedDatabaseMysql
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
components: Optional[Sequence[ManagedDatabaseMysqlComponentArgs]] = 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[ManagedDatabaseMysqlNetworkArgs]] = None,
node_states: Optional[Sequence[ManagedDatabaseMysqlNodeStateArgs]] = None,
plan: Optional[str] = None,
powered: Optional[bool] = None,
primary_database: Optional[str] = None,
properties: Optional[ManagedDatabaseMysqlPropertiesArgs] = 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) -> ManagedDatabaseMysql
func GetManagedDatabaseMysql(ctx *Context, name string, id IDInput, state *ManagedDatabaseMysqlState, opts ...ResourceOption) (*ManagedDatabaseMysql, error)
public static ManagedDatabaseMysql Get(string name, Input<string> id, ManagedDatabaseMysqlState? state, CustomResourceOptions? opts = null)
public static ManagedDatabaseMysql get(String name, Output<String> id, ManagedDatabaseMysqlState state, CustomResourceOptions options)
resources: _: type: upcloud:ManagedDatabaseMysql 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 Mysql 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 Mysql Network> - Private networks attached to the managed database
- Node
States List<UpCloud. Pulumi. Up Cloud. Inputs. Managed Database Mysql 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 Mysql Properties - Database Engine properties for MySQL
- 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 Mysql 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 Mysql Network Args - Private networks attached to the managed database
- Node
States []ManagedDatabase Mysql 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 Mysql Properties Args - Database Engine properties for MySQL
- 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 Mysql 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 Mysql Network> - Private networks attached to the managed database
- node
States List<ManagedDatabase Mysql 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 Mysql Properties - Database Engine properties for MySQL
- 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 Mysql 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 Mysql Network[] - Private networks attached to the managed database
- node
States ManagedDatabase Mysql 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 Mysql Properties - Database Engine properties for MySQL
- 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 Mysql 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 Mysql Network Args] - Private networks attached to the managed database
- node_
states Sequence[ManagedDatabase Mysql 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 Mysql Properties Args - Database Engine properties for MySQL
- 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 MySQL
- 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
ManagedDatabaseMysqlComponent, ManagedDatabaseMysqlComponentArgs
ManagedDatabaseMysqlNetwork, ManagedDatabaseMysqlNetworkArgs
ManagedDatabaseMysqlNodeState, ManagedDatabaseMysqlNodeStateArgs
ManagedDatabaseMysqlProperties, ManagedDatabaseMysqlPropertiesArgs
- Admin
Password string - Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- Admin
Username string - Custom username for admin user. This must be set only when a new service is being created.
- 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.
- Binlog
Retention intPeriod - The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
- Connect
Timeout int - The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
- Default
Time stringZone - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
- Group
Concat intMax Len - The maximum permitted result length in bytes for the GROUP_CONCAT() function.
- Information
Schema intStats Expiry - The time, in seconds, before cached statistics expire.
- Innodb
Change intBuffer Max Size - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
- Innodb
Flush intNeighbors - Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
- Innodb
Ft intMin Token Size - Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
- Innodb
Ft stringServer Stopword Table - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
- Innodb
Lock intWait Timeout - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
- Innodb
Log intBuffer Size - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
- Innodb
Online intAlter Log Max Size - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
- Innodb
Print boolAll Deadlocks - When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
- Innodb
Read intIo Threads - The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- Innodb
Rollback boolOn Timeout - When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
- Innodb
Thread intConcurrency - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
- Innodb
Write intIo Threads - The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- Interactive
Timeout int - The number of seconds the server waits for activity on an interactive connection before closing it.
- Internal
Tmp stringMem Storage Engine - The storage engine for in-memory internal temporary tables.
- Ip
Filters List<string> - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- Log
Output string - The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- Long
Query doubleTime - The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- Max
Allowed intPacket - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- Max
Heap intTable Size - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- Migration
Up
Cloud. Pulumi. Up Cloud. Inputs. Managed Database Mysql Properties Migration - Migrate data from existing server.
- Net
Buffer intLength - Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- Net
Read intTimeout - The number of seconds to wait for more data from a connection before aborting the read.
- Net
Write intTimeout - The number of seconds to wait for a block to be written to a connection before aborting the write.
- Public
Access bool - Public Access. Allow access to the service from the public Internet.
- Service
Log bool - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- Slow
Query boolLog - Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- Sort
Buffer intSize - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- Sql
Mode string - Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- Sql
Require boolPrimary Key - Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
- Tmp
Table intSize - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
- Version string
- MySQL major version.
- Wait
Timeout int - The number of seconds the server waits for activity on a noninteractive connection before closing it.
- Admin
Password string - Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- Admin
Username string - Custom username for admin user. This must be set only when a new service is being created.
- 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.
- Binlog
Retention intPeriod - The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
- Connect
Timeout int - The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
- Default
Time stringZone - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
- Group
Concat intMax Len - The maximum permitted result length in bytes for the GROUP_CONCAT() function.
- Information
Schema intStats Expiry - The time, in seconds, before cached statistics expire.
- Innodb
Change intBuffer Max Size - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
- Innodb
Flush intNeighbors - Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
- Innodb
Ft intMin Token Size - Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
- Innodb
Ft stringServer Stopword Table - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
- Innodb
Lock intWait Timeout - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
- Innodb
Log intBuffer Size - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
- Innodb
Online intAlter Log Max Size - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
- Innodb
Print boolAll Deadlocks - When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
- Innodb
Read intIo Threads - The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- Innodb
Rollback boolOn Timeout - When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
- Innodb
Thread intConcurrency - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
- Innodb
Write intIo Threads - The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- Interactive
Timeout int - The number of seconds the server waits for activity on an interactive connection before closing it.
- Internal
Tmp stringMem Storage Engine - The storage engine for in-memory internal temporary tables.
- Ip
Filters []string - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- Log
Output string - The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- Long
Query float64Time - The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- Max
Allowed intPacket - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- Max
Heap intTable Size - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- Migration
Managed
Database Mysql Properties Migration - Migrate data from existing server.
- Net
Buffer intLength - Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- Net
Read intTimeout - The number of seconds to wait for more data from a connection before aborting the read.
- Net
Write intTimeout - The number of seconds to wait for a block to be written to a connection before aborting the write.
- Public
Access bool - Public Access. Allow access to the service from the public Internet.
- Service
Log bool - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- Slow
Query boolLog - Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- Sort
Buffer intSize - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- Sql
Mode string - Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- Sql
Require boolPrimary Key - Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
- Tmp
Table intSize - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
- Version string
- MySQL major version.
- Wait
Timeout int - The number of seconds the server waits for activity on a noninteractive connection before closing it.
- admin
Password String - Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- admin
Username String - Custom username for admin user. This must be set only when a new service is being created.
- 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.
- binlog
Retention IntegerPeriod - The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
- connect
Timeout Integer - The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
- default
Time StringZone - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
- group
Concat IntegerMax Len - The maximum permitted result length in bytes for the GROUP_CONCAT() function.
- information
Schema IntegerStats Expiry - The time, in seconds, before cached statistics expire.
- innodb
Change IntegerBuffer Max Size - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
- innodb
Flush IntegerNeighbors - Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
- innodb
Ft IntegerMin Token Size - Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Ft StringServer Stopword Table - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
- innodb
Lock IntegerWait Timeout - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
- innodb
Log IntegerBuffer Size - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
- innodb
Online IntegerAlter Log Max Size - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
- innodb
Print BooleanAll Deadlocks - When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
- innodb
Read IntegerIo Threads - The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Rollback BooleanOn Timeout - When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Thread IntegerConcurrency - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
- innodb
Write IntegerIo Threads - The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- interactive
Timeout Integer - The number of seconds the server waits for activity on an interactive connection before closing it.
- internal
Tmp StringMem Storage Engine - The storage engine for in-memory internal temporary tables.
- ip
Filters List<String> - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- log
Output String - The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- long
Query DoubleTime - The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- max
Allowed IntegerPacket - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- max
Heap IntegerTable Size - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- migration
Managed
Database Mysql Properties Migration - Migrate data from existing server.
- net
Buffer IntegerLength - Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- net
Read IntegerTimeout - The number of seconds to wait for more data from a connection before aborting the read.
- net
Write IntegerTimeout - The number of seconds to wait for a block to be written to a connection before aborting the write.
- public
Access Boolean - Public Access. Allow access to the service from the public Internet.
- service
Log Boolean - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- slow
Query BooleanLog - Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- sort
Buffer IntegerSize - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- sql
Mode String - Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- sql
Require BooleanPrimary Key - Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
- tmp
Table IntegerSize - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
- version String
- MySQL major version.
- wait
Timeout Integer - The number of seconds the server waits for activity on a noninteractive connection before closing it.
- admin
Password string - Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- admin
Username string - Custom username for admin user. This must be set only when a new service is being created.
- 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.
- binlog
Retention numberPeriod - The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
- connect
Timeout number - The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
- default
Time stringZone - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
- group
Concat numberMax Len - The maximum permitted result length in bytes for the GROUP_CONCAT() function.
- information
Schema numberStats Expiry - The time, in seconds, before cached statistics expire.
- innodb
Change numberBuffer Max Size - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
- innodb
Flush numberNeighbors - Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
- innodb
Ft numberMin Token Size - Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Ft stringServer Stopword Table - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
- innodb
Lock numberWait Timeout - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
- innodb
Log numberBuffer Size - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
- innodb
Online numberAlter Log Max Size - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
- innodb
Print booleanAll Deadlocks - When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
- innodb
Read numberIo Threads - The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Rollback booleanOn Timeout - When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Thread numberConcurrency - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
- innodb
Write numberIo Threads - The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- interactive
Timeout number - The number of seconds the server waits for activity on an interactive connection before closing it.
- internal
Tmp stringMem Storage Engine - The storage engine for in-memory internal temporary tables.
- ip
Filters string[] - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- log
Output string - The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- long
Query numberTime - The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- max
Allowed numberPacket - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- max
Heap numberTable Size - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- migration
Managed
Database Mysql Properties Migration - Migrate data from existing server.
- net
Buffer numberLength - Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- net
Read numberTimeout - The number of seconds to wait for more data from a connection before aborting the read.
- net
Write numberTimeout - The number of seconds to wait for a block to be written to a connection before aborting the write.
- public
Access boolean - Public Access. Allow access to the service from the public Internet.
- service
Log boolean - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- slow
Query booleanLog - Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- sort
Buffer numberSize - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- sql
Mode string - Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- sql
Require booleanPrimary Key - Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
- tmp
Table numberSize - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
- version string
- MySQL major version.
- wait
Timeout number - The number of seconds the server waits for activity on a noninteractive connection before closing it.
- admin_
password str - Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- admin_
username str - Custom username for admin user. This must be set only when a new service is being created.
- 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.
- binlog_
retention_ intperiod - The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
- connect_
timeout int - The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
- default_
time_ strzone - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
- group_
concat_ intmax_ len - The maximum permitted result length in bytes for the GROUP_CONCAT() function.
- information_
schema_ intstats_ expiry - The time, in seconds, before cached statistics expire.
- innodb_
change_ intbuffer_ max_ size - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
- innodb_
flush_ intneighbors - Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
- innodb_
ft_ intmin_ token_ size - Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
- innodb_
ft_ strserver_ stopword_ table - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
- innodb_
lock_ intwait_ timeout - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
- innodb_
log_ intbuffer_ size - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
- innodb_
online_ intalter_ log_ max_ size - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
- innodb_
print_ boolall_ deadlocks - When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
- innodb_
read_ intio_ threads - The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- innodb_
rollback_ boolon_ timeout - When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
- innodb_
thread_ intconcurrency - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
- innodb_
write_ intio_ threads - The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- interactive_
timeout int - The number of seconds the server waits for activity on an interactive connection before closing it.
- internal_
tmp_ strmem_ storage_ engine - The storage engine for in-memory internal temporary tables.
- ip_
filters Sequence[str] - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- log_
output str - The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- long_
query_ floattime - The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- max_
allowed_ intpacket - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- max_
heap_ inttable_ size - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- migration
Managed
Database Mysql Properties Migration - Migrate data from existing server.
- net_
buffer_ intlength - Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- net_
read_ inttimeout - The number of seconds to wait for more data from a connection before aborting the read.
- net_
write_ inttimeout - The number of seconds to wait for a block to be written to a connection before aborting the write.
- public_
access bool - Public Access. Allow access to the service from the public Internet.
- service_
log bool - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- slow_
query_ boollog - Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- sort_
buffer_ intsize - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- sql_
mode str - Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- sql_
require_ boolprimary_ key - Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
- tmp_
table_ intsize - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
- version str
- MySQL major version.
- wait_
timeout int - The number of seconds the server waits for activity on a noninteractive connection before closing it.
- admin
Password String - Custom password for admin user. Defaults to random string. This must be set only when a new service is being created.
- admin
Username String - Custom username for admin user. This must be set only when a new service is being created.
- 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.
- binlog
Retention NumberPeriod - The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
- connect
Timeout Number - The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
- default
Time StringZone - Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
- group
Concat NumberMax Len - The maximum permitted result length in bytes for the GROUP_CONCAT() function.
- information
Schema NumberStats Expiry - The time, in seconds, before cached statistics expire.
- innodb
Change NumberBuffer Max Size - Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
- innodb
Flush NumberNeighbors - Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
- innodb
Ft NumberMin Token Size - Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Ft StringServer Stopword Table - This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
- innodb
Lock NumberWait Timeout - The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
- innodb
Log NumberBuffer Size - The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
- innodb
Online NumberAlter Log Max Size - The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
- innodb
Print BooleanAll Deadlocks - When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
- innodb
Read NumberIo Threads - The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Rollback BooleanOn Timeout - When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
- innodb
Thread NumberConcurrency - Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
- innodb
Write NumberIo Threads - The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
- interactive
Timeout Number - The number of seconds the server waits for activity on an interactive connection before closing it.
- internal
Tmp StringMem Storage Engine - The storage engine for in-memory internal temporary tables.
- ip
Filters List<String> - IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- log
Output String - The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- long
Query NumberTime - The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- max
Allowed NumberPacket - Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- max
Heap NumberTable Size - Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- migration Property Map
- Migrate data from existing server.
- net
Buffer NumberLength - Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- net
Read NumberTimeout - The number of seconds to wait for more data from a connection before aborting the read.
- net
Write NumberTimeout - The number of seconds to wait for a block to be written to a connection before aborting the write.
- public
Access Boolean - Public Access. Allow access to the service from the public Internet.
- service
Log Boolean - Service logging. Store logs for the service so that they are available in the HTTP API and console.
- slow
Query BooleanLog - Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- sort
Buffer NumberSize - Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- sql
Mode String - Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- sql
Require BooleanPrimary Key - Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
- tmp
Table NumberSize - Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
- version String
- MySQL major version.
- wait
Timeout Number - The number of seconds the server waits for activity on a noninteractive connection before closing it.
ManagedDatabaseMysqlPropertiesMigration, ManagedDatabaseMysqlPropertiesMigrationArgs
- 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.